diff --git a/cmd/benchmark/remote.go b/cmd/benchmark/remote.go index 7ec3fd1..40f180b 100644 --- a/cmd/benchmark/remote.go +++ b/cmd/benchmark/remote.go @@ -3,6 +3,7 @@ package main import ( "context" "fmt" + "math/rand/v2" "net/rpc" "strconv" "sync" @@ -122,14 +123,17 @@ func (pbc *ParallelBenchmarkClient) getOrAddVertex(externalID string, conn *rpc. "external_id": externalID, } var resp rpcTypes.AddVertexResponse - err := conn.Call("QueryManager.AddVertex", &rpcTypes.AddVertexRequest{ - Properties: properties, - }, &resp) - rtt := time.Since(start) - - if err != nil { - return "", err + for { + err := conn.Call("QueryManager.AddVertex", &rpcTypes.AddVertexRequest{ + Properties: properties, + }, &resp) + if err == nil { + break + } + log.Printf("Failed to call add vertex") + time.Sleep(500 * time.Millisecond) } + rtt := time.Since(start) // Store the vertex ID (use LoadOrStore to handle race condition) actual, _ := pbc.vertexIDMap.LoadOrStore(externalID, resp.VertexID) @@ -165,11 +169,18 @@ func (pbc *ParallelBenchmarkClient) addEdge(fromVertexID, toVertexID string, wei "weight": strconv.Itoa(weight), } var resp rpcTypes.AddEdgeResponse - err = conn.Call("QueryManager.AddEdge", &rpcTypes.AddEdgeRequest{ - FromVertexID: fromInternal, - ToVertexID: toInternal, - Properties: properties, - }, &resp) + for { + err := conn.Call("QueryManager.AddEdge", &rpcTypes.AddEdgeRequest{ + FromVertexID: fromInternal, + ToVertexID: toInternal, + Properties: properties, + }, &resp) + if err == nil { + break + } + log.Printf("RPC call to AddEdge failed") + time.Sleep(500 * time.Millisecond) + } rtt := time.Since(start) if err != nil { @@ -215,17 +226,19 @@ func (pbc *ParallelBenchmarkClient) runBFSQueries(checkpointNum int) { // Run BFS start := time.Now() var resp rpcTypes.BFSResponse - err := conn.Call("QueryManager.BFS", &rpcTypes.BFSRequest{ - StartVertexID: startVertexID, - Radius: pbc.bfsRadius, - Timestamp: types.Timestamp(float64(time.Now().Unix())), - }, &resp) - rtt := time.Since(start) - - if err != nil { - log.Printf("Error running BFS for vertex %s: %v", vertexID, err) - continue + for { + err := conn.Call("QueryManager.BFS", &rpcTypes.BFSRequest{ + StartVertexID: startVertexID, + Radius: pbc.bfsRadius, + Timestamp: types.Timestamp(float64(time.Now().Unix())), + }, &resp) + if err == nil { + break + } + log.Printf("Failed to call BFS on query manager") + time.Sleep(500 * time.Millisecond) } + rtt := time.Since(start) bfsResultSet := make(map[types.VertexId]bool) for _, v := range resp.Vertices { @@ -241,7 +254,7 @@ func (pbc *ParallelBenchmarkClient) runBFSQueries(checkpointNum int) { return true }, ) - + log.Printf("BFS result for vertex %s at checkpoint %d: %d vertices", vertexID, checkpointNum, len(bfsResult)) // Record measurement @@ -327,6 +340,59 @@ func (pbc *ParallelBenchmarkClient) Run(workload []string) BenchmarkResults { // Give a bit more time for any in-flight operations time.Sleep(2000 * time.Millisecond) + // perform a bunch of move operations + // Get a connection for move operations + moveConn := pbc.getConn() + for i := 0; i < 10; i++ { + // choose two random shards + s1 := rand.IntN(len(pbc.cfg.Shards)) + s2 := rand.IntN(len(pbc.cfg.Shards)) + if s1 == s2 { + s2 = (s1 + 1) % len(pbc.cfg.Shards) + } + + // choose vertices from the first shard + var fetchResp rpcTypes.FetchAllResponse + for { + err := moveConn.Call("QueryManager.FetchAll", rpcTypes.FetchAllRequest{}, &fetchResp) + if err == nil { + break + } + log.Printf("Failed to fetch all") + time.Sleep(100 * time.Millisecond) + } + if len(fetchResp.ShardVertices[s1]) > 0 { + // choose a subset of the vertices + vertices := make([]types.VertexId, max(0, int(0.1*(float64(rand.IntN(len(fetchResp.ShardVertices[s1]))))))) + for i := range vertices { + vertices[i] = fetchResp.ShardVertices[s1][i].VertexID + } + + if len(vertices) > 0 { + // Run MoveVertices + start := time.Now() + var resp rpcTypes.MoveVerticesResponse + for { + err := moveConn.Call("QueryManager.MoveVertices", &rpcTypes.MoveVerticesRequest{ + Vertices: vertices, + Shard: types.ShardId(s2), + }, &resp) + if err == nil { + break + } + log.Printf("failed to move: %w", err) + time.Sleep(100 * time.Millisecond) + } + rtt := time.Since(start) + log.Printf("Elapsed for move call (size %d): %v", len(vertices), rtt) + } + } + } + pbc.putConn(moveConn) + + // wait for ops to finish + time.Sleep(2000 * time.Millisecond) + // Run BFS queries pbc.runBFSQueries(checkpointIdx + 1) pbc.checkpointOps[checkpointIdx] = int64(currentOp) diff --git a/configs/3_shard_3_replica_config.yaml b/configs/3_shard_3_replica_config.yaml index 8d2ab02..cf30e73 100644 --- a/configs/3_shard_3_replica_config.yaml +++ b/configs/3_shard_3_replica_config.yaml @@ -4,7 +4,7 @@ query_manager: host: "localhost" port: 9090 - bfs_type: "naive" # Options: "naive", "optimized" + bfs_type: "optimized" # Options: "naive", "optimized" # Shard configuration - each shard stores a partition of the graph # Each shard has multiple replicas that use Raft for consensus diff --git a/internal/types/types.go b/internal/types/types.go index 90fc9a9..f7299c2 100644 --- a/internal/types/types.go +++ b/internal/types/types.go @@ -4,3 +4,4 @@ type ShardId uint32 type VertexId string type Timestamp float64 type Properties map[string]string +type BFSId int diff --git a/logs/benchmark.log b/logs/benchmark.log deleted file mode 100644 index da7df96..0000000 --- a/logs/benchmark.log +++ /dev/null @@ -1,64 +0,0 @@ -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Building local graph from workload... -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Transposing graph... -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Computing PageRank on transposed graph to find top 5 vertices... -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Top vertex 1: 0 (PageRank: 0.134781) -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Top vertex 2: 1 (PageRank: 0.067015) -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Top vertex 3: 2 (PageRank: 0.044752) -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Top vertex 4: 4 (PageRank: 0.032930) -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Top vertex 5: 3 (PageRank: 0.027144) -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Benchmark mode: both (parallel=true, local=true) -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Starting parallel benchmark with 10 goroutines, 5 checkpoints -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] BFS radius: 10 -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Rate limit: unlimited -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Total operations to process: 16384 -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Checkpoint positions: [2730 5461 8192 10922 13653] -[Benchmark] 2025/11/27 01:23:29 logger.go:113: [INFO] Checkpoint 1 reached at operation 2730. Pausing to run BFS queries... -[Benchmark] 2025/11/27 01:23:32 logger.go:113: [INFO] Running BFS queries at checkpoint 1 -[Benchmark] 2025/11/27 01:23:32 logger.go:113: [INFO] BFS result for vertex 0 at checkpoint 1: 741 vertices -[Benchmark] 2025/11/27 01:23:32 logger.go:113: [INFO] BFS result for vertex 1 at checkpoint 1: 643 vertices -[Benchmark] 2025/11/27 01:23:32 logger.go:113: [INFO] BFS result for vertex 2 at checkpoint 1: 602 vertices -[Benchmark] 2025/11/27 01:23:33 logger.go:113: [INFO] BFS result for vertex 4 at checkpoint 1: 542 vertices -[Benchmark] 2025/11/27 01:23:33 logger.go:113: [INFO] BFS result for vertex 3 at checkpoint 1: 559 vertices -[Benchmark] 2025/11/27 01:23:33 logger.go:113: [INFO] Checkpoint 1 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:33 logger.go:113: [INFO] Checkpoint 2 reached at operation 5461. Pausing to run BFS queries... -[Benchmark] 2025/11/27 01:23:35 logger.go:113: [INFO] Running BFS queries at checkpoint 2 -[Benchmark] 2025/11/27 01:23:36 logger.go:113: [INFO] BFS result for vertex 0 at checkpoint 2: 802 vertices -[Benchmark] 2025/11/27 01:23:36 logger.go:113: [INFO] BFS result for vertex 1 at checkpoint 2: 759 vertices -[Benchmark] 2025/11/27 01:23:37 logger.go:113: [INFO] BFS result for vertex 2 at checkpoint 2: 743 vertices -[Benchmark] 2025/11/27 01:23:37 logger.go:113: [INFO] BFS result for vertex 4 at checkpoint 2: 719 vertices -[Benchmark] 2025/11/27 01:23:37 logger.go:113: [INFO] BFS result for vertex 3 at checkpoint 2: 725 vertices -[Benchmark] 2025/11/27 01:23:37 logger.go:113: [INFO] Checkpoint 2 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:38 logger.go:113: [INFO] Checkpoint 3 reached at operation 8192. Pausing to run BFS queries... -[Benchmark] 2025/11/27 01:23:40 logger.go:113: [INFO] Running BFS queries at checkpoint 3 -[Benchmark] 2025/11/27 01:23:40 logger.go:113: [INFO] BFS result for vertex 0 at checkpoint 3: 848 vertices -[Benchmark] 2025/11/27 01:23:41 logger.go:113: [INFO] BFS result for vertex 1 at checkpoint 3: 823 vertices -[Benchmark] 2025/11/27 01:23:41 logger.go:113: [INFO] BFS result for vertex 2 at checkpoint 3: 812 vertices -[Benchmark] 2025/11/27 01:23:41 logger.go:113: [INFO] BFS result for vertex 4 at checkpoint 3: 798 vertices -[Benchmark] 2025/11/27 01:23:42 logger.go:113: [INFO] BFS result for vertex 3 at checkpoint 3: 801 vertices -[Benchmark] 2025/11/27 01:23:42 logger.go:113: [INFO] Checkpoint 3 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:42 logger.go:113: [INFO] Checkpoint 4 reached at operation 10922. Pausing to run BFS queries... -[Benchmark] 2025/11/27 01:23:44 logger.go:113: [INFO] Running BFS queries at checkpoint 4 -[Benchmark] 2025/11/27 01:23:45 logger.go:113: [INFO] BFS result for vertex 0 at checkpoint 4: 877 vertices -[Benchmark] 2025/11/27 01:23:45 logger.go:113: [INFO] BFS result for vertex 1 at checkpoint 4: 858 vertices -[Benchmark] 2025/11/27 01:23:46 logger.go:113: [INFO] BFS result for vertex 2 at checkpoint 4: 849 vertices -[Benchmark] 2025/11/27 01:23:46 logger.go:113: [INFO] BFS result for vertex 4 at checkpoint 4: 840 vertices -[Benchmark] 2025/11/27 01:23:46 logger.go:113: [INFO] BFS result for vertex 3 at checkpoint 4: 842 vertices -[Benchmark] 2025/11/27 01:23:46 logger.go:113: [INFO] Checkpoint 4 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:47 logger.go:113: [INFO] Checkpoint 5 reached at operation 13653. Pausing to run BFS queries... -[Benchmark] 2025/11/27 01:23:49 logger.go:113: [INFO] Running BFS queries at checkpoint 5 -[Benchmark] 2025/11/27 01:23:49 logger.go:113: [INFO] BFS result for vertex 0 at checkpoint 5: 899 vertices -[Benchmark] 2025/11/27 01:23:50 logger.go:113: [INFO] BFS result for vertex 1 at checkpoint 5: 888 vertices -[Benchmark] 2025/11/27 01:23:50 logger.go:113: [INFO] BFS result for vertex 2 at checkpoint 5: 881 vertices -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] BFS result for vertex 4 at checkpoint 5: 873 vertices -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] BFS result for vertex 3 at checkpoint 5: 875 vertices -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Checkpoint 5 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Parallel benchmark results written to benchmark_parallel.json -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Checkpoint positions: [2730 5461 8192 10922 13653] (total operations: 16384) -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Starting local graph benchmark -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Checkpoint 1 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Checkpoint 2 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Checkpoint 3 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Checkpoint 4 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Checkpoint 5 completed. Resuming operations... -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Local graph benchmark results written to benchmark_local.json -[Benchmark] 2025/11/27 01:23:51 logger.go:113: [INFO] Benchmark completed! diff --git a/logs/cluster.log b/logs/cluster.log deleted file mode 100644 index 4cc1165..0000000 --- a/logs/cluster.log +++ /dev/null @@ -1,132 +0,0 @@ -2025/11/27 01:22:50 Starting TinyGraph cluster... -2025/11/27 01:22:50 Starting shard 0 replica 0... -2025/11/27 01:22:50 Starting shard 0 replica 1... -2025/11/27 01:22:50 Starting shard 0 replica 2... -2025/11/27 01:22:50 Starting shard 1 replica 0... -2025/11/27 01:22:50 Starting shard 1 replica 1... -2025/11/27 01:22:50 Starting shard 1 replica 2... -2025/11/27 01:22:50 Starting shard 2 replica 0... -2025/11/27 01:22:50 Starting shard 2 replica 1... -2025/11/27 01:22:50 Starting shard 2 replica 2... -2025/11/27 01:22:50 Waiting for shards to initialize... -2025-11-27T01:22:50.865Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.865Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10098 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.869Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.869Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10096 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.875Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.875Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10092 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.877Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.877Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10091 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.877Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.877Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10095 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.878Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.878Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10097 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.883Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.884Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10099 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.884Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.884Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10093 [Follower]" leader-address= leader-id= -2025-11-27T01:22:50.886Z [INFO] raft: initial configuration: index=0 servers=[] -2025-11-27T01:22:50.886Z [INFO] raft: entering follower state: follower="Node at 127.0.0.1:10094 [Follower]" leader-address= leader-id= -2025-11-27T01:22:51.918Z [WARN] raft: heartbeat timeout reached, starting election: last-leader-addr= last-leader-id= -2025-11-27T01:22:51.918Z [INFO] raft: entering candidate state: node="Node at 127.0.0.1:10091 [Candidate]" term=2 -2025-11-27T01:22:51.918Z [DEBUG] raft: pre-voting for self: term=2 id=shard-0-replica-0 -2025-11-27T01:22:51.918Z [DEBUG] raft: asking for pre-vote: term=2 from=shard-0-replica-1 address=localhost:10092 -2025-11-27T01:22:51.918Z [DEBUG] raft: asking for pre-vote: term=2 from=shard-0-replica-2 address=localhost:10093 -2025-11-27T01:22:51.918Z [DEBUG] raft: calculated votes needed: needed=2 term=2 -2025-11-27T01:22:51.918Z [DEBUG] raft: pre-vote received: from=shard-0-replica-0 term=2 tally=0 -2025-11-27T01:22:51.918Z [DEBUG] raft: pre-vote granted: from=shard-0-replica-0 term=2 tally=1 -2025-11-27T01:22:51.919Z [DEBUG] raft: received a requestPreVote with a newer term, grant the pre-vote -2025-11-27T01:22:51.919Z [DEBUG] raft: received a requestPreVote with a newer term, grant the pre-vote -2025-11-27T01:22:51.919Z [DEBUG] raft: pre-vote received: from=shard-0-replica-2 term=2 tally=1 -2025-11-27T01:22:51.919Z [DEBUG] raft: pre-vote granted: from=shard-0-replica-2 term=2 tally=2 -2025-11-27T01:22:51.919Z [INFO] raft: pre-vote successful, starting election: term=2 tally=2 refused=0 votesNeeded=2 -2025-11-27T01:22:51.919Z [DEBUG] raft: voting for self: term=2 id=shard-0-replica-0 -2025-11-27T01:22:51.920Z [DEBUG] raft: asking for vote: term=2 from=shard-0-replica-1 address=localhost:10092 -2025-11-27T01:22:51.920Z [DEBUG] raft: asking for vote: term=2 from=shard-0-replica-2 address=localhost:10093 -2025-11-27T01:22:51.920Z [DEBUG] raft: vote granted: from=shard-0-replica-0 term=2 tally=1 -2025-11-27T01:22:51.920Z [DEBUG] raft: lost leadership because received a requestVote with a newer term -2025-11-27T01:22:51.920Z [DEBUG] raft: lost leadership because received a requestVote with a newer term -2025-11-27T01:22:51.920Z [DEBUG] raft: vote granted: from=shard-0-replica-1 term=2 tally=2 -2025-11-27T01:22:51.920Z [INFO] raft: election won: term=2 tally=2 -2025-11-27T01:22:51.920Z [INFO] raft: entering leader state: leader="Node at 127.0.0.1:10091 [Leader]" -2025-11-27T01:22:51.920Z [INFO] raft: added peer, starting replication: peer=shard-0-replica-1 -2025-11-27T01:22:51.920Z [INFO] raft: added peer, starting replication: peer=shard-0-replica-2 -2025-11-27T01:22:51.921Z [WARN] raft: failed to get previous log: previous-index=1 last-index=0 error="log not found" -2025-11-27T01:22:51.921Z [WARN] raft: failed to get previous log: previous-index=1 last-index=0 error="log not found" -2025-11-27T01:22:51.921Z [WARN] raft: appendEntries rejected, sending older logs: peer="{Voter shard-0-replica-2 localhost:10093}" next=1 -2025-11-27T01:22:51.921Z [WARN] raft: appendEntries rejected, sending older logs: peer="{Voter shard-0-replica-1 localhost:10092}" next=1 -2025-11-27T01:22:51.921Z [INFO] raft: pipelining replication: peer="{Voter shard-0-replica-2 localhost:10093}" -2025-11-27T01:22:51.921Z [INFO] raft: pipelining replication: peer="{Voter shard-0-replica-1 localhost:10092}" -2025-11-27T01:22:51.988Z [WARN] raft: no known peers, aborting election -2025-11-27T01:22:52.129Z [WARN] raft: heartbeat timeout reached, starting election: last-leader-addr= last-leader-id= -2025-11-27T01:22:52.129Z [INFO] raft: entering candidate state: node="Node at 127.0.0.1:10094 [Candidate]" term=2 -2025-11-27T01:22:52.129Z [DEBUG] raft: pre-voting for self: term=2 id=shard-1-replica-0 -2025-11-27T01:22:52.129Z [DEBUG] raft: asking for pre-vote: term=2 from=shard-1-replica-1 address=localhost:10095 -2025-11-27T01:22:52.129Z [DEBUG] raft: asking for pre-vote: term=2 from=shard-1-replica-2 address=localhost:10096 -2025-11-27T01:22:52.129Z [DEBUG] raft: calculated votes needed: needed=2 term=2 -2025-11-27T01:22:52.129Z [DEBUG] raft: pre-vote received: from=shard-1-replica-0 term=2 tally=0 -2025-11-27T01:22:52.129Z [DEBUG] raft: pre-vote granted: from=shard-1-replica-0 term=2 tally=1 -2025-11-27T01:22:52.130Z [DEBUG] raft: received a requestPreVote with a newer term, grant the pre-vote -2025-11-27T01:22:52.130Z [DEBUG] raft: received a requestPreVote with a newer term, grant the pre-vote -2025-11-27T01:22:52.130Z [DEBUG] raft: pre-vote received: from=shard-1-replica-1 term=2 tally=1 -2025-11-27T01:22:52.131Z [DEBUG] raft: pre-vote granted: from=shard-1-replica-1 term=2 tally=2 -2025-11-27T01:22:52.131Z [INFO] raft: pre-vote successful, starting election: term=2 tally=2 refused=0 votesNeeded=2 -2025-11-27T01:22:52.131Z [DEBUG] raft: voting for self: term=2 id=shard-1-replica-0 -2025-11-27T01:22:52.131Z [DEBUG] raft: asking for vote: term=2 from=shard-1-replica-1 address=localhost:10095 -2025-11-27T01:22:52.131Z [DEBUG] raft: asking for vote: term=2 from=shard-1-replica-2 address=localhost:10096 -2025-11-27T01:22:52.131Z [DEBUG] raft: vote granted: from=shard-1-replica-0 term=2 tally=1 -2025-11-27T01:22:52.131Z [DEBUG] raft: lost leadership because received a requestVote with a newer term -2025-11-27T01:22:52.131Z [DEBUG] raft: lost leadership because received a requestVote with a newer term -2025-11-27T01:22:52.131Z [DEBUG] raft: vote granted: from=shard-1-replica-1 term=2 tally=2 -2025-11-27T01:22:52.131Z [INFO] raft: election won: term=2 tally=2 -2025-11-27T01:22:52.131Z [INFO] raft: entering leader state: leader="Node at 127.0.0.1:10094 [Leader]" -2025-11-27T01:22:52.131Z [INFO] raft: added peer, starting replication: peer=shard-1-replica-1 -2025-11-27T01:22:52.131Z [INFO] raft: added peer, starting replication: peer=shard-1-replica-2 -2025-11-27T01:22:52.132Z [WARN] raft: failed to get previous log: previous-index=1 last-index=0 error="log not found" -2025-11-27T01:22:52.132Z [WARN] raft: failed to get previous log: previous-index=1 last-index=0 error="log not found" -2025-11-27T01:22:52.132Z [WARN] raft: appendEntries rejected, sending older logs: peer="{Voter shard-1-replica-2 localhost:10096}" next=1 -2025-11-27T01:22:52.132Z [WARN] raft: appendEntries rejected, sending older logs: peer="{Voter shard-1-replica-1 localhost:10095}" next=1 -2025-11-27T01:22:52.132Z [INFO] raft: pipelining replication: peer="{Voter shard-1-replica-2 localhost:10096}" -2025-11-27T01:22:52.132Z [INFO] raft: pipelining replication: peer="{Voter shard-1-replica-1 localhost:10095}" -2025/11/27 01:22:52 Starting query manager... -2025/11/27 01:22:52 Waiting for services to start... -2025-11-27T01:22:52.670Z [WARN] raft: no known peers, aborting election -2025-11-27T01:22:52.783Z [WARN] raft: no known peers, aborting election -2025-11-27T01:22:52.811Z [WARN] raft: heartbeat timeout reached, starting election: last-leader-addr= last-leader-id= -2025-11-27T01:22:52.811Z [INFO] raft: entering candidate state: node="Node at 127.0.0.1:10097 [Candidate]" term=2 -2025-11-27T01:22:52.811Z [DEBUG] raft: pre-voting for self: term=2 id=shard-2-replica-0 -2025-11-27T01:22:52.811Z [DEBUG] raft: asking for pre-vote: term=2 from=shard-2-replica-1 address=localhost:10098 -2025-11-27T01:22:52.811Z [DEBUG] raft: asking for pre-vote: term=2 from=shard-2-replica-2 address=localhost:10099 -2025-11-27T01:22:52.811Z [DEBUG] raft: calculated votes needed: needed=2 term=2 -2025-11-27T01:22:52.811Z [DEBUG] raft: pre-vote received: from=shard-2-replica-0 term=2 tally=0 -2025-11-27T01:22:52.811Z [DEBUG] raft: pre-vote granted: from=shard-2-replica-0 term=2 tally=1 -2025-11-27T01:22:52.812Z [DEBUG] raft: received a requestPreVote with a newer term, grant the pre-vote -2025-11-27T01:22:52.812Z [DEBUG] raft: received a requestPreVote with a newer term, grant the pre-vote -2025-11-27T01:22:52.812Z [DEBUG] raft: pre-vote received: from=shard-2-replica-1 term=2 tally=1 -2025-11-27T01:22:52.812Z [DEBUG] raft: pre-vote granted: from=shard-2-replica-1 term=2 tally=2 -2025-11-27T01:22:52.812Z [INFO] raft: pre-vote successful, starting election: term=2 tally=2 refused=0 votesNeeded=2 -2025-11-27T01:22:52.812Z [DEBUG] raft: voting for self: term=2 id=shard-2-replica-0 -2025-11-27T01:22:52.812Z [DEBUG] raft: asking for vote: term=2 from=shard-2-replica-1 address=localhost:10098 -2025-11-27T01:22:52.812Z [DEBUG] raft: asking for vote: term=2 from=shard-2-replica-2 address=localhost:10099 -2025-11-27T01:22:52.812Z [DEBUG] raft: vote granted: from=shard-2-replica-0 term=2 tally=1 -2025-11-27T01:22:52.812Z [DEBUG] raft: lost leadership because received a requestVote with a newer term -2025-11-27T01:22:52.812Z [DEBUG] raft: lost leadership because received a requestVote with a newer term -2025-11-27T01:22:52.813Z [DEBUG] raft: vote granted: from=shard-2-replica-1 term=2 tally=2 -2025-11-27T01:22:52.813Z [INFO] raft: election won: term=2 tally=2 -2025-11-27T01:22:52.813Z [INFO] raft: entering leader state: leader="Node at 127.0.0.1:10097 [Leader]" -2025-11-27T01:22:52.813Z [INFO] raft: added peer, starting replication: peer=shard-2-replica-1 -2025-11-27T01:22:52.813Z [INFO] raft: added peer, starting replication: peer=shard-2-replica-2 -2025-11-27T01:22:52.813Z [WARN] raft: failed to get previous log: previous-index=1 last-index=0 error="log not found" -2025-11-27T01:22:52.813Z [WARN] raft: failed to get previous log: previous-index=1 last-index=0 error="log not found" -2025-11-27T01:22:52.813Z [WARN] raft: appendEntries rejected, sending older logs: peer="{Voter shard-2-replica-1 localhost:10098}" next=1 -2025-11-27T01:22:52.813Z [WARN] raft: appendEntries rejected, sending older logs: peer="{Voter shard-2-replica-2 localhost:10099}" next=1 -2025-11-27T01:22:52.814Z [INFO] raft: pipelining replication: peer="{Voter shard-2-replica-1 localhost:10098}" -2025-11-27T01:22:52.814Z [INFO] raft: pipelining replication: peer="{Voter shard-2-replica-2 localhost:10099}" -2025/11/27 01:22:55 ✓ Cluster started successfully! -2025/11/27 01:22:55 ✓ Query manager available at localhost:9090 -2025/11/27 01:22:55 ✓ Running 3 shard(s) with 3 replica(s) each -2025/11/27 01:22:55 -Press Ctrl+C to stop the cluster... -2025/11/27 02:22:02 -Shutting down cluster... -2025/11/27 02:22:02 Cluster stopped. diff --git a/milestone_3.md b/milestone_3.md index 15f3a63..5abf99d 100644 --- a/milestone_3.md +++ b/milestone_3.md @@ -55,17 +55,15 @@ The naive implementation serves as a baseline for comparison, demonstrating the ### Query Manager (QM) - **Role**: Initiates BFS, tracks completion, aggregates results - **Key Functions**: - - `pkg/qm/query_manager.go:distributedBFS` - Orchestrates the BFS request - - `pkg/qm/query_manager.go:ReceiveBFSResult` - Collects results from shards + - `pkg/qm/query_manager.go:ShardedBFS` - Initiaties the BFS request + - `pkg/qm/query_manager.go:BFSResponse` - Updates the local BFS request state with information from shards - `pkg/qm/query_manager.go:BFS` - RPC entry point ### Shards -- **Role**: Perform local BFS traversal, coordinate with other shards +- **Role**: Perform local BFS traversal, dispatch BFS calls to other shards - **Key Functions**: - - `pkg/shard/shard.go:DistributedBFS` - Handles QM-initiated requests - - `pkg/shard/shard.go:DistributedBFSFromShard` - Handles shard-to-shard requests - - `pkg/shard/shard.go:performBFS` - Core BFS logic (shared) - - `pkg/shard/shard.go:callShardBFS` - Async cross-shard communication + - `pkg/shard/shard_fsm.go:BFS` - Manages BFS call state and dispatches internal BFS resolution + - `pkg/shard/shard.go:bfs` - Performs BFS on local nodes, and dispatches BFS to other shards when edges to other shards are found. Calls into the QueryManager to report with the results and which calls it made that the QM must await. ## BFS Request Flow @@ -76,117 +74,91 @@ The naive implementation serves as a baseline for comparison, demonstrating the - QM checks config: if `BFSType == "optimized"`, calls `distributedBFS` ### Step 2: QM Initializes BFS State -**Function**: `pkg/qm/query_manager.go:distributedBFS` +**Function**: `pkg/qm/query_manager.go:ShardedBFS` **QM Actions**: -1. Generates unique `RequestID` (format: `bfs-{timestamp}-{random}`) -2. Creates `BFSState` to track: - - `visited`: map of discovered vertices → levels - - `pendingShards`: map tracking expected vs received responses per shard - - `done`: channel to signal completion +1. Generates unique `BFSId` (stored as a monotonically increasing number, but can be arbitrary as long as it is unique across the system) +2. Creates `BFSManager` to track: + - `Vertices`: map of discovered vertices + - `DispatchedRequests`: map tracking the number of requests in flight for a given shard + - `FirstRecvd`: ensures that this value is set to true only when the initial request is returned (if we do not explicitly wait for the first request, there is a race condition where we early-out because we receive a response from the same shard, but not of the original request, ie qm->shard1->shard2->shard1, where the second request in the chain returns before the first does) + - `Done`: the channel on which we signal the end of the distributed BFS algorithm 3. Extracts shard ID from `StartVertexID` (format: `{shardID}-{randomHex}`) -4. Registers state in `activeBFS` map -5. Initializes pending state for starting shard: `Expected=1, Received=0` +4. Registers state in `managers` map +5. Initializes pending state for starting shard: `DispatchedRequests[shardId] = 1` ### Step 3: QM → Starting Shard (Synchronous) -**Function**: `pkg/shard/shard.go:DistributedBFS` +**Function**: `pkg/shard/shard_fsm.go:BFS` **QM sends**: -- `QMToShardBFSRequest` with start vertex (level 0), radius, timestamp, requestID, QM address +- `BFSToShardRequest` with start vertex, radius, timestamp, BFSId, QM address, and the `FirstReq` value to true. **Shard receives and**: -1. Verifies leadership (`raft.VerifyLeader()`) -2. Calls `performBFS` with start vertices +1. Checks if the vertex exists in the graph on (a) this machine, and (b) at the given timestamp +2. Finds or creates a new BFSInstance corresponding to the BFSId +3. asynchronously calls `ShardFSM.bfs`, and returns from the RPC call -### Step 4: Shard Performs Local BFS -**Function**: `pkg/shard/shard.go:performBFS` +### Step 4: Shard Performs Local BFS & Dispatches BFS Across Shards +**Function**: `pkg/shard/shard_fsm.go:bfs` **Shard Actions**: -1. **Deduplication**: Gets or creates `BFSRequestState` for this `RequestID` (prevents processing same request multiple times) +1. **Deduplication and Race Conditions**: Fetches the corresponding BFSInstance and locks it so that it has exclusive RW access. 2. **Local BFS Traversal**: - - Processes vertices in queue with their absolute levels (from original root) + - Processes vertices in queue using BFS - For each vertex: - - Skips if already visited at same or lower level - - Marks as visited, adds to results - - If level < radius, gets neighbors - - For each neighbor: - - If local (same shard): adds to local queue with `level+1` - - If cross-shard: groups by target shard with `level+1` -3. **Returns**: - - `vertices`: local vertices found (with levels) - - `shardVertices`: map of `shardID → []StartVertex` (vertices to send to each shard) - - `expectedResponses`: map of `shardID → count` (how many responses to expect from each shard) - -### Step 5: Shard → Other Shards (Asynchronous) -**Function**: `pkg/shard/shard.go:DistributedBFS` (lines 757-778) - -**Shard Actions**: -1. Returns synchronous response to QM with: - - Found vertices - - `ExpectedResponses` array (tells QM how many responses to expect from each target shard) -2. **Asynchronously** sends `ShardToShardBFSRequest` to each target shard via `callShardBFS` - - Uses connection pooling for efficiency - - Fire-and-forget (no response expected from target shard) - -### Step 6: QM Processes Initial Response -**Function**: `pkg/qm/query_manager.go:ReceiveBFSResult` + - Skips if already visited in the BFSInstance + - Checks if it exists at the given timestamp, and fetches it's data + - Marks as "locally visited", and adds to BFSInstance's Visited map + - If the "current level" is 0, continues. + - Otherwise, iterates over all it's neighbours + - If the neighbour is found locally, it is added to the queue with "level" N-1, s.t. N is the "level" of the current vertex + - If the neighbour is not found locally, an asynchronous function is called that will + 1. Find which shard it is located on + 2. Send a BFS request with the radius being set to "level" N-1, and root being the remote vertex. + 3. If the RPC call returns with no error, we add the vertex to the BFSInstance's Visited map (so we don't send out another RPC for this same vertex) + - Once the BFS has finished running, we wait for all the async functions to finish sending out their requests so we can tally up how many requests we sent to which shards (`dispatchedRequests`). This helps us inform the QM on what information it needs to wait for before it can proceed (it expects to receive all the messages this shard sent out). An RPC to the QM is made with `QueryManager.BFSResponse` to notify that it has completed it's BFS traversal. + +### Step 5: QM Processes Responses & Collects Results +**Function**: `pkg/qm/query_manager.go:BFSResponse` **QM Actions**: -1. Looks up `BFSState` by `RequestID` -2. **Merges vertices**: Adds discovered vertices to `visited` map (keeps minimum level if duplicate) -3. **Updates pending counts**: - - Increments `Received` for responding shard - - For each `ExpectedResponse`, increments `Expected` for target shards -4. **Checks completion**: If all shards have `Received == Expected`, closes `done` channel - -### Step 7: Target Shards Process Cross-Shard Requests -**Function**: `pkg/shard/shard.go:DistributedBFSFromShard` - -**Shard receives** `ShardToShardBFSRequest` and: -1. Verifies leadership -2. Calls `performBFS` (same logic as Step 4, reusing deduplication state) -3. **Asynchronously** sends results back to QM via `QueryManager.ReceiveBFSResult` RPC -4. **Asynchronously** forwards requests to other shards if needed - -### Step 8: QM Collects All Results -**Function**: `pkg/qm/query_manager.go:ReceiveBFSResult` (called repeatedly) - -**QM Actions** (for each async response): -- Same as Step 6: merges vertices, updates pending counts, checks completion +1. **Up-called**: Gets up-called into by a shard, specifying which BFSId it is providing information for. +2. **Updates pending counts**: Decrements the calling shard's entry in the BFSManager's `DispatchedRequests` by 1 to symbolize acknowledging and expected BFS traversal by the calling shard. Then, Receives information about calls dispatched by the calling shard, and updates the BFSManager's `DispatchedRequests` to reflect any additional RPCs it must wait on based on the calling shard's BFS traversal. +3. **Updates visited map**: Inserts every vertex reached by the calling shard's BFS to the BFSManager's `Vertices` field. +4. **Checks for algorithm termination**: If every shard of the BFSManager's `DispatchedRequests` reaches 0, and the first request has been responded to, we send a message on the `Done` channel to signal termination. ### Step 9: QM Completes and Returns -**Function**: `pkg/qm/query_manager.go:distributedBFS` (lines 701-728) +**Function**: `pkg/qm/query_manager.go:ShardedBFS` (lines 701-728) **QM Actions**: -1. Waits on `done` channel (or 30s timeout) -2. When complete, copies `visited` map to result -3. Cleans up `BFSState` from `activeBFS` map +1. Waits on `Done` channel +2. When complete, creates a slice of vertices from the `BFSManager.Vertex` map, and puts it in the response +3. Cleans up the corresponding `BFSManager` 4. Returns result to client via `BFS` handler ## Key Design Features ### Deduplication -- Each shard maintains `BFSRequestState` per `RequestID` to avoid processing duplicate requests +- Each shard maintains `BFSInstance` per `BFSId` to avoid running BFS on already-visited vertices - QM tracks visited vertices globally to prevent duplicates in final result ### Asynchronous Communication - Shard-to-shard requests are async (fire-and-forget) -- Shard-to-QM responses are async (except initial synchronous response) +- Shard-to-QM responses are async - Reduces latency by not blocking on network calls +- QM awaits responses from all asynchronous Shard calls before retuning results ### Connection Pooling -- Shards maintain connection pools per target shard (`connectionPool`) -- Pools automatically invalidate when leader changes +- Shards maintain connection pools per target shard - Reduces connection overhead +- Automatically re-opens closed connections until a connection is established ### Completion Tracking -- QM tracks `Expected` vs `Received` responses per shard -- `Expected` counts are dynamically updated as shards report expected responses from other shards -- BFS completes when all shards have `Received >= Expected` +- QM tracks the total number of dispatched BFS calls based on responses from shards +- BFS completes when all shards have 0 in-flight BFS calls, verified by explicitly awaiting the reception of the initial BFS call to ensure all calls are accounted for ### Level Tracking -- Each vertex maintains its absolute level from the original root -- Prevents incorrect level assignments in distributed traversal +- Decrements the radius for BFS calls on each step (local or remote) ensuring we only visit the nodes within the radius of the original call - Ensures radius limits are correctly enforced ## Example Flow Diagram @@ -194,30 +166,30 @@ The naive implementation serves as a baseline for comparison, demonstrating the ``` Client → QM.BFS ↓ - QM.distributedBFS (creates RequestID, BFSState) + QM.ShardedBFS (creates BFSId, BFSManager) ↓ - QM → Shard 0: DistributedBFS (sync) + QM → Shard 0: BFS(v, N, ts, BFSId) [async] ↓ - Shard 0: performBFS + Shard 0: BFS ├─→ Finds local vertices - ├─→ Groups cross-shard neighbors - └─→ Returns: vertices + ExpectedResponses + ├─→ Dispatches BFS call on remote vertices + └─→ (asynchronously) Returns: vertices + DispatchedRequests ↓ - Shard 0 → QM: ReceiveBFSResult (sync response) + Shard 0 → QM: BFSResponse (async response) ↓ - QM: ReceiveBFSResult (updates state) + QM: BFSResponse (updates state) ↓ - Shard 0 → Shard 1: DistributedBFSFromShard (async) - Shard 0 → Shard 2: DistributedBFSFromShard (async) + Shard 0 → Shard 1: BFS(v', N-1, ts, BFSId) [async] + Shard 0 → Shard 2: BFS(v'', N-1, ts, BFSId) [async] ↓ - Shard 1: performBFS → QM: ReceiveBFSResult (async) - Shard 2: performBFS → QM: ReceiveBFSResult (async) + Shard 1: BFS → QM: BFSResponse (async) + Shard 2: BFS → QM: BFSResponse (async) ↓ - QM: ReceiveBFSResult (multiple times, updates state) + QM: BFSResponse (multiple times, updates state) ↓ - When all Received == Expected: close(done) + When first received and all Received == Expected: Done <- nil ↓ - QM.distributedBFS returns result + QM.ShardedBFS returns result ↓ QM.BFS returns to client ``` diff --git a/notebooks/benchmark_local.json b/notebooks/benchmark_local.json index 372283b..bb24e1a 100644 --- a/notebooks/benchmark_local.json +++ b/notebooks/benchmark_local.json @@ -14,7 +14,7 @@ "measurements": [ { "operation": "bfs", - "rtt_ns": 241319, + "rtt_ns": 86417, "rtt_ms": 0, "checkpoint": 1, "bfs_start": "0", @@ -762,11 +762,11 @@ "882", "334" ], - "timestamp": "2025-11-27T01:23:51.932006906Z" + "timestamp": "2025-11-27T04:02:17.593457-08:00" }, { "operation": "bfs", - "rtt_ns": 212189, + "rtt_ns": 83542, "rtt_ms": 0, "checkpoint": 1, "bfs_start": "1", @@ -1416,11 +1416,11 @@ "810", "684" ], - "timestamp": "2025-11-27T01:23:51.932220885Z" + "timestamp": "2025-11-27T04:02:17.593541-08:00" }, { "operation": "bfs", - "rtt_ns": 187050, + "rtt_ns": 82292, "rtt_ms": 0, "checkpoint": 1, "bfs_start": "2", @@ -2029,11 +2029,11 @@ "882", "334" ], - "timestamp": "2025-11-27T01:23:51.932409225Z" + "timestamp": "2025-11-27T04:02:17.593623-08:00" }, { "operation": "bfs", - "rtt_ns": 158939, + "rtt_ns": 55417, "rtt_ms": 0, "checkpoint": 1, "bfs_start": "4", @@ -2582,11 +2582,11 @@ "334", "227" ], - "timestamp": "2025-11-27T01:23:51.932569514Z" + "timestamp": "2025-11-27T04:02:17.593679-08:00" }, { "operation": "bfs", - "rtt_ns": 194790, + "rtt_ns": 62083, "rtt_ms": 0, "checkpoint": 1, "bfs_start": "3", @@ -3152,11 +3152,11 @@ "334", "227" ], - "timestamp": "2025-11-27T01:23:51.932764754Z" + "timestamp": "2025-11-27T04:02:17.593741-08:00" }, { "operation": "bfs", - "rtt_ns": 330449, + "rtt_ns": 120125, "rtt_ms": 0, "checkpoint": 2, "bfs_start": "0", @@ -3965,11 +3965,11 @@ "468", "231" ], - "timestamp": "2025-11-27T01:23:51.933439442Z" + "timestamp": "2025-11-27T04:02:17.59397-08:00" }, { "operation": "bfs", - "rtt_ns": 314229, + "rtt_ns": 111875, "rtt_ms": 0, "checkpoint": 2, "bfs_start": "1", @@ -4735,11 +4735,11 @@ "231", "118" ], - "timestamp": "2025-11-27T01:23:51.933754301Z" + "timestamp": "2025-11-27T04:02:17.594082-08:00" }, { "operation": "bfs", - "rtt_ns": 297909, + "rtt_ns": 103209, "rtt_ms": 0, "checkpoint": 2, "bfs_start": "2", @@ -5489,11 +5489,11 @@ "743", "231" ], - "timestamp": "2025-11-27T01:23:51.9340527Z" + "timestamp": "2025-11-27T04:02:17.594185-08:00" }, { "operation": "bfs", - "rtt_ns": 289009, + "rtt_ns": 157208, "rtt_ms": 0, "checkpoint": 2, "bfs_start": "4", @@ -6219,11 +6219,11 @@ "231", "398" ], - "timestamp": "2025-11-27T01:23:51.934342229Z" + "timestamp": "2025-11-27T04:02:17.594343-08:00" }, { "operation": "bfs", - "rtt_ns": 293700, + "rtt_ns": 165417, "rtt_ms": 0, "checkpoint": 2, "bfs_start": "3", @@ -6955,11 +6955,11 @@ "743", "222" ], - "timestamp": "2025-11-27T01:23:51.934637999Z" + "timestamp": "2025-11-27T04:02:17.594509-08:00" }, { "operation": "bfs", - "rtt_ns": 468139, + "rtt_ns": 316834, "rtt_ms": 0, "checkpoint": 3, "bfs_start": "0", @@ -7814,11 +7814,11 @@ "745", "857" ], - "timestamp": "2025-11-27T01:23:51.935514026Z" + "timestamp": "2025-11-27T04:02:17.595048-08:00" }, { "operation": "bfs", - "rtt_ns": 502199, + "rtt_ns": 258958, "rtt_ms": 0, "checkpoint": 3, "bfs_start": "1", @@ -8648,11 +8648,11 @@ "118", "857" ], - "timestamp": "2025-11-27T01:23:51.936017005Z" + "timestamp": "2025-11-27T04:02:17.595307-08:00" }, { "operation": "bfs", - "rtt_ns": 445039, + "rtt_ns": 234250, "rtt_ms": 0, "checkpoint": 3, "bfs_start": "2", @@ -9471,11 +9471,11 @@ "993", "743" ], - "timestamp": "2025-11-27T01:23:51.936462544Z" + "timestamp": "2025-11-27T04:02:17.595541-08:00" }, { "operation": "bfs", - "rtt_ns": 310109, + "rtt_ns": 230125, "rtt_ms": 0, "checkpoint": 3, "bfs_start": "4", @@ -10280,11 +10280,11 @@ "755", "857" ], - "timestamp": "2025-11-27T01:23:51.936773003Z" + "timestamp": "2025-11-27T04:02:17.595771-08:00" }, { "operation": "bfs", - "rtt_ns": 197309, + "rtt_ns": 240541, "rtt_ms": 0, "checkpoint": 3, "bfs_start": "3", @@ -11092,11 +11092,11 @@ "857", "222" ], - "timestamp": "2025-11-27T01:23:51.936970452Z" + "timestamp": "2025-11-27T04:02:17.596012-08:00" }, { "operation": "bfs", - "rtt_ns": 840968, + "rtt_ns": 676666, "rtt_ms": 0, "checkpoint": 4, "bfs_start": "0", @@ -11980,11 +11980,11 @@ "637", "857" ], - "timestamp": "2025-11-27T01:23:51.938135239Z" + "timestamp": "2025-11-27T04:02:17.596826-08:00" }, { "operation": "bfs", - "rtt_ns": 616448, + "rtt_ns": 366792, "rtt_ms": 0, "checkpoint": 4, "bfs_start": "1", @@ -12849,11 +12849,11 @@ "884", "857" ], - "timestamp": "2025-11-27T01:23:51.938752677Z" + "timestamp": "2025-11-27T04:02:17.597193-08:00" }, { "operation": "bfs", - "rtt_ns": 614908, + "rtt_ns": 298667, "rtt_ms": 0, "checkpoint": 4, "bfs_start": "2", @@ -13709,11 +13709,11 @@ "683", "743" ], - "timestamp": "2025-11-27T01:23:51.939368075Z" + "timestamp": "2025-11-27T04:02:17.597492-08:00" }, { "operation": "bfs", - "rtt_ns": 605789, + "rtt_ns": 362417, "rtt_ms": 0, "checkpoint": 4, "bfs_start": "4", @@ -14560,11 +14560,11 @@ "755", "857" ], - "timestamp": "2025-11-27T01:23:51.939974344Z" + "timestamp": "2025-11-27T04:02:17.597854-08:00" }, { "operation": "bfs", - "rtt_ns": 591848, + "rtt_ns": 179625, "rtt_ms": 0, "checkpoint": 4, "bfs_start": "3", @@ -15413,11 +15413,11 @@ "743", "857" ], - "timestamp": "2025-11-27T01:23:51.940576382Z" + "timestamp": "2025-11-27T04:02:17.598035-08:00" }, { "operation": "bfs", - "rtt_ns": 821567, + "rtt_ns": 235667, "rtt_ms": 0, "checkpoint": 5, "bfs_start": "0", @@ -16323,11 +16323,11 @@ "883", "857" ], - "timestamp": "2025-11-27T01:23:51.942117467Z" + "timestamp": "2025-11-27T04:02:17.598426-08:00" }, { "operation": "bfs", - "rtt_ns": 719698, + "rtt_ns": 214750, "rtt_ms": 0, "checkpoint": 5, "bfs_start": "1", @@ -17222,11 +17222,11 @@ "857", "883" ], - "timestamp": "2025-11-27T01:23:51.942837665Z" + "timestamp": "2025-11-27T04:02:17.598641-08:00" }, { "operation": "bfs", - "rtt_ns": 688648, + "rtt_ns": 210542, "rtt_ms": 0, "checkpoint": 5, "bfs_start": "2", @@ -18114,11 +18114,11 @@ "743", "883" ], - "timestamp": "2025-11-27T01:23:51.943526783Z" + "timestamp": "2025-11-27T04:02:17.598851-08:00" }, { "operation": "bfs", - "rtt_ns": 686888, + "rtt_ns": 193541, "rtt_ms": 0, "checkpoint": 5, "bfs_start": "4", @@ -18998,11 +18998,11 @@ "857", "883" ], - "timestamp": "2025-11-27T01:23:51.944214241Z" + "timestamp": "2025-11-27T04:02:17.599045-08:00" }, { "operation": "bfs", - "rtt_ns": 703058, + "rtt_ns": 202209, "rtt_ms": 0, "checkpoint": 5, "bfs_start": "3", @@ -19884,7 +19884,7 @@ "883", "857" ], - "timestamp": "2025-11-27T01:23:51.944917839Z" + "timestamp": "2025-11-27T04:02:17.599247-08:00" } ], "summary": { @@ -19892,10 +19892,10 @@ "total_add_vertices": 0, "total_add_edges": 16384, "total_bfs_queries": 25, - "avg_rtt_ms": 0.453287, - "min_rtt_ms": 0.158939, - "max_rtt_ms": 0.840968, - "total_duration_ns": 17489660, - "total_duration_ms": 17.48966 + "avg_rtt_ms": 0.209966, + "min_rtt_ms": 0.055417, + "max_rtt_ms": 0.676666, + "total_duration_ns": 6852417, + "total_duration_ms": 6.852417 } } \ No newline at end of file diff --git a/notebooks/benchmark_parallel_naive.json b/notebooks/benchmark_parallel_naive.json index 9c17fff..87ff743 100644 --- a/notebooks/benchmark_parallel_naive.json +++ b/notebooks/benchmark_parallel_naive.json @@ -14,175024 +14,175048 @@ "measurements": [ { "operation": "add_vertex", - "rtt_ns": 3133311, - "rtt_ms": 3.133311, + "rtt_ns": 4410916, + "rtt_ms": 4.410916, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.409982794Z" + "timestamp": "2025-11-27T04:03:11.104795-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3287990, - "rtt_ms": 3.28799, + "rtt_ns": 4439417, + "rtt_ms": 4.439417, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.410129523Z" + "timestamp": "2025-11-27T04:03:11.104838-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3395200, - "rtt_ms": 3.3952, + "rtt_ns": 4547125, + "rtt_ms": 4.547125, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.410210583Z" + "timestamp": "2025-11-27T04:03:11.104942-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3344910, - "rtt_ms": 3.34491, + "rtt_ns": 4573083, + "rtt_ms": 4.573083, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.410214543Z" + "timestamp": "2025-11-27T04:03:11.104955-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3403480, - "rtt_ms": 3.40348, + "rtt_ns": 5006000, + "rtt_ms": 5.006, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.410262843Z" + "timestamp": "2025-11-27T04:03:11.105395-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3385010, - "rtt_ms": 3.38501, + "rtt_ns": 5236917, + "rtt_ms": 5.236917, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.410264663Z" + "timestamp": "2025-11-27T04:03:11.105603-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3391700, - "rtt_ms": 3.3917, + "rtt_ns": 5255125, + "rtt_ms": 5.255125, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.410265563Z" + "timestamp": "2025-11-27T04:03:11.105635-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3389980, - "rtt_ms": 3.38998, + "rtt_ns": 5308417, + "rtt_ms": 5.308417, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.410313183Z" + "timestamp": "2025-11-27T04:03:11.10567-08:00" }, { "operation": "add_vertex", - "rtt_ns": 4405897, - "rtt_ms": 4.405897, + "rtt_ns": 5357042, + "rtt_ms": 5.357042, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.41120076Z" + "timestamp": "2025-11-27T04:03:11.105728-08:00" }, { "operation": "add_vertex", - "rtt_ns": 4573796, - "rtt_ms": 4.573796, + "rtt_ns": 5622333, + "rtt_ms": 5.622333, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:23:29.411363959Z" + "timestamp": "2025-11-27T04:03:11.105986-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2147623, - "rtt_ms": 2.147623, + "rtt_ns": 3894208, + "rtt_ms": 3.894208, "checkpoint": 0, - "vertex_from": "165", - "timestamp": "2025-11-27T01:23:29.412462576Z" + "vertex_from": "257", + "timestamp": "2025-11-27T04:03:11.108734-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2893111, - "rtt_ms": 2.893111, + "rtt_ns": 3981459, + "rtt_ms": 3.981459, "checkpoint": 0, - "vertex_from": "20", - "timestamp": "2025-11-27T01:23:29.412879375Z" + "vertex_from": "161", + "timestamp": "2025-11-27T04:03:11.108777-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2633192, - "rtt_ms": 2.633192, + "rtt_ns": 4006458, + "rtt_ms": 4.006458, "checkpoint": 0, - "vertex_from": "257", - "timestamp": "2025-11-27T01:23:29.412902085Z" + "vertex_from": "165", + "timestamp": "2025-11-27T04:03:11.108951-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3264740, - "rtt_ms": 3.26474, + "rtt_ns": 4107584, + "rtt_ms": 4.107584, "checkpoint": 0, - "vertex_from": "33", - "timestamp": "2025-11-27T01:23:29.413401983Z" + "vertex_from": "20", + "timestamp": "2025-11-27T04:03:11.109063-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3074300, - "rtt_ms": 3.0743, + "rtt_ns": 3886834, + "rtt_ms": 3.886834, "checkpoint": 0, - "vertex_from": "512", - "timestamp": "2025-11-27T01:23:29.413400203Z" + "vertex_from": "320", + "timestamp": "2025-11-27T04:03:11.109284-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3185440, - "rtt_ms": 3.18544, + "rtt_ns": 3895083, + "rtt_ms": 3.895083, "checkpoint": 0, - "vertex_from": "1", - "timestamp": "2025-11-27T01:23:29.413404303Z" + "vertex_from": "512", + "timestamp": "2025-11-27T04:03:11.109531-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3137400, - "rtt_ms": 3.1374, + "rtt_ns": 4157125, + "rtt_ms": 4.157125, "checkpoint": 0, - "vertex_from": "320", - "timestamp": "2025-11-27T01:23:29.413410593Z" + "vertex_from": "208", + "timestamp": "2025-11-27T04:03:11.109828-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2068994, - "rtt_ms": 2.068994, + "rtt_ns": 4404500, + "rtt_ms": 4.4045, "checkpoint": 0, - "vertex_from": "208", - "timestamp": "2025-11-27T01:23:29.413438873Z" + "vertex_from": "1", + "timestamp": "2025-11-27T04:03:11.110008-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2247823, - "rtt_ms": 2.247823, + "rtt_ns": 4109333, + "rtt_ms": 4.109333, "checkpoint": 0, "vertex_from": "304", - "timestamp": "2025-11-27T01:23:29.413457303Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1043757, - "rtt_ms": 1.043757, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:29.413506943Z" + "timestamp": "2025-11-27T04:03:11.110096-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3309770, - "rtt_ms": 3.30977, + "rtt_ns": 4308167, + "rtt_ms": 4.308167, "checkpoint": 0, - "vertex_from": "161", - "timestamp": "2025-11-27T01:23:29.413527673Z" + "vertex_from": "33", + "timestamp": "2025-11-27T04:03:11.110144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533715, - "rtt_ms": 1.533715, + "rtt_ns": 3842625, + "rtt_ms": 3.842625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:29.41441392Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 937697, - "rtt_ms": 0.937697, - "checkpoint": 0, - "vertex_from": "708", - "timestamp": "2025-11-27T01:23:29.41445199Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:11.112577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552485, - "rtt_ms": 1.552485, + "rtt_ns": 3858333, + "rtt_ms": 3.858333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.41445536Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:11.112636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072417, - "rtt_ms": 1.072417, + "rtt_ns": 4068250, + "rtt_ms": 4.06825, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "1", - "timestamp": "2025-11-27T01:23:29.41448Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 815428, - "rtt_ms": 0.815428, - "checkpoint": 0, - "vertex_from": "32", - "timestamp": "2025-11-27T01:23:29.415303568Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 950157, - "rtt_ms": 0.950157, - "checkpoint": 0, - "vertex_from": "641", - "timestamp": "2025-11-27T01:23:29.415419367Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:11.113132-08:00" }, { "operation": "add_edge", - "rtt_ns": 2413913, - "rtt_ms": 2.413913, + "rtt_ns": 4251834, + "rtt_ms": 4.251834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:29.415817656Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:11.113203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507563, - "rtt_ms": 2.507563, + "rtt_ns": 3978667, + "rtt_ms": 3.978667, "checkpoint": 0, "vertex_from": "0", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.415919336Z" + "timestamp": "2025-11-27T04:03:11.113263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2514222, - "rtt_ms": 2.514222, + "rtt_ns": 3788041, + "rtt_ms": 3.788041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:29.416043255Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:11.11332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2668312, - "rtt_ms": 2.668312, + "rtt_ns": 3587459, + "rtt_ms": 3.587459, "checkpoint": 0, "vertex_from": "0", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.416108685Z" + "timestamp": "2025-11-27T04:03:11.113416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2776942, - "rtt_ms": 2.776942, + "rtt_ns": 4124042, + "rtt_ms": 4.124042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.416183385Z" + "vertex_to": "1", + "timestamp": "2025-11-27T04:03:11.114132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799525, - "rtt_ms": 1.799525, + "rtt_ns": 4097875, + "rtt_ms": 4.097875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:29.416252075Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1837545, - "rtt_ms": 1.837545, - "checkpoint": 0, - "vertex_from": "64", - "timestamp": "2025-11-27T01:23:29.416257825Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:11.114195-08:00" }, { "operation": "add_edge", - "rtt_ns": 2840522, - "rtt_ms": 2.840522, + "rtt_ns": 4107792, + "rtt_ms": 4.107792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:29.416306485Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:11.114252-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1111266, - "rtt_ms": 1.111266, + "operation": "add_vertex", + "rtt_ns": 4021125, + "rtt_ms": 4.021125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.416415424Z" + "vertex_from": "64", + "timestamp": "2025-11-27T04:03:11.116658-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1119767, - "rtt_ms": 1.119767, + "operation": "add_vertex", + "rtt_ns": 4180625, + "rtt_ms": 4.180625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:29.416540064Z" + "vertex_from": "708", + "timestamp": "2025-11-27T04:03:11.116759-08:00" }, { "operation": "add_vertex", - "rtt_ns": 871407, - "rtt_ms": 0.871407, + "rtt_ns": 4236583, + "rtt_ms": 4.236583, "checkpoint": 0, - "vertex_from": "385", - "timestamp": "2025-11-27T01:23:29.416694173Z" + "vertex_from": "32", + "timestamp": "2025-11-27T04:03:11.117441-08:00" }, { "operation": "add_vertex", - "rtt_ns": 832577, - "rtt_ms": 0.832577, + "rtt_ns": 4379667, + "rtt_ms": 4.379667, "checkpoint": 0, - "vertex_from": "72", - "timestamp": "2025-11-27T01:23:29.416756613Z" + "vertex_from": "641", + "timestamp": "2025-11-27T04:03:11.117512-08:00" }, { "operation": "add_vertex", - "rtt_ns": 887048, - "rtt_ms": 0.887048, + "rtt_ns": 4260583, + "rtt_ms": 4.260583, "checkpoint": 0, - "vertex_from": "50", - "timestamp": "2025-11-27T01:23:29.416935523Z" + "vertex_from": "72", + "timestamp": "2025-11-27T04:03:11.117581-08:00" }, { "operation": "add_vertex", - "rtt_ns": 851438, - "rtt_ms": 0.851438, + "rtt_ns": 4449625, + "rtt_ms": 4.449625, "checkpoint": 0, - "vertex_from": "10", - "timestamp": "2025-11-27T01:23:29.416966803Z" + "vertex_from": "385", + "timestamp": "2025-11-27T04:03:11.117713-08:00" }, { "operation": "add_vertex", - "rtt_ns": 718238, - "rtt_ms": 0.718238, + "rtt_ns": 4237375, + "rtt_ms": 4.237375, "checkpoint": 0, - "vertex_from": "390", - "timestamp": "2025-11-27T01:23:29.417137442Z" + "vertex_from": "92", + "timestamp": "2025-11-27T04:03:11.118433-08:00" }, { "operation": "add_vertex", - "rtt_ns": 858817, - "rtt_ms": 0.858817, + "rtt_ns": 4347375, + "rtt_ms": 4.347375, "checkpoint": 0, - "vertex_from": "128", - "timestamp": "2025-11-27T01:23:29.417173492Z" + "vertex_from": "10", + "timestamp": "2025-11-27T04:03:11.11848-08:00" }, { "operation": "add_vertex", - "rtt_ns": 993647, - "rtt_ms": 0.993647, + "rtt_ns": 5232709, + "rtt_ms": 5.232709, "checkpoint": 0, - "vertex_from": "92", - "timestamp": "2025-11-27T01:23:29.417182812Z" + "vertex_from": "50", + "timestamp": "2025-11-27T04:03:11.118649-08:00" }, { "operation": "add_vertex", - "rtt_ns": 947407, - "rtt_ms": 0.947407, + "rtt_ns": 4601125, + "rtt_ms": 4.601125, "checkpoint": 0, "vertex_from": "136", - "timestamp": "2025-11-27T01:23:29.417204552Z" + "timestamp": "2025-11-27T04:03:11.118854-08:00" }, { "operation": "add_edge", - "rtt_ns": 968737, - "rtt_ms": 0.968737, + "rtt_ns": 4101958, + "rtt_ms": 4.101958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.417226982Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 770978, - "rtt_ms": 0.770978, - "checkpoint": 0, - "vertex_from": "153", - "timestamp": "2025-11-27T01:23:29.417314022Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:11.120861-08:00" }, { "operation": "add_edge", - "rtt_ns": 856408, - "rtt_ms": 0.856408, + "rtt_ns": 4296750, + "rtt_ms": 4.29675, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.417562821Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.120955-08:00" }, { "operation": "add_edge", - "rtt_ns": 844098, - "rtt_ms": 0.844098, + "rtt_ns": 4006167, + "rtt_ms": 4.006167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.417601541Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:11.121518-08:00" }, { "operation": "add_edge", - "rtt_ns": 747027, - "rtt_ms": 0.747027, + "rtt_ns": 4139125, + "rtt_ms": 4.139125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.41771428Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:11.12158-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093814, - "rtt_ms": 2.093814, + "rtt_ns": 3929917, + "rtt_ms": 3.929917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:29.419030047Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:11.121644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996194, - "rtt_ms": 1.996194, + "rtt_ns": 4123167, + "rtt_ms": 4.123167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:29.419134776Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.121704-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239333, - "rtt_ms": 2.239333, + "rtt_ns": 3563958, + "rtt_ms": 3.563958, "checkpoint": 0, "vertex_from": "0", "vertex_to": "92", - "timestamp": "2025-11-27T01:23:29.419422725Z" + "timestamp": "2025-11-27T04:03:11.121997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2154623, - "rtt_ms": 2.154623, + "rtt_ns": 3954250, + "rtt_ms": 3.95425, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:29.419469425Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.122437-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2287393, - "rtt_ms": 2.287393, + "operation": "add_edge", + "rtt_ns": 3864875, + "rtt_ms": 3.864875, "checkpoint": 0, - "vertex_from": "16", - "timestamp": "2025-11-27T01:23:29.419517745Z" + "vertex_from": "0", + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:11.122514-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393213, - "rtt_ms": 2.393213, + "rtt_ns": 3698000, + "rtt_ms": 3.698, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.419567245Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:11.122552-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2063234, - "rtt_ms": 2.063234, + "rtt_ns": 3846125, + "rtt_ms": 3.846125, "checkpoint": 0, - "vertex_from": "8", - "timestamp": "2025-11-27T01:23:29.419634525Z" + "vertex_from": "390", + "timestamp": "2025-11-27T04:03:11.124802-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2497983, - "rtt_ms": 2.497983, + "operation": "add_vertex", + "rtt_ns": 3992209, + "rtt_ms": 3.992209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.419703115Z" + "vertex_from": "128", + "timestamp": "2025-11-27T04:03:11.124855-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2099293, - "rtt_ms": 2.099293, + "rtt_ns": 3834250, + "rtt_ms": 3.83425, "checkpoint": 0, - "vertex_from": "518", - "timestamp": "2025-11-27T01:23:29.419706954Z" + "vertex_from": "8", + "timestamp": "2025-11-27T04:03:11.125479-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2001564, - "rtt_ms": 2.001564, + "rtt_ns": 4069542, + "rtt_ms": 4.069542, "checkpoint": 0, - "vertex_from": "6", - "timestamp": "2025-11-27T01:23:29.419720954Z" + "vertex_from": "153", + "timestamp": "2025-11-27T04:03:11.125589-08:00" }, { "operation": "add_vertex", - "rtt_ns": 734418, - "rtt_ms": 0.734418, + "rtt_ns": 4149584, + "rtt_ms": 4.149584, "checkpoint": 0, - "vertex_from": "416", - "timestamp": "2025-11-27T01:23:29.419872044Z" + "vertex_from": "6", + "timestamp": "2025-11-27T04:03:11.126148-08:00" }, { "operation": "add_vertex", - "rtt_ns": 930117, - "rtt_ms": 0.930117, + "rtt_ns": 3817542, + "rtt_ms": 3.817542, "checkpoint": 0, - "vertex_from": "788", - "timestamp": "2025-11-27T01:23:29.419964224Z" + "vertex_from": "416", + "timestamp": "2025-11-27T04:03:11.126332-08:00" }, { "operation": "add_vertex", - "rtt_ns": 893888, - "rtt_ms": 0.893888, + "rtt_ns": 4845750, + "rtt_ms": 4.84575, "checkpoint": 0, - "vertex_from": "384", - "timestamp": "2025-11-27T01:23:29.420320523Z" + "vertex_from": "16", + "timestamp": "2025-11-27T04:03:11.126427-08:00" }, { "operation": "add_vertex", - "rtt_ns": 885188, - "rtt_ms": 0.885188, + "rtt_ns": 4786416, + "rtt_ms": 4.786416, "checkpoint": 0, - "vertex_from": "880", - "timestamp": "2025-11-27T01:23:29.420357553Z" + "vertex_from": "518", + "timestamp": "2025-11-27T04:03:11.126492-08:00" }, { "operation": "add_vertex", - "rtt_ns": 723068, - "rtt_ms": 0.723068, + "rtt_ns": 4138208, + "rtt_ms": 4.138208, "checkpoint": 0, - "vertex_from": "17", - "timestamp": "2025-11-27T01:23:29.420428752Z" + "vertex_from": "788", + "timestamp": "2025-11-27T04:03:11.126576-08:00" }, { "operation": "add_vertex", - "rtt_ns": 882747, - "rtt_ms": 0.882747, + "rtt_ns": 4180584, + "rtt_ms": 4.180584, "checkpoint": 0, - "vertex_from": "528", - "timestamp": "2025-11-27T01:23:29.420457852Z" + "vertex_from": "384", + "timestamp": "2025-11-27T04:03:11.126734-08:00" }, { "operation": "add_edge", - "rtt_ns": 964957, - "rtt_ms": 0.964957, + "rtt_ns": 2905417, + "rtt_ms": 2.905417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.420483222Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.12776-08:00" }, { "operation": "add_edge", - "rtt_ns": 848987, - "rtt_ms": 0.848987, + "rtt_ns": 3066833, + "rtt_ms": 3.066833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.420484592Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:11.127869-08:00" }, { "operation": "add_edge", - "rtt_ns": 802758, - "rtt_ms": 0.802758, + "rtt_ns": 2601708, + "rtt_ms": 2.601708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "6", - "timestamp": "2025-11-27T01:23:29.420524562Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:11.128934-08:00" }, { "operation": "add_edge", - "rtt_ns": 856258, - "rtt_ms": 0.856258, + "rtt_ns": 2464125, + "rtt_ms": 2.464125, "checkpoint": 0, "vertex_from": "0", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:29.420563592Z" + "timestamp": "2025-11-27T04:03:11.128956-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1496291, + "rtt_ms": 1.496291, + "checkpoint": 0, + "vertex_from": "528", + "timestamp": "2025-11-27T04:03:11.129366-08:00" }, { "operation": "add_edge", - "rtt_ns": 738978, - "rtt_ms": 0.738978, + "rtt_ns": 2900000, + "rtt_ms": 2.9, "checkpoint": 0, "vertex_from": "0", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:29.420703732Z" + "timestamp": "2025-11-27T04:03:11.129477-08:00" }, { "operation": "add_edge", - "rtt_ns": 866458, - "rtt_ms": 0.866458, + "rtt_ns": 3400709, + "rtt_ms": 3.400709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:29.420738822Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:03:11.129549-08:00" }, { "operation": "add_vertex", - "rtt_ns": 651298, - "rtt_ms": 0.651298, + "rtt_ns": 1087042, + "rtt_ms": 1.087042, "checkpoint": 0, - "vertex_from": "308", - "timestamp": "2025-11-27T01:23:29.42113928Z" + "vertex_from": "17", + "timestamp": "2025-11-27T04:03:11.13003-08:00" }, { "operation": "add_edge", - "rtt_ns": 890197, - "rtt_ms": 0.890197, + "rtt_ns": 4594250, + "rtt_ms": 4.59425, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.42121117Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:03:11.130073-08:00" }, { - "operation": "add_edge", - "rtt_ns": 882037, - "rtt_ms": 0.882037, + "operation": "add_vertex", + "rtt_ns": 2339583, + "rtt_ms": 2.339583, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "880", - "timestamp": "2025-11-27T01:23:29.42124022Z" + "vertex_from": "880", + "timestamp": "2025-11-27T04:03:11.130101-08:00" }, { "operation": "add_edge", - "rtt_ns": 854378, - "rtt_ms": 0.854378, + "rtt_ns": 3713291, + "rtt_ms": 3.713291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.42131302Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:11.130141-08:00" }, { "operation": "add_vertex", - "rtt_ns": 753758, - "rtt_ms": 0.753758, + "rtt_ns": 1197750, + "rtt_ms": 1.19775, "checkpoint": 0, - "vertex_from": "22", - "timestamp": "2025-11-27T01:23:29.42132031Z" + "vertex_from": "308", + "timestamp": "2025-11-27T04:03:11.130155-08:00" }, { "operation": "add_edge", - "rtt_ns": 904788, - "rtt_ms": 0.904788, + "rtt_ns": 4570292, + "rtt_ms": 4.570292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.421334Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:11.130159-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 863358, - "rtt_ms": 0.863358, + "operation": "add_edge", + "rtt_ns": 3480500, + "rtt_ms": 3.4805, "checkpoint": 0, - "vertex_from": "162", - "timestamp": "2025-11-27T01:23:29.42135322Z" + "vertex_from": "0", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.130214-08:00" }, { "operation": "add_vertex", - "rtt_ns": 863948, - "rtt_ms": 0.863948, + "rtt_ns": 1378125, + "rtt_ms": 1.378125, "checkpoint": 0, "vertex_from": "4", - "timestamp": "2025-11-27T01:23:29.42139152Z" + "timestamp": "2025-11-27T04:03:11.130929-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 698598, - "rtt_ms": 0.698598, + "operation": "add_edge", + "rtt_ns": 1578625, + "rtt_ms": 1.578625, "checkpoint": 0, - "vertex_from": "43", - "timestamp": "2025-11-27T01:23:29.42144033Z" + "vertex_from": "0", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.130945-08:00" }, { "operation": "add_vertex", - "rtt_ns": 734008, - "rtt_ms": 0.734008, + "rtt_ns": 1785333, + "rtt_ms": 1.785333, "checkpoint": 0, - "vertex_from": "34", - "timestamp": "2025-11-27T01:23:29.42144136Z" + "vertex_from": "162", + "timestamp": "2025-11-27T04:03:11.131266-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1437083, + "rtt_ms": 1.437083, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:11.131592-08:00" }, { "operation": "add_vertex", - "rtt_ns": 688258, - "rtt_ms": 0.688258, + "rtt_ns": 1575208, + "rtt_ms": 1.575208, "checkpoint": 0, - "vertex_from": "424", - "timestamp": "2025-11-27T01:23:29.422018168Z" + "vertex_from": "22", + "timestamp": "2025-11-27T04:03:11.131651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241924, - "rtt_ms": 2.241924, + "rtt_ns": 1679584, + "rtt_ms": 1.679584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:29.423595894Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.13171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356363, - "rtt_ms": 2.356363, + "rtt_ns": 1723125, + "rtt_ms": 1.723125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "4", - "timestamp": "2025-11-27T01:23:29.423748263Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:03:11.131825-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2448823, - "rtt_ms": 2.448823, + "operation": "add_vertex", + "rtt_ns": 2149250, + "rtt_ms": 2.14925, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:29.423773103Z" + "vertex_from": "34", + "timestamp": "2025-11-27T04:03:11.132296-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1875445, - "rtt_ms": 1.875445, + "operation": "add_vertex", + "rtt_ns": 2152333, + "rtt_ms": 2.152333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:29.423893983Z" + "vertex_from": "66", + "timestamp": "2025-11-27T04:03:11.132368-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2865452, - "rtt_ms": 2.865452, + "rtt_ns": 2228708, + "rtt_ms": 2.228708, "checkpoint": 0, - "vertex_from": "256", - "timestamp": "2025-11-27T01:23:29.424108062Z" + "vertex_from": "43", + "timestamp": "2025-11-27T04:03:11.13239-08:00" }, { "operation": "add_edge", - "rtt_ns": 2992942, - "rtt_ms": 2.992942, + "rtt_ns": 1687125, + "rtt_ms": 1.687125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:29.424132662Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:03:11.132616-08:00" }, { "operation": "add_edge", - "rtt_ns": 3169221, - "rtt_ms": 3.169221, + "rtt_ns": 1368291, + "rtt_ms": 1.368291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "43", - "timestamp": "2025-11-27T01:23:29.424609951Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:11.132635-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3429770, - "rtt_ms": 3.42977, - "checkpoint": 0, - "vertex_from": "66", - "timestamp": "2025-11-27T01:23:29.42464318Z" - }, - { - "operation": "add_edge", - "rtt_ns": 3202440, - "rtt_ms": 3.20244, + "rtt_ns": 1743416, + "rtt_ms": 1.743416, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:29.42464428Z" + "vertex_from": "256", + "timestamp": "2025-11-27T04:03:11.132692-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3318180, - "rtt_ms": 3.31818, + "rtt_ns": 1142750, + "rtt_ms": 1.14275, "checkpoint": 0, - "vertex_from": "576", - "timestamp": "2025-11-27T01:23:29.42465562Z" + "vertex_from": "424", + "timestamp": "2025-11-27T04:03:11.132737-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 904137, - "rtt_ms": 0.904137, + "operation": "add_edge", + "rtt_ns": 1344375, + "rtt_ms": 1.344375, "checkpoint": 0, - "vertex_from": "65", - "timestamp": "2025-11-27T01:23:29.42468301Z" + "vertex_from": "0", + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:11.132995-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1112136, - "rtt_ms": 1.112136, + "rtt_ns": 1286500, + "rtt_ms": 1.2865, "checkpoint": 0, - "vertex_from": "144", - "timestamp": "2025-11-27T01:23:29.42471069Z" + "vertex_from": "576", + "timestamp": "2025-11-27T04:03:11.132999-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1326656, - "rtt_ms": 1.326656, + "rtt_ns": 1591791, + "rtt_ms": 1.591791, "checkpoint": 0, - "vertex_from": "292", - "timestamp": "2025-11-27T01:23:29.425078289Z" + "vertex_from": "144", + "timestamp": "2025-11-27T04:03:11.133418-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1261446, - "rtt_ms": 1.261446, + "rtt_ns": 1324834, + "rtt_ms": 1.324834, "checkpoint": 0, - "vertex_from": "545", - "timestamp": "2025-11-27T01:23:29.425158899Z" + "vertex_from": "65", + "timestamp": "2025-11-27T04:03:11.133963-08:00" }, { "operation": "add_edge", - "rtt_ns": 2497043, - "rtt_ms": 2.497043, + "rtt_ns": 1241959, + "rtt_ms": 1.241959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.426605475Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:11.133979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059904, - "rtt_ms": 2.059904, + "rtt_ns": 1622625, + "rtt_ms": 1.622625, "checkpoint": 0, "vertex_from": "0", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.426703564Z" + "timestamp": "2025-11-27T04:03:11.133991-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2609242, - "rtt_ms": 2.609242, + "rtt_ns": 1384917, + "rtt_ms": 1.384917, "checkpoint": 0, - "vertex_from": "137", - "timestamp": "2025-11-27T01:23:29.426744744Z" + "vertex_from": "292", + "timestamp": "2025-11-27T04:03:11.134002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139584, - "rtt_ms": 2.139584, + "rtt_ns": 1512958, + "rtt_ms": 1.512958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.426823204Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:11.134205-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2210094, - "rtt_ms": 2.210094, + "operation": "add_edge", + "rtt_ns": 1922750, + "rtt_ms": 1.92275, "checkpoint": 0, - "vertex_from": "961", - "timestamp": "2025-11-27T01:23:29.426858314Z" + "vertex_from": "0", + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:11.134219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784275, - "rtt_ms": 1.784275, + "rtt_ns": 1275833, + "rtt_ms": 1.275833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.426863264Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.134275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203724, - "rtt_ms": 2.203724, + "rtt_ns": 1898250, + "rtt_ms": 1.89825, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.426914764Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:03:11.134289-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2346983, - "rtt_ms": 2.346983, + "rtt_ns": 1464375, + "rtt_ms": 1.464375, "checkpoint": 0, - "vertex_from": "306", - "timestamp": "2025-11-27T01:23:29.426960884Z" + "vertex_from": "545", + "timestamp": "2025-11-27T04:03:11.134462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854424, - "rtt_ms": 1.854424, + "rtt_ns": 1377875, + "rtt_ms": 1.377875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:29.427013753Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:11.134796-08:00" }, { "operation": "add_edge", - "rtt_ns": 2365523, - "rtt_ms": 2.365523, + "rtt_ns": 1512541, + "rtt_ms": 1.512541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.427022133Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.135515-08:00" }, { "operation": "add_vertex", - "rtt_ns": 741488, - "rtt_ms": 0.741488, + "rtt_ns": 1295958, + "rtt_ms": 1.295958, "checkpoint": 0, - "vertex_from": "326", - "timestamp": "2025-11-27T01:23:29.427447332Z" + "vertex_from": "536", + "timestamp": "2025-11-27T04:03:11.135517-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1138126, - "rtt_ms": 1.138126, - "checkpoint": 0, - "vertex_from": "18", - "timestamp": "2025-11-27T01:23:29.428007Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1398366, - "rtt_ms": 1.398366, + "rtt_ns": 1563833, + "rtt_ms": 1.563833, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.42814362Z" + "vertex_from": "137", + "timestamp": "2025-11-27T04:03:11.135544-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1541935, - "rtt_ms": 1.541935, + "rtt_ns": 1572500, + "rtt_ms": 1.5725, "checkpoint": 0, - "vertex_from": "536", - "timestamp": "2025-11-27T01:23:29.42815116Z" + "vertex_from": "306", + "timestamp": "2025-11-27T04:03:11.135565-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1136647, - "rtt_ms": 1.136647, + "operation": "add_edge", + "rtt_ns": 1734875, + "rtt_ms": 1.734875, "checkpoint": 0, - "vertex_from": "513", - "timestamp": "2025-11-27T01:23:29.42816105Z" + "vertex_from": "0", + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.135698-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1291216, - "rtt_ms": 1.291216, + "rtt_ns": 1507709, + "rtt_ms": 1.507709, "checkpoint": 0, - "vertex_from": "514", - "timestamp": "2025-11-27T01:23:29.42820961Z" + "vertex_from": "326", + "timestamp": "2025-11-27T04:03:11.135784-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1213517, - "rtt_ms": 1.213517, + "rtt_ns": 1609375, + "rtt_ms": 1.609375, "checkpoint": 0, - "vertex_from": "640", - "timestamp": "2025-11-27T01:23:29.42822929Z" + "vertex_from": "25", + "timestamp": "2025-11-27T04:03:11.135899-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1409896, - "rtt_ms": 1.409896, + "rtt_ns": 1706459, + "rtt_ms": 1.706459, "checkpoint": 0, - "vertex_from": "25", - "timestamp": "2025-11-27T01:23:29.42823586Z" + "vertex_from": "961", + "timestamp": "2025-11-27T04:03:11.135912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413566, - "rtt_ms": 1.413566, + "rtt_ns": 1564083, + "rtt_ms": 1.564083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:29.42827262Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:11.136026-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1344426, - "rtt_ms": 1.344426, + "operation": "add_vertex", + "rtt_ns": 1507708, + "rtt_ms": 1.507708, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:29.42830566Z" + "vertex_from": "18", + "timestamp": "2025-11-27T04:03:11.136304-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1098267, - "rtt_ms": 1.098267, + "operation": "add_vertex", + "rtt_ns": 1366167, + "rtt_ms": 1.366167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.429105837Z" + "vertex_from": "514", + "timestamp": "2025-11-27T04:03:11.136884-08:00" }, { "operation": "add_vertex", - "rtt_ns": 982097, - "rtt_ms": 0.982097, + "rtt_ns": 1404000, + "rtt_ms": 1.404, "checkpoint": 0, - "vertex_from": "176", - "timestamp": "2025-11-27T01:23:29.429128847Z" + "vertex_from": "640", + "timestamp": "2025-11-27T04:03:11.137103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687735, - "rtt_ms": 1.687735, + "rtt_ns": 1869125, + "rtt_ms": 1.869125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:29.429135567Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:11.137413-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 802538, - "rtt_ms": 0.802538, + "operation": "add_edge", + "rtt_ns": 2176458, + "rtt_ms": 2.176458, "checkpoint": 0, - "vertex_from": "195", - "timestamp": "2025-11-27T01:23:29.429942545Z" + "vertex_from": "0", + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:11.137694-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305153, - "rtt_ms": 2.305153, + "rtt_ns": 2141292, + "rtt_ms": 2.141292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.430466573Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:11.137707-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2284783, - "rtt_ms": 2.284783, + "rtt_ns": 1879541, + "rtt_ms": 1.879541, "checkpoint": 0, - "vertex_from": "56", - "timestamp": "2025-11-27T01:23:29.430559823Z" + "vertex_from": "513", + "timestamp": "2025-11-27T04:03:11.137906-08:00" }, { "operation": "add_edge", - "rtt_ns": 2345803, - "rtt_ms": 2.345803, + "rtt_ns": 2277666, + "rtt_ms": 2.277666, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.430582303Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:11.138062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2461482, - "rtt_ms": 2.461482, + "rtt_ns": 1183000, + "rtt_ms": 1.183, "checkpoint": 0, "vertex_from": "0", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.430671842Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2390012, - "rtt_ms": 2.390012, - "checkpoint": 0, - "vertex_from": "160", - "timestamp": "2025-11-27T01:23:29.430698492Z" + "timestamp": "2025-11-27T04:03:11.138068-08:00" }, { "operation": "add_edge", - "rtt_ns": 2485282, - "rtt_ms": 2.485282, + "rtt_ns": 2177083, + "rtt_ms": 2.177083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.430715252Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:03:11.13809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2633832, - "rtt_ms": 2.633832, + "rtt_ns": 1838375, + "rtt_ms": 1.838375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:29.430785782Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1744815, - "rtt_ms": 1.744815, - "checkpoint": 0, - "vertex_from": "644", - "timestamp": "2025-11-27T01:23:29.430854292Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:11.138143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759205, - "rtt_ms": 1.759205, + "rtt_ns": 2253208, + "rtt_ms": 2.253208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:29.430888762Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:11.138157-08:00" }, { "operation": "add_edge", - "rtt_ns": 982807, - "rtt_ms": 0.982807, + "rtt_ns": 1271375, + "rtt_ms": 1.271375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:29.430925792Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1033857, - "rtt_ms": 1.033857, - "checkpoint": 0, - "vertex_from": "68", - "timestamp": "2025-11-27T01:23:29.431708939Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1173466, - "rtt_ms": 1.173466, - "checkpoint": 0, - "vertex_from": "832", - "timestamp": "2025-11-27T01:23:29.431760599Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:11.138375-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1846485, - "rtt_ms": 1.846485, + "rtt_ns": 1395542, + "rtt_ms": 1.395542, "checkpoint": 0, - "vertex_from": "2", - "timestamp": "2025-11-27T01:23:29.432315588Z" + "vertex_from": "176", + "timestamp": "2025-11-27T04:03:11.13881-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1420445, - "rtt_ms": 1.420445, + "rtt_ns": 1712833, + "rtt_ms": 1.712833, "checkpoint": 0, - "vertex_from": "36", - "timestamp": "2025-11-27T01:23:29.432349647Z" + "vertex_from": "56", + "timestamp": "2025-11-27T04:03:11.139408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838804, - "rtt_ms": 1.838804, + "rtt_ns": 1514792, + "rtt_ms": 1.514792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.432399057Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.139421-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1897875, - "rtt_ms": 1.897875, + "operation": "add_vertex", + "rtt_ns": 1370292, + "rtt_ms": 1.370292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.432596917Z" + "vertex_from": "644", + "timestamp": "2025-11-27T04:03:11.139434-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1923464, - "rtt_ms": 1.923464, + "operation": "add_vertex", + "rtt_ns": 1324625, + "rtt_ms": 1.324625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:29.432778306Z" + "vertex_from": "68", + "timestamp": "2025-11-27T04:03:11.139482-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2065254, - "rtt_ms": 2.065254, + "rtt_ns": 1899250, + "rtt_ms": 1.89925, "checkpoint": 0, - "vertex_from": "388", - "timestamp": "2025-11-27T01:23:29.432785896Z" + "vertex_from": "160", + "timestamp": "2025-11-27T04:03:11.139607-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2094754, - "rtt_ms": 2.094754, + "rtt_ns": 1700084, + "rtt_ms": 1.700084, "checkpoint": 0, - "vertex_from": "58", - "timestamp": "2025-11-27T01:23:29.432987086Z" + "vertex_from": "832", + "timestamp": "2025-11-27T04:03:11.139844-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2216574, - "rtt_ms": 2.216574, + "rtt_ns": 1479792, + "rtt_ms": 1.479792, "checkpoint": 0, - "vertex_from": "356", - "timestamp": "2025-11-27T01:23:29.433006266Z" + "vertex_from": "388", + "timestamp": "2025-11-27T04:03:11.139856-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1015577, - "rtt_ms": 1.015577, + "rtt_ns": 1766041, + "rtt_ms": 1.766041, "checkpoint": 0, - "vertex_from": "5", - "timestamp": "2025-11-27T01:23:29.433418364Z" + "vertex_from": "2", + "timestamp": "2025-11-27T04:03:11.139857-08:00" }, { "operation": "add_vertex", - "rtt_ns": 831548, - "rtt_ms": 0.831548, + "rtt_ns": 1790000, + "rtt_ms": 1.79, "checkpoint": 0, - "vertex_from": "266", - "timestamp": "2025-11-27T01:23:29.433612664Z" + "vertex_from": "195", + "timestamp": "2025-11-27T04:03:11.139859-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059104, - "rtt_ms": 2.059104, + "rtt_ns": 1400459, + "rtt_ms": 1.400459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.433768523Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:11.140211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2632282, - "rtt_ms": 2.632282, + "rtt_ns": 1463334, + "rtt_ms": 1.463334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.434393181Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:11.140898-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199923, - "rtt_ms": 2.199923, + "rtt_ns": 1428708, + "rtt_ms": 1.428708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "2", - "timestamp": "2025-11-27T01:23:29.434515901Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:11.140911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739505, - "rtt_ms": 1.739505, + "rtt_ns": 1312834, + "rtt_ms": 1.312834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:29.434526221Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.14092-08:00" }, { "operation": "add_edge", - "rtt_ns": 2211824, - "rtt_ms": 2.211824, + "rtt_ns": 1550041, + "rtt_ms": 1.550041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.434561981Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.140958-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2005104, - "rtt_ms": 2.005104, + "rtt_ns": 1659667, + "rtt_ms": 1.659667, "checkpoint": 0, - "vertex_from": "790", - "timestamp": "2025-11-27T01:23:29.434605221Z" + "vertex_from": "356", + "timestamp": "2025-11-27T04:03:11.141082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670015, - "rtt_ms": 1.670015, + "rtt_ns": 1250792, + "rtt_ms": 1.250792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:29.434657691Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:11.141095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245587, - "rtt_ms": 1.245587, + "rtt_ns": 1521750, + "rtt_ms": 1.52175, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "5", - "timestamp": "2025-11-27T01:23:29.434664641Z" + "vertex_to": "2", + "timestamp": "2025-11-27T04:03:11.141379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065647, - "rtt_ms": 1.065647, + "rtt_ns": 1814042, + "rtt_ms": 1.814042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:29.434678931Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:11.141673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780184, - "rtt_ms": 1.780184, + "rtt_ns": 1916459, + "rtt_ms": 1.916459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:29.43478708Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:11.141773-08:00" }, { "operation": "add_vertex", - "rtt_ns": 767148, - "rtt_ms": 0.767148, + "rtt_ns": 1849791, + "rtt_ms": 1.849791, "checkpoint": 0, - "vertex_from": "9", - "timestamp": "2025-11-27T01:23:29.435287339Z" + "vertex_from": "58", + "timestamp": "2025-11-27T04:03:11.142063-08:00" }, { "operation": "add_vertex", - "rtt_ns": 857237, - "rtt_ms": 0.857237, + "rtt_ns": 1214167, + "rtt_ms": 1.214167, "checkpoint": 0, - "vertex_from": "352", - "timestamp": "2025-11-27T01:23:29.435386518Z" + "vertex_from": "645", + "timestamp": "2025-11-27T04:03:11.14231-08:00" }, { "operation": "add_vertex", - "rtt_ns": 796707, - "rtt_ms": 0.796707, + "rtt_ns": 1429709, + "rtt_ms": 1.429709, "checkpoint": 0, - "vertex_from": "194", - "timestamp": "2025-11-27T01:23:29.435457428Z" + "vertex_from": "36", + "timestamp": "2025-11-27T04:03:11.142328-08:00" }, { "operation": "add_vertex", - "rtt_ns": 876167, - "rtt_ms": 0.876167, + "rtt_ns": 1644083, + "rtt_ms": 1.644083, "checkpoint": 0, - "vertex_from": "264", - "timestamp": "2025-11-27T01:23:29.435545308Z" + "vertex_from": "266", + "timestamp": "2025-11-27T04:03:11.142604-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 917248, - "rtt_ms": 0.917248, + "operation": "add_edge", + "rtt_ns": 1538625, + "rtt_ms": 1.538625, "checkpoint": 0, - "vertex_from": "3", - "timestamp": "2025-11-27T01:23:29.435617308Z" + "vertex_from": "0", + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:11.142621-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1954904, - "rtt_ms": 1.954904, + "rtt_ns": 931958, + "rtt_ms": 0.931958, "checkpoint": 0, - "vertex_from": "645", - "timestamp": "2025-11-27T01:23:29.435727277Z" + "vertex_from": "352", + "timestamp": "2025-11-27T04:03:11.142707-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1355526, - "rtt_ms": 1.355526, + "rtt_ns": 1330541, + "rtt_ms": 1.330541, "checkpoint": 0, "vertex_from": "26", - "timestamp": "2025-11-27T01:23:29.435751697Z" + "timestamp": "2025-11-27T04:03:11.14271-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1278906, - "rtt_ms": 1.278906, + "rtt_ns": 1925250, + "rtt_ms": 1.92525, "checkpoint": 0, - "vertex_from": "896", - "timestamp": "2025-11-27T01:23:29.435844417Z" + "vertex_from": "790", + "timestamp": "2025-11-27T04:03:11.142849-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1093287, - "rtt_ms": 1.093287, + "rtt_ns": 2002708, + "rtt_ms": 2.002708, "checkpoint": 0, - "vertex_from": "642", - "timestamp": "2025-11-27T01:23:29.435882317Z" + "vertex_from": "5", + "timestamp": "2025-11-27T04:03:11.142915-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1965774, - "rtt_ms": 1.965774, + "operation": "add_vertex", + "rtt_ns": 1625208, + "rtt_ms": 1.625208, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "790", - "timestamp": "2025-11-27T01:23:29.436571255Z" + "vertex_from": "9", + "timestamp": "2025-11-27T04:03:11.1433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703866, - "rtt_ms": 1.703866, + "rtt_ns": 1337750, + "rtt_ms": 1.33775, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.437091064Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:11.143648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800905, - "rtt_ms": 1.800905, + "rtt_ns": 1353250, + "rtt_ms": 1.35325, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:29.437258763Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.143682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750695, - "rtt_ms": 1.750695, + "rtt_ns": 1942250, + "rtt_ms": 1.94225, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.437296823Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:11.144006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785185, - "rtt_ms": 1.785185, + "rtt_ns": 1320500, + "rtt_ms": 1.3205, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "3", - "timestamp": "2025-11-27T01:23:29.437402913Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:11.144028-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2679832, - "rtt_ms": 2.679832, + "operation": "add_vertex", + "rtt_ns": 1421000, + "rtt_ms": 1.421, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.437967911Z" + "vertex_from": "896", + "timestamp": "2025-11-27T04:03:11.144043-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 930217, - "rtt_ms": 0.930217, + "operation": "add_edge", + "rtt_ns": 1478791, + "rtt_ms": 1.478791, "checkpoint": 0, - "vertex_from": "130", - "timestamp": "2025-11-27T01:23:29.438023691Z" + "vertex_from": "0", + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:11.144189-08:00" }, { "operation": "add_edge", - "rtt_ns": 2327074, - "rtt_ms": 2.327074, + "rtt_ns": 1639417, + "rtt_ms": 1.639417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:29.438055111Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:11.144244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2211694, - "rtt_ms": 2.211694, + "rtt_ns": 1464583, + "rtt_ms": 1.464583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.438056931Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:03:11.144382-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313214, - "rtt_ms": 2.313214, + "rtt_ns": 1546292, + "rtt_ms": 1.546292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:29.438065511Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:03:11.144395-08:00" }, { "operation": "add_vertex", - "rtt_ns": 867278, - "rtt_ms": 0.867278, + "rtt_ns": 1545125, + "rtt_ms": 1.545125, "checkpoint": 0, - "vertex_from": "277", - "timestamp": "2025-11-27T01:23:29.438129901Z" + "vertex_from": "264", + "timestamp": "2025-11-27T04:03:11.145231-08:00" }, { "operation": "add_vertex", - "rtt_ns": 742938, - "rtt_ms": 0.742938, + "rtt_ns": 1580791, + "rtt_ms": 1.580791, "checkpoint": 0, - "vertex_from": "944", - "timestamp": "2025-11-27T01:23:29.438148111Z" + "vertex_from": "194", + "timestamp": "2025-11-27T04:03:11.145231-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1607086, - "rtt_ms": 1.607086, + "operation": "add_edge", + "rtt_ns": 1995792, + "rtt_ms": 1.995792, "checkpoint": 0, - "vertex_from": "962", - "timestamp": "2025-11-27T01:23:29.438181791Z" + "vertex_from": "0", + "vertex_to": "9", + "timestamp": "2025-11-27T04:03:11.145296-08:00" }, { "operation": "add_vertex", - "rtt_ns": 885578, - "rtt_ms": 0.885578, + "rtt_ns": 1543792, + "rtt_ms": 1.543792, "checkpoint": 0, - "vertex_from": "67", - "timestamp": "2025-11-27T01:23:29.438184851Z" + "vertex_from": "962", + "timestamp": "2025-11-27T04:03:11.145734-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318493, - "rtt_ms": 2.318493, + "rtt_ns": 1703208, + "rtt_ms": 1.703208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:29.43820134Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:11.145746-08:00" }, { "operation": "add_vertex", - "rtt_ns": 739898, - "rtt_ms": 0.739898, + "rtt_ns": 1733667, + "rtt_ms": 1.733667, "checkpoint": 0, - "vertex_from": "28", - "timestamp": "2025-11-27T01:23:29.438712619Z" + "vertex_from": "642", + "timestamp": "2025-11-27T04:03:11.145762-08:00" }, { - "operation": "add_edge", - "rtt_ns": 790478, - "rtt_ms": 0.790478, + "operation": "add_vertex", + "rtt_ns": 1517042, + "rtt_ms": 1.517042, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.438814519Z" + "vertex_from": "67", + "timestamp": "2025-11-27T04:03:11.145913-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1221106, - "rtt_ms": 1.221106, + "rtt_ns": 1537541, + "rtt_ms": 1.537541, "checkpoint": 0, - "vertex_from": "192", - "timestamp": "2025-11-27T01:23:29.439279237Z" + "vertex_from": "277", + "timestamp": "2025-11-27T04:03:11.145921-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1385206, - "rtt_ms": 1.385206, + "rtt_ns": 2004542, + "rtt_ms": 2.004542, "checkpoint": 0, - "vertex_from": "45", - "timestamp": "2025-11-27T01:23:29.439448457Z" + "vertex_from": "3", + "timestamp": "2025-11-27T04:03:11.146012-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1397236, - "rtt_ms": 1.397236, + "rtt_ns": 1767125, + "rtt_ms": 1.767125, "checkpoint": 0, - "vertex_from": "321", - "timestamp": "2025-11-27T01:23:29.439466057Z" + "vertex_from": "130", + "timestamp": "2025-11-27T04:03:11.146012-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1789364, - "rtt_ms": 1.789364, + "operation": "add_vertex", + "rtt_ns": 2724625, + "rtt_ms": 2.724625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:29.439971685Z" + "vertex_from": "944", + "timestamp": "2025-11-27T04:03:11.148022-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1860355, - "rtt_ms": 1.860355, + "rtt_ns": 2295792, + "rtt_ms": 2.295792, "checkpoint": 0, - "vertex_from": "42", - "timestamp": "2025-11-27T01:23:29.440068875Z" + "vertex_from": "28", + "timestamp": "2025-11-27T04:03:11.148043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964454, - "rtt_ms": 1.964454, + "rtt_ns": 2530250, + "rtt_ms": 2.53025, "checkpoint": 0, "vertex_from": "0", "vertex_to": "277", - "timestamp": "2025-11-27T01:23:29.440094885Z" + "timestamp": "2025-11-27T04:03:11.148452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948304, - "rtt_ms": 1.948304, + "rtt_ns": 2755000, + "rtt_ms": 2.755, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:29.440096965Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:11.148489-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001504, - "rtt_ms": 2.001504, + "rtt_ns": 3279209, + "rtt_ms": 3.279209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.440186845Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:11.148511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189857, - "rtt_ms": 1.189857, + "rtt_ns": 2559709, + "rtt_ms": 2.559709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.440470074Z" + "vertex_to": "3", + "timestamp": "2025-11-27T04:03:11.148572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834095, - "rtt_ms": 1.834095, + "rtt_ns": 2708959, + "rtt_ms": 2.708959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:29.440547424Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:11.148721-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1785315, - "rtt_ms": 1.785315, + "operation": "add_edge", + "rtt_ns": 2891500, + "rtt_ms": 2.8915, "checkpoint": 0, - "vertex_from": "452", - "timestamp": "2025-11-27T01:23:29.440602814Z" + "vertex_from": "0", + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:11.148804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159667, - "rtt_ms": 1.159667, + "rtt_ns": 3588500, + "rtt_ms": 3.5885, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:29.440608934Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:11.14882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185836, - "rtt_ms": 1.185836, + "rtt_ns": 3061625, + "rtt_ms": 3.061625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:29.440652283Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:11.148824-08:00" }, { "operation": "add_edge", - "rtt_ns": 606868, - "rtt_ms": 0.606868, + "rtt_ns": 1428375, + "rtt_ms": 1.428375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:29.440676593Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:11.149471-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 870978, - "rtt_ms": 0.870978, + "operation": "add_edge", + "rtt_ns": 1689166, + "rtt_ms": 1.689166, "checkpoint": 0, - "vertex_from": "421", - "timestamp": "2025-11-27T01:23:29.440847583Z" + "vertex_from": "0", + "vertex_to": "944", + "timestamp": "2025-11-27T04:03:11.149712-08:00" }, { "operation": "add_vertex", - "rtt_ns": 799298, - "rtt_ms": 0.799298, + "rtt_ns": 1564125, + "rtt_ms": 1.564125, "checkpoint": 0, - "vertex_from": "11", - "timestamp": "2025-11-27T01:23:29.440898023Z" + "vertex_from": "192", + "timestamp": "2025-11-27T04:03:11.150017-08:00" }, { "operation": "add_vertex", - "rtt_ns": 805958, - "rtt_ms": 0.805958, + "rtt_ns": 1545959, + "rtt_ms": 1.545959, "checkpoint": 0, - "vertex_from": "668", - "timestamp": "2025-11-27T01:23:29.440907163Z" + "vertex_from": "45", + "timestamp": "2025-11-27T04:03:11.150036-08:00" }, { "operation": "add_vertex", - "rtt_ns": 740548, - "rtt_ms": 0.740548, + "rtt_ns": 1221833, + "rtt_ms": 1.221833, "checkpoint": 0, - "vertex_from": "349", - "timestamp": "2025-11-27T01:23:29.440935183Z" + "vertex_from": "668", + "timestamp": "2025-11-27T04:03:11.15005-08:00" }, { "operation": "add_vertex", - "rtt_ns": 648658, - "rtt_ms": 0.648658, + "rtt_ns": 1247167, + "rtt_ms": 1.247167, "checkpoint": 0, - "vertex_from": "834", - "timestamp": "2025-11-27T01:23:29.441201212Z" + "vertex_from": "421", + "timestamp": "2025-11-27T04:03:11.150052-08:00" }, { "operation": "add_vertex", - "rtt_ns": 792228, - "rtt_ms": 0.792228, + "rtt_ns": 1499375, + "rtt_ms": 1.499375, "checkpoint": 0, - "vertex_from": "48", - "timestamp": "2025-11-27T01:23:29.441264532Z" + "vertex_from": "452", + "timestamp": "2025-11-27T04:03:11.150221-08:00" }, { - "operation": "add_edge", - "rtt_ns": 680768, - "rtt_ms": 0.680768, + "operation": "add_vertex", + "rtt_ns": 1725958, + "rtt_ms": 1.725958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:29.441283892Z" + "vertex_from": "321", + "timestamp": "2025-11-27T04:03:11.150237-08:00" }, { "operation": "add_vertex", - "rtt_ns": 745258, - "rtt_ms": 0.745258, + "rtt_ns": 1680292, + "rtt_ms": 1.680292, "checkpoint": 0, - "vertex_from": "259", - "timestamp": "2025-11-27T01:23:29.441399501Z" + "vertex_from": "42", + "timestamp": "2025-11-27T04:03:11.150253-08:00" }, { "operation": "add_vertex", - "rtt_ns": 806937, - "rtt_ms": 0.806937, + "rtt_ns": 1641208, + "rtt_ms": 1.641208, "checkpoint": 0, - "vertex_from": "769", - "timestamp": "2025-11-27T01:23:29.441418961Z" + "vertex_from": "11", + "timestamp": "2025-11-27T04:03:11.150462-08:00" }, { "operation": "add_vertex", - "rtt_ns": 756588, - "rtt_ms": 0.756588, + "rtt_ns": 1419292, + "rtt_ms": 1.419292, "checkpoint": 0, - "vertex_from": "583", - "timestamp": "2025-11-27T01:23:29.441436411Z" + "vertex_from": "48", + "timestamp": "2025-11-27T04:03:11.151133-08:00" }, { "operation": "add_vertex", - "rtt_ns": 738717, - "rtt_ms": 0.738717, + "rtt_ns": 1772458, + "rtt_ms": 1.772458, "checkpoint": 0, - "vertex_from": "809", - "timestamp": "2025-11-27T01:23:29.442024879Z" + "vertex_from": "349", + "timestamp": "2025-11-27T04:03:11.151247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365476, - "rtt_ms": 1.365476, + "rtt_ns": 1300084, + "rtt_ms": 1.300084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "421", - "timestamp": "2025-11-27T01:23:29.442213269Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.151318-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 645878, - "rtt_ms": 0.645878, + "operation": "add_edge", + "rtt_ns": 1192083, + "rtt_ms": 1.192083, "checkpoint": 0, - "vertex_from": "464", - "timestamp": "2025-11-27T01:23:29.442862487Z" + "vertex_from": "0", + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:11.151445-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057994, - "rtt_ms": 2.057994, + "rtt_ns": 1560041, + "rtt_ms": 1.560041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:29.442965737Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:11.151596-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083053, - "rtt_ms": 2.083053, + "rtt_ns": 1403917, + "rtt_ms": 1.403917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "11", - "timestamp": "2025-11-27T01:23:29.442981276Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:11.151625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853224, - "rtt_ms": 1.853224, + "rtt_ns": 1633250, + "rtt_ms": 1.63325, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:29.443055066Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:03:11.151684-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119203, - "rtt_ms": 2.119203, + "rtt_ns": 1487417, + "rtt_ms": 1.487417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "349", - "timestamp": "2025-11-27T01:23:29.443055216Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:11.151725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704515, - "rtt_ms": 1.704515, + "rtt_ns": 1749083, + "rtt_ms": 1.749083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.443123696Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:03:11.151802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737415, - "rtt_ms": 1.737415, + "rtt_ns": 1355625, + "rtt_ms": 1.355625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:29.443174216Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:03:11.151818-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1207833, + "rtt_ms": 1.207833, + "checkpoint": 0, + "vertex_from": "834", + "timestamp": "2025-11-27T04:03:11.152527-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1357458, + "rtt_ms": 1.357458, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "349", + "timestamp": "2025-11-27T04:03:11.152604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973634, - "rtt_ms": 1.973634, + "rtt_ns": 1653084, + "rtt_ms": 1.653084, "checkpoint": 0, "vertex_from": "0", "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.443238486Z" + "timestamp": "2025-11-27T04:03:11.152787-08:00" }, { "operation": "add_vertex", - "rtt_ns": 770888, - "rtt_ms": 0.770888, + "rtt_ns": 1430333, + "rtt_ms": 1.430333, "checkpoint": 0, - "vertex_from": "577", - "timestamp": "2025-11-27T01:23:29.443830314Z" + "vertex_from": "533", + "timestamp": "2025-11-27T04:03:11.153249-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1010587, - "rtt_ms": 1.010587, + "rtt_ns": 1640000, + "rtt_ms": 1.64, "checkpoint": 0, - "vertex_from": "533", - "timestamp": "2025-11-27T01:23:29.443993523Z" + "vertex_from": "583", + "timestamp": "2025-11-27T04:03:11.153266-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2188784, - "rtt_ms": 2.188784, + "operation": "add_vertex", + "rtt_ns": 1594375, + "rtt_ms": 1.594375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:29.444214093Z" + "vertex_from": "809", + "timestamp": "2025-11-27T04:03:11.153279-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2832752, - "rtt_ms": 2.832752, + "operation": "add_vertex", + "rtt_ns": 1737167, + "rtt_ms": 1.737167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:29.444232703Z" + "vertex_from": "259", + "timestamp": "2025-11-27T04:03:11.153334-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1372445, - "rtt_ms": 1.372445, + "rtt_ns": 1641417, + "rtt_ms": 1.641417, "checkpoint": 0, "vertex_from": "35", - "timestamp": "2025-11-27T01:23:29.444339952Z" + "timestamp": "2025-11-27T04:03:11.153446-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1320736, - "rtt_ms": 1.320736, + "rtt_ns": 1132458, + "rtt_ms": 1.132458, "checkpoint": 0, - "vertex_from": "453", - "timestamp": "2025-11-27T01:23:29.444445642Z" + "vertex_from": "258", + "timestamp": "2025-11-27T04:03:11.15392-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1755865, - "rtt_ms": 1.755865, + "operation": "add_vertex", + "rtt_ns": 1331042, + "rtt_ms": 1.331042, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:29.444618562Z" + "vertex_from": "577", + "timestamp": "2025-11-27T04:03:11.153936-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1446806, - "rtt_ms": 1.446806, + "rtt_ns": 2342833, + "rtt_ms": 2.342833, "checkpoint": 0, - "vertex_from": "890", - "timestamp": "2025-11-27T01:23:29.444624662Z" + "vertex_from": "464", + "timestamp": "2025-11-27T04:03:11.15407-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2180494, - "rtt_ms": 2.180494, + "operation": "add_edge", + "rtt_ns": 1636750, + "rtt_ms": 1.63675, "checkpoint": 0, - "vertex_from": "258", - "timestamp": "2025-11-27T01:23:29.44523852Z" + "vertex_from": "0", + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:11.154164-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2067524, - "rtt_ms": 2.067524, + "rtt_ns": 2889917, + "rtt_ms": 2.889917, "checkpoint": 0, - "vertex_from": "12", - "timestamp": "2025-11-27T01:23:29.44530749Z" + "vertex_from": "769", + "timestamp": "2025-11-27T04:03:11.154337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530585, - "rtt_ms": 1.530585, + "rtt_ns": 1326042, + "rtt_ms": 1.326042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.445361369Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:03:11.154592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384806, - "rtt_ms": 1.384806, + "rtt_ns": 1471791, + "rtt_ms": 1.471791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:29.445378649Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1511055, - "rtt_ms": 1.511055, - "checkpoint": 0, - "vertex_from": "122", - "timestamp": "2025-11-27T01:23:29.445727808Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:11.154807-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1514955, - "rtt_ms": 1.514955, + "operation": "add_edge", + "rtt_ns": 1643875, + "rtt_ms": 1.643875, "checkpoint": 0, - "vertex_from": "532", - "timestamp": "2025-11-27T01:23:29.445749808Z" + "vertex_from": "0", + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:11.154923-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1190826, - "rtt_ms": 1.190826, + "operation": "add_edge", + "rtt_ns": 1496667, + "rtt_ms": 1.496667, "checkpoint": 0, - "vertex_from": "648", - "timestamp": "2025-11-27T01:23:29.445811028Z" + "vertex_from": "0", + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:11.154943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564436, - "rtt_ms": 1.564436, + "rtt_ns": 1705750, + "rtt_ms": 1.70575, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:29.445904648Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:11.154955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534956, - "rtt_ms": 1.534956, + "rtt_ns": 1188667, + "rtt_ms": 1.188667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "453", - "timestamp": "2025-11-27T01:23:29.445980948Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:11.155259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388875, - "rtt_ms": 1.388875, + "rtt_ns": 1370042, + "rtt_ms": 1.370042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "890", - "timestamp": "2025-11-27T01:23:29.446014117Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.155291-08:00" }, { "operation": "add_edge", - "rtt_ns": 796057, - "rtt_ms": 0.796057, + "rtt_ns": 1733542, + "rtt_ms": 1.733542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.446103817Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:11.15567-08:00" }, { "operation": "add_edge", - "rtt_ns": 866197, - "rtt_ms": 0.866197, + "rtt_ns": 1454375, + "rtt_ms": 1.454375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.446104977Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:11.155792-08:00" }, { "operation": "add_vertex", - "rtt_ns": 736248, - "rtt_ms": 0.736248, + "rtt_ns": 1660708, + "rtt_ms": 1.660708, "checkpoint": 0, - "vertex_from": "288", - "timestamp": "2025-11-27T01:23:29.446117147Z" + "vertex_from": "453", + "timestamp": "2025-11-27T04:03:11.155828-08:00" }, { "operation": "add_vertex", - "rtt_ns": 835868, - "rtt_ms": 0.835868, + "rtt_ns": 1312958, + "rtt_ms": 1.312958, "checkpoint": 0, - "vertex_from": "368", - "timestamp": "2025-11-27T01:23:29.446204237Z" + "vertex_from": "12", + "timestamp": "2025-11-27T04:03:11.15612-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1263366, - "rtt_ms": 1.263366, + "operation": "add_vertex", + "rtt_ns": 1544500, + "rtt_ms": 1.5445, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "122", - "timestamp": "2025-11-27T01:23:29.446991624Z" + "vertex_from": "890", + "timestamp": "2025-11-27T04:03:11.156137-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1105016, - "rtt_ms": 1.105016, + "rtt_ns": 1413291, + "rtt_ms": 1.413291, "checkpoint": 0, - "vertex_from": "323", - "timestamp": "2025-11-27T01:23:29.447011584Z" + "vertex_from": "532", + "timestamp": "2025-11-27T04:03:11.156357-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1329356, - "rtt_ms": 1.329356, + "operation": "add_vertex", + "rtt_ns": 1457750, + "rtt_ms": 1.45775, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:29.447079544Z" + "vertex_from": "122", + "timestamp": "2025-11-27T04:03:11.156383-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1362846, - "rtt_ms": 1.362846, + "rtt_ns": 1568833, + "rtt_ms": 1.568833, "checkpoint": 0, - "vertex_from": "97", - "timestamp": "2025-11-27T01:23:29.447469723Z" + "vertex_from": "648", + "timestamp": "2025-11-27T04:03:11.156526-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1447216, - "rtt_ms": 1.447216, + "rtt_ns": 1483708, + "rtt_ms": 1.483708, "checkpoint": 0, - "vertex_from": "354", - "timestamp": "2025-11-27T01:23:29.447470153Z" + "vertex_from": "368", + "timestamp": "2025-11-27T04:03:11.156744-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1724025, - "rtt_ms": 1.724025, + "operation": "add_vertex", + "rtt_ns": 1605334, + "rtt_ms": 1.605334, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:29.447535453Z" + "vertex_from": "288", + "timestamp": "2025-11-27T04:03:11.156899-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1891574, - "rtt_ms": 1.891574, + "rtt_ns": 1551500, + "rtt_ms": 1.5515, "checkpoint": 0, "vertex_from": "96", - "timestamp": "2025-11-27T01:23:29.447875492Z" + "timestamp": "2025-11-27T04:03:11.157346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683055, - "rtt_ms": 1.683055, + "rtt_ns": 1586625, + "rtt_ms": 1.586625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:29.447887872Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:03:11.157415-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1874215, - "rtt_ms": 1.874215, + "rtt_ns": 1824209, + "rtt_ms": 1.824209, "checkpoint": 0, - "vertex_from": "520", - "timestamp": "2025-11-27T01:23:29.447979882Z" + "vertex_from": "323", + "timestamp": "2025-11-27T04:03:11.157495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879064, - "rtt_ms": 1.879064, + "rtt_ns": 1432333, + "rtt_ms": 1.432333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.447996631Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:11.157789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337016, - "rtt_ms": 1.337016, + "rtt_ns": 1416250, + "rtt_ms": 1.41625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:29.44834922Z" + "vertex_to": "122", + "timestamp": "2025-11-27T04:03:11.157799-08:00" }, { "operation": "add_edge", - "rtt_ns": 920517, - "rtt_ms": 0.920517, + "rtt_ns": 1777167, + "rtt_ms": 1.777167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:29.44839126Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:11.157898-08:00" }, { "operation": "add_edge", - "rtt_ns": 929137, - "rtt_ms": 0.929137, + "rtt_ns": 1390916, + "rtt_ms": 1.390916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:29.44839935Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 862687, - "rtt_ms": 0.862687, - "checkpoint": 0, - "vertex_from": "800", - "timestamp": "2025-11-27T01:23:29.44840311Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:11.157917-08:00" }, { "operation": "add_edge", - "rtt_ns": 736158, - "rtt_ms": 0.736158, + "rtt_ns": 1799750, + "rtt_ms": 1.79975, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.44861214Z" + "vertex_to": "890", + "timestamp": "2025-11-27T04:03:11.157937-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 791927, - "rtt_ms": 0.791927, + "operation": "add_edge", + "rtt_ns": 1388917, + "rtt_ms": 1.388917, "checkpoint": 0, - "vertex_from": "785", - "timestamp": "2025-11-27T01:23:29.448682519Z" + "vertex_from": "0", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.158288-08:00" }, { "operation": "add_edge", - "rtt_ns": 763037, - "rtt_ms": 0.763037, + "rtt_ns": 1570042, + "rtt_ms": 1.570042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.448743309Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:11.158314-08:00" }, { "operation": "add_vertex", - "rtt_ns": 638648, - "rtt_ms": 0.638648, + "rtt_ns": 1085167, + "rtt_ms": 1.085167, "checkpoint": 0, - "vertex_from": "610", - "timestamp": "2025-11-27T01:23:29.449043518Z" + "vertex_from": "97", + "timestamp": "2025-11-27T04:03:11.158886-08:00" }, { "operation": "add_vertex", - "rtt_ns": 734318, - "rtt_ms": 0.734318, + "rtt_ns": 1386500, + "rtt_ms": 1.3865, "checkpoint": 0, - "vertex_from": "140", - "timestamp": "2025-11-27T01:23:29.449091198Z" + "vertex_from": "520", + "timestamp": "2025-11-27T04:03:11.159178-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2137504, - "rtt_ms": 2.137504, + "operation": "add_edge", + "rtt_ns": 2024084, + "rtt_ms": 2.024084, "checkpoint": 0, - "vertex_from": "848", - "timestamp": "2025-11-27T01:23:29.449132958Z" + "vertex_from": "0", + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:11.15952-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2060204, - "rtt_ms": 2.060204, + "rtt_ns": 1247834, + "rtt_ms": 1.247834, "checkpoint": 0, - "vertex_from": "525", - "timestamp": "2025-11-27T01:23:29.449142488Z" + "vertex_from": "785", + "timestamp": "2025-11-27T04:03:11.159537-08:00" }, { "operation": "add_vertex", - "rtt_ns": 777368, - "rtt_ms": 0.777368, + "rtt_ns": 1613667, + "rtt_ms": 1.613667, "checkpoint": 0, - "vertex_from": "139", - "timestamp": "2025-11-27T01:23:29.449173508Z" + "vertex_from": "800", + "timestamp": "2025-11-27T04:03:11.159554-08:00" }, { - "operation": "add_edge", - "rtt_ns": 836018, - "rtt_ms": 0.836018, + "operation": "add_vertex", + "rtt_ns": 1636458, + "rtt_ms": 1.636458, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:29.449239928Z" + "vertex_from": "525", + "timestamp": "2025-11-27T04:03:11.159555-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1240747, - "rtt_ms": 1.240747, + "rtt_ns": 1465875, + "rtt_ms": 1.465875, "checkpoint": 0, "vertex_from": "612", - "timestamp": "2025-11-27T01:23:29.449240748Z" + "timestamp": "2025-11-27T04:03:11.159781-08:00" }, { "operation": "add_vertex", - "rtt_ns": 732257, - "rtt_ms": 0.732257, + "rtt_ns": 2384333, + "rtt_ms": 2.384333, "checkpoint": 0, - "vertex_from": "523", - "timestamp": "2025-11-27T01:23:29.449346677Z" + "vertex_from": "354", + "timestamp": "2025-11-27T04:03:11.159801-08:00" }, { "operation": "add_vertex", - "rtt_ns": 638448, - "rtt_ms": 0.638448, + "rtt_ns": 2080792, + "rtt_ms": 2.080792, "checkpoint": 0, - "vertex_from": "355", - "timestamp": "2025-11-27T01:23:29.449385467Z" + "vertex_from": "848", + "timestamp": "2025-11-27T04:03:11.159982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375426, - "rtt_ms": 1.375426, + "rtt_ns": 2692791, + "rtt_ms": 2.692791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:29.450058535Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:11.160039-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1476542, + "rtt_ms": 1.476542, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:11.160363-08:00" }, { "operation": "add_vertex", - "rtt_ns": 981357, - "rtt_ms": 0.981357, + "rtt_ns": 1212541, + "rtt_ms": 1.212541, "checkpoint": 0, - "vertex_from": "80", - "timestamp": "2025-11-27T01:23:29.451043962Z" + "vertex_from": "140", + "timestamp": "2025-11-27T04:03:11.160734-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074744, - "rtt_ms": 2.074744, + "rtt_ns": 1587792, + "rtt_ms": 1.587792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:29.451118732Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.160767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049114, - "rtt_ms": 2.049114, + "rtt_ns": 1392625, + "rtt_ms": 1.392625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.451140892Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:11.16093-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018084, - "rtt_ms": 2.018084, + "rtt_ns": 1392208, + "rtt_ms": 1.392208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:29.451151472Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:11.160947-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048524, - "rtt_ms": 2.048524, + "rtt_ns": 1181209, + "rtt_ms": 1.181209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:29.451222902Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:11.160963-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169264, - "rtt_ms": 2.169264, + "rtt_ns": 1091625, + "rtt_ms": 1.091625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:29.451312442Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:11.161074-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2126893, - "rtt_ms": 2.126893, + "operation": "add_edge", + "rtt_ns": 1573667, + "rtt_ms": 1.573667, "checkpoint": 0, - "vertex_from": "193", - "timestamp": "2025-11-27T01:23:29.451369961Z" + "vertex_from": "0", + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:11.161129-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079514, - "rtt_ms": 2.079514, + "rtt_ns": 1359084, + "rtt_ms": 1.359084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:29.451426801Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:11.16116-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2205053, - "rtt_ms": 2.205053, + "operation": "add_vertex", + "rtt_ns": 1527542, + "rtt_ms": 1.527542, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:29.451446521Z" + "vertex_from": "139", + "timestamp": "2025-11-27T04:03:11.161569-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2068264, - "rtt_ms": 2.068264, + "operation": "add_vertex", + "rtt_ns": 1465500, + "rtt_ms": 1.4655, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "355", - "timestamp": "2025-11-27T01:23:29.451454441Z" + "vertex_from": "610", + "timestamp": "2025-11-27T04:03:11.161832-08:00" }, { "operation": "add_edge", - "rtt_ns": 656078, - "rtt_ms": 0.656078, + "rtt_ns": 1408083, + "rtt_ms": 1.408083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.45170067Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:11.162143-08:00" }, { "operation": "add_vertex", - "rtt_ns": 623468, - "rtt_ms": 0.623468, + "rtt_ns": 1180709, + "rtt_ms": 1.180709, "checkpoint": 0, - "vertex_from": "768", - "timestamp": "2025-11-27T01:23:29.45174473Z" + "vertex_from": "80", + "timestamp": "2025-11-27T04:03:11.162146-08:00" }, { "operation": "add_vertex", - "rtt_ns": 772138, - "rtt_ms": 0.772138, + "rtt_ns": 1709292, + "rtt_ms": 1.709292, "checkpoint": 0, - "vertex_from": "76", - "timestamp": "2025-11-27T01:23:29.45192599Z" + "vertex_from": "523", + "timestamp": "2025-11-27T04:03:11.162477-08:00" }, { "operation": "add_vertex", - "rtt_ns": 727518, - "rtt_ms": 0.727518, + "rtt_ns": 1528958, + "rtt_ms": 1.528958, "checkpoint": 0, - "vertex_from": "262", - "timestamp": "2025-11-27T01:23:29.45195229Z" + "vertex_from": "768", + "timestamp": "2025-11-27T04:03:11.162604-08:00" }, { "operation": "add_vertex", - "rtt_ns": 636448, - "rtt_ms": 0.636448, + "rtt_ns": 1674958, + "rtt_ms": 1.674958, "checkpoint": 0, - "vertex_from": "282", - "timestamp": "2025-11-27T01:23:29.45195453Z" - }, - { - "operation": "add_edge", - "rtt_ns": 635979, - "rtt_ms": 0.635979, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.45200645Z" + "vertex_from": "193", + "timestamp": "2025-11-27T04:03:11.162623-08:00" }, { "operation": "add_vertex", - "rtt_ns": 928967, - "rtt_ms": 0.928967, + "rtt_ns": 1559166, + "rtt_ms": 1.559166, "checkpoint": 0, "vertex_from": "99", - "timestamp": "2025-11-27T01:23:29.452078369Z" + "timestamp": "2025-11-27T04:03:11.162691-08:00" }, { "operation": "add_vertex", - "rtt_ns": 638818, - "rtt_ms": 0.638818, + "rtt_ns": 1776000, + "rtt_ms": 1.776, "checkpoint": 0, - "vertex_from": "340", - "timestamp": "2025-11-27T01:23:29.452096809Z" + "vertex_from": "355", + "timestamp": "2025-11-27T04:03:11.162708-08:00" }, { "operation": "add_vertex", - "rtt_ns": 666828, - "rtt_ms": 0.666828, + "rtt_ns": 1789417, + "rtt_ms": 1.789417, "checkpoint": 0, - "vertex_from": "713", - "timestamp": "2025-11-27T01:23:29.452096949Z" + "vertex_from": "76", + "timestamp": "2025-11-27T04:03:11.162953-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 684968, - "rtt_ms": 0.684968, + "operation": "add_edge", + "rtt_ns": 1677250, + "rtt_ms": 1.67725, "checkpoint": 0, - "vertex_from": "888", - "timestamp": "2025-11-27T01:23:29.452134539Z" + "vertex_from": "0", + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:11.163246-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 792478, - "rtt_ms": 0.792478, + "operation": "add_edge", + "rtt_ns": 1478708, + "rtt_ms": 1.478708, "checkpoint": 0, - "vertex_from": "588", - "timestamp": "2025-11-27T01:23:29.452497618Z" + "vertex_from": "0", + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:11.163311-08:00" }, { "operation": "add_vertex", - "rtt_ns": 731668, - "rtt_ms": 0.731668, + "rtt_ns": 1252084, + "rtt_ms": 1.252084, "checkpoint": 0, - "vertex_from": "547", - "timestamp": "2025-11-27T01:23:29.452743488Z" + "vertex_from": "262", + "timestamp": "2025-11-27T04:03:11.163397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725375, - "rtt_ms": 1.725375, + "rtt_ns": 1100875, + "rtt_ms": 1.100875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.453470555Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:11.163579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535456, - "rtt_ms": 1.535456, + "rtt_ns": 1448042, + "rtt_ms": 1.448042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:29.453632665Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:11.163594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737025, - "rtt_ms": 1.737025, + "rtt_ns": 1305709, + "rtt_ms": 1.305709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:29.453689655Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.16391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822395, - "rtt_ms": 1.822395, + "rtt_ns": 1264500, + "rtt_ms": 1.2645, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:29.453777615Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:03:11.163973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856885, - "rtt_ms": 1.856885, + "rtt_ns": 1667458, + "rtt_ms": 1.667458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:29.453783335Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:11.16429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707486, - "rtt_ms": 1.707486, + "rtt_ns": 1616708, + "rtt_ms": 1.616708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "713", - "timestamp": "2025-11-27T01:23:29.453805155Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:11.164308-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1472833, + "rtt_ms": 1.472833, + "checkpoint": 0, + "vertex_from": "282", + "timestamp": "2025-11-27T04:03:11.164721-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1439209, + "rtt_ms": 1.439209, + "checkpoint": 0, + "vertex_from": "713", + "timestamp": "2025-11-27T04:03:11.164754-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1464750, + "rtt_ms": 1.46475, + "checkpoint": 0, + "vertex_from": "340", + "timestamp": "2025-11-27T04:03:11.16506-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1495959, + "rtt_ms": 1.495959, + "checkpoint": 0, + "vertex_from": "888", + "timestamp": "2025-11-27T04:03:11.165075-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1692208, + "rtt_ms": 1.692208, + "checkpoint": 0, + "vertex_from": "588", + "timestamp": "2025-11-27T04:03:11.165603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502756, - "rtt_ms": 1.502756, + "rtt_ns": 2667667, + "rtt_ms": 2.667667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:29.454001074Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:11.165621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279086, - "rtt_ms": 1.279086, + "rtt_ns": 2238000, + "rtt_ms": 2.238, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:29.454023454Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:11.165636-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1362375, + "rtt_ms": 1.362375, + "checkpoint": 0, + "vertex_from": "107", + "timestamp": "2025-11-27T04:03:11.165654-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1694375, + "rtt_ms": 1.694375, + "checkpoint": 0, + "vertex_from": "547", + "timestamp": "2025-11-27T04:03:11.165668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905325, - "rtt_ms": 1.905325, + "rtt_ns": 1594417, + "rtt_ms": 1.594417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "888", - "timestamp": "2025-11-27T01:23:29.454040424Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:11.166316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964105, - "rtt_ms": 1.964105, + "rtt_ns": 1284583, + "rtt_ms": 1.284583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:29.454042994Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:11.166344-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 874388, - "rtt_ms": 0.874388, + "operation": "add_edge", + "rtt_ns": 1611208, + "rtt_ms": 1.611208, "checkpoint": 0, - "vertex_from": "107", - "timestamp": "2025-11-27T01:23:29.454347903Z" + "vertex_from": "0", + "vertex_to": "713", + "timestamp": "2025-11-27T04:03:11.166366-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 930167, - "rtt_ms": 0.930167, + "operation": "add_edge", + "rtt_ns": 1393125, + "rtt_ms": 1.393125, "checkpoint": 0, - "vertex_from": "272", - "timestamp": "2025-11-27T01:23:29.454623252Z" + "vertex_from": "0", + "vertex_to": "888", + "timestamp": "2025-11-27T04:03:11.166469-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1130807, - "rtt_ms": 1.130807, + "rtt_ns": 2362250, + "rtt_ms": 2.36225, "checkpoint": 0, "vertex_from": "24", - "timestamp": "2025-11-27T01:23:29.454767832Z" + "timestamp": "2025-11-27T04:03:11.166671-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1179137, - "rtt_ms": 1.179137, + "operation": "add_edge", + "rtt_ns": 1508917, + "rtt_ms": 1.508917, "checkpoint": 0, - "vertex_from": "298", - "timestamp": "2025-11-27T01:23:29.455223461Z" + "vertex_from": "0", + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:11.167112-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1473958, + "rtt_ms": 1.473958, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "107", + "timestamp": "2025-11-27T04:03:11.167128-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1496315, - "rtt_ms": 1.496315, + "rtt_ns": 1544041, + "rtt_ms": 1.544041, "checkpoint": 0, "vertex_from": "276", - "timestamp": "2025-11-27T01:23:29.45527786Z" + "timestamp": "2025-11-27T04:03:11.167181-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1504285, - "rtt_ms": 1.504285, + "operation": "add_edge", + "rtt_ns": 1525208, + "rtt_ms": 1.525208, "checkpoint": 0, - "vertex_from": "369", - "timestamp": "2025-11-27T01:23:29.45531315Z" + "vertex_from": "0", + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:11.167194-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1705335, - "rtt_ms": 1.705335, + "rtt_ns": 1847958, + "rtt_ms": 1.847958, "checkpoint": 0, - "vertex_from": "270", - "timestamp": "2025-11-27T01:23:29.45549108Z" + "vertex_from": "272", + "timestamp": "2025-11-27T04:03:11.167471-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1628775, - "rtt_ms": 1.628775, + "rtt_ns": 1342917, + "rtt_ms": 1.342917, "checkpoint": 0, "vertex_from": "112", - "timestamp": "2025-11-27T01:23:29.455632809Z" + "timestamp": "2025-11-27T04:03:11.16771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316666, - "rtt_ms": 1.316666, + "rtt_ns": 1413125, + "rtt_ms": 1.413125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "107", - "timestamp": "2025-11-27T01:23:29.455664979Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:11.168084-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1757485, - "rtt_ms": 1.757485, + "rtt_ns": 2383750, + "rtt_ms": 2.38375, "checkpoint": 0, - "vertex_from": "370", - "timestamp": "2025-11-27T01:23:29.455783479Z" + "vertex_from": "270", + "timestamp": "2025-11-27T04:03:11.168701-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2204314, - "rtt_ms": 2.204314, + "rtt_ns": 2375333, + "rtt_ms": 2.375333, "checkpoint": 0, - "vertex_from": "13", - "timestamp": "2025-11-27T01:23:29.456250948Z" + "vertex_from": "369", + "timestamp": "2025-11-27T04:03:11.168722-08:00" }, { "operation": "add_vertex", - "rtt_ns": 677218, - "rtt_ms": 0.677218, + "rtt_ns": 2267667, + "rtt_ms": 2.267667, "checkpoint": 0, - "vertex_from": "135", - "timestamp": "2025-11-27T01:23:29.456345147Z" + "vertex_from": "370", + "timestamp": "2025-11-27T04:03:11.168737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754215, - "rtt_ms": 1.754215, + "rtt_ns": 4536416, + "rtt_ms": 4.536416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:29.456522777Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.172008-08:00" }, { "operation": "add_edge", - "rtt_ns": 2442353, - "rtt_ms": 2.442353, + "rtt_ns": 4901791, + "rtt_ms": 4.901791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.457066145Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:11.172083-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1910634, - "rtt_ms": 1.910634, + "operation": "add_vertex", + "rtt_ns": 5010250, + "rtt_ms": 5.01025, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:29.457134375Z" + "vertex_from": "13", + "timestamp": "2025-11-27T04:03:11.17214-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 5013791, + "rtt_ms": 5.013791, + "checkpoint": 0, + "vertex_from": "135", + "timestamp": "2025-11-27T04:03:11.17221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877795, - "rtt_ms": 1.877795, + "rtt_ns": 4555584, + "rtt_ms": 4.555584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:29.457155975Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:11.172266-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 5207125, + "rtt_ms": 5.207125, + "checkpoint": 0, + "vertex_from": "298", + "timestamp": "2025-11-27T04:03:11.172322-08:00" }, { "operation": "add_vertex", - "rtt_ns": 666008, - "rtt_ms": 0.666008, + "rtt_ns": 4340042, + "rtt_ms": 4.340042, "checkpoint": 0, "vertex_from": "652", - "timestamp": "2025-11-27T01:23:29.457191395Z" + "timestamp": "2025-11-27T04:03:11.172426-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002564, - "rtt_ms": 2.002564, + "rtt_ns": 4141542, + "rtt_ms": 4.141542, "checkpoint": 0, "vertex_from": "0", "vertex_to": "369", - "timestamp": "2025-11-27T01:23:29.457316034Z" + "timestamp": "2025-11-27T04:03:11.172863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533245, - "rtt_ms": 1.533245, + "rtt_ns": 4187292, + "rtt_ms": 4.187292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "370", - "timestamp": "2025-11-27T01:23:29.457317144Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:11.172888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736185, - "rtt_ms": 1.736185, + "rtt_ns": 4646000, + "rtt_ms": 4.646, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.457369354Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:03:11.173383-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1106417, - "rtt_ms": 1.106417, + "operation": "add_vertex", + "rtt_ns": 1290958, + "rtt_ms": 1.290958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:29.457452024Z" + "vertex_from": "73", + "timestamp": "2025-11-27T04:03:11.173558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987774, - "rtt_ms": 1.987774, + "rtt_ns": 1408458, + "rtt_ms": 1.408458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:29.457479214Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:11.173835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239936, - "rtt_ms": 1.239936, + "rtt_ns": 1765125, + "rtt_ms": 1.765125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "13", - "timestamp": "2025-11-27T01:23:29.457491464Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:11.174087-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 651238, - "rtt_ms": 0.651238, + "operation": "add_edge", + "rtt_ns": 1893208, + "rtt_ms": 1.893208, "checkpoint": 0, - "vertex_from": "901", - "timestamp": "2025-11-27T01:23:29.458023102Z" + "vertex_from": "0", + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:11.174104-08:00" }, { "operation": "add_vertex", - "rtt_ns": 898577, - "rtt_ms": 0.898577, + "rtt_ns": 2035167, + "rtt_ms": 2.035167, "checkpoint": 0, "vertex_from": "922", - "timestamp": "2025-11-27T01:23:29.458037802Z" + "timestamp": "2025-11-27T04:03:11.17412-08:00" }, { "operation": "add_vertex", - "rtt_ns": 748318, - "rtt_ms": 0.748318, + "rtt_ns": 2123208, + "rtt_ms": 2.123208, "checkpoint": 0, - "vertex_from": "449", - "timestamp": "2025-11-27T01:23:29.458067632Z" + "vertex_from": "275", + "timestamp": "2025-11-27T04:03:11.174135-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 759888, - "rtt_ms": 0.759888, + "operation": "add_edge", + "rtt_ns": 2009375, + "rtt_ms": 2.009375, "checkpoint": 0, - "vertex_from": "600", - "timestamp": "2025-11-27T01:23:29.458080412Z" + "vertex_from": "0", + "vertex_to": "13", + "timestamp": "2025-11-27T04:03:11.17415-08:00" }, { "operation": "add_vertex", - "rtt_ns": 952707, - "rtt_ms": 0.952707, + "rtt_ns": 1568583, + "rtt_ms": 1.568583, "checkpoint": 0, - "vertex_from": "73", - "timestamp": "2025-11-27T01:23:29.458111252Z" + "vertex_from": "901", + "timestamp": "2025-11-27T04:03:11.174953-08:00" }, { "operation": "add_vertex", - "rtt_ns": 683038, - "rtt_ms": 0.683038, + "rtt_ns": 1483208, + "rtt_ms": 1.483208, "checkpoint": 0, - "vertex_from": "405", - "timestamp": "2025-11-27T01:23:29.458139462Z" + "vertex_from": "656", + "timestamp": "2025-11-27T04:03:11.175587-08:00" }, { "operation": "add_vertex", - "rtt_ns": 763648, - "rtt_ms": 0.763648, + "rtt_ns": 1620708, + "rtt_ms": 1.620708, "checkpoint": 0, - "vertex_from": "656", - "timestamp": "2025-11-27T01:23:29.458257962Z" + "vertex_from": "148", + "timestamp": "2025-11-27T04:03:11.175771-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1250256, - "rtt_ms": 1.250256, + "rtt_ns": 2065583, + "rtt_ms": 2.065583, "checkpoint": 0, - "vertex_from": "275", - "timestamp": "2025-11-27T01:23:29.458318841Z" + "vertex_from": "529", + "timestamp": "2025-11-27T04:03:11.176154-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1587405, - "rtt_ms": 1.587405, + "operation": "add_vertex", + "rtt_ns": 3281792, + "rtt_ms": 3.281792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:29.45877914Z" + "vertex_from": "449", + "timestamp": "2025-11-27T04:03:11.176171-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1391736, - "rtt_ms": 1.391736, + "rtt_ns": 3320541, + "rtt_ms": 3.320541, "checkpoint": 0, - "vertex_from": "529", - "timestamp": "2025-11-27T01:23:29.45887331Z" + "vertex_from": "600", + "timestamp": "2025-11-27T04:03:11.176185-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1063997, - "rtt_ms": 1.063997, + "operation": "add_edge", + "rtt_ns": 2640792, + "rtt_ms": 2.640792, "checkpoint": 0, - "vertex_from": "148", - "timestamp": "2025-11-27T01:23:29.459845547Z" + "vertex_from": "0", + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:11.176199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395493, - "rtt_ms": 2.395493, + "rtt_ns": 1455041, + "rtt_ms": 1.455041, "checkpoint": 0, "vertex_from": "0", "vertex_to": "901", - "timestamp": "2025-11-27T01:23:29.460419065Z" + "timestamp": "2025-11-27T04:03:11.176409-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2471663, - "rtt_ms": 2.471663, + "operation": "add_vertex", + "rtt_ns": 2796000, + "rtt_ms": 2.796, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "922", - "timestamp": "2025-11-27T01:23:29.460509955Z" + "vertex_from": "405", + "timestamp": "2025-11-27T04:03:11.176633-08:00" }, { "operation": "add_edge", - "rtt_ns": 2460723, - "rtt_ms": 2.460723, + "rtt_ns": 2529541, + "rtt_ms": 2.529541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:29.460541885Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:03:11.17665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2549263, - "rtt_ms": 2.549263, + "rtt_ns": 2642834, + "rtt_ms": 2.642834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:29.460617155Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:11.176779-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392872, - "rtt_ms": 2.392872, + "rtt_ns": 2179000, + "rtt_ms": 2.179, "checkpoint": 0, "vertex_from": "0", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.460651304Z" + "timestamp": "2025-11-27T04:03:11.177767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567742, - "rtt_ms": 2.567742, + "rtt_ns": 1601208, + "rtt_ms": 1.601208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:29.460679364Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:11.177786-08:00" }, { "operation": "add_edge", - "rtt_ns": 2398943, - "rtt_ms": 2.398943, + "rtt_ns": 2031291, + "rtt_ms": 2.031291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:29.460718174Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:11.177803-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2668452, - "rtt_ms": 2.668452, + "operation": "add_vertex", + "rtt_ns": 1816125, + "rtt_ms": 1.816125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "405", - "timestamp": "2025-11-27T01:23:29.460808604Z" + "vertex_from": "960", + "timestamp": "2025-11-27T04:03:11.178597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967314, - "rtt_ms": 1.967314, + "rtt_ns": 2443125, + "rtt_ms": 2.443125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.460841014Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:11.178614-08:00" }, { "operation": "add_edge", - "rtt_ns": 998647, - "rtt_ms": 0.998647, + "rtt_ns": 2475458, + "rtt_ms": 2.475458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:29.460844704Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.178629-08:00" }, { "operation": "add_vertex", - "rtt_ns": 715218, - "rtt_ms": 0.715218, + "rtt_ns": 1997958, + "rtt_ms": 1.997958, "checkpoint": 0, - "vertex_from": "522", - "timestamp": "2025-11-27T01:23:29.461138283Z" + "vertex_from": "801", + "timestamp": "2025-11-27T04:03:11.178648-08:00" }, { "operation": "add_vertex", - "rtt_ns": 913817, - "rtt_ms": 0.913817, + "rtt_ns": 2463875, + "rtt_ms": 2.463875, "checkpoint": 0, - "vertex_from": "278", - "timestamp": "2025-11-27T01:23:29.461425502Z" + "vertex_from": "522", + "timestamp": "2025-11-27T04:03:11.178664-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 736848, - "rtt_ms": 0.736848, + "operation": "add_edge", + "rtt_ns": 2046083, + "rtt_ms": 2.046083, "checkpoint": 0, - "vertex_from": "285", - "timestamp": "2025-11-27T01:23:29.461457442Z" + "vertex_from": "0", + "vertex_to": "405", + "timestamp": "2025-11-27T04:03:11.17868-08:00" }, { "operation": "add_vertex", - "rtt_ns": 814788, - "rtt_ms": 0.814788, + "rtt_ns": 2305250, + "rtt_ms": 2.30525, "checkpoint": 0, - "vertex_from": "706", - "timestamp": "2025-11-27T01:23:29.461501462Z" + "vertex_from": "278", + "timestamp": "2025-11-27T04:03:11.178719-08:00" }, { "operation": "add_vertex", - "rtt_ns": 876248, - "rtt_ms": 0.876248, + "rtt_ns": 1269458, + "rtt_ms": 1.269458, "checkpoint": 0, - "vertex_from": "300", - "timestamp": "2025-11-27T01:23:29.461529682Z" + "vertex_from": "285", + "timestamp": "2025-11-27T04:03:11.179073-08:00" }, { "operation": "add_vertex", - "rtt_ns": 960157, - "rtt_ms": 0.960157, + "rtt_ns": 1842791, + "rtt_ms": 1.842791, "checkpoint": 0, - "vertex_from": "801", - "timestamp": "2025-11-27T01:23:29.461503902Z" + "vertex_from": "300", + "timestamp": "2025-11-27T04:03:11.179611-08:00" }, { "operation": "add_vertex", - "rtt_ns": 719088, - "rtt_ms": 0.719088, + "rtt_ns": 2082167, + "rtt_ms": 2.082167, "checkpoint": 0, - "vertex_from": "772", - "timestamp": "2025-11-27T01:23:29.461566722Z" + "vertex_from": "706", + "timestamp": "2025-11-27T04:03:11.17987-08:00" }, { "operation": "add_vertex", - "rtt_ns": 758468, - "rtt_ms": 0.758468, + "rtt_ns": 1696417, + "rtt_ms": 1.696417, "checkpoint": 0, "vertex_from": "120", - "timestamp": "2025-11-27T01:23:29.461568442Z" + "timestamp": "2025-11-27T04:03:11.180311-08:00" }, { "operation": "add_vertex", - "rtt_ns": 960877, - "rtt_ms": 0.960877, + "rtt_ns": 1646833, + "rtt_ms": 1.646833, "checkpoint": 0, - "vertex_from": "960", - "timestamp": "2025-11-27T01:23:29.461579552Z" + "vertex_from": "772", + "timestamp": "2025-11-27T04:03:11.180327-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 780488, - "rtt_ms": 0.780488, + "operation": "add_edge", + "rtt_ns": 2848041, + "rtt_ms": 2.848041, "checkpoint": 0, - "vertex_from": "561", - "timestamp": "2025-11-27T01:23:29.461623092Z" + "vertex_from": "0", + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:11.181497-08:00" }, { "operation": "add_edge", - "rtt_ns": 594278, - "rtt_ms": 0.594278, + "rtt_ns": 1203333, + "rtt_ms": 1.203333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:29.461732891Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:11.181515-08:00" }, { "operation": "add_edge", - "rtt_ns": 980097, - "rtt_ms": 0.980097, + "rtt_ns": 2441834, + "rtt_ms": 2.441834, "checkpoint": 0, "vertex_from": "0", "vertex_to": "285", - "timestamp": "2025-11-27T01:23:29.462437989Z" + "timestamp": "2025-11-27T04:03:11.181515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437266, - "rtt_ms": 1.437266, + "rtt_ns": 2792541, + "rtt_ms": 2.792541, "checkpoint": 0, "vertex_from": "0", "vertex_to": "278", - "timestamp": "2025-11-27T01:23:29.462863148Z" + "timestamp": "2025-11-27T04:03:11.181522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374756, - "rtt_ms": 1.374756, + "rtt_ns": 1667000, + "rtt_ms": 1.667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:29.462918608Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:11.181538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420406, - "rtt_ms": 1.420406, + "rtt_ns": 1216541, + "rtt_ms": 1.216541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:29.462950698Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:11.181544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360055, - "rtt_ms": 1.360055, + "rtt_ns": 2954125, + "rtt_ms": 2.954125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:29.462983437Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:11.181551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456535, - "rtt_ms": 1.456535, + "rtt_ns": 2898334, + "rtt_ms": 2.898334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:29.462985057Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:11.181563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425405, - "rtt_ms": 1.425405, + "rtt_ns": 2065250, + "rtt_ms": 2.06525, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:29.463005237Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:11.181677-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1481185, - "rtt_ms": 1.481185, + "operation": "add_vertex", + "rtt_ns": 3149125, + "rtt_ms": 3.149125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:29.463048157Z" + "vertex_from": "561", + "timestamp": "2025-11-27T04:03:11.181779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487215, - "rtt_ms": 1.487215, + "rtt_ns": 1105334, + "rtt_ms": 1.105334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:29.463055967Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:11.182885-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1094957, - "rtt_ms": 1.094957, + "rtt_ns": 1323250, + "rtt_ms": 1.32325, "checkpoint": 0, - "vertex_from": "420", - "timestamp": "2025-11-27T01:23:29.463534626Z" + "vertex_from": "156", + "timestamp": "2025-11-27T04:03:11.183003-08:00" }, { "operation": "add_vertex", - "rtt_ns": 733777, - "rtt_ms": 0.733777, + "rtt_ns": 1644375, + "rtt_ms": 1.644375, "checkpoint": 0, - "vertex_from": "105", - "timestamp": "2025-11-27T01:23:29.463687945Z" + "vertex_from": "596", + "timestamp": "2025-11-27T04:03:11.183161-08:00" }, { "operation": "add_vertex", - "rtt_ns": 827267, - "rtt_ms": 0.827267, + "rtt_ns": 1684500, + "rtt_ms": 1.6845, "checkpoint": 0, - "vertex_from": "596", - "timestamp": "2025-11-27T01:23:29.463692865Z" + "vertex_from": "261", + "timestamp": "2025-11-27T04:03:11.183184-08:00" }, { "operation": "add_vertex", - "rtt_ns": 741448, - "rtt_ms": 0.741448, + "rtt_ns": 1663583, + "rtt_ms": 1.663583, "checkpoint": 0, - "vertex_from": "874", - "timestamp": "2025-11-27T01:23:29.463798645Z" + "vertex_from": "392", + "timestamp": "2025-11-27T04:03:11.183187-08:00" }, { "operation": "add_vertex", - "rtt_ns": 792688, - "rtt_ms": 0.792688, + "rtt_ns": 1647291, + "rtt_ms": 1.647291, "checkpoint": 0, - "vertex_from": "516", - "timestamp": "2025-11-27T01:23:29.463799915Z" + "vertex_from": "296", + "timestamp": "2025-11-27T04:03:11.1832-08:00" }, { "operation": "add_vertex", - "rtt_ns": 823278, - "rtt_ms": 0.823278, + "rtt_ns": 1687792, + "rtt_ms": 1.687792, "checkpoint": 0, - "vertex_from": "296", - "timestamp": "2025-11-27T01:23:29.463810835Z" + "vertex_from": "420", + "timestamp": "2025-11-27T04:03:11.183204-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3055321, - "rtt_ms": 3.055321, + "rtt_ns": 1679708, + "rtt_ms": 1.679708, "checkpoint": 0, - "vertex_from": "261", - "timestamp": "2025-11-27T01:23:29.464790602Z" + "vertex_from": "657", + "timestamp": "2025-11-27T04:03:11.183225-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1905235, - "rtt_ms": 1.905235, + "rtt_ns": 1774458, + "rtt_ms": 1.774458, "checkpoint": 0, - "vertex_from": "657", - "timestamp": "2025-11-27T01:23:29.464891232Z" + "vertex_from": "105", + "timestamp": "2025-11-27T04:03:11.183313-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1975184, - "rtt_ms": 1.975184, + "rtt_ns": 1800334, + "rtt_ms": 1.800334, "checkpoint": 0, - "vertex_from": "392", - "timestamp": "2025-11-27T01:23:29.464895042Z" + "vertex_from": "516", + "timestamp": "2025-11-27T04:03:11.183368-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1853335, - "rtt_ms": 1.853335, + "rtt_ns": 1370625, + "rtt_ms": 1.370625, "checkpoint": 0, - "vertex_from": "156", - "timestamp": "2025-11-27T01:23:29.464902882Z" + "vertex_from": "874", + "timestamp": "2025-11-27T04:03:11.184257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782182, - "rtt_ms": 2.782182, + "rtt_ns": 1129417, + "rtt_ms": 1.129417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:29.466317218Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:11.184314-08:00" }, { "operation": "add_edge", - "rtt_ns": 2535452, - "rtt_ms": 2.535452, + "rtt_ns": 1072584, + "rtt_ms": 1.072584, "checkpoint": 0, "vertex_from": "0", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.466335637Z" + "timestamp": "2025-11-27T04:03:11.184441-08:00" }, { "operation": "add_edge", - "rtt_ns": 2648482, - "rtt_ms": 2.648482, + "rtt_ns": 1458667, + "rtt_ms": 1.458667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:29.466336837Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:11.184462-08:00" }, { "operation": "add_edge", - "rtt_ns": 2648422, - "rtt_ms": 2.648422, + "rtt_ns": 1711000, + "rtt_ms": 1.711, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:29.466341447Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:11.184898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557975, - "rtt_ms": 1.557975, + "rtt_ns": 1689833, + "rtt_ms": 1.689833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:29.466348967Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:11.184915-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 687542, + "rtt_ms": 0.687542, + "checkpoint": 0, + "vertex_from": "133", + "timestamp": "2025-11-27T04:03:11.185151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2551482, - "rtt_ms": 2.551482, + "rtt_ns": 2335292, + "rtt_ms": 2.335292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "874", - "timestamp": "2025-11-27T01:23:29.466350297Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:11.185536-08:00" }, { "operation": "add_edge", - "rtt_ns": 2585382, - "rtt_ms": 2.585382, + "rtt_ns": 2471125, + "rtt_ms": 2.471125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:29.466396587Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:11.185675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574375, - "rtt_ms": 1.574375, + "rtt_ns": 2382041, + "rtt_ms": 2.382041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:29.466465977Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:11.185695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568715, - "rtt_ms": 1.568715, + "rtt_ns": 2674375, + "rtt_ms": 2.674375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:29.466471887Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:11.185836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660525, - "rtt_ms": 1.660525, + "rtt_ns": 1604417, + "rtt_ms": 1.604417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:29.466555797Z" + "vertex_to": "874", + "timestamp": "2025-11-27T04:03:11.185862-08:00" }, { "operation": "add_vertex", - "rtt_ns": 647789, - "rtt_ms": 0.647789, + "rtt_ns": 1561958, + "rtt_ms": 1.561958, "checkpoint": 0, - "vertex_from": "224", - "timestamp": "2025-11-27T01:23:29.466992436Z" + "vertex_from": "689", + "timestamp": "2025-11-27T04:03:11.185878-08:00" }, { "operation": "add_vertex", - "rtt_ns": 730168, - "rtt_ms": 0.730168, + "rtt_ns": 1450292, + "rtt_ms": 1.450292, "checkpoint": 0, "vertex_from": "732", - "timestamp": "2025-11-27T01:23:29.467067555Z" + "timestamp": "2025-11-27T04:03:11.185892-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1100617, - "rtt_ms": 1.100617, + "rtt_ns": 1389375, + "rtt_ms": 1.389375, "checkpoint": 0, - "vertex_from": "129", - "timestamp": "2025-11-27T01:23:29.467571854Z" + "vertex_from": "90", + "timestamp": "2025-11-27T04:03:11.186306-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1403135, - "rtt_ms": 1.403135, + "operation": "add_edge", + "rtt_ns": 1172709, + "rtt_ms": 1.172709, "checkpoint": 0, - "vertex_from": "689", - "timestamp": "2025-11-27T01:23:29.467723143Z" + "vertex_from": "0", + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:11.186324-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1270596, - "rtt_ms": 1.270596, + "rtt_ns": 1486583, + "rtt_ms": 1.486583, "checkpoint": 0, - "vertex_from": "544", - "timestamp": "2025-11-27T01:23:29.467744403Z" + "vertex_from": "224", + "timestamp": "2025-11-27T04:03:11.186385-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1454116, - "rtt_ms": 1.454116, + "rtt_ns": 1319500, + "rtt_ms": 1.3195, "checkpoint": 0, "vertex_from": "39", - "timestamp": "2025-11-27T01:23:29.467806763Z" + "timestamp": "2025-11-27T04:03:11.186858-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1925945, - "rtt_ms": 1.925945, + "operation": "add_edge", + "rtt_ns": 981916, + "rtt_ms": 0.981916, "checkpoint": 0, - "vertex_from": "133", - "timestamp": "2025-11-27T01:23:29.468268732Z" + "vertex_from": "0", + "vertex_to": "732", + "timestamp": "2025-11-27T04:03:11.186874-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1889215, - "rtt_ms": 1.889215, + "rtt_ns": 1577958, + "rtt_ms": 1.577958, "checkpoint": 0, "vertex_from": "928", - "timestamp": "2025-11-27T01:23:29.468287782Z" + "timestamp": "2025-11-27T04:03:11.187255-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1939285, - "rtt_ms": 1.939285, + "rtt_ns": 1578750, + "rtt_ms": 1.57875, "checkpoint": 0, - "vertex_from": "90", - "timestamp": "2025-11-27T01:23:29.468289732Z" + "vertex_from": "129", + "timestamp": "2025-11-27T04:03:11.187275-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1749435, - "rtt_ms": 1.749435, + "rtt_ns": 1541834, + "rtt_ms": 1.541834, "checkpoint": 0, - "vertex_from": "201", - "timestamp": "2025-11-27T01:23:29.468308652Z" + "vertex_from": "544", + "timestamp": "2025-11-27T04:03:11.187378-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2391103, - "rtt_ms": 2.391103, + "operation": "add_vertex", + "rtt_ns": 1704125, + "rtt_ms": 1.704125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "732", - "timestamp": "2025-11-27T01:23:29.469458978Z" + "vertex_from": "201", + "timestamp": "2025-11-27T04:03:11.187567-08:00" }, { "operation": "add_edge", - "rtt_ns": 2601873, - "rtt_ms": 2.601873, + "rtt_ns": 1374541, + "rtt_ms": 1.374541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:29.469594708Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:11.187681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2572843, - "rtt_ms": 2.572843, + "rtt_ns": 1361458, + "rtt_ms": 1.361458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.470145067Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:11.187747-08:00" }, { "operation": "add_vertex", - "rtt_ns": 770368, - "rtt_ms": 0.770368, + "rtt_ns": 1438875, + "rtt_ms": 1.438875, "checkpoint": 0, "vertex_from": "7", - "timestamp": "2025-11-27T01:23:29.470230916Z" + "timestamp": "2025-11-27T04:03:11.187764-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1317083, + "rtt_ms": 1.317083, + "checkpoint": 0, + "vertex_from": "325", + "timestamp": "2025-11-27T04:03:11.188194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2435273, - "rtt_ms": 2.435273, + "rtt_ns": 1622417, + "rtt_ms": 1.622417, "checkpoint": 0, "vertex_from": "0", "vertex_to": "39", - "timestamp": "2025-11-27T01:23:29.470242366Z" + "timestamp": "2025-11-27T04:03:11.18848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984924, - "rtt_ms": 1.984924, + "rtt_ns": 1646500, + "rtt_ms": 1.6465, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:29.470253916Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.188922-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 728888, - "rtt_ms": 0.728888, + "operation": "add_edge", + "rtt_ns": 1739500, + "rtt_ms": 1.7395, "checkpoint": 0, - "vertex_from": "325", - "timestamp": "2025-11-27T01:23:29.470324996Z" + "vertex_from": "0", + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:11.188995-08:00" }, { "operation": "add_edge", - "rtt_ns": 3105002, - "rtt_ms": 3.105002, + "rtt_ns": 1519375, + "rtt_ms": 1.519375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "689", - "timestamp": "2025-11-27T01:23:29.470828485Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:11.189086-08:00" }, { "operation": "add_edge", - "rtt_ns": 3137371, - "rtt_ms": 3.137371, + "rtt_ns": 1718291, + "rtt_ms": 1.718291, "checkpoint": 0, "vertex_from": "0", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.470882084Z" + "timestamp": "2025-11-27T04:03:11.189097-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2726092, - "rtt_ms": 2.726092, + "operation": "add_vertex", + "rtt_ns": 1468792, + "rtt_ms": 1.468792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:29.471034994Z" + "vertex_from": "456", + "timestamp": "2025-11-27T04:03:11.189151-08:00" }, { "operation": "add_edge", - "rtt_ns": 3283141, - "rtt_ms": 3.283141, + "rtt_ns": 3311125, + "rtt_ms": 3.311125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:29.471571073Z" + "vertex_to": "689", + "timestamp": "2025-11-27T04:03:11.189189-08:00" }, { "operation": "add_edge", - "rtt_ns": 3313000, - "rtt_ms": 3.313, + "rtt_ns": 1426625, + "rtt_ms": 1.426625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:29.471603042Z" + "vertex_to": "7", + "timestamp": "2025-11-27T04:03:11.189191-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1591459, + "rtt_ms": 1.591459, + "checkpoint": 0, + "vertex_from": "113", + "timestamp": "2025-11-27T04:03:11.18934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426956, - "rtt_ms": 1.426956, + "rtt_ns": 1592375, + "rtt_ms": 1.592375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "7", - "timestamp": "2025-11-27T01:23:29.471658072Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:11.18979-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1574065, - "rtt_ms": 1.574065, + "rtt_ns": 1368125, + "rtt_ms": 1.368125, "checkpoint": 0, - "vertex_from": "456", - "timestamp": "2025-11-27T01:23:29.471720572Z" + "vertex_from": "407", + "timestamp": "2025-11-27T04:03:11.18985-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1603636, - "rtt_ms": 1.603636, + "rtt_ns": 1199333, + "rtt_ms": 1.199333, "checkpoint": 0, - "vertex_from": "113", - "timestamp": "2025-11-27T01:23:29.471850322Z" + "vertex_from": "568", + "timestamp": "2025-11-27T04:03:11.190298-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1404286, - "rtt_ms": 1.404286, + "rtt_ns": 1491125, + "rtt_ms": 1.491125, "checkpoint": 0, - "vertex_from": "812", - "timestamp": "2025-11-27T01:23:29.472238601Z" + "vertex_from": "89", + "timestamp": "2025-11-27T04:03:11.19058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915565, - "rtt_ms": 1.915565, + "rtt_ns": 1256875, + "rtt_ms": 1.256875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:29.472241021Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:11.190597-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1998555, - "rtt_ms": 1.998555, + "rtt_ns": 1617125, + "rtt_ms": 1.617125, "checkpoint": 0, - "vertex_from": "407", - "timestamp": "2025-11-27T01:23:29.472254571Z" + "vertex_from": "395", + "timestamp": "2025-11-27T04:03:11.190614-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1445542, + "rtt_ms": 1.445542, + "checkpoint": 0, + "vertex_from": "57", + "timestamp": "2025-11-27T04:03:11.190636-08:00" }, { "operation": "add_edge", - "rtt_ns": 676738, - "rtt_ms": 0.676738, + "rtt_ns": 1490333, + "rtt_ms": 1.490333, "checkpoint": 0, "vertex_from": "0", "vertex_to": "456", - "timestamp": "2025-11-27T01:23:29.47239765Z" + "timestamp": "2025-11-27T04:03:11.190641-08:00" }, { - "operation": "add_edge", - "rtt_ns": 745838, - "rtt_ms": 0.745838, + "operation": "add_vertex", + "rtt_ns": 1748417, + "rtt_ms": 1.748417, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:29.47259663Z" + "vertex_from": "812", + "timestamp": "2025-11-27T04:03:11.190672-08:00" }, { "operation": "add_vertex", - "rtt_ns": 960487, - "rtt_ms": 0.960487, + "rtt_ns": 1567083, + "rtt_ms": 1.567083, "checkpoint": 0, "vertex_from": "267", - "timestamp": "2025-11-27T01:23:29.472620439Z" + "timestamp": "2025-11-27T04:03:11.19076-08:00" }, { "operation": "add_edge", - "rtt_ns": 837027, - "rtt_ms": 0.837027, + "rtt_ns": 1508292, + "rtt_ms": 1.508292, "checkpoint": 0, "vertex_from": "0", "vertex_to": "407", - "timestamp": "2025-11-27T01:23:29.473092048Z" + "timestamp": "2025-11-27T04:03:11.191359-08:00" }, { "operation": "add_vertex", - "rtt_ns": 944297, - "rtt_ms": 0.944297, + "rtt_ns": 1655666, + "rtt_ms": 1.655666, "checkpoint": 0, "vertex_from": "202", - "timestamp": "2025-11-27T01:23:29.473191298Z" + "timestamp": "2025-11-27T04:03:11.191447-08:00" }, { "operation": "add_edge", - "rtt_ns": 963597, - "rtt_ms": 0.963597, + "rtt_ns": 1359792, + "rtt_ms": 1.359792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:29.473202998Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:11.191658-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1226209, + "rtt_ms": 1.226209, + "checkpoint": 0, + "vertex_from": "281", + "timestamp": "2025-11-27T04:03:11.191825-08:00" }, { "operation": "add_edge", - "rtt_ns": 673348, - "rtt_ms": 0.673348, + "rtt_ns": 1259042, + "rtt_ms": 1.259042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:29.473294067Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:11.191839-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2429593, - "rtt_ms": 2.429593, + "operation": "add_edge", + "rtt_ns": 1645875, + "rtt_ms": 1.645875, "checkpoint": 0, - "vertex_from": "57", - "timestamp": "2025-11-27T01:23:29.474036475Z" + "vertex_from": "0", + "vertex_to": "57", + "timestamp": "2025-11-27T04:03:11.192282-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2520642, - "rtt_ms": 2.520642, + "operation": "add_edge", + "rtt_ns": 1840416, + "rtt_ms": 1.840416, "checkpoint": 0, - "vertex_from": "568", - "timestamp": "2025-11-27T01:23:29.474093535Z" + "vertex_from": "0", + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:11.192514-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 3055651, - "rtt_ms": 3.055651, + "operation": "add_edge", + "rtt_ns": 1926792, + "rtt_ms": 1.926792, "checkpoint": 0, - "vertex_from": "89", - "timestamp": "2025-11-27T01:23:29.474095165Z" + "vertex_from": "0", + "vertex_to": "395", + "timestamp": "2025-11-27T04:03:11.192541-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1581965, - "rtt_ms": 1.581965, + "rtt_ns": 1928500, + "rtt_ms": 1.9285, "checkpoint": 0, "vertex_from": "273", - "timestamp": "2025-11-27T01:23:29.474180765Z" + "timestamp": "2025-11-27T04:03:11.192571-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1788065, - "rtt_ms": 1.788065, + "operation": "add_edge", + "rtt_ns": 2311500, + "rtt_ms": 2.3115, "checkpoint": 0, - "vertex_from": "281", - "timestamp": "2025-11-27T01:23:29.474188955Z" + "vertex_from": "0", + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:11.193072-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1647459, + "rtt_ms": 1.647459, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:11.193094-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3920279, - "rtt_ms": 3.920279, + "rtt_ns": 1739333, + "rtt_ms": 1.739333, "checkpoint": 0, - "vertex_from": "395", - "timestamp": "2025-11-27T01:23:29.474808053Z" + "vertex_from": "624", + "timestamp": "2025-11-27T04:03:11.193101-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1608696, - "rtt_ms": 1.608696, + "rtt_ns": 1285084, + "rtt_ms": 1.285084, "checkpoint": 0, "vertex_from": "268", - "timestamp": "2025-11-27T01:23:29.474906593Z" + "timestamp": "2025-11-27T04:03:11.193125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741915, - "rtt_ms": 1.741915, + "rtt_ns": 1337500, + "rtt_ms": 1.3375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:29.474933863Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:11.193162-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1853114, - "rtt_ms": 1.853114, + "rtt_ns": 1583041, + "rtt_ms": 1.583041, "checkpoint": 0, - "vertex_from": "624", - "timestamp": "2025-11-27T01:23:29.474949632Z" + "vertex_from": "164", + "timestamp": "2025-11-27T04:03:11.193242-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1749374, - "rtt_ms": 1.749374, + "rtt_ns": 947209, + "rtt_ms": 0.947209, "checkpoint": 0, - "vertex_from": "164", - "timestamp": "2025-11-27T01:23:29.474954852Z" + "vertex_from": "290", + "timestamp": "2025-11-27T04:03:11.193489-08:00" }, { "operation": "add_vertex", - "rtt_ns": 869657, - "rtt_ms": 0.869657, + "rtt_ns": 1393792, + "rtt_ms": 1.393792, "checkpoint": 0, "vertex_from": "274", - "timestamp": "2025-11-27T01:23:29.47580762Z" + "timestamp": "2025-11-27T04:03:11.193678-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038774, - "rtt_ms": 2.038774, + "rtt_ns": 1176417, + "rtt_ms": 1.176417, "checkpoint": 0, "vertex_from": "0", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:29.476220029Z" + "timestamp": "2025-11-27T04:03:11.193748-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2184954, - "rtt_ms": 2.184954, + "operation": "add_vertex", + "rtt_ns": 1459333, + "rtt_ms": 1.459333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:29.476280849Z" + "vertex_from": "19", + "timestamp": "2025-11-27T04:03:11.193974-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2835122, - "rtt_ms": 2.835122, + "operation": "add_vertex", + "rtt_ns": 1417584, + "rtt_ms": 1.417584, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "57", - "timestamp": "2025-11-27T01:23:29.476872157Z" + "vertex_from": "146", + "timestamp": "2025-11-27T04:03:11.195169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159353, - "rtt_ms": 2.159353, + "rtt_ns": 1965083, + "rtt_ms": 1.965083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "395", - "timestamp": "2025-11-27T01:23:29.476967776Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:11.195207-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2815611, - "rtt_ms": 2.815611, + "operation": "add_vertex", + "rtt_ns": 2113750, + "rtt_ms": 2.11375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:29.477005466Z" + "vertex_from": "198", + "timestamp": "2025-11-27T04:03:11.19521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132663, - "rtt_ms": 2.132663, + "rtt_ns": 1722500, + "rtt_ms": 1.7225, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:29.477040136Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 762298, - "rtt_ms": 0.762298, - "checkpoint": 0, - "vertex_from": "290", - "timestamp": "2025-11-27T01:23:29.477046616Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:11.195212-08:00" }, { "operation": "add_edge", - "rtt_ns": 2111694, - "rtt_ms": 2.111694, + "rtt_ns": 2125917, + "rtt_ms": 2.125917, "checkpoint": 0, "vertex_from": "0", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:29.477061976Z" + "timestamp": "2025-11-27T04:03:11.195228-08:00" }, { "operation": "add_vertex", - "rtt_ns": 838877, - "rtt_ms": 0.838877, + "rtt_ns": 2158500, + "rtt_ms": 2.1585, "checkpoint": 0, - "vertex_from": "19", - "timestamp": "2025-11-27T01:23:29.477063956Z" + "vertex_from": "49", + "timestamp": "2025-11-27T04:03:11.195232-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1302466, - "rtt_ms": 1.302466, + "operation": "add_vertex", + "rtt_ns": 2067792, + "rtt_ms": 2.067792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.477110656Z" + "vertex_from": "400", + "timestamp": "2025-11-27T04:03:11.195232-08:00" }, { "operation": "add_edge", - "rtt_ns": 3077851, - "rtt_ms": 3.077851, + "rtt_ns": 2111208, + "rtt_ms": 2.111208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:29.477172136Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:11.195237-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238904, - "rtt_ms": 2.238904, + "rtt_ns": 1628083, + "rtt_ms": 1.628083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:29.477194226Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.195306-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1094906, - "rtt_ms": 1.094906, + "operation": "add_edge", + "rtt_ns": 1611625, + "rtt_ms": 1.611625, "checkpoint": 0, - "vertex_from": "49", - "timestamp": "2025-11-27T01:23:29.477970413Z" + "vertex_from": "0", + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:11.195586-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1660645, - "rtt_ms": 1.660645, + "operation": "add_edge", + "rtt_ns": 1640583, + "rtt_ms": 1.640583, "checkpoint": 0, - "vertex_from": "198", - "timestamp": "2025-11-27T01:23:29.478632221Z" + "vertex_from": "0", + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:11.196873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610715, - "rtt_ms": 1.610715, + "rtt_ns": 1681250, + "rtt_ms": 1.68125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:29.478657711Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:11.196892-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1596005, - "rtt_ms": 1.596005, + "rtt_ns": 1663875, + "rtt_ms": 1.663875, "checkpoint": 0, - "vertex_from": "152", - "timestamp": "2025-11-27T01:23:29.478709881Z" + "vertex_from": "88", + "timestamp": "2025-11-27T04:03:11.196895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685715, - "rtt_ms": 1.685715, + "rtt_ns": 1940000, + "rtt_ms": 1.94, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:29.478750321Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:11.197109-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1553395, - "rtt_ms": 1.553395, + "rtt_ns": 1964541, + "rtt_ms": 1.964541, "checkpoint": 0, - "vertex_from": "517", - "timestamp": "2025-11-27T01:23:29.478750751Z" + "vertex_from": "152", + "timestamp": "2025-11-27T04:03:11.197178-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1696455, - "rtt_ms": 1.696455, + "rtt_ns": 1990166, + "rtt_ms": 1.990166, "checkpoint": 0, "vertex_from": "658", - "timestamp": "2025-11-27T01:23:29.478763421Z" + "timestamp": "2025-11-27T04:03:11.197199-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1735315, - "rtt_ms": 1.735315, + "rtt_ns": 1699375, + "rtt_ms": 1.699375, "checkpoint": 0, - "vertex_from": "146", - "timestamp": "2025-11-27T01:23:29.478779261Z" + "vertex_from": "412", + "timestamp": "2025-11-27T04:03:11.197289-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1770885, - "rtt_ms": 1.770885, + "rtt_ns": 2129791, + "rtt_ms": 2.129791, "checkpoint": 0, - "vertex_from": "400", - "timestamp": "2025-11-27T01:23:29.478779771Z" + "vertex_from": "180", + "timestamp": "2025-11-27T04:03:11.197437-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1956324, - "rtt_ms": 1.956324, + "operation": "add_edge", + "rtt_ns": 2225042, + "rtt_ms": 2.225042, "checkpoint": 0, - "vertex_from": "88", - "timestamp": "2025-11-27T01:23:29.47913261Z" + "vertex_from": "0", + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:11.197457-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1216097, - "rtt_ms": 1.216097, + "rtt_ns": 2349125, + "rtt_ms": 2.349125, "checkpoint": 0, - "vertex_from": "180", - "timestamp": "2025-11-27T01:23:29.479876318Z" + "vertex_from": "517", + "timestamp": "2025-11-27T04:03:11.197587-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1160907, - "rtt_ms": 1.160907, + "rtt_ns": 1137125, + "rtt_ms": 1.137125, "checkpoint": 0, - "vertex_from": "412", - "timestamp": "2025-11-27T01:23:29.479915008Z" + "vertex_from": "138", + "timestamp": "2025-11-27T04:03:11.198248-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1775875, - "rtt_ms": 1.775875, + "operation": "add_vertex", + "rtt_ns": 1389084, + "rtt_ms": 1.389084, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:29.480408656Z" + "vertex_from": "177", + "timestamp": "2025-11-27T04:03:11.198263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2514303, - "rtt_ms": 2.514303, + "rtt_ns": 1177334, + "rtt_ms": 1.177334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:29.480485106Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:11.198377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872785, - "rtt_ms": 1.872785, + "rtt_ns": 1488500, + "rtt_ms": 1.4885, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:29.480583246Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:11.198384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858395, - "rtt_ms": 1.858395, + "rtt_ns": 1261792, + "rtt_ms": 1.261792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.480609746Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:11.19844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856694, - "rtt_ms": 1.856694, + "rtt_ns": 1187833, + "rtt_ms": 1.187833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.480637065Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:03:11.198477-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1951774, - "rtt_ms": 1.951774, + "operation": "add_vertex", + "rtt_ns": 1599083, + "rtt_ms": 1.599083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:29.480715645Z" + "vertex_from": "14", + "timestamp": "2025-11-27T04:03:11.198492-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1965934, - "rtt_ms": 1.965934, + "operation": "add_vertex", + "rtt_ns": 1363625, + "rtt_ms": 1.363625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:29.480747525Z" + "vertex_from": "328", + "timestamp": "2025-11-27T04:03:11.198823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615575, - "rtt_ms": 1.615575, + "rtt_ns": 1747125, + "rtt_ms": 1.747125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:29.480748625Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:11.199185-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1245696, - "rtt_ms": 1.245696, + "operation": "add_vertex", + "rtt_ns": 1224458, + "rtt_ms": 1.224458, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:29.481122714Z" + "vertex_from": "353", + "timestamp": "2025-11-27T04:03:11.199604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212116, - "rtt_ms": 1.212116, + "rtt_ns": 2036792, + "rtt_ms": 2.036792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "412", - "timestamp": "2025-11-27T01:23:29.481128054Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 797488, - "rtt_ms": 0.797488, - "checkpoint": 0, - "vertex_from": "14", - "timestamp": "2025-11-27T01:23:29.481285034Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.199624-08:00" }, { "operation": "add_vertex", - "rtt_ns": 899027, - "rtt_ms": 0.899027, + "rtt_ns": 1276041, + "rtt_ms": 1.276041, "checkpoint": 0, - "vertex_from": "177", - "timestamp": "2025-11-27T01:23:29.481309713Z" + "vertex_from": "556", + "timestamp": "2025-11-27T04:03:11.199754-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 758437, - "rtt_ms": 0.758437, + "operation": "add_edge", + "rtt_ns": 1715875, + "rtt_ms": 1.715875, "checkpoint": 0, - "vertex_from": "328", - "timestamp": "2025-11-27T01:23:29.481371573Z" + "vertex_from": "0", + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:11.199964-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 860257, - "rtt_ms": 0.860257, + "operation": "add_edge", + "rtt_ns": 1715875, + "rtt_ms": 1.715875, "checkpoint": 0, - "vertex_from": "138", - "timestamp": "2025-11-27T01:23:29.481446353Z" + "vertex_from": "0", + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:11.199979-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 710078, - "rtt_ms": 0.710078, + "operation": "add_edge", + "rtt_ns": 1168459, + "rtt_ms": 1.168459, "checkpoint": 0, - "vertex_from": "556", - "timestamp": "2025-11-27T01:23:29.481462253Z" + "vertex_from": "0", + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:11.199992-08:00" }, { "operation": "add_vertex", - "rtt_ns": 752698, - "rtt_ms": 0.752698, + "rtt_ns": 1645791, + "rtt_ms": 1.645791, "checkpoint": 0, "vertex_from": "23", - "timestamp": "2025-11-27T01:23:29.481470393Z" + "timestamp": "2025-11-27T04:03:11.200031-08:00" }, { "operation": "add_vertex", - "rtt_ns": 870408, - "rtt_ms": 0.870408, + "rtt_ns": 1647208, + "rtt_ms": 1.647208, "checkpoint": 0, - "vertex_from": "353", - "timestamp": "2025-11-27T01:23:29.481509623Z" + "vertex_from": "956", + "timestamp": "2025-11-27T04:03:11.200089-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 764408, - "rtt_ms": 0.764408, + "operation": "add_edge", + "rtt_ns": 1605666, + "rtt_ms": 1.605666, "checkpoint": 0, - "vertex_from": "956", - "timestamp": "2025-11-27T01:23:29.481516593Z" + "vertex_from": "0", + "vertex_to": "14", + "timestamp": "2025-11-27T04:03:11.200098-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1066397, - "rtt_ms": 1.066397, + "rtt_ns": 1287750, + "rtt_ms": 1.28775, "checkpoint": 0, "vertex_from": "51", - "timestamp": "2025-11-27T01:23:29.482191751Z" - }, - { - "operation": "add_edge", - "rtt_ns": 950317, - "rtt_ms": 0.950317, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "14", - "timestamp": "2025-11-27T01:23:29.482235821Z" + "timestamp": "2025-11-27T04:03:11.200476-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1620305, - "rtt_ms": 1.620305, + "rtt_ns": 1238584, + "rtt_ms": 1.238584, "checkpoint": 0, "vertex_from": "217", - "timestamp": "2025-11-27T01:23:29.482750339Z" + "timestamp": "2025-11-27T04:03:11.200865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471256, - "rtt_ms": 1.471256, + "rtt_ns": 1448208, + "rtt_ms": 1.448208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:29.482781619Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:11.201202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337636, - "rtt_ms": 1.337636, + "rtt_ns": 1615750, + "rtt_ms": 1.61575, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:29.482784419Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:11.20122-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1781565, - "rtt_ms": 1.781565, + "operation": "add_vertex", + "rtt_ns": 1311458, + "rtt_ms": 1.311458, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:29.483153738Z" + "vertex_from": "172", + "timestamp": "2025-11-27T04:03:11.201277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710415, - "rtt_ms": 1.710415, + "rtt_ns": 1332833, + "rtt_ms": 1.332833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "23", - "timestamp": "2025-11-27T01:23:29.483181338Z" + "vertex_to": "956", + "timestamp": "2025-11-27T04:03:11.201422-08:00" }, { "operation": "add_vertex", - "rtt_ns": 705968, - "rtt_ms": 0.705968, + "rtt_ns": 1380583, + "rtt_ms": 1.380583, "checkpoint": 0, - "vertex_from": "389", - "timestamp": "2025-11-27T01:23:29.483492657Z" + "vertex_from": "84", + "timestamp": "2025-11-27T04:03:11.201481-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2360663, - "rtt_ms": 2.360663, + "operation": "add_vertex", + "rtt_ns": 1546209, + "rtt_ms": 1.546209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:29.483870796Z" + "vertex_from": "592", + "timestamp": "2025-11-27T04:03:11.201541-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2455403, - "rtt_ms": 2.455403, + "operation": "add_vertex", + "rtt_ns": 1591125, + "rtt_ms": 1.591125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:29.483917886Z" + "vertex_from": "389", + "timestamp": "2025-11-27T04:03:11.201571-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003234, - "rtt_ms": 2.003234, + "rtt_ns": 1637000, + "rtt_ms": 1.637, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "51", - "timestamp": "2025-11-27T01:23:29.484195465Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:03:11.201668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452676, - "rtt_ms": 1.452676, + "rtt_ns": 1460584, + "rtt_ms": 1.460584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "217", - "timestamp": "2025-11-27T01:23:29.484203305Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:03:11.201937-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1028027, - "rtt_ms": 1.028027, + "rtt_ns": 1224375, + "rtt_ms": 1.224375, "checkpoint": 0, "vertex_from": "117", - "timestamp": "2025-11-27T01:23:29.484213655Z" + "timestamp": "2025-11-27T04:03:11.202428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2712402, - "rtt_ms": 2.712402, + "rtt_ns": 1404333, + "rtt_ms": 1.404333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "956", - "timestamp": "2025-11-27T01:23:29.484229495Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2007894, - "rtt_ms": 2.007894, - "checkpoint": 0, - "vertex_from": "172", - "timestamp": "2025-11-27T01:23:29.484249085Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:11.202976-08:00" }, { "operation": "add_edge", - "rtt_ns": 804328, - "rtt_ms": 0.804328, + "rtt_ns": 1452208, + "rtt_ms": 1.452208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:29.484297485Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:11.202993-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1523486, - "rtt_ms": 1.523486, + "rtt_ns": 1787375, + "rtt_ms": 1.787375, "checkpoint": 0, - "vertex_from": "592", - "timestamp": "2025-11-27T01:23:29.484311305Z" + "vertex_from": "132", + "timestamp": "2025-11-27T04:03:11.203008-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1218186, - "rtt_ms": 1.218186, + "operation": "add_edge", + "rtt_ns": 2157959, + "rtt_ms": 2.157959, "checkpoint": 0, - "vertex_from": "84", - "timestamp": "2025-11-27T01:23:29.484376094Z" + "vertex_from": "0", + "vertex_to": "217", + "timestamp": "2025-11-27T04:03:11.203023-08:00" }, { "operation": "add_vertex", - "rtt_ns": 898237, - "rtt_ms": 0.898237, + "rtt_ns": 1370292, + "rtt_ms": 1.370292, "checkpoint": 0, - "vertex_from": "132", - "timestamp": "2025-11-27T01:23:29.484772443Z" + "vertex_from": "417", + "timestamp": "2025-11-27T04:03:11.20304-08:00" }, { "operation": "add_vertex", - "rtt_ns": 871347, - "rtt_ms": 0.871347, + "rtt_ns": 1616333, + "rtt_ms": 1.616333, "checkpoint": 0, "vertex_from": "134", - "timestamp": "2025-11-27T01:23:29.484791933Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 802238, - "rtt_ms": 0.802238, - "checkpoint": 0, - "vertex_from": "40", - "timestamp": "2025-11-27T01:23:29.485007693Z" + "timestamp": "2025-11-27T04:03:11.203041-08:00" }, { "operation": "add_edge", - "rtt_ns": 649329, - "rtt_ms": 0.649329, + "rtt_ns": 1777084, + "rtt_ms": 1.777084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:29.485026043Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:11.203054-08:00" }, { "operation": "add_edge", - "rtt_ns": 821058, - "rtt_ms": 0.821058, + "rtt_ns": 1774417, + "rtt_ms": 1.774417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "117", - "timestamp": "2025-11-27T01:23:29.485035213Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:11.203257-08:00" }, { - "operation": "add_edge", - "rtt_ns": 822918, - "rtt_ms": 0.822918, + "operation": "add_vertex", + "rtt_ns": 1382125, + "rtt_ms": 1.382125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:29.485072643Z" + "vertex_from": "40", + "timestamp": "2025-11-27T04:03:11.203322-08:00" }, { "operation": "add_edge", - "rtt_ns": 789477, - "rtt_ms": 0.789477, + "rtt_ns": 953500, + "rtt_ms": 0.9535, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:29.485101212Z" + "vertex_to": "117", + "timestamp": "2025-11-27T04:03:11.203382-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1186666, - "rtt_ms": 1.186666, + "rtt_ns": 1393458, + "rtt_ms": 1.393458, "checkpoint": 0, "vertex_from": "521", - "timestamp": "2025-11-27T01:23:29.485487921Z" + "timestamp": "2025-11-27T04:03:11.204387-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1323116, - "rtt_ms": 1.323116, + "operation": "add_edge", + "rtt_ns": 1363208, + "rtt_ms": 1.363208, "checkpoint": 0, - "vertex_from": "417", - "timestamp": "2025-11-27T01:23:29.485522261Z" + "vertex_from": "0", + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:11.204403-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1359096, - "rtt_ms": 1.359096, + "rtt_ns": 1437000, + "rtt_ms": 1.437, "checkpoint": 0, - "vertex_from": "586", - "timestamp": "2025-11-27T01:23:29.485593131Z" + "vertex_from": "124", + "timestamp": "2025-11-27T04:03:11.204461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389286, - "rtt_ms": 1.389286, + "rtt_ns": 1442208, + "rtt_ms": 1.442208, "checkpoint": 0, "vertex_from": "0", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:29.486181629Z" + "timestamp": "2025-11-27T04:03:11.204483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415366, - "rtt_ms": 1.415366, + "rtt_ns": 1485959, + "rtt_ms": 1.485959, "checkpoint": 0, "vertex_from": "0", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.486188479Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1356776, - "rtt_ms": 1.356776, - "checkpoint": 0, - "vertex_from": "301", - "timestamp": "2025-11-27T01:23:29.486395049Z" + "timestamp": "2025-11-27T04:03:11.204495-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1845584, - "rtt_ms": 1.845584, + "rtt_ns": 1243542, + "rtt_ms": 1.243542, "checkpoint": 0, "vertex_from": "725", - "timestamp": "2025-11-27T01:23:29.486920387Z" + "timestamp": "2025-11-27T04:03:11.204503-08:00" }, { "operation": "add_vertex", - "rtt_ns": 753858, - "rtt_ms": 0.753858, + "rtt_ns": 1518000, + "rtt_ms": 1.518, "checkpoint": 0, - "vertex_from": "329", - "timestamp": "2025-11-27T01:23:29.486937307Z" + "vertex_from": "301", + "timestamp": "2025-11-27T04:03:11.204574-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1881235, - "rtt_ms": 1.881235, + "rtt_ns": 1660875, + "rtt_ms": 1.660875, "checkpoint": 0, - "vertex_from": "538", - "timestamp": "2025-11-27T01:23:29.486988017Z" + "vertex_from": "586", + "timestamp": "2025-11-27T04:03:11.204638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759975, - "rtt_ms": 1.759975, + "rtt_ns": 1363708, + "rtt_ms": 1.363708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:29.487282716Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:11.204686-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2548912, - "rtt_ms": 2.548912, + "rtt_ns": 1717959, + "rtt_ms": 1.717959, "checkpoint": 0, - "vertex_from": "124", - "timestamp": "2025-11-27T01:23:29.487576775Z" + "vertex_from": "538", + "timestamp": "2025-11-27T04:03:11.205102-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3031231, - "rtt_ms": 3.031231, + "operation": "add_vertex", + "rtt_ns": 1458500, + "rtt_ms": 1.4585, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.488039284Z" + "vertex_from": "329", + "timestamp": "2025-11-27T04:03:11.205865-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2638673, - "rtt_ms": 2.638673, + "operation": "add_vertex", + "rtt_ns": 1273875, + "rtt_ms": 1.273875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:29.488126934Z" + "vertex_from": "868", + "timestamp": "2025-11-27T04:03:11.205962-08:00" }, { "operation": "add_edge", - "rtt_ns": 2561013, - "rtt_ms": 2.561013, + "rtt_ns": 1477416, + "rtt_ms": 1.477416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:29.488154364Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:11.206052-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1986855, - "rtt_ms": 1.986855, + "rtt_ns": 1588166, + "rtt_ms": 1.588166, "checkpoint": 0, "vertex_from": "75", - "timestamp": "2025-11-27T01:23:29.488177244Z" + "timestamp": "2025-11-27T04:03:11.206072-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1802795, - "rtt_ms": 1.802795, + "operation": "add_vertex", + "rtt_ns": 1589542, + "rtt_ms": 1.589542, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:29.488198174Z" + "vertex_from": "680", + "timestamp": "2025-11-27T04:03:11.206087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322776, - "rtt_ms": 1.322776, + "rtt_ns": 1759625, + "rtt_ms": 1.759625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:29.488260403Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:03:11.206221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343116, - "rtt_ms": 1.343116, + "rtt_ns": 1599417, + "rtt_ms": 1.599417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:29.488331643Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:11.206238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415926, - "rtt_ms": 1.415926, + "rtt_ns": 1903375, + "rtt_ms": 1.903375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "725", - "timestamp": "2025-11-27T01:23:29.488336763Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:11.206291-08:00" }, { "operation": "add_edge", - "rtt_ns": 959668, - "rtt_ms": 0.959668, + "rtt_ns": 1853417, + "rtt_ms": 1.853417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "124", - "timestamp": "2025-11-27T01:23:29.488536883Z" + "vertex_to": "725", + "timestamp": "2025-11-27T04:03:11.206357-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1267037, - "rtt_ms": 1.267037, + "operation": "add_edge", + "rtt_ns": 1402375, + "rtt_ms": 1.402375, "checkpoint": 0, - "vertex_from": "680", - "timestamp": "2025-11-27T01:23:29.488552163Z" + "vertex_from": "0", + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:11.206504-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1113857, - "rtt_ms": 1.113857, + "operation": "add_edge", + "rtt_ns": 1333917, + "rtt_ms": 1.333917, "checkpoint": 0, - "vertex_from": "868", - "timestamp": "2025-11-27T01:23:29.489156051Z" + "vertex_from": "0", + "vertex_to": "868", + "timestamp": "2025-11-27T04:03:11.207296-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1226867, - "rtt_ms": 1.226867, + "operation": "add_edge", + "rtt_ns": 1227125, + "rtt_ms": 1.227125, "checkpoint": 0, - "vertex_from": "260", - "timestamp": "2025-11-27T01:23:29.48948873Z" + "vertex_from": "0", + "vertex_to": "75", + "timestamp": "2025-11-27T04:03:11.2073-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1174397, - "rtt_ms": 1.174397, + "rtt_ns": 1091500, + "rtt_ms": 1.0915, "checkpoint": 0, - "vertex_from": "579", - "timestamp": "2025-11-27T01:23:29.48951254Z" + "vertex_from": "616", + "timestamp": "2025-11-27T04:03:11.207314-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1383536, - "rtt_ms": 1.383536, + "rtt_ns": 1262083, + "rtt_ms": 1.262083, "checkpoint": 0, "vertex_from": "337", - "timestamp": "2025-11-27T01:23:29.48951423Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1411316, - "rtt_ms": 1.411316, - "checkpoint": 0, - "vertex_from": "616", - "timestamp": "2025-11-27T01:23:29.48956774Z" + "timestamp": "2025-11-27T04:03:11.207317-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1369906, - "rtt_ms": 1.369906, + "rtt_ns": 1101417, + "rtt_ms": 1.101417, "checkpoint": 0, "vertex_from": "448", - "timestamp": "2025-11-27T01:23:29.48956974Z" + "timestamp": "2025-11-27T04:03:11.20734-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1254537, - "rtt_ms": 1.254537, + "operation": "add_edge", + "rtt_ns": 1292208, + "rtt_ms": 1.292208, "checkpoint": 0, - "vertex_from": "29", - "timestamp": "2025-11-27T01:23:29.489591009Z" + "vertex_from": "0", + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:11.207379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506785, - "rtt_ms": 1.506785, + "rtt_ns": 1533208, + "rtt_ms": 1.533208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "75", - "timestamp": "2025-11-27T01:23:29.489684399Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:11.207398-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1647215, - "rtt_ms": 1.647215, + "rtt_ns": 1806875, + "rtt_ms": 1.806875, "checkpoint": 0, - "vertex_from": "299", - "timestamp": "2025-11-27T01:23:29.490191498Z" + "vertex_from": "579", + "timestamp": "2025-11-27T04:03:11.208313-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1653435, - "rtt_ms": 1.653435, + "operation": "add_vertex", + "rtt_ns": 2389000, + "rtt_ms": 2.389, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:29.490206398Z" + "vertex_from": "29", + "timestamp": "2025-11-27T04:03:11.208782-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1091267, - "rtt_ms": 1.091267, + "rtt_ns": 1466417, + "rtt_ms": 1.466417, "checkpoint": 0, - "vertex_from": "131", - "timestamp": "2025-11-27T01:23:29.490781136Z" + "vertex_from": "104", + "timestamp": "2025-11-27T04:03:11.208847-08:00" }, { "operation": "add_vertex", - "rtt_ns": 709018, - "rtt_ms": 0.709018, + "rtt_ns": 2587625, + "rtt_ms": 2.587625, "checkpoint": 0, - "vertex_from": "104", - "timestamp": "2025-11-27T01:23:29.490919686Z" + "vertex_from": "260", + "timestamp": "2025-11-27T04:03:11.208882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087074, - "rtt_ms": 2.087074, + "rtt_ns": 1688416, + "rtt_ms": 1.688416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:29.491243435Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:11.209029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746504, - "rtt_ms": 1.746504, + "rtt_ns": 1950250, + "rtt_ms": 1.95025, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:29.491316574Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:11.209268-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2065424, - "rtt_ms": 2.065424, + "operation": "add_vertex", + "rtt_ns": 2020833, + "rtt_ms": 2.020833, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.491554514Z" + "vertex_from": "299", + "timestamp": "2025-11-27T04:03:11.209318-08:00" }, { "operation": "add_edge", - "rtt_ns": 2565982, - "rtt_ms": 2.565982, + "rtt_ns": 2104166, + "rtt_ms": 2.104166, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:29.492078972Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:11.209418-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2627832, - "rtt_ms": 2.627832, + "operation": "add_vertex", + "rtt_ns": 2040709, + "rtt_ms": 2.040709, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:29.492142592Z" + "vertex_from": "784", + "timestamp": "2025-11-27T04:03:11.20944-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2653092, - "rtt_ms": 2.653092, + "operation": "add_vertex", + "rtt_ns": 2613459, + "rtt_ms": 2.613459, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:29.492221162Z" + "vertex_from": "131", + "timestamp": "2025-11-27T04:03:11.209914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2652843, - "rtt_ms": 2.652843, + "rtt_ns": 1042209, + "rtt_ms": 1.042209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "29", - "timestamp": "2025-11-27T01:23:29.492244772Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:11.209925-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081093, - "rtt_ms": 2.081093, + "rtt_ns": 1100584, + "rtt_ms": 1.100584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "299", - "timestamp": "2025-11-27T01:23:29.492273101Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:11.209948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547865, - "rtt_ms": 1.547865, + "rtt_ns": 1168041, + "rtt_ms": 1.168041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:29.492329881Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:03:11.209951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426505, - "rtt_ms": 1.426505, + "rtt_ns": 1812917, + "rtt_ms": 1.812917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:29.492346811Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:11.210126-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1613345, - "rtt_ms": 1.613345, + "rtt_ns": 1394875, + "rtt_ms": 1.394875, "checkpoint": 0, - "vertex_from": "784", - "timestamp": "2025-11-27T01:23:29.49286036Z" + "vertex_from": "530", + "timestamp": "2025-11-27T04:03:11.210425-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1599005, - "rtt_ms": 1.599005, + "operation": "add_edge", + "rtt_ns": 1314416, + "rtt_ms": 1.314416, "checkpoint": 0, - "vertex_from": "166", - "timestamp": "2025-11-27T01:23:29.493156349Z" + "vertex_from": "0", + "vertex_to": "299", + "timestamp": "2025-11-27T04:03:11.210633-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1105447, - "rtt_ms": 1.105447, + "rtt_ns": 1250625, + "rtt_ms": 1.250625, "checkpoint": 0, "vertex_from": "774", - "timestamp": "2025-11-27T01:23:29.493186099Z" + "timestamp": "2025-11-27T04:03:11.21067-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1882485, - "rtt_ms": 1.882485, + "operation": "add_edge", + "rtt_ns": 1461541, + "rtt_ms": 1.461541, "checkpoint": 0, - "vertex_from": "530", - "timestamp": "2025-11-27T01:23:29.493204259Z" + "vertex_from": "0", + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:11.210902-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1720235, - "rtt_ms": 1.720235, + "rtt_ns": 2619209, + "rtt_ms": 2.619209, "checkpoint": 0, - "vertex_from": "158", - "timestamp": "2025-11-27T01:23:29.493866157Z" + "vertex_from": "166", + "timestamp": "2025-11-27T04:03:11.211888-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1664935, - "rtt_ms": 1.664935, + "rtt_ns": 1955375, + "rtt_ms": 1.955375, "checkpoint": 0, - "vertex_from": "771", - "timestamp": "2025-11-27T01:23:29.493912547Z" + "vertex_from": "145", + "timestamp": "2025-11-27T04:03:11.211905-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1581126, - "rtt_ms": 1.581126, + "rtt_ns": 1788291, + "rtt_ms": 1.788291, "checkpoint": 0, - "vertex_from": "305", - "timestamp": "2025-11-27T01:23:29.493931747Z" + "vertex_from": "404", + "timestamp": "2025-11-27T04:03:11.211915-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1610316, - "rtt_ms": 1.610316, + "rtt_ns": 1963333, + "rtt_ms": 1.963333, "checkpoint": 0, - "vertex_from": "988", - "timestamp": "2025-11-27T01:23:29.493942427Z" + "vertex_from": "771", + "timestamp": "2025-11-27T04:03:11.211917-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1719305, - "rtt_ms": 1.719305, + "operation": "add_edge", + "rtt_ns": 1604500, + "rtt_ms": 1.6045, "checkpoint": 0, - "vertex_from": "145", - "timestamp": "2025-11-27T01:23:29.493943906Z" + "vertex_from": "0", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:11.21203-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1683405, - "rtt_ms": 1.683405, + "rtt_ns": 2131709, + "rtt_ms": 2.131709, "checkpoint": 0, - "vertex_from": "404", - "timestamp": "2025-11-27T01:23:29.493958846Z" + "vertex_from": "158", + "timestamp": "2025-11-27T04:03:11.212057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185676, - "rtt_ms": 1.185676, + "rtt_ns": 2176584, + "rtt_ms": 2.176584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.494046756Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:11.212091-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1869708, + "rtt_ms": 1.869708, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:11.21254-08:00" }, { "operation": "add_vertex", - "rtt_ns": 728918, - "rtt_ms": 0.728918, + "rtt_ns": 1657584, + "rtt_ms": 1.657584, "checkpoint": 0, - "vertex_from": "93", - "timestamp": "2025-11-27T01:23:29.494778604Z" + "vertex_from": "305", + "timestamp": "2025-11-27T04:03:11.21256-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2032284, - "rtt_ms": 2.032284, + "operation": "add_vertex", + "rtt_ns": 2139875, + "rtt_ms": 2.139875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:29.495218583Z" + "vertex_from": "988", + "timestamp": "2025-11-27T04:03:11.212775-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148913, - "rtt_ms": 2.148913, + "rtt_ns": 1133083, + "rtt_ms": 1.133083, "checkpoint": 0, "vertex_from": "0", "vertex_to": "166", - "timestamp": "2025-11-27T01:23:29.495305602Z" + "timestamp": "2025-11-27T04:03:11.213022-08:00" }, { "operation": "add_edge", - "rtt_ns": 2635722, - "rtt_ms": 2.635722, + "rtt_ns": 1149375, + "rtt_ms": 1.149375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:29.496548749Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:11.213065-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1361146, - "rtt_ms": 1.361146, + "rtt_ns": 1140916, + "rtt_ms": 1.140916, "checkpoint": 0, - "vertex_from": "484", - "timestamp": "2025-11-27T01:23:29.496581349Z" + "vertex_from": "93", + "timestamp": "2025-11-27T04:03:11.213174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2699163, - "rtt_ms": 2.699163, + "rtt_ns": 1265791, + "rtt_ms": 1.265791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:29.496658459Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:11.213183-08:00" }, { "operation": "add_edge", - "rtt_ns": 2891831, - "rtt_ms": 2.891831, + "rtt_ns": 1227833, + "rtt_ms": 1.227833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "158", - "timestamp": "2025-11-27T01:23:29.496758748Z" + "timestamp": "2025-11-27T04:03:11.213286-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3582779, - "rtt_ms": 3.582779, + "operation": "add_vertex", + "rtt_ns": 1007209, + "rtt_ms": 1.007209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:29.496787618Z" + "vertex_from": "563", + "timestamp": "2025-11-27T04:03:11.214295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2877302, - "rtt_ms": 2.877302, + "rtt_ns": 1754000, + "rtt_ms": 1.754, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:29.496821758Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:11.214315-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1299458, + "rtt_ms": 1.299458, + "checkpoint": 0, + "vertex_from": "27", + "timestamp": "2025-11-27T04:03:11.214324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2893331, - "rtt_ms": 2.893331, + "rtt_ns": 1555208, + "rtt_ms": 1.555208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:29.496825618Z" + "vertex_to": "988", + "timestamp": "2025-11-27T04:03:11.214331-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1522086, - "rtt_ms": 1.522086, + "rtt_ns": 1809042, + "rtt_ms": 1.809042, "checkpoint": 0, "vertex_from": "265", - "timestamp": "2025-11-27T01:23:29.496830258Z" + "timestamp": "2025-11-27T04:03:11.21435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080634, - "rtt_ms": 2.080634, + "rtt_ns": 2458792, + "rtt_ms": 2.458792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "93", - "timestamp": "2025-11-27T01:23:29.496859828Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:11.214364-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2917422, - "rtt_ms": 2.917422, + "operation": "add_vertex", + "rtt_ns": 1403583, + "rtt_ms": 1.403583, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "988", - "timestamp": "2025-11-27T01:23:29.496860518Z" + "vertex_from": "676", + "timestamp": "2025-11-27T04:03:11.21447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329256, - "rtt_ms": 1.329256, + "rtt_ns": 1518541, + "rtt_ms": 1.518541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "484", - "timestamp": "2025-11-27T01:23:29.497910815Z" + "vertex_to": "93", + "timestamp": "2025-11-27T04:03:11.214693-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1397766, - "rtt_ms": 1.397766, + "rtt_ns": 1732375, + "rtt_ms": 1.732375, "checkpoint": 0, - "vertex_from": "27", - "timestamp": "2025-11-27T01:23:29.497951495Z" + "vertex_from": "515", + "timestamp": "2025-11-27T04:03:11.214917-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1363486, - "rtt_ms": 1.363486, + "rtt_ns": 2981708, + "rtt_ms": 2.981708, "checkpoint": 0, - "vertex_from": "676", - "timestamp": "2025-11-27T01:23:29.498023895Z" + "vertex_from": "484", + "timestamp": "2025-11-27T04:03:11.215075-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1208500, + "rtt_ms": 1.2085, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:11.215678-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1322256, - "rtt_ms": 1.322256, + "rtt_ns": 1406292, + "rtt_ms": 1.406292, "checkpoint": 0, "vertex_from": "74", - "timestamp": "2025-11-27T01:23:29.498153154Z" + "timestamp": "2025-11-27T04:03:11.215739-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1857355, - "rtt_ms": 1.857355, + "rtt_ns": 1733542, + "rtt_ms": 1.733542, "checkpoint": 0, - "vertex_from": "563", - "timestamp": "2025-11-27T01:23:29.498649223Z" + "vertex_from": "992", + "timestamp": "2025-11-27T04:03:11.21605-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1910685, - "rtt_ms": 1.910685, + "operation": "add_edge", + "rtt_ns": 1769917, + "rtt_ms": 1.769917, "checkpoint": 0, - "vertex_from": "515", - "timestamp": "2025-11-27T01:23:29.498673033Z" + "vertex_from": "0", + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:11.216065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865005, - "rtt_ms": 1.865005, + "rtt_ns": 1732250, + "rtt_ms": 1.73225, "checkpoint": 0, "vertex_from": "0", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:29.498695783Z" + "timestamp": "2025-11-27T04:03:11.216082-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1929405, - "rtt_ms": 1.929405, + "rtt_ns": 1733708, + "rtt_ms": 1.733708, "checkpoint": 0, - "vertex_from": "992", - "timestamp": "2025-11-27T01:23:29.498754353Z" + "vertex_from": "548", + "timestamp": "2025-11-27T04:03:11.216099-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1896695, - "rtt_ms": 1.896695, + "rtt_ns": 1490250, + "rtt_ms": 1.49025, "checkpoint": 0, "vertex_from": "150", - "timestamp": "2025-11-27T01:23:29.498760423Z" + "timestamp": "2025-11-27T04:03:11.216185-08:00" }, { "operation": "add_edge", - "rtt_ns": 829708, - "rtt_ms": 0.829708, + "rtt_ns": 1296750, + "rtt_ms": 1.29675, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "27", - "timestamp": "2025-11-27T01:23:29.498782033Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:11.216214-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 912668, - "rtt_ms": 0.912668, + "operation": "add_edge", + "rtt_ns": 1183792, + "rtt_ms": 1.183792, "checkpoint": 0, - "vertex_from": "226", - "timestamp": "2025-11-27T01:23:29.498825712Z" + "vertex_from": "0", + "vertex_to": "484", + "timestamp": "2025-11-27T04:03:11.216259-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1966324, - "rtt_ms": 1.966324, + "rtt_ns": 1260500, + "rtt_ms": 1.2605, "checkpoint": 0, - "vertex_from": "548", - "timestamp": "2025-11-27T01:23:29.498829682Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1708115, - "rtt_ms": 1.708115, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:29.49973246Z" + "vertex_from": "226", + "timestamp": "2025-11-27T04:03:11.216941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078967, - "rtt_ms": 1.078967, + "rtt_ns": 1194875, + "rtt_ms": 1.194875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:29.49975266Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:11.217294-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1123727, - "rtt_ms": 1.123727, + "operation": "add_vertex", + "rtt_ns": 1102125, + "rtt_ms": 1.102125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:29.49977339Z" + "vertex_from": "394", + "timestamp": "2025-11-27T04:03:11.217317-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1161547, - "rtt_ms": 1.161547, + "rtt_ns": 1259875, + "rtt_ms": 1.259875, "checkpoint": 0, "vertex_from": "100", - "timestamp": "2025-11-27T01:23:29.49986083Z" + "timestamp": "2025-11-27T04:03:11.217328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838455, - "rtt_ms": 1.838455, + "rtt_ns": 1629583, + "rtt_ms": 1.629583, "checkpoint": 0, "vertex_from": "0", "vertex_to": "74", - "timestamp": "2025-11-27T01:23:29.499992289Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1541916, - "rtt_ms": 1.541916, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:29.500372168Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 779867, - "rtt_ms": 0.779867, - "checkpoint": 0, - "vertex_from": "82", - "timestamp": "2025-11-27T01:23:29.500556067Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 852467, - "rtt_ms": 0.852467, - "checkpoint": 0, - "vertex_from": "394", - "timestamp": "2025-11-27T01:23:29.500588767Z" + "timestamp": "2025-11-27T04:03:11.217369-08:00" }, { "operation": "add_vertex", - "rtt_ns": 729758, - "rtt_ms": 0.729758, + "rtt_ns": 1344750, + "rtt_ms": 1.34475, "checkpoint": 0, - "vertex_from": "179", - "timestamp": "2025-11-27T01:23:29.500726167Z" + "vertex_from": "312", + "timestamp": "2025-11-27T04:03:11.217428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145393, - "rtt_ms": 2.145393, + "rtt_ns": 1498958, + "rtt_ms": 1.498958, "checkpoint": 0, "vertex_from": "0", "vertex_to": "992", - "timestamp": "2025-11-27T01:23:29.500899966Z" + "timestamp": "2025-11-27T04:03:11.217549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109804, - "rtt_ms": 2.109804, + "rtt_ns": 3297083, + "rtt_ms": 3.297083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:29.500935856Z" + "vertex_to": "27", + "timestamp": "2025-11-27T04:03:11.217622-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240513, - "rtt_ms": 2.240513, + "rtt_ns": 2067792, + "rtt_ms": 2.067792, "checkpoint": 0, "vertex_from": "0", "vertex_to": "150", - "timestamp": "2025-11-27T01:23:29.501001326Z" + "timestamp": "2025-11-27T04:03:11.218254-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2253033, - "rtt_ms": 2.253033, + "rtt_ns": 2418458, + "rtt_ms": 2.418458, "checkpoint": 0, - "vertex_from": "312", - "timestamp": "2025-11-27T01:23:29.501037916Z" + "vertex_from": "856", + "timestamp": "2025-11-27T04:03:11.21868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355166, - "rtt_ms": 1.355166, + "rtt_ns": 1378833, + "rtt_ms": 1.378833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:29.501216296Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1474585, - "rtt_ms": 1.474585, - "checkpoint": 0, - "vertex_from": "856", - "timestamp": "2025-11-27T01:23:29.501229995Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1039047, - "rtt_ms": 1.039047, - "checkpoint": 0, - "vertex_from": "336", - "timestamp": "2025-11-27T01:23:29.501414175Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:11.218696-08:00" }, { "operation": "add_edge", - "rtt_ns": 903358, - "rtt_ms": 0.903358, + "rtt_ns": 1769291, + "rtt_ms": 1.769291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.501459845Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:11.218711-08:00" }, { "operation": "add_edge", - "rtt_ns": 899908, - "rtt_ms": 0.899908, + "rtt_ns": 1471250, + "rtt_ms": 1.47125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:29.501489265Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:11.218801-08:00" }, { - "operation": "add_edge", - "rtt_ns": 805088, - "rtt_ms": 0.805088, + "operation": "add_vertex", + "rtt_ns": 1524250, + "rtt_ms": 1.52425, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "179", - "timestamp": "2025-11-27T01:23:29.501531805Z" + "vertex_from": "82", + "timestamp": "2025-11-27T04:03:11.21882-08:00" }, { "operation": "add_vertex", - "rtt_ns": 637379, - "rtt_ms": 0.637379, + "rtt_ns": 1325000, + "rtt_ms": 1.325, "checkpoint": 0, - "vertex_from": "102", - "timestamp": "2025-11-27T01:23:29.501539705Z" + "vertex_from": "336", + "timestamp": "2025-11-27T04:03:11.218875-08:00" }, { "operation": "add_vertex", - "rtt_ns": 741958, - "rtt_ms": 0.741958, + "rtt_ns": 1636958, + "rtt_ms": 1.636958, "checkpoint": 0, - "vertex_from": "81", - "timestamp": "2025-11-27T01:23:29.501681384Z" + "vertex_from": "179", + "timestamp": "2025-11-27T04:03:11.219007-08:00" }, { "operation": "add_edge", - "rtt_ns": 703588, - "rtt_ms": 0.703588, + "rtt_ns": 1648000, + "rtt_ms": 1.648, "checkpoint": 0, "vertex_from": "0", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:29.501741994Z" + "timestamp": "2025-11-27T04:03:11.219076-08:00" }, { - "operation": "add_edge", - "rtt_ns": 619109, - "rtt_ms": 0.619109, + "operation": "add_vertex", + "rtt_ns": 1453417, + "rtt_ms": 1.453417, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:29.501849554Z" + "vertex_from": "81", + "timestamp": "2025-11-27T04:03:11.219708-08:00" }, { "operation": "add_vertex", - "rtt_ns": 698177, - "rtt_ms": 0.698177, + "rtt_ns": 2102416, + "rtt_ms": 2.102416, "checkpoint": 0, - "vertex_from": "204", - "timestamp": "2025-11-27T01:23:29.501918183Z" + "vertex_from": "102", + "timestamp": "2025-11-27T04:03:11.219725-08:00" }, { "operation": "add_vertex", - "rtt_ns": 916427, - "rtt_ms": 0.916427, + "rtt_ns": 1329750, + "rtt_ms": 1.32975, "checkpoint": 0, - "vertex_from": "170", - "timestamp": "2025-11-27T01:23:29.501921503Z" + "vertex_from": "204", + "timestamp": "2025-11-27T04:03:11.220042-08:00" }, { "operation": "add_vertex", - "rtt_ns": 705058, - "rtt_ms": 0.705058, + "rtt_ns": 1840875, + "rtt_ms": 1.840875, "checkpoint": 0, "vertex_from": "366", - "timestamp": "2025-11-27T01:23:29.502196333Z" + "timestamp": "2025-11-27T04:03:11.22095-08:00" }, { "operation": "add_vertex", - "rtt_ns": 741817, - "rtt_ms": 0.741817, + "rtt_ns": 2459292, + "rtt_ms": 2.459292, "checkpoint": 0, - "vertex_from": "780", - "timestamp": "2025-11-27T01:23:29.502277372Z" + "vertex_from": "170", + "timestamp": "2025-11-27T04:03:11.221157-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 675588, - "rtt_ms": 0.675588, + "operation": "add_edge", + "rtt_ns": 2610834, + "rtt_ms": 2.610834, "checkpoint": 0, - "vertex_from": "564", - "timestamp": "2025-11-27T01:23:29.502527672Z" + "vertex_from": "0", + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:11.221431-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 809378, - "rtt_ms": 0.809378, + "operation": "add_edge", + "rtt_ns": 1896333, + "rtt_ms": 1.896333, "checkpoint": 0, - "vertex_from": "408", - "timestamp": "2025-11-27T01:23:29.502555962Z" + "vertex_from": "0", + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:11.221622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153156, - "rtt_ms": 1.153156, + "rtt_ns": 2016667, + "rtt_ms": 2.016667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:29.502567871Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:11.222059-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1428126, - "rtt_ms": 1.428126, + "operation": "add_edge", + "rtt_ns": 3202625, + "rtt_ms": 3.202625, "checkpoint": 0, - "vertex_from": "168", - "timestamp": "2025-11-27T01:23:29.502890401Z" + "vertex_from": "0", + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:11.222078-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 634309, - "rtt_ms": 0.634309, + "operation": "add_edge", + "rtt_ns": 3412958, + "rtt_ms": 3.412958, "checkpoint": 0, - "vertex_from": "200", - "timestamp": "2025-11-27T01:23:29.50320386Z" + "vertex_from": "0", + "vertex_to": "856", + "timestamp": "2025-11-27T04:03:11.222093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934584, - "rtt_ms": 1.934584, + "rtt_ns": 2469500, + "rtt_ms": 2.4695, "checkpoint": 0, "vertex_from": "0", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:29.503616508Z" + "timestamp": "2025-11-27T04:03:11.222178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728585, - "rtt_ms": 1.728585, + "rtt_ns": 3207834, + "rtt_ms": 3.207834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:29.503650578Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:03:11.222215-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2118653, - "rtt_ms": 2.118653, + "operation": "add_vertex", + "rtt_ns": 3444125, + "rtt_ms": 3.444125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:29.503658708Z" + "vertex_from": "168", + "timestamp": "2025-11-27T04:03:11.222248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642275, - "rtt_ms": 1.642275, + "rtt_ns": 1813583, + "rtt_ms": 1.813583, "checkpoint": 0, "vertex_from": "0", "vertex_to": "366", - "timestamp": "2025-11-27T01:23:29.503838938Z" + "timestamp": "2025-11-27T04:03:11.222764-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1347856, - "rtt_ms": 1.347856, + "operation": "add_vertex", + "rtt_ns": 1160541, + "rtt_ms": 1.160541, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:29.503875928Z" + "vertex_from": "408", + "timestamp": "2025-11-27T04:03:11.222783-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1983814, - "rtt_ms": 1.983814, + "operation": "add_vertex", + "rtt_ns": 1367292, + "rtt_ms": 1.367292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:29.503902447Z" + "vertex_from": "780", + "timestamp": "2025-11-27T04:03:11.222799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451425, - "rtt_ms": 1.451425, + "rtt_ns": 1860125, + "rtt_ms": 1.860125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:29.504007777Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:11.223017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749085, - "rtt_ms": 1.749085, + "rtt_ns": 1165875, + "rtt_ms": 1.165875, "checkpoint": 0, "vertex_from": "0", "vertex_to": "780", - "timestamp": "2025-11-27T01:23:29.504026767Z" + "timestamp": "2025-11-27T04:03:11.223965-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1864709, + "rtt_ms": 1.864709, + "checkpoint": 0, + "vertex_from": "590", + "timestamp": "2025-11-27T04:03:11.224046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357526, - "rtt_ms": 1.357526, + "rtt_ns": 1322708, + "rtt_ms": 1.322708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.504561686Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:11.224106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698024, - "rtt_ms": 1.698024, + "rtt_ns": 1989459, + "rtt_ms": 1.989459, "checkpoint": 0, "vertex_from": "0", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:29.504588985Z" + "timestamp": "2025-11-27T04:03:11.224238-08:00" }, { "operation": "add_vertex", - "rtt_ns": 959417, - "rtt_ms": 0.959417, + "rtt_ns": 2184083, + "rtt_ms": 2.184083, "checkpoint": 0, - "vertex_from": "324", - "timestamp": "2025-11-27T01:23:29.504619595Z" + "vertex_from": "564", + "timestamp": "2025-11-27T04:03:11.224245-08:00" }, { "operation": "add_vertex", - "rtt_ns": 992267, - "rtt_ms": 0.992267, + "rtt_ns": 2202500, + "rtt_ms": 2.2025, "checkpoint": 0, - "vertex_from": "590", - "timestamp": "2025-11-27T01:23:29.504644425Z" + "vertex_from": "61", + "timestamp": "2025-11-27T04:03:11.224296-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1056907, - "rtt_ms": 1.056907, + "rtt_ns": 1553291, + "rtt_ms": 1.553291, "checkpoint": 0, - "vertex_from": "61", - "timestamp": "2025-11-27T01:23:29.504677935Z" + "vertex_from": "584", + "timestamp": "2025-11-27T04:03:11.224321-08:00" }, { "operation": "add_vertex", - "rtt_ns": 923587, - "rtt_ms": 0.923587, + "rtt_ns": 2109917, + "rtt_ms": 2.109917, "checkpoint": 0, - "vertex_from": "584", - "timestamp": "2025-11-27T01:23:29.504765205Z" + "vertex_from": "324", + "timestamp": "2025-11-27T04:03:11.224327-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1372025, - "rtt_ms": 1.372025, + "rtt_ns": 1362709, + "rtt_ms": 1.362709, "checkpoint": 0, "vertex_from": "810", - "timestamp": "2025-11-27T01:23:29.505249583Z" + "timestamp": "2025-11-27T04:03:11.224381-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1548266, - "rtt_ms": 1.548266, + "rtt_ns": 2443667, + "rtt_ms": 2.443667, "checkpoint": 0, - "vertex_from": "549", - "timestamp": "2025-11-27T01:23:29.505454103Z" + "vertex_from": "200", + "timestamp": "2025-11-27T04:03:11.224523-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1459996, - "rtt_ms": 1.459996, + "rtt_ns": 1167791, + "rtt_ms": 1.167791, "checkpoint": 0, "vertex_from": "118", - "timestamp": "2025-11-27T01:23:29.505470373Z" + "timestamp": "2025-11-27T04:03:11.225277-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1066117, - "rtt_ms": 1.066117, + "rtt_ns": 1129458, + "rtt_ms": 1.129458, "checkpoint": 0, - "vertex_from": "714", - "timestamp": "2025-11-27T01:23:29.505657552Z" + "vertex_from": "183", + "timestamp": "2025-11-27T04:03:11.225369-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1235116, - "rtt_ms": 1.235116, + "operation": "add_edge", + "rtt_ns": 1658208, + "rtt_ms": 1.658208, "checkpoint": 0, - "vertex_from": "396", - "timestamp": "2025-11-27T01:23:29.505800672Z" + "vertex_from": "0", + "vertex_to": "61", + "timestamp": "2025-11-27T04:03:11.225955-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2384873, - "rtt_ms": 2.384873, + "operation": "add_edge", + "rtt_ns": 1731916, + "rtt_ms": 1.731916, "checkpoint": 0, - "vertex_from": "183", - "timestamp": "2025-11-27T01:23:29.50641486Z" + "vertex_from": "0", + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:11.225977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992974, - "rtt_ms": 1.992974, + "rtt_ns": 1932875, + "rtt_ms": 1.932875, "checkpoint": 0, "vertex_from": "0", "vertex_to": "590", - "timestamp": "2025-11-27T01:23:29.506637689Z" + "timestamp": "2025-11-27T04:03:11.225979-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1998704, - "rtt_ms": 1.998704, + "operation": "add_vertex", + "rtt_ns": 2032041, + "rtt_ms": 2.032041, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "61", - "timestamp": "2025-11-27T01:23:29.506677379Z" + "vertex_from": "549", + "timestamp": "2025-11-27T04:03:11.226001-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2674542, - "rtt_ms": 2.674542, + "operation": "add_vertex", + "rtt_ns": 1084791, + "rtt_ms": 1.084791, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:29.507294367Z" + "vertex_from": "396", + "timestamp": "2025-11-27T04:03:11.227043-08:00" }, { "operation": "add_vertex", - "rtt_ns": 651418, - "rtt_ms": 0.651418, + "rtt_ns": 1788667, + "rtt_ms": 1.788667, "checkpoint": 0, - "vertex_from": "54", - "timestamp": "2025-11-27T01:23:29.507330517Z" + "vertex_from": "147", + "timestamp": "2025-11-27T04:03:11.227769-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2612482, - "rtt_ms": 2.612482, + "operation": "add_vertex", + "rtt_ns": 1930250, + "rtt_ms": 1.93025, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:29.507378267Z" + "vertex_from": "714", + "timestamp": "2025-11-27T04:03:11.227908-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134634, - "rtt_ms": 2.134634, + "rtt_ns": 4535291, + "rtt_ms": 4.535291, "checkpoint": 0, "vertex_from": "0", "vertex_to": "810", - "timestamp": "2025-11-27T01:23:29.507384687Z" + "timestamp": "2025-11-27T04:03:11.228917-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 748338, - "rtt_ms": 0.748338, + "operation": "add_edge", + "rtt_ns": 1905500, + "rtt_ms": 1.9055, "checkpoint": 0, - "vertex_from": "147", - "timestamp": "2025-11-27T01:23:29.507390467Z" + "vertex_from": "0", + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:11.228949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776655, - "rtt_ms": 1.776655, + "rtt_ns": 3617000, + "rtt_ms": 3.617, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "714", - "timestamp": "2025-11-27T01:23:29.507434567Z" + "vertex_to": "183", + "timestamp": "2025-11-27T04:03:11.228986-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049564, - "rtt_ms": 2.049564, + "rtt_ns": 4660041, + "rtt_ms": 4.660041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:29.507504097Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:11.228987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736855, - "rtt_ms": 1.736855, + "rtt_ns": 4484250, + "rtt_ms": 4.48425, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:29.507538017Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:11.229007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086464, - "rtt_ms": 2.086464, + "rtt_ns": 3748167, + "rtt_ms": 3.748167, "checkpoint": 0, "vertex_from": "0", "vertex_to": "118", - "timestamp": "2025-11-27T01:23:29.507557267Z" + "timestamp": "2025-11-27T04:03:11.229026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769305, - "rtt_ms": 1.769305, + "rtt_ns": 1562750, + "rtt_ms": 1.56275, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "183", - "timestamp": "2025-11-27T01:23:29.508184585Z" + "vertex_to": "714", + "timestamp": "2025-11-27T04:03:11.229471-08:00" }, { "operation": "add_edge", - "rtt_ns": 870138, - "rtt_ms": 0.870138, + "rtt_ns": 3487084, + "rtt_ms": 3.487084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:29.508220525Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:11.229488-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 5171125, + "rtt_ms": 5.171125, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:11.229492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432736, - "rtt_ms": 1.432736, + "rtt_ns": 1796959, + "rtt_ms": 1.796959, "checkpoint": 0, "vertex_from": "0", "vertex_to": "147", - "timestamp": "2025-11-27T01:23:29.508823643Z" + "timestamp": "2025-11-27T04:03:11.229566-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1417546, - "rtt_ms": 1.417546, + "rtt_ns": 3095917, + "rtt_ms": 3.095917, "checkpoint": 0, - "vertex_from": "178", - "timestamp": "2025-11-27T01:23:29.508855333Z" + "vertex_from": "722", + "timestamp": "2025-11-27T04:03:11.232666-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1295996, - "rtt_ms": 1.295996, + "rtt_ns": 3721625, + "rtt_ms": 3.721625, "checkpoint": 0, - "vertex_from": "31", - "timestamp": "2025-11-27T01:23:29.508856153Z" + "vertex_from": "212", + "timestamp": "2025-11-27T04:03:11.23271-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1312396, - "rtt_ms": 1.312396, + "rtt_ns": 3216083, + "rtt_ms": 3.216083, "checkpoint": 0, - "vertex_from": "672", - "timestamp": "2025-11-27T01:23:29.508859653Z" + "vertex_from": "31", + "timestamp": "2025-11-27T04:03:11.232717-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1779205, - "rtt_ms": 1.779205, + "rtt_ns": 3811542, + "rtt_ms": 3.811542, "checkpoint": 0, - "vertex_from": "196", - "timestamp": "2025-11-27T01:23:29.509076512Z" + "vertex_from": "54", + "timestamp": "2025-11-27T04:03:11.232733-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1727585, - "rtt_ms": 1.727585, + "rtt_ns": 3943792, + "rtt_ms": 3.943792, "checkpoint": 0, - "vertex_from": "212", - "timestamp": "2025-11-27T01:23:29.509114862Z" + "vertex_from": "535", + "timestamp": "2025-11-27T04:03:11.232971-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1751275, - "rtt_ms": 1.751275, + "rtt_ns": 3496166, + "rtt_ms": 3.496166, "checkpoint": 0, - "vertex_from": "738", - "timestamp": "2025-11-27T01:23:29.509132192Z" + "vertex_from": "232", + "timestamp": "2025-11-27T04:03:11.232989-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1662955, - "rtt_ms": 1.662955, + "rtt_ns": 3534083, + "rtt_ms": 3.534083, "checkpoint": 0, - "vertex_from": "535", - "timestamp": "2025-11-27T01:23:29.509168962Z" + "vertex_from": "672", + "timestamp": "2025-11-27T04:03:11.233007-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1014927, - "rtt_ms": 1.014927, + "rtt_ns": 4040916, + "rtt_ms": 4.040916, "checkpoint": 0, - "vertex_from": "722", - "timestamp": "2025-11-27T01:23:29.509238252Z" + "vertex_from": "196", + "timestamp": "2025-11-27T04:03:11.233008-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1091486, - "rtt_ms": 1.091486, + "rtt_ns": 4022166, + "rtt_ms": 4.022166, "checkpoint": 0, - "vertex_from": "232", - "timestamp": "2025-11-27T01:23:29.509278051Z" + "vertex_from": "738", + "timestamp": "2025-11-27T04:03:11.233012-08:00" }, { "operation": "add_vertex", - "rtt_ns": 751508, - "rtt_ms": 0.751508, + "rtt_ns": 4014291, + "rtt_ms": 4.014291, "checkpoint": 0, - "vertex_from": "481", - "timestamp": "2025-11-27T01:23:29.509576801Z" + "vertex_from": "178", + "timestamp": "2025-11-27T04:03:11.233022-08:00" }, { "operation": "add_edge", - "rtt_ns": 796617, - "rtt_ms": 0.796617, + "rtt_ns": 1536000, + "rtt_ms": 1.536, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:29.50965291Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:03:11.234203-08:00" }, { "operation": "add_edge", - "rtt_ns": 810847, - "rtt_ms": 0.810847, + "rtt_ns": 1556042, + "rtt_ms": 1.556042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "31", - "timestamp": "2025-11-27T01:23:29.5096677Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:11.234267-08:00" }, { "operation": "add_edge", - "rtt_ns": 845627, - "rtt_ms": 0.845627, + "rtt_ns": 1769250, + "rtt_ms": 1.76925, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.50970577Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:11.234503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436246, - "rtt_ms": 1.436246, + "rtt_ns": 1521792, + "rtt_ms": 1.521792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:29.510513128Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:11.234529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425466, - "rtt_ms": 1.425466, + "rtt_ns": 1827250, + "rtt_ms": 1.82725, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.510540788Z" + "vertex_to": "31", + "timestamp": "2025-11-27T04:03:11.234544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834934, - "rtt_ms": 1.834934, + "rtt_ns": 1667125, + "rtt_ms": 1.667125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "738", - "timestamp": "2025-11-27T01:23:29.510967506Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:11.23469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800874, - "rtt_ms": 1.800874, + "rtt_ns": 1720042, + "rtt_ms": 1.720042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:29.510970396Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:11.23471-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1305116, - "rtt_ms": 1.305116, + "operation": "add_edge", + "rtt_ns": 1776875, + "rtt_ms": 1.776875, "checkpoint": 0, - "vertex_from": "778", - "timestamp": "2025-11-27T01:23:29.511012766Z" + "vertex_from": "0", + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:11.234785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838034, - "rtt_ms": 1.838034, + "rtt_ns": 1791541, + "rtt_ms": 1.791541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:29.511076566Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:03:11.234805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997934, - "rtt_ms": 1.997934, + "rtt_ns": 2064875, + "rtt_ms": 2.064875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:29.511276275Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:11.235037-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1664635, - "rtt_ms": 1.664635, + "rtt_ns": 1143208, + "rtt_ms": 1.143208, "checkpoint": 0, - "vertex_from": "849", - "timestamp": "2025-11-27T01:23:29.511337085Z" + "vertex_from": "778", + "timestamp": "2025-11-27T04:03:11.235673-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1874214, - "rtt_ms": 1.874214, + "operation": "add_vertex", + "rtt_ns": 1772083, + "rtt_ms": 1.772083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "481", - "timestamp": "2025-11-27T01:23:29.511451315Z" + "vertex_from": "98", + "timestamp": "2025-11-27T04:03:11.236318-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1831015, - "rtt_ms": 1.831015, + "rtt_ns": 2074125, + "rtt_ms": 2.074125, "checkpoint": 0, "vertex_from": "114", - "timestamp": "2025-11-27T01:23:29.511488015Z" + "timestamp": "2025-11-27T04:03:11.236343-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1056737, - "rtt_ms": 1.056737, + "rtt_ns": 1856875, + "rtt_ms": 1.856875, "checkpoint": 0, - "vertex_from": "21", - "timestamp": "2025-11-27T01:23:29.511601345Z" + "vertex_from": "849", + "timestamp": "2025-11-27T04:03:11.236361-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1207576, - "rtt_ms": 1.207576, + "rtt_ns": 2418750, + "rtt_ms": 2.41875, "checkpoint": 0, - "vertex_from": "98", - "timestamp": "2025-11-27T01:23:29.511723414Z" + "vertex_from": "481", + "timestamp": "2025-11-27T04:03:11.236625-08:00" }, { "operation": "add_vertex", - "rtt_ns": 783568, - "rtt_ms": 0.783568, + "rtt_ns": 1981167, + "rtt_ms": 1.981167, "checkpoint": 0, - "vertex_from": "70", - "timestamp": "2025-11-27T01:23:29.511753914Z" + "vertex_from": "704", + "timestamp": "2025-11-27T04:03:11.237038-08:00" }, { - "operation": "add_edge", - "rtt_ns": 816148, - "rtt_ms": 0.816148, + "operation": "add_vertex", + "rtt_ns": 2838625, + "rtt_ms": 2.838625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:29.511829374Z" + "vertex_from": "70", + "timestamp": "2025-11-27T04:03:11.237549-08:00" }, { "operation": "add_vertex", - "rtt_ns": 872768, - "rtt_ms": 0.872768, + "rtt_ns": 3023084, + "rtt_ms": 3.023084, "checkpoint": 0, - "vertex_from": "52", - "timestamp": "2025-11-27T01:23:29.511847114Z" + "vertex_from": "21", + "timestamp": "2025-11-27T04:03:11.237718-08:00" }, { "operation": "add_vertex", - "rtt_ns": 813158, - "rtt_ms": 0.813158, + "rtt_ns": 3141208, + "rtt_ms": 3.141208, "checkpoint": 0, "vertex_from": "902", - "timestamp": "2025-11-27T01:23:29.511893664Z" + "timestamp": "2025-11-27T04:03:11.237947-08:00" }, { "operation": "add_vertex", - "rtt_ns": 817458, - "rtt_ms": 0.817458, + "rtt_ns": 3175000, + "rtt_ms": 3.175, "checkpoint": 0, - "vertex_from": "704", - "timestamp": "2025-11-27T01:23:29.512096693Z" + "vertex_from": "52", + "timestamp": "2025-11-27T04:03:11.237961-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 712848, - "rtt_ms": 0.712848, + "operation": "add_edge", + "rtt_ns": 2292958, + "rtt_ms": 2.292958, "checkpoint": 0, - "vertex_from": "562", - "timestamp": "2025-11-27T01:23:29.512166203Z" + "vertex_from": "0", + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:11.237967-08:00" }, { "operation": "add_edge", - "rtt_ns": 837038, - "rtt_ms": 0.837038, + "rtt_ns": 2214958, + "rtt_ms": 2.214958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "849", - "timestamp": "2025-11-27T01:23:29.512174743Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:11.239254-08:00" }, { "operation": "add_edge", - "rtt_ns": 927647, - "rtt_ms": 0.927647, + "rtt_ns": 3398375, + "rtt_ms": 3.398375, "checkpoint": 0, "vertex_from": "0", "vertex_to": "114", - "timestamp": "2025-11-27T01:23:29.512416252Z" + "timestamp": "2025-11-27T04:03:11.239742-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3393042, + "rtt_ms": 3.393042, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "849", + "timestamp": "2025-11-27T04:03:11.239755-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3456250, + "rtt_ms": 3.45625, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:11.239774-08:00" }, { "operation": "add_edge", - "rtt_ns": 831587, - "rtt_ms": 0.831587, + "rtt_ns": 2075667, + "rtt_ms": 2.075667, "checkpoint": 0, "vertex_from": "0", "vertex_to": "21", - "timestamp": "2025-11-27T01:23:29.512433342Z" + "timestamp": "2025-11-27T04:03:11.239794-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 644088, - "rtt_ms": 0.644088, + "operation": "add_edge", + "rtt_ns": 1906084, + "rtt_ms": 1.906084, "checkpoint": 0, - "vertex_from": "402", - "timestamp": "2025-11-27T01:23:29.512476252Z" + "vertex_from": "0", + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:11.239867-08:00" }, { "operation": "add_edge", - "rtt_ns": 757588, - "rtt_ms": 0.757588, + "rtt_ns": 1941000, + "rtt_ms": 1.941, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:29.512481462Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:03:11.23989-08:00" }, { "operation": "add_edge", - "rtt_ns": 806758, - "rtt_ms": 0.806758, + "rtt_ns": 3302458, + "rtt_ms": 3.302458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:29.512561102Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:03:11.239927-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1769625, + "rtt_ms": 1.769625, + "checkpoint": 0, + "vertex_from": "402", + "timestamp": "2025-11-27T04:03:11.241028-08:00" }, { "operation": "add_vertex", - "rtt_ns": 705968, - "rtt_ms": 0.705968, + "rtt_ns": 1294916, + "rtt_ms": 1.294916, "checkpoint": 0, "vertex_from": "833", - "timestamp": "2025-11-27T01:23:29.512884561Z" + "timestamp": "2025-11-27T04:03:11.241038-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1189676, - "rtt_ms": 1.189676, + "operation": "add_vertex", + "rtt_ns": 3081166, + "rtt_ms": 3.081166, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:29.51303713Z" + "vertex_from": "562", + "timestamp": "2025-11-27T04:03:11.24105-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1132125, + "rtt_ms": 1.132125, + "checkpoint": 0, + "vertex_from": "569", + "timestamp": "2025-11-27T04:03:11.241062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746765, - "rtt_ms": 1.746765, + "rtt_ns": 4042875, + "rtt_ms": 4.042875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:29.513640869Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:11.241593-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1173727, - "rtt_ms": 1.173727, + "rtt_ns": 1945500, + "rtt_ms": 1.9455, "checkpoint": 0, - "vertex_from": "263", - "timestamp": "2025-11-27T01:23:29.513658479Z" + "vertex_from": "814", + "timestamp": "2025-11-27T04:03:11.241702-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1241507, - "rtt_ms": 1.241507, + "rtt_ns": 1851542, + "rtt_ms": 1.851542, "checkpoint": 0, - "vertex_from": "546", - "timestamp": "2025-11-27T01:23:29.513680559Z" + "vertex_from": "580", + "timestamp": "2025-11-27T04:03:11.241743-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2003244, - "rtt_ms": 2.003244, + "operation": "add_vertex", + "rtt_ns": 3050875, + "rtt_ms": 3.050875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:29.514169967Z" + "vertex_from": "546", + "timestamp": "2025-11-27T04:03:11.242829-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1687535, - "rtt_ms": 1.687535, + "rtt_ns": 3058833, + "rtt_ms": 3.058833, "checkpoint": 0, - "vertex_from": "776", - "timestamp": "2025-11-27T01:23:29.514252207Z" + "vertex_from": "263", + "timestamp": "2025-11-27T04:03:11.242854-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1871725, - "rtt_ms": 1.871725, + "rtt_ns": 1798250, + "rtt_ms": 1.79825, "checkpoint": 0, - "vertex_from": "814", - "timestamp": "2025-11-27T01:23:29.514290277Z" + "vertex_from": "936", + "timestamp": "2025-11-27T04:03:11.243396-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2343916, + "rtt_ms": 2.343916, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "814", + "timestamp": "2025-11-27T04:03:11.244046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848955, - "rtt_ms": 1.848955, + "rtt_ns": 3039417, + "rtt_ms": 3.039417, "checkpoint": 0, "vertex_from": "0", "vertex_to": "402", - "timestamp": "2025-11-27T01:23:29.514325607Z" + "timestamp": "2025-11-27T04:03:11.244067-08:00" }, { "operation": "add_edge", - "rtt_ns": 2264094, - "rtt_ms": 2.264094, + "rtt_ns": 2911458, + "rtt_ms": 2.911458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:29.514361167Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:11.244655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521486, - "rtt_ms": 1.521486, + "rtt_ns": 3606791, + "rtt_ms": 3.606791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:29.514406397Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:03:11.24467-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1758856, - "rtt_ms": 1.758856, + "operation": "add_edge", + "rtt_ns": 2008708, + "rtt_ms": 2.008708, "checkpoint": 0, - "vertex_from": "580", - "timestamp": "2025-11-27T01:23:29.514799486Z" + "vertex_from": "0", + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:11.244838-08:00" }, { "operation": "add_vertex", - "rtt_ns": 680098, - "rtt_ms": 0.680098, + "rtt_ns": 5013208, + "rtt_ms": 5.013208, "checkpoint": 0, - "vertex_from": "936", - "timestamp": "2025-11-27T01:23:29.514852865Z" + "vertex_from": "776", + "timestamp": "2025-11-27T04:03:11.244883-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1257166, - "rtt_ms": 1.257166, + "operation": "add_edge", + "rtt_ns": 3867333, + "rtt_ms": 3.867333, "checkpoint": 0, - "vertex_from": "569", - "timestamp": "2025-11-27T01:23:29.514901745Z" + "vertex_from": "0", + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:11.244906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341106, - "rtt_ms": 1.341106, + "rtt_ns": 2163292, + "rtt_ms": 2.163292, "checkpoint": 0, "vertex_from": "0", "vertex_to": "263", - "timestamp": "2025-11-27T01:23:29.514999955Z" + "timestamp": "2025-11-27T04:03:11.245017-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 960000, + "rtt_ms": 0.96, + "checkpoint": 0, + "vertex_from": "578", + "timestamp": "2025-11-27T04:03:11.245028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336926, - "rtt_ms": 1.336926, + "rtt_ns": 4584500, + "rtt_ms": 4.5845, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:29.515018045Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:11.245634-08:00" }, { "operation": "add_vertex", - "rtt_ns": 711718, - "rtt_ms": 0.711718, + "rtt_ns": 1646125, + "rtt_ms": 1.646125, "checkpoint": 0, "vertex_from": "659", - "timestamp": "2025-11-27T01:23:29.515040205Z" + "timestamp": "2025-11-27T04:03:11.245697-08:00" }, { "operation": "add_edge", - "rtt_ns": 757978, - "rtt_ms": 0.757978, + "rtt_ns": 2340792, + "rtt_ms": 2.340792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "814", - "timestamp": "2025-11-27T01:23:29.515048465Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:03:11.245737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334756, - "rtt_ms": 1.334756, + "rtt_ns": 1664083, + "rtt_ms": 1.664083, "checkpoint": 0, "vertex_from": "0", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:29.515587453Z" + "timestamp": "2025-11-27T04:03:11.246549-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1394606, - "rtt_ms": 1.394606, + "rtt_ns": 1729667, + "rtt_ms": 1.729667, "checkpoint": 0, - "vertex_from": "578", - "timestamp": "2025-11-27T01:23:29.515758083Z" + "vertex_from": "289", + "timestamp": "2025-11-27T04:03:11.246571-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1373206, - "rtt_ms": 1.373206, + "rtt_ns": 1973375, + "rtt_ms": 1.973375, "checkpoint": 0, "vertex_from": "552", - "timestamp": "2025-11-27T01:23:29.515784093Z" + "timestamp": "2025-11-27T04:03:11.246632-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1067167, - "rtt_ms": 1.067167, + "operation": "add_vertex", + "rtt_ns": 1659458, + "rtt_ms": 1.659458, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:29.515920642Z" + "vertex_from": "344", + "timestamp": "2025-11-27T04:03:11.246678-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1246856, - "rtt_ms": 1.246856, + "operation": "add_vertex", + "rtt_ns": 1787792, + "rtt_ms": 1.787792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:29.516047002Z" + "vertex_from": "854", + "timestamp": "2025-11-27T04:03:11.246696-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1526675, - "rtt_ms": 1.526675, + "rtt_ns": 1198333, + "rtt_ms": 1.198333, "checkpoint": 0, - "vertex_from": "854", - "timestamp": "2025-11-27T01:23:29.51657746Z" + "vertex_from": "37", + "timestamp": "2025-11-27T04:03:11.246834-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1951042, + "rtt_ms": 1.951042, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:11.246979-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1847195, - "rtt_ms": 1.847195, + "rtt_ns": 2313167, + "rtt_ms": 2.313167, "checkpoint": 0, "vertex_from": "969", - "timestamp": "2025-11-27T01:23:29.51685076Z" + "timestamp": "2025-11-27T04:03:11.246984-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1288086, - "rtt_ms": 1.288086, + "rtt_ns": 1134875, + "rtt_ms": 1.134875, "checkpoint": 0, - "vertex_from": "344", - "timestamp": "2025-11-27T01:23:29.516878639Z" + "vertex_from": "721", + "timestamp": "2025-11-27T04:03:11.247685-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1134097, - "rtt_ms": 1.134097, + "rtt_ns": 2277250, + "rtt_ms": 2.27725, "checkpoint": 0, - "vertex_from": "37", - "timestamp": "2025-11-27T01:23:29.517057289Z" + "vertex_from": "374", + "timestamp": "2025-11-27T04:03:11.248018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2560743, - "rtt_ms": 2.560743, + "rtt_ns": 1382000, + "rtt_ms": 1.382, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "569", - "timestamp": "2025-11-27T01:23:29.517463078Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:11.24806-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2443743, - "rtt_ms": 2.443743, + "operation": "add_edge", + "rtt_ns": 1504834, + "rtt_ms": 1.504834, "checkpoint": 0, - "vertex_from": "289", - "timestamp": "2025-11-27T01:23:29.517467188Z" + "vertex_from": "0", + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:11.248137-08:00" }, { "operation": "add_edge", - "rtt_ns": 2813122, - "rtt_ms": 2.813122, + "rtt_ns": 1322459, + "rtt_ms": 1.322459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "659", - "timestamp": "2025-11-27T01:23:29.517853817Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:11.248157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380396, - "rtt_ms": 1.380396, + "rtt_ns": 1572250, + "rtt_ms": 1.57225, "checkpoint": 0, "vertex_from": "0", "vertex_to": "854", - "timestamp": "2025-11-27T01:23:29.517958316Z" + "timestamp": "2025-11-27T04:03:11.248268-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229103, - "rtt_ms": 2.229103, + "rtt_ns": 1729042, + "rtt_ms": 1.729042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.517987566Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:11.2483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216326, - "rtt_ms": 1.216326, + "rtt_ns": 2684541, + "rtt_ms": 2.684541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "969", - "timestamp": "2025-11-27T01:23:29.518067516Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:03:11.248382-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2145114, - "rtt_ms": 2.145114, + "rtt_ns": 1615959, + "rtt_ms": 1.615959, "checkpoint": 0, - "vertex_from": "374", - "timestamp": "2025-11-27T01:23:29.518195606Z" + "vertex_from": "60", + "timestamp": "2025-11-27T04:03:11.248596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146727, - "rtt_ms": 1.146727, + "rtt_ns": 1892583, + "rtt_ms": 1.892583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:29.518204346Z" + "vertex_to": "969", + "timestamp": "2025-11-27T04:03:11.248877-08:00" }, { "operation": "add_vertex", - "rtt_ns": 697497, - "rtt_ms": 0.697497, + "rtt_ns": 851833, + "rtt_ms": 0.851833, "checkpoint": 0, - "vertex_from": "60", - "timestamp": "2025-11-27T01:23:29.518554814Z" + "vertex_from": "459", + "timestamp": "2025-11-27T04:03:11.249011-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1050917, + "rtt_ms": 1.050917, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "374", + "timestamp": "2025-11-27T04:03:11.24907-08:00" }, { "operation": "add_vertex", - "rtt_ns": 777078, - "rtt_ms": 0.777078, + "rtt_ns": 1579541, + "rtt_ms": 1.579541, "checkpoint": 0, "vertex_from": "101", - "timestamp": "2025-11-27T01:23:29.518738684Z" + "timestamp": "2025-11-27T04:03:11.249641-08:00" }, { "operation": "add_edge", - "rtt_ns": 2977671, - "rtt_ms": 2.977671, + "rtt_ns": 2330500, + "rtt_ms": 2.3305, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.518762374Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:03:11.250016-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1976555, - "rtt_ms": 1.976555, + "operation": "add_vertex", + "rtt_ns": 1896125, + "rtt_ms": 1.896125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:29.518855724Z" + "vertex_from": "78", + "timestamp": "2025-11-27T04:03:11.250035-08:00" }, { "operation": "add_vertex", - "rtt_ns": 749547, - "rtt_ms": 0.749547, + "rtt_ns": 2046208, + "rtt_ms": 2.046208, "checkpoint": 0, - "vertex_from": "346", - "timestamp": "2025-11-27T01:23:29.518956553Z" + "vertex_from": "826", + "timestamp": "2025-11-27T04:03:11.250348-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1589875, - "rtt_ms": 1.589875, + "operation": "add_edge", + "rtt_ns": 1851958, + "rtt_ms": 1.851958, "checkpoint": 0, - "vertex_from": "721", - "timestamp": "2025-11-27T01:23:29.519055673Z" + "vertex_from": "0", + "vertex_to": "60", + "timestamp": "2025-11-27T04:03:11.250448-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1220957, - "rtt_ms": 1.220957, + "rtt_ns": 1493750, + "rtt_ms": 1.49375, "checkpoint": 0, - "vertex_from": "78", - "timestamp": "2025-11-27T01:23:29.519211293Z" + "vertex_from": "126", + "timestamp": "2025-11-27T04:03:11.250569-08:00" }, { "operation": "add_vertex", - "rtt_ns": 677908, - "rtt_ms": 0.677908, + "rtt_ns": 2645334, + "rtt_ms": 2.645334, "checkpoint": 0, - "vertex_from": "770", - "timestamp": "2025-11-27T01:23:29.519537072Z" + "vertex_from": "333", + "timestamp": "2025-11-27T04:03:11.251526-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1591265, - "rtt_ms": 1.591265, + "rtt_ns": 1095667, + "rtt_ms": 1.095667, "checkpoint": 0, - "vertex_from": "459", - "timestamp": "2025-11-27T01:23:29.519661021Z" + "vertex_from": "230", + "timestamp": "2025-11-27T04:03:11.251545-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297743, - "rtt_ms": 2.297743, + "rtt_ns": 2840500, + "rtt_ms": 2.8405, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:29.519765521Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:03:11.251852-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1650015, - "rtt_ms": 1.650015, + "operation": "add_vertex", + "rtt_ns": 3846667, + "rtt_ms": 3.846667, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "374", - "timestamp": "2025-11-27T01:23:29.519846241Z" + "vertex_from": "346", + "timestamp": "2025-11-27T04:03:11.252118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202726, - "rtt_ms": 1.202726, + "rtt_ns": 2521208, + "rtt_ms": 2.521208, "checkpoint": 0, "vertex_from": "0", "vertex_to": "101", - "timestamp": "2025-11-27T01:23:29.51994204Z" + "timestamp": "2025-11-27T04:03:11.252163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417736, - "rtt_ms": 1.417736, + "rtt_ns": 2140458, + "rtt_ms": 2.140458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "60", - "timestamp": "2025-11-27T01:23:29.51997305Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:11.252176-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1340006, - "rtt_ms": 1.340006, + "rtt_ns": 2224167, + "rtt_ms": 2.224167, "checkpoint": 0, - "vertex_from": "826", - "timestamp": "2025-11-27T01:23:29.52010627Z" + "vertex_from": "142", + "timestamp": "2025-11-27T04:03:11.252243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174067, - "rtt_ms": 1.174067, + "rtt_ns": 1921750, + "rtt_ms": 1.92175, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:29.52013109Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:03:11.25227-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 670688, - "rtt_ms": 0.670688, + "operation": "add_edge", + "rtt_ns": 1332750, + "rtt_ms": 1.33275, "checkpoint": 0, - "vertex_from": "126", - "timestamp": "2025-11-27T01:23:29.520521459Z" + "vertex_from": "0", + "vertex_to": "333", + "timestamp": "2025-11-27T04:03:11.252859-08:00" }, { "operation": "add_edge", - "rtt_ns": 2612832, - "rtt_ms": 2.612832, + "rtt_ns": 1326333, + "rtt_ms": 1.326333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:29.521669215Z" + "vertex_to": "230", + "timestamp": "2025-11-27T04:03:11.252872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2530852, - "rtt_ms": 2.530852, + "rtt_ns": 2370292, + "rtt_ms": 2.370292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:29.521742535Z" + "vertex_to": "126", + "timestamp": "2025-11-27T04:03:11.25294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214943, - "rtt_ms": 2.214943, + "rtt_ns": 1169459, + "rtt_ms": 1.169459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.521752655Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:11.253288-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2019184, - "rtt_ms": 2.019184, + "rtt_ns": 1059334, + "rtt_ms": 1.059334, "checkpoint": 0, - "vertex_from": "333", - "timestamp": "2025-11-27T01:23:29.521790245Z" + "vertex_from": "709", + "timestamp": "2025-11-27T04:03:11.253332-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1847435, - "rtt_ms": 1.847435, - "checkpoint": 0, - "vertex_from": "230", - "timestamp": "2025-11-27T01:23:29.521822395Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2163474, - "rtt_ms": 2.163474, + "rtt_ns": 1484375, + "rtt_ms": 1.484375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "459", - "timestamp": "2025-11-27T01:23:29.521825155Z" + "vertex_from": "197", + "timestamp": "2025-11-27T04:03:11.253338-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1949785, - "rtt_ms": 1.949785, + "rtt_ns": 1498750, + "rtt_ms": 1.49875, "checkpoint": 0, - "vertex_from": "142", - "timestamp": "2025-11-27T01:23:29.521895755Z" + "vertex_from": "386", + "timestamp": "2025-11-27T04:03:11.253663-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1793654, - "rtt_ms": 1.793654, + "rtt_ns": 5299541, + "rtt_ms": 5.299541, "checkpoint": 0, - "vertex_from": "197", - "timestamp": "2025-11-27T01:23:29.521928484Z" + "vertex_from": "770", + "timestamp": "2025-11-27T04:03:11.253683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826224, - "rtt_ms": 1.826224, + "rtt_ns": 1762583, + "rtt_ms": 1.762583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "826", - "timestamp": "2025-11-27T01:23:29.521933024Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:11.254006-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2117803, - "rtt_ms": 2.117803, + "operation": "add_vertex", + "rtt_ns": 1306500, + "rtt_ms": 1.3065, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "126", - "timestamp": "2025-11-27T01:23:29.522639732Z" + "vertex_from": "450", + "timestamp": "2025-11-27T04:03:11.254167-08:00" }, { "operation": "add_vertex", - "rtt_ns": 998457, - "rtt_ms": 0.998457, + "rtt_ns": 1380959, + "rtt_ms": 1.380959, "checkpoint": 0, - "vertex_from": "386", - "timestamp": "2025-11-27T01:23:29.522672482Z" + "vertex_from": "284", + "timestamp": "2025-11-27T04:03:11.254323-08:00" }, { "operation": "add_vertex", - "rtt_ns": 926857, - "rtt_ms": 0.926857, + "rtt_ns": 1434417, + "rtt_ms": 1.434417, "checkpoint": 0, - "vertex_from": "632", - "timestamp": "2025-11-27T01:23:29.522672602Z" + "vertex_from": "779", + "timestamp": "2025-11-27T04:03:11.254724-08:00" }, { "operation": "add_vertex", - "rtt_ns": 938997, - "rtt_ms": 0.938997, + "rtt_ns": 3095917, + "rtt_ms": 3.095917, "checkpoint": 0, - "vertex_from": "709", - "timestamp": "2025-11-27T01:23:29.522696442Z" + "vertex_from": "632", + "timestamp": "2025-11-27T04:03:11.255276-08:00" }, { - "operation": "add_edge", - "rtt_ns": 967147, - "rtt_ms": 0.967147, + "operation": "add_vertex", + "rtt_ns": 1711292, + "rtt_ms": 1.711292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "333", - "timestamp": "2025-11-27T01:23:29.522757852Z" + "vertex_from": "924", + "timestamp": "2025-11-27T04:03:11.255718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601045, - "rtt_ms": 1.601045, + "rtt_ns": 2401584, + "rtt_ms": 2.401584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "230", - "timestamp": "2025-11-27T01:23:29.52342394Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:03:11.255734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573665, - "rtt_ms": 1.573665, + "rtt_ns": 2498542, + "rtt_ms": 2.498542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:29.52346994Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:11.255837-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1665255, - "rtt_ms": 1.665255, + "rtt_ns": 2970750, + "rtt_ms": 2.97075, "checkpoint": 0, - "vertex_from": "450", - "timestamp": "2025-11-27T01:23:29.52349866Z" + "vertex_from": "802", + "timestamp": "2025-11-27T04:03:11.255845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589246, - "rtt_ms": 1.589246, + "rtt_ns": 2205792, + "rtt_ms": 2.205792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:29.52351801Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1761075, - "rtt_ms": 1.761075, - "checkpoint": 0, - "vertex_from": "802", - "timestamp": "2025-11-27T01:23:29.523696879Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.255889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285306, - "rtt_ms": 1.285306, + "rtt_ns": 1725792, + "rtt_ms": 1.725792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:29.523958578Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:11.255894-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1216916, - "rtt_ms": 1.216916, + "operation": "add_edge", + "rtt_ns": 1574625, + "rtt_ms": 1.574625, "checkpoint": 0, - "vertex_from": "779", - "timestamp": "2025-11-27T01:23:29.523978558Z" + "vertex_from": "0", + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:11.255897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334236, - "rtt_ms": 1.334236, + "rtt_ns": 2241583, + "rtt_ms": 2.241583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "632", - "timestamp": "2025-11-27T01:23:29.524009118Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:11.255905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314886, - "rtt_ms": 1.314886, + "rtt_ns": 1771375, + "rtt_ms": 1.771375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "709", - "timestamp": "2025-11-27T01:23:29.524011748Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:03:11.256496-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1440526, - "rtt_ms": 1.440526, + "rtt_ns": 1270166, + "rtt_ms": 1.270166, "checkpoint": 0, - "vertex_from": "284", - "timestamp": "2025-11-27T01:23:29.524083278Z" + "vertex_from": "280", + "timestamp": "2025-11-27T04:03:11.257176-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1129076, - "rtt_ms": 1.129076, + "operation": "add_edge", + "rtt_ns": 1350792, + "rtt_ms": 1.350792, "checkpoint": 0, - "vertex_from": "480", - "timestamp": "2025-11-27T01:23:29.524602016Z" + "vertex_from": "0", + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:11.257196-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1194256, - "rtt_ms": 1.194256, + "operation": "add_edge", + "rtt_ns": 1934833, + "rtt_ms": 1.934833, "checkpoint": 0, - "vertex_from": "585", - "timestamp": "2025-11-27T01:23:29.524715436Z" + "vertex_from": "0", + "vertex_to": "632", + "timestamp": "2025-11-27T04:03:11.257212-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1351136, - "rtt_ms": 1.351136, + "rtt_ns": 1343334, + "rtt_ms": 1.343334, "checkpoint": 0, - "vertex_from": "924", - "timestamp": "2025-11-27T01:23:29.524779306Z" + "vertex_from": "462", + "timestamp": "2025-11-27T04:03:11.257242-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1281446, - "rtt_ms": 1.281446, + "operation": "add_vertex", + "rtt_ns": 1552916, + "rtt_ms": 1.552916, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:29.524780426Z" + "vertex_from": "585", + "timestamp": "2025-11-27T04:03:11.257391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576455, - "rtt_ms": 1.576455, + "rtt_ns": 1681667, + "rtt_ms": 1.681667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:29.525273704Z" + "vertex_to": "924", + "timestamp": "2025-11-27T04:03:11.2574-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1384856, - "rtt_ms": 1.384856, + "rtt_ns": 1589625, + "rtt_ms": 1.589625, "checkpoint": 0, "vertex_from": "149", - "timestamp": "2025-11-27T01:23:29.525345064Z" + "timestamp": "2025-11-27T04:03:11.257481-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1358726, - "rtt_ms": 1.358726, + "rtt_ns": 1610167, + "rtt_ms": 1.610167, "checkpoint": 0, "vertex_from": "908", - "timestamp": "2025-11-27T01:23:29.525369934Z" + "timestamp": "2025-11-27T04:03:11.257505-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1420036, - "rtt_ms": 1.420036, + "operation": "add_vertex", + "rtt_ns": 1816666, + "rtt_ms": 1.816666, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:29.525503724Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1567566, - "rtt_ms": 1.567566, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:29.525546414Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 701668, - "rtt_ms": 0.701668, - "checkpoint": 0, - "vertex_from": "524", - "timestamp": "2025-11-27T01:23:29.525979472Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1309076, - "rtt_ms": 1.309076, - "checkpoint": 0, - "vertex_from": "280", - "timestamp": "2025-11-27T01:23:29.526092802Z" + "vertex_from": "480", + "timestamp": "2025-11-27T04:03:11.257552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237873, - "rtt_ms": 2.237873, + "rtt_ns": 1626959, + "rtt_ms": 1.626959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:29.526954059Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 3067611, - "rtt_ms": 3.067611, - "checkpoint": 0, - "vertex_from": "462", - "timestamp": "2025-11-27T01:23:29.527081759Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:03:11.259132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795435, - "rtt_ms": 1.795435, + "rtt_ns": 1668875, + "rtt_ms": 1.668875, "checkpoint": 0, "vertex_from": "0", "vertex_to": "149", - "timestamp": "2025-11-27T01:23:29.527140779Z" + "timestamp": "2025-11-27T04:03:11.25915-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364893, - "rtt_ms": 2.364893, + "rtt_ns": 2010416, + "rtt_ms": 2.010416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "924", - "timestamp": "2025-11-27T01:23:29.527144829Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:11.259187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335686, - "rtt_ms": 1.335686, + "rtt_ns": 1968959, + "rtt_ms": 1.968959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.527315518Z" + "vertex_to": "462", + "timestamp": "2025-11-27T04:03:11.259211-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1821524, - "rtt_ms": 1.821524, + "rtt_ns": 2023833, + "rtt_ms": 2.023833, "checkpoint": 0, "vertex_from": "434", - "timestamp": "2025-11-27T01:23:29.527332758Z" + "timestamp": "2025-11-27T04:03:11.259221-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1927644, - "rtt_ms": 1.927644, + "rtt_ns": 2014416, + "rtt_ms": 2.014416, "checkpoint": 0, "vertex_from": "241", - "timestamp": "2025-11-27T01:23:29.527476168Z" + "timestamp": "2025-11-27T04:03:11.259227-08:00" }, { "operation": "add_edge", - "rtt_ns": 2889832, - "rtt_ms": 2.889832, + "rtt_ns": 1848000, + "rtt_ms": 1.848, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:29.527492508Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:11.25924-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2149754, - "rtt_ms": 2.149754, + "operation": "add_vertex", + "rtt_ns": 2821250, + "rtt_ms": 2.82125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:29.527520078Z" + "vertex_from": "524", + "timestamp": "2025-11-27T04:03:11.259318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429826, - "rtt_ms": 1.429826, + "rtt_ns": 1870084, + "rtt_ms": 1.870084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:29.527523168Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:11.259422-08:00" }, { "operation": "add_vertex", - "rtt_ns": 662868, - "rtt_ms": 0.662868, + "rtt_ns": 2097958, + "rtt_ms": 2.097958, "checkpoint": 0, "vertex_from": "654", - "timestamp": "2025-11-27T01:23:29.527619457Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 643708, - "rtt_ms": 0.643708, - "checkpoint": 0, - "vertex_from": "225", - "timestamp": "2025-11-27T01:23:29.527786777Z" + "timestamp": "2025-11-27T04:03:11.259499-08:00" }, { "operation": "add_edge", - "rtt_ns": 891727, - "rtt_ms": 0.891727, + "rtt_ns": 1524917, + "rtt_ms": 1.524917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "462", - "timestamp": "2025-11-27T01:23:29.527974156Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:03:11.260753-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 828517, - "rtt_ms": 0.828517, + "operation": "add_edge", + "rtt_ns": 1606209, + "rtt_ms": 1.606209, "checkpoint": 0, - "vertex_from": "792", - "timestamp": "2025-11-27T01:23:29.527975736Z" + "vertex_from": "0", + "vertex_to": "434", + "timestamp": "2025-11-27T04:03:11.260827-08:00" }, { "operation": "add_edge", - "rtt_ns": 692308, - "rtt_ms": 0.692308, + "rtt_ns": 1362458, + "rtt_ms": 1.362458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "434", - "timestamp": "2025-11-27T01:23:29.528025566Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:11.260862-08:00" }, { "operation": "add_vertex", - "rtt_ns": 811428, - "rtt_ms": 0.811428, + "rtt_ns": 1710667, + "rtt_ms": 1.710667, "checkpoint": 0, "vertex_from": "85", - "timestamp": "2025-11-27T01:23:29.528134786Z" + "timestamp": "2025-11-27T04:03:11.260899-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1073287, - "rtt_ms": 1.073287, + "rtt_ns": 1689041, + "rtt_ms": 1.689041, "checkpoint": 0, "vertex_from": "550", - "timestamp": "2025-11-27T01:23:29.528596145Z" + "timestamp": "2025-11-27T04:03:11.260929-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1163056, - "rtt_ms": 1.163056, + "rtt_ns": 1903250, + "rtt_ms": 1.90325, "checkpoint": 0, - "vertex_from": "909", - "timestamp": "2025-11-27T01:23:29.528689644Z" + "vertex_from": "225", + "timestamp": "2025-11-27T04:03:11.261037-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1304216, - "rtt_ms": 1.304216, + "rtt_ns": 1844250, + "rtt_ms": 1.84425, "checkpoint": 0, "vertex_from": "71", - "timestamp": "2025-11-27T01:23:29.528800134Z" + "timestamp": "2025-11-27T04:03:11.261056-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1354906, - "rtt_ms": 1.354906, + "operation": "add_vertex", + "rtt_ns": 2091583, + "rtt_ms": 2.091583, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "241", - "timestamp": "2025-11-27T01:23:29.528831574Z" + "vertex_from": "792", + "timestamp": "2025-11-27T04:03:11.261243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050967, - "rtt_ms": 1.050967, + "rtt_ns": 1982416, + "rtt_ms": 1.982416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:29.528838004Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:11.2613-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1228687, - "rtt_ms": 1.228687, + "operation": "add_vertex", + "rtt_ns": 1942709, + "rtt_ms": 1.942709, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:29.528848824Z" + "vertex_from": "909", + "timestamp": "2025-11-27T04:03:11.261368-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1535376, - "rtt_ms": 1.535376, + "operation": "add_edge", + "rtt_ns": 1801209, + "rtt_ms": 1.801209, "checkpoint": 0, - "vertex_from": "692", - "timestamp": "2025-11-27T01:23:29.529564122Z" + "vertex_from": "0", + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:11.262858-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1613676, - "rtt_ms": 1.613676, + "operation": "add_edge", + "rtt_ns": 1658292, + "rtt_ms": 1.658292, "checkpoint": 0, - "vertex_from": "608", - "timestamp": "2025-11-27T01:23:29.529591092Z" + "vertex_from": "0", + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:11.262902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713916, - "rtt_ms": 1.713916, + "rtt_ns": 1984916, + "rtt_ms": 1.984916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:29.529690002Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:11.262915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994164, - "rtt_ms": 1.994164, + "rtt_ns": 2153375, + "rtt_ms": 2.153375, "checkpoint": 0, "vertex_from": "0", "vertex_to": "85", - "timestamp": "2025-11-27T01:23:29.53012952Z" + "timestamp": "2025-11-27T04:03:11.263053-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1276106, - "rtt_ms": 1.276106, + "rtt_ns": 2224709, + "rtt_ms": 2.224709, "checkpoint": 0, - "vertex_from": "696", - "timestamp": "2025-11-27T01:23:29.5301302Z" + "vertex_from": "692", + "timestamp": "2025-11-27T04:03:11.263053-08:00" }, { "operation": "add_vertex", - "rtt_ns": 917557, - "rtt_ms": 0.917557, + "rtt_ns": 1771334, + "rtt_ms": 1.771334, "checkpoint": 0, - "vertex_from": "946", - "timestamp": "2025-11-27T01:23:29.530612649Z" + "vertex_from": "604", + "timestamp": "2025-11-27T04:03:11.263075-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2121214, - "rtt_ms": 2.121214, + "operation": "add_vertex", + "rtt_ns": 2285000, + "rtt_ms": 2.285, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:29.530717789Z" + "vertex_from": "213", + "timestamp": "2025-11-27T04:03:11.263148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969405, - "rtt_ms": 1.969405, + "rtt_ns": 2164959, + "rtt_ms": 2.164959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:29.530769979Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:11.263202-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1975824, - "rtt_ms": 1.975824, + "rtt_ns": 2569625, + "rtt_ms": 2.569625, "checkpoint": 0, - "vertex_from": "213", - "timestamp": "2025-11-27T01:23:29.530811978Z" + "vertex_from": "608", + "timestamp": "2025-11-27T04:03:11.263324-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2092625, + "rtt_ms": 2.092625, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "909", + "timestamp": "2025-11-27T04:03:11.263461-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1984354, - "rtt_ms": 1.984354, + "rtt_ns": 1146792, + "rtt_ms": 1.146792, "checkpoint": 0, - "vertex_from": "604", - "timestamp": "2025-11-27T01:23:29.530825168Z" + "vertex_from": "946", + "timestamp": "2025-11-27T04:03:11.264049-08:00" }, { "operation": "add_vertex", - "rtt_ns": 817578, - "rtt_ms": 0.817578, + "rtt_ns": 1184541, + "rtt_ms": 1.184541, "checkpoint": 0, "vertex_from": "216", - "timestamp": "2025-11-27T01:23:29.530951678Z" + "timestamp": "2025-11-27T04:03:11.264101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504706, - "rtt_ms": 1.504706, + "rtt_ns": 1514334, + "rtt_ms": 1.514334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:29.531069548Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:03:11.26459-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2432114, - "rtt_ms": 2.432114, + "operation": "add_vertex", + "rtt_ns": 1657833, + "rtt_ms": 1.657833, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "909", - "timestamp": "2025-11-27T01:23:29.531122428Z" + "vertex_from": "437", + "timestamp": "2025-11-27T04:03:11.264713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599245, - "rtt_ms": 1.599245, + "rtt_ns": 1468583, + "rtt_ms": 1.468583, "checkpoint": 0, "vertex_from": "0", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:29.531190727Z" + "timestamp": "2025-11-27T04:03:11.264793-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2306791, + "rtt_ms": 2.306791, + "checkpoint": 0, + "vertex_from": "461", + "timestamp": "2025-11-27T04:03:11.265511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122947, - "rtt_ms": 1.122947, + "rtt_ns": 2661750, + "rtt_ms": 2.66175, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "696", - "timestamp": "2025-11-27T01:23:29.531253597Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:03:11.265715-08:00" }, { "operation": "add_edge", - "rtt_ns": 803018, - "rtt_ms": 0.803018, + "rtt_ns": 2701958, + "rtt_ms": 2.701958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "946", - "timestamp": "2025-11-27T01:23:29.531416457Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:03:11.26585-08:00" }, { "operation": "add_edge", - "rtt_ns": 761748, - "rtt_ms": 0.761748, + "rtt_ns": 1354041, + "rtt_ms": 1.354041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "604", - "timestamp": "2025-11-27T01:23:29.531587356Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:03:11.266068-08:00" }, { "operation": "add_vertex", - "rtt_ns": 903207, - "rtt_ms": 0.903207, + "rtt_ns": 2624708, + "rtt_ms": 2.624708, "checkpoint": 0, - "vertex_from": "437", - "timestamp": "2025-11-27T01:23:29.531624126Z" + "vertex_from": "401", + "timestamp": "2025-11-27T04:03:11.266087-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1409667, + "rtt_ms": 1.409667, + "checkpoint": 0, + "vertex_from": "62", + "timestamp": "2025-11-27T04:03:11.266204-08:00" }, { "operation": "add_edge", - "rtt_ns": 831738, - "rtt_ms": 0.831738, + "rtt_ns": 2291959, + "rtt_ms": 2.291959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "213", - "timestamp": "2025-11-27T01:23:29.531644296Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:03:11.266342-08:00" }, { "operation": "add_vertex", - "rtt_ns": 977527, - "rtt_ms": 0.977527, + "rtt_ns": 1799000, + "rtt_ms": 1.799, "checkpoint": 0, - "vertex_from": "461", - "timestamp": "2025-11-27T01:23:29.531751086Z" + "vertex_from": "47", + "timestamp": "2025-11-27T04:03:11.266392-08:00" }, { "operation": "add_edge", - "rtt_ns": 853988, - "rtt_ms": 0.853988, + "rtt_ns": 2366167, + "rtt_ms": 2.366167, "checkpoint": 0, "vertex_from": "0", "vertex_to": "216", - "timestamp": "2025-11-27T01:23:29.531806206Z" + "timestamp": "2025-11-27T04:03:11.266467-08:00" }, { "operation": "add_vertex", - "rtt_ns": 751528, - "rtt_ms": 0.751528, + "rtt_ns": 3692917, + "rtt_ms": 3.692917, "checkpoint": 0, - "vertex_from": "401", - "timestamp": "2025-11-27T01:23:29.531825536Z" + "vertex_from": "696", + "timestamp": "2025-11-27T04:03:11.266552-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 669668, - "rtt_ms": 0.669668, + "operation": "add_edge", + "rtt_ns": 1159333, + "rtt_ms": 1.159333, "checkpoint": 0, - "vertex_from": "387", - "timestamp": "2025-11-27T01:23:29.531925865Z" + "vertex_from": "0", + "vertex_to": "696", + "timestamp": "2025-11-27T04:03:11.267712-08:00" }, { "operation": "add_vertex", - "rtt_ns": 863817, - "rtt_ms": 0.863817, + "rtt_ns": 1920167, + "rtt_ms": 1.920167, "checkpoint": 0, - "vertex_from": "47", - "timestamp": "2025-11-27T01:23:29.531990645Z" + "vertex_from": "316", + "timestamp": "2025-11-27T04:03:11.267776-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1296386, - "rtt_ms": 1.296386, + "rtt_ns": 2069667, + "rtt_ms": 2.069667, "checkpoint": 0, - "vertex_from": "316", - "timestamp": "2025-11-27T01:23:29.532715703Z" + "vertex_from": "387", + "timestamp": "2025-11-27T04:03:11.267786-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2040034, - "rtt_ms": 2.040034, + "operation": "add_edge", + "rtt_ns": 1423458, + "rtt_ms": 1.423458, "checkpoint": 0, - "vertex_from": "62", - "timestamp": "2025-11-27T01:23:29.533235351Z" + "vertex_from": "0", + "vertex_to": "47", + "timestamp": "2025-11-27T04:03:11.267816-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1683195, - "rtt_ms": 1.683195, + "rtt_ns": 1847791, + "rtt_ms": 1.847791, "checkpoint": 0, "vertex_from": "283", - "timestamp": "2025-11-27T01:23:29.533273081Z" + "timestamp": "2025-11-27T04:03:11.267917-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1473255, - "rtt_ms": 1.473255, + "operation": "add_edge", + "rtt_ns": 1716000, + "rtt_ms": 1.716, "checkpoint": 0, - "vertex_from": "41", - "timestamp": "2025-11-27T01:23:29.533282191Z" + "vertex_from": "0", + "vertex_to": "62", + "timestamp": "2025-11-27T04:03:11.26792-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2532291, + "rtt_ms": 2.532291, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "461", + "timestamp": "2025-11-27T04:03:11.268043-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1661345, - "rtt_ms": 1.661345, + "rtt_ns": 1761291, + "rtt_ms": 1.761291, "checkpoint": 0, "vertex_from": "418", - "timestamp": "2025-11-27T01:23:29.533317791Z" + "timestamp": "2025-11-27T04:03:11.268105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063614, - "rtt_ms": 2.063614, + "rtt_ns": 2119625, + "rtt_ms": 2.119625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "437", - "timestamp": "2025-11-27T01:23:29.5336882Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:11.268207-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1927954, - "rtt_ms": 1.927954, + "operation": "add_vertex", + "rtt_ns": 2212459, + "rtt_ms": 2.212459, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:29.53375374Z" + "vertex_from": "41", + "timestamp": "2025-11-27T04:03:11.268693-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2056144, - "rtt_ms": 2.056144, + "operation": "add_vertex", + "rtt_ns": 1157167, + "rtt_ms": 1.157167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "461", - "timestamp": "2025-11-27T01:23:29.53380789Z" + "vertex_from": "44", + "timestamp": "2025-11-27T04:03:11.26887-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1913174, - "rtt_ms": 1.913174, + "operation": "add_vertex", + "rtt_ns": 2249375, + "rtt_ms": 2.249375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "47", - "timestamp": "2025-11-27T01:23:29.533904769Z" + "vertex_from": "675", + "timestamp": "2025-11-27T04:03:11.270067-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1908084, + "rtt_ms": 1.908084, + "checkpoint": 0, + "vertex_from": "898", + "timestamp": "2025-11-27T04:03:11.270116-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200114, - "rtt_ms": 2.200114, + "rtt_ns": 2446208, + "rtt_ms": 2.446208, "checkpoint": 0, "vertex_from": "0", "vertex_to": "387", - "timestamp": "2025-11-27T01:23:29.534126569Z" + "timestamp": "2025-11-27T04:03:11.270232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548975, - "rtt_ms": 1.548975, + "rtt_ns": 2870417, + "rtt_ms": 2.870417, "checkpoint": 0, "vertex_from": "0", "vertex_to": "316", - "timestamp": "2025-11-27T01:23:29.534265238Z" + "timestamp": "2025-11-27T04:03:11.270647-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1117267, - "rtt_ms": 1.117267, + "operation": "add_vertex", + "rtt_ns": 3021750, + "rtt_ms": 3.02175, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "62", - "timestamp": "2025-11-27T01:23:29.534353208Z" + "vertex_from": "581", + "timestamp": "2025-11-27T04:03:11.270943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119427, - "rtt_ms": 1.119427, + "rtt_ns": 3063792, + "rtt_ms": 3.063792, "checkpoint": 0, "vertex_from": "0", "vertex_to": "283", - "timestamp": "2025-11-27T01:23:29.534393118Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 702858, - "rtt_ms": 0.702858, - "checkpoint": 0, - "vertex_from": "44", - "timestamp": "2025-11-27T01:23:29.534394098Z" + "timestamp": "2025-11-27T04:03:11.270981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167187, - "rtt_ms": 1.167187, + "rtt_ns": 2301958, + "rtt_ms": 2.301958, "checkpoint": 0, "vertex_from": "0", "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.534450048Z" + "timestamp": "2025-11-27T04:03:11.270996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133037, - "rtt_ms": 1.133037, + "rtt_ns": 2273458, + "rtt_ms": 2.273458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:29.534451768Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:11.271144-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 889837, - "rtt_ms": 0.889837, + "operation": "add_edge", + "rtt_ns": 3064584, + "rtt_ms": 3.064584, "checkpoint": 0, - "vertex_from": "675", - "timestamp": "2025-11-27T01:23:29.534646307Z" + "vertex_from": "0", + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:11.27117-08:00" }, { "operation": "add_vertex", - "rtt_ns": 798298, - "rtt_ms": 0.798298, + "rtt_ns": 3143583, + "rtt_ms": 3.143583, "checkpoint": 0, "vertex_from": "432", - "timestamp": "2025-11-27T01:23:29.534708227Z" + "timestamp": "2025-11-27T04:03:11.271188-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 924327, - "rtt_ms": 0.924327, + "operation": "add_edge", + "rtt_ns": 1715750, + "rtt_ms": 1.71575, "checkpoint": 0, - "vertex_from": "581", - "timestamp": "2025-11-27T01:23:29.534735407Z" + "vertex_from": "0", + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:11.271832-08:00" }, { "operation": "add_vertex", - "rtt_ns": 680918, - "rtt_ms": 0.680918, + "rtt_ns": 1971458, + "rtt_ms": 1.971458, "checkpoint": 0, - "vertex_from": "898", - "timestamp": "2025-11-27T01:23:29.534812627Z" + "vertex_from": "184", + "timestamp": "2025-11-27T04:03:11.272208-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 708958, - "rtt_ms": 0.708958, + "operation": "add_edge", + "rtt_ns": 2325458, + "rtt_ms": 2.325458, "checkpoint": 0, - "vertex_from": "184", - "timestamp": "2025-11-27T01:23:29.534977936Z" + "vertex_from": "0", + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:11.272392-08:00" }, { "operation": "add_vertex", - "rtt_ns": 677408, - "rtt_ms": 0.677408, + "rtt_ns": 1410209, + "rtt_ms": 1.410209, "checkpoint": 0, - "vertex_from": "360", - "timestamp": "2025-11-27T01:23:29.535033636Z" + "vertex_from": "391", + "timestamp": "2025-11-27T04:03:11.27241-08:00" }, { "operation": "add_vertex", - "rtt_ns": 658278, - "rtt_ms": 0.658278, + "rtt_ns": 1956208, + "rtt_ms": 1.956208, "checkpoint": 0, - "vertex_from": "391", - "timestamp": "2025-11-27T01:23:29.535111236Z" + "vertex_from": "360", + "timestamp": "2025-11-27T04:03:11.272605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379446, - "rtt_ms": 1.379446, + "rtt_ns": 1677625, + "rtt_ms": 1.677625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.535774224Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 670638, - "rtt_ms": 0.670638, - "checkpoint": 0, - "vertex_from": "560", - "timestamp": "2025-11-27T01:23:29.536448082Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:11.272621-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2253933, - "rtt_ms": 2.253933, + "rtt_ns": 1639125, + "rtt_ms": 1.639125, "checkpoint": 0, "vertex_from": "773", - "timestamp": "2025-11-27T01:23:29.536649771Z" + "timestamp": "2025-11-27T04:03:11.272624-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2238913, - "rtt_ms": 2.238913, + "rtt_ns": 2311459, + "rtt_ms": 2.311459, "checkpoint": 0, "vertex_from": "701", - "timestamp": "2025-11-27T01:23:29.536693541Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2034484, - "rtt_ms": 2.034484, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:29.536770431Z" + "timestamp": "2025-11-27T04:03:11.273457-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1998684, - "rtt_ms": 1.998684, + "operation": "add_vertex", + "rtt_ns": 2297209, + "rtt_ms": 2.297209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:29.536811741Z" + "vertex_from": "560", + "timestamp": "2025-11-27T04:03:11.273468-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145634, - "rtt_ms": 2.145634, + "rtt_ns": 2468458, + "rtt_ms": 2.468458, "checkpoint": 0, "vertex_from": "0", "vertex_to": "432", - "timestamp": "2025-11-27T01:23:29.536854271Z" + "timestamp": "2025-11-27T04:03:11.273657-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1755945, - "rtt_ms": 1.755945, + "operation": "add_vertex", + "rtt_ns": 1880792, + "rtt_ms": 1.880792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "391", - "timestamp": "2025-11-27T01:23:29.536867661Z" + "vertex_from": "173", + "timestamp": "2025-11-27T04:03:11.273716-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1862634, - "rtt_ms": 1.862634, + "operation": "add_vertex", + "rtt_ns": 1338750, + "rtt_ms": 1.33875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:29.53689667Z" + "vertex_from": "906", + "timestamp": "2025-11-27T04:03:11.273732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283833, - "rtt_ms": 2.283833, + "rtt_ns": 1791000, + "rtt_ms": 1.791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:29.53693049Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:11.273999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993114, - "rtt_ms": 1.993114, + "rtt_ns": 1657875, + "rtt_ms": 1.657875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:29.53697143Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:03:11.274068-08:00" }, { "operation": "add_vertex", - "rtt_ns": 933007, - "rtt_ms": 0.933007, + "rtt_ns": 1761083, + "rtt_ms": 1.761083, "checkpoint": 0, "vertex_from": "688", - "timestamp": "2025-11-27T01:23:29.537789118Z" + "timestamp": "2025-11-27T04:03:11.274385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174277, - "rtt_ms": 1.174277, + "rtt_ns": 1944792, + "rtt_ms": 1.944792, "checkpoint": 0, "vertex_from": "0", "vertex_to": "773", - "timestamp": "2025-11-27T01:23:29.537824388Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1012407, - "rtt_ms": 1.012407, - "checkpoint": 0, - "vertex_from": "906", - "timestamp": "2025-11-27T01:23:29.537826758Z" + "timestamp": "2025-11-27T04:03:11.274569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134927, - "rtt_ms": 1.134927, + "rtt_ns": 1629500, + "rtt_ms": 1.6295, "checkpoint": 0, "vertex_from": "0", "vertex_to": "701", - "timestamp": "2025-11-27T01:23:29.537828918Z" + "timestamp": "2025-11-27T04:03:11.275086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382186, - "rtt_ms": 1.382186, + "rtt_ns": 2599250, + "rtt_ms": 2.59925, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.537830558Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:11.275204-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1081347, - "rtt_ms": 1.081347, + "operation": "add_edge", + "rtt_ns": 1534375, + "rtt_ms": 1.534375, "checkpoint": 0, - "vertex_from": "173", - "timestamp": "2025-11-27T01:23:29.537853978Z" + "vertex_from": "0", + "vertex_to": "906", + "timestamp": "2025-11-27T04:03:11.275267-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1481766, - "rtt_ms": 1.481766, + "rtt_ns": 1203000, + "rtt_ms": 1.203, "checkpoint": 0, "vertex_from": "553", - "timestamp": "2025-11-27T01:23:29.538414696Z" + "timestamp": "2025-11-27T04:03:11.275274-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1544386, - "rtt_ms": 1.544386, + "rtt_ns": 1277708, + "rtt_ms": 1.277708, "checkpoint": 0, "vertex_from": "923", - "timestamp": "2025-11-27T01:23:29.538443856Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1471306, - "rtt_ms": 1.471306, - "checkpoint": 0, - "vertex_from": "541", - "timestamp": "2025-11-27T01:23:29.538444156Z" + "timestamp": "2025-11-27T04:03:11.275279-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1573555, - "rtt_ms": 1.573555, + "operation": "add_edge", + "rtt_ns": 1590750, + "rtt_ms": 1.59075, "checkpoint": 0, - "vertex_from": "920", - "timestamp": "2025-11-27T01:23:29.538444506Z" + "vertex_from": "0", + "vertex_to": "173", + "timestamp": "2025-11-27T04:03:11.275307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004297, - "rtt_ms": 1.004297, + "rtt_ns": 1988542, + "rtt_ms": 1.988542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:29.538793955Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:11.275457-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1085576, - "rtt_ms": 1.085576, + "rtt_ns": 1318958, + "rtt_ms": 1.318958, "checkpoint": 0, - "vertex_from": "892", - "timestamp": "2025-11-27T01:23:29.538919234Z" + "vertex_from": "361", + "timestamp": "2025-11-27T04:03:11.276409-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2211053, - "rtt_ms": 2.211053, + "operation": "add_vertex", + "rtt_ns": 2803167, + "rtt_ms": 2.803167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:29.540038311Z" + "vertex_from": "920", + "timestamp": "2025-11-27T04:03:11.276461-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2210713, - "rtt_ms": 2.210713, + "rtt_ns": 1896875, + "rtt_ms": 1.896875, "checkpoint": 0, - "vertex_from": "361", - "timestamp": "2025-11-27T01:23:29.540038961Z" + "vertex_from": "541", + "timestamp": "2025-11-27T04:03:11.276468-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1662995, - "rtt_ms": 1.662995, + "rtt_ns": 1305208, + "rtt_ms": 1.305208, "checkpoint": 0, - "vertex_from": "307", - "timestamp": "2025-11-27T01:23:29.54045972Z" + "vertex_from": "916", + "timestamp": "2025-11-27T04:03:11.276517-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2651582, - "rtt_ms": 2.651582, + "operation": "add_vertex", + "rtt_ns": 1404959, + "rtt_ms": 1.404959, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "173", - "timestamp": "2025-11-27T01:23:29.54050597Z" + "vertex_from": "892", + "timestamp": "2025-11-27T04:03:11.276673-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2708252, - "rtt_ms": 2.708252, + "rtt_ns": 1988250, + "rtt_ms": 1.98825, "checkpoint": 0, - "vertex_from": "916", - "timestamp": "2025-11-27T01:23:29.54054142Z" + "vertex_from": "307", + "timestamp": "2025-11-27T04:03:11.277297-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118583, - "rtt_ms": 2.118583, + "rtt_ns": 2947333, + "rtt_ms": 2.947333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "923", - "timestamp": "2025-11-27T01:23:29.540562799Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:11.277333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201623, - "rtt_ms": 2.201623, + "rtt_ns": 2337459, + "rtt_ms": 2.337459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:29.540646549Z" + "vertex_to": "923", + "timestamp": "2025-11-27T04:03:11.277618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2204143, - "rtt_ms": 2.204143, + "rtt_ns": 1241875, + "rtt_ms": 1.241875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:29.540648659Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:11.277759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734975, - "rtt_ms": 1.734975, + "rtt_ns": 1495750, + "rtt_ms": 1.49575, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "892", - "timestamp": "2025-11-27T01:23:29.540654559Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:03:11.277957-08:00" }, { "operation": "add_edge", - "rtt_ns": 2252923, - "rtt_ms": 2.252923, + "rtt_ns": 1652834, + "rtt_ms": 1.652834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:29.540667969Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:03:11.278062-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1150207, - "rtt_ms": 1.150207, + "rtt_ns": 2694250, + "rtt_ms": 2.69425, "checkpoint": 0, "vertex_from": "620", - "timestamp": "2025-11-27T01:23:29.541191238Z" + "timestamp": "2025-11-27T04:03:11.278152-08:00" }, { "operation": "add_edge", - "rtt_ns": 717937, - "rtt_ms": 0.717937, + "rtt_ns": 1787458, + "rtt_ms": 1.787458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:29.541259947Z" + "vertex_to": "892", + "timestamp": "2025-11-27T04:03:11.278462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269386, - "rtt_ms": 1.269386, + "rtt_ns": 1166000, + "rtt_ms": 1.166, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "361", - "timestamp": "2025-11-27T01:23:29.541308677Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:03:11.278463-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1156958, + "rtt_ms": 1.156958, + "checkpoint": 0, + "vertex_from": "246", + "timestamp": "2025-11-27T04:03:11.278492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168576, - "rtt_ms": 1.168576, + "rtt_ns": 3260250, + "rtt_ms": 3.26025, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "307", - "timestamp": "2025-11-27T01:23:29.541629066Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:11.278534-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1064317, - "rtt_ms": 1.064317, + "rtt_ns": 986166, + "rtt_ms": 0.986166, "checkpoint": 0, - "vertex_from": "83", - "timestamp": "2025-11-27T01:23:29.541734916Z" + "vertex_from": "712", + "timestamp": "2025-11-27T04:03:11.278606-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1237216, - "rtt_ms": 1.237216, + "operation": "add_edge", + "rtt_ns": 3155708, + "rtt_ms": 3.155708, "checkpoint": 0, - "vertex_from": "246", - "timestamp": "2025-11-27T01:23:29.541745636Z" + "vertex_from": "0", + "vertex_to": "541", + "timestamp": "2025-11-27T04:03:11.279625-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1247197, - "rtt_ms": 1.247197, + "rtt_ns": 1684792, + "rtt_ms": 1.684792, "checkpoint": 0, "vertex_from": "341", - "timestamp": "2025-11-27T01:23:29.541899066Z" + "timestamp": "2025-11-27T04:03:11.279643-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1370606, - "rtt_ms": 1.370606, + "rtt_ns": 1451042, + "rtt_ms": 1.451042, "checkpoint": 0, - "vertex_from": "712", - "timestamp": "2025-11-27T01:23:29.541936085Z" + "vertex_from": "322", + "timestamp": "2025-11-27T04:03:11.279988-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1801615, - "rtt_ms": 1.801615, + "rtt_ns": 1620125, + "rtt_ms": 1.620125, "checkpoint": 0, - "vertex_from": "582", - "timestamp": "2025-11-27T01:23:29.542458874Z" + "vertex_from": "309", + "timestamp": "2025-11-27T04:03:11.280084-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1826615, - "rtt_ms": 1.826615, + "rtt_ns": 2345208, + "rtt_ms": 2.345208, "checkpoint": 0, "vertex_from": "297", - "timestamp": "2025-11-27T01:23:29.542474984Z" + "timestamp": "2025-11-27T04:03:11.280106-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1201727, - "rtt_ms": 1.201727, + "rtt_ns": 1649125, + "rtt_ms": 1.649125, "checkpoint": 0, - "vertex_from": "322", - "timestamp": "2025-11-27T01:23:29.542512854Z" + "vertex_from": "83", + "timestamp": "2025-11-27T04:03:11.280112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383565, - "rtt_ms": 1.383565, + "rtt_ns": 1970333, + "rtt_ms": 1.970333, "checkpoint": 0, "vertex_from": "0", "vertex_to": "620", - "timestamp": "2025-11-27T01:23:29.542575113Z" + "timestamp": "2025-11-27T04:03:11.280122-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 970887, - "rtt_ms": 0.970887, + "operation": "add_edge", + "rtt_ns": 1702708, + "rtt_ms": 1.702708, "checkpoint": 0, - "vertex_from": "86", - "timestamp": "2025-11-27T01:23:29.542603143Z" + "vertex_from": "0", + "vertex_to": "246", + "timestamp": "2025-11-27T04:03:11.280195-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1701385, - "rtt_ms": 1.701385, + "rtt_ns": 2363500, + "rtt_ms": 2.3635, "checkpoint": 0, - "vertex_from": "309", - "timestamp": "2025-11-27T01:23:29.542967332Z" + "vertex_from": "582", + "timestamp": "2025-11-27T04:03:11.280427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441926, - "rtt_ms": 1.441926, + "rtt_ns": 2300291, + "rtt_ms": 2.300291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:29.543177162Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:11.280907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431946, - "rtt_ms": 1.431946, + "rtt_ns": 1437042, + "rtt_ms": 1.437042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "246", - "timestamp": "2025-11-27T01:23:29.543178042Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:11.281549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360045, - "rtt_ms": 1.360045, + "rtt_ns": 1927500, + "rtt_ms": 1.9275, "checkpoint": 0, "vertex_from": "0", "vertex_to": "341", - "timestamp": "2025-11-27T01:23:29.543259561Z" + "timestamp": "2025-11-27T04:03:11.28157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358236, - "rtt_ms": 1.358236, + "rtt_ns": 1605125, + "rtt_ms": 1.605125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:29.543294691Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:03:11.28169-08:00" }, { "operation": "add_vertex", - "rtt_ns": 750468, - "rtt_ms": 0.750468, - "checkpoint": 0, - "vertex_from": "660", - "timestamp": "2025-11-27T01:23:29.543328091Z" - }, - { - "operation": "add_edge", - "rtt_ns": 869937, - "rtt_ms": 0.869937, + "rtt_ns": 1503875, + "rtt_ms": 1.503875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:29.543329141Z" + "vertex_from": "357", + "timestamp": "2025-11-27T04:03:11.281701-08:00" }, { - "operation": "add_edge", - "rtt_ns": 877897, - "rtt_ms": 0.877897, + "operation": "add_vertex", + "rtt_ns": 1794292, + "rtt_ms": 1.794292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:29.543391231Z" + "vertex_from": "660", + "timestamp": "2025-11-27T04:03:11.281918-08:00" }, { "operation": "add_vertex", - "rtt_ns": 730538, - "rtt_ms": 0.730538, + "rtt_ns": 2318791, + "rtt_ms": 2.318791, "checkpoint": 0, - "vertex_from": "357", - "timestamp": "2025-11-27T01:23:29.5439128Z" + "vertex_from": "86", + "timestamp": "2025-11-27T04:03:11.281945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350856, - "rtt_ms": 1.350856, + "rtt_ns": 1600083, + "rtt_ms": 1.600083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:29.543954239Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:11.282027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490305, - "rtt_ms": 1.490305, + "rtt_ns": 1935292, + "rtt_ms": 1.935292, "checkpoint": 0, "vertex_from": "0", "vertex_to": "297", - "timestamp": "2025-11-27T01:23:29.543965639Z" + "timestamp": "2025-11-27T04:03:11.282042-08:00" }, { "operation": "add_vertex", - "rtt_ns": 833947, - "rtt_ms": 0.833947, + "rtt_ns": 1296125, + "rtt_ms": 1.296125, "checkpoint": 0, "vertex_from": "601", - "timestamp": "2025-11-27T01:23:29.544014829Z" + "timestamp": "2025-11-27T04:03:11.282204-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 754088, - "rtt_ms": 0.754088, + "operation": "add_edge", + "rtt_ns": 2250791, + "rtt_ms": 2.250791, "checkpoint": 0, - "vertex_from": "245", - "timestamp": "2025-11-27T01:23:29.544015769Z" + "vertex_from": "0", + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:11.282239-08:00" }, { "operation": "add_vertex", - "rtt_ns": 758458, - "rtt_ms": 0.758458, + "rtt_ns": 1273833, + "rtt_ms": 1.273833, "checkpoint": 0, "vertex_from": "825", - "timestamp": "2025-11-27T01:23:29.544054839Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 755028, - "rtt_ms": 0.755028, - "checkpoint": 0, - "vertex_from": "77", - "timestamp": "2025-11-27T01:23:29.544086739Z" + "timestamp": "2025-11-27T04:03:11.282845-08:00" }, { "operation": "add_vertex", - "rtt_ns": 776738, - "rtt_ms": 0.776738, + "rtt_ns": 1294042, + "rtt_ms": 1.294042, "checkpoint": 0, "vertex_from": "609", - "timestamp": "2025-11-27T01:23:29.544169489Z" + "timestamp": "2025-11-27T04:03:11.283324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800705, - "rtt_ms": 1.800705, + "rtt_ns": 1652042, + "rtt_ms": 1.652042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "309", - "timestamp": "2025-11-27T01:23:29.544768627Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:03:11.283354-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1448156, - "rtt_ms": 1.448156, + "operation": "add_vertex", + "rtt_ns": 1661334, + "rtt_ms": 1.661334, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:29.545463825Z" + "vertex_from": "77", + "timestamp": "2025-11-27T04:03:11.283354-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1529006, - "rtt_ms": 1.529006, + "rtt_ns": 1339167, + "rtt_ms": 1.339167, "checkpoint": 0, "vertex_from": "486", - "timestamp": "2025-11-27T01:23:29.545485885Z" + "timestamp": "2025-11-27T04:03:11.283383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473036, - "rtt_ms": 1.473036, + "rtt_ns": 1325292, + "rtt_ms": 1.325292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "245", - "timestamp": "2025-11-27T01:23:29.545489115Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:11.283529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584405, - "rtt_ms": 1.584405, + "rtt_ns": 1692542, + "rtt_ms": 1.692542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "357", - "timestamp": "2025-11-27T01:23:29.545497935Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:11.283611-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2177424, - "rtt_ms": 2.177424, + "operation": "add_vertex", + "rtt_ns": 2162625, + "rtt_ms": 2.162625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:29.545505985Z" + "vertex_from": "245", + "timestamp": "2025-11-27T04:03:11.283713-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1422216, - "rtt_ms": 1.422216, + "operation": "add_vertex", + "rtt_ns": 1505334, + "rtt_ms": 1.505334, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:29.545509335Z" + "vertex_from": "531", + "timestamp": "2025-11-27T04:03:11.283745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517606, - "rtt_ms": 1.517606, + "rtt_ns": 2060250, + "rtt_ms": 2.06025, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "825", - "timestamp": "2025-11-27T01:23:29.545572685Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:11.284005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445136, - "rtt_ms": 1.445136, + "rtt_ns": 1623000, + "rtt_ms": 1.623, "checkpoint": 0, "vertex_from": "0", "vertex_to": "609", - "timestamp": "2025-11-27T01:23:29.545614915Z" + "timestamp": "2025-11-27T04:03:11.284948-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1860545, - "rtt_ms": 1.860545, + "operation": "add_edge", + "rtt_ns": 2128208, + "rtt_ms": 2.128208, "checkpoint": 0, - "vertex_from": "531", - "timestamp": "2025-11-27T01:23:29.545830314Z" + "vertex_from": "0", + "vertex_to": "825", + "timestamp": "2025-11-27T04:03:11.284973-08:00" }, { "operation": "add_vertex", - "rtt_ns": 718358, - "rtt_ms": 0.718358, + "rtt_ns": 1821292, + "rtt_ms": 1.821292, "checkpoint": 0, - "vertex_from": "269", - "timestamp": "2025-11-27T01:23:29.546189753Z" + "vertex_from": "912", + "timestamp": "2025-11-27T04:03:11.285176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201027, - "rtt_ms": 1.201027, + "rtt_ns": 1809083, + "rtt_ms": 1.809083, "checkpoint": 0, "vertex_from": "0", "vertex_to": "486", - "timestamp": "2025-11-27T01:23:29.546687422Z" + "timestamp": "2025-11-27T04:03:11.285192-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1300696, - "rtt_ms": 1.300696, + "rtt_ns": 1681708, + "rtt_ms": 1.681708, "checkpoint": 0, - "vertex_from": "869", - "timestamp": "2025-11-27T01:23:29.546917391Z" + "vertex_from": "269", + "timestamp": "2025-11-27T04:03:11.285214-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1447656, - "rtt_ms": 1.447656, + "operation": "add_edge", + "rtt_ns": 2310250, + "rtt_ms": 2.31025, "checkpoint": 0, - "vertex_from": "141", - "timestamp": "2025-11-27T01:23:29.546958831Z" + "vertex_from": "0", + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:11.285665-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1985041, + "rtt_ms": 1.985041, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:11.285731-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1485136, - "rtt_ms": 1.485136, + "rtt_ns": 2360625, + "rtt_ms": 2.360625, "checkpoint": 0, "vertex_from": "915", - "timestamp": "2025-11-27T01:23:29.546976731Z" + "timestamp": "2025-11-27T04:03:11.285974-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1841025, - "rtt_ms": 1.841025, + "rtt_ns": 2039000, + "rtt_ms": 2.039, "checkpoint": 0, - "vertex_from": "228", - "timestamp": "2025-11-27T01:23:29.54741732Z" + "vertex_from": "537", + "timestamp": "2025-11-27T04:03:11.286045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617296, - "rtt_ms": 1.617296, + "rtt_ns": 2654125, + "rtt_ms": 2.654125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:29.5474482Z" + "vertex_to": "245", + "timestamp": "2025-11-27T04:03:11.286368-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1942175, - "rtt_ms": 1.942175, + "operation": "add_edge", + "rtt_ns": 1667375, + "rtt_ms": 1.667375, "checkpoint": 0, - "vertex_from": "537", - "timestamp": "2025-11-27T01:23:29.54744941Z" + "vertex_from": "0", + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:11.286882-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1724375, + "rtt_ms": 1.724375, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:11.286901-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1937255, - "rtt_ms": 1.937255, + "rtt_ns": 2007125, + "rtt_ms": 2.007125, "checkpoint": 0, - "vertex_from": "864", - "timestamp": "2025-11-27T01:23:29.54744983Z" + "vertex_from": "141", + "timestamp": "2025-11-27T04:03:11.286982-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2681163, - "rtt_ms": 2.681163, + "rtt_ns": 1805792, + "rtt_ms": 1.805792, "checkpoint": 0, - "vertex_from": "912", - "timestamp": "2025-11-27T01:23:29.54745218Z" + "vertex_from": "228", + "timestamp": "2025-11-27T04:03:11.286999-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1384936, - "rtt_ms": 1.384936, + "operation": "add_vertex", + "rtt_ns": 1595000, + "rtt_ms": 1.595, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:29.547575369Z" + "vertex_from": "869", + "timestamp": "2025-11-27T04:03:11.287264-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1291446, - "rtt_ms": 1.291446, + "rtt_ns": 2411458, + "rtt_ms": 2.411458, "checkpoint": 0, - "vertex_from": "167", - "timestamp": "2025-11-27T01:23:29.547981918Z" + "vertex_from": "864", + "timestamp": "2025-11-27T04:03:11.28736-08:00" }, { "operation": "add_vertex", - "rtt_ns": 752438, - "rtt_ms": 0.752438, + "rtt_ns": 1767209, + "rtt_ms": 1.767209, "checkpoint": 0, - "vertex_from": "905", - "timestamp": "2025-11-27T01:23:29.548331987Z" + "vertex_from": "167", + "timestamp": "2025-11-27T04:03:11.287507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494096, - "rtt_ms": 1.494096, + "rtt_ns": 1573917, + "rtt_ms": 1.573917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "869", - "timestamp": "2025-11-27T01:23:29.548411897Z" + "vertex_to": "915", + "timestamp": "2025-11-27T04:03:11.287548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756435, - "rtt_ms": 1.756435, + "rtt_ns": 1332750, + "rtt_ms": 1.33275, "checkpoint": 0, "vertex_from": "0", "vertex_to": "141", - "timestamp": "2025-11-27T01:23:29.548715716Z" + "timestamp": "2025-11-27T04:03:11.288315-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1963944, - "rtt_ms": 1.963944, + "operation": "add_vertex", + "rtt_ns": 1499166, + "rtt_ms": 1.499166, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "915", - "timestamp": "2025-11-27T01:23:29.548941025Z" + "vertex_from": "905", + "timestamp": "2025-11-27T04:03:11.288382-08:00" }, { "operation": "add_vertex", - "rtt_ns": 552708, - "rtt_ms": 0.552708, + "rtt_ns": 1142167, + "rtt_ms": 1.142167, "checkpoint": 0, - "vertex_from": "210", - "timestamp": "2025-11-27T01:23:29.548966105Z" + "vertex_from": "664", + "timestamp": "2025-11-27T04:03:11.288691-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1591255, - "rtt_ms": 1.591255, + "operation": "add_edge", + "rtt_ns": 1470291, + "rtt_ms": 1.470291, "checkpoint": 0, - "vertex_from": "836", - "timestamp": "2025-11-27T01:23:29.549041425Z" + "vertex_from": "0", + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:11.288831-08:00" }, { "operation": "add_vertex", - "rtt_ns": 612338, - "rtt_ms": 0.612338, + "rtt_ns": 2488084, + "rtt_ms": 2.488084, "checkpoint": 0, - "vertex_from": "664", - "timestamp": "2025-11-27T01:23:29.549331814Z" + "vertex_from": "836", + "timestamp": "2025-11-27T04:03:11.288857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131363, - "rtt_ms": 2.131363, + "rtt_ns": 1920958, + "rtt_ms": 1.920958, "checkpoint": 0, "vertex_from": "0", "vertex_to": "228", - "timestamp": "2025-11-27T01:23:29.549549203Z" + "timestamp": "2025-11-27T04:03:11.28892-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2197953, - "rtt_ms": 2.197953, + "operation": "add_vertex", + "rtt_ns": 2085833, + "rtt_ms": 2.085833, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:29.549647903Z" + "vertex_from": "210", + "timestamp": "2025-11-27T04:03:11.28899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275493, - "rtt_ms": 2.275493, + "rtt_ns": 2976250, + "rtt_ms": 2.97625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:29.549728343Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:11.289021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315293, - "rtt_ms": 2.315293, + "rtt_ns": 1945917, + "rtt_ms": 1.945917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:29.549766053Z" + "vertex_to": "869", + "timestamp": "2025-11-27T04:03:11.28921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884894, - "rtt_ms": 1.884894, + "rtt_ns": 2280792, + "rtt_ms": 2.280792, "checkpoint": 0, "vertex_from": "0", "vertex_to": "167", - "timestamp": "2025-11-27T01:23:29.549867122Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1396166, - "rtt_ms": 1.396166, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:29.550362511Z" + "timestamp": "2025-11-27T04:03:11.289788-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1355846, - "rtt_ms": 1.355846, + "operation": "add_vertex", + "rtt_ns": 1032167, + "rtt_ms": 1.032167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:29.550397731Z" + "vertex_from": "220", + "timestamp": "2025-11-27T04:03:11.290055-08:00" }, { "operation": "add_vertex", - "rtt_ns": 853888, - "rtt_ms": 0.853888, + "rtt_ns": 1443792, + "rtt_ms": 1.443792, "checkpoint": 0, "vertex_from": "293", - "timestamp": "2025-11-27T01:23:29.550405551Z" + "timestamp": "2025-11-27T04:03:11.290275-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1567986, - "rtt_ms": 1.567986, + "rtt_ns": 2133834, + "rtt_ms": 2.133834, "checkpoint": 0, "vertex_from": "488", - "timestamp": "2025-11-27T01:23:29.550513801Z" + "timestamp": "2025-11-27T04:03:11.290451-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1191606, - "rtt_ms": 1.191606, + "operation": "add_vertex", + "rtt_ns": 1658292, + "rtt_ms": 1.658292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:29.55052399Z" + "vertex_from": "540", + "timestamp": "2025-11-27T04:03:11.29058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239303, - "rtt_ms": 2.239303, + "rtt_ns": 2343125, + "rtt_ms": 2.343125, "checkpoint": 0, "vertex_from": "0", "vertex_to": "905", - "timestamp": "2025-11-27T01:23:29.55057223Z" + "timestamp": "2025-11-27T04:03:11.290725-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1541496, - "rtt_ms": 1.541496, + "operation": "add_edge", + "rtt_ns": 1753958, + "rtt_ms": 1.753958, "checkpoint": 0, - "vertex_from": "540", - "timestamp": "2025-11-27T01:23:29.551192188Z" + "vertex_from": "0", + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:11.290744-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1529035, - "rtt_ms": 1.529035, + "operation": "add_edge", + "rtt_ns": 1901625, + "rtt_ms": 1.901625, "checkpoint": 0, - "vertex_from": "220", - "timestamp": "2025-11-27T01:23:29.551259908Z" + "vertex_from": "0", + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:11.290759-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1497675, - "rtt_ms": 1.497675, + "rtt_ns": 1599500, + "rtt_ms": 1.5995, "checkpoint": 0, "vertex_from": "314", - "timestamp": "2025-11-27T01:23:29.551268908Z" + "timestamp": "2025-11-27T04:03:11.29081-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1444866, - "rtt_ms": 1.444866, + "operation": "add_edge", + "rtt_ns": 2165041, + "rtt_ms": 2.165041, "checkpoint": 0, - "vertex_from": "169", - "timestamp": "2025-11-27T01:23:29.551316718Z" + "vertex_from": "0", + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:11.290857-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1160237, - "rtt_ms": 1.160237, + "rtt_ns": 1279042, + "rtt_ms": 1.279042, "checkpoint": 0, - "vertex_from": "30", - "timestamp": "2025-11-27T01:23:29.551738667Z" + "vertex_from": "169", + "timestamp": "2025-11-27T04:03:11.291069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615145, - "rtt_ms": 1.615145, + "rtt_ns": 1105542, + "rtt_ms": 1.105542, "checkpoint": 0, "vertex_from": "0", "vertex_to": "293", - "timestamp": "2025-11-27T01:23:29.552021476Z" + "timestamp": "2025-11-27T04:03:11.291381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563625, - "rtt_ms": 1.563625, + "rtt_ns": 1452959, + "rtt_ms": 1.452959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "488", - "timestamp": "2025-11-27T01:23:29.552078256Z" + "vertex_to": "220", + "timestamp": "2025-11-27T04:03:11.291508-08:00" }, { - "operation": "add_edge", - "rtt_ns": 980218, - "rtt_ms": 0.980218, + "operation": "add_vertex", + "rtt_ns": 1151791, + "rtt_ms": 1.151791, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:29.552172836Z" + "vertex_from": "821", + "timestamp": "2025-11-27T04:03:11.291913-08:00" }, { "operation": "add_edge", - "rtt_ns": 989887, - "rtt_ms": 0.989887, + "rtt_ns": 1609792, + "rtt_ms": 1.609792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "220", - "timestamp": "2025-11-27T01:23:29.552250135Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:11.29219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004817, - "rtt_ms": 1.004817, + "rtt_ns": 1757917, + "rtt_ms": 1.757917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "314", - "timestamp": "2025-11-27T01:23:29.552274715Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:03:11.292209-08:00" }, { - "operation": "add_edge", - "rtt_ns": 968537, - "rtt_ms": 0.968537, + "operation": "add_vertex", + "rtt_ns": 1503417, + "rtt_ms": 1.503417, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:29.552285605Z" + "vertex_from": "781", + "timestamp": "2025-11-27T04:03:11.29223-08:00" }, { - "operation": "add_edge", - "rtt_ns": 677458, - "rtt_ms": 0.677458, + "operation": "add_vertex", + "rtt_ns": 1457292, + "rtt_ms": 1.457292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "30", - "timestamp": "2025-11-27T01:23:29.552416745Z" + "vertex_from": "30", + "timestamp": "2025-11-27T04:03:11.292316-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2209573, - "rtt_ms": 2.209573, + "rtt_ns": 2017333, + "rtt_ms": 2.017333, "checkpoint": 0, "vertex_from": "840", - "timestamp": "2025-11-27T01:23:29.552612344Z" + "timestamp": "2025-11-27T04:03:11.292762-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2114644, - "rtt_ms": 2.114644, + "operation": "add_edge", + "rtt_ns": 2182125, + "rtt_ms": 2.182125, "checkpoint": 0, - "vertex_from": "821", - "timestamp": "2025-11-27T01:23:29.552641174Z" + "vertex_from": "0", + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:11.293251-08:00" }, { "operation": "add_vertex", - "rtt_ns": 618118, - "rtt_ms": 0.618118, + "rtt_ns": 1920708, + "rtt_ms": 1.920708, "checkpoint": 0, - "vertex_from": "94", - "timestamp": "2025-11-27T01:23:29.552644254Z" + "vertex_from": "551", + "timestamp": "2025-11-27T04:03:11.293431-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2293183, - "rtt_ms": 2.293183, + "rtt_ns": 2098500, + "rtt_ms": 2.0985, "checkpoint": 0, - "vertex_from": "781", - "timestamp": "2025-11-27T01:23:29.552659654Z" + "vertex_from": "94", + "timestamp": "2025-11-27T04:03:11.293481-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 653508, - "rtt_ms": 0.653508, + "operation": "add_edge", + "rtt_ns": 2674916, + "rtt_ms": 2.674916, "checkpoint": 0, - "vertex_from": "348", - "timestamp": "2025-11-27T01:23:29.552933363Z" + "vertex_from": "0", + "vertex_to": "314", + "timestamp": "2025-11-27T04:03:11.293486-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1228976, - "rtt_ms": 1.228976, + "rtt_ns": 1341583, + "rtt_ms": 1.341583, "checkpoint": 0, - "vertex_from": "551", - "timestamp": "2025-11-27T01:23:29.553312922Z" + "vertex_from": "628", + "timestamp": "2025-11-27T04:03:11.293552-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1757915, - "rtt_ms": 1.757915, + "operation": "add_edge", + "rtt_ns": 1711000, + "rtt_ms": 1.711, "checkpoint": 0, - "vertex_from": "594", - "timestamp": "2025-11-27T01:23:29.55404645Z" + "vertex_from": "0", + "vertex_to": "30", + "timestamp": "2025-11-27T04:03:11.294027-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1866425, - "rtt_ms": 1.866425, + "rtt_ns": 1047625, + "rtt_ms": 1.047625, "checkpoint": 0, - "vertex_from": "628", - "timestamp": "2025-11-27T01:23:29.55412142Z" + "vertex_from": "348", + "timestamp": "2025-11-27T04:03:11.294302-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2412012, - "rtt_ms": 2.412012, + "rtt_ns": 2225292, + "rtt_ms": 2.225292, "checkpoint": 0, "vertex_from": "673", - "timestamp": "2025-11-27T01:23:29.554589308Z" + "timestamp": "2025-11-27T04:03:11.294418-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100034, - "rtt_ms": 2.100034, + "rtt_ns": 2671750, + "rtt_ms": 2.67175, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "94", - "timestamp": "2025-11-27T01:23:29.554745058Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2324653, - "rtt_ms": 2.324653, - "checkpoint": 0, - "vertex_from": "649", - "timestamp": "2025-11-27T01:23:29.554746008Z" + "vertex_to": "821", + "timestamp": "2025-11-27T04:03:11.294586-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122314, - "rtt_ms": 2.122314, + "rtt_ns": 1187750, + "rtt_ms": 1.18775, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:29.554782428Z" + "vertex_to": "551", + "timestamp": "2025-11-27T04:03:11.294619-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197074, - "rtt_ms": 2.197074, + "rtt_ns": 1914833, + "rtt_ms": 1.914833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:29.554809758Z" + "timestamp": "2025-11-27T04:03:11.294677-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185344, - "rtt_ms": 2.185344, + "rtt_ns": 1258000, + "rtt_ms": 1.258, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "821", - "timestamp": "2025-11-27T01:23:29.554826888Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1525586, - "rtt_ms": 1.525586, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "551", - "timestamp": "2025-11-27T01:23:29.554839158Z" + "vertex_to": "94", + "timestamp": "2025-11-27T04:03:11.29474-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1910295, - "rtt_ms": 1.910295, + "operation": "add_vertex", + "rtt_ns": 1328209, + "rtt_ms": 1.328209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:29.554844278Z" + "vertex_from": "594", + "timestamp": "2025-11-27T04:03:11.294815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164627, - "rtt_ms": 1.164627, + "rtt_ns": 2746125, + "rtt_ms": 2.746125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:29.555754845Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:11.294977-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1012977, - "rtt_ms": 1.012977, + "rtt_ns": 1124208, + "rtt_ms": 1.124208, "checkpoint": 0, - "vertex_from": "618", - "timestamp": "2025-11-27T01:23:29.555763705Z" + "vertex_from": "649", + "timestamp": "2025-11-27T04:03:11.295152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661055, - "rtt_ms": 1.661055, + "rtt_ns": 2079500, + "rtt_ms": 2.0795, "checkpoint": 0, "vertex_from": "0", "vertex_to": "628", - "timestamp": "2025-11-27T01:23:29.555783245Z" + "timestamp": "2025-11-27T04:03:11.295632-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1756445, - "rtt_ms": 1.756445, + "operation": "add_vertex", + "rtt_ns": 1180708, + "rtt_ms": 1.180708, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:29.555803385Z" + "vertex_from": "574", + "timestamp": "2025-11-27T04:03:11.295802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556885, - "rtt_ms": 1.556885, + "rtt_ns": 1813458, + "rtt_ms": 1.813458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:29.556303623Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:11.296116-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1657435, - "rtt_ms": 1.657435, + "rtt_ns": 1521667, + "rtt_ms": 1.521667, "checkpoint": 0, "vertex_from": "242", - "timestamp": "2025-11-27T01:23:29.556470423Z" + "timestamp": "2025-11-27T04:03:11.2962-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1691735, - "rtt_ms": 1.691735, - "checkpoint": 0, - "vertex_from": "574", - "timestamp": "2025-11-27T01:23:29.556479123Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1632015, - "rtt_ms": 1.632015, - "checkpoint": 0, - "vertex_from": "625", - "timestamp": "2025-11-27T01:23:29.556480523Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1642585, - "rtt_ms": 1.642585, + "rtt_ns": 1328667, + "rtt_ms": 1.328667, "checkpoint": 0, "vertex_from": "818", - "timestamp": "2025-11-27T01:23:29.556485183Z" + "timestamp": "2025-11-27T04:03:11.296307-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1656115, - "rtt_ms": 1.656115, + "operation": "add_edge", + "rtt_ns": 2092875, + "rtt_ms": 2.092875, "checkpoint": 0, - "vertex_from": "602", - "timestamp": "2025-11-27T01:23:29.556486423Z" + "vertex_from": "0", + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:11.296908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079627, - "rtt_ms": 1.079627, + "rtt_ns": 2578875, + "rtt_ms": 2.578875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "618", - "timestamp": "2025-11-27T01:23:29.556843902Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:11.296997-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1126686, - "rtt_ms": 1.126686, + "operation": "add_edge", + "rtt_ns": 2035166, + "rtt_ms": 2.035166, "checkpoint": 0, - "vertex_from": "15", - "timestamp": "2025-11-27T01:23:29.556935911Z" + "vertex_from": "0", + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:11.297188-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1196416, - "rtt_ms": 1.196416, + "rtt_ns": 2985042, + "rtt_ms": 2.985042, "checkpoint": 0, - "vertex_from": "852", - "timestamp": "2025-11-27T01:23:29.556956451Z" + "vertex_from": "602", + "timestamp": "2025-11-27T04:03:11.297728-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1194736, - "rtt_ms": 1.194736, + "rtt_ns": 885375, + "rtt_ms": 0.885375, "checkpoint": 0, "vertex_from": "683", - "timestamp": "2025-11-27T01:23:29.556983811Z" + "timestamp": "2025-11-27T04:03:11.297795-08:00" }, { "operation": "add_vertex", - "rtt_ns": 704618, - "rtt_ms": 0.704618, + "rtt_ns": 3228250, + "rtt_ms": 3.22825, "checkpoint": 0, - "vertex_from": "526", - "timestamp": "2025-11-27T01:23:29.557011331Z" + "vertex_from": "618", + "timestamp": "2025-11-27T04:03:11.297817-08:00" }, { "operation": "add_edge", - "rtt_ns": 942457, - "rtt_ms": 0.942457, + "rtt_ns": 1655000, + "rtt_ms": 1.655, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "242", - "timestamp": "2025-11-27T01:23:29.55741308Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:03:11.297962-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1133556, - "rtt_ms": 1.133556, + "operation": "add_vertex", + "rtt_ns": 2525458, + "rtt_ms": 2.525458, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "602", - "timestamp": "2025-11-27T01:23:29.557621049Z" + "vertex_from": "625", + "timestamp": "2025-11-27T04:03:11.298159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188386, - "rtt_ms": 1.188386, + "rtt_ns": 2373250, + "rtt_ms": 2.37325, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "625", - "timestamp": "2025-11-27T01:23:29.557669529Z" + "vertex_to": "574", + "timestamp": "2025-11-27T04:03:11.298175-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1278366, - "rtt_ms": 1.278366, + "operation": "add_vertex", + "rtt_ns": 1187583, + "rtt_ms": 1.187583, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:29.557764349Z" + "vertex_from": "526", + "timestamp": "2025-11-27T04:03:11.298376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309966, - "rtt_ms": 1.309966, + "rtt_ns": 2260083, + "rtt_ms": 2.260083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "574", - "timestamp": "2025-11-27T01:23:29.557789969Z" + "vertex_to": "242", + "timestamp": "2025-11-27T04:03:11.298461-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1461055, - "rtt_ms": 1.461055, + "rtt_ns": 1542917, + "rtt_ms": 1.542917, "checkpoint": 0, - "vertex_from": "186", - "timestamp": "2025-11-27T01:23:29.558308827Z" + "vertex_from": "15", + "timestamp": "2025-11-27T04:03:11.298543-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1448876, - "rtt_ms": 1.448876, + "operation": "add_vertex", + "rtt_ns": 2440416, + "rtt_ms": 2.440416, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "683", - "timestamp": "2025-11-27T01:23:29.558433167Z" + "vertex_from": "852", + "timestamp": "2025-11-27T04:03:11.298558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522546, - "rtt_ms": 1.522546, + "rtt_ns": 1207958, + "rtt_ms": 1.207958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "15", - "timestamp": "2025-11-27T01:23:29.558459077Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:03:11.299025-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1175197, - "rtt_ms": 1.175197, + "rtt_ns": 1185083, + "rtt_ms": 1.185083, "checkpoint": 0, - "vertex_from": "233", - "timestamp": "2025-11-27T01:23:29.558801506Z" + "vertex_from": "186", + "timestamp": "2025-11-27T04:03:11.299148-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1413716, - "rtt_ms": 1.413716, + "operation": "add_edge", + "rtt_ns": 1456208, + "rtt_ms": 1.456208, "checkpoint": 0, - "vertex_from": "331", - "timestamp": "2025-11-27T01:23:29.558831026Z" + "vertex_from": "0", + "vertex_to": "683", + "timestamp": "2025-11-27T04:03:11.299251-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1245566, - "rtt_ms": 1.245566, + "operation": "add_edge", + "rtt_ns": 1799708, + "rtt_ms": 1.799708, "checkpoint": 0, - "vertex_from": "842", - "timestamp": "2025-11-27T01:23:29.559012565Z" + "vertex_from": "0", + "vertex_to": "602", + "timestamp": "2025-11-27T04:03:11.299528-08:00" }, { "operation": "add_vertex", - "rtt_ns": 678298, - "rtt_ms": 0.678298, + "rtt_ns": 1465125, + "rtt_ms": 1.465125, "checkpoint": 0, - "vertex_from": "976", - "timestamp": "2025-11-27T01:23:29.559114485Z" + "vertex_from": "331", + "timestamp": "2025-11-27T04:03:11.299641-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1594417, + "rtt_ms": 1.594417, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "625", + "timestamp": "2025-11-27T04:03:11.299754-08:00" }, { "operation": "add_vertex", - "rtt_ns": 671398, - "rtt_ms": 0.671398, + "rtt_ns": 1579958, + "rtt_ms": 1.579958, "checkpoint": 0, - "vertex_from": "697", - "timestamp": "2025-11-27T01:23:29.559133495Z" + "vertex_from": "233", + "timestamp": "2025-11-27T04:03:11.300041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2404023, - "rtt_ms": 2.404023, + "rtt_ns": 1622500, + "rtt_ms": 1.6225, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:29.559360914Z" + "vertex_to": "15", + "timestamp": "2025-11-27T04:03:11.300165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2561512, - "rtt_ms": 2.561512, + "rtt_ns": 2220750, + "rtt_ms": 2.22075, "checkpoint": 0, "vertex_from": "0", "vertex_to": "526", - "timestamp": "2025-11-27T01:23:29.559573483Z" + "timestamp": "2025-11-27T04:03:11.300597-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 737878, - "rtt_ms": 0.737878, + "operation": "add_edge", + "rtt_ns": 2179917, + "rtt_ms": 2.179917, "checkpoint": 0, - "vertex_from": "433", - "timestamp": "2025-11-27T01:23:29.560100962Z" + "vertex_from": "0", + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:11.300738-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2683352, - "rtt_ms": 2.683352, + "rtt_ns": 2073125, + "rtt_ms": 2.073125, "checkpoint": 0, "vertex_from": "804", - "timestamp": "2025-11-27T01:23:29.560357581Z" + "timestamp": "2025-11-27T04:03:11.3011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121864, - "rtt_ms": 2.121864, + "rtt_ns": 2267917, + "rtt_ms": 2.267917, "checkpoint": 0, "vertex_from": "0", "vertex_to": "186", - "timestamp": "2025-11-27T01:23:29.560431131Z" + "timestamp": "2025-11-27T04:03:11.301417-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2732212, - "rtt_ms": 2.732212, + "rtt_ns": 1671542, + "rtt_ms": 1.671542, "checkpoint": 0, - "vertex_from": "900", - "timestamp": "2025-11-27T01:23:29.560525821Z" + "vertex_from": "976", + "timestamp": "2025-11-27T04:03:11.301428-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1753945, - "rtt_ms": 1.753945, + "operation": "add_vertex", + "rtt_ns": 2298959, + "rtt_ms": 2.298959, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "331", - "timestamp": "2025-11-27T01:23:29.560585471Z" + "vertex_from": "842", + "timestamp": "2025-11-27T04:03:11.301551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862254, - "rtt_ms": 1.862254, + "rtt_ns": 1540833, + "rtt_ms": 1.540833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "233", - "timestamp": "2025-11-27T01:23:29.56066451Z" + "timestamp": "2025-11-27T04:03:11.301582-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1667165, - "rtt_ms": 1.667165, + "operation": "add_vertex", + "rtt_ns": 2123959, + "rtt_ms": 2.123959, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "976", - "timestamp": "2025-11-27T01:23:29.56078214Z" + "vertex_from": "900", + "timestamp": "2025-11-27T04:03:11.301652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774955, - "rtt_ms": 1.774955, + "rtt_ns": 2076208, + "rtt_ms": 2.076208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "842", - "timestamp": "2025-11-27T01:23:29.5607886Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:03:11.301718-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1657185, - "rtt_ms": 1.657185, + "operation": "add_vertex", + "rtt_ns": 2078333, + "rtt_ms": 2.078333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "697", - "timestamp": "2025-11-27T01:23:29.56079119Z" + "vertex_from": "697", + "timestamp": "2025-11-27T04:03:11.302246-08:00" }, { - "operation": "add_edge", - "rtt_ns": 699948, - "rtt_ms": 0.699948, + "operation": "add_vertex", + "rtt_ns": 1584625, + "rtt_ms": 1.584625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "433", - "timestamp": "2025-11-27T01:23:29.56080142Z" + "vertex_from": "744", + "timestamp": "2025-11-27T04:03:11.302325-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1011907, - "rtt_ms": 1.011907, + "operation": "add_vertex", + "rtt_ns": 1850417, + "rtt_ms": 1.850417, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:29.561538258Z" + "vertex_from": "433", + "timestamp": "2025-11-27T04:03:11.30245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186127, - "rtt_ms": 1.186127, + "rtt_ns": 1599917, + "rtt_ms": 1.599917, "checkpoint": 0, "vertex_from": "0", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:29.561544278Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 958917, - "rtt_ms": 0.958917, - "checkpoint": 0, - "vertex_from": "613", - "timestamp": "2025-11-27T01:23:29.561548538Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 764268, - "rtt_ms": 0.764268, - "checkpoint": 0, - "vertex_from": "1008", - "timestamp": "2025-11-27T01:23:29.561550568Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2003275, - "rtt_ms": 2.003275, - "checkpoint": 0, - "vertex_from": "744", - "timestamp": "2025-11-27T01:23:29.561579218Z" + "timestamp": "2025-11-27T04:03:11.3027-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1255467, - "rtt_ms": 1.255467, + "rtt_ns": 1671792, + "rtt_ms": 1.671792, "checkpoint": 0, "vertex_from": "653", - "timestamp": "2025-11-27T01:23:29.561689778Z" + "timestamp": "2025-11-27T04:03:11.303092-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1054237, - "rtt_ms": 1.054237, + "rtt_ns": 1427083, + "rtt_ms": 1.427083, "checkpoint": 0, "vertex_from": "897", - "timestamp": "2025-11-27T01:23:29.561722077Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1685955, - "rtt_ms": 1.685955, - "checkpoint": 0, - "vertex_from": "46", - "timestamp": "2025-11-27T01:23:29.562491205Z" + "timestamp": "2025-11-27T04:03:11.303145-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1698145, - "rtt_ms": 1.698145, + "rtt_ns": 1809500, + "rtt_ms": 1.8095, "checkpoint": 0, - "vertex_from": "473", - "timestamp": "2025-11-27T01:23:29.562492425Z" + "vertex_from": "613", + "timestamp": "2025-11-27T04:03:11.303393-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1726715, - "rtt_ms": 1.726715, + "operation": "add_edge", + "rtt_ns": 2222916, + "rtt_ms": 2.222916, "checkpoint": 0, - "vertex_from": "598", - "timestamp": "2025-11-27T01:23:29.562519515Z" + "vertex_from": "0", + "vertex_to": "976", + "timestamp": "2025-11-27T04:03:11.303651-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1007267, - "rtt_ms": 1.007267, + "rtt_ns": 1249583, + "rtt_ms": 1.249583, "checkpoint": 0, - "vertex_from": "705", - "timestamp": "2025-11-27T01:23:29.562549635Z" + "vertex_from": "1008", + "timestamp": "2025-11-27T04:03:11.303955-08:00" }, { "operation": "add_edge", - "rtt_ns": 883967, - "rtt_ms": 0.883967, + "rtt_ns": 2939917, + "rtt_ms": 2.939917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "653", - "timestamp": "2025-11-27T01:23:29.562574235Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:03:11.304492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053107, - "rtt_ms": 1.053107, + "rtt_ns": 2844875, + "rtt_ms": 2.844875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:29.562602525Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:11.304498-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1087367, - "rtt_ms": 1.087367, + "operation": "add_edge", + "rtt_ns": 2187958, + "rtt_ms": 2.187958, "checkpoint": 0, - "vertex_from": "313", - "timestamp": "2025-11-27T01:23:29.562634655Z" + "vertex_from": "0", + "vertex_to": "744", + "timestamp": "2025-11-27T04:03:11.304513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072367, - "rtt_ms": 1.072367, + "rtt_ns": 2338500, + "rtt_ms": 2.3385, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:29.562652165Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:03:11.30479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103157, - "rtt_ms": 1.103157, + "rtt_ns": 2569167, + "rtt_ms": 2.569167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "1008", - "timestamp": "2025-11-27T01:23:29.562654445Z" + "vertex_to": "697", + "timestamp": "2025-11-27T04:03:11.304815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079617, - "rtt_ms": 1.079617, + "rtt_ns": 1426750, + "rtt_ms": 1.42675, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:29.562802284Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:11.30482-08:00" }, { "operation": "add_edge", - "rtt_ns": 862258, - "rtt_ms": 0.862258, + "rtt_ns": 1674500, + "rtt_ms": 1.6745, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:29.563412663Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:11.30482-08:00" }, { "operation": "add_edge", - "rtt_ns": 947488, - "rtt_ms": 0.947488, + "rtt_ns": 1794666, + "rtt_ms": 1.794666, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:29.563467423Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:03:11.304887-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1716135, - "rtt_ms": 1.716135, + "rtt_ns": 1311125, + "rtt_ms": 1.311125, "checkpoint": 0, - "vertex_from": "203", - "timestamp": "2025-11-27T01:23:29.56429331Z" + "vertex_from": "598", + "timestamp": "2025-11-27T04:03:11.304965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807915, - "rtt_ms": 1.807915, + "rtt_ns": 2561041, + "rtt_ms": 2.561041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "473", - "timestamp": "2025-11-27T01:23:29.56430114Z" + "vertex_to": "1008", + "timestamp": "2025-11-27T04:03:11.306517-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1809245, - "rtt_ms": 1.809245, + "operation": "add_vertex", + "rtt_ns": 2303500, + "rtt_ms": 2.3035, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "46", - "timestamp": "2025-11-27T01:23:29.56430129Z" + "vertex_from": "705", + "timestamp": "2025-11-27T04:03:11.306819-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1649935, - "rtt_ms": 1.649935, + "rtt_ns": 2828834, + "rtt_ms": 2.828834, "checkpoint": 0, - "vertex_from": "472", - "timestamp": "2025-11-27T01:23:29.56430573Z" + "vertex_from": "46", + "timestamp": "2025-11-27T04:03:11.307329-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1521226, - "rtt_ms": 1.521226, + "operation": "add_edge", + "rtt_ns": 2449583, + "rtt_ms": 2.449583, "checkpoint": 0, - "vertex_from": "817", - "timestamp": "2025-11-27T01:23:29.564326Z" + "vertex_from": "0", + "vertex_to": "598", + "timestamp": "2025-11-27T04:03:11.307415-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1733325, - "rtt_ms": 1.733325, + "rtt_ns": 2603000, + "rtt_ms": 2.603, "checkpoint": 0, "vertex_from": "805", - "timestamp": "2025-11-27T01:23:29.5643383Z" + "timestamp": "2025-11-27T04:03:11.307425-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1993534, - "rtt_ms": 1.993534, - "checkpoint": 0, - "vertex_from": "752", - "timestamp": "2025-11-27T01:23:29.564652659Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2048234, - "rtt_ms": 2.048234, + "rtt_ns": 2700792, + "rtt_ms": 2.700792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "313", - "timestamp": "2025-11-27T01:23:29.564683309Z" + "vertex_from": "472", + "timestamp": "2025-11-27T04:03:11.307522-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1600845, - "rtt_ms": 1.600845, + "rtt_ns": 2721625, + "rtt_ms": 2.721625, "checkpoint": 0, - "vertex_from": "209", - "timestamp": "2025-11-27T01:23:29.565016678Z" + "vertex_from": "203", + "timestamp": "2025-11-27T04:03:11.307538-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1551075, - "rtt_ms": 1.551075, + "rtt_ns": 2746292, + "rtt_ms": 2.746292, "checkpoint": 0, - "vertex_from": "187", - "timestamp": "2025-11-27T01:23:29.565025498Z" + "vertex_from": "313", + "timestamp": "2025-11-27T04:03:11.307538-08:00" }, { "operation": "add_vertex", - "rtt_ns": 727008, - "rtt_ms": 0.727008, + "rtt_ns": 3107208, + "rtt_ms": 3.107208, "checkpoint": 0, - "vertex_from": "557", - "timestamp": "2025-11-27T01:23:29.565031798Z" + "vertex_from": "473", + "timestamp": "2025-11-27T04:03:11.3076-08:00" }, { "operation": "add_vertex", - "rtt_ns": 851388, - "rtt_ms": 0.851388, + "rtt_ns": 2970541, + "rtt_ms": 2.970541, "checkpoint": 0, - "vertex_from": "666", - "timestamp": "2025-11-27T01:23:29.565158358Z" + "vertex_from": "752", + "timestamp": "2025-11-27T04:03:11.307859-08:00" }, { "operation": "add_edge", - "rtt_ns": 909607, - "rtt_ms": 0.909607, + "rtt_ns": 1636667, + "rtt_ms": 1.636667, "checkpoint": 0, "vertex_from": "0", "vertex_to": "472", - "timestamp": "2025-11-27T01:23:29.565216087Z" + "timestamp": "2025-11-27T04:03:11.309159-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2762166, + "rtt_ms": 2.762166, + "checkpoint": 0, + "vertex_from": "817", + "timestamp": "2025-11-27T04:03:11.30928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009457, - "rtt_ms": 1.009457, + "rtt_ns": 1865833, + "rtt_ms": 1.865833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "203", - "timestamp": "2025-11-27T01:23:29.565303167Z" + "timestamp": "2025-11-27T04:03:11.309404-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2033708, + "rtt_ms": 2.033708, + "checkpoint": 0, + "vertex_from": "209", + "timestamp": "2025-11-27T04:03:11.30945-08:00" }, { "operation": "add_edge", - "rtt_ns": 986827, - "rtt_ms": 0.986827, + "rtt_ns": 1979375, + "rtt_ms": 1.979375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "817", - "timestamp": "2025-11-27T01:23:29.565313207Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:03:11.309518-08:00" }, { "operation": "add_edge", - "rtt_ns": 992967, - "rtt_ms": 0.992967, + "rtt_ns": 2758791, + "rtt_ms": 2.758791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "805", - "timestamp": "2025-11-27T01:23:29.565331697Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:11.309578-08:00" }, { "operation": "add_edge", - "rtt_ns": 779788, - "rtt_ms": 0.779788, + "rtt_ns": 2259667, + "rtt_ms": 2.259667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:29.565433157Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:03:11.309588-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 771518, - "rtt_ms": 0.771518, + "operation": "add_edge", + "rtt_ns": 2301208, + "rtt_ms": 2.301208, "checkpoint": 0, - "vertex_from": "115", - "timestamp": "2025-11-27T01:23:29.565484047Z" + "vertex_from": "0", + "vertex_to": "805", + "timestamp": "2025-11-27T04:03:11.309727-08:00" }, { "operation": "add_edge", - "rtt_ns": 850987, - "rtt_ms": 0.850987, + "rtt_ns": 2135916, + "rtt_ms": 2.135916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "187", - "timestamp": "2025-11-27T01:23:29.565877335Z" + "vertex_to": "473", + "timestamp": "2025-11-27T04:03:11.309736-08:00" }, { "operation": "add_vertex", - "rtt_ns": 658378, - "rtt_ms": 0.658378, + "rtt_ns": 1192541, + "rtt_ms": 1.192541, "checkpoint": 0, - "vertex_from": "111", - "timestamp": "2025-11-27T01:23:29.565880045Z" + "vertex_from": "187", + "timestamp": "2025-11-27T04:03:11.310354-08:00" }, { - "operation": "add_edge", - "rtt_ns": 887057, - "rtt_ms": 0.887057, + "operation": "add_vertex", + "rtt_ns": 1023667, + "rtt_ms": 1.023667, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:29.565904385Z" + "vertex_from": "557", + "timestamp": "2025-11-27T04:03:11.31043-08:00" }, { "operation": "add_edge", - "rtt_ns": 885557, - "rtt_ms": 0.885557, + "rtt_ns": 1778750, + "rtt_ms": 1.77875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:29.565918065Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:03:11.311059-08:00" }, { "operation": "add_edge", - "rtt_ns": 769577, - "rtt_ms": 0.769577, + "rtt_ns": 1682833, + "rtt_ms": 1.682833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "666", - "timestamp": "2025-11-27T01:23:29.565928515Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:11.311134-08:00" }, { "operation": "add_vertex", - "rtt_ns": 586118, - "rtt_ms": 0.586118, + "rtt_ns": 1708708, + "rtt_ms": 1.708708, "checkpoint": 0, - "vertex_from": "899", - "timestamp": "2025-11-27T01:23:29.566025695Z" + "vertex_from": "291", + "timestamp": "2025-11-27T04:03:11.311439-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1141937, - "rtt_ms": 1.141937, + "rtt_ns": 1819584, + "rtt_ms": 1.819584, "checkpoint": 0, - "vertex_from": "558", - "timestamp": "2025-11-27T01:23:29.566477074Z" + "vertex_from": "970", + "timestamp": "2025-11-27T04:03:11.311557-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1206736, - "rtt_ms": 1.206736, + "rtt_ns": 2126417, + "rtt_ms": 2.126417, "checkpoint": 0, - "vertex_from": "291", - "timestamp": "2025-11-27T01:23:29.566514623Z" + "vertex_from": "666", + "timestamp": "2025-11-27T04:03:11.311658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102106, - "rtt_ms": 1.102106, + "rtt_ns": 4316416, + "rtt_ms": 4.316416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "115", - "timestamp": "2025-11-27T01:23:29.566586633Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:03:11.312176-08:00" }, { "operation": "add_vertex", - "rtt_ns": 798218, - "rtt_ms": 0.798218, + "rtt_ns": 3331291, + "rtt_ms": 3.331291, "checkpoint": 0, - "vertex_from": "410", - "timestamp": "2025-11-27T01:23:29.566678563Z" + "vertex_from": "115", + "timestamp": "2025-11-27T04:03:11.31291-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1551935, - "rtt_ms": 1.551935, + "operation": "add_edge", + "rtt_ns": 2662667, + "rtt_ms": 2.662667, "checkpoint": 0, - "vertex_from": "970", - "timestamp": "2025-11-27T01:23:29.566867762Z" + "vertex_from": "0", + "vertex_to": "187", + "timestamp": "2025-11-27T04:03:11.313017-08:00" }, { "operation": "add_vertex", - "rtt_ns": 838468, - "rtt_ms": 0.838468, + "rtt_ns": 2087208, + "rtt_ms": 2.087208, "checkpoint": 0, - "vertex_from": "872", - "timestamp": "2025-11-27T01:23:29.567427951Z" + "vertex_from": "558", + "timestamp": "2025-11-27T04:03:11.313147-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1569466, - "rtt_ms": 1.569466, + "rtt_ns": 3577625, + "rtt_ms": 3.577625, "checkpoint": 0, - "vertex_from": "163", - "timestamp": "2025-11-27T01:23:29.567491171Z" + "vertex_from": "111", + "timestamp": "2025-11-27T04:03:11.313167-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1573646, - "rtt_ms": 1.573646, + "operation": "add_edge", + "rtt_ns": 1628208, + "rtt_ms": 1.628208, "checkpoint": 0, - "vertex_from": "87", - "timestamp": "2025-11-27T01:23:29.567504971Z" + "vertex_from": "0", + "vertex_to": "666", + "timestamp": "2025-11-27T04:03:11.313287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471713, - "rtt_ms": 2.471713, + "rtt_ns": 1958625, + "rtt_ms": 1.958625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "111", - "timestamp": "2025-11-27T01:23:29.568352818Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:11.313399-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2460143, - "rtt_ms": 2.460143, + "rtt_ns": 1232166, + "rtt_ms": 1.232166, "checkpoint": 0, - "vertex_from": "534", - "timestamp": "2025-11-27T01:23:29.568373418Z" + "vertex_from": "410", + "timestamp": "2025-11-27T04:03:11.313409-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030094, - "rtt_ms": 2.030094, + "rtt_ns": 2981583, + "rtt_ms": 2.981583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:29.568545557Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:03:11.313412-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119914, - "rtt_ms": 2.119914, + "rtt_ns": 1880167, + "rtt_ms": 1.880167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:29.568798937Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:03:11.313438-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2775842, - "rtt_ms": 2.775842, + "operation": "add_vertex", + "rtt_ns": 2364792, + "rtt_ms": 2.364792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:29.568802367Z" + "vertex_from": "899", + "timestamp": "2025-11-27T04:03:11.313508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1946625, - "rtt_ms": 1.946625, + "rtt_ns": 1053084, + "rtt_ms": 1.053084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "970", - "timestamp": "2025-11-27T01:23:29.568814847Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:03:11.313964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324166, - "rtt_ms": 1.324166, + "rtt_ns": 1117209, + "rtt_ms": 1.117209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:29.568815917Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:11.314626-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1389006, - "rtt_ms": 1.389006, + "operation": "add_vertex", + "rtt_ns": 1774917, + "rtt_ms": 1.774917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:29.568817467Z" + "vertex_from": "534", + "timestamp": "2025-11-27T04:03:11.314793-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1327696, - "rtt_ms": 1.327696, + "operation": "add_vertex", + "rtt_ns": 1736917, + "rtt_ms": 1.736917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "87", - "timestamp": "2025-11-27T01:23:29.568833097Z" + "vertex_from": "227", + "timestamp": "2025-11-27T04:03:11.315176-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2368573, - "rtt_ms": 2.368573, + "operation": "add_vertex", + "rtt_ns": 1241041, + "rtt_ms": 1.241041, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "558", - "timestamp": "2025-11-27T01:23:29.568846087Z" + "vertex_from": "629", + "timestamp": "2025-11-27T04:03:11.315206-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1975750, + "rtt_ms": 1.97575, + "checkpoint": 0, + "vertex_from": "163", + "timestamp": "2025-11-27T04:03:11.315264-08:00" }, { "operation": "add_edge", - "rtt_ns": 780188, - "rtt_ms": 0.780188, + "rtt_ns": 2143000, + "rtt_ms": 2.143, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:29.569154606Z" + "vertex_to": "111", + "timestamp": "2025-11-27T04:03:11.31531-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 812658, - "rtt_ms": 0.812658, + "operation": "add_edge", + "rtt_ns": 1983417, + "rtt_ms": 1.983417, "checkpoint": 0, - "vertex_from": "227", - "timestamp": "2025-11-27T01:23:29.569170926Z" + "vertex_from": "0", + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:11.315393-08:00" }, { "operation": "add_vertex", - "rtt_ns": 691788, - "rtt_ms": 0.691788, + "rtt_ns": 1989084, + "rtt_ms": 1.989084, "checkpoint": 0, - "vertex_from": "629", - "timestamp": "2025-11-27T01:23:29.569267185Z" + "vertex_from": "872", + "timestamp": "2025-11-27T04:03:11.315402-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1005727, - "rtt_ms": 1.005727, + "operation": "add_edge", + "rtt_ns": 2527875, + "rtt_ms": 2.527875, "checkpoint": 0, - "vertex_from": "593", - "timestamp": "2025-11-27T01:23:29.569844454Z" + "vertex_from": "0", + "vertex_to": "558", + "timestamp": "2025-11-27T04:03:11.315676-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1041096, - "rtt_ms": 1.041096, + "rtt_ns": 2399583, + "rtt_ms": 2.399583, "checkpoint": 0, - "vertex_from": "859", - "timestamp": "2025-11-27T01:23:29.569861723Z" + "vertex_from": "87", + "timestamp": "2025-11-27T04:03:11.315801-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1018276, - "rtt_ms": 1.018276, + "rtt_ns": 1672959, + "rtt_ms": 1.672959, "checkpoint": 0, - "vertex_from": "603", - "timestamp": "2025-11-27T01:23:29.569870443Z" + "vertex_from": "108", + "timestamp": "2025-11-27T04:03:11.3163-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1075246, - "rtt_ms": 1.075246, + "rtt_ns": 1006875, + "rtt_ms": 1.006875, "checkpoint": 0, "vertex_from": "816", - "timestamp": "2025-11-27T01:23:29.569882013Z" + "timestamp": "2025-11-27T04:03:11.316318-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1071216, - "rtt_ms": 1.071216, + "operation": "add_edge", + "rtt_ns": 1840833, + "rtt_ms": 1.840833, "checkpoint": 0, - "vertex_from": "674", - "timestamp": "2025-11-27T01:23:29.569892853Z" + "vertex_from": "0", + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:11.316634-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1077686, - "rtt_ms": 1.077686, + "rtt_ns": 1577750, + "rtt_ms": 1.57775, "checkpoint": 0, "vertex_from": "737", - "timestamp": "2025-11-27T01:23:29.569896993Z" + "timestamp": "2025-11-27T04:03:11.316974-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1723525, - "rtt_ms": 1.723525, + "operation": "add_edge", + "rtt_ns": 1793209, + "rtt_ms": 1.793209, "checkpoint": 0, - "vertex_from": "108", - "timestamp": "2025-11-27T01:23:29.570528291Z" + "vertex_from": "0", + "vertex_to": "629", + "timestamp": "2025-11-27T04:03:11.317-08:00" }, { "operation": "add_edge", - "rtt_ns": 2654882, - "rtt_ms": 2.654882, + "rtt_ns": 1752666, + "rtt_ms": 1.752666, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "629", - "timestamp": "2025-11-27T01:23:29.571922877Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:11.317017-08:00" }, { "operation": "add_edge", - "rtt_ns": 3176450, - "rtt_ms": 3.17645, + "rtt_ns": 1953542, + "rtt_ms": 1.953542, "checkpoint": 0, "vertex_from": "0", "vertex_to": "227", - "timestamp": "2025-11-27T01:23:29.572347736Z" + "timestamp": "2025-11-27T04:03:11.31713-08:00" }, { "operation": "add_edge", - "rtt_ns": 2780931, - "rtt_ms": 2.780931, + "rtt_ns": 1813625, + "rtt_ms": 1.813625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:29.572626015Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:11.317216-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2154884, - "rtt_ms": 2.154884, + "operation": "add_vertex", + "rtt_ns": 1555208, + "rtt_ms": 1.555208, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:29.572683685Z" + "vertex_from": "859", + "timestamp": "2025-11-27T04:03:11.317232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2866742, - "rtt_ms": 2.866742, + "rtt_ns": 1663584, + "rtt_ms": 1.663584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:29.572764175Z" + "vertex_to": "87", + "timestamp": "2025-11-27T04:03:11.317465-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3624889, - "rtt_ms": 3.624889, + "rtt_ns": 1172583, + "rtt_ms": 1.172583, "checkpoint": 0, - "vertex_from": "362", - "timestamp": "2025-11-27T01:23:29.572785605Z" + "vertex_from": "205", + "timestamp": "2025-11-27T04:03:11.318391-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3013431, - "rtt_ms": 3.013431, + "operation": "add_vertex", + "rtt_ns": 1878334, + "rtt_ms": 1.878334, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "603", - "timestamp": "2025-11-27T01:23:29.572884404Z" + "vertex_from": "593", + "timestamp": "2025-11-27T04:03:11.318879-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3062331, - "rtt_ms": 3.062331, + "operation": "add_vertex", + "rtt_ns": 1905166, + "rtt_ms": 1.905166, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:29.572944774Z" + "vertex_from": "603", + "timestamp": "2025-11-27T04:03:11.318925-08:00" }, { "operation": "add_vertex", - "rtt_ns": 610618, - "rtt_ms": 0.610618, + "rtt_ns": 2446625, + "rtt_ms": 2.446625, "checkpoint": 0, - "vertex_from": "103", - "timestamp": "2025-11-27T01:23:29.572961554Z" + "vertex_from": "674", + "timestamp": "2025-11-27T04:03:11.319082-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1049717, - "rtt_ms": 1.049717, + "rtt_ns": 2129666, + "rtt_ms": 2.129666, "checkpoint": 0, - "vertex_from": "205", - "timestamp": "2025-11-27T01:23:29.572977404Z" + "vertex_from": "362", + "timestamp": "2025-11-27T04:03:11.319261-08:00" }, { "operation": "add_edge", - "rtt_ns": 3084831, - "rtt_ms": 3.084831, + "rtt_ns": 2397542, + "rtt_ms": 2.397542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:29.572978254Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:03:11.319372-08:00" }, { "operation": "add_edge", - "rtt_ns": 3124131, - "rtt_ms": 3.124131, + "rtt_ns": 3346417, + "rtt_ms": 3.346417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "859", - "timestamp": "2025-11-27T01:23:29.572986434Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:11.319646-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 657558, - "rtt_ms": 0.657558, + "operation": "add_edge", + "rtt_ns": 2427875, + "rtt_ms": 2.427875, "checkpoint": 0, - "vertex_from": "69", - "timestamp": "2025-11-27T01:23:29.573286293Z" + "vertex_from": "0", + "vertex_to": "859", + "timestamp": "2025-11-27T04:03:11.31966-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 766478, - "rtt_ms": 0.766478, + "operation": "add_edge", + "rtt_ns": 3414750, + "rtt_ms": 3.41475, "checkpoint": 0, - "vertex_from": "465", - "timestamp": "2025-11-27T01:23:29.573454583Z" + "vertex_from": "0", + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:11.319733-08:00" }, { "operation": "add_vertex", - "rtt_ns": 707138, - "rtt_ms": 0.707138, + "rtt_ns": 707917, + "rtt_ms": 0.707917, "checkpoint": 0, - "vertex_from": "347", - "timestamp": "2025-11-27T01:23:29.573475633Z" + "vertex_from": "465", + "timestamp": "2025-11-27T04:03:11.320355-08:00" }, { "operation": "add_vertex", - "rtt_ns": 706908, - "rtt_ms": 0.706908, + "rtt_ns": 1128583, + "rtt_ms": 1.128583, "checkpoint": 0, - "vertex_from": "38", - "timestamp": "2025-11-27T01:23:29.573654042Z" + "vertex_from": "69", + "timestamp": "2025-11-27T04:03:11.320501-08:00" }, { "operation": "add_vertex", - "rtt_ns": 695018, - "rtt_ms": 0.695018, + "rtt_ns": 1436917, + "rtt_ms": 1.436917, "checkpoint": 0, - "vertex_from": "930", - "timestamp": "2025-11-27T01:23:29.573676022Z" + "vertex_from": "347", + "timestamp": "2025-11-27T04:03:11.321098-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1225767, - "rtt_ms": 1.225767, + "rtt_ns": 1499584, + "rtt_ms": 1.499584, "checkpoint": 0, "vertex_from": "338", - "timestamp": "2025-11-27T01:23:29.574114281Z" + "timestamp": "2025-11-27T04:03:11.321236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412376, - "rtt_ms": 1.412376, + "rtt_ns": 2453083, + "rtt_ms": 2.453083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "362", - "timestamp": "2025-11-27T01:23:29.574198441Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:11.321332-08:00" }, { "operation": "add_edge", - "rtt_ns": 962137, - "rtt_ms": 0.962137, + "rtt_ns": 2279542, + "rtt_ms": 2.279542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:29.57424886Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:11.321362-08:00" }, { "operation": "add_edge", - "rtt_ns": 813627, - "rtt_ms": 0.813627, + "rtt_ns": 2452666, + "rtt_ms": 2.452666, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:29.57426895Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:03:11.321378-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1284226, - "rtt_ms": 1.284226, + "rtt_ns": 3991375, + "rtt_ms": 3.991375, "checkpoint": 0, - "vertex_from": "807", - "timestamp": "2025-11-27T01:23:29.5742731Z" + "vertex_from": "103", + "timestamp": "2025-11-27T04:03:11.321459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322456, - "rtt_ms": 1.322456, + "rtt_ns": 3079708, + "rtt_ms": 3.079708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "103", - "timestamp": "2025-11-27T01:23:29.57428469Z" + "vertex_to": "205", + "timestamp": "2025-11-27T04:03:11.321472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320526, - "rtt_ms": 1.320526, + "rtt_ns": 2576834, + "rtt_ms": 2.576834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "205", - "timestamp": "2025-11-27T01:23:29.57429833Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:03:11.321838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551755, - "rtt_ms": 1.551755, + "rtt_ns": 1347875, + "rtt_ms": 1.347875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "347", - "timestamp": "2025-11-27T01:23:29.575028248Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:11.32185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370226, - "rtt_ms": 1.370226, + "rtt_ns": 1697458, + "rtt_ms": 1.697458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:29.575046678Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:11.322053-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1406246, - "rtt_ms": 1.406246, + "operation": "add_vertex", + "rtt_ns": 1159250, + "rtt_ms": 1.15925, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:29.575060928Z" + "vertex_from": "807", + "timestamp": "2025-11-27T04:03:11.322538-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1296125, + "rtt_ms": 1.296125, + "checkpoint": 0, + "vertex_from": "930", + "timestamp": "2025-11-27T04:03:11.322659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041957, - "rtt_ms": 1.041957, + "rtt_ns": 1464250, + "rtt_ms": 1.46425, "checkpoint": 0, "vertex_from": "0", "vertex_to": "338", - "timestamp": "2025-11-27T01:23:29.575157038Z" + "timestamp": "2025-11-27T04:03:11.3227-08:00" }, { "operation": "add_vertex", - "rtt_ns": 931598, - "rtt_ms": 0.931598, + "rtt_ns": 1412833, + "rtt_ms": 1.412833, "checkpoint": 0, - "vertex_from": "554", - "timestamp": "2025-11-27T01:23:29.575183478Z" + "vertex_from": "964", + "timestamp": "2025-11-27T04:03:11.322885-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 905728, - "rtt_ms": 0.905728, + "operation": "add_edge", + "rtt_ns": 1804459, + "rtt_ms": 1.804459, "checkpoint": 0, - "vertex_from": "345", - "timestamp": "2025-11-27T01:23:29.575206488Z" + "vertex_from": "0", + "vertex_to": "347", + "timestamp": "2025-11-27T04:03:11.322902-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1684500, + "rtt_ms": 1.6845, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "103", + "timestamp": "2025-11-27T04:03:11.323144-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1011457, - "rtt_ms": 1.011457, + "rtt_ns": 1154042, + "rtt_ms": 1.154042, "checkpoint": 0, - "vertex_from": "964", - "timestamp": "2025-11-27T01:23:29.575212318Z" + "vertex_from": "330", + "timestamp": "2025-11-27T04:03:11.32406-08:00" }, { "operation": "add_edge", - "rtt_ns": 954607, - "rtt_ms": 0.954607, + "rtt_ns": 1530208, + "rtt_ms": 1.530208, "checkpoint": 0, "vertex_from": "0", "vertex_to": "807", - "timestamp": "2025-11-27T01:23:29.575228107Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1077597, - "rtt_ms": 1.077597, - "checkpoint": 0, - "vertex_from": "716", - "timestamp": "2025-11-27T01:23:29.575349597Z" + "timestamp": "2025-11-27T04:03:11.324069-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1158517, - "rtt_ms": 1.158517, + "rtt_ns": 2113459, + "rtt_ms": 2.113459, "checkpoint": 0, "vertex_from": "626", - "timestamp": "2025-11-27T01:23:29.575446587Z" + "timestamp": "2025-11-27T04:03:11.324167-08:00" }, { "operation": "add_vertex", - "rtt_ns": 611408, - "rtt_ms": 0.611408, + "rtt_ns": 2885917, + "rtt_ms": 2.885917, "checkpoint": 0, - "vertex_from": "519", - "timestamp": "2025-11-27T01:23:29.575661426Z" + "vertex_from": "38", + "timestamp": "2025-11-27T04:03:11.324219-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1466276, - "rtt_ms": 1.466276, + "rtt_ns": 2401208, + "rtt_ms": 2.401208, "checkpoint": 0, - "vertex_from": "330", - "timestamp": "2025-11-27T01:23:29.576499694Z" + "vertex_from": "554", + "timestamp": "2025-11-27T04:03:11.324241-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1423465, - "rtt_ms": 1.423465, + "operation": "add_vertex", + "rtt_ns": 2394875, + "rtt_ms": 2.394875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:29.576636253Z" + "vertex_from": "716", + "timestamp": "2025-11-27T04:03:11.324246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641825, - "rtt_ms": 1.641825, + "rtt_ns": 1869792, + "rtt_ms": 1.869792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:29.576825663Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:11.324529-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1795355, - "rtt_ms": 1.795355, + "rtt_ns": 1967584, + "rtt_ms": 1.967584, "checkpoint": 0, - "vertex_from": "663", - "timestamp": "2025-11-27T01:23:29.576858793Z" + "vertex_from": "345", + "timestamp": "2025-11-27T04:03:11.324669-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1712865, - "rtt_ms": 1.712865, + "rtt_ns": 1580167, + "rtt_ms": 1.580167, "checkpoint": 0, - "vertex_from": "914", - "timestamp": "2025-11-27T01:23:29.576873543Z" + "vertex_from": "519", + "timestamp": "2025-11-27T04:03:11.324728-08:00" }, { "operation": "add_edge", - "rtt_ns": 2248493, - "rtt_ms": 2.248493, + "rtt_ns": 1920459, + "rtt_ms": 1.920459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "345", - "timestamp": "2025-11-27T01:23:29.577455571Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:03:11.324806-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054704, - "rtt_ms": 2.054704, + "rtt_ns": 1274667, + "rtt_ms": 1.274667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:29.577501661Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:03:11.325521-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2286314, - "rtt_ms": 2.286314, + "operation": "add_edge", + "rtt_ns": 941041, + "rtt_ms": 0.941041, "checkpoint": 0, - "vertex_from": "715", - "timestamp": "2025-11-27T01:23:29.577516811Z" + "vertex_from": "0", + "vertex_to": "345", + "timestamp": "2025-11-27T04:03:11.32561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870025, - "rtt_ms": 1.870025, + "rtt_ns": 1566834, + "rtt_ms": 1.566834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:29.577531871Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:11.325627-08:00" }, { "operation": "add_edge", - "rtt_ns": 2190434, - "rtt_ms": 2.190434, + "rtt_ns": 1524958, + "rtt_ms": 1.524958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:29.577540871Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:03:11.325692-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1222787, - "rtt_ms": 1.222787, + "rtt_ns": 1803458, + "rtt_ms": 1.803458, "checkpoint": 0, - "vertex_from": "681", - "timestamp": "2025-11-27T01:23:29.57786169Z" + "vertex_from": "663", + "timestamp": "2025-11-27T04:03:11.325874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484246, - "rtt_ms": 1.484246, + "rtt_ns": 1777500, + "rtt_ms": 1.7775, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "663", - "timestamp": "2025-11-27T01:23:29.578343579Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:11.325997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486416, - "rtt_ms": 1.486416, + "rtt_ns": 1827333, + "rtt_ms": 1.827333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:29.578360599Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:11.326069-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1278417, + "rtt_ms": 1.278417, + "checkpoint": 0, + "vertex_from": "715", + "timestamp": "2025-11-27T04:03:11.326086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872585, - "rtt_ms": 1.872585, + "rtt_ns": 1670834, + "rtt_ms": 1.670834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:29.578372959Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:11.3264-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1573135, - "rtt_ms": 1.573135, + "rtt_ns": 1707084, + "rtt_ms": 1.707084, "checkpoint": 0, "vertex_from": "332", - "timestamp": "2025-11-27T01:23:29.578400518Z" + "timestamp": "2025-11-27T04:03:11.327318-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1054347, - "rtt_ms": 1.054347, + "rtt_ns": 1647250, + "rtt_ms": 1.64725, + "checkpoint": 0, + "vertex_from": "684", + "timestamp": "2025-11-27T04:03:11.32734-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1790042, + "rtt_ms": 1.790042, "checkpoint": 0, "vertex_from": "378", - "timestamp": "2025-11-27T01:23:29.578517108Z" + "timestamp": "2025-11-27T04:03:11.32742-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1381336, - "rtt_ms": 1.381336, + "rtt_ns": 2938417, + "rtt_ms": 2.938417, "checkpoint": 0, - "vertex_from": "684", - "timestamp": "2025-11-27T01:23:29.578886627Z" + "vertex_from": "914", + "timestamp": "2025-11-27T04:03:11.32747-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1434036, - "rtt_ms": 1.434036, + "rtt_ns": 1520791, + "rtt_ms": 1.520791, "checkpoint": 0, "vertex_from": "451", - "timestamp": "2025-11-27T01:23:29.578980517Z" + "timestamp": "2025-11-27T04:03:11.327591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135177, - "rtt_ms": 1.135177, + "rtt_ns": 1645416, + "rtt_ms": 1.645416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:29.578997367Z" + "vertex_to": "715", + "timestamp": "2025-11-27T04:03:11.327731-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1083647, - "rtt_ms": 1.083647, + "operation": "add_vertex", + "rtt_ns": 1602625, + "rtt_ms": 1.602625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "378", - "timestamp": "2025-11-27T01:23:29.579601365Z" + "vertex_from": "413", + "timestamp": "2025-11-27T04:03:11.327847-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1218777, - "rtt_ms": 1.218777, + "operation": "add_vertex", + "rtt_ns": 2540292, + "rtt_ms": 2.540292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:29.579619795Z" + "vertex_from": "681", + "timestamp": "2025-11-27T04:03:11.328062-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2109994, - "rtt_ms": 2.109994, + "operation": "add_edge", + "rtt_ns": 1205791, + "rtt_ms": 1.205791, "checkpoint": 0, - "vertex_from": "413", - "timestamp": "2025-11-27T01:23:29.579645015Z" + "vertex_from": "0", + "vertex_to": "684", + "timestamp": "2025-11-27T04:03:11.328546-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1282526, - "rtt_ms": 1.282526, + "rtt_ns": 2184875, + "rtt_ms": 2.184875, "checkpoint": 0, - "vertex_from": "838", - "timestamp": "2025-11-27T01:23:29.579645265Z" + "vertex_from": "151", + "timestamp": "2025-11-27T04:03:11.328585-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1283276, - "rtt_ms": 1.283276, + "rtt_ns": 1384584, + "rtt_ms": 1.384584, "checkpoint": 0, - "vertex_from": "458", - "timestamp": "2025-11-27T01:23:29.579659945Z" + "vertex_from": "838", + "timestamp": "2025-11-27T04:03:11.329135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145544, - "rtt_ms": 2.145544, + "rtt_ns": 3646667, + "rtt_ms": 3.646667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "715", - "timestamp": "2025-11-27T01:23:29.579663145Z" + "vertex_to": "663", + "timestamp": "2025-11-27T04:03:11.329521-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1371456, - "rtt_ms": 1.371456, + "rtt_ns": 997166, + "rtt_ms": 0.997166, "checkpoint": 0, - "vertex_from": "151", - "timestamp": "2025-11-27T01:23:29.579720435Z" + "vertex_from": "458", + "timestamp": "2025-11-27T04:03:11.329547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444686, - "rtt_ms": 1.444686, + "rtt_ns": 1844083, + "rtt_ms": 1.844083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "451", - "timestamp": "2025-11-27T01:23:29.580425833Z" + "vertex_to": "413", + "timestamp": "2025-11-27T04:03:11.329691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549886, - "rtt_ms": 1.549886, + "rtt_ns": 2111292, + "rtt_ms": 2.111292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "684", - "timestamp": "2025-11-27T01:23:29.580437143Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1448256, - "rtt_ms": 1.448256, - "checkpoint": 0, - "vertex_from": "236", - "timestamp": "2025-11-27T01:23:29.580448423Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:03:11.329703-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1368696, - "rtt_ms": 1.368696, + "operation": "add_edge", + "rtt_ns": 2408792, + "rtt_ms": 2.408792, "checkpoint": 0, - "vertex_from": "643", - "timestamp": "2025-11-27T01:23:29.580990111Z" + "vertex_from": "0", + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:11.329727-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1449196, - "rtt_ms": 1.449196, + "operation": "add_edge", + "rtt_ns": 1706041, + "rtt_ms": 1.706041, "checkpoint": 0, - "vertex_from": "419", - "timestamp": "2025-11-27T01:23:29.581052331Z" + "vertex_from": "0", + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:11.329769-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 791397, - "rtt_ms": 0.791397, + "operation": "add_edge", + "rtt_ns": 2415583, + "rtt_ms": 2.415583, "checkpoint": 0, - "vertex_from": "317", - "timestamp": "2025-11-27T01:23:29.58123119Z" + "vertex_from": "0", + "vertex_to": "378", + "timestamp": "2025-11-27T04:03:11.329836-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 839567, - "rtt_ms": 0.839567, + "operation": "add_edge", + "rtt_ns": 2421416, + "rtt_ms": 2.421416, "checkpoint": 0, - "vertex_from": "803", - "timestamp": "2025-11-27T01:23:29.58126755Z" + "vertex_from": "0", + "vertex_to": "914", + "timestamp": "2025-11-27T04:03:11.329892-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043274, - "rtt_ms": 2.043274, + "rtt_ns": 1323792, + "rtt_ms": 1.323792, "checkpoint": 0, "vertex_from": "0", "vertex_to": "151", - "timestamp": "2025-11-27T01:23:29.581764169Z" + "timestamp": "2025-11-27T04:03:11.329909-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2217353, - "rtt_ms": 2.217353, + "rtt_ns": 1292375, + "rtt_ms": 1.292375, "checkpoint": 0, - "vertex_from": "707", - "timestamp": "2025-11-27T01:23:29.581888608Z" + "vertex_from": "236", + "timestamp": "2025-11-27T04:03:11.330815-08:00" }, { "operation": "add_edge", - "rtt_ns": 2749962, - "rtt_ms": 2.749962, + "rtt_ns": 1977250, + "rtt_ms": 1.97725, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "458", - "timestamp": "2025-11-27T01:23:29.582410197Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:03:11.331113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2837342, - "rtt_ms": 2.837342, + "rtt_ns": 1602375, + "rtt_ms": 1.602375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "413", - "timestamp": "2025-11-27T01:23:29.582483247Z" + "vertex_to": "458", + "timestamp": "2025-11-27T04:03:11.33115-08:00" }, { "operation": "add_vertex", - "rtt_ns": 746737, - "rtt_ms": 0.746737, + "rtt_ns": 1498167, + "rtt_ms": 1.498167, "checkpoint": 0, - "vertex_from": "806", - "timestamp": "2025-11-27T01:23:29.582512946Z" + "vertex_from": "419", + "timestamp": "2025-11-27T04:03:11.33119-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2886441, - "rtt_ms": 2.886441, + "operation": "add_vertex", + "rtt_ns": 1626250, + "rtt_ms": 1.62625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:29.582533826Z" + "vertex_from": "643", + "timestamp": "2025-11-27T04:03:11.331331-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2110793, - "rtt_ms": 2.110793, + "operation": "add_vertex", + "rtt_ns": 1500875, + "rtt_ms": 1.500875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "236", - "timestamp": "2025-11-27T01:23:29.582559856Z" + "vertex_from": "786", + "timestamp": "2025-11-27T04:03:11.331412-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1547165, - "rtt_ms": 1.547165, + "operation": "add_vertex", + "rtt_ns": 1701917, + "rtt_ms": 1.701917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "419", - "timestamp": "2025-11-27T01:23:29.582599896Z" + "vertex_from": "707", + "timestamp": "2025-11-27T04:03:11.33143-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1682315, - "rtt_ms": 1.682315, + "operation": "add_vertex", + "rtt_ns": 1624209, + "rtt_ms": 1.624209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:29.582672926Z" + "vertex_from": "317", + "timestamp": "2025-11-27T04:03:11.331464-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1490806, - "rtt_ms": 1.490806, + "operation": "add_vertex", + "rtt_ns": 1638917, + "rtt_ms": 1.638917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "317", - "timestamp": "2025-11-27T01:23:29.582722466Z" + "vertex_from": "806", + "timestamp": "2025-11-27T04:03:11.331533-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1474676, - "rtt_ms": 1.474676, + "operation": "add_vertex", + "rtt_ns": 2669916, + "rtt_ms": 2.669916, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "803", - "timestamp": "2025-11-27T01:23:29.582742676Z" + "vertex_from": "803", + "timestamp": "2025-11-27T04:03:11.332441-08:00" }, { "operation": "add_edge", - "rtt_ns": 914548, - "rtt_ms": 0.914548, + "rtt_ns": 1066417, + "rtt_ms": 1.066417, "checkpoint": 0, "vertex_from": "0", "vertex_to": "707", - "timestamp": "2025-11-27T01:23:29.582803586Z" + "timestamp": "2025-11-27T04:03:11.332497-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 924717, - "rtt_ms": 0.924717, + "operation": "add_edge", + "rtt_ns": 1402000, + "rtt_ms": 1.402, "checkpoint": 0, - "vertex_from": "865", - "timestamp": "2025-11-27T01:23:29.583410654Z" + "vertex_from": "0", + "vertex_to": "419", + "timestamp": "2025-11-27T04:03:11.332593-08:00" }, { "operation": "add_vertex", - "rtt_ns": 923688, - "rtt_ms": 0.923688, + "rtt_ns": 1441208, + "rtt_ms": 1.441208, "checkpoint": 0, "vertex_from": "106", - "timestamp": "2025-11-27T01:23:29.583461084Z" + "timestamp": "2025-11-27T04:03:11.332593-08:00" }, { "operation": "add_edge", - "rtt_ns": 956868, - "rtt_ms": 0.956868, + "rtt_ns": 1775209, + "rtt_ms": 1.775209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:29.583470224Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:11.333187-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1109826, - "rtt_ms": 1.109826, + "operation": "add_edge", + "rtt_ns": 1980834, + "rtt_ms": 1.980834, "checkpoint": 0, - "vertex_from": "786", - "timestamp": "2025-11-27T01:23:29.583521993Z" + "vertex_from": "0", + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:11.333313-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2132792, + "rtt_ms": 2.132792, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "317", + "timestamp": "2025-11-27T04:03:11.333597-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1628805, - "rtt_ms": 1.628805, + "rtt_ns": 1290167, + "rtt_ms": 1.290167, "checkpoint": 0, "vertex_from": "199", - "timestamp": "2025-11-27T01:23:29.584191051Z" + "timestamp": "2025-11-27T04:03:11.333788-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1644365, - "rtt_ms": 1.644365, + "operation": "add_edge", + "rtt_ns": 3071333, + "rtt_ms": 3.071333, "checkpoint": 0, - "vertex_from": "1001", - "timestamp": "2025-11-27T01:23:29.584255391Z" + "vertex_from": "0", + "vertex_to": "236", + "timestamp": "2025-11-27T04:03:11.333886-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1593805, - "rtt_ms": 1.593805, + "rtt_ns": 2790958, + "rtt_ms": 2.790958, "checkpoint": 0, - "vertex_from": "457", - "timestamp": "2025-11-27T01:23:29.584322081Z" + "vertex_from": "865", + "timestamp": "2025-11-27T04:03:11.333905-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1660725, - "rtt_ms": 1.660725, + "rtt_ns": 1097958, + "rtt_ms": 1.097958, "checkpoint": 0, - "vertex_from": "240", - "timestamp": "2025-11-27T01:23:29.584335711Z" + "vertex_from": "463", + "timestamp": "2025-11-27T04:03:11.334699-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1556755, - "rtt_ms": 1.556755, + "rtt_ns": 2123041, + "rtt_ms": 2.123041, "checkpoint": 0, - "vertex_from": "286", - "timestamp": "2025-11-27T01:23:29.584363791Z" + "vertex_from": "1001", + "timestamp": "2025-11-27T04:03:11.334716-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1999244, - "rtt_ms": 1.999244, + "rtt_ns": 1490667, + "rtt_ms": 1.490667, "checkpoint": 0, - "vertex_from": "463", - "timestamp": "2025-11-27T01:23:29.58474573Z" + "vertex_from": "457", + "timestamp": "2025-11-27T04:03:11.334804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397336, - "rtt_ms": 1.397336, + "rtt_ns": 3290208, + "rtt_ms": 3.290208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "865", - "timestamp": "2025-11-27T01:23:29.58480839Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:03:11.334823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366575, - "rtt_ms": 1.366575, + "rtt_ns": 2306292, + "rtt_ms": 2.306292, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.584842349Z" + "vertex_from": "0", + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:11.3349-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1351856, - "rtt_ms": 1.351856, + "operation": "add_vertex", + "rtt_ns": 1819250, + "rtt_ms": 1.81925, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:29.584874249Z" + "vertex_from": "240", + "timestamp": "2025-11-27T04:03:11.335007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490225, - "rtt_ms": 1.490225, + "rtt_ns": 1718167, + "rtt_ms": 1.718167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:29.584952029Z" + "vertex_to": "199", + "timestamp": "2025-11-27T04:03:11.335507-08:00" }, { "operation": "add_edge", - "rtt_ns": 762008, - "rtt_ms": 0.762008, + "rtt_ns": 3073584, + "rtt_ms": 3.073584, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "199", - "timestamp": "2025-11-27T01:23:29.584953679Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:03:11.335515-08:00" }, { "operation": "add_edge", - "rtt_ns": 797228, - "rtt_ms": 0.797228, + "rtt_ns": 1809375, + "rtt_ms": 1.809375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:29.585133399Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:03:11.335715-08:00" }, { "operation": "add_edge", - "rtt_ns": 918027, - "rtt_ms": 0.918027, + "rtt_ns": 1275250, + "rtt_ms": 1.27525, "checkpoint": 0, "vertex_from": "0", "vertex_to": "1001", - "timestamp": "2025-11-27T01:23:29.585173968Z" + "timestamp": "2025-11-27T04:03:11.335992-08:00" }, { "operation": "add_edge", - "rtt_ns": 818537, - "rtt_ms": 0.818537, + "rtt_ns": 1183500, + "rtt_ms": 1.1835, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "286", - "timestamp": "2025-11-27T01:23:29.585182988Z" + "vertex_from": "1", + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:11.336008-08:00" }, { "operation": "add_edge", - "rtt_ns": 887837, - "rtt_ms": 0.887837, + "rtt_ns": 1222708, + "rtt_ms": 1.222708, "checkpoint": 0, "vertex_from": "0", "vertex_to": "457", - "timestamp": "2025-11-27T01:23:29.585210488Z" + "timestamp": "2025-11-27T04:03:11.336027-08:00" }, { "operation": "add_edge", - "rtt_ns": 644878, - "rtt_ms": 0.644878, + "rtt_ns": 1420125, + "rtt_ms": 1.420125, "checkpoint": 0, "vertex_from": "0", "vertex_to": "463", - "timestamp": "2025-11-27T01:23:29.585391228Z" + "timestamp": "2025-11-27T04:03:11.336119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862585, - "rtt_ms": 1.862585, + "rtt_ns": 1244958, + "rtt_ms": 1.244958, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:11.336146-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1362042, + "rtt_ms": 1.362042, "checkpoint": 0, "vertex_from": "1", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.586738034Z" + "timestamp": "2025-11-27T04:03:11.336879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857995, - "rtt_ms": 1.857995, + "rtt_ns": 1222708, + "rtt_ms": 1.222708, "checkpoint": 0, "vertex_from": "1", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.586811914Z" + "timestamp": "2025-11-27T04:03:11.336939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991905, - "rtt_ms": 1.991905, + "rtt_ns": 1995500, + "rtt_ms": 1.9955, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:29.586835804Z" + "vertex_from": "0", + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:11.337003-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 3207667, + "rtt_ms": 3.207667, + "checkpoint": 0, + "vertex_from": "286", + "timestamp": "2025-11-27T04:03:11.337097-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196613, - "rtt_ms": 2.196613, + "rtt_ns": 1599875, + "rtt_ms": 1.599875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.587331812Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:11.337109-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2368173, - "rtt_ms": 2.368173, + "operation": "add_edge", + "rtt_ns": 1011334, + "rtt_ms": 1.011334, "checkpoint": 0, - "vertex_from": "504", - "timestamp": "2025-11-27T01:23:29.587544751Z" + "vertex_from": "0", + "vertex_to": "286", + "timestamp": "2025-11-27T04:03:11.338109-08:00" }, { "operation": "add_edge", - "rtt_ns": 2746341, - "rtt_ms": 2.746341, + "rtt_ns": 2686917, + "rtt_ms": 2.686917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:29.587557441Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.338696-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347413, - "rtt_ms": 2.347413, + "rtt_ns": 2725583, + "rtt_ms": 2.725583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.587560591Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:11.338719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172373, - "rtt_ms": 2.172373, + "rtt_ns": 1765041, + "rtt_ms": 1.765041, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.587565371Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:11.338769-08:00" }, { "operation": "add_edge", - "rtt_ns": 837627, - "rtt_ms": 0.837627, + "rtt_ns": 1917333, + "rtt_ms": 1.917333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.587576681Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.338797-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2852667, + "rtt_ms": 2.852667, + "checkpoint": 0, + "vertex_from": "504", + "timestamp": "2025-11-27T04:03:11.338881-08:00" }, { "operation": "add_edge", - "rtt_ns": 2401443, - "rtt_ms": 2.401443, + "rtt_ns": 1839709, + "rtt_ms": 1.839709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.587587261Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:11.33895-08:00" }, { "operation": "add_edge", - "rtt_ns": 2651992, - "rtt_ms": 2.651992, + "rtt_ns": 2848875, + "rtt_ms": 2.848875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.587607261Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.338969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782374, - "rtt_ms": 1.782374, + "rtt_ns": 2075583, + "rtt_ms": 2.075583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:29.588595658Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:11.339016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909964, - "rtt_ms": 1.909964, + "rtt_ns": 2959500, + "rtt_ms": 2.9595, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:29.588748188Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.339106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097804, - "rtt_ms": 2.097804, + "rtt_ns": 1014542, + "rtt_ms": 1.014542, "checkpoint": 0, "vertex_from": "1", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.589430936Z" + "timestamp": "2025-11-27T04:03:11.339125-08:00" }, { "operation": "add_vertex", - "rtt_ns": 683498, - "rtt_ms": 0.683498, + "rtt_ns": 1034459, + "rtt_ms": 1.034459, "checkpoint": 0, "vertex_from": "796", - "timestamp": "2025-11-27T01:23:29.590117804Z" + "timestamp": "2025-11-27T04:03:11.340161-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1763667, + "rtt_ms": 1.763667, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.340462-08:00" }, { "operation": "add_edge", - "rtt_ns": 2721672, - "rtt_ms": 2.721672, + "rtt_ns": 1547917, + "rtt_ms": 1.547917, "checkpoint": 0, "vertex_from": "1", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.590330073Z" + "timestamp": "2025-11-27T04:03:11.340517-08:00" }, { "operation": "add_edge", - "rtt_ns": 2819552, - "rtt_ms": 2.819552, + "rtt_ns": 1789125, + "rtt_ms": 1.789125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:29.590407853Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.340559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2958982, - "rtt_ms": 2.958982, + "rtt_ns": 1788083, + "rtt_ms": 1.788083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "504", - "timestamp": "2025-11-27T01:23:29.590504323Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:11.340738-08:00" }, { "operation": "add_edge", - "rtt_ns": 3395070, - "rtt_ms": 3.39507, + "rtt_ns": 1776125, + "rtt_ms": 1.776125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "3", - "timestamp": "2025-11-27T01:23:29.590973781Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:11.340793-08:00" }, { "operation": "add_edge", - "rtt_ns": 3494250, - "rtt_ms": 3.49425, + "rtt_ns": 2085709, + "rtt_ms": 2.085709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.591060501Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:11.340805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2390173, - "rtt_ms": 2.390173, + "rtt_ns": 1704375, + "rtt_ms": 1.704375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:29.591140291Z" + "timestamp": "2025-11-27T04:03:11.340812-08:00" }, { "operation": "add_edge", - "rtt_ns": 3586640, - "rtt_ms": 3.58664, + "rtt_ns": 2053334, + "rtt_ms": 2.053334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:29.591148051Z" + "vertex_to": "3", + "timestamp": "2025-11-27T04:03:11.340851-08:00" }, { "operation": "add_edge", - "rtt_ns": 3646129, - "rtt_ms": 3.646129, + "rtt_ns": 2084167, + "rtt_ms": 2.084167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.59120502Z" + "vertex_to": "504", + "timestamp": "2025-11-27T04:03:11.340965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2663252, - "rtt_ms": 2.663252, + "rtt_ns": 1052417, + "rtt_ms": 1.052417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:29.5912607Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:03:11.341865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215956, - "rtt_ms": 1.215956, + "rtt_ns": 1088458, + "rtt_ms": 1.088458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:29.59133417Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:11.341882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201217, - "rtt_ms": 1.201217, + "rtt_ns": 1435084, + "rtt_ms": 1.435084, "checkpoint": 0, "vertex_from": "1", "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.59153288Z" + "timestamp": "2025-11-27T04:03:11.3419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196386, - "rtt_ms": 1.196386, + "rtt_ns": 1861750, + "rtt_ms": 1.86175, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:29.591606159Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:11.342023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151346, - "rtt_ms": 1.151346, + "rtt_ns": 1742917, + "rtt_ms": 1.742917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.591657419Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:03:11.342482-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 674688, - "rtt_ms": 0.674688, + "operation": "add_edge", + "rtt_ns": 1635125, + "rtt_ms": 1.635125, "checkpoint": 0, - "vertex_from": "932", - "timestamp": "2025-11-27T01:23:29.591937578Z" + "vertex_from": "1", + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.342487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138417, - "rtt_ms": 1.138417, + "rtt_ns": 1928333, + "rtt_ms": 1.928333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "46", - "timestamp": "2025-11-27T01:23:29.592114858Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.342489-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1555500, + "rtt_ms": 1.5555, + "checkpoint": 0, + "vertex_from": "932", + "timestamp": "2025-11-27T04:03:11.342523-08:00" }, { "operation": "add_edge", - "rtt_ns": 2183053, - "rtt_ms": 2.183053, + "rtt_ns": 1721708, + "rtt_ms": 1.721708, "checkpoint": 0, "vertex_from": "1", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.593325344Z" + "timestamp": "2025-11-27T04:03:11.342528-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227573, - "rtt_ms": 2.227573, + "rtt_ns": 2189042, + "rtt_ms": 2.189042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:29.593376634Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:11.342707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200624, - "rtt_ms": 2.200624, + "rtt_ns": 1126042, + "rtt_ms": 1.126042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.593406954Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:03:11.343649-08:00" }, { "operation": "add_edge", - "rtt_ns": 2374883, - "rtt_ms": 2.374883, + "rtt_ns": 1455708, + "rtt_ms": 1.455708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.593436984Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.343943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543146, - "rtt_ms": 1.543146, + "rtt_ns": 2053583, + "rtt_ms": 2.053583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "932", - "timestamp": "2025-11-27T01:23:29.593481164Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:11.343954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912395, - "rtt_ms": 1.912395, + "rtt_ns": 1469834, + "rtt_ms": 1.469834, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.593519864Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:11.34396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530516, - "rtt_ms": 1.530516, + "rtt_ns": 1946125, + "rtt_ms": 1.946125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:29.593647304Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.343972-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383003, - "rtt_ms": 2.383003, + "rtt_ns": 2106542, + "rtt_ms": 2.106542, "checkpoint": 0, "vertex_from": "1", "vertex_to": "26", - "timestamp": "2025-11-27T01:23:29.593719243Z" + "timestamp": "2025-11-27T04:03:11.343973-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092444, - "rtt_ms": 2.092444, + "rtt_ns": 1321000, + "rtt_ms": 1.321, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.593751633Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:11.344029-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224803, - "rtt_ms": 2.224803, + "rtt_ns": 1520041, + "rtt_ms": 1.520041, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.593758983Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:11.344048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164297, - "rtt_ms": 1.164297, + "rtt_ns": 2219958, + "rtt_ms": 2.219958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.594495271Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:03:11.344103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138057, - "rtt_ms": 1.138057, + "rtt_ns": 1632542, + "rtt_ms": 1.632542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:29.594546101Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:11.344116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076837, - "rtt_ms": 1.076837, + "rtt_ns": 1718542, + "rtt_ms": 1.718542, "checkpoint": 0, "vertex_from": "1", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:29.594558971Z" + "timestamp": "2025-11-27T04:03:11.345368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103607, - "rtt_ms": 1.103607, + "rtt_ns": 1480334, + "rtt_ms": 1.480334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.594624751Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:11.345454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261037, - "rtt_ms": 1.261037, + "rtt_ns": 1381375, + "rtt_ms": 1.381375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:29.594639111Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:11.345487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302046, - "rtt_ms": 1.302046, + "rtt_ns": 1596625, + "rtt_ms": 1.596625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.59474203Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.345541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669716, - "rtt_ms": 1.669716, + "rtt_ns": 1690250, + "rtt_ms": 1.69025, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.595429859Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.345662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747575, - "rtt_ms": 1.747575, + "rtt_ns": 1544917, + "rtt_ms": 1.544917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.595468488Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:11.345663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723275, - "rtt_ms": 1.723275, + "rtt_ns": 1734875, + "rtt_ms": 1.734875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.595475988Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:11.345695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847154, - "rtt_ms": 1.847154, + "rtt_ns": 1755458, + "rtt_ms": 1.755458, "checkpoint": 0, "vertex_from": "1", "vertex_to": "277", - "timestamp": "2025-11-27T01:23:29.595496488Z" + "timestamp": "2025-11-27T04:03:11.345711-08:00" }, { "operation": "add_edge", - "rtt_ns": 2644802, - "rtt_ms": 2.644802, + "rtt_ns": 1662166, + "rtt_ms": 1.662166, "checkpoint": 0, "vertex_from": "1", "vertex_to": "150", - "timestamp": "2025-11-27T01:23:29.597192023Z" + "timestamp": "2025-11-27T04:03:11.345711-08:00" }, { "operation": "add_edge", - "rtt_ns": 2803392, - "rtt_ms": 2.803392, + "rtt_ns": 1684333, + "rtt_ms": 1.684333, "checkpoint": 0, "vertex_from": "1", "vertex_to": "7", - "timestamp": "2025-11-27T01:23:29.597299783Z" + "timestamp": "2025-11-27T04:03:11.345714-08:00" }, { "operation": "add_edge", - "rtt_ns": 2884062, - "rtt_ms": 2.884062, + "rtt_ns": 1972458, + "rtt_ms": 1.972458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:29.597445513Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:11.347514-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116913, - "rtt_ms": 2.116913, + "rtt_ns": 2503750, + "rtt_ms": 2.50375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "928", - "timestamp": "2025-11-27T01:23:29.597547792Z" + "timestamp": "2025-11-27T04:03:11.347992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2941801, - "rtt_ms": 2.941801, + "rtt_ns": 2572708, + "rtt_ms": 2.572708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:29.597582192Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.348028-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135314, - "rtt_ms": 2.135314, + "rtt_ns": 2366750, + "rtt_ms": 2.36675, "checkpoint": 0, "vertex_from": "1", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.597634912Z" + "timestamp": "2025-11-27T04:03:11.34803-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243824, - "rtt_ms": 2.243824, + "rtt_ns": 2673625, + "rtt_ms": 2.673625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.597721092Z" - }, - { - "operation": "add_edge", - "rtt_ns": 3192380, - "rtt_ms": 3.19238, - "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:29.597818291Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:11.348043-08:00" }, { "operation": "add_edge", - "rtt_ns": 3120081, - "rtt_ms": 3.120081, + "rtt_ns": 2338542, + "rtt_ms": 2.338542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.597863151Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:11.34805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2445813, - "rtt_ms": 2.445813, + "rtt_ns": 2394042, + "rtt_ms": 2.394042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.597915271Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:11.348109-08:00" }, { "operation": "add_edge", - "rtt_ns": 851208, - "rtt_ms": 0.851208, + "rtt_ns": 2418417, + "rtt_ms": 2.418417, "checkpoint": 0, "vertex_from": "1", "vertex_to": "519", - "timestamp": "2025-11-27T01:23:29.598045371Z" + "timestamp": "2025-11-27T04:03:11.348115-08:00" }, { "operation": "add_edge", - "rtt_ns": 642238, - "rtt_ms": 0.642238, + "rtt_ns": 2499917, + "rtt_ms": 2.499917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "2", - "timestamp": "2025-11-27T01:23:29.598089231Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.348163-08:00" }, { "operation": "add_edge", - "rtt_ns": 841817, - "rtt_ms": 0.841817, + "rtt_ns": 2503875, + "rtt_ms": 2.503875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:29.59814761Z" + "vertex_to": "2", + "timestamp": "2025-11-27T04:03:11.348216-08:00" }, { "operation": "add_edge", - "rtt_ns": 644898, - "rtt_ms": 0.644898, + "rtt_ns": 1926333, + "rtt_ms": 1.926333, "checkpoint": 0, "vertex_from": "1", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.59822806Z" + "timestamp": "2025-11-27T04:03:11.349442-08:00" }, { "operation": "add_edge", - "rtt_ns": 692858, - "rtt_ms": 0.692858, + "rtt_ns": 1565792, + "rtt_ms": 1.565792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.59824215Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:11.349597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939995, - "rtt_ms": 1.939995, + "rtt_ns": 1681167, + "rtt_ms": 1.681167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:29.599760126Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:11.349676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935094, - "rtt_ms": 1.935094, + "rtt_ns": 1470541, + "rtt_ms": 1.470541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.599851665Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:11.349687-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037944, - "rtt_ms": 2.037944, + "rtt_ns": 1652125, + "rtt_ms": 1.652125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "42", - "timestamp": "2025-11-27T01:23:29.599902295Z" + "timestamp": "2025-11-27T04:03:11.349696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753705, - "rtt_ms": 1.753705, + "rtt_ns": 1671875, + "rtt_ms": 1.671875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "23", - "timestamp": "2025-11-27T01:23:29.599903345Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:11.349701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862154, - "rtt_ms": 1.862154, + "rtt_ns": 1660625, + "rtt_ms": 1.660625, "checkpoint": 0, "vertex_from": "1", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.599909415Z" + "timestamp": "2025-11-27T04:03:11.349772-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219723, - "rtt_ms": 2.219723, + "rtt_ns": 1666750, + "rtt_ms": 1.66675, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:29.599943325Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.349782-08:00" }, { "operation": "add_edge", - "rtt_ns": 2308103, - "rtt_ms": 2.308103, + "rtt_ns": 1726375, + "rtt_ms": 1.726375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:29.599944045Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:03:11.34989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875884, - "rtt_ms": 1.875884, + "rtt_ns": 1866833, + "rtt_ms": 1.866833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.599966675Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.349918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379403, - "rtt_ms": 2.379403, + "rtt_ns": 1280084, + "rtt_ms": 1.280084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:29.600609193Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:11.350957-08:00" }, { "operation": "add_edge", - "rtt_ns": 2374343, - "rtt_ms": 2.374343, + "rtt_ns": 1388792, + "rtt_ms": 1.388792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:29.600617743Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:11.351077-08:00" }, { - "operation": "add_edge", - "rtt_ns": 954747, - "rtt_ms": 0.954747, + "operation": "add_vertex", + "rtt_ns": 1308875, + "rtt_ms": 1.308875, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:29.600717263Z" + "vertex_from": "572", + "timestamp": "2025-11-27T04:03:11.351082-08:00" }, { "operation": "add_edge", - "rtt_ns": 942258, - "rtt_ms": 0.942258, + "rtt_ns": 1496542, + "rtt_ms": 1.496542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:29.600795763Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:11.351094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479746, - "rtt_ms": 1.479746, + "rtt_ns": 1447458, + "rtt_ms": 1.447458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:29.601383871Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:11.351149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569336, - "rtt_ms": 1.569336, + "rtt_ns": 1378708, + "rtt_ms": 1.378708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.601480221Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:11.351161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531335, - "rtt_ms": 1.531335, + "rtt_ns": 1358625, + "rtt_ms": 1.358625, "checkpoint": 0, "vertex_from": "1", "vertex_to": "594", - "timestamp": "2025-11-27T01:23:29.60149897Z" + "timestamp": "2025-11-27T04:03:11.35125-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1563425, - "rtt_ms": 1.563425, + "operation": "add_edge", + "rtt_ns": 1920459, + "rtt_ms": 1.920459, "checkpoint": 0, - "vertex_from": "572", - "timestamp": "2025-11-27T01:23:29.60151232Z" + "vertex_from": "1", + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:11.351364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572235, - "rtt_ms": 1.572235, + "rtt_ns": 1464959, + "rtt_ms": 1.464959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:29.60151821Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:11.351385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627325, - "rtt_ms": 1.627325, + "rtt_ns": 1722167, + "rtt_ms": 1.722167, "checkpoint": 0, "vertex_from": "1", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:29.60153191Z" + "timestamp": "2025-11-27T04:03:11.351419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162217, - "rtt_ms": 1.162217, + "rtt_ns": 1565542, + "rtt_ms": 1.565542, "checkpoint": 0, "vertex_from": "1", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:29.60178152Z" + "timestamp": "2025-11-27T04:03:11.352523-08:00" }, { "operation": "add_edge", - "rtt_ns": 2558682, - "rtt_ms": 2.558682, + "rtt_ns": 1490459, + "rtt_ms": 1.490459, "checkpoint": 0, "vertex_from": "1", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:29.603356435Z" + "timestamp": "2025-11-27T04:03:11.352586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983244, - "rtt_ms": 1.983244, + "rtt_ns": 1320417, + "rtt_ms": 1.320417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:29.603465115Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:11.352685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2773442, - "rtt_ms": 2.773442, + "rtt_ns": 1733375, + "rtt_ms": 1.733375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.603491955Z" + "timestamp": "2025-11-27T04:03:11.352811-08:00" }, { "operation": "add_edge", - "rtt_ns": 2905241, - "rtt_ms": 2.905241, + "rtt_ns": 1756167, + "rtt_ms": 1.756167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:29.603518614Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:11.352918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137313, - "rtt_ms": 2.137313, + "rtt_ns": 1545708, + "rtt_ms": 1.545708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.603522914Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:11.352933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795954, - "rtt_ms": 1.795954, + "rtt_ns": 1798708, + "rtt_ms": 1.798708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:29.603578784Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:11.352949-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096354, - "rtt_ms": 2.096354, + "rtt_ns": 1715000, + "rtt_ms": 1.715, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:29.603609344Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:11.352966-08:00" }, { "operation": "add_edge", - "rtt_ns": 2689902, - "rtt_ms": 2.689902, + "rtt_ns": 1554459, + "rtt_ms": 1.554459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:29.604210612Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:11.352975-08:00" }, { "operation": "add_edge", - "rtt_ns": 2805042, - "rtt_ms": 2.805042, + "rtt_ns": 1933417, + "rtt_ms": 1.933417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:29.604338412Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:03:11.353016-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2927922, - "rtt_ms": 2.927922, + "operation": "add_vertex", + "rtt_ns": 1504375, + "rtt_ms": 1.504375, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.604429102Z" + "vertex_from": "853", + "timestamp": "2025-11-27T04:03:11.354092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119747, - "rtt_ms": 1.119747, + "rtt_ns": 1423500, + "rtt_ms": 1.4235, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:29.604477622Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:11.354111-08:00" }, { "operation": "add_edge", - "rtt_ns": 922598, - "rtt_ms": 0.922598, + "rtt_ns": 1601875, + "rtt_ms": 1.601875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:29.60513493Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1698785, - "rtt_ms": 1.698785, - "checkpoint": 0, - "vertex_from": "853", - "timestamp": "2025-11-27T01:23:29.60516624Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:11.354126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652066, - "rtt_ms": 1.652066, + "rtt_ns": 1667334, + "rtt_ms": 1.667334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.6051717Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:11.354644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608706, - "rtt_ms": 1.608706, + "rtt_ns": 1743125, + "rtt_ms": 1.743125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.60518944Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:11.354663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676696, - "rtt_ms": 1.676696, + "rtt_ns": 1721916, + "rtt_ms": 1.721916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:29.60520059Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:03:11.354671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743455, - "rtt_ms": 1.743455, + "rtt_ns": 1942583, + "rtt_ms": 1.942583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:29.60523666Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 639858, - "rtt_ms": 0.639858, - "checkpoint": 0, - "vertex_from": "736", - "timestamp": "2025-11-27T01:23:29.605814038Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:03:11.354755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784815, - "rtt_ms": 1.784815, + "rtt_ns": 1925750, + "rtt_ms": 1.92575, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:29.606124857Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:11.354859-08:00" }, { "operation": "add_edge", - "rtt_ns": 3102851, - "rtt_ms": 3.102851, + "rtt_ns": 1899208, + "rtt_ms": 1.899208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "4", - "timestamp": "2025-11-27T01:23:29.606713645Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:11.354916-08:00" }, { "operation": "add_edge", - "rtt_ns": 2936972, - "rtt_ms": 2.936972, + "rtt_ns": 1989417, + "rtt_ms": 1.989417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:29.607367374Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:11.354957-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188764, - "rtt_ms": 2.188764, + "rtt_ns": 1563291, + "rtt_ms": 1.563291, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:29.607390884Z" + "vertex_to": "853", + "timestamp": "2025-11-27T04:03:11.355656-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230953, - "rtt_ms": 2.230953, + "rtt_ns": 1689542, + "rtt_ms": 1.689542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:29.607468833Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:11.355816-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2315263, - "rtt_ms": 2.315263, + "operation": "add_vertex", + "rtt_ns": 1285125, + "rtt_ms": 1.285125, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "6", - "timestamp": "2025-11-27T01:23:29.607505953Z" + "vertex_from": "589", + "timestamp": "2025-11-27T04:03:11.356146-08:00" }, { "operation": "add_edge", - "rtt_ns": 2351633, - "rtt_ms": 2.351633, + "rtt_ns": 1537458, + "rtt_ms": 1.537458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "853", - "timestamp": "2025-11-27T01:23:29.607518273Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:11.356495-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3046991, - "rtt_ms": 3.046991, + "operation": "add_vertex", + "rtt_ns": 1921417, + "rtt_ms": 1.921417, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:29.607526463Z" + "vertex_from": "736", + "timestamp": "2025-11-27T04:03:11.356567-08:00" }, { "operation": "add_edge", - "rtt_ns": 2403743, - "rtt_ms": 2.403743, + "rtt_ns": 1915542, + "rtt_ms": 1.915542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:29.607539863Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:03:11.356579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745975, - "rtt_ms": 1.745975, + "rtt_ns": 2503458, + "rtt_ms": 2.503458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:29.607560583Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:11.356616-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1700525, - "rtt_ms": 1.700525, + "operation": "add_edge", + "rtt_ns": 1985375, + "rtt_ms": 1.985375, "checkpoint": 0, - "vertex_from": "589", - "timestamp": "2025-11-27T01:23:29.607828892Z" + "vertex_from": "1", + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:11.356658-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1321447, - "rtt_ms": 1.321447, + "rtt_ns": 1759958, + "rtt_ms": 1.759958, "checkpoint": 0, "vertex_from": "595", - "timestamp": "2025-11-27T01:23:29.608037272Z" + "timestamp": "2025-11-27T04:03:11.356676-08:00" }, { "operation": "add_edge", - "rtt_ns": 853397, - "rtt_ms": 0.853397, + "rtt_ns": 1956750, + "rtt_ms": 1.95675, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:29.608222311Z" - }, - { - "operation": "add_edge", - "rtt_ns": 856197, - "rtt_ms": 0.856197, - "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:29.608249211Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:11.356712-08:00" }, { "operation": "add_edge", - "rtt_ns": 948688, - "rtt_ms": 0.948688, + "rtt_ns": 2015583, + "rtt_ms": 2.015583, "checkpoint": 0, "vertex_from": "1", "vertex_to": "330", - "timestamp": "2025-11-27T01:23:29.608419081Z" + "timestamp": "2025-11-27T04:03:11.357832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023787, - "rtt_ms": 1.023787, + "rtt_ns": 1255209, + "rtt_ms": 1.255209, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.60853052Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:11.357932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081297, - "rtt_ms": 1.081297, + "rtt_ns": 1359000, + "rtt_ms": 1.359, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.60860098Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.357975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052307, - "rtt_ms": 1.052307, + "rtt_ns": 1318708, + "rtt_ms": 1.318708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.60861425Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:11.357978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754285, - "rtt_ms": 1.754285, + "rtt_ns": 2328042, + "rtt_ms": 2.328042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.609282008Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:11.357985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604546, - "rtt_ms": 1.604546, + "rtt_ns": 1489791, + "rtt_ms": 1.489791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:29.609434008Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.357986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420535, - "rtt_ms": 1.420535, + "rtt_ns": 1847833, + "rtt_ms": 1.847833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:29.609458307Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:03:11.357994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221316, - "rtt_ms": 1.221316, + "rtt_ns": 1453292, + "rtt_ms": 1.453292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.609471897Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:11.358021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949114, - "rtt_ms": 1.949114, + "rtt_ns": 1578500, + "rtt_ms": 1.5785, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.609490197Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:11.358158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097246, - "rtt_ms": 1.097246, + "rtt_ns": 1455500, + "rtt_ms": 1.4555, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:29.609518157Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:11.358168-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1375306, - "rtt_ms": 1.375306, + "rtt_ns": 1630709, + "rtt_ms": 1.630709, "checkpoint": 0, "vertex_from": "188", - "timestamp": "2025-11-27T01:23:29.609603167Z" + "timestamp": "2025-11-27T04:03:11.359465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924444, - "rtt_ms": 1.924444, + "rtt_ns": 1663291, + "rtt_ms": 1.663291, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:29.610456144Z" + "vertex_to": "92", + "timestamp": "2025-11-27T04:03:11.359833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2045064, - "rtt_ms": 2.045064, + "rtt_ns": 1935083, + "rtt_ms": 1.935083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:29.610647504Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:11.359915-08:00" }, { "operation": "add_edge", - "rtt_ns": 2839501, - "rtt_ms": 2.839501, + "rtt_ns": 2062792, + "rtt_ms": 2.062792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:29.611454961Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:11.359996-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092913, - "rtt_ms": 2.092913, + "rtt_ns": 2067666, + "rtt_ms": 2.067666, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:29.611529651Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:11.360044-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245533, - "rtt_ms": 2.245533, + "rtt_ns": 1956042, + "rtt_ms": 1.956042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:29.611531881Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:11.360115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147104, - "rtt_ms": 2.147104, + "rtt_ns": 2121708, + "rtt_ms": 2.121708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:29.611667041Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:11.360117-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239404, - "rtt_ms": 2.239404, + "rtt_ns": 2156958, + "rtt_ms": 2.156958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:29.611699641Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:11.360144-08:00" }, { "operation": "add_edge", - "rtt_ns": 2280894, - "rtt_ms": 2.280894, + "rtt_ns": 2242708, + "rtt_ms": 2.242708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "92", - "timestamp": "2025-11-27T01:23:29.611755091Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:11.360228-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313393, - "rtt_ms": 2.313393, + "rtt_ns": 2219833, + "rtt_ms": 2.219833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "188", - "timestamp": "2025-11-27T01:23:29.61191712Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:11.360241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575426, - "rtt_ms": 1.575426, + "rtt_ns": 976625, + "rtt_ms": 0.976625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.61203458Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:03:11.3609-08:00" }, { "operation": "add_edge", - "rtt_ns": 3083501, - "rtt_ms": 3.083501, + "rtt_ns": 1271833, + "rtt_ms": 1.271833, "checkpoint": 0, "vertex_from": "1", "vertex_to": "240", - "timestamp": "2025-11-27T01:23:29.612575088Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2832391, - "rtt_ms": 2.832391, - "checkpoint": 0, - "vertex_from": "214", - "timestamp": "2025-11-27T01:23:29.613482965Z" + "timestamp": "2025-11-27T04:03:11.361108-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203354, - "rtt_ms": 2.203354, + "rtt_ns": 1690166, + "rtt_ms": 1.690166, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.613659795Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:03:11.361155-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2181954, - "rtt_ms": 2.181954, + "operation": "add_vertex", + "rtt_ns": 1577625, + "rtt_ms": 1.577625, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.613714675Z" + "vertex_from": "214", + "timestamp": "2025-11-27T04:03:11.361623-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114394, - "rtt_ms": 2.114394, + "rtt_ns": 1815500, + "rtt_ms": 1.8155, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.613782885Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.361812-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268713, - "rtt_ms": 2.268713, + "rtt_ns": 1712334, + "rtt_ms": 1.712334, "checkpoint": 0, "vertex_from": "1", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:29.613802194Z" + "timestamp": "2025-11-27T04:03:11.361857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767584, - "rtt_ms": 1.767584, + "rtt_ns": 1667625, + "rtt_ms": 1.667625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.613803474Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:11.361909-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096973, - "rtt_ms": 2.096973, + "rtt_ns": 1719250, + "rtt_ms": 1.71925, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "5", - "timestamp": "2025-11-27T01:23:29.613854124Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:11.361949-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195863, - "rtt_ms": 2.195863, + "rtt_ns": 1861125, + "rtt_ms": 1.861125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:29.613896644Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:11.361977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011504, - "rtt_ms": 2.011504, + "rtt_ns": 1869791, + "rtt_ms": 1.869791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:29.613930124Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:11.361988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432156, - "rtt_ms": 1.432156, + "rtt_ns": 1040375, + "rtt_ms": 1.040375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "314", - "timestamp": "2025-11-27T01:23:29.614008864Z" + "timestamp": "2025-11-27T04:03:11.362854-08:00" }, { "operation": "add_edge", - "rtt_ns": 959017, - "rtt_ms": 0.959017, + "rtt_ns": 1969000, + "rtt_ms": 1.969, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:29.614675022Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:03:11.362871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080097, - "rtt_ms": 1.080097, + "rtt_ns": 1834042, + "rtt_ms": 1.834042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.614741052Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:11.36299-08:00" }, { "operation": "add_edge", - "rtt_ns": 975968, - "rtt_ms": 0.975968, + "rtt_ns": 1770875, + "rtt_ms": 1.770875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.614779252Z" + "vertex_to": "214", + "timestamp": "2025-11-27T04:03:11.363395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349686, - "rtt_ms": 1.349686, + "rtt_ns": 1632292, + "rtt_ms": 1.632292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "214", - "timestamp": "2025-11-27T01:23:29.614833241Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:11.363622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010717, - "rtt_ms": 1.010717, + "rtt_ns": 1749167, + "rtt_ms": 1.749167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:29.614867551Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:11.363699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064927, - "rtt_ms": 1.064927, + "rtt_ns": 2621584, + "rtt_ms": 2.621584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.614870011Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:11.36373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414416, - "rtt_ms": 1.414416, + "rtt_ns": 1863583, + "rtt_ms": 1.863583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:29.61534578Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:11.363774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582015, - "rtt_ms": 1.582015, + "rtt_ns": 1932083, + "rtt_ms": 1.932083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:29.61536702Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:11.36379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594645, - "rtt_ms": 1.594645, + "rtt_ns": 1884667, + "rtt_ms": 1.884667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:29.615492539Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.363862-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1815944, - "rtt_ms": 1.815944, + "operation": "add_edge", + "rtt_ns": 971250, + "rtt_ms": 0.97125, "checkpoint": 0, - "vertex_from": "634", - "timestamp": "2025-11-27T01:23:29.615829138Z" + "vertex_from": "1", + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:11.364671-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1356226, - "rtt_ms": 1.356226, + "rtt_ns": 1454125, + "rtt_ms": 1.454125, "checkpoint": 0, - "vertex_from": "841", - "timestamp": "2025-11-27T01:23:29.616230037Z" + "vertex_from": "634", + "timestamp": "2025-11-27T04:03:11.36485-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2022204, - "rtt_ms": 2.022204, + "operation": "add_edge", + "rtt_ns": 2132750, + "rtt_ms": 2.13275, "checkpoint": 0, - "vertex_from": "677", - "timestamp": "2025-11-27T01:23:29.616805696Z" + "vertex_from": "1", + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:11.364988-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065164, - "rtt_ms": 2.065164, + "rtt_ns": 1381667, + "rtt_ms": 1.381667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:29.616808596Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:11.365005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241643, - "rtt_ms": 2.241643, + "rtt_ns": 2024042, + "rtt_ms": 2.024042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:29.616918235Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:11.365017-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109694, - "rtt_ms": 2.109694, + "rtt_ns": 1317333, + "rtt_ms": 1.317333, "checkpoint": 0, "vertex_from": "1", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.616978405Z" + "timestamp": "2025-11-27T04:03:11.365109-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2195124, - "rtt_ms": 2.195124, + "operation": "add_vertex", + "rtt_ns": 1339125, + "rtt_ms": 1.339125, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:29.617029765Z" + "vertex_from": "841", + "timestamp": "2025-11-27T04:03:11.365205-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1743215, - "rtt_ms": 1.743215, + "operation": "add_vertex", + "rtt_ns": 1556667, + "rtt_ms": 1.556667, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:29.617111755Z" + "vertex_from": "677", + "timestamp": "2025-11-27T04:03:11.365288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617956, - "rtt_ms": 1.617956, + "rtt_ns": 2473167, + "rtt_ms": 2.473167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:29.617113555Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:11.365345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787145, - "rtt_ms": 1.787145, + "rtt_ns": 1645583, + "rtt_ms": 1.645583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:29.617134605Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:11.365421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383856, - "rtt_ms": 1.383856, + "rtt_ns": 1001167, + "rtt_ms": 1.001167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "634", - "timestamp": "2025-11-27T01:23:29.617213484Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:03:11.366206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034677, - "rtt_ms": 1.034677, + "rtt_ns": 1228584, + "rtt_ms": 1.228584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:29.617265224Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:11.366246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376126, - "rtt_ms": 1.376126, + "rtt_ns": 1262917, + "rtt_ms": 1.262917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.618295951Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:11.366268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523695, - "rtt_ms": 1.523695, + "rtt_ns": 2074500, + "rtt_ms": 2.0745, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "677", - "timestamp": "2025-11-27T01:23:29.618329851Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:11.366746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964514, - "rtt_ms": 1.964514, + "rtt_ns": 1549167, + "rtt_ms": 1.549167, "checkpoint": 0, "vertex_from": "1", "vertex_to": "596", - "timestamp": "2025-11-27T01:23:29.618944149Z" + "timestamp": "2025-11-27T04:03:11.366895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960414, - "rtt_ms": 1.960414, + "rtt_ns": 1481417, + "rtt_ms": 1.481417, "checkpoint": 0, "vertex_from": "1", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.618993329Z" + "timestamp": "2025-11-27T04:03:11.366904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888654, - "rtt_ms": 1.888654, + "rtt_ns": 2110875, + "rtt_ms": 2.110875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "39", - "timestamp": "2025-11-27T01:23:29.619025029Z" + "vertex_to": "634", + "timestamp": "2025-11-27T04:03:11.366962-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215253, - "rtt_ms": 2.215253, + "rtt_ns": 1725833, + "rtt_ms": 1.725833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:29.619025949Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:03:11.367014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934095, - "rtt_ms": 1.934095, + "rtt_ns": 1974084, + "rtt_ms": 1.974084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:29.619149319Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:11.367084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2068913, - "rtt_ms": 2.068913, + "rtt_ns": 2355916, + "rtt_ms": 2.355916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:29.619184008Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:11.367345-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093613, - "rtt_ms": 2.093613, + "rtt_ns": 1186458, + "rtt_ms": 1.186458, "checkpoint": 0, "vertex_from": "1", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:29.619206798Z" + "timestamp": "2025-11-27T04:03:11.367395-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009174, - "rtt_ms": 2.009174, + "rtt_ns": 1373417, + "rtt_ms": 1.373417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:29.619276098Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:11.368388-08:00" }, { "operation": "add_edge", - "rtt_ns": 995187, - "rtt_ms": 0.995187, + "rtt_ns": 1321375, + "rtt_ms": 1.321375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:29.619326718Z" + "vertex_to": "203", + "timestamp": "2025-11-27T04:03:11.368406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064237, - "rtt_ms": 1.064237, + "rtt_ns": 2305916, + "rtt_ms": 2.305916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:29.619362018Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:03:11.368576-08:00" }, { "operation": "add_edge", - "rtt_ns": 608178, - "rtt_ms": 0.608178, + "rtt_ns": 1929833, + "rtt_ms": 1.929833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:29.619553437Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:11.368677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406546, - "rtt_ms": 1.406546, + "rtt_ns": 2467375, + "rtt_ms": 2.467375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "203", - "timestamp": "2025-11-27T01:23:29.620401095Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:11.368715-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1433976, - "rtt_ms": 1.433976, + "rtt_ns": 1401958, + "rtt_ms": 1.401958, "checkpoint": 0, "vertex_from": "929", - "timestamp": "2025-11-27T01:23:29.620461895Z" + "timestamp": "2025-11-27T04:03:11.368798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452036, - "rtt_ms": 1.452036, + "rtt_ns": 1911292, + "rtt_ms": 1.911292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "285", - "timestamp": "2025-11-27T01:23:29.620478695Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:11.368816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341596, - "rtt_ms": 1.341596, + "rtt_ns": 1979917, + "rtt_ms": 1.979917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:29.620492495Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:11.368876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837825, - "rtt_ms": 1.837825, + "rtt_ns": 1951542, + "rtt_ms": 1.951542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "395", - "timestamp": "2025-11-27T01:23:29.621165963Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:11.368914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870285, - "rtt_ms": 1.870285, + "rtt_ns": 1576708, + "rtt_ms": 1.576708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.621234253Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:03:11.368923-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050825, - "rtt_ms": 2.050825, + "rtt_ns": 1435584, + "rtt_ms": 1.435584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.621237723Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.37036-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056754, - "rtt_ms": 2.056754, + "rtt_ns": 1971916, + "rtt_ms": 1.971916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "14", - "timestamp": "2025-11-27T01:23:29.621264932Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:11.370379-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1745295, - "rtt_ms": 1.745295, + "rtt_ns": 1581083, + "rtt_ms": 1.581083, "checkpoint": 0, "vertex_from": "837", - "timestamp": "2025-11-27T01:23:29.621301612Z" + "timestamp": "2025-11-27T04:03:11.370458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049224, - "rtt_ms": 2.049224, + "rtt_ns": 1796792, + "rtt_ms": 1.796792, "checkpoint": 0, "vertex_from": "1", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:29.621327582Z" + "timestamp": "2025-11-27T04:03:11.370475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092627, - "rtt_ms": 1.092627, + "rtt_ns": 1758334, + "rtt_ms": 1.758334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:29.621495032Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:03:11.370476-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1995542, + "rtt_ms": 1.995542, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "14", + "timestamp": "2025-11-27T04:03:11.370573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049777, - "rtt_ms": 1.049777, + "rtt_ns": 1806875, + "rtt_ms": 1.806875, "checkpoint": 0, "vertex_from": "1", "vertex_to": "929", - "timestamp": "2025-11-27T01:23:29.621512222Z" + "timestamp": "2025-11-27T04:03:11.370605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080907, - "rtt_ms": 1.080907, + "rtt_ns": 1840958, + "rtt_ms": 1.840958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.621561072Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:11.370756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088857, - "rtt_ms": 1.088857, + "rtt_ns": 2391500, + "rtt_ms": 2.3915, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:29.621583192Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:11.370781-08:00" }, { "operation": "add_edge", - "rtt_ns": 724618, - "rtt_ms": 0.724618, + "rtt_ns": 1973625, + "rtt_ms": 1.973625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "309", - "timestamp": "2025-11-27T01:23:29.621960761Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.370791-08:00" }, { "operation": "add_edge", - "rtt_ns": 890327, - "rtt_ms": 0.890327, + "rtt_ns": 1584416, + "rtt_ms": 1.584416, "checkpoint": 0, "vertex_from": "1", "vertex_to": "33", - "timestamp": "2025-11-27T01:23:29.62205879Z" + "timestamp": "2025-11-27T04:03:11.371964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210717, - "rtt_ms": 1.210717, + "rtt_ns": 1533500, + "rtt_ms": 1.5335, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:29.622540159Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:03:11.372009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382186, - "rtt_ms": 1.382186, + "rtt_ns": 1448958, + "rtt_ms": 1.448958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:29.622621209Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:11.372055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126067, - "rtt_ms": 1.126067, + "rtt_ns": 1824833, + "rtt_ms": 1.824833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:29.622622699Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:11.372186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365917, - "rtt_ms": 1.365917, + "rtt_ns": 1615334, + "rtt_ms": 1.615334, "checkpoint": 0, "vertex_from": "1", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:29.622635859Z" + "timestamp": "2025-11-27T04:03:11.372189-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1154957, - "rtt_ms": 1.154957, + "operation": "add_edge", + "rtt_ns": 1410375, + "rtt_ms": 1.410375, "checkpoint": 0, - "vertex_from": "116", - "timestamp": "2025-11-27T01:23:29.623216987Z" + "vertex_from": "1", + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:11.372202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916955, - "rtt_ms": 1.916955, + "rtt_ns": 1780083, + "rtt_ms": 1.780083, "checkpoint": 0, "vertex_from": "1", "vertex_to": "837", - "timestamp": "2025-11-27T01:23:29.623219167Z" + "timestamp": "2025-11-27T04:03:11.372239-08:00" }, { "operation": "add_edge", - "rtt_ns": 2387013, - "rtt_ms": 2.387013, + "rtt_ns": 1899959, + "rtt_ms": 1.899959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:29.623949925Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:11.372376-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386983, - "rtt_ms": 2.386983, + "rtt_ns": 1898708, + "rtt_ms": 1.898708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:29.623971475Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:11.37268-08:00" }, { "operation": "add_edge", - "rtt_ns": 2493893, - "rtt_ms": 2.493893, + "rtt_ns": 2275833, + "rtt_ms": 2.275833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:29.624007685Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:11.373033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148663, - "rtt_ms": 2.148663, + "rtt_ns": 1628083, + "rtt_ms": 1.628083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "625", - "timestamp": "2025-11-27T01:23:29.624110624Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:03:11.373869-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1589225, - "rtt_ms": 1.589225, + "rtt_ns": 1697584, + "rtt_ms": 1.697584, "checkpoint": 0, "vertex_from": "855", - "timestamp": "2025-11-27T01:23:29.624131514Z" + "timestamp": "2025-11-27T04:03:11.373886-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1539625, + "rtt_ms": 1.539625, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:11.373917-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1933604, - "rtt_ms": 1.933604, + "rtt_ns": 1777792, + "rtt_ms": 1.777792, "checkpoint": 0, "vertex_from": "211", - "timestamp": "2025-11-27T01:23:29.624557893Z" + "timestamp": "2025-11-27T04:03:11.373967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987734, - "rtt_ms": 1.987734, + "rtt_ns": 1971000, + "rtt_ms": 1.971, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "333", - "timestamp": "2025-11-27T01:23:29.624625023Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:03:11.373981-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2066284, - "rtt_ms": 2.066284, + "operation": "add_vertex", + "rtt_ns": 1994792, + "rtt_ms": 1.994792, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:29.624691013Z" + "vertex_from": "116", + "timestamp": "2025-11-27T04:03:11.374051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523326, - "rtt_ms": 1.523326, + "rtt_ns": 2138459, + "rtt_ms": 2.138459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:29.624745493Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:11.374103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539686, - "rtt_ms": 1.539686, + "rtt_ns": 2282709, + "rtt_ms": 2.282709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:29.624757063Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:11.374486-08:00" }, { "operation": "add_edge", - "rtt_ns": 842097, - "rtt_ms": 0.842097, + "rtt_ns": 1469541, + "rtt_ms": 1.469541, "checkpoint": 0, "vertex_from": "1", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:29.624815442Z" + "timestamp": "2025-11-27T04:03:11.374504-08:00" }, { "operation": "add_edge", - "rtt_ns": 916767, - "rtt_ms": 0.916767, + "rtt_ns": 2006375, + "rtt_ms": 2.006375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:29.624868672Z" + "timestamp": "2025-11-27T04:03:11.374688-08:00" }, { "operation": "add_edge", - "rtt_ns": 877507, - "rtt_ms": 0.877507, + "rtt_ns": 1768709, + "rtt_ms": 1.768709, "checkpoint": 0, "vertex_from": "1", "vertex_to": "901", - "timestamp": "2025-11-27T01:23:29.624886402Z" + "timestamp": "2025-11-27T04:03:11.375639-08:00" }, { "operation": "add_edge", - "rtt_ns": 867838, - "rtt_ms": 0.867838, + "rtt_ns": 1829084, + "rtt_ms": 1.829084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "855", - "timestamp": "2025-11-27T01:23:29.624999812Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:11.375747-08:00" }, { "operation": "add_edge", - "rtt_ns": 891438, - "rtt_ms": 0.891438, + "rtt_ns": 1791083, + "rtt_ms": 1.791083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:29.625003132Z" + "vertex_to": "211", + "timestamp": "2025-11-27T04:03:11.375758-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1182996, - "rtt_ms": 1.182996, + "operation": "add_edge", + "rtt_ns": 1348291, + "rtt_ms": 1.348291, "checkpoint": 0, - "vertex_from": "182", - "timestamp": "2025-11-27T01:23:29.625810289Z" + "vertex_from": "1", + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:11.375835-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074664, - "rtt_ms": 2.074664, + "rtt_ns": 1172125, + "rtt_ms": 1.172125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "211", - "timestamp": "2025-11-27T01:23:29.626633257Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:11.375861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906404, - "rtt_ms": 1.906404, + "rtt_ns": 2014041, + "rtt_ms": 2.014041, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:29.626776636Z" + "vertex_to": "855", + "timestamp": "2025-11-27T04:03:11.3759-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017653, - "rtt_ms": 2.017653, + "rtt_ns": 1889917, + "rtt_ms": 1.889917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:29.626776766Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:11.375941-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1975594, - "rtt_ms": 1.975594, + "operation": "add_vertex", + "rtt_ns": 1978292, + "rtt_ms": 1.978292, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:29.626792336Z" + "vertex_from": "182", + "timestamp": "2025-11-27T04:03:11.375961-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100683, - "rtt_ms": 2.100683, + "rtt_ns": 1978625, + "rtt_ms": 1.978625, "checkpoint": 0, "vertex_from": "1", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:29.626794126Z" + "timestamp": "2025-11-27T04:03:11.376083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897554, - "rtt_ms": 1.897554, + "rtt_ns": 1583542, + "rtt_ms": 1.583542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:29.626901776Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:11.376089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904254, - "rtt_ms": 1.904254, + "rtt_ns": 1116334, + "rtt_ms": 1.116334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:29.626905886Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:11.376952-08:00" }, { "operation": "add_edge", - "rtt_ns": 2171353, - "rtt_ms": 2.171353, + "rtt_ns": 1701375, + "rtt_ms": 1.701375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:29.626918466Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:11.377643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043664, - "rtt_ms": 2.043664, + "rtt_ns": 1824083, + "rtt_ms": 1.824083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:29.626931226Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:11.377725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184377, - "rtt_ms": 1.184377, + "rtt_ns": 1877000, + "rtt_ms": 1.877, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "182", - "timestamp": "2025-11-27T01:23:29.626995256Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:03:11.377739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624575, - "rtt_ms": 1.624575, + "rtt_ns": 2153000, + "rtt_ms": 2.153, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "11", - "timestamp": "2025-11-27T01:23:29.628260932Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:11.377793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407136, - "rtt_ms": 1.407136, + "rtt_ns": 1868750, + "rtt_ms": 1.86875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:29.628310182Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:03:11.37783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057474, - "rtt_ms": 2.057474, + "rtt_ns": 2084750, + "rtt_ms": 2.08475, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.62885398Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:11.377844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165324, - "rtt_ms": 2.165324, + "rtt_ns": 1805333, + "rtt_ms": 1.805333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:29.628945Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:11.377889-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169974, - "rtt_ms": 2.169974, + "rtt_ns": 1848208, + "rtt_ms": 1.848208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:29.62894843Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.377938-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132674, - "rtt_ms": 2.132674, + "rtt_ns": 2204000, + "rtt_ms": 2.204, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.62905349Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:11.377951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294984, - "rtt_ms": 2.294984, + "rtt_ns": 1991667, + "rtt_ms": 1.991667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:29.62908881Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:11.378945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230143, - "rtt_ms": 2.230143, + "rtt_ns": 1096583, + "rtt_ms": 1.096583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.629163719Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:11.378987-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364623, - "rtt_ms": 2.364623, + "rtt_ns": 1348917, + "rtt_ms": 1.348917, "checkpoint": 0, "vertex_from": "1", "vertex_to": "355", - "timestamp": "2025-11-27T01:23:29.629271799Z" + "timestamp": "2025-11-27T04:03:11.378993-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2291463, - "rtt_ms": 2.291463, + "rtt_ns": 1901083, + "rtt_ms": 1.901083, "checkpoint": 0, "vertex_from": "824", - "timestamp": "2025-11-27T01:23:29.629289629Z" + "timestamp": "2025-11-27T04:03:11.379695-08:00" }, { "operation": "add_edge", - "rtt_ns": 986927, - "rtt_ms": 0.986927, + "rtt_ns": 1943166, + "rtt_ms": 1.943166, "checkpoint": 0, "vertex_from": "1", "vertex_to": "177", - "timestamp": "2025-11-27T01:23:29.629298069Z" + "timestamp": "2025-11-27T04:03:11.379788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115797, - "rtt_ms": 1.115797, + "rtt_ns": 2080042, + "rtt_ms": 2.080042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:29.629378999Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.37982-08:00" }, { "operation": "add_edge", - "rtt_ns": 701298, - "rtt_ms": 0.701298, + "rtt_ns": 2089625, + "rtt_ms": 2.089625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:29.629556698Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:11.37992-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 704848, - "rtt_ms": 0.704848, + "operation": "add_edge", + "rtt_ns": 1974625, + "rtt_ms": 1.974625, "checkpoint": 0, - "vertex_from": "669", - "timestamp": "2025-11-27T01:23:29.629979047Z" + "vertex_from": "1", + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:11.379927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084807, - "rtt_ms": 1.084807, + "rtt_ns": 2207042, + "rtt_ms": 2.207042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:29.630031027Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.379933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151527, - "rtt_ms": 1.151527, + "rtt_ns": 2020875, + "rtt_ms": 2.020875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:29.630101397Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:11.37996-08:00" }, { "operation": "add_vertex", - "rtt_ns": 621608, - "rtt_ms": 0.621608, + "rtt_ns": 1382541, + "rtt_ms": 1.382541, "checkpoint": 0, - "vertex_from": "794", - "timestamp": "2025-11-27T01:23:29.630181566Z" + "vertex_from": "669", + "timestamp": "2025-11-27T04:03:11.381174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611455, - "rtt_ms": 1.611455, + "rtt_ns": 2217959, + "rtt_ms": 2.217959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.630666305Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:11.381206-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215233, - "rtt_ms": 2.215233, + "rtt_ns": 2241709, + "rtt_ms": 2.241709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:29.631304633Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:03:11.381236-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2098914, - "rtt_ms": 2.098914, + "operation": "add_vertex", + "rtt_ns": 1701833, + "rtt_ms": 1.701833, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:29.631388883Z" + "vertex_from": "662", + "timestamp": "2025-11-27T04:03:11.381524-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236354, - "rtt_ms": 2.236354, + "rtt_ns": 1849209, + "rtt_ms": 1.849209, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "696", - "timestamp": "2025-11-27T01:23:29.631401243Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:03:11.381783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062194, - "rtt_ms": 2.062194, + "rtt_ns": 1923125, + "rtt_ms": 1.923125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "228", - "timestamp": "2025-11-27T01:23:29.631442173Z" + "timestamp": "2025-11-27T04:03:11.381844-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2254743, - "rtt_ms": 2.254743, + "operation": "add_edge", + "rtt_ns": 2216042, + "rtt_ms": 2.216042, "checkpoint": 0, - "vertex_from": "662", - "timestamp": "2025-11-27T01:23:29.631555632Z" + "vertex_from": "1", + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:11.381912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593315, - "rtt_ms": 1.593315, + "rtt_ns": 2983708, + "rtt_ms": 2.983708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "669", - "timestamp": "2025-11-27T01:23:29.631572692Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:11.381931-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1600575, - "rtt_ms": 1.600575, + "operation": "add_vertex", + "rtt_ns": 2005292, + "rtt_ms": 2.005292, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:29.631633152Z" + "vertex_from": "794", + "timestamp": "2025-11-27T04:03:11.381933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083987, - "rtt_ms": 1.083987, + "rtt_ns": 2288333, + "rtt_ms": 2.288333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:29.631751612Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:11.382249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586636, - "rtt_ms": 1.586636, + "rtt_ns": 1255917, + "rtt_ms": 1.255917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:29.631768532Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:11.383169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691134, - "rtt_ms": 1.691134, + "rtt_ns": 2072500, + "rtt_ms": 2.0725, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:29.631794091Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:03:11.383247-08:00" }, { "operation": "add_edge", - "rtt_ns": 678468, - "rtt_ms": 0.678468, + "rtt_ns": 2537542, + "rtt_ms": 2.537542, "checkpoint": 0, "vertex_from": "1", "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.631984061Z" + "timestamp": "2025-11-27T04:03:11.383775-08:00" }, { "operation": "add_edge", - "rtt_ns": 870587, - "rtt_ms": 0.870587, + "rtt_ns": 2582791, + "rtt_ms": 2.582791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "316", - "timestamp": "2025-11-27T01:23:29.63226057Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:11.38379-08:00" }, { "operation": "add_edge", - "rtt_ns": 882487, - "rtt_ms": 0.882487, + "rtt_ns": 2433917, + "rtt_ms": 2.433917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:29.63228472Z" + "vertex_to": "316", + "timestamp": "2025-11-27T04:03:11.384218-08:00" }, { "operation": "add_edge", - "rtt_ns": 871907, - "rtt_ms": 0.871907, + "rtt_ns": 2742917, + "rtt_ms": 2.742917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:29.63231504Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:03:11.384268-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 764638, - "rtt_ms": 0.764638, + "operation": "add_edge", + "rtt_ns": 2209083, + "rtt_ms": 2.209083, "checkpoint": 0, - "vertex_from": "787", - "timestamp": "2025-11-27T01:23:29.63234013Z" + "vertex_from": "1", + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:11.384458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750975, - "rtt_ms": 1.750975, + "rtt_ns": 2574833, + "rtt_ms": 2.574833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:29.633307067Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:03:11.384508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955624, - "rtt_ms": 1.955624, + "rtt_ns": 2758250, + "rtt_ms": 2.75825, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:29.633589786Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:11.384603-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326173, - "rtt_ms": 2.326173, + "rtt_ns": 1536916, + "rtt_ms": 1.536916, "checkpoint": 0, "vertex_from": "1", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.634078975Z" + "timestamp": "2025-11-27T04:03:11.384709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2353243, - "rtt_ms": 2.353243, + "rtt_ns": 1472833, + "rtt_ms": 1.472833, "checkpoint": 0, "vertex_from": "1", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.634123385Z" + "timestamp": "2025-11-27T04:03:11.384721-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2424093, - "rtt_ms": 2.424093, + "operation": "add_vertex", + "rtt_ns": 2799958, + "rtt_ms": 2.799958, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.634219224Z" + "vertex_from": "787", + "timestamp": "2025-11-27T04:03:11.384732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249793, - "rtt_ms": 2.249793, + "rtt_ns": 1168750, + "rtt_ms": 1.16875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:29.634235454Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:11.385388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035884, - "rtt_ms": 2.035884, + "rtt_ns": 1614667, + "rtt_ms": 1.614667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:29.634321884Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:11.385406-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096444, - "rtt_ms": 2.096444, + "rtt_ns": 1241625, + "rtt_ms": 1.241625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:29.634358104Z" + "vertex_to": "183", + "timestamp": "2025-11-27T04:03:11.385701-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047584, - "rtt_ms": 2.047584, + "rtt_ns": 1643833, + "rtt_ms": 1.643833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "183", - "timestamp": "2025-11-27T01:23:29.634363504Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:11.385913-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030524, - "rtt_ms": 2.030524, + "rtt_ns": 1419959, + "rtt_ms": 1.419959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:29.634370874Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:11.385929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338116, - "rtt_ms": 1.338116, + "rtt_ns": 2287459, + "rtt_ms": 2.287459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:29.634646663Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.386063-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1109367, - "rtt_ms": 1.109367, + "rtt_ns": 1570625, + "rtt_ms": 1.570625, "checkpoint": 0, "vertex_from": "496", - "timestamp": "2025-11-27T01:23:29.634702613Z" + "timestamp": "2025-11-27T04:03:11.386175-08:00" }, { "operation": "add_edge", - "rtt_ns": 747777, - "rtt_ms": 0.747777, + "rtt_ns": 1017083, + "rtt_ms": 1.017083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:29.634830482Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:11.386405-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 807707, - "rtt_ms": 0.807707, + "operation": "add_edge", + "rtt_ns": 1883667, + "rtt_ms": 1.883667, "checkpoint": 0, - "vertex_from": "470", - "timestamp": "2025-11-27T01:23:29.634934902Z" + "vertex_from": "1", + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:11.386595-08:00" }, { "operation": "add_edge", - "rtt_ns": 787698, - "rtt_ms": 0.787698, + "rtt_ns": 1917208, + "rtt_ms": 1.917208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:29.635024822Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:11.38665-08:00" }, { "operation": "add_edge", - "rtt_ns": 838378, - "rtt_ms": 0.838378, + "rtt_ns": 1433500, + "rtt_ms": 1.4335, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:29.635059062Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:11.386842-08:00" }, { "operation": "add_vertex", - "rtt_ns": 719208, - "rtt_ms": 0.719208, + "rtt_ns": 1554292, + "rtt_ms": 1.554292, "checkpoint": 0, "vertex_from": "587", - "timestamp": "2025-11-27T01:23:29.635091982Z" + "timestamp": "2025-11-27T04:03:11.38762-08:00" }, { - "operation": "add_edge", - "rtt_ns": 786988, - "rtt_ms": 0.786988, + "operation": "add_vertex", + "rtt_ns": 2918750, + "rtt_ms": 2.91875, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.635110022Z" + "vertex_from": "470", + "timestamp": "2025-11-27T04:03:11.387643-08:00" }, { "operation": "add_edge", - "rtt_ns": 799377, - "rtt_ms": 0.799377, + "rtt_ns": 1739334, + "rtt_ms": 1.739334, "checkpoint": 0, "vertex_from": "1", "vertex_to": "574", - "timestamp": "2025-11-27T01:23:29.635159851Z" + "timestamp": "2025-11-27T04:03:11.387653-08:00" }, { "operation": "add_edge", - "rtt_ns": 818797, - "rtt_ms": 0.818797, + "rtt_ns": 2308375, + "rtt_ms": 2.308375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:29.635183971Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:11.38801-08:00" }, { "operation": "add_edge", - "rtt_ns": 636408, - "rtt_ms": 0.636408, + "rtt_ns": 1992542, + "rtt_ms": 1.992542, "checkpoint": 0, "vertex_from": "1", "vertex_to": "496", - "timestamp": "2025-11-27T01:23:29.635339671Z" + "timestamp": "2025-11-27T04:03:11.388168-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1635125, + "rtt_ms": 1.635125, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:11.388286-08:00" }, { "operation": "add_edge", - "rtt_ns": 703608, - "rtt_ms": 0.703608, + "rtt_ns": 1898375, + "rtt_ms": 1.898375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "976", - "timestamp": "2025-11-27T01:23:29.635352641Z" + "timestamp": "2025-11-27T04:03:11.388305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037177, - "rtt_ms": 1.037177, + "rtt_ns": 2171625, + "rtt_ms": 2.171625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:29.636198568Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:03:11.388768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281356, - "rtt_ms": 1.281356, + "rtt_ns": 2855084, + "rtt_ms": 2.855084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "470", - "timestamp": "2025-11-27T01:23:29.636216748Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:11.388785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109196, - "rtt_ms": 1.109196, + "rtt_ns": 1472083, + "rtt_ms": 1.472083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:29.636221088Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:03:11.389092-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1158836, - "rtt_ms": 1.158836, + "rtt_ns": 2344791, + "rtt_ms": 2.344791, "checkpoint": 0, "vertex_from": "570", - "timestamp": "2025-11-27T01:23:29.636221768Z" + "timestamp": "2025-11-27T04:03:11.38919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210086, - "rtt_ms": 1.210086, + "rtt_ns": 1247042, + "rtt_ms": 1.247042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:29.636236858Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:11.389258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784725, - "rtt_ms": 1.784725, + "rtt_ns": 1101875, + "rtt_ms": 1.101875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:29.636877237Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:11.389271-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044285, - "rtt_ms": 2.044285, + "rtt_ns": 1640250, + "rtt_ms": 1.64025, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "173", - "timestamp": "2025-11-27T01:23:29.636877597Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1594435, - "rtt_ms": 1.594435, - "checkpoint": 0, - "vertex_from": "327", - "timestamp": "2025-11-27T01:23:29.636949766Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:11.389294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780105, - "rtt_ms": 1.780105, + "rtt_ns": 1759583, + "rtt_ms": 1.759583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:29.636965536Z" + "vertex_to": "470", + "timestamp": "2025-11-27T04:03:11.389403-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1321257, - "rtt_ms": 1.321257, + "operation": "add_edge", + "rtt_ns": 2017583, + "rtt_ms": 2.017583, "checkpoint": 0, - "vertex_from": "606", - "timestamp": "2025-11-27T01:23:29.637544405Z" + "vertex_from": "1", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:11.390304-08:00" }, { "operation": "add_vertex", - "rtt_ns": 745887, - "rtt_ms": 0.745887, + "rtt_ns": 2154875, + "rtt_ms": 2.154875, "checkpoint": 0, - "vertex_from": "775", - "timestamp": "2025-11-27T01:23:29.637629204Z" + "vertex_from": "327", + "timestamp": "2025-11-27T04:03:11.39046-08:00" }, { "operation": "add_edge", - "rtt_ns": 3280081, - "rtt_ms": 3.280081, + "rtt_ns": 1070500, + "rtt_ms": 1.0705, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:29.638622012Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:11.390475-08:00" }, { "operation": "add_edge", - "rtt_ns": 2463133, - "rtt_ms": 2.463133, + "rtt_ns": 1690541, + "rtt_ms": 1.690541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:29.638701171Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:11.390476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2538133, - "rtt_ms": 2.538133, + "rtt_ns": 1303542, + "rtt_ms": 1.303542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:29.638758391Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:03:11.390494-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2608213, - "rtt_ms": 2.608213, + "operation": "add_vertex", + "rtt_ns": 1424834, + "rtt_ms": 1.424834, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:29.638808721Z" + "vertex_from": "606", + "timestamp": "2025-11-27T04:03:11.390519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990544, - "rtt_ms": 1.990544, + "rtt_ns": 1424125, + "rtt_ms": 1.424125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.638875151Z" + "timestamp": "2025-11-27T04:03:11.390696-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1941535, - "rtt_ms": 1.941535, + "operation": "add_vertex", + "rtt_ns": 1431167, + "rtt_ms": 1.431167, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:29.638909021Z" + "vertex_from": "775", + "timestamp": "2025-11-27T04:03:11.390727-08:00" }, { "operation": "add_edge", - "rtt_ns": 2710133, - "rtt_ms": 2.710133, + "rtt_ns": 2043167, + "rtt_ms": 2.043167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "570", - "timestamp": "2025-11-27T01:23:29.638933341Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:11.390812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513505, - "rtt_ms": 1.513505, + "rtt_ns": 2021458, + "rtt_ms": 2.021458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "606", - "timestamp": "2025-11-27T01:23:29.63905842Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:11.391282-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138044, - "rtt_ms": 2.138044, + "rtt_ns": 1237625, + "rtt_ms": 1.237625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "327", - "timestamp": "2025-11-27T01:23:29.63908835Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:11.391733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465616, - "rtt_ms": 1.465616, + "rtt_ns": 1025208, + "rtt_ms": 1.025208, "checkpoint": 0, "vertex_from": "1", "vertex_to": "775", - "timestamp": "2025-11-27T01:23:29.63909557Z" + "timestamp": "2025-11-27T04:03:11.391752-08:00" }, { - "operation": "add_edge", - "rtt_ns": 932058, - "rtt_ms": 0.932058, + "operation": "add_vertex", + "rtt_ns": 1496083, + "rtt_ms": 1.496083, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:29.639743568Z" + "vertex_from": "482", + "timestamp": "2025-11-27T04:03:11.391803-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1049947, - "rtt_ms": 1.049947, + "operation": "add_vertex", + "rtt_ns": 2031708, + "rtt_ms": 2.031708, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:29.639810498Z" + "vertex_from": "339", + "timestamp": "2025-11-27T04:03:11.392729-08:00" }, { - "operation": "add_edge", - "rtt_ns": 930207, - "rtt_ms": 0.930207, + "operation": "add_vertex", + "rtt_ns": 1510083, + "rtt_ms": 1.510083, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:29.639840938Z" + "vertex_from": "647", + "timestamp": "2025-11-27T04:03:11.393247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147237, - "rtt_ms": 1.147237, + "rtt_ns": 2878416, + "rtt_ms": 2.878416, "checkpoint": 0, "vertex_from": "1", "vertex_to": "600", - "timestamp": "2025-11-27T01:23:29.639850098Z" + "timestamp": "2025-11-27T04:03:11.393354-08:00" }, { "operation": "add_edge", - "rtt_ns": 917577, - "rtt_ms": 0.917577, + "rtt_ns": 1633125, + "rtt_ms": 1.633125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:29.639852228Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1023907, - "rtt_ms": 1.023907, - "checkpoint": 0, - "vertex_from": "339", - "timestamp": "2025-11-27T01:23:29.639902198Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:11.393387-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1230206, - "rtt_ms": 1.230206, + "operation": "add_edge", + "rtt_ns": 2933167, + "rtt_ms": 2.933167, "checkpoint": 0, - "vertex_from": "482", - "timestamp": "2025-11-27T01:23:29.639857438Z" + "vertex_from": "1", + "vertex_to": "905", + "timestamp": "2025-11-27T04:03:11.39341-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1556366, - "rtt_ms": 1.556366, + "operation": "add_edge", + "rtt_ns": 2942250, + "rtt_ms": 2.94225, "checkpoint": 0, - "vertex_from": "55", - "timestamp": "2025-11-27T01:23:29.640654176Z" + "vertex_from": "1", + "vertex_to": "606", + "timestamp": "2025-11-27T04:03:11.393462-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1612216, - "rtt_ms": 1.612216, + "operation": "add_edge", + "rtt_ns": 1800750, + "rtt_ms": 1.80075, "checkpoint": 0, - "vertex_from": "647", - "timestamp": "2025-11-27T01:23:29.640674736Z" + "vertex_from": "1", + "vertex_to": "482", + "timestamp": "2025-11-27T04:03:11.393604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624236, - "rtt_ms": 1.624236, + "rtt_ns": 2439500, + "rtt_ms": 2.4395, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:29.640715076Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:11.393724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275207, - "rtt_ms": 1.275207, + "rtt_ns": 2933042, + "rtt_ms": 2.933042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:29.641020455Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:11.393749-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1491126, - "rtt_ms": 1.491126, + "operation": "add_edge", + "rtt_ns": 3291417, + "rtt_ms": 3.291417, "checkpoint": 0, - "vertex_from": "154", - "timestamp": "2025-11-27T01:23:29.641335874Z" + "vertex_from": "1", + "vertex_to": "327", + "timestamp": "2025-11-27T04:03:11.393752-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 744697, - "rtt_ms": 0.744697, + "operation": "add_edge", + "rtt_ns": 1224833, + "rtt_ms": 1.224833, "checkpoint": 0, - "vertex_from": "294", - "timestamp": "2025-11-27T01:23:29.641463133Z" + "vertex_from": "1", + "vertex_to": "339", + "timestamp": "2025-11-27T04:03:11.393954-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2259733, - "rtt_ms": 2.259733, + "rtt_ns": 1200000, + "rtt_ms": 1.2, "checkpoint": 0, - "vertex_from": "460", - "timestamp": "2025-11-27T01:23:29.642153461Z" + "vertex_from": "55", + "timestamp": "2025-11-27T04:03:11.394559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2309553, - "rtt_ms": 2.309553, + "rtt_ns": 1145834, + "rtt_ms": 1.145834, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "482", - "timestamp": "2025-11-27T01:23:29.642223481Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:11.394576-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2474043, - "rtt_ms": 2.474043, + "operation": "add_vertex", + "rtt_ns": 1268667, + "rtt_ms": 1.268667, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.642286671Z" + "vertex_from": "294", + "timestamp": "2025-11-27T04:03:11.395023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714775, - "rtt_ms": 1.714775, + "rtt_ns": 1836959, + "rtt_ms": 1.836959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "55", - "timestamp": "2025-11-27T01:23:29.642369321Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:03:11.395084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2532033, - "rtt_ms": 2.532033, + "rtt_ns": 1408375, + "rtt_ms": 1.408375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:29.642384891Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:11.395162-08:00" }, { "operation": "add_edge", - "rtt_ns": 2549292, - "rtt_ms": 2.549292, + "rtt_ns": 1893250, + "rtt_ms": 1.89325, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "339", - "timestamp": "2025-11-27T01:23:29.64245219Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:11.395281-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1791294, - "rtt_ms": 1.791294, + "operation": "add_vertex", + "rtt_ns": 1920916, + "rtt_ms": 1.920916, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "647", - "timestamp": "2025-11-27T01:23:29.64246644Z" + "vertex_from": "460", + "timestamp": "2025-11-27T04:03:11.395646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480365, - "rtt_ms": 1.480365, + "rtt_ns": 2134834, + "rtt_ms": 2.134834, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:29.64250344Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:11.39574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624205, - "rtt_ms": 1.624205, + "rtt_ns": 1303458, + "rtt_ms": 1.303458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:29.642960869Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:11.395881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554176, - "rtt_ms": 1.554176, + "rtt_ns": 1469416, + "rtt_ms": 1.469416, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:29.643017699Z" + "vertex_to": "55", + "timestamp": "2025-11-27T04:03:11.396029-08:00" }, { "operation": "add_edge", - "rtt_ns": 842968, - "rtt_ms": 0.842968, + "rtt_ns": 2107459, + "rtt_ms": 2.107459, "checkpoint": 0, "vertex_from": "1", "vertex_to": "898", - "timestamp": "2025-11-27T01:23:29.643068529Z" + "timestamp": "2025-11-27T04:03:11.396062-08:00" }, { - "operation": "add_edge", - "rtt_ns": 896417, - "rtt_ms": 0.896417, + "operation": "add_vertex", + "rtt_ns": 3334625, + "rtt_ms": 3.334625, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:29.643184108Z" + "vertex_from": "154", + "timestamp": "2025-11-27T04:03:11.3968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066837, - "rtt_ms": 1.066837, + "rtt_ns": 1714459, + "rtt_ms": 1.714459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "460", - "timestamp": "2025-11-27T01:23:29.643220818Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:03:11.396877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608655, - "rtt_ms": 1.608655, + "rtt_ns": 1815208, + "rtt_ms": 1.815208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "604", - "timestamp": "2025-11-27T01:23:29.643995366Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:11.396902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595916, - "rtt_ms": 1.595916, + "rtt_ns": 2022750, + "rtt_ms": 2.02275, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:29.644050066Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:11.397047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552086, - "rtt_ms": 1.552086, + "rtt_ns": 1895750, + "rtt_ms": 1.89575, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:29.644056866Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:11.397179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104987, - "rtt_ms": 1.104987, + "rtt_ns": 1104750, + "rtt_ms": 1.10475, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:29.644067866Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:03:11.398008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070547, - "rtt_ms": 1.070547, + "rtt_ns": 2001333, + "rtt_ms": 2.001333, "checkpoint": 0, "vertex_from": "1", "vertex_to": "51", - "timestamp": "2025-11-27T01:23:29.644089656Z" + "timestamp": "2025-11-27T04:03:11.398065-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1034976, - "rtt_ms": 1.034976, + "rtt_ns": 1285250, + "rtt_ms": 1.28525, "checkpoint": 0, "vertex_from": "243", - "timestamp": "2025-11-27T01:23:29.644108475Z" + "timestamp": "2025-11-27T04:03:11.398165-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1642885, - "rtt_ms": 1.642885, + "rtt_ns": 2633959, + "rtt_ms": 2.633959, "checkpoint": 0, "vertex_from": "870", - "timestamp": "2025-11-27T01:23:29.644113175Z" + "timestamp": "2025-11-27T04:03:11.398375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766274, - "rtt_ms": 1.766274, + "rtt_ns": 2766958, + "rtt_ms": 2.766958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:29.644138175Z" + "vertex_to": "460", + "timestamp": "2025-11-27T04:03:11.398413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312786, - "rtt_ms": 1.312786, + "rtt_ns": 2591833, + "rtt_ms": 2.591833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:29.644535384Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:11.398474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437206, - "rtt_ms": 1.437206, + "rtt_ns": 1710167, + "rtt_ms": 1.710167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:29.644623034Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:11.398511-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1211006, - "rtt_ms": 1.211006, + "operation": "add_edge", + "rtt_ns": 2483584, + "rtt_ms": 2.483584, "checkpoint": 0, - "vertex_from": "430", - "timestamp": "2025-11-27T01:23:29.645303122Z" + "vertex_from": "1", + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:11.398513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360496, - "rtt_ms": 1.360496, + "rtt_ns": 2063500, + "rtt_ms": 2.0635, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:29.645357692Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:11.399113-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1260000, + "rtt_ms": 1.26, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "486", + "timestamp": "2025-11-27T04:03:11.399774-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1278791, + "rtt_ms": 1.278791, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:11.399791-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1321556, - "rtt_ms": 1.321556, + "rtt_ns": 1422792, + "rtt_ms": 1.422792, "checkpoint": 0, - "vertex_from": "843", - "timestamp": "2025-11-27T01:23:29.645374432Z" + "vertex_from": "430", + "timestamp": "2025-11-27T04:03:11.3999-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1341626, - "rtt_ms": 1.341626, + "rtt_ns": 1972375, + "rtt_ms": 1.972375, "checkpoint": 0, - "vertex_from": "782", - "timestamp": "2025-11-27T01:23:29.645414192Z" + "vertex_from": "843", + "timestamp": "2025-11-27T04:03:11.399983-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1854995, - "rtt_ms": 1.854995, + "operation": "add_vertex", + "rtt_ns": 1710709, + "rtt_ms": 1.710709, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "243", - "timestamp": "2025-11-27T01:23:29.64596436Z" + "vertex_from": "782", + "timestamp": "2025-11-27T04:03:11.400125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924874, - "rtt_ms": 1.924874, + "rtt_ns": 1974958, + "rtt_ms": 1.974958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:29.645984Z" + "vertex_to": "243", + "timestamp": "2025-11-27T04:03:11.400141-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029444, - "rtt_ms": 2.029444, + "rtt_ns": 1820083, + "rtt_ms": 1.820083, "checkpoint": 0, "vertex_from": "1", "vertex_to": "870", - "timestamp": "2025-11-27T01:23:29.646143259Z" + "timestamp": "2025-11-27T04:03:11.400196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024454, - "rtt_ms": 2.024454, + "rtt_ns": 3032917, + "rtt_ms": 3.032917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:29.646164549Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:11.400213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769045, - "rtt_ms": 1.769045, + "rtt_ns": 2918625, + "rtt_ms": 2.918625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "486", - "timestamp": "2025-11-27T01:23:29.646306509Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:11.400987-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1759515, - "rtt_ms": 1.759515, + "operation": "add_vertex", + "rtt_ns": 1920625, + "rtt_ms": 1.920625, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:29.646385449Z" + "vertex_from": "119", + "timestamp": "2025-11-27T04:03:11.401713-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1301206, - "rtt_ms": 1.301206, + "rtt_ns": 2226083, + "rtt_ms": 2.226083, "checkpoint": 0, "vertex_from": "253", - "timestamp": "2025-11-27T01:23:29.646662008Z" + "timestamp": "2025-11-27T04:03:11.402003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302306, - "rtt_ms": 1.302306, + "rtt_ns": 1854041, + "rtt_ms": 1.854041, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "843", - "timestamp": "2025-11-27T01:23:29.646677028Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:11.402051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464166, - "rtt_ms": 1.464166, + "rtt_ns": 2189667, + "rtt_ms": 2.189667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "430", - "timestamp": "2025-11-27T01:23:29.646767708Z" + "vertex_to": "843", + "timestamp": "2025-11-27T04:03:11.402173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434585, - "rtt_ms": 1.434585, + "rtt_ns": 2146667, + "rtt_ms": 2.146667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:29.646849397Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 960107, - "rtt_ms": 0.960107, - "checkpoint": 0, - "vertex_from": "119", - "timestamp": "2025-11-27T01:23:29.646928387Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:11.40229-08:00" }, { "operation": "add_edge", - "rtt_ns": 882128, - "rtt_ms": 0.882128, + "rtt_ns": 3263959, + "rtt_ms": 3.263959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:29.647026907Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:11.402378-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 657248, - "rtt_ms": 0.657248, + "operation": "add_edge", + "rtt_ns": 2375125, + "rtt_ms": 2.375125, "checkpoint": 0, - "vertex_from": "393", - "timestamp": "2025-11-27T01:23:29.647045387Z" + "vertex_from": "1", + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:11.402501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429806, - "rtt_ms": 1.429806, + "rtt_ns": 2651583, + "rtt_ms": 2.651583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:29.647416376Z" + "vertex_to": "430", + "timestamp": "2025-11-27T04:03:11.402551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473285, - "rtt_ms": 1.473285, + "rtt_ns": 2366917, + "rtt_ms": 2.366917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:29.647780994Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:03:11.402581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685105, - "rtt_ms": 1.685105, + "rtt_ns": 1128541, + "rtt_ms": 1.128541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "167", - "timestamp": "2025-11-27T01:23:29.647851514Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:03:11.402842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571695, - "rtt_ms": 1.571695, + "rtt_ns": 2117167, + "rtt_ms": 2.117167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:29.648617482Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:11.403105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840485, - "rtt_ms": 1.840485, + "rtt_ns": 1536208, + "rtt_ms": 1.536208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:29.648692252Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:11.40371-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1822454, - "rtt_ms": 1.822454, + "rtt_ns": 2191500, + "rtt_ms": 2.1915, "checkpoint": 0, - "vertex_from": "913", - "timestamp": "2025-11-27T01:23:29.648851521Z" + "vertex_from": "393", + "timestamp": "2025-11-27T04:03:11.404244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097523, - "rtt_ms": 2.097523, + "rtt_ns": 2484542, + "rtt_ms": 2.484542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:29.648866681Z" + "vertex_to": "253", + "timestamp": "2025-11-27T04:03:11.404488-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2244833, + "rtt_ms": 2.244833, + "checkpoint": 0, + "vertex_from": "913", + "timestamp": "2025-11-27T04:03:11.404747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1982774, - "rtt_ms": 1.982774, + "rtt_ns": 2457250, + "rtt_ms": 2.45725, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "119", - "timestamp": "2025-11-27T01:23:29.648911481Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:11.404748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573785, - "rtt_ms": 1.573785, + "rtt_ns": 2191042, + "rtt_ms": 2.191042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:29.648994091Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:11.404774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2390533, - "rtt_ms": 2.390533, + "rtt_ns": 2422417, + "rtt_ms": 2.422417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.649069831Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:11.404802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2432833, - "rtt_ms": 2.432833, + "rtt_ns": 2337084, + "rtt_ms": 2.337084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "253", - "timestamp": "2025-11-27T01:23:29.649095091Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:03:11.404891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334836, - "rtt_ms": 1.334836, + "rtt_ns": 2117625, + "rtt_ms": 2.117625, "checkpoint": 0, "vertex_from": "1", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.64918806Z" + "timestamp": "2025-11-27T04:03:11.404961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407726, - "rtt_ms": 1.407726, + "rtt_ns": 1441417, + "rtt_ms": 1.441417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:29.64919028Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:11.406216-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1183986, - "rtt_ms": 1.183986, + "operation": "add_vertex", + "rtt_ns": 1784041, + "rtt_ms": 1.784041, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:29.649877878Z" + "vertex_from": "720", + "timestamp": "2025-11-27T04:03:11.406273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280586, - "rtt_ms": 1.280586, + "rtt_ns": 3238125, + "rtt_ms": 3.238125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "369", - "timestamp": "2025-11-27T01:23:29.649899668Z" + "timestamp": "2025-11-27T04:03:11.406346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167807, - "rtt_ms": 1.167807, + "rtt_ns": 1557917, + "rtt_ms": 1.557917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:29.650019658Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:03:11.406361-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1169767, - "rtt_ms": 1.169767, + "operation": "add_edge", + "rtt_ns": 1615083, + "rtt_ms": 1.615083, "checkpoint": 0, - "vertex_from": "720", - "timestamp": "2025-11-27T01:23:29.650040138Z" + "vertex_from": "1", + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:11.406364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139616, - "rtt_ms": 1.139616, + "rtt_ns": 2159166, + "rtt_ms": 2.159166, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:29.650135357Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:11.406403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781505, - "rtt_ms": 1.781505, + "rtt_ns": 1728541, + "rtt_ms": 1.728541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:29.650694356Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:03:11.406476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669695, - "rtt_ms": 1.669695, + "rtt_ns": 2799334, + "rtt_ms": 2.799334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:29.650740656Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:11.40651-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1576126, - "rtt_ms": 1.576126, + "rtt_ns": 1554959, + "rtt_ms": 1.554959, "checkpoint": 0, - "vertex_from": "844", - "timestamp": "2025-11-27T01:23:29.650768646Z" + "vertex_from": "527", + "timestamp": "2025-11-27T04:03:11.406518-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1603916, - "rtt_ms": 1.603916, + "rtt_ns": 1665667, + "rtt_ms": 1.665667, "checkpoint": 0, - "vertex_from": "527", - "timestamp": "2025-11-27T01:23:29.650795475Z" + "vertex_from": "694", + "timestamp": "2025-11-27T04:03:11.406557-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1705374, - "rtt_ms": 1.705374, + "rtt_ns": 1347292, + "rtt_ms": 1.347292, "checkpoint": 0, - "vertex_from": "694", - "timestamp": "2025-11-27T01:23:29.650804675Z" + "vertex_from": "844", + "timestamp": "2025-11-27T04:03:11.407566-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1124226, - "rtt_ms": 1.124226, + "rtt_ns": 1283750, + "rtt_ms": 1.28375, "checkpoint": 0, "vertex_from": "229", - "timestamp": "2025-11-27T01:23:29.651149144Z" + "timestamp": "2025-11-27T04:03:11.407649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906654, - "rtt_ms": 1.906654, + "rtt_ns": 1364167, + "rtt_ms": 1.364167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:29.651809922Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:11.407768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930974, - "rtt_ms": 1.930974, + "rtt_ns": 1686584, + "rtt_ms": 1.686584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:29.651971952Z" + "vertex_to": "378", + "timestamp": "2025-11-27T04:03:11.408033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991335, - "rtt_ms": 1.991335, + "rtt_ns": 1806334, + "rtt_ms": 1.806334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:29.652128522Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:11.40808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507633, - "rtt_ms": 2.507633, + "rtt_ns": 1745750, + "rtt_ms": 1.74575, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "378", - "timestamp": "2025-11-27T01:23:29.652388601Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:11.408108-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297683, - "rtt_ms": 2.297683, + "rtt_ns": 1670459, + "rtt_ms": 1.670459, "checkpoint": 0, "vertex_from": "1", "vertex_to": "708", - "timestamp": "2025-11-27T01:23:29.652994089Z" + "timestamp": "2025-11-27T04:03:11.408147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313713, - "rtt_ms": 2.313713, - "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:29.653059449Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2291934, - "rtt_ms": 2.291934, + "rtt_ns": 1730166, + "rtt_ms": 1.730166, "checkpoint": 0, "vertex_from": "1", "vertex_to": "527", - "timestamp": "2025-11-27T01:23:29.653088149Z" + "timestamp": "2025-11-27T04:03:11.408249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2374933, - "rtt_ms": 2.374933, + "rtt_ns": 1787375, + "rtt_ms": 1.787375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "844", - "timestamp": "2025-11-27T01:23:29.653143979Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:11.408298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2377744, - "rtt_ms": 2.377744, + "rtt_ns": 1972708, + "rtt_ms": 1.972708, "checkpoint": 0, "vertex_from": "1", "vertex_to": "694", - "timestamp": "2025-11-27T01:23:29.653183449Z" + "timestamp": "2025-11-27T04:03:11.408531-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108014, - "rtt_ms": 2.108014, + "rtt_ns": 1269125, + "rtt_ms": 1.269125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:29.653257698Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.409303-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1525016, - "rtt_ms": 1.525016, + "rtt_ns": 1031375, + "rtt_ms": 1.031375, "checkpoint": 0, - "vertex_from": "215", - "timestamp": "2025-11-27T01:23:29.653339338Z" + "vertex_from": "867", + "timestamp": "2025-11-27T04:03:11.409331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441366, - "rtt_ms": 1.441366, + "rtt_ns": 1253333, + "rtt_ms": 1.253333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.653414838Z" + "vertex_to": "15", + "timestamp": "2025-11-27T04:03:11.409361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549866, - "rtt_ms": 1.549866, + "rtt_ns": 1860667, + "rtt_ms": 1.860667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "15", - "timestamp": "2025-11-27T01:23:29.653939787Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:03:11.409427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857864, - "rtt_ms": 1.857864, + "rtt_ns": 2129416, + "rtt_ms": 2.129416, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:29.653987796Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:11.409779-08:00" }, { - "operation": "add_edge", - "rtt_ns": 971107, - "rtt_ms": 0.971107, + "operation": "add_vertex", + "rtt_ns": 2276416, + "rtt_ms": 2.276416, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:29.654156426Z" + "vertex_from": "215", + "timestamp": "2025-11-27T04:03:11.410047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112287, - "rtt_ms": 1.112287, + "rtt_ns": 1912166, + "rtt_ms": 1.912166, "checkpoint": 0, "vertex_from": "1", "vertex_to": "554", - "timestamp": "2025-11-27T01:23:29.654173296Z" + "timestamp": "2025-11-27T04:03:11.410162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029137, - "rtt_ms": 1.029137, + "rtt_ns": 1653625, + "rtt_ms": 1.653625, "checkpoint": 0, "vertex_from": "1", "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.654174466Z" + "timestamp": "2025-11-27T04:03:11.410185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194047, - "rtt_ms": 1.194047, + "rtt_ns": 2040500, + "rtt_ms": 2.0405, "checkpoint": 0, "vertex_from": "1", "vertex_to": "43", - "timestamp": "2025-11-27T01:23:29.654189966Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1193077, - "rtt_ms": 1.193077, - "checkpoint": 0, - "vertex_from": "867", - "timestamp": "2025-11-27T01:23:29.654286176Z" + "timestamp": "2025-11-27T04:03:11.410188-08:00" }, { "operation": "add_edge", - "rtt_ns": 844178, - "rtt_ms": 0.844178, + "rtt_ns": 2365709, + "rtt_ms": 2.365709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:29.654834294Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:11.410446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599966, - "rtt_ms": 1.599966, + "rtt_ns": 966250, + "rtt_ms": 0.96625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "215", - "timestamp": "2025-11-27T01:23:29.654939684Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:03:11.410746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696866, - "rtt_ms": 1.696866, + "rtt_ns": 1523042, + "rtt_ms": 1.523042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:29.654956224Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:03:11.410854-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1200436, - "rtt_ms": 1.200436, + "operation": "add_edge", + "rtt_ns": 1588500, + "rtt_ms": 1.5885, "checkpoint": 0, - "vertex_from": "436", - "timestamp": "2025-11-27T01:23:29.655394762Z" + "vertex_from": "1", + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:11.410895-08:00" }, { "operation": "add_edge", - "rtt_ns": 2314083, - "rtt_ms": 2.314083, + "rtt_ns": 1715292, + "rtt_ms": 1.715292, "checkpoint": 0, "vertex_from": "1", "vertex_to": "826", - "timestamp": "2025-11-27T01:23:29.655731161Z" + "timestamp": "2025-11-27T04:03:11.411143-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 796567, - "rtt_ms": 0.796567, + "operation": "add_edge", + "rtt_ns": 1141167, + "rtt_ms": 1.141167, "checkpoint": 0, - "vertex_from": "248", - "timestamp": "2025-11-27T01:23:29.655755631Z" + "vertex_from": "1", + "vertex_to": "215", + "timestamp": "2025-11-27T04:03:11.411189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928984, - "rtt_ms": 1.928984, + "rtt_ns": 1274333, + "rtt_ms": 1.274333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "13", - "timestamp": "2025-11-27T01:23:29.655869981Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:11.411437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2628782, - "rtt_ms": 2.628782, + "rtt_ns": 2665583, + "rtt_ms": 2.665583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:29.656790708Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:11.412028-08:00" }, { "operation": "add_edge", - "rtt_ns": 2712322, - "rtt_ms": 2.712322, + "rtt_ns": 2202666, + "rtt_ms": 2.202666, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:29.656887968Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:11.412388-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1964224, - "rtt_ms": 1.964224, + "rtt_ns": 1610791, + "rtt_ms": 1.610791, "checkpoint": 0, "vertex_from": "756", - "timestamp": "2025-11-27T01:23:29.656906018Z" + "timestamp": "2025-11-27T04:03:11.412509-08:00" }, { "operation": "add_edge", - "rtt_ns": 2683282, - "rtt_ms": 2.683282, + "rtt_ns": 2074125, + "rtt_ms": 2.074125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "867", - "timestamp": "2025-11-27T01:23:29.656969868Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:11.412521-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2146324, - "rtt_ms": 2.146324, + "operation": "add_vertex", + "rtt_ns": 1778459, + "rtt_ms": 1.778459, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:29.656983258Z" + "vertex_from": "436", + "timestamp": "2025-11-27T04:03:11.412527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2863852, - "rtt_ms": 2.863852, + "rtt_ns": 1573708, + "rtt_ms": 1.573708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "94", - "timestamp": "2025-11-27T01:23:29.657038848Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:11.412763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663746, - "rtt_ms": 1.663746, + "rtt_ns": 2003500, + "rtt_ms": 2.0035, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "436", - "timestamp": "2025-11-27T01:23:29.657058928Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:11.412859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347266, - "rtt_ms": 1.347266, + "rtt_ns": 2721708, + "rtt_ms": 2.721708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:29.657080827Z" + "vertex_to": "94", + "timestamp": "2025-11-27T04:03:11.412911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273636, - "rtt_ms": 1.273636, + "rtt_ns": 1544583, + "rtt_ms": 1.544583, "checkpoint": 0, "vertex_from": "1", "vertex_to": "657", - "timestamp": "2025-11-27T01:23:29.657145067Z" + "timestamp": "2025-11-27T04:03:11.412982-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1439496, - "rtt_ms": 1.439496, + "operation": "add_vertex", + "rtt_ns": 1871583, + "rtt_ms": 1.871583, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "248", - "timestamp": "2025-11-27T01:23:29.657195727Z" + "vertex_from": "248", + "timestamp": "2025-11-27T04:03:11.413016-08:00" }, { "operation": "add_edge", - "rtt_ns": 995047, - "rtt_ms": 0.995047, + "rtt_ns": 1189792, + "rtt_ms": 1.189792, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "3", - "timestamp": "2025-11-27T01:23:29.657884315Z" + "vertex_from": "1", + "vertex_to": "756", + "timestamp": "2025-11-27T04:03:11.413699-08:00" }, { "operation": "add_edge", - "rtt_ns": 977927, - "rtt_ms": 0.977927, + "rtt_ns": 1226500, + "rtt_ms": 1.2265, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "756", - "timestamp": "2025-11-27T01:23:29.657884435Z" + "vertex_to": "436", + "timestamp": "2025-11-27T04:03:11.413754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195357, - "rtt_ms": 1.195357, + "rtt_ns": 1789417, + "rtt_ms": 1.789417, "checkpoint": 0, "vertex_from": "1", "vertex_to": "659", - "timestamp": "2025-11-27T01:23:29.657987305Z" + "timestamp": "2025-11-27T04:03:11.413819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409406, - "rtt_ms": 1.409406, + "rtt_ns": 1478125, + "rtt_ms": 1.478125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.658606443Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:11.41439-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2099000, + "rtt_ms": 2.099, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "3", + "timestamp": "2025-11-27T04:03:11.414488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631465, - "rtt_ms": 1.631465, + "rtt_ns": 2338417, + "rtt_ms": 2.338417, "checkpoint": 0, "vertex_from": "2", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.658616433Z" + "timestamp": "2025-11-27T04:03:11.415102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644075, - "rtt_ms": 1.644075, + "rtt_ns": 2593667, + "rtt_ms": 2.593667, "checkpoint": 0, "vertex_from": "2", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.658616993Z" + "timestamp": "2025-11-27T04:03:11.415116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552366, - "rtt_ms": 1.552366, + "rtt_ns": 2260833, + "rtt_ms": 2.260833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:29.658634353Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.415121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587635, - "rtt_ms": 1.587635, + "rtt_ns": 2230083, + "rtt_ms": 2.230083, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:29.658648773Z" + "vertex_from": "1", + "vertex_to": "248", + "timestamp": "2025-11-27T04:03:11.415246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612505, - "rtt_ms": 1.612505, + "rtt_ns": 2280000, + "rtt_ms": 2.28, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.658652643Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:11.415263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193884, - "rtt_ms": 2.193884, + "rtt_ns": 1763875, + "rtt_ms": 1.763875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:29.659340481Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.415519-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103704, - "rtt_ms": 2.103704, + "rtt_ns": 1965417, + "rtt_ms": 1.965417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:29.659991119Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:11.415666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2546802, - "rtt_ms": 2.546802, + "rtt_ns": 1187000, + "rtt_ms": 1.187, "checkpoint": 0, "vertex_from": "2", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.660536227Z" + "timestamp": "2025-11-27T04:03:11.415676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000054, - "rtt_ms": 2.000054, + "rtt_ns": 2035459, + "rtt_ms": 2.035459, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.660607727Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:11.415855-08:00" }, { "operation": "add_edge", - "rtt_ns": 2769352, - "rtt_ms": 2.769352, + "rtt_ns": 1853125, + "rtt_ms": 1.853125, "checkpoint": 0, "vertex_from": "2", "vertex_to": "368", - "timestamp": "2025-11-27T01:23:29.660657427Z" + "timestamp": "2025-11-27T04:03:11.416244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043884, - "rtt_ms": 2.043884, + "rtt_ns": 1264167, + "rtt_ms": 1.264167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.660698637Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:11.416381-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088794, - "rtt_ms": 2.088794, + "rtt_ns": 1287875, + "rtt_ms": 1.287875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:29.660742737Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:03:11.416391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159423, - "rtt_ms": 2.159423, + "rtt_ns": 1484375, + "rtt_ms": 1.484375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:29.660777596Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.417004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217253, - "rtt_ms": 2.217253, + "rtt_ns": 2007833, + "rtt_ms": 2.007833, "checkpoint": 0, "vertex_from": "2", "vertex_to": "277", - "timestamp": "2025-11-27T01:23:29.660837676Z" + "timestamp": "2025-11-27T04:03:11.417129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589485, - "rtt_ms": 1.589485, + "rtt_ns": 2026792, + "rtt_ms": 2.026792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.660931516Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:11.417291-08:00" }, { "operation": "add_edge", - "rtt_ns": 2796481, - "rtt_ms": 2.796481, + "rtt_ns": 2074917, + "rtt_ms": 2.074917, "checkpoint": 0, "vertex_from": "2", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.661432434Z" + "timestamp": "2025-11-27T04:03:11.417324-08:00" }, { "operation": "add_edge", - "rtt_ns": 948207, - "rtt_ms": 0.948207, + "rtt_ns": 1566583, + "rtt_ms": 1.566583, "checkpoint": 0, "vertex_from": "2", "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.661485804Z" + "timestamp": "2025-11-27T04:03:11.417423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573515, - "rtt_ms": 1.573515, + "rtt_ns": 1961750, + "rtt_ms": 1.96175, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.661565564Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.417629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040307, - "rtt_ms": 1.040307, + "rtt_ns": 1964167, + "rtt_ms": 1.964167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.661649374Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:11.417641-08:00" }, { "operation": "add_edge", - "rtt_ns": 979457, - "rtt_ms": 0.979457, + "rtt_ns": 1765375, + "rtt_ms": 1.765375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.661679524Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:11.41801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025757, - "rtt_ms": 1.025757, + "rtt_ns": 1629459, + "rtt_ms": 1.629459, "checkpoint": 0, "vertex_from": "2", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:29.661685874Z" + "timestamp": "2025-11-27T04:03:11.418011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383146, - "rtt_ms": 1.383146, + "rtt_ns": 1518041, + "rtt_ms": 1.518041, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.662162762Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:11.418524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421115, - "rtt_ms": 1.421115, + "rtt_ns": 2145000, + "rtt_ms": 2.145, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:29.662166352Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.418538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342576, - "rtt_ms": 1.342576, + "rtt_ns": 1649875, + "rtt_ms": 1.649875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.662182012Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:11.41878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250406, - "rtt_ms": 1.250406, + "rtt_ns": 1558917, + "rtt_ms": 1.558917, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:29.662183582Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.418851-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1067737, - "rtt_ms": 1.067737, + "rtt_ns": 1552041, + "rtt_ms": 1.552041, "checkpoint": 0, "vertex_from": "53", - "timestamp": "2025-11-27T01:23:29.662505801Z" + "timestamp": "2025-11-27T04:03:11.418985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175927, - "rtt_ms": 1.175927, + "rtt_ns": 1886958, + "rtt_ms": 1.886958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:29.662663161Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:11.41953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157117, - "rtt_ms": 1.157117, + "rtt_ns": 1674708, + "rtt_ms": 1.674708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:29.662724051Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:11.419687-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 762448, - "rtt_ms": 0.762448, + "operation": "add_edge", + "rtt_ns": 2414917, + "rtt_ms": 2.414917, "checkpoint": 0, - "vertex_from": "157", - "timestamp": "2025-11-27T01:23:29.66294871Z" + "vertex_from": "2", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:11.41974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633435, - "rtt_ms": 1.633435, + "rtt_ns": 2134833, + "rtt_ms": 2.134833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:29.663284009Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:11.419766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716735, - "rtt_ms": 1.716735, + "rtt_ns": 1763042, + "rtt_ms": 1.763042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:29.663397309Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:11.419775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869244, - "rtt_ms": 1.869244, + "rtt_ns": 1111875, + "rtt_ms": 1.111875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:29.663558008Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:11.419963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422596, - "rtt_ms": 1.422596, + "rtt_ns": 1775875, + "rtt_ms": 1.775875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:29.663591558Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:11.420301-08:00" }, { "operation": "add_edge", - "rtt_ns": 2198794, - "rtt_ms": 2.198794, + "rtt_ns": 1780041, + "rtt_ms": 1.780041, "checkpoint": 0, "vertex_from": "2", "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.664363916Z" + "timestamp": "2025-11-27T04:03:11.42032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754935, - "rtt_ms": 1.754935, + "rtt_ns": 1686542, + "rtt_ms": 1.686542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.664419436Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:11.420468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951364, - "rtt_ms": 1.951364, + "rtt_ns": 1353333, + "rtt_ms": 1.353333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "53", - "timestamp": "2025-11-27T01:23:29.664457545Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.421042-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301163, - "rtt_ms": 2.301163, + "rtt_ns": 1461958, + "rtt_ms": 1.461958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.664485165Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:03:11.421229-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1717042, + "rtt_ms": 1.717042, + "checkpoint": 0, + "vertex_from": "157", + "timestamp": "2025-11-27T04:03:11.421247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538435, - "rtt_ms": 1.538435, + "rtt_ns": 1326584, + "rtt_ms": 1.326584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "157", - "timestamp": "2025-11-27T01:23:29.664487695Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:11.421291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773004, - "rtt_ms": 1.773004, + "rtt_ns": 1562750, + "rtt_ms": 1.56275, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.664497725Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.421339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747775, - "rtt_ms": 1.747775, + "rtt_ns": 2353417, + "rtt_ms": 2.353417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "4", - "timestamp": "2025-11-27T01:23:29.665034784Z" + "vertex_to": "53", + "timestamp": "2025-11-27T04:03:11.421339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639835, - "rtt_ms": 1.639835, + "rtt_ns": 1613708, + "rtt_ms": 1.613708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:29.665199553Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.421356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650475, - "rtt_ms": 1.650475, + "rtt_ns": 2080542, + "rtt_ms": 2.080542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.665243123Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:11.422401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861954, - "rtt_ms": 1.861954, + "rtt_ns": 1396917, + "rtt_ms": 1.396917, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.665260583Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.422439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321616, - "rtt_ms": 1.321616, + "rtt_ns": 2650042, + "rtt_ms": 2.650042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:29.665809981Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:11.422952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434186, - "rtt_ms": 1.434186, + "rtt_ns": 2507000, + "rtt_ms": 2.507, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.665893441Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:11.422977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399306, - "rtt_ms": 1.399306, + "rtt_ns": 1809208, + "rtt_ms": 1.809208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "60", - "timestamp": "2025-11-27T01:23:29.665898431Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:11.42315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479975, - "rtt_ms": 1.479975, + "rtt_ns": 2393958, + "rtt_ms": 2.393958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.665900821Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:11.423624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545885, - "rtt_ms": 1.545885, + "rtt_ns": 2283292, + "rtt_ms": 2.283292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:29.665911841Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:03:11.42364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271636, - "rtt_ms": 1.271636, + "rtt_ns": 1538958, + "rtt_ms": 1.538958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:29.6663156Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.42398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869815, - "rtt_ms": 1.869815, + "rtt_ns": 2749666, + "rtt_ms": 2.749666, "checkpoint": 0, "vertex_from": "2", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.66635923Z" + "timestamp": "2025-11-27T04:03:11.424041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294576, - "rtt_ms": 1.294576, + "rtt_ns": 910750, + "rtt_ms": 0.91075, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "5", - "timestamp": "2025-11-27T01:23:29.666501209Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.424064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269986, - "rtt_ms": 1.269986, + "rtt_ns": 1744792, + "rtt_ms": 1.744792, "checkpoint": 0, "vertex_from": "2", "vertex_to": "104", - "timestamp": "2025-11-27T01:23:29.666515069Z" + "timestamp": "2025-11-27T04:03:11.424148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338596, - "rtt_ms": 1.338596, + "rtt_ns": 1206750, + "rtt_ms": 1.20675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.666601339Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:11.42416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235337, - "rtt_ms": 1.235337, + "rtt_ns": 1230125, + "rtt_ms": 1.230125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:29.667046848Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.424208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358496, - "rtt_ms": 1.358496, + "rtt_ns": 3008542, + "rtt_ms": 3.008542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.667253137Z" + "vertex_to": "157", + "timestamp": "2025-11-27T04:03:11.424256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566515, - "rtt_ms": 1.566515, + "rtt_ns": 3074209, + "rtt_ms": 3.074209, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.667468766Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:03:11.424414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706955, - "rtt_ms": 1.706955, + "rtt_ns": 848792, + "rtt_ms": 0.848792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "14", - "timestamp": "2025-11-27T01:23:29.667620016Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.424474-08:00" }, { "operation": "add_edge", - "rtt_ns": 2659802, - "rtt_ms": 2.659802, + "rtt_ns": 942291, + "rtt_ms": 0.942291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.668559193Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:11.425416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2298813, - "rtt_ms": 2.298813, + "rtt_ns": 1667209, + "rtt_ms": 1.667209, "checkpoint": 0, "vertex_from": "2", "vertex_to": "29", - "timestamp": "2025-11-27T01:23:29.668615313Z" + "timestamp": "2025-11-27T04:03:11.425648-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274663, - "rtt_ms": 2.274663, + "rtt_ns": 1484625, + "rtt_ms": 1.484625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:29.668635093Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:11.425741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065944, - "rtt_ms": 2.065944, + "rtt_ns": 1582834, + "rtt_ms": 1.582834, "checkpoint": 0, "vertex_from": "2", "vertex_to": "332", - "timestamp": "2025-11-27T01:23:29.668668943Z" + "timestamp": "2025-11-27T04:03:11.425744-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1354750, + "rtt_ms": 1.35475, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.425769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187294, - "rtt_ms": 2.187294, + "rtt_ns": 1621333, + "rtt_ms": 1.621333, "checkpoint": 0, "vertex_from": "2", "vertex_to": "708", - "timestamp": "2025-11-27T01:23:29.668703363Z" + "timestamp": "2025-11-27T04:03:11.425771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688745, - "rtt_ms": 1.688745, + "rtt_ns": 1682666, + "rtt_ms": 1.682666, "checkpoint": 0, "vertex_from": "2", "vertex_to": "437", - "timestamp": "2025-11-27T01:23:29.668737393Z" + "timestamp": "2025-11-27T04:03:11.425891-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258864, - "rtt_ms": 2.258864, + "rtt_ns": 1946709, + "rtt_ms": 1.946709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.668761323Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:11.425991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903565, - "rtt_ms": 1.903565, + "rtt_ns": 1940458, + "rtt_ms": 1.940458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.669158312Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:11.426005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715906, - "rtt_ms": 1.715906, + "rtt_ns": 2444959, + "rtt_ms": 2.444959, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.669186142Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:03:11.426086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832605, - "rtt_ms": 1.832605, + "rtt_ns": 1228833, + "rtt_ms": 1.228833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:29.669454161Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:11.426999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363326, - "rtt_ms": 1.363326, + "rtt_ns": 1688333, + "rtt_ms": 1.688333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.669979509Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:11.427106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303316, - "rtt_ms": 1.303316, + "rtt_ns": 2160625, + "rtt_ms": 2.160625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:29.670007479Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:11.427813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396456, - "rtt_ms": 1.396456, + "rtt_ns": 2701459, + "rtt_ms": 2.701459, "checkpoint": 0, "vertex_from": "2", "vertex_to": "37", - "timestamp": "2025-11-27T01:23:29.670033319Z" + "timestamp": "2025-11-27T04:03:11.428444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488356, - "rtt_ms": 1.488356, + "rtt_ns": 2656000, + "rtt_ms": 2.656, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.670048559Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:03:11.428548-08:00" }, { "operation": "add_edge", - "rtt_ns": 904137, - "rtt_ms": 0.904137, + "rtt_ns": 2814917, + "rtt_ms": 2.814917, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "433", - "timestamp": "2025-11-27T01:23:29.670064089Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:11.42856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398226, - "rtt_ms": 1.398226, + "rtt_ns": 2512500, + "rtt_ms": 2.5125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:29.670068939Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:11.428601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336856, - "rtt_ms": 1.336856, + "rtt_ns": 2719125, + "rtt_ms": 2.719125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:29.670099619Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:03:11.428712-08:00" }, { "operation": "add_edge", - "rtt_ns": 961327, - "rtt_ms": 0.961327, + "rtt_ns": 3079833, + "rtt_ms": 3.079833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:29.670148799Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:11.428852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423456, - "rtt_ms": 1.423456, + "rtt_ns": 1854291, + "rtt_ms": 1.854291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.670162019Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:11.428854-08:00" }, { "operation": "add_edge", - "rtt_ns": 2544363, - "rtt_ms": 2.544363, + "rtt_ns": 1118583, + "rtt_ms": 1.118583, "checkpoint": 0, "vertex_from": "2", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:29.672578692Z" + "timestamp": "2025-11-27T04:03:11.428932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613963, - "rtt_ms": 2.613963, + "rtt_ns": 2987291, + "rtt_ms": 2.987291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "57", - "timestamp": "2025-11-27T01:23:29.672663722Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:11.428993-08:00" }, { "operation": "add_edge", - "rtt_ns": 2668663, - "rtt_ms": 2.668663, + "rtt_ns": 1927209, + "rtt_ms": 1.927209, "checkpoint": 0, "vertex_from": "2", "vertex_to": "331", - "timestamp": "2025-11-27T01:23:29.672677312Z" + "timestamp": "2025-11-27T04:03:11.429034-08:00" }, { "operation": "add_edge", - "rtt_ns": 2631183, - "rtt_ms": 2.631183, + "rtt_ns": 1487250, + "rtt_ms": 1.48725, "checkpoint": 0, "vertex_from": "2", "vertex_to": "86", - "timestamp": "2025-11-27T01:23:29.672697362Z" + "timestamp": "2025-11-27T04:03:11.430036-08:00" }, { "operation": "add_edge", - "rtt_ns": 3247771, - "rtt_ms": 3.247771, + "rtt_ns": 1610459, + "rtt_ms": 1.610459, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:29.672704002Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:03:11.430056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2724083, - "rtt_ms": 2.724083, + "rtt_ns": 1470750, + "rtt_ms": 1.47075, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:29.672704922Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:03:11.430073-08:00" }, { "operation": "add_edge", - "rtt_ns": 2562523, - "rtt_ms": 2.562523, + "rtt_ns": 1526166, + "rtt_ms": 1.526166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:29.672714162Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:11.430087-08:00" }, { "operation": "add_edge", - "rtt_ns": 2624242, - "rtt_ms": 2.624242, + "rtt_ns": 1421250, + "rtt_ms": 1.42125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "970", - "timestamp": "2025-11-27T01:23:29.672724731Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:11.430415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2666202, - "rtt_ms": 2.666202, + "rtt_ns": 1487375, + "rtt_ms": 1.487375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:29.672736171Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:03:11.430421-08:00" }, { "operation": "add_edge", - "rtt_ns": 2654262, - "rtt_ms": 2.654262, + "rtt_ns": 1717416, + "rtt_ms": 1.717416, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.672817531Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:11.43043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364736, - "rtt_ms": 1.364736, + "rtt_ns": 1470000, + "rtt_ms": 1.47, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.674043138Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:11.430505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434345, - "rtt_ms": 1.434345, + "rtt_ns": 1663791, + "rtt_ms": 1.663791, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.674133087Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:11.43052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413006, - "rtt_ms": 1.413006, + "rtt_ns": 1695042, + "rtt_ms": 1.695042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.674152587Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.430548-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1527755, - "rtt_ms": 1.527755, + "operation": "add_vertex", + "rtt_ns": 1392167, + "rtt_ms": 1.392167, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.674192917Z" + "vertex_from": "110", + "timestamp": "2025-11-27T04:03:11.431942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711795, - "rtt_ms": 1.711795, + "rtt_ns": 1997208, + "rtt_ms": 1.997208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.674292507Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:11.432071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637085, - "rtt_ms": 1.637085, + "rtt_ns": 1590000, + "rtt_ms": 1.59, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:29.674341867Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:03:11.432111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705985, - "rtt_ms": 1.705985, + "rtt_ns": 2243625, + "rtt_ms": 2.243625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:29.674431616Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:11.432282-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259033, - "rtt_ms": 2.259033, + "rtt_ns": 2095583, + "rtt_ms": 2.095583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:29.674966605Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:11.432527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2401932, - "rtt_ms": 2.401932, + "rtt_ns": 2473375, + "rtt_ms": 2.473375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:29.675118514Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:11.43253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016517, - "rtt_ms": 1.016517, + "rtt_ns": 2124834, + "rtt_ms": 2.124834, "checkpoint": 0, "vertex_from": "2", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.675150824Z" + "timestamp": "2025-11-27T04:03:11.43263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106056, - "rtt_ms": 1.106056, + "rtt_ns": 2335000, + "rtt_ms": 2.335, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:29.675151284Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:11.432751-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334683, - "rtt_ms": 2.334683, + "rtt_ns": 2359333, + "rtt_ms": 2.359333, "checkpoint": 0, "vertex_from": "2", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.675154284Z" + "timestamp": "2025-11-27T04:03:11.432782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073297, - "rtt_ms": 1.073297, + "rtt_ns": 2752250, + "rtt_ms": 2.75225, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "13", - "timestamp": "2025-11-27T01:23:29.675227714Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:11.43284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873174, - "rtt_ms": 1.873174, + "rtt_ns": 816709, + "rtt_ms": 0.816709, "checkpoint": 0, "vertex_from": "2", "vertex_to": "527", - "timestamp": "2025-11-27T01:23:29.676166701Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2165064, - "rtt_ms": 2.165064, - "checkpoint": 0, - "vertex_from": "110", - "timestamp": "2025-11-27T01:23:29.676361961Z" + "timestamp": "2025-11-27T04:03:11.432888-08:00" }, { "operation": "add_edge", - "rtt_ns": 2489252, - "rtt_ms": 2.489252, + "rtt_ns": 1088833, + "rtt_ms": 1.088833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:29.676833339Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2622193, - "rtt_ms": 2.622193, - "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:29.677055529Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:03:11.433031-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2186783, - "rtt_ms": 2.186783, + "rtt_ns": 1296917, + "rtt_ms": 1.296917, "checkpoint": 0, "vertex_from": "271", - "timestamp": "2025-11-27T01:23:29.677156188Z" + "timestamp": "2025-11-27T04:03:11.433828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109424, - "rtt_ms": 2.109424, + "rtt_ns": 1206583, + "rtt_ms": 1.206583, "checkpoint": 0, "vertex_from": "2", "vertex_to": "149", - "timestamp": "2025-11-27T01:23:29.677261588Z" + "timestamp": "2025-11-27T04:03:11.433838-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149574, - "rtt_ms": 2.149574, + "rtt_ns": 1588791, + "rtt_ms": 1.588791, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:29.677305168Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:11.433871-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224804, - "rtt_ms": 2.224804, + "rtt_ns": 1381292, + "rtt_ms": 1.381292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:29.677345948Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:11.434134-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257223, - "rtt_ms": 2.257223, + "rtt_ns": 1386833, + "rtt_ms": 1.386833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:29.677411187Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:11.434277-08:00" }, { "operation": "add_edge", - "rtt_ns": 2244633, - "rtt_ms": 2.244633, + "rtt_ns": 1458125, + "rtt_ms": 1.458125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.677475387Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:11.43449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376936, - "rtt_ms": 1.376936, + "rtt_ns": 2475875, + "rtt_ms": 2.475875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:29.677545877Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:11.434588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234226, - "rtt_ms": 1.234226, + "rtt_ns": 2084167, + "rtt_ms": 2.084167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "110", - "timestamp": "2025-11-27T01:23:29.677596527Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:11.434925-08:00" }, { "operation": "add_edge", - "rtt_ns": 804078, - "rtt_ms": 0.804078, + "rtt_ns": 1118500, + "rtt_ms": 1.1185, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.677639267Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:11.434961-08:00" }, { "operation": "add_edge", - "rtt_ns": 652628, - "rtt_ms": 0.652628, + "rtt_ns": 1391708, + "rtt_ms": 1.391708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:29.677709467Z" + "vertex_to": "271", + "timestamp": "2025-11-27T04:03:11.43522-08:00" }, { "operation": "add_edge", - "rtt_ns": 688798, - "rtt_ms": 0.688798, + "rtt_ns": 1448250, + "rtt_ms": 1.44825, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "271", - "timestamp": "2025-11-27T01:23:29.677845586Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:11.435321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199066, - "rtt_ms": 1.199066, + "rtt_ns": 2968417, + "rtt_ms": 2.968417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.678505564Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:11.435499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687235, - "rtt_ms": 1.687235, + "rtt_ns": 1362084, + "rtt_ms": 1.362084, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:29.679034563Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:11.435504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963594, - "rtt_ms": 1.963594, + "rtt_ns": 2736000, + "rtt_ms": 2.736, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:29.679228512Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:11.435518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856905, - "rtt_ms": 1.856905, + "rtt_ns": 1554292, + "rtt_ms": 1.554292, "checkpoint": 0, "vertex_from": "2", "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.679269242Z" + "timestamp": "2025-11-27T04:03:11.436045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912815, - "rtt_ms": 1.912815, + "rtt_ns": 1901541, + "rtt_ms": 1.901541, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.679389832Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:11.43618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2453763, - "rtt_ms": 2.453763, + "rtt_ns": 1407583, + "rtt_ms": 1.407583, "checkpoint": 0, "vertex_from": "2", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.68000368Z" + "timestamp": "2025-11-27T04:03:11.436335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2550182, - "rtt_ms": 2.550182, + "rtt_ns": 1513291, + "rtt_ms": 1.513291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:29.680261379Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:11.436477-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416533, - "rtt_ms": 2.416533, + "rtt_ns": 1965875, + "rtt_ms": 1.965875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:29.680263689Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:11.436555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757925, - "rtt_ms": 1.757925, + "rtt_ns": 1519750, + "rtt_ms": 1.51975, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:29.680264799Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:11.437039-08:00" }, { "operation": "add_edge", - "rtt_ns": 2630682, - "rtt_ms": 2.630682, + "rtt_ns": 1770416, + "rtt_ms": 1.770416, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.680271539Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:11.437092-08:00" }, { "operation": "add_edge", - "rtt_ns": 2673522, - "rtt_ms": 2.673522, + "rtt_ns": 1885292, + "rtt_ms": 1.885292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:29.680271699Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:11.437107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539075, - "rtt_ms": 1.539075, + "rtt_ns": 1512708, + "rtt_ms": 1.512708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:29.680575068Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.437701-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1376486, - "rtt_ms": 1.376486, + "operation": "add_vertex", + "rtt_ns": 1402542, + "rtt_ms": 1.402542, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:29.680607378Z" + "vertex_from": "808", + "timestamp": "2025-11-27T04:03:11.437739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462976, - "rtt_ms": 1.462976, + "rtt_ns": 2322042, + "rtt_ms": 2.322042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.680733558Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:11.437823-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1899044, - "rtt_ms": 1.899044, + "operation": "add_edge", + "rtt_ns": 1831791, + "rtt_ms": 1.831791, "checkpoint": 0, - "vertex_from": "808", - "timestamp": "2025-11-27T01:23:29.681292036Z" + "vertex_from": "2", + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:11.437878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375056, - "rtt_ms": 1.375056, + "rtt_ns": 2399375, + "rtt_ms": 2.399375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:29.681380016Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:11.437905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120397, - "rtt_ms": 1.120397, + "rtt_ns": 1794833, + "rtt_ms": 1.794833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:29.681395576Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:03:11.438351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171106, - "rtt_ms": 1.171106, + "rtt_ns": 1970125, + "rtt_ms": 1.970125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "570", - "timestamp": "2025-11-27T01:23:29.681438355Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:11.438448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193426, - "rtt_ms": 1.193426, + "rtt_ns": 1562667, + "rtt_ms": 1.562667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "602", - "timestamp": "2025-11-27T01:23:29.681456565Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:03:11.438603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200916, - "rtt_ms": 1.200916, + "rtt_ns": 1553833, + "rtt_ms": 1.553833, "checkpoint": 0, "vertex_from": "2", "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.681475075Z" + "timestamp": "2025-11-27T04:03:11.438662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213596, - "rtt_ms": 1.213596, + "rtt_ns": 1220333, + "rtt_ms": 1.220333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:29.681480815Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:11.439099-08:00" }, { "operation": "add_edge", - "rtt_ns": 910977, - "rtt_ms": 0.910977, + "rtt_ns": 1290042, + "rtt_ms": 1.290042, "checkpoint": 0, "vertex_from": "2", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:29.681488005Z" + "timestamp": "2025-11-27T04:03:11.439114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530905, - "rtt_ms": 1.530905, + "rtt_ns": 1412792, + "rtt_ms": 1.412792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.682265593Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:11.439114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660035, - "rtt_ms": 1.660035, + "rtt_ns": 2089708, + "rtt_ms": 2.089708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:29.682268513Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:11.439184-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083644, - "rtt_ms": 2.083644, + "rtt_ns": 1573791, + "rtt_ms": 1.573791, "checkpoint": 0, "vertex_from": "2", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:29.68337627Z" + "timestamp": "2025-11-27T04:03:11.439313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182773, - "rtt_ms": 2.182773, + "rtt_ns": 1462250, + "rtt_ms": 1.46225, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:29.683580039Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:11.439814-08:00" }, { "operation": "add_edge", - "rtt_ns": 2740172, - "rtt_ms": 2.740172, + "rtt_ns": 2013291, + "rtt_ms": 2.013291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:29.684180527Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:11.439919-08:00" }, { "operation": "add_edge", - "rtt_ns": 2777852, - "rtt_ms": 2.777852, + "rtt_ns": 1583625, + "rtt_ms": 1.583625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:29.684269467Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:11.440032-08:00" }, { "operation": "add_edge", - "rtt_ns": 2890582, - "rtt_ms": 2.890582, + "rtt_ns": 1225792, + "rtt_ms": 1.225792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:29.684367317Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:11.44054-08:00" }, { "operation": "add_edge", - "rtt_ns": 3064451, - "rtt_ms": 3.064451, + "rtt_ns": 1976416, + "rtt_ms": 1.976416, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.684446887Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:11.440641-08:00" }, { "operation": "add_edge", - "rtt_ns": 3023202, - "rtt_ms": 3.023202, + "rtt_ns": 2446166, + "rtt_ms": 2.446166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:29.684481467Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:11.44105-08:00" }, { "operation": "add_edge", - "rtt_ns": 3031771, - "rtt_ms": 3.031771, + "rtt_ns": 2038375, + "rtt_ms": 2.038375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:29.684515456Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:11.44114-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331093, - "rtt_ms": 2.331093, + "rtt_ns": 2203250, + "rtt_ms": 2.20325, "checkpoint": 0, "vertex_from": "2", "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.684598396Z" + "timestamp": "2025-11-27T04:03:11.441388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2410733, - "rtt_ms": 2.410733, + "rtt_ns": 2364458, + "rtt_ms": 2.364458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.684681746Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:11.44148-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2475750, + "rtt_ms": 2.47575, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:11.441591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157397, - "rtt_ms": 1.157397, + "rtt_ns": 1884083, + "rtt_ms": 1.884083, "checkpoint": 0, "vertex_from": "2", "vertex_to": "324", - "timestamp": "2025-11-27T01:23:29.684739266Z" + "timestamp": "2025-11-27T04:03:11.441804-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1412466, - "rtt_ms": 1.412466, + "rtt_ns": 2000333, + "rtt_ms": 2.000333, "checkpoint": 0, "vertex_from": "748", - "timestamp": "2025-11-27T01:23:29.684792376Z" + "timestamp": "2025-11-27T04:03:11.441815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051087, - "rtt_ms": 1.051087, + "rtt_ns": 2086250, + "rtt_ms": 2.08625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:29.685419784Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:11.442119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174367, - "rtt_ms": 1.174367, + "rtt_ns": 1663042, + "rtt_ms": 1.663042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.685445094Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:11.442804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013947, - "rtt_ms": 1.013947, + "rtt_ns": 1770167, + "rtt_ms": 1.770167, "checkpoint": 0, "vertex_from": "2", "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.685462154Z" + "timestamp": "2025-11-27T04:03:11.442821-08:00" }, { "operation": "add_edge", - "rtt_ns": 952888, - "rtt_ms": 0.952888, + "rtt_ns": 2485792, + "rtt_ms": 2.485792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:29.685469564Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:03:11.443128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024427, - "rtt_ms": 1.024427, + "rtt_ns": 1582375, + "rtt_ms": 1.582375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.685507154Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:03:11.443175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462316, - "rtt_ms": 1.462316, + "rtt_ns": 1795042, + "rtt_ms": 1.795042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:29.685644853Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:11.443184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581976, - "rtt_ms": 1.581976, + "rtt_ns": 2781000, + "rtt_ms": 2.781, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "43", - "timestamp": "2025-11-27T01:23:29.686264832Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:11.443321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583495, - "rtt_ms": 1.583495, + "rtt_ns": 1628208, + "rtt_ms": 1.628208, "checkpoint": 0, "vertex_from": "2", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.686324281Z" + "timestamp": "2025-11-27T04:03:11.443433-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1739425, - "rtt_ms": 1.739425, + "rtt_ns": 1995666, + "rtt_ms": 1.995666, "checkpoint": 0, "vertex_from": "866", - "timestamp": "2025-11-27T01:23:29.686341181Z" + "timestamp": "2025-11-27T04:03:11.443478-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023244, - "rtt_ms": 2.023244, + "rtt_ns": 1760042, + "rtt_ms": 1.760042, "checkpoint": 0, "vertex_from": "2", "vertex_to": "748", - "timestamp": "2025-11-27T01:23:29.68681628Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1434526, - "rtt_ms": 1.434526, - "checkpoint": 0, - "vertex_from": "858", - "timestamp": "2025-11-27T01:23:29.68690089Z" + "timestamp": "2025-11-27T04:03:11.443575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400066, - "rtt_ms": 1.400066, + "rtt_ns": 1364458, + "rtt_ms": 1.364458, "checkpoint": 0, "vertex_from": "2", "vertex_to": "775", - "timestamp": "2025-11-27T01:23:29.68690914Z" + "timestamp": "2025-11-27T04:03:11.44454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452576, - "rtt_ms": 1.452576, + "rtt_ns": 1395625, + "rtt_ms": 1.395625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:29.6869237Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:11.444582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483416, - "rtt_ms": 1.483416, + "rtt_ns": 2565250, + "rtt_ms": 2.56525, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:29.68693068Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:11.444686-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1336417, - "rtt_ms": 1.336417, + "operation": "add_vertex", + "rtt_ns": 1903041, + "rtt_ms": 1.903041, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:29.68698286Z" + "vertex_from": "858", + "timestamp": "2025-11-27T04:03:11.444725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614675, - "rtt_ms": 1.614675, + "rtt_ns": 1620167, + "rtt_ms": 1.620167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.687037739Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:11.444751-08:00" }, { "operation": "add_edge", - "rtt_ns": 808877, - "rtt_ms": 0.808877, + "rtt_ns": 1949500, + "rtt_ms": 1.9495, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:29.687076469Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:11.444754-08:00" }, { "operation": "add_edge", - "rtt_ns": 840318, - "rtt_ms": 0.840318, + "rtt_ns": 1839125, + "rtt_ms": 1.839125, "checkpoint": 0, "vertex_from": "2", "vertex_to": "139", - "timestamp": "2025-11-27T01:23:29.687166299Z" + "timestamp": "2025-11-27T04:03:11.445273-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1794916, + "rtt_ms": 1.794916, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:11.445372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563086, - "rtt_ms": 1.563086, + "rtt_ns": 1949625, + "rtt_ms": 1.949625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "866", - "timestamp": "2025-11-27T01:23:29.687904957Z" + "timestamp": "2025-11-27T04:03:11.445428-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1450946, - "rtt_ms": 1.450946, + "operation": "add_edge", + "rtt_ns": 2297125, + "rtt_ms": 2.297125, "checkpoint": 0, - "vertex_from": "302", - "timestamp": "2025-11-27T01:23:29.688364226Z" + "vertex_from": "2", + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:11.44562-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1452345, - "rtt_ms": 1.452345, + "rtt_ns": 1852042, + "rtt_ms": 1.852042, "checkpoint": 0, - "vertex_from": "758", - "timestamp": "2025-11-27T01:23:29.688388345Z" + "vertex_from": "302", + "timestamp": "2025-11-27T04:03:11.446393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863644, - "rtt_ms": 1.863644, + "rtt_ns": 1814083, + "rtt_ms": 1.814083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.688788764Z" + "vertex_to": "858", + "timestamp": "2025-11-27T04:03:11.446539-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000584, - "rtt_ms": 2.000584, + "rtt_ns": 1845583, + "rtt_ms": 1.845583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:29.688819334Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:03:11.446598-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1885244, - "rtt_ms": 1.885244, + "operation": "add_vertex", + "rtt_ns": 1489167, + "rtt_ms": 1.489167, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "101", - "timestamp": "2025-11-27T01:23:29.688870164Z" + "vertex_from": "665", + "timestamp": "2025-11-27T04:03:11.44711-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002594, - "rtt_ms": 2.002594, + "rtt_ns": 1697750, + "rtt_ms": 1.69775, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "858", - "timestamp": "2025-11-27T01:23:29.688903864Z" + "vertex_to": "230", + "timestamp": "2025-11-27T04:03:11.447127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058674, - "rtt_ms": 2.058674, + "rtt_ns": 2426584, + "rtt_ms": 2.426584, "checkpoint": 0, "vertex_from": "2", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.689098053Z" + "timestamp": "2025-11-27T04:03:11.447182-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035684, - "rtt_ms": 2.035684, + "rtt_ns": 1973375, + "rtt_ms": 1.973375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "880", - "timestamp": "2025-11-27T01:23:29.689203793Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:03:11.447249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126734, - "rtt_ms": 2.126734, + "rtt_ns": 1980000, + "rtt_ms": 1.98, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "628", - "timestamp": "2025-11-27T01:23:29.689205813Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:03:11.447353-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2701459, + "rtt_ms": 2.701459, + "checkpoint": 0, + "vertex_from": "758", + "timestamp": "2025-11-27T04:03:11.44739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354556, - "rtt_ms": 1.354556, + "rtt_ns": 2823375, + "rtt_ms": 2.823375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "230", - "timestamp": "2025-11-27T01:23:29.689262263Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:11.447408-08:00" }, { "operation": "add_edge", - "rtt_ns": 948357, - "rtt_ms": 0.948357, + "rtt_ns": 1658667, + "rtt_ms": 1.658667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "302", - "timestamp": "2025-11-27T01:23:29.689312843Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:03:11.448258-08:00" }, { "operation": "add_edge", - "rtt_ns": 946798, - "rtt_ms": 0.946798, + "rtt_ns": 1989792, + "rtt_ms": 1.989792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "758", - "timestamp": "2025-11-27T01:23:29.689335713Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:03:11.448383-08:00" }, { "operation": "add_edge", - "rtt_ns": 693948, - "rtt_ms": 0.693948, + "rtt_ns": 1366875, + "rtt_ms": 1.366875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:29.689598972Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:03:11.448478-08:00" }, { "operation": "add_edge", - "rtt_ns": 953807, - "rtt_ms": 0.953807, + "rtt_ns": 2036500, + "rtt_ms": 2.0365, "checkpoint": 0, "vertex_from": "2", "vertex_to": "69", - "timestamp": "2025-11-27T01:23:29.689774031Z" + "timestamp": "2025-11-27T04:03:11.448578-08:00" }, { "operation": "add_edge", - "rtt_ns": 931217, - "rtt_ms": 0.931217, + "rtt_ns": 1673500, + "rtt_ms": 1.6735, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "6", - "timestamp": "2025-11-27T01:23:29.689802381Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:11.448857-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1038367, - "rtt_ms": 1.038367, + "operation": "add_edge", + "rtt_ns": 1469250, + "rtt_ms": 1.46925, "checkpoint": 0, - "vertex_from": "665", - "timestamp": "2025-11-27T01:23:29.689829881Z" + "vertex_from": "2", + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:11.448878-08:00" }, { "operation": "add_edge", - "rtt_ns": 896748, - "rtt_ms": 0.896748, + "rtt_ns": 1830458, + "rtt_ms": 1.830458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:29.689995901Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:11.448958-08:00" }, { "operation": "add_edge", - "rtt_ns": 805738, - "rtt_ms": 0.805738, + "rtt_ns": 1748000, + "rtt_ms": 1.748, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:29.690012811Z" + "vertex_to": "758", + "timestamp": "2025-11-27T04:03:11.449138-08:00" }, { "operation": "add_edge", - "rtt_ns": 828258, - "rtt_ms": 0.828258, + "rtt_ns": 1975750, + "rtt_ms": 1.97575, "checkpoint": 0, "vertex_from": "2", "vertex_to": "263", - "timestamp": "2025-11-27T01:23:29.690033661Z" + "timestamp": "2025-11-27T04:03:11.449225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421235, - "rtt_ms": 1.421235, + "rtt_ns": 1993834, + "rtt_ms": 1.993834, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:29.690734738Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:11.449348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692775, - "rtt_ms": 1.692775, + "rtt_ns": 1124250, + "rtt_ms": 1.12425, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:29.690956138Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:11.450263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1946464, - "rtt_ms": 1.946464, + "rtt_ns": 2074458, + "rtt_ms": 2.074458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:29.691283757Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:11.450334-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392003, - "rtt_ms": 2.392003, + "rtt_ns": 2054792, + "rtt_ms": 2.054792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:29.691993555Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:11.450439-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267143, - "rtt_ms": 2.267143, + "rtt_ns": 1622125, + "rtt_ms": 1.622125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "488", - "timestamp": "2025-11-27T01:23:29.692070794Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:11.450501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2295973, - "rtt_ms": 2.295973, + "rtt_ns": 1582584, + "rtt_ms": 1.582584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:29.692071154Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:11.450542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080313, - "rtt_ms": 2.080313, + "rtt_ns": 1718583, + "rtt_ms": 1.718583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:29.692115674Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:03:11.450577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144933, - "rtt_ms": 2.144933, + "rtt_ns": 1442250, + "rtt_ms": 1.44225, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:29.692159094Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:11.450669-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359333, - "rtt_ms": 2.359333, + "rtt_ns": 2210083, + "rtt_ms": 2.210083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:29.692189694Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:11.45069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514096, - "rtt_ms": 1.514096, + "rtt_ns": 2098458, + "rtt_ms": 2.098458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:29.692250554Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:11.450694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909904, - "rtt_ms": 1.909904, + "rtt_ns": 1365375, + "rtt_ms": 1.365375, "checkpoint": 0, "vertex_from": "2", "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.692867302Z" + "timestamp": "2025-11-27T04:03:11.450716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583055, - "rtt_ms": 1.583055, + "rtt_ns": 1010333, + "rtt_ms": 1.010333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:29.692868312Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:03:11.451588-08:00" }, { "operation": "add_edge", - "rtt_ns": 2880451, - "rtt_ms": 2.880451, + "rtt_ns": 1580709, + "rtt_ms": 1.580709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:29.692879332Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:11.451915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018297, - "rtt_ms": 1.018297, + "rtt_ns": 1766625, + "rtt_ms": 1.766625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.693014452Z" + "vertex_to": "327", + "timestamp": "2025-11-27T04:03:11.452268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572746, - "rtt_ms": 1.572746, + "rtt_ns": 2111708, + "rtt_ms": 2.111708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "327", - "timestamp": "2025-11-27T01:23:29.69364527Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:11.452377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548316, - "rtt_ms": 1.548316, + "rtt_ns": 1670208, + "rtt_ms": 1.670208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:29.69366545Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.452387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438326, - "rtt_ms": 1.438326, + "rtt_ns": 1744834, + "rtt_ms": 1.744834, "checkpoint": 0, "vertex_from": "2", "vertex_to": "178", - "timestamp": "2025-11-27T01:23:29.69369003Z" + "timestamp": "2025-11-27T04:03:11.452436-08:00" }, { "operation": "add_edge", - "rtt_ns": 822808, - "rtt_ms": 0.822808, + "rtt_ns": 1918083, + "rtt_ms": 1.918083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.69369364Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:11.452461-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1526186, - "rtt_ms": 1.526186, + "operation": "add_vertex", + "rtt_ns": 1824667, + "rtt_ms": 1.824667, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:29.69371715Z" + "vertex_from": "777", + "timestamp": "2025-11-27T04:03:11.45252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584925, - "rtt_ms": 1.584925, + "rtt_ns": 2113833, + "rtt_ms": 2.113833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "817", - "timestamp": "2025-11-27T01:23:29.693745159Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:11.452554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678515, - "rtt_ms": 1.678515, + "rtt_ns": 1901375, + "rtt_ms": 1.901375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:29.693751019Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:11.452571-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1158347, - "rtt_ms": 1.158347, + "operation": "add_edge", + "rtt_ns": 1842917, + "rtt_ms": 1.842917, "checkpoint": 0, - "vertex_from": "777", - "timestamp": "2025-11-27T01:23:29.694031349Z" + "vertex_from": "2", + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:11.453432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179756, - "rtt_ms": 1.179756, + "rtt_ns": 1562209, + "rtt_ms": 1.562209, "checkpoint": 0, "vertex_from": "2", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.694197688Z" + "timestamp": "2025-11-27T04:03:11.453478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343966, - "rtt_ms": 1.343966, + "rtt_ns": 1312334, + "rtt_ms": 1.312334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:29.694227798Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:03:11.453692-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 663168, - "rtt_ms": 0.663168, + "operation": "add_edge", + "rtt_ns": 1275542, + "rtt_ms": 1.275542, "checkpoint": 0, - "vertex_from": "497", - "timestamp": "2025-11-27T01:23:29.694357298Z" + "vertex_from": "2", + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:11.453738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074847, - "rtt_ms": 1.074847, + "rtt_ns": 1250750, + "rtt_ms": 1.25075, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.694721937Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:11.453771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099096, - "rtt_ms": 1.099096, + "rtt_ns": 1538042, + "rtt_ms": 1.538042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "313", - "timestamp": "2025-11-27T01:23:29.694766666Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.453807-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1187307, - "rtt_ms": 1.187307, + "operation": "add_vertex", + "rtt_ns": 1465167, + "rtt_ms": 1.465167, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:29.694934076Z" + "vertex_from": "497", + "timestamp": "2025-11-27T04:03:11.453853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236746, - "rtt_ms": 1.236746, + "rtt_ns": 1520875, + "rtt_ms": 1.520875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:29.694955126Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:11.453958-08:00" }, { "operation": "add_edge", - "rtt_ns": 932947, - "rtt_ms": 0.932947, + "rtt_ns": 1459666, + "rtt_ms": 1.459666, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:29.694964856Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:11.454014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217607, - "rtt_ms": 1.217607, + "rtt_ns": 1635000, + "rtt_ms": 1.635, "checkpoint": 0, "vertex_from": "2", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:29.694970686Z" + "timestamp": "2025-11-27T04:03:11.454214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379865, - "rtt_ms": 1.379865, + "rtt_ns": 1217375, + "rtt_ms": 1.217375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:29.695074915Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:11.455026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598795, - "rtt_ms": 1.598795, + "rtt_ns": 1834417, + "rtt_ms": 1.834417, "checkpoint": 0, "vertex_from": "2", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:29.695798213Z" + "timestamp": "2025-11-27T04:03:11.455269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880784, - "rtt_ms": 1.880784, + "rtt_ns": 1570708, + "rtt_ms": 1.570708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "497", - "timestamp": "2025-11-27T01:23:29.696238312Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:11.455309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2722452, - "rtt_ms": 2.722452, + "rtt_ns": 1439125, + "rtt_ms": 1.439125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:29.69695136Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:11.455399-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2304633, - "rtt_ms": 2.304633, + "operation": "add_vertex", + "rtt_ns": 1636542, + "rtt_ms": 1.636542, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:29.69702998Z" + "vertex_from": "174", + "timestamp": "2025-11-27T04:03:11.455409-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313633, - "rtt_ms": 2.313633, + "rtt_ns": 2030708, + "rtt_ms": 2.030708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.697081529Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:11.45551-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225503, - "rtt_ms": 2.225503, + "rtt_ns": 1506667, + "rtt_ms": 1.506667, "checkpoint": 0, "vertex_from": "2", "vertex_to": "484", - "timestamp": "2025-11-27T01:23:29.697199229Z" + "timestamp": "2025-11-27T04:03:11.455522-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356203, - "rtt_ms": 2.356203, + "rtt_ns": 1772625, + "rtt_ms": 1.772625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:29.697313159Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:03:11.455626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364883, - "rtt_ms": 2.364883, + "rtt_ns": 2028041, + "rtt_ms": 2.028041, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:29.697331079Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2396233, - "rtt_ms": 2.396233, - "checkpoint": 0, - "vertex_from": "174", - "timestamp": "2025-11-27T01:23:29.697332159Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:11.455721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612136, - "rtt_ms": 1.612136, + "rtt_ns": 1483541, + "rtt_ms": 1.483541, "checkpoint": 0, "vertex_from": "2", "vertex_to": "434", - "timestamp": "2025-11-27T01:23:29.697412059Z" + "timestamp": "2025-11-27T04:03:11.456511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173467, - "rtt_ms": 1.173467, + "rtt_ns": 1402167, + "rtt_ms": 1.402167, "checkpoint": 0, "vertex_from": "2", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.697413159Z" + "timestamp": "2025-11-27T04:03:11.456672-08:00" }, { "operation": "add_edge", - "rtt_ns": 2351463, - "rtt_ms": 2.351463, + "rtt_ns": 1601125, + "rtt_ms": 1.601125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:29.697428538Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:11.457001-08:00" }, { "operation": "add_edge", - "rtt_ns": 639078, - "rtt_ms": 0.639078, + "rtt_ns": 2799334, + "rtt_ms": 2.799334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:29.697591938Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:11.457014-08:00" }, { "operation": "add_edge", - "rtt_ns": 682228, - "rtt_ms": 0.682228, + "rtt_ns": 1709916, + "rtt_ms": 1.709916, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:29.697713278Z" + "vertex_to": "174", + "timestamp": "2025-11-27T04:03:11.457119-08:00" }, { "operation": "add_edge", - "rtt_ns": 663319, - "rtt_ms": 0.663319, + "rtt_ns": 1595958, + "rtt_ms": 1.595958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.697745908Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:11.457318-08:00" }, { "operation": "add_edge", - "rtt_ns": 663238, - "rtt_ms": 0.663238, + "rtt_ns": 1824500, + "rtt_ms": 1.8245, "checkpoint": 0, "vertex_from": "2", "vertex_to": "309", - "timestamp": "2025-11-27T01:23:29.697864117Z" + "timestamp": "2025-11-27T04:03:11.457347-08:00" }, { "operation": "add_edge", - "rtt_ns": 749658, - "rtt_ms": 0.749658, + "rtt_ns": 1851583, + "rtt_ms": 1.851583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "370", - "timestamp": "2025-11-27T01:23:29.698065877Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.457363-08:00" }, { "operation": "add_edge", - "rtt_ns": 753407, - "rtt_ms": 0.753407, + "rtt_ns": 1989958, + "rtt_ms": 1.989958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "174", - "timestamp": "2025-11-27T01:23:29.698085956Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:03:11.457617-08:00" }, { "operation": "add_edge", - "rtt_ns": 831447, - "rtt_ms": 0.831447, + "rtt_ns": 2381042, + "rtt_ms": 2.381042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:29.698164396Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:11.457697-08:00" }, { "operation": "add_edge", - "rtt_ns": 779578, - "rtt_ms": 0.779578, + "rtt_ns": 1283709, + "rtt_ms": 1.283709, "checkpoint": 0, "vertex_from": "2", "vertex_to": "834", - "timestamp": "2025-11-27T01:23:29.698195006Z" + "timestamp": "2025-11-27T04:03:11.457795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388496, - "rtt_ms": 1.388496, + "rtt_ns": 1415084, + "rtt_ms": 1.415084, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.698803174Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:11.45843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428846, - "rtt_ms": 1.428846, + "rtt_ns": 1723625, + "rtt_ms": 1.723625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "901", - "timestamp": "2025-11-27T01:23:29.698858354Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1532165, - "rtt_ms": 1.532165, - "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:29.699125263Z" + "timestamp": "2025-11-27T04:03:11.458727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526485, - "rtt_ms": 1.526485, + "rtt_ns": 2133875, + "rtt_ms": 2.133875, "checkpoint": 0, "vertex_from": "2", "vertex_to": "780", - "timestamp": "2025-11-27T01:23:29.699241303Z" + "timestamp": "2025-11-27T04:03:11.459254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572746, - "rtt_ms": 1.572746, + "rtt_ns": 2079667, + "rtt_ms": 2.079667, "checkpoint": 0, "vertex_from": "2", "vertex_to": "201", - "timestamp": "2025-11-27T01:23:29.699324803Z" + "timestamp": "2025-11-27T04:03:11.459399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518216, - "rtt_ms": 1.518216, + "rtt_ns": 2136209, + "rtt_ms": 2.136209, "checkpoint": 0, "vertex_from": "2", "vertex_to": "323", - "timestamp": "2025-11-27T01:23:29.699383693Z" + "timestamp": "2025-11-27T04:03:11.459483-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 752628, - "rtt_ms": 0.752628, + "operation": "add_edge", + "rtt_ns": 2850083, + "rtt_ms": 2.850083, "checkpoint": 0, - "vertex_from": "940", - "timestamp": "2025-11-27T01:23:29.699995531Z" + "vertex_from": "2", + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:11.459524-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 942948, - "rtt_ms": 0.942948, + "operation": "add_edge", + "rtt_ns": 2161667, + "rtt_ms": 2.161667, "checkpoint": 0, - "vertex_from": "767", - "timestamp": "2025-11-27T01:23:29.700070271Z" + "vertex_from": "2", + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:11.45986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974954, - "rtt_ms": 1.974954, + "rtt_ns": 2604750, + "rtt_ms": 2.60475, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:29.70014152Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:11.45997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146814, - "rtt_ms": 2.146814, + "rtt_ns": 2436666, + "rtt_ms": 2.436666, "checkpoint": 0, "vertex_from": "2", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.70023514Z" + "timestamp": "2025-11-27T04:03:11.460055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065564, - "rtt_ms": 2.065564, + "rtt_ns": 1372333, + "rtt_ms": 1.372333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:29.7002629Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:11.4601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250263, - "rtt_ms": 2.250263, + "rtt_ns": 2387584, + "rtt_ms": 2.387584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:29.70031919Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:11.460184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531376, - "rtt_ms": 1.531376, + "rtt_ns": 2061833, + "rtt_ms": 2.061833, "checkpoint": 0, "vertex_from": "2", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:29.70033701Z" + "timestamp": "2025-11-27T04:03:11.460493-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1502536, - "rtt_ms": 1.502536, + "operation": "add_vertex", + "rtt_ns": 1281792, + "rtt_ms": 1.281792, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:29.70036227Z" + "vertex_from": "940", + "timestamp": "2025-11-27T04:03:11.460683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682065, - "rtt_ms": 1.682065, + "rtt_ns": 1209500, + "rtt_ms": 1.2095, "checkpoint": 0, "vertex_from": "2", "vertex_to": "154", - "timestamp": "2025-11-27T01:23:29.701008298Z" + "timestamp": "2025-11-27T04:03:11.460694-08:00" }, { "operation": "add_edge", - "rtt_ns": 886258, - "rtt_ms": 0.886258, + "rtt_ns": 1177584, + "rtt_ms": 1.177584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:29.701149978Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:11.460703-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1154207, - "rtt_ms": 1.154207, + "operation": "add_vertex", + "rtt_ns": 1508167, + "rtt_ms": 1.508167, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "940", - "timestamp": "2025-11-27T01:23:29.701150108Z" + "vertex_from": "767", + "timestamp": "2025-11-27T04:03:11.460766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775725, - "rtt_ms": 1.775725, + "rtt_ns": 1356166, + "rtt_ms": 1.356166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:29.701160608Z" + "vertex_to": "349", + "timestamp": "2025-11-27T04:03:11.461458-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1677125, + "rtt_ms": 1.677125, + "checkpoint": 0, + "vertex_from": "171", + "timestamp": "2025-11-27T04:03:11.46165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042238, - "rtt_ms": 1.042238, + "rtt_ns": 1840500, + "rtt_ms": 1.8405, "checkpoint": 0, "vertex_from": "2", "vertex_to": "796", - "timestamp": "2025-11-27T01:23:29.701185148Z" + "timestamp": "2025-11-27T04:03:11.461701-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 974817, - "rtt_ms": 0.974817, + "operation": "add_edge", + "rtt_ns": 1576459, + "rtt_ms": 1.576459, "checkpoint": 0, - "vertex_from": "171", - "timestamp": "2025-11-27T01:23:29.701212087Z" + "vertex_from": "2", + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:11.461761-08:00" }, { "operation": "add_edge", - "rtt_ns": 874627, - "rtt_ms": 0.874627, + "rtt_ns": 1474291, + "rtt_ms": 1.474291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:29.701213277Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:03:11.461968-08:00" }, { "operation": "add_edge", - "rtt_ns": 895517, - "rtt_ms": 0.895517, + "rtt_ns": 2094666, + "rtt_ms": 2.094666, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "349", - "timestamp": "2025-11-27T01:23:29.701215817Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:11.462152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303826, - "rtt_ms": 1.303826, + "rtt_ns": 1702875, + "rtt_ms": 1.702875, "checkpoint": 0, "vertex_from": "2", "vertex_to": "767", - "timestamp": "2025-11-27T01:23:29.701374347Z" + "timestamp": "2025-11-27T04:03:11.462469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039847, - "rtt_ms": 1.039847, + "rtt_ns": 2476709, + "rtt_ms": 2.476709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "361", - "timestamp": "2025-11-27T01:23:29.701403957Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:11.463171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098767, - "rtt_ms": 1.098767, + "rtt_ns": 1564000, + "rtt_ms": 1.564, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.702108435Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:03:11.463215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156066, - "rtt_ms": 1.156066, + "rtt_ns": 1775375, + "rtt_ms": 1.775375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:29.702342664Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:11.463235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154527, - "rtt_ms": 1.154527, + "rtt_ns": 2572583, + "rtt_ms": 2.572583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "171", - "timestamp": "2025-11-27T01:23:29.702366884Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:03:11.463257-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1252167, - "rtt_ms": 1.252167, + "rtt_ns": 1181875, + "rtt_ms": 1.181875, "checkpoint": 0, "vertex_from": "573", - "timestamp": "2025-11-27T01:23:29.702469764Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1366716, - "rtt_ms": 1.366716, - "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:29.702517794Z" + "timestamp": "2025-11-27T04:03:11.463335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396007, - "rtt_ms": 1.396007, + "rtt_ns": 1686209, + "rtt_ms": 1.686209, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.702611424Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:11.463449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450366, - "rtt_ms": 1.450366, + "rtt_ns": 1773833, + "rtt_ms": 1.773833, "checkpoint": 0, "vertex_from": "2", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:29.702613094Z" + "timestamp": "2025-11-27T04:03:11.463477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500075, - "rtt_ms": 1.500075, + "rtt_ns": 2849708, + "rtt_ms": 2.849708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.702651393Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:11.463553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281156, - "rtt_ms": 1.281156, + "rtt_ns": 1666250, + "rtt_ms": 1.66625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:29.702688143Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.463636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341106, - "rtt_ms": 1.341106, + "rtt_ns": 1672916, + "rtt_ms": 1.672916, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:29.702717263Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:03:11.465008-08:00" }, { "operation": "add_edge", - "rtt_ns": 721018, - "rtt_ms": 0.721018, + "rtt_ns": 2042958, + "rtt_ms": 2.042958, "checkpoint": 0, "vertex_from": "2", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:29.702830973Z" + "timestamp": "2025-11-27T04:03:11.465259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113847, - "rtt_ms": 1.113847, + "rtt_ns": 2206625, + "rtt_ms": 2.206625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.703457461Z" + "timestamp": "2025-11-27T04:03:11.465443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318627, - "rtt_ms": 1.318627, + "rtt_ns": 1954459, + "rtt_ms": 1.954459, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:29.703686371Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:11.465591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773485, - "rtt_ms": 1.773485, + "rtt_ns": 2133417, + "rtt_ms": 2.133417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "573", - "timestamp": "2025-11-27T01:23:29.704243639Z" + "vertex_to": "821", + "timestamp": "2025-11-27T04:03:11.465611-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144474, - "rtt_ms": 2.144474, + "rtt_ns": 2447000, + "rtt_ms": 2.447, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:29.704664098Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:11.46562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179733, - "rtt_ms": 2.179733, + "rtt_ns": 2373667, + "rtt_ms": 2.373667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:29.704793887Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:11.465633-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130594, - "rtt_ms": 2.130594, + "rtt_ns": 3164250, + "rtt_ms": 3.16425, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:29.704849677Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:11.465634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2324494, - "rtt_ms": 2.324494, + "rtt_ns": 2292417, + "rtt_ms": 2.292417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:29.704976997Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:11.465742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2365263, - "rtt_ms": 2.365263, + "rtt_ns": 2213042, + "rtt_ms": 2.213042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "821", - "timestamp": "2025-11-27T01:23:29.704978027Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:11.465767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609515, - "rtt_ms": 1.609515, + "rtt_ns": 1465000, + "rtt_ms": 1.465, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:29.705073906Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:11.466474-08:00" }, { "operation": "add_edge", - "rtt_ns": 2402853, - "rtt_ms": 2.402853, + "rtt_ns": 1344667, + "rtt_ms": 1.344667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.705092196Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:11.466604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286783, - "rtt_ms": 2.286783, + "rtt_ns": 1800750, + "rtt_ms": 1.80075, "checkpoint": 0, "vertex_from": "2", "vertex_to": "898", - "timestamp": "2025-11-27T01:23:29.705119606Z" + "timestamp": "2025-11-27T04:03:11.467245-08:00" }, { "operation": "add_edge", - "rtt_ns": 898567, - "rtt_ms": 0.898567, + "rtt_ns": 1682458, + "rtt_ms": 1.682458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:29.705144186Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:11.467317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472865, - "rtt_ms": 1.472865, + "rtt_ns": 1556250, + "rtt_ms": 1.55625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "124", - "timestamp": "2025-11-27T01:23:29.705160936Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:03:11.467326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294696, - "rtt_ms": 1.294696, + "rtt_ns": 1728500, + "rtt_ms": 1.7285, "checkpoint": 0, "vertex_from": "2", "vertex_to": "864", - "timestamp": "2025-11-27T01:23:29.705959844Z" + "timestamp": "2025-11-27T04:03:11.467362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186187, - "rtt_ms": 1.186187, + "rtt_ns": 1749166, + "rtt_ms": 1.749166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:29.705981004Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:11.467492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131527, - "rtt_ms": 1.131527, + "rtt_ns": 1919750, + "rtt_ms": 1.91975, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:29.705984234Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:11.467513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573125, - "rtt_ms": 1.573125, + "rtt_ns": 1995209, + "rtt_ms": 1.995209, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "75", - "timestamp": "2025-11-27T01:23:29.706551642Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:11.467616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479156, - "rtt_ms": 1.479156, + "rtt_ns": 2085333, + "rtt_ms": 2.085333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "922", - "timestamp": "2025-11-27T01:23:29.706599922Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:03:11.467697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622305, - "rtt_ms": 1.622305, + "rtt_ns": 1325333, + "rtt_ms": 1.325333, "checkpoint": 0, "vertex_from": "2", "vertex_to": "344", - "timestamp": "2025-11-27T01:23:29.706602222Z" + "timestamp": "2025-11-27T04:03:11.4678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548886, - "rtt_ms": 1.548886, + "rtt_ns": 1825000, + "rtt_ms": 1.825, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:29.706643162Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:03:11.46843-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1569959, + "rtt_ms": 1.569959, + "checkpoint": 0, + "vertex_from": "399", + "timestamp": "2025-11-27T04:03:11.468899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486466, - "rtt_ms": 1.486466, + "rtt_ns": 1691750, + "rtt_ms": 1.69175, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:29.706649062Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:11.468939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576866, - "rtt_ms": 1.576866, + "rtt_ns": 1520125, + "rtt_ms": 1.520125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:29.706652412Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:11.469321-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1505666, - "rtt_ms": 1.505666, + "operation": "add_edge", + "rtt_ns": 1827167, + "rtt_ms": 1.827167, "checkpoint": 0, - "vertex_from": "399", - "timestamp": "2025-11-27T01:23:29.706653392Z" + "vertex_from": "2", + "vertex_to": "659", + "timestamp": "2025-11-27T04:03:11.469341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174846, - "rtt_ms": 1.174846, + "rtt_ns": 1882625, + "rtt_ms": 1.882625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:29.70713763Z" + "timestamp": "2025-11-27T04:03:11.469376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270106, - "rtt_ms": 1.270106, + "rtt_ns": 1926542, + "rtt_ms": 1.926542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:29.70725568Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:11.469625-08:00" }, { "operation": "add_edge", - "rtt_ns": 643058, - "rtt_ms": 0.643058, + "rtt_ns": 2582667, + "rtt_ms": 2.582667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "399", - "timestamp": "2025-11-27T01:23:29.70729722Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:03:11.469901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342486, - "rtt_ms": 1.342486, + "rtt_ns": 2441959, + "rtt_ms": 2.441959, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "659", - "timestamp": "2025-11-27T01:23:29.70732665Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:11.470059-08:00" }, { "operation": "add_edge", - "rtt_ns": 762368, - "rtt_ms": 0.762368, + "rtt_ns": 2866292, + "rtt_ms": 2.866292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:29.70736573Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:11.47023-08:00" }, { "operation": "add_edge", - "rtt_ns": 857837, - "rtt_ms": 0.857837, + "rtt_ns": 1810000, + "rtt_ms": 1.81, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:29.707411669Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:11.470243-08:00" }, { "operation": "add_edge", - "rtt_ns": 797287, - "rtt_ms": 0.797287, + "rtt_ns": 1460875, + "rtt_ms": 1.460875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:29.707452249Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:11.470401-08:00" }, { "operation": "add_edge", - "rtt_ns": 876887, - "rtt_ms": 0.876887, + "rtt_ns": 1185375, + "rtt_ms": 1.185375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:29.707478719Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:11.470811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258636, - "rtt_ms": 1.258636, + "rtt_ns": 1711416, + "rtt_ms": 1.711416, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:29.707908838Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:11.471053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315856, - "rtt_ms": 1.315856, + "rtt_ns": 1774458, + "rtt_ms": 1.774458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:29.707960668Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:11.471097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039447, - "rtt_ms": 1.039447, + "rtt_ns": 1782375, + "rtt_ms": 1.782375, "checkpoint": 0, "vertex_from": "2", "vertex_to": "674", - "timestamp": "2025-11-27T01:23:29.708178617Z" + "timestamp": "2025-11-27T04:03:11.471159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435915, - "rtt_ms": 1.435915, + "rtt_ns": 1257958, + "rtt_ms": 1.257958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:29.708734725Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:11.471318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494375, - "rtt_ms": 1.494375, + "rtt_ns": 2466208, + "rtt_ms": 2.466208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:29.708752695Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 780488, - "rtt_ms": 0.780488, - "checkpoint": 0, - "vertex_from": "941", - "timestamp": "2025-11-27T01:23:29.709518253Z" + "vertex_to": "399", + "timestamp": "2025-11-27T04:03:11.471366-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259253, - "rtt_ms": 2.259253, + "rtt_ns": 1621667, + "rtt_ms": 1.621667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:29.709587413Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:11.471525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250063, - "rtt_ms": 2.250063, + "rtt_ns": 1310834, + "rtt_ms": 1.310834, "checkpoint": 0, "vertex_from": "2", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:29.709617223Z" + "timestamp": "2025-11-27T04:03:11.471542-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2274033, - "rtt_ms": 2.274033, + "operation": "add_vertex", + "rtt_ns": 1262084, + "rtt_ms": 1.262084, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:29.709756572Z" + "vertex_from": "941", + "timestamp": "2025-11-27T04:03:11.472583-08:00" }, { "operation": "add_edge", - "rtt_ns": 2374293, - "rtt_ms": 2.374293, + "rtt_ns": 2341458, + "rtt_ms": 2.341458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:29.709786932Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:11.473868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897204, - "rtt_ms": 1.897204, + "rtt_ns": 3543042, + "rtt_ms": 3.543042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:29.709808002Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:11.473946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181137, - "rtt_ms": 1.181137, + "rtt_ns": 2836750, + "rtt_ms": 2.83675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "976", - "timestamp": "2025-11-27T01:23:29.709935392Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:11.473997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020794, - "rtt_ms": 2.020794, + "rtt_ns": 2915792, + "rtt_ms": 2.915792, "checkpoint": 0, "vertex_from": "2", "vertex_to": "801", - "timestamp": "2025-11-27T01:23:29.709982622Z" + "timestamp": "2025-11-27T04:03:11.474013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837085, - "rtt_ms": 1.837085, + "rtt_ns": 3120958, + "rtt_ms": 3.120958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:29.710018792Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:03:11.474488-08:00" }, { "operation": "add_edge", - "rtt_ns": 2625442, - "rtt_ms": 2.625442, + "rtt_ns": 4356834, + "rtt_ms": 4.356834, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:29.710079001Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:03:11.4746-08:00" }, { "operation": "add_edge", - "rtt_ns": 723368, - "rtt_ms": 0.723368, + "rtt_ns": 3604125, + "rtt_ms": 3.604125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "941", - "timestamp": "2025-11-27T01:23:29.710242071Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:11.474658-08:00" }, { "operation": "add_edge", - "rtt_ns": 876437, - "rtt_ms": 0.876437, + "rtt_ns": 3866584, + "rtt_ms": 3.866584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:29.71046524Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:11.474679-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 683918, - "rtt_ms": 0.683918, + "operation": "add_edge", + "rtt_ns": 2164958, + "rtt_ms": 2.164958, "checkpoint": 0, - "vertex_from": "755", - "timestamp": "2025-11-27T01:23:29.71049419Z" + "vertex_from": "2", + "vertex_to": "941", + "timestamp": "2025-11-27T04:03:11.474748-08:00" }, { "operation": "add_vertex", - "rtt_ns": 727038, - "rtt_ms": 0.727038, + "rtt_ns": 1918042, + "rtt_ms": 1.918042, "checkpoint": 0, - "vertex_from": "938", - "timestamp": "2025-11-27T01:23:29.710808679Z" + "vertex_from": "755", + "timestamp": "2025-11-27T04:03:11.475917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271537, - "rtt_ms": 1.271537, + "rtt_ns": 2301625, + "rtt_ms": 2.301625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "184", - "timestamp": "2025-11-27T01:23:29.711029859Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1532475, - "rtt_ms": 1.532475, - "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "285", - "timestamp": "2025-11-27T01:23:29.711150858Z" + "timestamp": "2025-11-27T04:03:11.476171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718235, - "rtt_ms": 1.718235, + "rtt_ns": 2296666, + "rtt_ms": 2.296666, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:29.711506207Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:11.476312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698155, - "rtt_ms": 1.698155, + "rtt_ns": 4983250, + "rtt_ms": 4.98325, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:29.711635377Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:03:11.476526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710424, - "rtt_ms": 1.710424, + "rtt_ns": 1923708, + "rtt_ms": 1.923708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:29.711730216Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:11.476673-08:00" }, { "operation": "add_vertex", - "rtt_ns": 702108, - "rtt_ms": 0.702108, + "rtt_ns": 2029416, + "rtt_ms": 2.029416, "checkpoint": 0, - "vertex_from": "646", - "timestamp": "2025-11-27T01:23:29.712339635Z" + "vertex_from": "938", + "timestamp": "2025-11-27T04:03:11.47669-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443423, - "rtt_ms": 2.443423, + "rtt_ns": 2894542, + "rtt_ms": 2.894542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:29.712428335Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:11.476843-08:00" }, { "operation": "add_edge", - "rtt_ns": 2189314, - "rtt_ms": 2.189314, + "rtt_ns": 2258292, + "rtt_ms": 2.258292, "checkpoint": 0, "vertex_from": "2", "vertex_to": "227", - "timestamp": "2025-11-27T01:23:29.712432945Z" + "timestamp": "2025-11-27T04:03:11.47694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966044, - "rtt_ms": 1.966044, + "rtt_ns": 2352500, + "rtt_ms": 2.3525, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "755", - "timestamp": "2025-11-27T01:23:29.712460814Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:11.476954-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050154, - "rtt_ms": 2.050154, + "rtt_ns": 2498083, + "rtt_ms": 2.498083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:29.712516534Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:03:11.476987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732575, - "rtt_ms": 1.732575, + "rtt_ns": 1305083, + "rtt_ms": 1.305083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "938", - "timestamp": "2025-11-27T01:23:29.712541794Z" + "vertex_to": "755", + "timestamp": "2025-11-27T04:03:11.477223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789885, - "rtt_ms": 1.789885, + "rtt_ns": 1564542, + "rtt_ms": 1.564542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:29.712942313Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:11.477737-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1179334, + "rtt_ms": 1.179334, + "checkpoint": 0, + "vertex_from": "477", + "timestamp": "2025-11-27T04:03:11.478024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967014, - "rtt_ms": 1.967014, + "rtt_ns": 1347292, + "rtt_ms": 1.347292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:29.712999953Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:03:11.478038-08:00" }, { "operation": "add_edge", - "rtt_ns": 943007, - "rtt_ms": 0.943007, + "rtt_ns": 1518042, + "rtt_ms": 1.518042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:29.713283072Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:03:11.478045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779815, - "rtt_ms": 1.779815, + "rtt_ns": 1755500, + "rtt_ms": 1.7555, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:29.713287712Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:11.478071-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1801825, - "rtt_ms": 1.801825, + "rtt_ns": 1444958, + "rtt_ms": 1.444958, "checkpoint": 0, - "vertex_from": "477", - "timestamp": "2025-11-27T01:23:29.713534071Z" + "vertex_from": "646", + "timestamp": "2025-11-27T04:03:11.478119-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1678875, + "rtt_ms": 1.678875, + "checkpoint": 0, + "vertex_from": "373", + "timestamp": "2025-11-27T04:03:11.478633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586305, - "rtt_ms": 1.586305, + "rtt_ns": 1615417, + "rtt_ms": 1.615417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:29.71401581Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:11.478839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574346, - "rtt_ms": 1.574346, + "rtt_ns": 1943542, + "rtt_ms": 1.943542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "366", - "timestamp": "2025-11-27T01:23:29.71403889Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:11.478884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104147, - "rtt_ms": 1.104147, + "rtt_ns": 1296750, + "rtt_ms": 1.29675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:29.71404753Z" + "vertex_to": "477", + "timestamp": "2025-11-27T04:03:11.479321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067217, - "rtt_ms": 1.067217, + "rtt_ns": 1277834, + "rtt_ms": 1.277834, "checkpoint": 0, "vertex_from": "2", "vertex_to": "204", - "timestamp": "2025-11-27T01:23:29.71406973Z" + "timestamp": "2025-11-27T04:03:11.479324-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1642685, - "rtt_ms": 1.642685, + "operation": "add_edge", + "rtt_ns": 1545292, + "rtt_ms": 1.545292, "checkpoint": 0, - "vertex_from": "373", - "timestamp": "2025-11-27T01:23:29.71407745Z" + "vertex_from": "2", + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:11.479584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549576, - "rtt_ms": 1.549576, + "rtt_ns": 1745958, + "rtt_ms": 1.745958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:29.71409269Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:11.479865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902295, - "rtt_ms": 1.902295, + "rtt_ns": 1293250, + "rtt_ms": 1.29325, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:29.714420029Z" + "vertex_to": "373", + "timestamp": "2025-11-27T04:03:11.479927-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1217367, - "rtt_ms": 1.217367, + "rtt_ns": 1617084, + "rtt_ms": 1.617084, "checkpoint": 0, "vertex_from": "397", - "timestamp": "2025-11-27T01:23:29.714510419Z" + "timestamp": "2025-11-27T04:03:11.480459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154907, - "rtt_ms": 1.154907, + "rtt_ns": 1667500, + "rtt_ms": 1.6675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "477", - "timestamp": "2025-11-27T01:23:29.714689468Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:11.480993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414286, - "rtt_ms": 1.414286, + "rtt_ns": 2127709, + "rtt_ms": 2.127709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:29.714699528Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:11.481013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126917, - "rtt_ms": 1.126917, + "rtt_ns": 3390625, + "rtt_ms": 3.390625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:29.715167417Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:11.48113-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1228786, - "rtt_ms": 1.228786, + "operation": "add_edge", + "rtt_ns": 1909416, + "rtt_ms": 1.909416, "checkpoint": 0, - "vertex_from": "795", - "timestamp": "2025-11-27T01:23:29.715324626Z" + "vertex_from": "2", + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:11.481231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299856, - "rtt_ms": 1.299856, + "rtt_ns": 4305958, + "rtt_ms": 4.305958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:29.715349086Z" + "vertex_to": "366", + "timestamp": "2025-11-27T04:03:11.481294-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1343536, - "rtt_ms": 1.343536, + "operation": "add_vertex", + "rtt_ns": 1470667, + "rtt_ms": 1.470667, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:29.715361416Z" + "vertex_from": "398", + "timestamp": "2025-11-27T04:03:11.481401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344326, - "rtt_ms": 1.344326, + "rtt_ns": 3639375, + "rtt_ms": 3.639375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "373", - "timestamp": "2025-11-27T01:23:29.715422156Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:11.481711-08:00" }, { "operation": "add_edge", - "rtt_ns": 961157, - "rtt_ms": 0.961157, + "rtt_ns": 2143000, + "rtt_ms": 2.143, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:29.715471796Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:11.481728-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1921625, + "rtt_ms": 1.921625, + "checkpoint": 0, + "vertex_from": "795", + "timestamp": "2025-11-27T04:03:11.481788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415876, - "rtt_ms": 1.415876, + "rtt_ns": 2383458, + "rtt_ms": 2.383458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:29.715489816Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:11.482844-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1641235, - "rtt_ms": 1.641235, + "operation": "add_edge", + "rtt_ns": 1603250, + "rtt_ms": 1.60325, "checkpoint": 0, - "vertex_from": "398", - "timestamp": "2025-11-27T01:23:29.716062774Z" + "vertex_from": "2", + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:11.482899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525836, - "rtt_ms": 1.525836, + "rtt_ns": 1944250, + "rtt_ms": 1.94425, "checkpoint": 0, "vertex_from": "2", "vertex_to": "553", - "timestamp": "2025-11-27T01:23:29.716232244Z" + "timestamp": "2025-11-27T04:03:11.482958-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1668855, - "rtt_ms": 1.668855, + "rtt_ns": 1898917, + "rtt_ms": 1.898917, "checkpoint": 0, - "vertex_from": "91", - "timestamp": "2025-11-27T01:23:29.716360373Z" + "vertex_from": "820", + "timestamp": "2025-11-27T04:03:11.483134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362636, - "rtt_ms": 1.362636, + "rtt_ns": 2070042, + "rtt_ms": 2.070042, "checkpoint": 0, "vertex_from": "2", "vertex_to": "94", - "timestamp": "2025-11-27T01:23:29.716531973Z" + "timestamp": "2025-11-27T04:03:11.483202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363626, - "rtt_ms": 1.363626, + "rtt_ns": 1820834, + "rtt_ms": 1.820834, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:29.716726762Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:11.483222-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1303706, - "rtt_ms": 1.303706, + "rtt_ns": 2294042, + "rtt_ms": 2.294042, "checkpoint": 0, - "vertex_from": "490", - "timestamp": "2025-11-27T01:23:29.716727272Z" + "vertex_from": "91", + "timestamp": "2025-11-27T04:03:11.483288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493616, - "rtt_ms": 1.493616, + "rtt_ns": 1615458, + "rtt_ms": 1.615458, "checkpoint": 0, "vertex_from": "2", "vertex_to": "795", - "timestamp": "2025-11-27T01:23:29.716818572Z" + "timestamp": "2025-11-27T04:03:11.483404-08:00" }, { "operation": "add_edge", - "rtt_ns": 810978, - "rtt_ms": 0.810978, + "rtt_ns": 1809542, + "rtt_ms": 1.809542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:29.716874062Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:11.483538-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1403926, - "rtt_ms": 1.403926, + "operation": "add_vertex", + "rtt_ns": 1956333, + "rtt_ms": 1.956333, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:29.716877042Z" + "vertex_from": "490", + "timestamp": "2025-11-27T04:03:11.483668-08:00" }, { "operation": "add_edge", - "rtt_ns": 755738, - "rtt_ms": 0.755738, + "rtt_ns": 1179250, + "rtt_ms": 1.17925, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "91", - "timestamp": "2025-11-27T01:23:29.717116491Z" + "vertex_from": "3", + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:11.484024-08:00" }, { "operation": "add_edge", - "rtt_ns": 739768, - "rtt_ms": 0.739768, + "rtt_ns": 1296791, + "rtt_ms": 1.296791, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "490", - "timestamp": "2025-11-27T01:23:29.71746751Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:03:11.484431-08:00" }, { "operation": "add_vertex", - "rtt_ns": 670298, - "rtt_ms": 0.670298, + "rtt_ns": 1040084, + "rtt_ms": 1.040084, "checkpoint": 0, "vertex_from": "617", - "timestamp": "2025-11-27T01:23:29.71755148Z" + "timestamp": "2025-11-27T04:03:11.484579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933224, - "rtt_ms": 1.933224, + "rtt_ns": 1698709, + "rtt_ms": 1.698709, "checkpoint": 0, "vertex_from": "3", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.718167798Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 3369140, - "rtt_ms": 3.36914, - "checkpoint": 0, - "vertex_from": "820", - "timestamp": "2025-11-27T01:23:29.718721276Z" + "timestamp": "2025-11-27T04:03:11.484598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900234, - "rtt_ms": 1.900234, + "rtt_ns": 1343000, + "rtt_ms": 1.343, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:29.718775806Z" + "vertex_from": "2", + "vertex_to": "91", + "timestamp": "2025-11-27T04:03:11.484632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989904, - "rtt_ms": 1.989904, + "rtt_ns": 1573417, + "rtt_ms": 1.573417, "checkpoint": 0, "vertex_from": "3", "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.718809676Z" + "timestamp": "2025-11-27T04:03:11.484796-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318653, - "rtt_ms": 2.318653, + "rtt_ns": 1422458, + "rtt_ms": 1.422458, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:29.718851446Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:11.484827-08:00" }, { "operation": "add_edge", - "rtt_ns": 3388210, - "rtt_ms": 3.38821, + "rtt_ns": 1811125, + "rtt_ms": 1.811125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:29.718880576Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:11.485016-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193784, - "rtt_ms": 2.193784, + "rtt_ns": 2504541, + "rtt_ms": 2.504541, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.718921736Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:11.485464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319503, - "rtt_ms": 2.319503, + "rtt_ns": 1076917, + "rtt_ms": 1.076917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:29.719436994Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:03:11.485709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074954, - "rtt_ms": 2.074954, + "rtt_ns": 1373333, + "rtt_ms": 1.373333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.719546704Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:03:11.485953-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116784, - "rtt_ms": 2.116784, + "rtt_ns": 1439875, + "rtt_ms": 1.439875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:29.719668604Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.48604-08:00" }, { "operation": "add_edge", - "rtt_ns": 967387, - "rtt_ms": 0.967387, + "rtt_ns": 2419709, + "rtt_ms": 2.419709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:29.719689453Z" + "vertex_to": "490", + "timestamp": "2025-11-27T04:03:11.486088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533325, - "rtt_ms": 1.533325, + "rtt_ns": 1729875, + "rtt_ms": 1.729875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.719702613Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.486163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464736, - "rtt_ms": 1.464736, + "rtt_ns": 1591833, + "rtt_ms": 1.591833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.720317462Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.486389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665815, - "rtt_ms": 1.665815, + "rtt_ns": 1420333, + "rtt_ms": 1.420333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "6", - "timestamp": "2025-11-27T01:23:29.720443211Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:11.486437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645175, - "rtt_ms": 1.645175, + "rtt_ns": 1783333, + "rtt_ms": 1.783333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.720457531Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:11.486611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500196, - "rtt_ms": 1.500196, + "rtt_ns": 2601625, + "rtt_ms": 2.601625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:29.72093827Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:11.486626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475115, - "rtt_ms": 1.475115, + "rtt_ns": 1322375, + "rtt_ms": 1.322375, "checkpoint": 0, "vertex_from": "3", "vertex_to": "33", - "timestamp": "2025-11-27T01:23:29.721023899Z" + "timestamp": "2025-11-27T04:03:11.487276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852675, - "rtt_ms": 1.852675, + "rtt_ns": 1248000, + "rtt_ms": 1.248, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.721544778Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:11.487289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2845051, - "rtt_ms": 2.845051, + "rtt_ns": 1660708, + "rtt_ms": 1.660708, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:29.721726737Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:11.487373-08:00" }, { "operation": "add_edge", - "rtt_ns": 3052911, - "rtt_ms": 3.052911, + "rtt_ns": 2396750, + "rtt_ms": 2.39675, "checkpoint": 0, "vertex_from": "3", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.721975977Z" + "timestamp": "2025-11-27T04:03:11.487861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782772, - "rtt_ms": 2.782772, + "rtt_ns": 2115209, + "rtt_ms": 2.115209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "4", - "timestamp": "2025-11-27T01:23:29.722486585Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:03:11.488205-08:00" }, { "operation": "add_edge", - "rtt_ns": 2873651, - "rtt_ms": 2.873651, + "rtt_ns": 2083500, + "rtt_ms": 2.0835, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:29.722543395Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:03:11.488248-08:00" }, { "operation": "add_edge", - "rtt_ns": 2248173, - "rtt_ms": 2.248173, + "rtt_ns": 1932750, + "rtt_ms": 1.93275, "checkpoint": 0, "vertex_from": "3", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:29.722567345Z" + "timestamp": "2025-11-27T04:03:11.488324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140984, - "rtt_ms": 2.140984, + "rtt_ns": 2042958, + "rtt_ms": 2.042958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:29.722599975Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.488482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2762962, - "rtt_ms": 2.762962, + "rtt_ns": 1870875, + "rtt_ms": 1.870875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.723207683Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:11.488483-08:00" }, { "operation": "add_edge", - "rtt_ns": 2322723, - "rtt_ms": 2.322723, + "rtt_ns": 2023792, + "rtt_ms": 2.023792, "checkpoint": 0, "vertex_from": "3", "vertex_to": "266", - "timestamp": "2025-11-27T01:23:29.723262553Z" + "timestamp": "2025-11-27T04:03:11.488651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569896, - "rtt_ms": 1.569896, + "rtt_ns": 1217833, + "rtt_ms": 1.217833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:29.723297753Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:03:11.48908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321206, - "rtt_ms": 1.321206, + "rtt_ns": 2104083, + "rtt_ms": 2.104083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.723298553Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:11.489478-08:00" }, { "operation": "add_edge", - "rtt_ns": 2358963, - "rtt_ms": 2.358963, + "rtt_ns": 2318333, + "rtt_ms": 2.318333, "checkpoint": 0, "vertex_from": "3", "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.723384072Z" + "timestamp": "2025-11-27T04:03:11.489595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857824, - "rtt_ms": 1.857824, + "rtt_ns": 1434917, + "rtt_ms": 1.434917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:29.723404222Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:11.489641-08:00" }, { "operation": "add_edge", - "rtt_ns": 916587, - "rtt_ms": 0.916587, + "rtt_ns": 2598333, + "rtt_ms": 2.598333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.72412593Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:11.489889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708635, - "rtt_ms": 1.708635, + "rtt_ns": 1253334, + "rtt_ms": 1.253334, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:29.72419721Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:11.489905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656625, - "rtt_ms": 1.656625, + "rtt_ns": 1683209, + "rtt_ms": 1.683209, "checkpoint": 0, "vertex_from": "3", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.72420086Z" + "timestamp": "2025-11-27T04:03:11.489934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606455, - "rtt_ms": 1.606455, + "rtt_ns": 1517292, + "rtt_ms": 1.517292, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.72420798Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:11.490002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662865, - "rtt_ms": 1.662865, + "rtt_ns": 1635833, + "rtt_ms": 1.635833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.72423128Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.490119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208206, - "rtt_ms": 1.208206, + "rtt_ns": 1845625, + "rtt_ms": 1.845625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.724471919Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.490182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382106, - "rtt_ms": 1.382106, + "rtt_ns": 1250125, + "rtt_ms": 1.250125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:29.724680969Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:11.491433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860384, - "rtt_ms": 1.860384, + "rtt_ns": 1520208, + "rtt_ms": 1.520208, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:29.725160337Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:11.491455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966425, - "rtt_ms": 1.966425, + "rtt_ns": 2026833, + "rtt_ms": 2.026833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:29.725351917Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:11.491505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023624, - "rtt_ms": 2.023624, + "rtt_ns": 2022958, + "rtt_ms": 2.022958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.725428826Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:11.491619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474616, - "rtt_ms": 1.474616, + "rtt_ns": 1746167, + "rtt_ms": 1.746167, "checkpoint": 0, "vertex_from": "3", "vertex_to": "547", - "timestamp": "2025-11-27T01:23:29.725601756Z" + "timestamp": "2025-11-27T04:03:11.491636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966164, - "rtt_ms": 1.966164, + "rtt_ns": 2561750, + "rtt_ms": 2.56175, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.726199134Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:11.491643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2642902, - "rtt_ms": 2.642902, + "rtt_ns": 1737584, + "rtt_ms": 1.737584, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.726851982Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:11.491643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2784182, - "rtt_ms": 2.784182, + "rtt_ns": 1562583, + "rtt_ms": 1.562583, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.726982672Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.491682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654485, - "rtt_ms": 1.654485, + "rtt_ns": 1740125, + "rtt_ms": 1.740125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.727008362Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.491742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2818992, - "rtt_ms": 2.818992, + "rtt_ns": 2160334, + "rtt_ms": 2.160334, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.727021152Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.491803-08:00" }, { "operation": "add_edge", - "rtt_ns": 2986681, - "rtt_ms": 2.986681, + "rtt_ns": 1178792, + "rtt_ms": 1.178792, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:29.72746185Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:11.492634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2803691, - "rtt_ms": 2.803691, + "rtt_ns": 1212792, + "rtt_ms": 1.212792, "checkpoint": 0, "vertex_from": "3", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:29.7274861Z" + "timestamp": "2025-11-27T04:03:11.492651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063354, - "rtt_ms": 2.063354, + "rtt_ns": 1168125, + "rtt_ms": 1.168125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.72749389Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:11.492674-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334883, - "rtt_ms": 2.334883, + "rtt_ns": 1567875, + "rtt_ms": 1.567875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:29.72749967Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:11.493312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907734, - "rtt_ms": 1.907734, + "rtt_ns": 1693125, + "rtt_ms": 1.693125, "checkpoint": 0, "vertex_from": "3", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.72751123Z" + "timestamp": "2025-11-27T04:03:11.49333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465826, - "rtt_ms": 1.465826, + "rtt_ns": 1799084, + "rtt_ms": 1.799084, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:29.72766633Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:11.493419-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1361236, - "rtt_ms": 1.361236, + "operation": "add_edge", + "rtt_ns": 1790666, + "rtt_ms": 1.790666, "checkpoint": 0, - "vertex_from": "822", - "timestamp": "2025-11-27T01:23:29.728864976Z" + "vertex_from": "3", + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:11.493436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375353, - "rtt_ms": 2.375353, + "rtt_ns": 1639375, + "rtt_ms": 1.639375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:29.729228735Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:11.493444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321003, - "rtt_ms": 2.321003, + "rtt_ns": 1822083, + "rtt_ms": 1.822083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:29.729333755Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:11.493467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312903, - "rtt_ms": 2.312903, + "rtt_ns": 1799833, + "rtt_ms": 1.799833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:29.729336505Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:11.493483-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092944, - "rtt_ms": 2.092944, + "rtt_ns": 1790417, + "rtt_ms": 1.790417, "checkpoint": 0, "vertex_from": "3", "vertex_to": "169", - "timestamp": "2025-11-27T01:23:29.729556274Z" + "timestamp": "2025-11-27T04:03:11.494427-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062674, - "rtt_ms": 2.062674, + "rtt_ns": 1764667, + "rtt_ms": 1.764667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:29.729575934Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:11.49444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2742932, - "rtt_ms": 2.742932, + "rtt_ns": 1792500, + "rtt_ms": 1.7925, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:29.729726664Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.494444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276274, - "rtt_ms": 2.276274, + "rtt_ns": 1366250, + "rtt_ms": 1.36625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.729764024Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:11.494811-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2104024, - "rtt_ms": 2.104024, + "operation": "add_vertex", + "rtt_ns": 1694333, + "rtt_ms": 1.694333, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.729771224Z" + "vertex_from": "822", + "timestamp": "2025-11-27T04:03:11.495008-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276704, - "rtt_ms": 2.276704, + "rtt_ns": 1645875, + "rtt_ms": 1.645875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:29.729771614Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:11.495065-08:00" }, { "operation": "add_edge", - "rtt_ns": 837778, - "rtt_ms": 0.837778, + "rtt_ns": 1392917, + "rtt_ms": 1.392917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:29.730067993Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:11.49584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206257, - "rtt_ms": 1.206257, + "rtt_ns": 2421250, + "rtt_ms": 2.42125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "822", - "timestamp": "2025-11-27T01:23:29.730071703Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:11.49589-08:00" }, { "operation": "add_edge", - "rtt_ns": 878607, - "rtt_ms": 0.878607, + "rtt_ns": 2545667, + "rtt_ms": 2.545667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.730216482Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:11.495982-08:00" }, { "operation": "add_edge", - "rtt_ns": 956887, - "rtt_ms": 0.956887, + "rtt_ns": 1552750, + "rtt_ms": 1.55275, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:29.730292202Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:11.495995-08:00" }, { "operation": "add_edge", - "rtt_ns": 801138, - "rtt_ms": 0.801138, + "rtt_ns": 1305417, + "rtt_ms": 1.305417, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:29.730358622Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:11.496117-08:00" }, { "operation": "add_edge", - "rtt_ns": 786328, - "rtt_ms": 0.786328, + "rtt_ns": 2644708, + "rtt_ms": 2.644708, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.730363682Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:11.496128-08:00" }, { "operation": "add_edge", - "rtt_ns": 698848, - "rtt_ms": 0.698848, + "rtt_ns": 1731792, + "rtt_ms": 1.731792, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.730464082Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.49616-08:00" }, { "operation": "add_edge", - "rtt_ns": 794128, - "rtt_ms": 0.794128, + "rtt_ns": 2884708, + "rtt_ms": 2.884708, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:29.730566742Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:11.496215-08:00" }, { "operation": "add_edge", - "rtt_ns": 815087, - "rtt_ms": 0.815087, + "rtt_ns": 1761958, + "rtt_ms": 1.761958, "checkpoint": 0, "vertex_from": "3", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.730587771Z" + "timestamp": "2025-11-27T04:03:11.496829-08:00" }, { "operation": "add_edge", - "rtt_ns": 863017, - "rtt_ms": 0.863017, + "rtt_ns": 1855000, + "rtt_ms": 1.855, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:29.730590811Z" + "vertex_to": "822", + "timestamp": "2025-11-27T04:03:11.496863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357806, - "rtt_ms": 1.357806, + "rtt_ns": 1371583, + "rtt_ms": 1.371583, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.731427129Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:11.497263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563406, - "rtt_ms": 1.563406, + "rtt_ns": 1275917, + "rtt_ms": 1.275917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.731636339Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:11.497394-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086705, - "rtt_ms": 2.086705, + "rtt_ns": 1458750, + "rtt_ms": 1.45875, "checkpoint": 0, "vertex_from": "3", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.732304497Z" + "timestamp": "2025-11-27T04:03:11.497441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887404, - "rtt_ms": 1.887404, + "rtt_ns": 1680833, + "rtt_ms": 1.680833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.732352406Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:11.497521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095364, - "rtt_ms": 2.095364, + "rtt_ns": 1538209, + "rtt_ms": 1.538209, "checkpoint": 0, "vertex_from": "3", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.732388836Z" + "timestamp": "2025-11-27T04:03:11.497534-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140634, - "rtt_ms": 2.140634, + "rtt_ns": 1474125, + "rtt_ms": 1.474125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:29.732500366Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.49769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911615, - "rtt_ms": 1.911615, + "rtt_ns": 1608042, + "rtt_ms": 1.608042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:29.732503466Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:11.497769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2218364, - "rtt_ms": 2.218364, + "rtt_ns": 1672458, + "rtt_ms": 1.672458, "checkpoint": 0, "vertex_from": "3", "vertex_to": "13", - "timestamp": "2025-11-27T01:23:29.732583016Z" + "timestamp": "2025-11-27T04:03:11.497802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047785, - "rtt_ms": 2.047785, + "rtt_ns": 1085666, + "rtt_ms": 1.085666, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "29", - "timestamp": "2025-11-27T01:23:29.732636596Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:03:11.49862-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093813, - "rtt_ms": 2.093813, + "rtt_ns": 1739792, + "rtt_ms": 1.739792, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.732661785Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:11.499135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059866, - "rtt_ms": 1.059866, + "rtt_ns": 2404291, + "rtt_ms": 2.404291, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:29.732697155Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:03:11.499234-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1324416, - "rtt_ms": 1.324416, + "operation": "add_vertex", + "rtt_ns": 1524542, + "rtt_ms": 1.524542, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.732753815Z" + "vertex_from": "440", + "timestamp": "2025-11-27T04:03:11.499294-08:00" }, { "operation": "add_edge", - "rtt_ns": 759597, - "rtt_ms": 0.759597, + "rtt_ns": 2138000, + "rtt_ms": 2.138, "checkpoint": 0, "vertex_from": "3", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.733065104Z" + "timestamp": "2025-11-27T04:03:11.49958-08:00" }, { - "operation": "add_edge", - "rtt_ns": 714648, - "rtt_ms": 0.714648, + "operation": "add_vertex", + "rtt_ns": 848292, + "rtt_ms": 0.848292, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "5", - "timestamp": "2025-11-27T01:23:29.733104424Z" + "vertex_from": "750", + "timestamp": "2025-11-27T04:03:11.499984-08:00" }, { "operation": "add_edge", - "rtt_ns": 777898, - "rtt_ms": 0.777898, + "rtt_ns": 3403625, + "rtt_ms": 3.403625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:29.733131384Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:11.500268-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 638308, - "rtt_ms": 0.638308, + "operation": "add_edge", + "rtt_ns": 3650083, + "rtt_ms": 3.650083, "checkpoint": 0, - "vertex_from": "440", - "timestamp": "2025-11-27T01:23:29.733144174Z" + "vertex_from": "3", + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:11.500915-08:00" }, { "operation": "add_edge", - "rtt_ns": 686398, - "rtt_ms": 0.686398, + "rtt_ns": 3217500, + "rtt_ms": 3.2175, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:29.733441833Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:11.50102-08:00" }, { "operation": "add_edge", - "rtt_ns": 751078, - "rtt_ms": 0.751078, + "rtt_ns": 2565667, + "rtt_ms": 2.565667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:29.733252814Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:11.501187-08:00" }, { "operation": "add_edge", - "rtt_ns": 742797, - "rtt_ms": 0.742797, + "rtt_ns": 1892167, + "rtt_ms": 1.892167, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:29.733326593Z" + "vertex_to": "440", + "timestamp": "2025-11-27T04:03:11.501187-08:00" }, { "operation": "add_edge", - "rtt_ns": 778128, - "rtt_ms": 0.778128, + "rtt_ns": 1619708, + "rtt_ms": 1.619708, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.733476333Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:11.501201-08:00" }, { "operation": "add_edge", - "rtt_ns": 708897, - "rtt_ms": 0.708897, + "rtt_ns": 1975500, + "rtt_ms": 1.9755, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:29.733346733Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:11.501213-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1578456, - "rtt_ms": 1.578456, + "operation": "add_edge", + "rtt_ns": 3842541, + "rtt_ms": 3.842541, "checkpoint": 0, - "vertex_from": "750", - "timestamp": "2025-11-27T01:23:29.734242891Z" + "vertex_from": "3", + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:11.501534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597085, - "rtt_ms": 1.597085, + "rtt_ns": 1579542, + "rtt_ms": 1.579542, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.734702619Z" + "vertex_to": "750", + "timestamp": "2025-11-27T04:03:11.501564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682275, - "rtt_ms": 1.682275, + "rtt_ns": 1371458, + "rtt_ms": 1.371458, "checkpoint": 0, "vertex_from": "3", "vertex_to": "275", - "timestamp": "2025-11-27T01:23:29.734748599Z" + "timestamp": "2025-11-27T04:03:11.501778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741435, - "rtt_ms": 1.741435, + "rtt_ns": 4272750, + "rtt_ms": 4.27275, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "440", - "timestamp": "2025-11-27T01:23:29.735173038Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:11.501795-08:00" }, { "operation": "add_edge", - "rtt_ns": 2676612, - "rtt_ms": 2.676612, + "rtt_ns": 1272458, + "rtt_ms": 1.272458, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.736164575Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:11.502486-08:00" }, { "operation": "add_edge", - "rtt_ns": 2807642, - "rtt_ms": 2.807642, + "rtt_ns": 1451167, + "rtt_ms": 1.451167, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.736228205Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:11.502653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2791972, - "rtt_ms": 2.791972, + "rtt_ns": 1747167, + "rtt_ms": 1.747167, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:29.736235515Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.502665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2814102, - "rtt_ms": 2.814102, + "rtt_ns": 1243375, + "rtt_ms": 1.243375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.736280715Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:11.502826-08:00" }, { "operation": "add_edge", - "rtt_ns": 2861812, - "rtt_ms": 2.861812, + "rtt_ns": 1823541, + "rtt_ms": 1.823541, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.736316895Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:11.502844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2841982, - "rtt_ms": 2.841982, + "rtt_ns": 1689625, + "rtt_ms": 1.689625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:29.736319305Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:11.502878-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116213, - "rtt_ms": 2.116213, + "rtt_ns": 1343834, + "rtt_ms": 1.343834, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "750", - "timestamp": "2025-11-27T01:23:29.736359444Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.502879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692715, - "rtt_ms": 1.692715, + "rtt_ns": 1710875, + "rtt_ms": 1.710875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:29.736397534Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:11.5029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251886, - "rtt_ms": 1.251886, + "rtt_ns": 1322041, + "rtt_ms": 1.322041, "checkpoint": 0, "vertex_from": "3", "vertex_to": "188", - "timestamp": "2025-11-27T01:23:29.736426014Z" + "timestamp": "2025-11-27T04:03:11.503117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686205, - "rtt_ms": 1.686205, + "rtt_ns": 1729875, + "rtt_ms": 1.729875, "checkpoint": 0, "vertex_from": "3", "vertex_to": "331", - "timestamp": "2025-11-27T01:23:29.736436184Z" - }, - { - "operation": "add_edge", - "rtt_ns": 902387, - "rtt_ms": 0.902387, - "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.737140292Z" + "timestamp": "2025-11-27T04:03:11.503509-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1104307, - "rtt_ms": 1.104307, + "rtt_ns": 1425791, + "rtt_ms": 1.425791, "checkpoint": 0, "vertex_from": "718", - "timestamp": "2025-11-27T01:23:29.737335562Z" + "timestamp": "2025-11-27T04:03:11.504082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308746, - "rtt_ms": 1.308746, + "rtt_ns": 1493291, + "rtt_ms": 1.493291, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.737629751Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:11.504159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368506, - "rtt_ms": 1.368506, + "rtt_ns": 1366416, + "rtt_ms": 1.366416, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:29.737650541Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:11.504211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486216, - "rtt_ms": 1.486216, + "rtt_ns": 2010208, + "rtt_ms": 2.010208, "checkpoint": 0, "vertex_from": "3", "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.737651921Z" + "timestamp": "2025-11-27T04:03:11.504497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301817, - "rtt_ms": 1.301817, + "rtt_ns": 1653542, + "rtt_ms": 1.653542, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:29.737662481Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.504554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334156, - "rtt_ms": 1.334156, + "rtt_ns": 1683500, + "rtt_ms": 1.6835, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.73773337Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:03:11.504565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465295, - "rtt_ms": 1.465295, + "rtt_ns": 1752500, + "rtt_ms": 1.7525, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:29.73778345Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:11.504579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354146, - "rtt_ms": 1.354146, + "rtt_ns": 1814875, + "rtt_ms": 1.814875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:29.73779164Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:11.504694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379976, - "rtt_ms": 1.379976, + "rtt_ns": 1596250, + "rtt_ms": 1.59625, "checkpoint": 0, "vertex_from": "3", "vertex_to": "664", - "timestamp": "2025-11-27T01:23:29.73780684Z" + "timestamp": "2025-11-27T04:03:11.504714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763794, - "rtt_ms": 1.763794, + "rtt_ns": 1823334, + "rtt_ms": 1.823334, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "211", - "timestamp": "2025-11-27T01:23:29.739395255Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:11.505333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2255083, - "rtt_ms": 2.255083, + "rtt_ns": 1432542, + "rtt_ms": 1.432542, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:29.739396175Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:03:11.505516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175003, - "rtt_ms": 2.175003, + "rtt_ns": 1907416, + "rtt_ms": 1.907416, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "718", - "timestamp": "2025-11-27T01:23:29.739511195Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:11.506067-08:00" }, { "operation": "add_edge", - "rtt_ns": 2463612, - "rtt_ms": 2.463612, + "rtt_ns": 1813333, + "rtt_ms": 1.813333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:29.740127133Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:03:11.506369-08:00" }, { "operation": "add_edge", - "rtt_ns": 2492702, - "rtt_ms": 2.492702, + "rtt_ns": 1756292, + "rtt_ms": 1.756292, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:29.740144673Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.506451-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372543, - "rtt_ms": 2.372543, + "rtt_ns": 1931000, + "rtt_ms": 1.931, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.740156903Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:11.506497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2425953, - "rtt_ms": 2.425953, + "rtt_ns": 2053834, + "rtt_ms": 2.053834, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:29.740160433Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:11.506553-08:00" }, { "operation": "add_edge", - "rtt_ns": 2384083, - "rtt_ms": 2.384083, + "rtt_ns": 1931833, + "rtt_ms": 1.931833, "checkpoint": 0, "vertex_from": "3", "vertex_to": "106", - "timestamp": "2025-11-27T01:23:29.740178693Z" + "timestamp": "2025-11-27T04:03:11.506647-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376483, - "rtt_ms": 2.376483, + "rtt_ns": 2520125, + "rtt_ms": 2.520125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.740184383Z" + "vertex_to": "211", + "timestamp": "2025-11-27T04:03:11.506732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2580722, - "rtt_ms": 2.580722, + "rtt_ns": 1408709, + "rtt_ms": 1.408709, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "217", - "timestamp": "2025-11-27T01:23:29.740234083Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:11.506744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340406, - "rtt_ms": 1.340406, + "rtt_ns": 2167208, + "rtt_ms": 2.167208, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:29.740738321Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:11.506775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463976, - "rtt_ms": 1.463976, + "rtt_ns": 1192458, + "rtt_ms": 1.192458, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "725", - "timestamp": "2025-11-27T01:23:29.740860271Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:11.507644-08:00" }, { "operation": "add_edge", - "rtt_ns": 725788, - "rtt_ms": 0.725788, + "rtt_ns": 1504417, + "rtt_ms": 1.504417, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:29.740884141Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:11.508002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415796, - "rtt_ms": 1.415796, + "rtt_ns": 1947209, + "rtt_ms": 1.947209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:29.740929161Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:11.508017-08:00" }, { "operation": "add_edge", - "rtt_ns": 861418, - "rtt_ms": 0.861418, + "rtt_ns": 1576459, + "rtt_ms": 1.576459, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.740989751Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:11.50813-08:00" }, { "operation": "add_edge", - "rtt_ns": 910047, - "rtt_ms": 0.910047, + "rtt_ns": 2637750, + "rtt_ms": 2.63775, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:29.74109574Z" + "vertex_to": "725", + "timestamp": "2025-11-27T04:03:11.508154-08:00" }, { "operation": "add_edge", - "rtt_ns": 949987, - "rtt_ms": 0.949987, + "rtt_ns": 1437084, + "rtt_ms": 1.437084, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:29.74109585Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:03:11.508171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512585, - "rtt_ms": 1.512585, + "rtt_ns": 1835875, + "rtt_ms": 1.835875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "124", - "timestamp": "2025-11-27T01:23:29.741692238Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:11.508485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569285, - "rtt_ms": 1.569285, + "rtt_ns": 1801750, + "rtt_ms": 1.80175, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:29.741730808Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:11.508547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598575, - "rtt_ms": 1.598575, + "rtt_ns": 2036917, + "rtt_ms": 2.036917, "checkpoint": 0, "vertex_from": "3", "vertex_to": "398", - "timestamp": "2025-11-27T01:23:29.741833988Z" + "timestamp": "2025-11-27T04:03:11.508812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817715, - "rtt_ms": 1.817715, + "rtt_ns": 1260708, + "rtt_ms": 1.260708, "checkpoint": 0, "vertex_from": "3", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:29.742556976Z" + "timestamp": "2025-11-27T04:03:11.508907-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072794, - "rtt_ms": 2.072794, + "rtt_ns": 2950375, + "rtt_ms": 2.950375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.742933765Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:03:11.50932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025404, - "rtt_ms": 2.025404, + "rtt_ns": 1317583, + "rtt_ms": 1.317583, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:29.742955625Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:11.50932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968934, - "rtt_ms": 1.968934, + "rtt_ns": 1170250, + "rtt_ms": 1.17025, "checkpoint": 0, "vertex_from": "3", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:29.742959685Z" + "timestamp": "2025-11-27T04:03:11.509326-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030404, - "rtt_ms": 2.030404, + "rtt_ns": 1479667, + "rtt_ms": 1.479667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:29.743127354Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:11.50961-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291383, - "rtt_ms": 2.291383, + "rtt_ns": 1418125, + "rtt_ms": 1.418125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:29.743178174Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:11.510326-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125524, - "rtt_ms": 2.125524, + "rtt_ns": 2308834, + "rtt_ms": 2.308834, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:29.743222794Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:11.510326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602356, - "rtt_ms": 1.602356, + "rtt_ns": 1908208, + "rtt_ms": 1.908208, "checkpoint": 0, "vertex_from": "3", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.743295904Z" + "timestamp": "2025-11-27T04:03:11.510458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505966, - "rtt_ms": 1.505966, + "rtt_ns": 2296875, + "rtt_ms": 2.296875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:29.743340954Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:03:11.510469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658235, - "rtt_ms": 1.658235, + "rtt_ns": 1993834, + "rtt_ms": 1.993834, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.743389913Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:11.51048-08:00" }, { "operation": "add_edge", - "rtt_ns": 832447, - "rtt_ms": 0.832447, + "rtt_ns": 1374750, + "rtt_ms": 1.37475, "checkpoint": 0, "vertex_from": "3", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.743390853Z" + "timestamp": "2025-11-27T04:03:11.510696-08:00" }, { "operation": "add_edge", - "rtt_ns": 773027, - "rtt_ms": 0.773027, + "rtt_ns": 1383083, + "rtt_ms": 1.383083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:29.743707812Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:11.51071-08:00" }, { "operation": "add_edge", - "rtt_ns": 806857, - "rtt_ms": 0.806857, + "rtt_ns": 1932250, + "rtt_ms": 1.93225, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:29.743763802Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.510746-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1523791, + "rtt_ms": 1.523791, + "checkpoint": 0, + "vertex_from": "3", + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:11.510845-08:00" }, { "operation": "add_edge", - "rtt_ns": 870957, - "rtt_ms": 0.870957, + "rtt_ns": 1545833, + "rtt_ms": 1.545833, "checkpoint": 0, "vertex_from": "3", "vertex_to": "216", - "timestamp": "2025-11-27T01:23:29.743833292Z" + "timestamp": "2025-11-27T04:03:11.511157-08:00" }, { "operation": "add_vertex", - "rtt_ns": 744038, - "rtt_ms": 0.744038, + "rtt_ns": 1329583, + "rtt_ms": 1.329583, "checkpoint": 0, "vertex_from": "565", - "timestamp": "2025-11-27T01:23:29.743873082Z" + "timestamp": "2025-11-27T04:03:11.511659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254766, - "rtt_ms": 1.254766, + "rtt_ns": 1409000, + "rtt_ms": 1.409, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:29.74443469Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:03:11.511868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264806, - "rtt_ms": 1.264806, + "rtt_ns": 1411667, + "rtt_ms": 1.411667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "23", - "timestamp": "2025-11-27T01:23:29.74448878Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:11.511881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178406, - "rtt_ms": 1.178406, + "rtt_ns": 1269208, + "rtt_ms": 1.269208, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.74452058Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:03:11.512115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2322093, - "rtt_ms": 2.322093, + "rtt_ns": 1524250, + "rtt_ms": 1.52425, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.745619387Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.512221-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306734, - "rtt_ms": 2.306734, + "rtt_ns": 2015042, + "rtt_ms": 2.015042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.745697967Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:11.512503-08:00" }, { "operation": "add_edge", - "rtt_ns": 2335664, - "rtt_ms": 2.335664, + "rtt_ns": 1763208, + "rtt_ms": 1.763208, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.745728117Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:11.51251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002825, - "rtt_ms": 2.002825, + "rtt_ns": 2192083, + "rtt_ms": 2.192083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "314", - "timestamp": "2025-11-27T01:23:29.745767737Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:11.51252-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145384, - "rtt_ms": 2.145384, + "rtt_ns": 2092042, + "rtt_ms": 2.092042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.745854816Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:11.512802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040014, - "rtt_ms": 2.040014, + "rtt_ns": 1169667, + "rtt_ms": 1.169667, "checkpoint": 0, "vertex_from": "3", "vertex_to": "565", - "timestamp": "2025-11-27T01:23:29.745913496Z" + "timestamp": "2025-11-27T04:03:11.512829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172864, - "rtt_ms": 2.172864, + "rtt_ns": 1940417, + "rtt_ms": 1.940417, "checkpoint": 0, "vertex_from": "3", "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.746007336Z" + "timestamp": "2025-11-27T04:03:11.513099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575046, - "rtt_ms": 1.575046, + "rtt_ns": 1002667, + "rtt_ms": 1.002667, "checkpoint": 0, "vertex_from": "3", "vertex_to": "54", - "timestamp": "2025-11-27T01:23:29.746096696Z" + "timestamp": "2025-11-27T04:03:11.513119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718636, - "rtt_ms": 1.718636, + "rtt_ns": 1384417, + "rtt_ms": 1.384417, "checkpoint": 0, "vertex_from": "3", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:29.746154966Z" + "timestamp": "2025-11-27T04:03:11.513255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705576, - "rtt_ms": 1.705576, + "rtt_ns": 1463834, + "rtt_ms": 1.463834, "checkpoint": 0, "vertex_from": "3", "vertex_to": "773", - "timestamp": "2025-11-27T01:23:29.746195356Z" + "timestamp": "2025-11-27T04:03:11.513346-08:00" }, { "operation": "add_edge", - "rtt_ns": 739688, - "rtt_ms": 0.739688, + "rtt_ns": 1771959, + "rtt_ms": 1.771959, "checkpoint": 0, "vertex_from": "3", "vertex_to": "39", - "timestamp": "2025-11-27T01:23:29.746360535Z" + "timestamp": "2025-11-27T04:03:11.513994-08:00" }, { "operation": "add_edge", - "rtt_ns": 705838, - "rtt_ms": 0.705838, + "rtt_ns": 1214292, + "rtt_ms": 1.214292, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.746404945Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.514044-08:00" }, { "operation": "add_edge", - "rtt_ns": 728678, - "rtt_ms": 0.728678, + "rtt_ns": 1652959, + "rtt_ms": 1.652959, "checkpoint": 0, "vertex_from": "3", "vertex_to": "962", - "timestamp": "2025-11-27T01:23:29.746457325Z" - }, - { - "operation": "add_edge", - "rtt_ns": 742128, - "rtt_ms": 0.742128, - "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:29.746510885Z" + "timestamp": "2025-11-27T04:03:11.514165-08:00" }, { "operation": "add_edge", - "rtt_ns": 774418, - "rtt_ms": 0.774418, + "rtt_ns": 1587750, + "rtt_ms": 1.58775, "checkpoint": 0, "vertex_from": "3", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.746630154Z" + "timestamp": "2025-11-27T04:03:11.514391-08:00" }, { "operation": "add_edge", - "rtt_ns": 725598, - "rtt_ms": 0.725598, + "rtt_ns": 1877958, + "rtt_ms": 1.877958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.746641204Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:11.5144-08:00" }, { "operation": "add_edge", - "rtt_ns": 662998, - "rtt_ms": 0.662998, + "rtt_ns": 2016542, + "rtt_ms": 2.016542, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:29.746671714Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:11.514522-08:00" }, { "operation": "add_edge", - "rtt_ns": 696878, - "rtt_ms": 0.696878, + "rtt_ns": 1284209, + "rtt_ms": 1.284209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:29.746794874Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:11.51454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347216, - "rtt_ms": 1.347216, + "rtt_ns": 1640584, + "rtt_ms": 1.640584, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:29.747503212Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:11.514741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393786, - "rtt_ms": 1.393786, + "rtt_ns": 1644000, + "rtt_ms": 1.644, "checkpoint": 0, "vertex_from": "3", "vertex_to": "900", - "timestamp": "2025-11-27T01:23:29.747590062Z" + "timestamp": "2025-11-27T04:03:11.514991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683575, - "rtt_ms": 1.683575, + "rtt_ns": 1009000, + "rtt_ms": 1.009, "checkpoint": 0, "vertex_from": "3", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.74804556Z" + "timestamp": "2025-11-27T04:03:11.515003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668665, - "rtt_ms": 1.668665, + "rtt_ns": 2349833, + "rtt_ms": 2.349833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "569", - "timestamp": "2025-11-27T01:23:29.74807463Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:11.51547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080174, - "rtt_ms": 2.080174, + "rtt_ns": 1103333, + "rtt_ms": 1.103333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "484", - "timestamp": "2025-11-27T01:23:29.748591979Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:11.515644-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133834, - "rtt_ms": 2.133834, + "rtt_ns": 1434209, + "rtt_ms": 1.434209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:29.748591949Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:03:11.515836-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022014, - "rtt_ms": 2.022014, + "rtt_ns": 1492209, + "rtt_ms": 1.492209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:29.748664448Z" + "vertex_to": "484", + "timestamp": "2025-11-27T04:03:11.515884-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003944, - "rtt_ms": 2.003944, + "rtt_ns": 1946709, + "rtt_ms": 1.946709, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:29.748676398Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:11.516114-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088724, - "rtt_ms": 2.088724, + "rtt_ns": 1386917, + "rtt_ms": 1.386917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "309", - "timestamp": "2025-11-27T01:23:29.748720548Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:11.516129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948424, - "rtt_ms": 1.948424, + "rtt_ns": 1792792, + "rtt_ms": 1.792792, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.748744218Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:11.516316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333516, - "rtt_ms": 1.333516, + "rtt_ns": 2965833, + "rtt_ms": 2.965833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:29.748837708Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:03:11.517011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308126, - "rtt_ms": 1.308126, + "rtt_ns": 2712959, + "rtt_ms": 2.712959, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:29.748898988Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:11.517705-08:00" }, { "operation": "add_edge", - "rtt_ns": 837768, - "rtt_ms": 0.837768, + "rtt_ns": 2753167, + "rtt_ms": 2.753167, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:29.748913018Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:11.517757-08:00" }, { "operation": "add_edge", - "rtt_ns": 891008, - "rtt_ms": 0.891008, + "rtt_ns": 1917334, + "rtt_ms": 1.917334, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.748937738Z" + "vertex_from": "4", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.517802-08:00" }, { "operation": "add_edge", - "rtt_ns": 544248, - "rtt_ms": 0.544248, + "rtt_ns": 2361791, + "rtt_ms": 2.361791, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.749137367Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:11.517832-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179504, - "rtt_ms": 2.179504, + "rtt_ns": 1777500, + "rtt_ms": 1.7775, "checkpoint": 0, "vertex_from": "4", "vertex_to": "725", - "timestamp": "2025-11-27T01:23:29.750845692Z" + "timestamp": "2025-11-27T04:03:11.517894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321873, - "rtt_ms": 2.321873, + "rtt_ns": 1765291, + "rtt_ms": 1.765291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.750916712Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:11.517895-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276194, - "rtt_ms": 2.276194, + "rtt_ns": 1615083, + "rtt_ms": 1.615083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:29.750953432Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:11.517931-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303913, - "rtt_ms": 2.303913, + "rtt_ns": 2124500, + "rtt_ms": 2.1245, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:29.751025561Z" + "vertex_from": "3", + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.517961-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122273, - "rtt_ms": 2.122273, + "rtt_ns": 2413125, + "rtt_ms": 2.413125, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.751060881Z" + "vertex_from": "3", + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:11.518058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2244573, - "rtt_ms": 2.244573, + "rtt_ns": 1499250, + "rtt_ms": 1.49925, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:29.751083221Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:11.518511-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306183, - "rtt_ms": 2.306183, + "rtt_ns": 1199500, + "rtt_ms": 1.1995, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:29.751206061Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:11.519132-08:00" }, { "operation": "add_edge", - "rtt_ns": 2501503, - "rtt_ms": 2.501503, + "rtt_ns": 1619125, + "rtt_ms": 1.619125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.751246511Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:11.519423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191303, - "rtt_ms": 2.191303, + "rtt_ns": 1632375, + "rtt_ms": 1.632375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.75132989Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:03:11.519529-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416282, - "rtt_ms": 2.416282, + "rtt_ns": 1756333, + "rtt_ms": 1.756333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:29.75133037Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:11.51959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057907, - "rtt_ms": 1.057907, + "rtt_ns": 1971750, + "rtt_ms": 1.97175, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:29.752088628Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:11.519678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373066, - "rtt_ms": 1.373066, + "rtt_ns": 1759583, + "rtt_ms": 1.759583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:29.752220638Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:11.519723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290306, - "rtt_ms": 1.290306, + "rtt_ns": 2039875, + "rtt_ms": 2.039875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:29.752245058Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:11.5198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423285, - "rtt_ms": 1.423285, + "rtt_ns": 1451667, + "rtt_ms": 1.451667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:29.752340947Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.519963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683665, - "rtt_ms": 1.683665, + "rtt_ns": 1907750, + "rtt_ms": 1.90775, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "317", - "timestamp": "2025-11-27T01:23:29.752767716Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:11.519967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735855, - "rtt_ms": 1.735855, + "rtt_ns": 2149000, + "rtt_ms": 2.149, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.752797836Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.520044-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002024, - "rtt_ms": 2.002024, + "rtt_ns": 1194458, + "rtt_ms": 1.194458, "checkpoint": 0, "vertex_from": "4", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.753249635Z" + "timestamp": "2025-11-27T04:03:11.520724-08:00" }, { "operation": "add_edge", - "rtt_ns": 2166603, - "rtt_ms": 2.166603, + "rtt_ns": 1718459, + "rtt_ms": 1.718459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:29.753374414Z" + "vertex_to": "317", + "timestamp": "2025-11-27T04:03:11.520851-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079384, - "rtt_ms": 2.079384, + "rtt_ns": 1433042, + "rtt_ms": 1.433042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "629", - "timestamp": "2025-11-27T01:23:29.753411304Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:11.520857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098724, - "rtt_ms": 2.098724, + "rtt_ns": 1962708, + "rtt_ms": 1.962708, "checkpoint": 0, "vertex_from": "4", "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.753429884Z" + "timestamp": "2025-11-27T04:03:11.521558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476876, - "rtt_ms": 1.476876, + "rtt_ns": 1779500, + "rtt_ms": 1.7795, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:29.753567024Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:11.521581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360806, - "rtt_ms": 1.360806, + "rtt_ns": 1941833, + "rtt_ms": 1.941833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:29.753582394Z" + "vertex_to": "629", + "timestamp": "2025-11-27T04:03:11.521621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550715, - "rtt_ms": 1.550715, + "rtt_ns": 1741209, + "rtt_ms": 1.741209, "checkpoint": 0, "vertex_from": "4", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.753797323Z" + "timestamp": "2025-11-27T04:03:11.521707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515236, - "rtt_ms": 1.515236, + "rtt_ns": 1748250, + "rtt_ms": 1.74825, "checkpoint": 0, "vertex_from": "4", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.753856963Z" + "timestamp": "2025-11-27T04:03:11.521717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206636, - "rtt_ms": 1.206636, + "rtt_ns": 2143583, + "rtt_ms": 2.143583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.754006372Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:11.522199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850965, - "rtt_ms": 1.850965, + "rtt_ns": 1512916, + "rtt_ms": 1.512916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:29.754619461Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:11.522365-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158963, - "rtt_ms": 2.158963, + "rtt_ns": 1650084, + "rtt_ms": 1.650084, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:29.755409768Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:03:11.522375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142334, - "rtt_ms": 2.142334, + "rtt_ns": 1768500, + "rtt_ms": 1.7685, "checkpoint": 0, "vertex_from": "4", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.755527128Z" + "timestamp": "2025-11-27T04:03:11.522628-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004184, - "rtt_ms": 2.004184, + "rtt_ns": 1195250, + "rtt_ms": 1.19525, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.755587828Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:11.522754-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176524, - "rtt_ms": 2.176524, + "rtt_ns": 1053250, + "rtt_ms": 1.05325, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:29.755608588Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:11.522761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250954, - "rtt_ms": 2.250954, + "rtt_ns": 3086458, + "rtt_ms": 3.086458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:29.755663848Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:11.52281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677255, - "rtt_ms": 1.677255, + "rtt_ns": 1221000, + "rtt_ms": 1.221, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.755684727Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:11.522843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885204, - "rtt_ms": 1.885204, + "rtt_ns": 1516917, + "rtt_ms": 1.516917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.755743957Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:11.523098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2220143, - "rtt_ms": 2.220143, + "rtt_ns": 1916125, + "rtt_ms": 1.916125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:29.755789177Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:11.523634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019924, - "rtt_ms": 2.019924, + "rtt_ns": 2479542, + "rtt_ms": 2.479542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.755819167Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:11.52468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207776, - "rtt_ms": 1.207776, + "rtt_ns": 2327625, + "rtt_ms": 2.327625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:29.755829797Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:11.524695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619335, - "rtt_ms": 1.619335, + "rtt_ns": 2159167, + "rtt_ms": 2.159167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.757031093Z" + "timestamp": "2025-11-27T04:03:11.524788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580425, - "rtt_ms": 1.580425, + "rtt_ns": 2152875, + "rtt_ms": 2.152875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.757169053Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:03:11.524996-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236693, - "rtt_ms": 2.236693, + "rtt_ns": 2663250, + "rtt_ms": 2.66325, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.757764871Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:11.525039-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225113, - "rtt_ms": 2.225113, + "rtt_ns": 2503834, + "rtt_ms": 2.503834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.757835291Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.525265-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201953, - "rtt_ms": 2.201953, + "rtt_ns": 2493542, + "rtt_ms": 2.493542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "5", - "timestamp": "2025-11-27T01:23:29.757868191Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.525304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259814, - "rtt_ms": 2.259814, + "rtt_ns": 1942917, + "rtt_ms": 1.942917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.757946401Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:11.525578-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165704, - "rtt_ms": 2.165704, + "rtt_ns": 2502584, + "rtt_ms": 2.502584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:29.757996801Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:11.525601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2298953, - "rtt_ms": 2.298953, + "rtt_ns": 2858375, + "rtt_ms": 2.858375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:29.75804589Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:11.525614-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297593, - "rtt_ms": 2.297593, + "rtt_ns": 1110875, + "rtt_ms": 1.110875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.75811781Z" + "timestamp": "2025-11-27T04:03:11.525807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003297, - "rtt_ms": 1.003297, + "rtt_ns": 1601875, + "rtt_ms": 1.601875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.75817445Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:11.526283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143857, - "rtt_ms": 1.143857, + "rtt_ns": 1556667, + "rtt_ms": 1.556667, "checkpoint": 0, "vertex_from": "4", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:29.75817701Z" + "timestamp": "2025-11-27T04:03:11.526556-08:00" }, { "operation": "add_edge", - "rtt_ns": 2396443, - "rtt_ms": 2.396443, + "rtt_ns": 2009625, + "rtt_ms": 2.009625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:29.75818663Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:11.526798-08:00" }, { "operation": "add_edge", - "rtt_ns": 669568, - "rtt_ms": 0.669568, + "rtt_ns": 1770208, + "rtt_ms": 1.770208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "6", - "timestamp": "2025-11-27T01:23:29.758435669Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.52681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263596, - "rtt_ms": 1.263596, + "rtt_ns": 1599625, + "rtt_ms": 1.599625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.759133187Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:03:11.526866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430456, - "rtt_ms": 1.430456, + "rtt_ns": 1658875, + "rtt_ms": 1.658875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.759266937Z" + "timestamp": "2025-11-27T04:03:11.526976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550265, - "rtt_ms": 1.550265, + "rtt_ns": 1386042, + "rtt_ms": 1.386042, "checkpoint": 0, "vertex_from": "4", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:29.759498046Z" + "timestamp": "2025-11-27T04:03:11.526988-08:00" }, { "operation": "add_edge", - "rtt_ns": 2183333, - "rtt_ms": 2.183333, + "rtt_ns": 1430000, + "rtt_ms": 1.43, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "46", - "timestamp": "2025-11-27T01:23:29.760182174Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.527009-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210784, - "rtt_ms": 2.210784, + "rtt_ns": 1452458, + "rtt_ms": 1.452458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:29.760257994Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:03:11.527067-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178674, - "rtt_ms": 2.178674, + "rtt_ns": 1297000, + "rtt_ms": 1.297, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:29.760297184Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:11.527104-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208354, - "rtt_ms": 2.208354, + "rtt_ns": 1223916, + "rtt_ms": 1.223916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.760386874Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:11.528035-08:00" }, { "operation": "add_edge", - "rtt_ns": 2213533, - "rtt_ms": 2.213533, + "rtt_ns": 1746875, + "rtt_ms": 1.746875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:29.760401323Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.528304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2293653, - "rtt_ms": 2.293653, + "rtt_ns": 1316167, + "rtt_ms": 1.316167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.760469773Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.528326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339506, - "rtt_ms": 1.339506, + "rtt_ns": 2058333, + "rtt_ms": 2.058333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:29.760473533Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:11.528342-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142944, - "rtt_ms": 2.142944, + "rtt_ns": 1667625, + "rtt_ms": 1.667625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.760580063Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:11.528657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119787, - "rtt_ms": 1.119787, + "rtt_ns": 1814000, + "rtt_ms": 1.814, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.760618723Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:11.528681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364586, - "rtt_ms": 1.364586, + "rtt_ns": 1592500, + "rtt_ms": 1.5925, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:29.760632813Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.528698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115157, - "rtt_ms": 1.115157, + "rtt_ns": 1914250, + "rtt_ms": 1.91425, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.761374361Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:11.528713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363316, - "rtt_ms": 1.363316, + "rtt_ns": 1738458, + "rtt_ms": 1.738458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.76154634Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:11.528717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749135, - "rtt_ms": 1.749135, + "rtt_ns": 1860209, + "rtt_ms": 1.860209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.762047369Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:11.528928-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155544, - "rtt_ms": 2.155544, + "rtt_ns": 1574584, + "rtt_ms": 1.574584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.762629797Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:11.529611-08:00" }, { "operation": "add_edge", - "rtt_ns": 2323764, - "rtt_ms": 2.323764, + "rtt_ns": 1284417, + "rtt_ms": 1.284417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:29.762726027Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:03:11.529627-08:00" }, { "operation": "add_edge", - "rtt_ns": 2377043, - "rtt_ms": 2.377043, + "rtt_ns": 1474625, + "rtt_ms": 1.474625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "849", - "timestamp": "2025-11-27T01:23:29.762765037Z" + "timestamp": "2025-11-27T04:03:11.529779-08:00" }, { "operation": "add_edge", - "rtt_ns": 2198184, - "rtt_ms": 2.198184, + "rtt_ns": 1515792, + "rtt_ms": 1.515792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:29.762779477Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:11.529842-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364564, - "rtt_ms": 2.364564, + "rtt_ns": 1467250, + "rtt_ms": 1.46725, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "677", - "timestamp": "2025-11-27T01:23:29.762835887Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:03:11.530125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2204164, - "rtt_ms": 2.204164, + "rtt_ns": 1547667, + "rtt_ms": 1.547667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.762837887Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:11.530231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2266584, - "rtt_ms": 2.266584, + "rtt_ns": 1319750, + "rtt_ms": 1.31975, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.762886127Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.530248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422436, - "rtt_ms": 1.422436, + "rtt_ns": 1665541, + "rtt_ms": 1.665541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.762976406Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:11.530379-08:00" }, { "operation": "add_edge", - "rtt_ns": 951307, - "rtt_ms": 0.951307, + "rtt_ns": 1720000, + "rtt_ms": 1.72, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.763000386Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:11.530418-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1662155, - "rtt_ms": 1.662155, + "rtt_ns": 1700375, + "rtt_ms": 1.700375, "checkpoint": 0, "vertex_from": "175", - "timestamp": "2025-11-27T01:23:29.763039166Z" + "timestamp": "2025-11-27T04:03:11.530419-08:00" }, { "operation": "add_edge", - "rtt_ns": 799518, - "rtt_ms": 0.799518, + "rtt_ns": 1254417, + "rtt_ms": 1.254417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:29.763430475Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:11.531381-08:00" }, { "operation": "add_edge", - "rtt_ns": 734648, - "rtt_ms": 0.734648, + "rtt_ns": 1175292, + "rtt_ms": 1.175292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:29.763462135Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:11.531407-08:00" }, { "operation": "add_edge", - "rtt_ns": 918317, - "rtt_ms": 0.918317, + "rtt_ns": 1914792, + "rtt_ms": 1.914792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:29.763699894Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:11.531695-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1501875, + "rtt_ms": 1.501875, + "checkpoint": 0, + "vertex_from": "435", + "timestamp": "2025-11-27T04:03:11.531752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207656, - "rtt_ms": 1.207656, + "rtt_ns": 2418000, + "rtt_ms": 2.418, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.763973873Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:11.532029-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1611585, - "rtt_ms": 1.611585, + "operation": "add_edge", + "rtt_ns": 1911083, + "rtt_ms": 1.911083, "checkpoint": 0, - "vertex_from": "435", - "timestamp": "2025-11-27T01:23:29.764455782Z" + "vertex_from": "4", + "vertex_to": "175", + "timestamp": "2025-11-27T04:03:11.532331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798164, - "rtt_ms": 1.798164, + "rtt_ns": 2804167, + "rtt_ms": 2.804167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:29.764685711Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:11.532432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2419193, - "rtt_ms": 2.419193, + "rtt_ns": 2130084, + "rtt_ms": 2.130084, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:29.7652567Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:11.532549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2368793, - "rtt_ms": 2.368793, + "rtt_ns": 2718334, + "rtt_ms": 2.718334, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:29.765346649Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.532561-08:00" }, { "operation": "add_edge", - "rtt_ns": 2344833, - "rtt_ms": 2.344833, + "rtt_ns": 2283917, + "rtt_ms": 2.283917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:29.765346509Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:11.532664-08:00" }, { "operation": "add_edge", - "rtt_ns": 2346073, - "rtt_ms": 2.346073, + "rtt_ns": 2088500, + "rtt_ms": 2.0885, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "175", - "timestamp": "2025-11-27T01:23:29.765385529Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:11.53347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1975174, - "rtt_ms": 1.975174, + "rtt_ns": 2304500, + "rtt_ms": 2.3045, "checkpoint": 0, "vertex_from": "4", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.765407849Z" + "timestamp": "2025-11-27T04:03:11.533712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766695, - "rtt_ms": 1.766695, + "rtt_ns": 1740708, + "rtt_ms": 1.740708, "checkpoint": 0, "vertex_from": "4", "vertex_to": "585", - "timestamp": "2025-11-27T01:23:29.765467859Z" + "timestamp": "2025-11-27T04:03:11.533771-08:00" }, { "operation": "add_edge", - "rtt_ns": 2068654, - "rtt_ms": 2.068654, + "rtt_ns": 1324875, + "rtt_ms": 1.324875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:29.765531889Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:11.533887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569916, - "rtt_ms": 1.569916, + "rtt_ns": 1582916, + "rtt_ms": 1.582916, "checkpoint": 0, "vertex_from": "4", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.765548579Z" + "timestamp": "2025-11-27T04:03:11.533914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328546, - "rtt_ms": 1.328546, + "rtt_ns": 2218417, + "rtt_ms": 2.218417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:29.766016657Z" + "vertex_to": "435", + "timestamp": "2025-11-27T04:03:11.533971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598195, - "rtt_ms": 1.598195, + "rtt_ns": 2287709, + "rtt_ms": 2.287709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "435", - "timestamp": "2025-11-27T01:23:29.766054447Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:11.533984-08:00" }, { "operation": "add_edge", - "rtt_ns": 799818, - "rtt_ms": 0.799818, + "rtt_ns": 1585625, + "rtt_ms": 1.585625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:29.766149087Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:11.534019-08:00" }, { "operation": "add_edge", - "rtt_ns": 907537, - "rtt_ms": 0.907537, + "rtt_ns": 1551875, + "rtt_ms": 1.551875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.766165197Z" + "timestamp": "2025-11-27T04:03:11.534104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528026, - "rtt_ms": 1.528026, + "rtt_ns": 1742208, + "rtt_ms": 1.742208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:29.766936635Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:11.534409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596946, - "rtt_ms": 1.596946, + "rtt_ns": 1491833, + "rtt_ms": 1.491833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:29.766944845Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:11.535207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492605, - "rtt_ms": 1.492605, + "rtt_ns": 1328292, + "rtt_ms": 1.328292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.767026304Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:11.5353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704935, - "rtt_ms": 1.704935, + "rtt_ns": 1507792, + "rtt_ms": 1.507792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.767091674Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 785748, - "rtt_ms": 0.785748, - "checkpoint": 0, - "vertex_from": "710", - "timestamp": "2025-11-27T01:23:29.767880132Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1009097, - "rtt_ms": 1.009097, - "checkpoint": 0, - "vertex_from": "428", - "timestamp": "2025-11-27T01:23:29.767956272Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 929668, - "rtt_ms": 0.929668, - "checkpoint": 0, - "vertex_from": "754", - "timestamp": "2025-11-27T01:23:29.767957422Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:11.535423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2565092, - "rtt_ms": 2.565092, + "rtt_ns": 1632792, + "rtt_ms": 1.632792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:29.768033861Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:11.535521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2618422, - "rtt_ms": 2.618422, + "rtt_ns": 1557416, + "rtt_ms": 1.557416, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:29.768168301Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:11.535542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080964, - "rtt_ms": 2.080964, + "rtt_ns": 1891541, + "rtt_ms": 1.891541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.768230731Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:11.535664-08:00" }, { "operation": "add_edge", - "rtt_ns": 2706462, - "rtt_ms": 2.706462, + "rtt_ns": 1694709, + "rtt_ms": 1.694709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.768873139Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:11.535715-08:00" }, { "operation": "add_edge", - "rtt_ns": 2885352, - "rtt_ms": 2.885352, + "rtt_ns": 1675000, + "rtt_ms": 1.675, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.768941099Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.535781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021404, - "rtt_ms": 2.021404, + "rtt_ns": 1441000, + "rtt_ms": 1.441, "checkpoint": 0, "vertex_from": "4", "vertex_to": "645", - "timestamp": "2025-11-27T01:23:29.768959039Z" + "timestamp": "2025-11-27T04:03:11.53585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2975051, - "rtt_ms": 2.975051, + "rtt_ns": 2926458, + "rtt_ms": 2.926458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:29.768993108Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:11.536398-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1337596, - "rtt_ms": 1.337596, + "operation": "add_vertex", + "rtt_ns": 1722791, + "rtt_ms": 1.722791, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "710", - "timestamp": "2025-11-27T01:23:29.769218098Z" + "vertex_from": "710", + "timestamp": "2025-11-27T04:03:11.53715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360985, - "rtt_ms": 1.360985, + "rtt_ns": 1732833, + "rtt_ms": 1.732833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "754", - "timestamp": "2025-11-27T01:23:29.769318647Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.537255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421835, - "rtt_ms": 1.421835, + "rtt_ns": 1760667, + "rtt_ms": 1.760667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "428", - "timestamp": "2025-11-27T01:23:29.769378387Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:11.537304-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2196354, - "rtt_ms": 2.196354, + "operation": "add_vertex", + "rtt_ns": 2133875, + "rtt_ms": 2.133875, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.770231055Z" + "vertex_from": "428", + "timestamp": "2025-11-27T04:03:11.537342-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1032967, - "rtt_ms": 1.032967, + "rtt_ns": 2385083, + "rtt_ms": 2.385083, "checkpoint": 0, - "vertex_from": "185", - "timestamp": "2025-11-27T01:23:29.770252155Z" + "vertex_from": "754", + "timestamp": "2025-11-27T04:03:11.537686-08:00" }, { "operation": "add_edge", - "rtt_ns": 2358573, - "rtt_ms": 2.358573, + "rtt_ns": 1416291, + "rtt_ms": 1.416291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:29.770590164Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.537817-08:00" }, { "operation": "add_edge", - "rtt_ns": 2433623, - "rtt_ms": 2.433623, + "rtt_ns": 1976083, + "rtt_ms": 1.976083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:29.770602774Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.537827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763744, - "rtt_ms": 1.763744, + "rtt_ns": 2329375, + "rtt_ms": 2.329375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:29.770705743Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:11.537994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904954, - "rtt_ms": 1.904954, + "rtt_ns": 2285250, + "rtt_ms": 2.28525, "checkpoint": 0, "vertex_from": "4", "vertex_to": "263", - "timestamp": "2025-11-27T01:23:29.770779443Z" + "timestamp": "2025-11-27T04:03:11.538002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013504, - "rtt_ms": 2.013504, + "rtt_ns": 1380666, + "rtt_ms": 1.380666, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.771007462Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:03:11.539067-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1820833, + "rtt_ms": 1.820833, + "checkpoint": 0, + "vertex_from": "185", + "timestamp": "2025-11-27T04:03:11.539077-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063263, - "rtt_ms": 2.063263, + "rtt_ns": 1396250, + "rtt_ms": 1.39625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.771023212Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:11.539225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867825, - "rtt_ms": 1.867825, + "rtt_ns": 2085333, + "rtt_ms": 2.085333, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "710", + "timestamp": "2025-11-27T04:03:11.539236-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1941125, + "rtt_ms": 1.941125, "checkpoint": 0, "vertex_from": "4", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.771187302Z" + "timestamp": "2025-11-27T04:03:11.539246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821345, - "rtt_ms": 1.821345, + "rtt_ns": 1910291, + "rtt_ms": 1.910291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:29.771200702Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:03:11.539253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198876, - "rtt_ms": 1.198876, + "rtt_ns": 3512333, + "rtt_ms": 3.512333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:29.771431161Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:11.539295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295606, - "rtt_ms": 1.295606, + "rtt_ns": 1549666, + "rtt_ms": 1.549666, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "185", - "timestamp": "2025-11-27T01:23:29.771547971Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:11.539369-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1151250, + "rtt_ms": 1.15125, + "checkpoint": 0, + "vertex_from": "467", + "timestamp": "2025-11-27T04:03:11.5404-08:00" }, { "operation": "add_edge", - "rtt_ns": 999067, - "rtt_ms": 0.999067, + "rtt_ns": 2481083, + "rtt_ms": 2.481083, "checkpoint": 0, "vertex_from": "4", "vertex_to": "20", - "timestamp": "2025-11-27T01:23:29.771590351Z" + "timestamp": "2025-11-27T04:03:11.540476-08:00" }, { "operation": "add_edge", - "rtt_ns": 924688, - "rtt_ms": 0.924688, + "rtt_ns": 1643875, + "rtt_ms": 1.643875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:29.771632081Z" + "vertex_to": "185", + "timestamp": "2025-11-27T04:03:11.540722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032407, - "rtt_ms": 1.032407, + "rtt_ns": 1856083, + "rtt_ms": 1.856083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:29.771635941Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:11.541226-08:00" }, { "operation": "add_vertex", - "rtt_ns": 873718, - "rtt_ms": 0.873718, + "rtt_ns": 2140666, + "rtt_ms": 2.140666, "checkpoint": 0, "vertex_from": "438", - "timestamp": "2025-11-27T01:23:29.77165681Z" + "timestamp": "2025-11-27T04:03:11.541366-08:00" }, { "operation": "add_edge", - "rtt_ns": 818058, - "rtt_ms": 0.818058, + "rtt_ns": 2131959, + "rtt_ms": 2.131959, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.7718263Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:11.541386-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 821948, - "rtt_ms": 0.821948, + "operation": "add_edge", + "rtt_ns": 2362083, + "rtt_ms": 2.362083, "checkpoint": 0, - "vertex_from": "467", - "timestamp": "2025-11-27T01:23:29.77184684Z" + "vertex_from": "4", + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:11.541431-08:00" }, { "operation": "add_edge", - "rtt_ns": 710298, - "rtt_ms": 0.710298, + "rtt_ns": 3573708, + "rtt_ms": 3.573708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:29.77191255Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:11.541577-08:00" }, { "operation": "add_edge", - "rtt_ns": 832987, - "rtt_ms": 0.832987, + "rtt_ns": 1172500, + "rtt_ms": 1.1725, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:29.772021299Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:11.54165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2765951, - "rtt_ms": 2.765951, + "rtt_ns": 2788209, + "rtt_ms": 2.788209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:29.774358062Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.542025-08:00" }, { "operation": "add_edge", - "rtt_ns": 2950531, - "rtt_ms": 2.950531, + "rtt_ns": 2168042, + "rtt_ms": 2.168042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:29.774385252Z" + "vertex_to": "467", + "timestamp": "2025-11-27T04:03:11.542569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2599892, - "rtt_ms": 2.599892, + "rtt_ns": 1519375, + "rtt_ms": 1.519375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:29.774428212Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:11.542746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2808271, - "rtt_ms": 2.808271, + "rtt_ns": 1398833, + "rtt_ms": 1.398833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:29.774445422Z" + "vertex_to": "438", + "timestamp": "2025-11-27T04:03:11.542766-08:00" }, { "operation": "add_edge", - "rtt_ns": 2820881, - "rtt_ms": 2.820881, + "rtt_ns": 1468125, + "rtt_ms": 1.468125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:29.774454992Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:11.542855-08:00" }, { "operation": "add_edge", - "rtt_ns": 2835492, - "rtt_ms": 2.835492, + "rtt_ns": 1542000, + "rtt_ms": 1.542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "438", - "timestamp": "2025-11-27T01:23:29.774492972Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:11.54298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613542, - "rtt_ms": 2.613542, + "rtt_ns": 2307041, + "rtt_ms": 2.307041, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.774529422Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:11.54303-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507493, - "rtt_ms": 2.507493, + "rtt_ns": 1468917, + "rtt_ms": 1.468917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.774530232Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.543047-08:00" }, { "operation": "add_edge", - "rtt_ns": 3003701, - "rtt_ms": 3.003701, + "rtt_ns": 1235625, + "rtt_ms": 1.235625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:29.774553792Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:11.543262-08:00" }, { "operation": "add_edge", - "rtt_ns": 3237540, - "rtt_ms": 3.23754, + "rtt_ns": 1724458, + "rtt_ms": 1.724458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "467", - "timestamp": "2025-11-27T01:23:29.77508474Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:11.543376-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1366976, - "rtt_ms": 1.366976, + "rtt_ns": 1049541, + "rtt_ms": 1.049541, "checkpoint": 0, - "vertex_from": "968", - "timestamp": "2025-11-27T01:23:29.775816898Z" + "vertex_from": "904", + "timestamp": "2025-11-27T04:03:11.543906-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1910635, - "rtt_ms": 1.910635, + "rtt_ns": 1141625, + "rtt_ms": 1.141625, "checkpoint": 0, - "vertex_from": "904", - "timestamp": "2025-11-27T01:23:29.776368327Z" + "vertex_from": "968", + "timestamp": "2025-11-27T04:03:11.543908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940075, - "rtt_ms": 1.940075, + "rtt_ns": 1482208, + "rtt_ms": 1.482208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:29.776370097Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:03:11.544052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862084, - "rtt_ms": 1.862084, + "rtt_ns": 1534458, + "rtt_ms": 1.534458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:29.776393856Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:11.544284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839014, - "rtt_ms": 1.839014, + "rtt_ns": 5092125, + "rtt_ms": 5.092125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "825", - "timestamp": "2025-11-27T01:23:29.776395146Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:11.544388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337576, - "rtt_ms": 1.337576, + "rtt_ns": 2238209, + "rtt_ms": 2.238209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:29.776423786Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:11.54527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924574, - "rtt_ms": 1.924574, + "rtt_ns": 1922875, + "rtt_ms": 1.922875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:29.776456036Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:11.545301-08:00" }, { "operation": "add_edge", - "rtt_ns": 2123624, - "rtt_ms": 2.123624, + "rtt_ns": 2267834, + "rtt_ms": 2.267834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "57", - "timestamp": "2025-11-27T01:23:29.776511226Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:03:11.54553-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214704, - "rtt_ms": 2.214704, + "rtt_ns": 2521833, + "rtt_ms": 2.521833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.776710116Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:11.54557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391993, - "rtt_ms": 2.391993, + "rtt_ns": 1789917, + "rtt_ms": 1.789917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.776751845Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:03:11.545699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619976, - "rtt_ms": 1.619976, + "rtt_ns": 1931875, + "rtt_ms": 1.931875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "968", - "timestamp": "2025-11-27T01:23:29.777437164Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:11.545838-08:00" }, { "operation": "add_edge", - "rtt_ns": 2408304, - "rtt_ms": 2.408304, + "rtt_ns": 1579916, + "rtt_ms": 1.579916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:29.77880527Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:11.545864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2380873, - "rtt_ms": 2.380873, + "rtt_ns": 1528875, + "rtt_ms": 1.528875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:29.778894079Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:11.545918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2505893, - "rtt_ms": 2.505893, + "rtt_ns": 1927292, + "rtt_ms": 1.927292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:29.778902559Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:11.54598-08:00" }, { "operation": "add_edge", - "rtt_ns": 2538852, - "rtt_ms": 2.538852, + "rtt_ns": 3141000, + "rtt_ms": 3.141, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:29.778907619Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.546123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2509103, - "rtt_ms": 2.509103, + "rtt_ns": 1099875, + "rtt_ms": 1.099875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:29.778936229Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:11.54667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538135, - "rtt_ms": 1.538135, + "rtt_ns": 1586250, + "rtt_ms": 1.58625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:29.778976519Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:11.546889-08:00" }, { "operation": "add_edge", - "rtt_ns": 2607022, - "rtt_ms": 2.607022, + "rtt_ns": 1435708, + "rtt_ms": 1.435708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:29.778979789Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:11.546967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2552322, - "rtt_ms": 2.552322, + "rtt_ns": 1289125, + "rtt_ms": 1.289125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:29.779265348Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.54727-08:00" }, { "operation": "add_edge", - "rtt_ns": 2816122, - "rtt_ms": 2.816122, + "rtt_ns": 1438500, + "rtt_ms": 1.4385, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:29.779274108Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:11.547279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527903, - "rtt_ms": 2.527903, + "rtt_ns": 1588208, + "rtt_ms": 1.588208, "checkpoint": 0, "vertex_from": "4", "vertex_to": "156", - "timestamp": "2025-11-27T01:23:29.779281058Z" + "timestamp": "2025-11-27T04:03:11.547288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282236, - "rtt_ms": 1.282236, + "rtt_ns": 1427875, + "rtt_ms": 1.427875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.780090346Z" + "timestamp": "2025-11-27T04:03:11.547294-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1177217, - "rtt_ms": 1.177217, + "operation": "add_edge", + "rtt_ns": 1565416, + "rtt_ms": 1.565416, "checkpoint": 0, - "vertex_from": "873", - "timestamp": "2025-11-27T01:23:29.780116486Z" + "vertex_from": "4", + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:11.547484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232887, - "rtt_ms": 1.232887, + "rtt_ns": 2232833, + "rtt_ms": 2.232833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:29.780143366Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:11.547506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307477, - "rtt_ms": 1.307477, + "rtt_ns": 1423959, + "rtt_ms": 1.423959, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:29.780203116Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:11.547548-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1305496, - "rtt_ms": 1.305496, + "operation": "add_vertex", + "rtt_ns": 1604125, + "rtt_ms": 1.604125, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:29.780287755Z" + "vertex_from": "873", + "timestamp": "2025-11-27T04:03:11.548276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339246, - "rtt_ms": 1.339246, + "rtt_ns": 1459292, + "rtt_ms": 1.459292, "checkpoint": 0, "vertex_from": "4", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:29.780317475Z" + "timestamp": "2025-11-27T04:03:11.548349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1982505, - "rtt_ms": 1.982505, + "rtt_ns": 1397500, + "rtt_ms": 1.3975, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.780886694Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:11.548365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916755, - "rtt_ms": 1.916755, + "rtt_ns": 1463458, + "rtt_ms": 1.463458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:29.781187013Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:11.54897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905805, - "rtt_ms": 1.905805, + "rtt_ns": 1740958, + "rtt_ms": 1.740958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:29.781188513Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:03:11.549037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918495, - "rtt_ms": 1.918495, + "rtt_ns": 1838084, + "rtt_ms": 1.838084, "checkpoint": 0, "vertex_from": "4", "vertex_to": "26", - "timestamp": "2025-11-27T01:23:29.781193973Z" + "timestamp": "2025-11-27T04:03:11.549118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281196, - "rtt_ms": 1.281196, + "rtt_ns": 1896500, + "rtt_ms": 1.8965, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:29.781486292Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:11.549185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426096, - "rtt_ms": 1.426096, + "rtt_ns": 1706083, + "rtt_ms": 1.706083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "60", - "timestamp": "2025-11-27T01:23:29.781532332Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:11.549256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607555, - "rtt_ms": 1.607555, + "rtt_ns": 2001333, + "rtt_ms": 2.001333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:29.781752671Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:11.549272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490976, - "rtt_ms": 1.490976, + "rtt_ns": 1800750, + "rtt_ms": 1.80075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:29.781780981Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:11.549287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617076, - "rtt_ms": 1.617076, + "rtt_ns": 1478708, + "rtt_ms": 1.478708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:29.781935621Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:11.550597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066936, - "rtt_ms": 1.066936, + "rtt_ns": 1776792, + "rtt_ms": 1.776792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:29.78195536Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:11.551034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849234, - "rtt_ms": 1.849234, + "rtt_ns": 1995959, + "rtt_ms": 1.995959, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "873", - "timestamp": "2025-11-27T01:23:29.78196621Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:11.551034-08:00" }, { "operation": "add_edge", - "rtt_ns": 840557, - "rtt_ms": 0.840557, + "rtt_ns": 2800500, + "rtt_ms": 2.8005, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.78202911Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:11.55115-08:00" }, { "operation": "add_edge", - "rtt_ns": 847417, - "rtt_ms": 0.847417, + "rtt_ns": 2893250, + "rtt_ms": 2.89325, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:29.78204322Z" + "vertex_to": "873", + "timestamp": "2025-11-27T04:03:11.55117-08:00" }, { "operation": "add_edge", - "rtt_ns": 919727, - "rtt_ms": 0.919727, + "rtt_ns": 2199209, + "rtt_ms": 2.199209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:29.78211108Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1234476, - "rtt_ms": 1.234476, - "checkpoint": 0, - "vertex_from": "835", - "timestamp": "2025-11-27T01:23:29.783348346Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:11.55117-08:00" }, { "operation": "add_edge", - "rtt_ns": 2330413, - "rtt_ms": 2.330413, + "rtt_ns": 1902917, + "rtt_ms": 1.902917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:29.783818295Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:11.551176-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134464, - "rtt_ms": 2.134464, + "rtt_ns": 2820792, + "rtt_ms": 2.820792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:29.783888435Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:11.551187-08:00" }, { "operation": "add_edge", - "rtt_ns": 2120574, - "rtt_ms": 2.120574, + "rtt_ns": 2078583, + "rtt_ms": 2.078583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.783902785Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:11.551264-08:00" }, { "operation": "add_edge", - "rtt_ns": 2398243, - "rtt_ms": 2.398243, + "rtt_ns": 2066625, + "rtt_ms": 2.066625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.783931685Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:11.551354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080873, - "rtt_ms": 2.080873, + "rtt_ns": 1661708, + "rtt_ms": 1.661708, "checkpoint": 0, "vertex_from": "4", "vertex_to": "100", - "timestamp": "2025-11-27T01:23:29.784018034Z" + "timestamp": "2025-11-27T04:03:11.55226-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2162484, - "rtt_ms": 2.162484, + "operation": "add_vertex", + "rtt_ns": 1146542, + "rtt_ms": 1.146542, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:29.784130304Z" + "vertex_from": "835", + "timestamp": "2025-11-27T04:03:11.552318-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203444, - "rtt_ms": 2.203444, + "rtt_ns": 1339875, + "rtt_ms": 1.339875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:29.784163284Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:11.552695-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229854, - "rtt_ms": 2.229854, + "rtt_ns": 1553833, + "rtt_ms": 1.553833, "checkpoint": 0, "vertex_from": "4", "vertex_to": "158", - "timestamp": "2025-11-27T01:23:29.784260784Z" + "timestamp": "2025-11-27T04:03:11.552707-08:00" }, { - "operation": "add_edge", - "rtt_ns": 970867, - "rtt_ms": 0.970867, + "operation": "add_vertex", + "rtt_ns": 1550459, + "rtt_ms": 1.550459, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:29.784319673Z" + "vertex_from": "749", + "timestamp": "2025-11-27T04:03:11.552728-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276563, - "rtt_ms": 2.276563, + "rtt_ns": 1600709, + "rtt_ms": 1.600709, "checkpoint": 0, "vertex_from": "4", "vertex_to": "42", - "timestamp": "2025-11-27T01:23:29.784321353Z" + "timestamp": "2025-11-27T04:03:11.552772-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 784848, - "rtt_ms": 0.784848, + "operation": "add_edge", + "rtt_ns": 1653084, + "rtt_ms": 1.653084, "checkpoint": 0, - "vertex_from": "749", - "timestamp": "2025-11-27T01:23:29.784608573Z" + "vertex_from": "4", + "vertex_to": "107", + "timestamp": "2025-11-27T04:03:11.552841-08:00" }, { "operation": "add_edge", - "rtt_ns": 800457, - "rtt_ms": 0.800457, + "rtt_ns": 1822792, + "rtt_ms": 1.822792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "107", - "timestamp": "2025-11-27T01:23:29.784690732Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:11.552857-08:00" }, { "operation": "add_edge", - "rtt_ns": 795118, - "rtt_ms": 0.795118, + "rtt_ns": 1611542, + "rtt_ms": 1.611542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "316", - "timestamp": "2025-11-27T01:23:29.784814892Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:11.552876-08:00" }, { "operation": "add_edge", - "rtt_ns": 897827, - "rtt_ms": 0.897827, + "rtt_ns": 1849500, + "rtt_ms": 1.8495, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:29.784831102Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:11.552885-08:00" }, { "operation": "add_edge", - "rtt_ns": 974827, - "rtt_ms": 0.974827, + "rtt_ns": 1203292, + "rtt_ms": 1.203292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:29.784879442Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:03:11.553912-08:00" }, { "operation": "add_edge", - "rtt_ns": 793568, - "rtt_ms": 0.793568, + "rtt_ns": 1748666, + "rtt_ms": 1.748666, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "361", - "timestamp": "2025-11-27T01:23:29.784958172Z" + "vertex_to": "316", + "timestamp": "2025-11-27T04:03:11.55401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154047, - "rtt_ms": 1.154047, + "rtt_ns": 1257042, + "rtt_ms": 1.257042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:29.785285541Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:11.554142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477455, - "rtt_ms": 1.477455, + "rtt_ns": 1839583, + "rtt_ms": 1.839583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:29.785739249Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:03:11.554158-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131174, - "rtt_ms": 2.131174, + "rtt_ns": 1469750, + "rtt_ms": 1.46975, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:29.786453217Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:11.554166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917984, - "rtt_ms": 1.917984, + "rtt_ns": 1443167, + "rtt_ms": 1.443167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "749", - "timestamp": "2025-11-27T01:23:29.786527117Z" + "timestamp": "2025-11-27T04:03:11.554172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729125, - "rtt_ms": 1.729125, + "rtt_ns": 1358542, + "rtt_ms": 1.358542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.786545567Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:11.554236-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227274, - "rtt_ms": 2.227274, + "rtt_ns": 1478500, + "rtt_ms": 1.4785, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:29.786550407Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:11.554251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895165, - "rtt_ms": 1.895165, + "rtt_ns": 1438583, + "rtt_ms": 1.438583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:29.786589217Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:11.55428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407955, - "rtt_ms": 1.407955, + "rtt_ns": 1482250, + "rtt_ms": 1.48225, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.786694636Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:11.55434-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1279334, + "rtt_ms": 1.279334, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:11.55529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922464, - "rtt_ms": 1.922464, + "rtt_ns": 1385458, + "rtt_ms": 1.385458, "checkpoint": 0, "vertex_from": "4", "vertex_to": "329", - "timestamp": "2025-11-27T01:23:29.786755046Z" + "timestamp": "2025-11-27T04:03:11.5553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053727, - "rtt_ms": 1.053727, + "rtt_ns": 1026250, + "rtt_ms": 1.02625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "419", - "timestamp": "2025-11-27T01:23:29.786794186Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:11.555369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895584, - "rtt_ms": 1.895584, + "rtt_ns": 1211584, + "rtt_ms": 1.211584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "7", - "timestamp": "2025-11-27T01:23:29.786854846Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:11.555492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990414, - "rtt_ms": 1.990414, + "rtt_ns": 1367292, + "rtt_ms": 1.367292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:29.786871796Z" + "vertex_to": "7", + "timestamp": "2025-11-27T04:03:11.555512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112546, - "rtt_ms": 1.112546, + "rtt_ns": 1410208, + "rtt_ms": 1.410208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:29.787664933Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.555569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334076, - "rtt_ms": 1.334076, + "rtt_ns": 1492833, + "rtt_ms": 1.492833, "checkpoint": 0, "vertex_from": "4", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:29.787789063Z" + "timestamp": "2025-11-27T04:03:11.555665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598755, - "rtt_ms": 1.598755, + "rtt_ns": 1499583, + "rtt_ms": 1.499583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:29.788189732Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:11.555736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644705, - "rtt_ms": 1.644705, + "rtt_ns": 1540500, + "rtt_ms": 1.5405, "checkpoint": 0, "vertex_from": "4", "vertex_to": "538", - "timestamp": "2025-11-27T01:23:29.788191782Z" + "timestamp": "2025-11-27T04:03:11.555792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768465, - "rtt_ms": 1.768465, + "rtt_ns": 1802792, + "rtt_ms": 1.802792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:29.788297072Z" + "vertex_to": "419", + "timestamp": "2025-11-27T04:03:11.55597-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1476385, - "rtt_ms": 1.476385, + "rtt_ns": 1347875, + "rtt_ms": 1.347875, "checkpoint": 0, "vertex_from": "363", - "timestamp": "2025-11-27T01:23:29.788332901Z" + "timestamp": "2025-11-27T04:03:11.556841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640795, - "rtt_ms": 1.640795, + "rtt_ns": 1348291, + "rtt_ms": 1.348291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:29.788336981Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:11.556861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545495, - "rtt_ms": 1.545495, + "rtt_ns": 1330000, + "rtt_ms": 1.33, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.788341361Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:11.5569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792524, - "rtt_ms": 1.792524, + "rtt_ns": 1568208, + "rtt_ms": 1.568208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:29.78866606Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:11.556938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931334, - "rtt_ms": 1.931334, + "rtt_ns": 1819583, + "rtt_ms": 1.819583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:29.7886876Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:03:11.557111-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 777908, - "rtt_ms": 0.777908, + "operation": "add_edge", + "rtt_ns": 1508250, + "rtt_ms": 1.50825, "checkpoint": 0, - "vertex_from": "682", - "timestamp": "2025-11-27T01:23:29.789118239Z" + "vertex_from": "4", + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:11.557245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745265, - "rtt_ms": 1.745265, + "rtt_ns": 1968791, + "rtt_ms": 1.968791, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.789535838Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:11.55727-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1303958, + "rtt_ms": 1.303958, + "checkpoint": 0, + "vertex_from": "611", + "timestamp": "2025-11-27T04:03:11.557275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2632083, - "rtt_ms": 2.632083, + "rtt_ns": 1609500, + "rtt_ms": 1.6095, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.790298466Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:11.557276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156843, - "rtt_ms": 2.156843, + "rtt_ns": 1530458, + "rtt_ms": 1.530458, "checkpoint": 0, "vertex_from": "4", "vertex_to": "465", - "timestamp": "2025-11-27T01:23:29.790350325Z" + "timestamp": "2025-11-27T04:03:11.557325-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2160623, - "rtt_ms": 2.160623, + "rtt_ns": 1434250, + "rtt_ms": 1.43425, "checkpoint": 0, - "vertex_from": "611", - "timestamp": "2025-11-27T01:23:29.790460045Z" + "vertex_from": "682", + "timestamp": "2025-11-27T04:03:11.558297-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1829935, - "rtt_ms": 1.829935, + "operation": "add_vertex", + "rtt_ns": 1392083, + "rtt_ms": 1.392083, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:29.790519715Z" + "vertex_from": "244", + "timestamp": "2025-11-27T04:03:11.55864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208664, - "rtt_ms": 2.208664, + "rtt_ns": 2650750, + "rtt_ms": 2.65075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:29.790551375Z" + "vertex_to": "363", + "timestamp": "2025-11-27T04:03:11.559492-08:00" }, { "operation": "add_edge", - "rtt_ns": 2409893, - "rtt_ms": 2.409893, + "rtt_ns": 2383500, + "rtt_ms": 2.3835, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:29.790601715Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:11.559496-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033514, - "rtt_ms": 2.033514, + "rtt_ns": 2598375, + "rtt_ms": 2.598375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:29.790702064Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1198866, - "rtt_ms": 1.198866, - "checkpoint": 0, - "vertex_from": "244", - "timestamp": "2025-11-27T01:23:29.790738304Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:11.559501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2273553, - "rtt_ms": 2.273553, + "rtt_ns": 2247083, + "rtt_ms": 2.247083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "682", - "timestamp": "2025-11-27T01:23:29.791392012Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:11.559519-08:00" }, { "operation": "add_edge", - "rtt_ns": 3134521, - "rtt_ms": 3.134521, + "rtt_ns": 2335042, + "rtt_ms": 2.335042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "363", - "timestamp": "2025-11-27T01:23:29.791467622Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:11.559612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566775, - "rtt_ms": 1.566775, + "rtt_ns": 2344666, + "rtt_ms": 2.344666, "checkpoint": 0, "vertex_from": "4", "vertex_to": "611", - "timestamp": "2025-11-27T01:23:29.79202706Z" + "timestamp": "2025-11-27T04:03:11.55962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678455, - "rtt_ms": 1.678455, + "rtt_ns": 2306000, + "rtt_ms": 2.306, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:29.79203017Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:03:11.559632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764654, - "rtt_ms": 1.764654, + "rtt_ns": 2696417, + "rtt_ms": 2.696417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:29.79206447Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:11.559636-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1601245, - "rtt_ms": 1.601245, + "operation": "add_edge", + "rtt_ns": 1504792, + "rtt_ms": 1.504792, "checkpoint": 0, - "vertex_from": "918", - "timestamp": "2025-11-27T01:23:29.79215715Z" + "vertex_from": "4", + "vertex_to": "682", + "timestamp": "2025-11-27T04:03:11.559802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638465, - "rtt_ms": 1.638465, + "rtt_ns": 1190625, + "rtt_ms": 1.190625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "285", - "timestamp": "2025-11-27T01:23:29.79215955Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:03:11.55983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848574, - "rtt_ms": 1.848574, + "rtt_ns": 1290208, + "rtt_ms": 1.290208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.792451829Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:03:11.560902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163094, - "rtt_ms": 2.163094, + "rtt_ns": 1370375, + "rtt_ms": 1.370375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:29.792866438Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.560992-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1510500, + "rtt_ms": 1.5105, + "checkpoint": 0, + "vertex_from": "918", + "timestamp": "2025-11-27T04:03:11.561004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2646563, - "rtt_ms": 2.646563, + "rtt_ns": 1470167, + "rtt_ms": 1.470167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "244", - "timestamp": "2025-11-27T01:23:29.793385297Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:03:11.561106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2205324, - "rtt_ms": 2.205324, + "rtt_ns": 1625583, + "rtt_ms": 1.625583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "938", - "timestamp": "2025-11-27T01:23:29.793673956Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:11.561122-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312854, - "rtt_ms": 2.312854, + "rtt_ns": 1725958, + "rtt_ms": 1.725958, "checkpoint": 0, "vertex_from": "4", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:29.793706966Z" + "timestamp": "2025-11-27T04:03:11.561246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680246, - "rtt_ms": 1.680246, + "rtt_ns": 1666500, + "rtt_ms": 1.6665, "checkpoint": 0, "vertex_from": "4", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.793712276Z" + "timestamp": "2025-11-27T04:03:11.5613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701076, - "rtt_ms": 1.701076, + "rtt_ns": 1527292, + "rtt_ms": 1.527292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "355", - "timestamp": "2025-11-27T01:23:29.793766606Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:03:11.561359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742886, - "rtt_ms": 1.742886, + "rtt_ns": 1599375, + "rtt_ms": 1.599375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.793771936Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:11.561402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653615, - "rtt_ms": 1.653615, + "rtt_ns": 1987375, + "rtt_ms": 1.987375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "918", - "timestamp": "2025-11-27T01:23:29.793811315Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:11.561489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705965, - "rtt_ms": 1.705965, + "rtt_ns": 1150750, + "rtt_ms": 1.15075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:29.793869435Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:03:11.562274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448866, - "rtt_ms": 1.448866, + "rtt_ns": 1424125, + "rtt_ms": 1.424125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:29.793902365Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:11.562419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063987, - "rtt_ms": 1.063987, + "rtt_ns": 1136458, + "rtt_ms": 1.136458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:29.793936005Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:11.562437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289356, - "rtt_ms": 1.289356, + "rtt_ns": 1674542, + "rtt_ms": 1.674542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:29.794677303Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:11.562578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588335, - "rtt_ms": 1.588335, + "rtt_ns": 1479167, + "rtt_ms": 1.479167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:29.795264061Z" + "timestamp": "2025-11-27T04:03:11.562586-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082584, - "rtt_ms": 2.082584, + "rtt_ns": 1347542, + "rtt_ms": 1.347542, "checkpoint": 0, "vertex_from": "4", "vertex_to": "418", - "timestamp": "2025-11-27T01:23:29.79579762Z" + "timestamp": "2025-11-27T04:03:11.562595-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057784, - "rtt_ms": 2.057784, + "rtt_ns": 1619917, + "rtt_ms": 1.619917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:29.79582666Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:03:11.562627-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285193, - "rtt_ms": 2.285193, + "rtt_ns": 1473833, + "rtt_ms": 1.473833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "14", - "timestamp": "2025-11-27T01:23:29.795998959Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:11.562833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217684, - "rtt_ms": 2.217684, + "rtt_ns": 1434625, + "rtt_ms": 1.434625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "161", - "timestamp": "2025-11-27T01:23:29.796030999Z" + "timestamp": "2025-11-27T04:03:11.562837-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305513, - "rtt_ms": 2.305513, + "rtt_ns": 1561542, + "rtt_ms": 1.561542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:29.796080369Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:03:11.563051-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1164125, + "rtt_ms": 1.164125, + "checkpoint": 0, + "vertex_from": "967", + "timestamp": "2025-11-27T04:03:11.56376-08:00" }, { "operation": "add_edge", - "rtt_ns": 2271844, - "rtt_ms": 2.271844, + "rtt_ns": 1958125, + "rtt_ms": 1.958125, "checkpoint": 0, "vertex_from": "4", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.796175969Z" + "timestamp": "2025-11-27T04:03:11.564233-08:00" }, { "operation": "add_edge", - "rtt_ns": 2280764, - "rtt_ms": 2.280764, + "rtt_ns": 1882584, + "rtt_ms": 1.882584, "checkpoint": 0, "vertex_from": "4", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:29.796217599Z" + "timestamp": "2025-11-27T04:03:11.564302-08:00" }, { "operation": "add_edge", - "rtt_ns": 999637, - "rtt_ms": 0.999637, + "rtt_ns": 1777208, + "rtt_ms": 1.777208, "checkpoint": 0, "vertex_from": "4", "vertex_to": "198", - "timestamp": "2025-11-27T01:23:29.796264808Z" + "timestamp": "2025-11-27T04:03:11.564356-08:00" }, { "operation": "add_edge", - "rtt_ns": 2436473, - "rtt_ms": 2.436473, + "rtt_ns": 1791541, + "rtt_ms": 1.791541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "405", - "timestamp": "2025-11-27T01:23:29.796307658Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:11.564379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636315, - "rtt_ms": 1.636315, + "rtt_ns": 1864500, + "rtt_ms": 1.8645, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:29.796314548Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 651918, - "rtt_ms": 0.651918, - "checkpoint": 0, - "vertex_from": "967", - "timestamp": "2025-11-27T01:23:29.796480208Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:11.564493-08:00" }, { "operation": "add_edge", - "rtt_ns": 702508, - "rtt_ms": 0.702508, + "rtt_ns": 2064333, + "rtt_ms": 2.064333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:29.796501208Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:11.564502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336286, - "rtt_ms": 1.336286, + "rtt_ns": 1768292, + "rtt_ms": 1.768292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:29.797336205Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:11.564604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442356, - "rtt_ms": 1.442356, + "rtt_ns": 1703916, + "rtt_ms": 1.703916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:29.797475405Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:11.564756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585985, - "rtt_ms": 1.585985, + "rtt_ns": 1940666, + "rtt_ms": 1.940666, "checkpoint": 0, "vertex_from": "4", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:29.797667394Z" + "timestamp": "2025-11-27T04:03:11.564779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899974, - "rtt_ms": 1.899974, + "rtt_ns": 1097541, + "rtt_ms": 1.097541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:29.798118903Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:11.565477-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118573, - "rtt_ms": 2.118573, + "rtt_ns": 1174542, + "rtt_ms": 1.174542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:29.798297522Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.565532-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042184, - "rtt_ms": 2.042184, + "rtt_ns": 1146375, + "rtt_ms": 1.146375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "558", - "timestamp": "2025-11-27T01:23:29.798310302Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:03:11.565641-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013634, - "rtt_ms": 2.013634, + "rtt_ns": 1425708, + "rtt_ms": 1.425708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:29.798329292Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:03:11.56573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133734, - "rtt_ms": 2.133734, + "rtt_ns": 1597625, + "rtt_ms": 1.597625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.798442352Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:11.565833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013334, - "rtt_ms": 2.013334, + "rtt_ns": 2293792, + "rtt_ms": 2.293792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "11", - "timestamp": "2025-11-27T01:23:29.798516492Z" + "vertex_to": "967", + "timestamp": "2025-11-27T04:03:11.566054-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044944, - "rtt_ms": 2.044944, + "rtt_ns": 1551916, + "rtt_ms": 1.551916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "967", - "timestamp": "2025-11-27T01:23:29.798525552Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:11.566158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468856, - "rtt_ms": 1.468856, + "rtt_ns": 1703334, + "rtt_ms": 1.703334, "checkpoint": 0, "vertex_from": "4", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.798806661Z" + "timestamp": "2025-11-27T04:03:11.566206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345186, - "rtt_ms": 1.345186, + "rtt_ns": 1443709, + "rtt_ms": 1.443709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:29.798823991Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:11.566224-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1179857, - "rtt_ms": 1.179857, + "operation": "add_vertex", + "rtt_ns": 1621084, + "rtt_ms": 1.621084, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:29.798850031Z" + "vertex_from": "910", + "timestamp": "2025-11-27T04:03:11.567357-08:00" }, { "operation": "add_edge", - "rtt_ns": 836487, - "rtt_ms": 0.836487, + "rtt_ns": 2615208, + "rtt_ms": 2.615208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:29.79895655Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:11.567372-08:00" }, { "operation": "add_edge", - "rtt_ns": 946168, - "rtt_ms": 0.946168, + "rtt_ns": 1762583, + "rtt_ms": 1.762583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:29.79924579Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:11.567405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540416, - "rtt_ms": 1.540416, + "rtt_ns": 1707417, + "rtt_ms": 1.707417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:29.799870808Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:11.567542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635345, - "rtt_ms": 1.635345, + "rtt_ns": 2068083, + "rtt_ms": 2.068083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:29.799947237Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1595965, - "rtt_ms": 1.595965, - "checkpoint": 0, - "vertex_from": "910", - "timestamp": "2025-11-27T01:23:29.800040937Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:11.567547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317283, - "rtt_ms": 2.317283, + "rtt_ns": 2367125, + "rtt_ms": 2.367125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "915", - "timestamp": "2025-11-27T01:23:29.800844005Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:11.5679-08:00" }, { "operation": "add_edge", - "rtt_ns": 2407333, - "rtt_ms": 2.407333, + "rtt_ns": 1346250, + "rtt_ms": 1.34625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:29.800924985Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:03:11.56872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229053, - "rtt_ms": 2.229053, + "rtt_ns": 1235209, + "rtt_ms": 1.235209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:29.801054714Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:11.568783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195734, - "rtt_ms": 2.195734, + "rtt_ns": 2804167, + "rtt_ms": 2.804167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "13", - "timestamp": "2025-11-27T01:23:29.801153004Z" + "vertex_to": "915", + "timestamp": "2025-11-27T04:03:11.568859-08:00" }, { "operation": "add_edge", - "rtt_ns": 2380053, - "rtt_ms": 2.380053, + "rtt_ns": 1371458, + "rtt_ms": 1.371458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:29.801188014Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:03:11.568914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013374, - "rtt_ms": 2.013374, + "rtt_ns": 1561375, + "rtt_ms": 1.561375, "checkpoint": 0, "vertex_from": "4", "vertex_to": "248", - "timestamp": "2025-11-27T01:23:29.801260524Z" + "timestamp": "2025-11-27T04:03:11.568969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2412993, - "rtt_ms": 2.412993, + "rtt_ns": 1678709, + "rtt_ms": 1.678709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:29.801264124Z" + "vertex_to": "910", + "timestamp": "2025-11-27T04:03:11.569037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695965, - "rtt_ms": 1.695965, + "rtt_ns": 2814750, + "rtt_ms": 2.81475, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "910", - "timestamp": "2025-11-27T01:23:29.801737602Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:11.569039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929664, - "rtt_ms": 1.929664, + "rtt_ns": 2832334, + "rtt_ms": 2.832334, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "29", - "timestamp": "2025-11-27T01:23:29.801801852Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:11.569039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036126, - "rtt_ms": 1.036126, + "rtt_ns": 2966458, + "rtt_ms": 2.966458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:29.801963131Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:11.569125-08:00" }, { "operation": "add_edge", - "rtt_ns": 946307, - "rtt_ms": 0.946307, + "rtt_ns": 1779375, + "rtt_ms": 1.779375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:29.802002101Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:11.569681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141304, - "rtt_ms": 2.141304, + "rtt_ns": 1572167, + "rtt_ms": 1.572167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:29.802090121Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:11.570293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323656, - "rtt_ms": 1.323656, + "rtt_ns": 1577916, + "rtt_ms": 1.577916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.802168941Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:11.570362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072847, - "rtt_ms": 1.072847, + "rtt_ns": 1527000, + "rtt_ms": 1.527, "checkpoint": 0, "vertex_from": "4", "vertex_to": "905", - "timestamp": "2025-11-27T01:23:29.802226931Z" + "timestamp": "2025-11-27T04:03:11.570387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527745, - "rtt_ms": 1.527745, + "rtt_ns": 1456459, + "rtt_ms": 1.456459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:29.802717449Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:11.570426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098017, - "rtt_ms": 1.098017, + "rtt_ns": 1557500, + "rtt_ms": 1.5575, "checkpoint": 0, "vertex_from": "4", "vertex_to": "370", - "timestamp": "2025-11-27T01:23:29.802837539Z" + "timestamp": "2025-11-27T04:03:11.570598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620885, - "rtt_ms": 1.620885, + "rtt_ns": 1585041, + "rtt_ms": 1.585041, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.802883659Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:11.570626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650745, - "rtt_ms": 1.650745, + "rtt_ns": 1797500, + "rtt_ms": 1.7975, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "460", - "timestamp": "2025-11-27T01:23:29.802915999Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 677868, - "rtt_ms": 0.677868, - "checkpoint": 0, - "vertex_from": "921", - "timestamp": "2025-11-27T01:23:29.803517537Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:11.570712-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137814, - "rtt_ms": 2.137814, + "rtt_ns": 1699667, + "rtt_ms": 1.699667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:29.803942266Z" + "vertex_to": "460", + "timestamp": "2025-11-27T04:03:11.570739-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095734, - "rtt_ms": 2.095734, + "rtt_ns": 1694334, + "rtt_ms": 1.694334, "checkpoint": 0, "vertex_from": "4", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:29.804060505Z" + "timestamp": "2025-11-27T04:03:11.57082-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227084, - "rtt_ms": 2.227084, + "rtt_ns": 1154875, + "rtt_ms": 1.154875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "93", - "timestamp": "2025-11-27T01:23:29.804230475Z" + "timestamp": "2025-11-27T04:03:11.570838-08:00" }, { "operation": "add_edge", - "rtt_ns": 2534252, - "rtt_ms": 2.534252, + "rtt_ns": 1223917, + "rtt_ms": 1.223917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "15", - "timestamp": "2025-11-27T01:23:29.804704373Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:11.571518-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2638302, - "rtt_ms": 2.638302, + "operation": "add_vertex", + "rtt_ns": 1146541, + "rtt_ms": 1.146541, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:29.804866683Z" + "vertex_from": "454", + "timestamp": "2025-11-27T04:03:11.571775-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1443125, + "rtt_ms": 1.443125, + "checkpoint": 0, + "vertex_from": "921", + "timestamp": "2025-11-27T04:03:11.572042-08:00" }, { "operation": "add_edge", - "rtt_ns": 2826762, - "rtt_ms": 2.826762, + "rtt_ns": 1636667, + "rtt_ms": 1.636667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:29.804918273Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:11.572064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258023, - "rtt_ms": 2.258023, + "rtt_ns": 1830334, + "rtt_ms": 1.830334, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:29.804977502Z" + "vertex_to": "15", + "timestamp": "2025-11-27T04:03:11.572195-08:00" }, { "operation": "add_edge", - "rtt_ns": 2120423, - "rtt_ms": 2.120423, + "rtt_ns": 1908583, + "rtt_ms": 1.908583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "482", - "timestamp": "2025-11-27T01:23:29.805038742Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:11.572297-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2239933, - "rtt_ms": 2.239933, + "operation": "add_edge", + "rtt_ns": 1740208, + "rtt_ms": 1.740208, "checkpoint": 0, - "vertex_from": "454", - "timestamp": "2025-11-27T01:23:29.805126412Z" + "vertex_from": "4", + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:11.57248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700915, - "rtt_ms": 1.700915, + "rtt_ns": 1804250, + "rtt_ms": 1.80425, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "921", - "timestamp": "2025-11-27T01:23:29.805218982Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:11.572643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358645, - "rtt_ms": 1.358645, + "rtt_ns": 1936792, + "rtt_ms": 1.936792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:29.805303051Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:03:11.572651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356886, - "rtt_ms": 1.356886, + "rtt_ns": 2097250, + "rtt_ms": 2.09725, "checkpoint": 0, "vertex_from": "4", "vertex_to": "242", - "timestamp": "2025-11-27T01:23:29.805418311Z" + "timestamp": "2025-11-27T04:03:11.572918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221566, - "rtt_ms": 1.221566, + "rtt_ns": 1289125, + "rtt_ms": 1.289125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:29.805453861Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:03:11.573064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337646, - "rtt_ms": 1.337646, + "rtt_ns": 1564334, + "rtt_ms": 1.564334, "checkpoint": 0, "vertex_from": "4", "vertex_to": "569", - "timestamp": "2025-11-27T01:23:29.806044699Z" + "timestamp": "2025-11-27T04:03:11.573085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116457, - "rtt_ms": 1.116457, + "rtt_ns": 930000, + "rtt_ms": 0.93, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:29.806096039Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:11.573126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274336, - "rtt_ms": 1.274336, + "rtt_ns": 1403459, + "rtt_ms": 1.403459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:29.806193949Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:11.573469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070587, - "rtt_ms": 1.070587, + "rtt_ns": 1477833, + "rtt_ms": 1.477833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "454", - "timestamp": "2025-11-27T01:23:29.806197609Z" + "vertex_to": "921", + "timestamp": "2025-11-27T04:03:11.57352-08:00" }, { "operation": "add_edge", - "rtt_ns": 989967, - "rtt_ms": 0.989967, + "rtt_ns": 1231167, + "rtt_ms": 1.231167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:29.806210799Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:11.57353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197317, - "rtt_ms": 1.197317, + "rtt_ns": 1691041, + "rtt_ms": 1.691041, "checkpoint": 0, "vertex_from": "4", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:29.806237239Z" + "timestamp": "2025-11-27T04:03:11.574174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369626, - "rtt_ms": 1.369626, + "rtt_ns": 1241250, + "rtt_ms": 1.24125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.806238269Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:11.574306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116347, - "rtt_ms": 1.116347, + "rtt_ns": 1671916, + "rtt_ms": 1.671916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:29.806420348Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:11.574317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649515, - "rtt_ms": 1.649515, + "rtt_ns": 1754625, + "rtt_ms": 1.754625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:29.807068906Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:11.574407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662275, - "rtt_ms": 1.662275, + "rtt_ns": 1359458, + "rtt_ms": 1.359458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.807118476Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:03:11.574447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278836, - "rtt_ms": 1.278836, + "rtt_ns": 1624583, + "rtt_ms": 1.624583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:29.807376365Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:11.574544-08:00" }, { "operation": "add_edge", - "rtt_ns": 2493033, - "rtt_ms": 2.493033, + "rtt_ns": 1431750, + "rtt_ms": 1.43175, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:29.808539642Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:11.574559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163094, - "rtt_ms": 2.163094, + "rtt_ns": 1327292, + "rtt_ms": 1.327292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:29.808585752Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:11.575775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305637, - "rtt_ms": 1.305637, + "rtt_ns": 1465917, + "rtt_ms": 1.465917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:29.808683162Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:11.575784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2515993, - "rtt_ms": 2.515993, + "rtt_ns": 2392792, + "rtt_ms": 2.392792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:29.808713282Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:11.575925-08:00" }, { "operation": "add_edge", - "rtt_ns": 2562812, - "rtt_ms": 2.562812, + "rtt_ns": 1526208, + "rtt_ms": 1.526208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:29.808802091Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:03:11.575934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2662592, - "rtt_ms": 2.662592, + "rtt_ns": 1877375, + "rtt_ms": 1.877375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:29.808862671Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:11.576052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2665132, - "rtt_ms": 2.665132, + "rtt_ns": 2603958, + "rtt_ms": 2.603958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:29.808903741Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:11.576074-08:00" }, { "operation": "add_edge", - "rtt_ns": 3572490, - "rtt_ms": 3.57249, + "rtt_ns": 2569208, + "rtt_ms": 2.569208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:29.809784469Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:11.576092-08:00" }, { "operation": "add_edge", - "rtt_ns": 3351261, - "rtt_ms": 3.351261, + "rtt_ns": 1580791, + "rtt_ms": 1.580791, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:29.810422547Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:11.576125-08:00" }, { "operation": "add_edge", - "rtt_ns": 3323991, - "rtt_ms": 3.323991, + "rtt_ns": 1837875, + "rtt_ms": 1.837875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:29.810444347Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:11.576145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750935, - "rtt_ms": 1.750935, + "rtt_ns": 1663792, + "rtt_ms": 1.663792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:29.810655936Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:11.576223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135384, - "rtt_ms": 2.135384, + "rtt_ns": 1270750, + "rtt_ms": 1.27075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:29.810678366Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:11.577325-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093884, - "rtt_ms": 2.093884, + "rtt_ns": 1152417, + "rtt_ms": 1.152417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.810681206Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:11.577401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039784, - "rtt_ms": 2.039784, + "rtt_ns": 1626583, + "rtt_ms": 1.626583, "checkpoint": 0, "vertex_from": "4", "vertex_to": "417", - "timestamp": "2025-11-27T01:23:29.810724626Z" + "timestamp": "2025-11-27T04:03:11.577411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893535, - "rtt_ms": 1.893535, + "rtt_ns": 1382459, + "rtt_ms": 1.382459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:29.810758796Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:11.577458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096604, - "rtt_ms": 2.096604, + "rtt_ns": 1440667, + "rtt_ms": 1.440667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:29.810811316Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:03:11.577586-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033695, - "rtt_ms": 2.033695, + "rtt_ns": 1470625, + "rtt_ms": 1.470625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.810837336Z" + "vertex_to": "47", + "timestamp": "2025-11-27T04:03:11.577597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158816, - "rtt_ms": 1.158816, + "rtt_ns": 1826458, + "rtt_ms": 1.826458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "23", - "timestamp": "2025-11-27T01:23:29.811605263Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:11.577602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184936, - "rtt_ms": 1.184936, + "rtt_ns": 1684625, + "rtt_ms": 1.684625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "47", - "timestamp": "2025-11-27T01:23:29.811610173Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:11.577612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852735, - "rtt_ms": 1.852735, + "rtt_ns": 1522250, + "rtt_ms": 1.52225, "checkpoint": 0, "vertex_from": "4", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:29.811638973Z" + "timestamp": "2025-11-27T04:03:11.577615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614875, - "rtt_ms": 1.614875, + "rtt_ns": 1696292, + "rtt_ms": 1.696292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:29.812299581Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.577631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799345, - "rtt_ms": 1.799345, + "rtt_ns": 1283208, + "rtt_ms": 1.283208, "checkpoint": 0, "vertex_from": "4", "vertex_to": "284", - "timestamp": "2025-11-27T01:23:29.812479311Z" + "timestamp": "2025-11-27T04:03:11.578616-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1739015, - "rtt_ms": 1.739015, + "rtt_ns": 1411166, + "rtt_ms": 1.411166, "checkpoint": 0, "vertex_from": "359", - "timestamp": "2025-11-27T01:23:29.812503781Z" + "timestamp": "2025-11-27T04:03:11.578871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847855, - "rtt_ms": 1.847855, + "rtt_ns": 1307250, + "rtt_ms": 1.30725, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:29.812505511Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:11.578895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708055, - "rtt_ms": 1.708055, + "rtt_ns": 1486542, + "rtt_ms": 1.486542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:29.812521661Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:11.578905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800945, - "rtt_ms": 1.800945, + "rtt_ns": 1527584, + "rtt_ms": 1.527584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:29.812527241Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:11.578929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693795, - "rtt_ms": 1.693795, + "rtt_ns": 1455875, + "rtt_ms": 1.455875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:29.812533941Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:11.579073-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1603041, + "rtt_ms": 1.603041, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:11.579206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139087, - "rtt_ms": 1.139087, + "rtt_ns": 1716250, + "rtt_ms": 1.71625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "527", - "timestamp": "2025-11-27T01:23:29.81275154Z" + "timestamp": "2025-11-27T04:03:11.579329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863315, - "rtt_ms": 1.863315, + "rtt_ns": 2018708, + "rtt_ms": 2.018708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:29.813507758Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:11.579651-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2087750, + "rtt_ms": 2.08775, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:11.579687-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1628885, - "rtt_ms": 1.628885, + "rtt_ns": 1500291, + "rtt_ms": 1.500291, "checkpoint": 0, "vertex_from": "614", - "timestamp": "2025-11-27T01:23:29.814113956Z" + "timestamp": "2025-11-27T04:03:11.580119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835495, - "rtt_ms": 1.835495, + "rtt_ns": 1498875, + "rtt_ms": 1.498875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:29.814136486Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:03:11.580395-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1503167, + "rtt_ms": 1.503167, + "checkpoint": 0, + "vertex_from": "695", + "timestamp": "2025-11-27T04:03:11.58041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2537123, - "rtt_ms": 2.537123, + "rtt_ns": 1613292, + "rtt_ms": 1.613292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:29.814143996Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:11.580687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627545, - "rtt_ms": 1.627545, + "rtt_ns": 1415958, + "rtt_ms": 1.415958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:29.814156516Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:11.580747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228093, - "rtt_ms": 2.228093, + "rtt_ns": 2066917, + "rtt_ms": 2.066917, "checkpoint": 0, "vertex_from": "4", "vertex_to": "359", - "timestamp": "2025-11-27T01:23:29.814732404Z" + "timestamp": "2025-11-27T04:03:11.580939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283133, - "rtt_ms": 2.283133, + "rtt_ns": 2007917, + "rtt_ms": 2.007917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "51", - "timestamp": "2025-11-27T01:23:29.814791834Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:11.580939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274053, - "rtt_ms": 2.274053, + "rtt_ns": 1372167, + "rtt_ms": 1.372167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:29.814810024Z" + "vertex_to": "701", + "timestamp": "2025-11-27T04:03:11.581061-08:00" }, { "operation": "add_edge", - "rtt_ns": 2070754, - "rtt_ms": 2.070754, + "rtt_ns": 2060584, + "rtt_ms": 2.060584, "checkpoint": 0, "vertex_from": "4", "vertex_to": "225", - "timestamp": "2025-11-27T01:23:29.814824484Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2419892, - "rtt_ms": 2.419892, - "checkpoint": 0, - "vertex_from": "695", - "timestamp": "2025-11-27T01:23:29.814945993Z" + "timestamp": "2025-11-27T04:03:11.581268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452125, - "rtt_ms": 1.452125, + "rtt_ns": 1688666, + "rtt_ms": 1.688666, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:29.814963693Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:11.581342-08:00" }, { "operation": "add_edge", - "rtt_ns": 893797, - "rtt_ms": 0.893797, + "rtt_ns": 1075708, + "rtt_ms": 1.075708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "701", - "timestamp": "2025-11-27T01:23:29.815040293Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:11.581824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021947, - "rtt_ms": 1.021947, + "rtt_ns": 1965583, + "rtt_ms": 1.965583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:29.815161173Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:03:11.582085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071827, - "rtt_ms": 1.071827, + "rtt_ns": 1784000, + "rtt_ms": 1.784, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "614", - "timestamp": "2025-11-27T01:23:29.815186583Z" + "vertex_to": "695", + "timestamp": "2025-11-27T04:03:11.582194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035587, - "rtt_ms": 1.035587, + "rtt_ns": 1351958, + "rtt_ms": 1.351958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:29.815194713Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:11.582292-08:00" }, { "operation": "add_edge", - "rtt_ns": 819157, - "rtt_ms": 0.819157, + "rtt_ns": 1476000, + "rtt_ms": 1.476, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:29.815630691Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:11.582538-08:00" }, { "operation": "add_edge", - "rtt_ns": 892767, - "rtt_ms": 0.892767, + "rtt_ns": 2165125, + "rtt_ms": 2.165125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:29.815718781Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:11.582563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020067, - "rtt_ms": 1.020067, + "rtt_ns": 1300208, + "rtt_ms": 1.300208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:29.815754871Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:11.582569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027637, - "rtt_ms": 1.027637, + "rtt_ns": 1890042, + "rtt_ms": 1.890042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:29.815821381Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:11.582578-08:00" }, { "operation": "add_edge", - "rtt_ns": 961078, - "rtt_ms": 0.961078, + "rtt_ns": 1647667, + "rtt_ms": 1.647667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "695", - "timestamp": "2025-11-27T01:23:29.815907821Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:11.582587-08:00" }, { "operation": "add_edge", - "rtt_ns": 961358, - "rtt_ms": 0.961358, + "rtt_ns": 2034416, + "rtt_ms": 2.034416, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.815928181Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:11.583377-08:00" }, { "operation": "add_edge", - "rtt_ns": 932937, - "rtt_ms": 0.932937, + "rtt_ns": 1314167, + "rtt_ms": 1.314167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:29.81597493Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:03:11.583607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311016, - "rtt_ms": 1.311016, + "rtt_ns": 1442625, + "rtt_ms": 1.442625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:29.816508619Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:11.583638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403616, - "rtt_ms": 1.403616, + "rtt_ns": 1893250, + "rtt_ms": 1.89325, "checkpoint": 0, "vertex_from": "4", "vertex_to": "786", - "timestamp": "2025-11-27T01:23:29.816591739Z" + "timestamp": "2025-11-27T04:03:11.583718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980494, - "rtt_ms": 1.980494, + "rtt_ns": 1710791, + "rtt_ms": 1.710791, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:29.817144527Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:11.583797-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1387406, - "rtt_ms": 1.387406, + "rtt_ns": 1337834, + "rtt_ms": 1.337834, "checkpoint": 0, "vertex_from": "597", - "timestamp": "2025-11-27T01:23:29.817146247Z" + "timestamp": "2025-11-27T04:03:11.58388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659085, - "rtt_ms": 1.659085, + "rtt_ns": 1515875, + "rtt_ms": 1.515875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:29.817291576Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:11.58408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597705, - "rtt_ms": 1.597705, + "rtt_ns": 1601166, + "rtt_ms": 1.601166, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "110", - "timestamp": "2025-11-27T01:23:29.817318236Z" + "vertex_from": "5", + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.584189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810864, - "rtt_ms": 1.810864, + "rtt_ns": 1651834, + "rtt_ms": 1.651834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:29.817634185Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1694465, - "rtt_ms": 1.694465, - "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.817670785Z" + "vertex_to": "748", + "timestamp": "2025-11-27T04:03:11.584231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932334, - "rtt_ms": 1.932334, + "rtt_ns": 1922083, + "rtt_ms": 1.922083, "checkpoint": 0, "vertex_from": "4", "vertex_to": "756", - "timestamp": "2025-11-27T01:23:29.817841895Z" + "timestamp": "2025-11-27T04:03:11.584492-08:00" }, { "operation": "add_edge", - "rtt_ns": 751538, - "rtt_ms": 0.751538, + "rtt_ns": 1153542, + "rtt_ms": 1.153542, "checkpoint": 0, "vertex_from": "4", "vertex_to": "597", - "timestamp": "2025-11-27T01:23:29.817898105Z" + "timestamp": "2025-11-27T04:03:11.585034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333496, - "rtt_ms": 1.333496, + "rtt_ns": 1819750, + "rtt_ms": 1.81975, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.817928625Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.585199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471255, - "rtt_ms": 1.471255, + "rtt_ns": 1687250, + "rtt_ms": 1.68725, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.817988674Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:11.585295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087403, - "rtt_ms": 2.087403, + "rtt_ns": 1670750, + "rtt_ms": 1.67075, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "748", - "timestamp": "2025-11-27T01:23:29.818017254Z" + "vertex_from": "5", + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:11.58539-08:00" }, { "operation": "add_edge", - "rtt_ns": 875777, - "rtt_ms": 0.875777, + "rtt_ns": 1255208, + "rtt_ms": 1.255208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.818022294Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.585447-08:00" }, { "operation": "add_edge", - "rtt_ns": 803008, - "rtt_ms": 0.803008, + "rtt_ns": 1249791, + "rtt_ms": 1.249791, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:29.818097624Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.585482-08:00" }, { "operation": "add_edge", - "rtt_ns": 807558, - "rtt_ms": 0.807558, + "rtt_ns": 1702792, + "rtt_ms": 1.702792, "checkpoint": 0, "vertex_from": "5", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.818128664Z" + "timestamp": "2025-11-27T04:03:11.585503-08:00" }, { "operation": "add_edge", - "rtt_ns": 891938, - "rtt_ms": 0.891938, + "rtt_ns": 1529667, + "rtt_ms": 1.529667, "checkpoint": 0, "vertex_from": "5", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:29.818528063Z" + "timestamp": "2025-11-27T04:03:11.58561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177767, - "rtt_ms": 1.177767, + "rtt_ns": 1986000, + "rtt_ms": 1.986, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.818851252Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:11.585624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292806, - "rtt_ms": 1.292806, + "rtt_ns": 1219833, + "rtt_ms": 1.219833, "checkpoint": 0, "vertex_from": "5", "vertex_to": "440", - "timestamp": "2025-11-27T01:23:29.819192571Z" + "timestamp": "2025-11-27T04:03:11.585712-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072484, - "rtt_ms": 2.072484, + "rtt_ns": 1460542, + "rtt_ms": 1.460542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.819920999Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:11.586662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025324, - "rtt_ms": 2.025324, + "rtt_ns": 1382709, + "rtt_ms": 1.382709, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:29.819955669Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:03:11.586679-08:00" }, { "operation": "add_edge", - "rtt_ns": 2060234, - "rtt_ms": 2.060234, + "rtt_ns": 1814208, + "rtt_ms": 1.814208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:29.820050818Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:11.586849-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122154, - "rtt_ms": 2.122154, + "rtt_ns": 1361208, + "rtt_ms": 1.361208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:29.820146858Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:11.586865-08:00" }, { "operation": "add_edge", - "rtt_ns": 2531073, - "rtt_ms": 2.531073, + "rtt_ns": 1457792, + "rtt_ms": 1.457792, "checkpoint": 0, "vertex_from": "5", "vertex_to": "14", - "timestamp": "2025-11-27T01:23:29.820661637Z" + "timestamp": "2025-11-27T04:03:11.586941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2727752, - "rtt_ms": 2.727752, + "rtt_ns": 1401875, + "rtt_ms": 1.401875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.820746396Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:11.587027-08:00" }, { "operation": "add_edge", - "rtt_ns": 2692332, - "rtt_ms": 2.692332, + "rtt_ns": 1654000, + "rtt_ms": 1.654, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.820792246Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:11.587046-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062054, - "rtt_ms": 2.062054, + "rtt_ns": 1453000, + "rtt_ms": 1.453, "checkpoint": 0, "vertex_from": "5", "vertex_to": "930", - "timestamp": "2025-11-27T01:23:29.820915226Z" + "timestamp": "2025-11-27T04:03:11.587064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2451713, - "rtt_ms": 2.451713, + "rtt_ns": 1714084, + "rtt_ms": 1.714084, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.820981066Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.587163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2298943, - "rtt_ms": 2.298943, + "rtt_ns": 1553708, + "rtt_ms": 1.553708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.821493074Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:11.587267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597765, - "rtt_ms": 1.597765, + "rtt_ns": 1163625, + "rtt_ms": 1.163625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.821520414Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:11.588029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655585, - "rtt_ms": 1.655585, + "rtt_ns": 880583, + "rtt_ms": 0.880583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.821612804Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:03:11.588044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564726, - "rtt_ms": 1.564726, + "rtt_ns": 1822542, + "rtt_ms": 1.822542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.821617684Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:11.588771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734785, - "rtt_ms": 1.734785, + "rtt_ns": 1745167, + "rtt_ms": 1.745167, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.821882803Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.58881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167587, - "rtt_ms": 1.167587, + "rtt_ns": 1816083, + "rtt_ms": 1.816083, "checkpoint": 0, "vertex_from": "5", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.821961173Z" + "timestamp": "2025-11-27T04:03:11.588845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539585, - "rtt_ms": 1.539585, + "rtt_ns": 2071458, + "rtt_ms": 2.071458, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:29.822206252Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.588921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484346, - "rtt_ms": 1.484346, + "rtt_ns": 2270167, + "rtt_ms": 2.270167, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:29.822232762Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.588933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411436, - "rtt_ms": 1.411436, + "rtt_ns": 1902916, + "rtt_ms": 1.902916, "checkpoint": 0, "vertex_from": "5", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.822327762Z" + "timestamp": "2025-11-27T04:03:11.58895-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 747128, - "rtt_ms": 0.747128, + "operation": "add_edge", + "rtt_ns": 2366000, + "rtt_ms": 2.366, "checkpoint": 0, - "vertex_from": "485", - "timestamp": "2025-11-27T01:23:29.822362622Z" + "vertex_from": "5", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.589046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402356, - "rtt_ms": 1.402356, + "rtt_ns": 1792125, + "rtt_ms": 1.792125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.822384792Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:11.58906-08:00" }, { "operation": "add_edge", - "rtt_ns": 922528, - "rtt_ms": 0.922528, + "rtt_ns": 1046125, + "rtt_ms": 1.046125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.822417142Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:03:11.589999-08:00" }, { "operation": "add_edge", - "rtt_ns": 898958, - "rtt_ms": 0.898958, + "rtt_ns": 2017292, + "rtt_ms": 2.017292, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.822421452Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:11.590062-08:00" }, { "operation": "add_edge", - "rtt_ns": 857637, - "rtt_ms": 0.857637, + "rtt_ns": 1199625, + "rtt_ms": 1.199625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:29.822478311Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:11.590247-08:00" }, { "operation": "add_edge", - "rtt_ns": 607858, - "rtt_ms": 0.607858, + "rtt_ns": 1335625, + "rtt_ms": 1.335625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:29.822492401Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.590269-08:00" }, { "operation": "add_edge", - "rtt_ns": 624728, - "rtt_ms": 0.624728, + "rtt_ns": 1523084, + "rtt_ms": 1.523084, "checkpoint": 0, "vertex_from": "5", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:29.822587361Z" + "timestamp": "2025-11-27T04:03:11.590335-08:00" }, { "operation": "add_edge", - "rtt_ns": 897978, - "rtt_ms": 0.897978, + "rtt_ns": 1502583, + "rtt_ms": 1.502583, "checkpoint": 0, "vertex_from": "5", "vertex_to": "75", - "timestamp": "2025-11-27T01:23:29.82310625Z" + "timestamp": "2025-11-27T04:03:11.590348-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1102177, - "rtt_ms": 1.102177, + "operation": "add_vertex", + "rtt_ns": 2327167, + "rtt_ms": 2.327167, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:29.823336989Z" + "vertex_from": "485", + "timestamp": "2025-11-27T04:03:11.590358-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191654, - "rtt_ms": 2.191654, + "rtt_ns": 1321208, + "rtt_ms": 1.321208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:29.824676865Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:11.590382-08:00" }, { "operation": "add_edge", - "rtt_ns": 2323493, - "rtt_ms": 2.323493, + "rtt_ns": 1707084, + "rtt_ms": 1.707084, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:29.824742575Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:11.590481-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441153, - "rtt_ms": 2.441153, + "rtt_ns": 1692666, + "rtt_ms": 1.692666, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.824771255Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:11.590616-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464013, - "rtt_ms": 2.464013, + "rtt_ns": 1810667, + "rtt_ms": 1.810667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "558", - "timestamp": "2025-11-27T01:23:29.824850375Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:03:11.591874-08:00" }, { "operation": "add_edge", - "rtt_ns": 2452043, - "rtt_ms": 2.452043, + "rtt_ns": 1606083, + "rtt_ms": 1.606083, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:29.824876575Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:11.591876-08:00" }, { "operation": "add_edge", - "rtt_ns": 2571362, - "rtt_ms": 2.571362, + "rtt_ns": 1633750, + "rtt_ms": 1.63375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "485", - "timestamp": "2025-11-27T01:23:29.824934494Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.592016-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471903, - "rtt_ms": 2.471903, + "rtt_ns": 1712125, + "rtt_ms": 1.712125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.825062024Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:03:11.59207-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613193, - "rtt_ms": 2.613193, + "rtt_ns": 1752500, + "rtt_ms": 1.7525, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:29.825107034Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.592089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796175, - "rtt_ms": 1.796175, + "rtt_ns": 2100875, + "rtt_ms": 2.100875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.825136694Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:11.592102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050204, - "rtt_ms": 2.050204, + "rtt_ns": 1796875, + "rtt_ms": 1.796875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.825158424Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:11.592146-08:00" }, { "operation": "add_edge", - "rtt_ns": 769798, - "rtt_ms": 0.769798, + "rtt_ns": 1970292, + "rtt_ms": 1.970292, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:29.825448553Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:11.592219-08:00" }, { "operation": "add_edge", - "rtt_ns": 742488, - "rtt_ms": 0.742488, + "rtt_ns": 1617084, + "rtt_ms": 1.617084, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.825486533Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:11.592235-08:00" }, { "operation": "add_edge", - "rtt_ns": 809337, - "rtt_ms": 0.809337, + "rtt_ns": 1816459, + "rtt_ms": 1.816459, "checkpoint": 0, "vertex_from": "5", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.825581632Z" + "timestamp": "2025-11-27T04:03:11.592298-08:00" }, { "operation": "add_edge", - "rtt_ns": 784727, - "rtt_ms": 0.784727, + "rtt_ns": 1357208, + "rtt_ms": 1.357208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.825636592Z" + "vertex_to": "7", + "timestamp": "2025-11-27T04:03:11.593233-08:00" }, { "operation": "add_edge", - "rtt_ns": 779027, - "rtt_ms": 0.779027, + "rtt_ns": 1185667, + "rtt_ms": 1.185667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "7", - "timestamp": "2025-11-27T01:23:29.825657962Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:11.593276-08:00" }, { "operation": "add_edge", - "rtt_ns": 801588, - "rtt_ms": 0.801588, + "rtt_ns": 1117417, + "rtt_ms": 1.117417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.825737852Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:11.593416-08:00" }, { "operation": "add_edge", - "rtt_ns": 676268, - "rtt_ms": 0.676268, + "rtt_ns": 1364458, + "rtt_ms": 1.364458, "checkpoint": 0, "vertex_from": "5", "vertex_to": "35", - "timestamp": "2025-11-27T01:23:29.825784572Z" + "timestamp": "2025-11-27T04:03:11.593435-08:00" }, { "operation": "add_edge", - "rtt_ns": 822808, - "rtt_ms": 0.822808, + "rtt_ns": 1584667, + "rtt_ms": 1.584667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:29.825887192Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:11.593462-08:00" }, { "operation": "add_edge", - "rtt_ns": 777917, - "rtt_ms": 0.777917, + "rtt_ns": 1385667, + "rtt_ms": 1.385667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:29.825916071Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.593489-08:00" }, { "operation": "add_edge", - "rtt_ns": 780617, - "rtt_ms": 0.780617, + "rtt_ns": 1280208, + "rtt_ms": 1.280208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.825940651Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:11.5935-08:00" }, { "operation": "add_edge", - "rtt_ns": 666648, - "rtt_ms": 0.666648, + "rtt_ns": 1369958, + "rtt_ms": 1.369958, "checkpoint": 0, "vertex_from": "5", "vertex_to": "116", - "timestamp": "2025-11-27T01:23:29.826116911Z" + "timestamp": "2025-11-27T04:03:11.593517-08:00" }, { "operation": "add_edge", - "rtt_ns": 643788, - "rtt_ms": 0.643788, + "rtt_ns": 1547167, + "rtt_ms": 1.547167, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.826131411Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:11.593565-08:00" }, { "operation": "add_edge", - "rtt_ns": 999357, - "rtt_ms": 0.999357, + "rtt_ns": 1384041, + "rtt_ms": 1.384041, "checkpoint": 0, "vertex_from": "5", "vertex_to": "612", - "timestamp": "2025-11-27T01:23:29.826582299Z" + "timestamp": "2025-11-27T04:03:11.593619-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 696128, - "rtt_ms": 0.696128, + "operation": "add_edge", + "rtt_ns": 1313292, + "rtt_ms": 1.313292, "checkpoint": 0, - "vertex_from": "724", - "timestamp": "2025-11-27T01:23:29.826833249Z" + "vertex_from": "5", + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:11.594592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485626, - "rtt_ms": 1.485626, + "rtt_ns": 1255500, + "rtt_ms": 1.2555, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:29.827123428Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:11.594673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654865, - "rtt_ms": 1.654865, + "rtt_ns": 1293250, + "rtt_ms": 1.29325, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.827314227Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:11.594729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2162833, - "rtt_ms": 2.162833, + "rtt_ns": 1510292, + "rtt_ms": 1.510292, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:29.827902085Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:11.594744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993794, - "rtt_ms": 1.993794, + "rtt_ns": 1125667, + "rtt_ms": 1.125667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:29.827935475Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:11.594746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139423, - "rtt_ms": 2.139423, + "rtt_ns": 1338625, + "rtt_ms": 1.338625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.828028005Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:11.59484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185464, - "rtt_ms": 2.185464, + "rtt_ns": 1455125, + "rtt_ms": 1.455125, "checkpoint": 0, "vertex_from": "5", "vertex_to": "124", - "timestamp": "2025-11-27T01:23:29.828102885Z" + "timestamp": "2025-11-27T04:03:11.594918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316953, - "rtt_ms": 2.316953, + "rtt_ns": 1623792, + "rtt_ms": 1.623792, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:29.828103025Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:11.595114-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1719375, + "rtt_ms": 1.719375, + "checkpoint": 0, + "vertex_from": "724", + "timestamp": "2025-11-27T04:03:11.595239-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055984, - "rtt_ms": 2.055984, + "rtt_ns": 1693416, + "rtt_ms": 1.693416, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.828174505Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:11.59526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632446, - "rtt_ms": 1.632446, + "rtt_ns": 1486667, + "rtt_ms": 1.486667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:29.828216205Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:11.596234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493045, - "rtt_ms": 1.493045, + "rtt_ns": 1549583, + "rtt_ms": 1.549583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:29.828326734Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.59639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039317, - "rtt_ms": 1.039317, + "rtt_ns": 1992875, + "rtt_ms": 1.992875, "checkpoint": 0, "vertex_from": "5", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.828355124Z" + "timestamp": "2025-11-27T04:03:11.596586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668385, - "rtt_ms": 1.668385, + "rtt_ns": 1942541, + "rtt_ms": 1.942541, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.828794433Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.596673-08:00" }, { "operation": "add_edge", - "rtt_ns": 966637, - "rtt_ms": 0.966637, + "rtt_ns": 3200708, + "rtt_ms": 3.200708, "checkpoint": 0, "vertex_from": "5", "vertex_to": "417", - "timestamp": "2025-11-27T01:23:29.828995902Z" + "timestamp": "2025-11-27T04:03:11.597945-08:00" }, { "operation": "add_edge", - "rtt_ns": 931487, - "rtt_ms": 0.931487, + "rtt_ns": 2728542, + "rtt_ms": 2.728542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.829038472Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:11.597968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146587, - "rtt_ms": 1.146587, + "rtt_ns": 3317416, + "rtt_ms": 3.317416, "checkpoint": 0, "vertex_from": "5", "vertex_to": "697", - "timestamp": "2025-11-27T01:23:29.829050012Z" + "timestamp": "2025-11-27T04:03:11.597991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132357, - "rtt_ms": 1.132357, + "rtt_ns": 2729333, + "rtt_ms": 2.729333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.829069202Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:11.597993-08:00" }, { "operation": "add_edge", - "rtt_ns": 976287, - "rtt_ms": 0.976287, + "rtt_ns": 2886000, + "rtt_ms": 2.886, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:29.829082682Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:11.598001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066126, - "rtt_ms": 1.066126, + "rtt_ns": 2004708, + "rtt_ms": 2.004708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:29.829242481Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:11.598239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657675, - "rtt_ms": 1.657675, + "rtt_ns": 3545708, + "rtt_ms": 3.545708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:29.82987589Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:11.598465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604315, - "rtt_ms": 1.604315, + "rtt_ns": 1962250, + "rtt_ms": 1.96225, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:29.829932659Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:11.598549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162016, - "rtt_ms": 1.162016, + "rtt_ns": 2576750, + "rtt_ms": 2.57675, "checkpoint": 0, "vertex_from": "5", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.829957469Z" + "timestamp": "2025-11-27T04:03:11.598968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608705, - "rtt_ms": 1.608705, + "rtt_ns": 1258208, + "rtt_ms": 1.258208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:29.829965319Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:11.599499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768745, - "rtt_ms": 1.768745, + "rtt_ns": 2057625, + "rtt_ms": 2.057625, "checkpoint": 0, "vertex_from": "5", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:29.830840907Z" + "timestamp": "2025-11-27T04:03:11.600026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2247523, - "rtt_ms": 2.247523, + "rtt_ns": 1308541, + "rtt_ms": 1.308541, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:29.831332995Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:11.600277-08:00" }, { "operation": "add_edge", - "rtt_ns": 2448133, - "rtt_ms": 2.448133, + "rtt_ns": 1850041, + "rtt_ms": 1.850041, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:29.831446495Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:11.600316-08:00" }, { "operation": "add_edge", - "rtt_ns": 3005031, - "rtt_ms": 3.005031, + "rtt_ns": 2343791, + "rtt_ms": 2.343791, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:29.832045083Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:11.600337-08:00" }, { "operation": "add_edge", - "rtt_ns": 3065031, - "rtt_ms": 3.065031, + "rtt_ns": 2483417, + "rtt_ms": 2.483417, "checkpoint": 0, "vertex_from": "5", "vertex_to": "246", - "timestamp": "2025-11-27T01:23:29.832116473Z" + "timestamp": "2025-11-27T04:03:11.60043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265843, - "rtt_ms": 2.265843, + "rtt_ns": 2581084, + "rtt_ms": 2.581084, "checkpoint": 0, "vertex_from": "5", "vertex_to": "99", - "timestamp": "2025-11-27T01:23:29.832143733Z" + "timestamp": "2025-11-27T04:03:11.600583-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250164, - "rtt_ms": 2.250164, + "rtt_ns": 3931958, + "rtt_ms": 3.931958, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.832183883Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:11.600613-08:00" }, { "operation": "add_edge", - "rtt_ns": 2967382, - "rtt_ms": 2.967382, + "rtt_ns": 3014833, + "rtt_ms": 3.014833, "checkpoint": 0, "vertex_from": "5", "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.832211843Z" + "timestamp": "2025-11-27T04:03:11.601008-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319093, - "rtt_ms": 2.319093, + "rtt_ns": 2500166, + "rtt_ms": 2.500166, "checkpoint": 0, "vertex_from": "5", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.832287112Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2863092, - "rtt_ms": 2.863092, - "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:29.832822251Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1997704, - "rtt_ms": 1.997704, - "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:29.832842121Z" + "timestamp": "2025-11-27T04:03:11.60105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478915, - "rtt_ms": 1.478915, + "rtt_ns": 1322250, + "rtt_ms": 1.32225, "checkpoint": 0, "vertex_from": "5", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:29.8329268Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1655295, - "rtt_ms": 1.655295, - "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:29.83299043Z" + "timestamp": "2025-11-27T04:03:11.60135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069897, - "rtt_ms": 1.069897, + "rtt_ns": 1192542, + "rtt_ms": 1.192542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.83311823Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.60153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010187, - "rtt_ms": 1.010187, + "rtt_ns": 1222500, + "rtt_ms": 1.2225, "checkpoint": 0, "vertex_from": "5", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:29.83312804Z" + "timestamp": "2025-11-27T04:03:11.601539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432836, - "rtt_ms": 1.432836, + "rtt_ns": 1371708, + "rtt_ms": 1.371708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.833579059Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:11.60165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533085, - "rtt_ms": 1.533085, + "rtt_ns": 2559083, + "rtt_ms": 2.559083, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.833746358Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:11.602061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568375, - "rtt_ms": 1.568375, + "rtt_ns": 2029917, + "rtt_ms": 2.029917, "checkpoint": 0, "vertex_from": "5", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:29.833753488Z" + "timestamp": "2025-11-27T04:03:11.602461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495416, - "rtt_ms": 1.495416, + "rtt_ns": 1867292, + "rtt_ms": 1.867292, "checkpoint": 0, "vertex_from": "5", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:29.833785418Z" + "timestamp": "2025-11-27T04:03:11.602483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245157, - "rtt_ms": 1.245157, + "rtt_ns": 1902791, + "rtt_ms": 1.902791, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:29.834240837Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:11.602487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421626, - "rtt_ms": 1.421626, + "rtt_ns": 1171000, + "rtt_ms": 1.171, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:29.834245977Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:11.602522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481395, - "rtt_ms": 1.481395, + "rtt_ns": 1520542, + "rtt_ms": 1.520542, "checkpoint": 0, "vertex_from": "5", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.834325466Z" + "timestamp": "2025-11-27T04:03:11.602572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443446, - "rtt_ms": 1.443446, + "rtt_ns": 1580958, + "rtt_ms": 1.580958, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.834371686Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:11.602591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357796, - "rtt_ms": 1.357796, + "rtt_ns": 1788583, + "rtt_ms": 1.788583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:29.834487916Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:11.603321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926864, - "rtt_ms": 1.926864, + "rtt_ns": 1804250, + "rtt_ms": 1.80425, "checkpoint": 0, "vertex_from": "5", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.835052284Z" + "timestamp": "2025-11-27T04:03:11.603345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641075, - "rtt_ms": 1.641075, + "rtt_ns": 1823875, + "rtt_ms": 1.823875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:29.835221694Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:11.603474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956574, - "rtt_ms": 1.956574, + "rtt_ns": 1549875, + "rtt_ms": 1.549875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:29.835704542Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.604038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978694, - "rtt_ms": 1.978694, + "rtt_ns": 1704541, + "rtt_ms": 1.704541, "checkpoint": 0, "vertex_from": "5", "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.835733952Z" + "timestamp": "2025-11-27T04:03:11.604188-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1981894, - "rtt_ms": 1.981894, + "operation": "add_vertex", + "rtt_ns": 1647209, + "rtt_ms": 1.647209, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.835769122Z" + "vertex_from": "954", + "timestamp": "2025-11-27T04:03:11.60422-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196233, - "rtt_ms": 2.196233, + "rtt_ns": 1781458, + "rtt_ms": 1.781458, "checkpoint": 0, "vertex_from": "5", "vertex_to": "300", - "timestamp": "2025-11-27T01:23:29.83643892Z" + "timestamp": "2025-11-27T04:03:11.604304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155284, - "rtt_ms": 2.155284, + "rtt_ns": 1730209, + "rtt_ms": 1.730209, "checkpoint": 0, "vertex_from": "5", "vertex_to": "138", - "timestamp": "2025-11-27T01:23:29.83648215Z" + "timestamp": "2025-11-27T04:03:11.604322-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114094, - "rtt_ms": 2.114094, + "rtt_ns": 1860917, + "rtt_ms": 1.860917, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:29.83648695Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:11.604323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442876, - "rtt_ms": 1.442876, + "rtt_ns": 1152333, + "rtt_ms": 1.152333, "checkpoint": 0, "vertex_from": "5", "vertex_to": "70", - "timestamp": "2025-11-27T01:23:29.83649891Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2258893, - "rtt_ms": 2.258893, - "checkpoint": 0, - "vertex_from": "954", - "timestamp": "2025-11-27T01:23:29.83651172Z" + "timestamp": "2025-11-27T04:03:11.604628-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026214, - "rtt_ms": 2.026214, + "rtt_ns": 1284667, + "rtt_ms": 1.284667, "checkpoint": 0, "vertex_from": "5", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:29.83651536Z" + "timestamp": "2025-11-27T04:03:11.60463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581415, - "rtt_ms": 1.581415, + "rtt_ns": 1322833, + "rtt_ms": 1.322833, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:29.836804729Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:11.604645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309457, - "rtt_ms": 1.309457, + "rtt_ns": 2712542, + "rtt_ms": 2.712542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:29.837015849Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:11.604776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289076, - "rtt_ms": 1.289076, + "rtt_ns": 1665625, + "rtt_ms": 1.665625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:29.837060488Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:11.605705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339906, - "rtt_ms": 1.339906, + "rtt_ns": 1493208, + "rtt_ms": 1.493208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:29.837075328Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:11.605817-08:00" }, { "operation": "add_edge", - "rtt_ns": 845188, - "rtt_ms": 0.845188, + "rtt_ns": 1495208, + "rtt_ms": 1.495208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:29.837286868Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:11.605818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197777, - "rtt_ms": 1.197777, + "rtt_ns": 1757500, + "rtt_ms": 1.7575, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.837714497Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:11.605947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325716, - "rtt_ms": 1.325716, + "rtt_ns": 1742750, + "rtt_ms": 1.74275, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:29.837814296Z" + "vertex_to": "954", + "timestamp": "2025-11-27T04:03:11.605963-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 849748, - "rtt_ms": 0.849748, + "operation": "add_edge", + "rtt_ns": 1882708, + "rtt_ms": 1.882708, "checkpoint": 0, - "vertex_from": "411", - "timestamp": "2025-11-27T01:23:29.837915676Z" + "vertex_from": "5", + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:11.606187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414286, - "rtt_ms": 1.414286, + "rtt_ns": 1575708, + "rtt_ms": 1.575708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.837915686Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:11.606204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537666, - "rtt_ms": 1.537666, + "rtt_ns": 1892250, + "rtt_ms": 1.89225, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "954", - "timestamp": "2025-11-27T01:23:29.838050186Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:11.606523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271037, - "rtt_ms": 1.271037, + "rtt_ns": 1767875, + "rtt_ms": 1.767875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:29.838079666Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:11.606545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621835, - "rtt_ms": 1.621835, + "rtt_ns": 2013125, + "rtt_ms": 2.013125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:29.838107005Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:11.606659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110776, - "rtt_ms": 1.110776, + "rtt_ns": 1348583, + "rtt_ms": 1.348583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:29.838128245Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:11.607313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668266, - "rtt_ms": 1.668266, + "rtt_ns": 1496791, + "rtt_ms": 1.496791, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:29.838746584Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:11.607314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993664, - "rtt_ms": 1.993664, + "rtt_ns": 1822625, + "rtt_ms": 1.822625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:29.84004614Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:11.607528-08:00" }, { "operation": "add_edge", - "rtt_ns": 2357893, - "rtt_ms": 2.357893, + "rtt_ns": 1492000, + "rtt_ms": 1.492, "checkpoint": 0, "vertex_from": "5", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.84007446Z" + "timestamp": "2025-11-27T04:03:11.60768-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158014, - "rtt_ms": 2.158014, + "rtt_ns": 1838375, + "rtt_ms": 1.838375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:29.84007757Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:11.607786-08:00" }, { "operation": "add_edge", - "rtt_ns": 2824422, - "rtt_ms": 2.824422, + "rtt_ns": 1147417, + "rtt_ms": 1.147417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:29.84011293Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.60781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010715, - "rtt_ms": 2.010715, + "rtt_ns": 1314250, + "rtt_ms": 1.31425, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.84012107Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:11.607839-08:00" }, { "operation": "add_edge", - "rtt_ns": 2454573, - "rtt_ms": 2.454573, + "rtt_ns": 1650875, + "rtt_ms": 1.650875, "checkpoint": 0, "vertex_from": "5", "vertex_to": "54", - "timestamp": "2025-11-27T01:23:29.840270339Z" + "timestamp": "2025-11-27T04:03:11.607856-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2082583, + "rtt_ms": 2.082583, + "checkpoint": 0, + "vertex_from": "411", + "timestamp": "2025-11-27T04:03:11.607902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548135, - "rtt_ms": 1.548135, + "rtt_ns": 1928417, + "rtt_ms": 1.928417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:29.840296549Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:11.608474-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306003, - "rtt_ms": 2.306003, + "rtt_ns": 1570834, + "rtt_ms": 1.570834, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.840387499Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.608885-08:00" }, { "operation": "add_edge", - "rtt_ns": 2505153, - "rtt_ms": 2.505153, + "rtt_ns": 1258917, + "rtt_ms": 1.258917, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "411", - "timestamp": "2025-11-27T01:23:29.840421289Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:11.60894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315794, - "rtt_ms": 2.315794, + "rtt_ns": 1709792, + "rtt_ms": 1.709792, "checkpoint": 0, "vertex_from": "5", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.840445459Z" + "timestamp": "2025-11-27T04:03:11.609025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061817, - "rtt_ms": 1.061817, + "rtt_ns": 1198334, + "rtt_ms": 1.198334, "checkpoint": 0, "vertex_from": "5", "vertex_to": "664", - "timestamp": "2025-11-27T01:23:29.841176537Z" + "timestamp": "2025-11-27T04:03:11.609038-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1122647, - "rtt_ms": 1.122647, + "operation": "add_vertex", + "rtt_ns": 1367041, + "rtt_ms": 1.367041, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:29.841202267Z" + "vertex_from": "559", + "timestamp": "2025-11-27T04:03:11.609161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107316, - "rtt_ms": 1.107316, + "rtt_ns": 1314791, + "rtt_ms": 1.314791, "checkpoint": 0, "vertex_from": "5", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:29.841229586Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1155416, - "rtt_ms": 1.155416, - "checkpoint": 0, - "vertex_from": "559", - "timestamp": "2025-11-27T01:23:29.841234756Z" + "timestamp": "2025-11-27T04:03:11.609171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209716, - "rtt_ms": 1.209716, + "rtt_ns": 1685667, + "rtt_ms": 1.685667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:29.841258536Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:11.609215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434276, - "rtt_ms": 1.434276, + "rtt_ns": 1588042, + "rtt_ms": 1.588042, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:29.841706745Z" + "vertex_to": "411", + "timestamp": "2025-11-27T04:03:11.609491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434116, - "rtt_ms": 1.434116, + "rtt_ns": 2010875, + "rtt_ms": 2.010875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:29.841732385Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:11.609822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497715, - "rtt_ms": 1.497715, + "rtt_ns": 1439791, + "rtt_ms": 1.439791, "checkpoint": 0, "vertex_from": "5", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.841886464Z" + "timestamp": "2025-11-27T04:03:11.610387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504665, - "rtt_ms": 1.504665, + "rtt_ns": 1657875, + "rtt_ms": 1.657875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.841928274Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:11.610697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516895, - "rtt_ms": 1.516895, + "rtt_ns": 2295084, + "rtt_ms": 2.295084, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:29.841963344Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:11.610781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064937, - "rtt_ms": 1.064937, + "rtt_ns": 1017875, + "rtt_ms": 1.017875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "559", - "timestamp": "2025-11-27T01:23:29.842299933Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:11.610841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714775, - "rtt_ms": 1.714775, + "rtt_ns": 1685333, + "rtt_ms": 1.685333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:29.842977801Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:11.610857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902604, - "rtt_ms": 1.902604, + "rtt_ns": 1740500, + "rtt_ms": 1.7405, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:29.843080741Z" + "vertex_to": "559", + "timestamp": "2025-11-27T04:03:11.610901-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1873325, - "rtt_ms": 1.873325, + "rtt_ns": 1454208, + "rtt_ms": 1.454208, "checkpoint": 0, "vertex_from": "414", - "timestamp": "2025-11-27T01:23:29.843105761Z" + "timestamp": "2025-11-27T04:03:11.610947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932814, - "rtt_ms": 1.932814, + "rtt_ns": 1740291, + "rtt_ms": 1.740291, "checkpoint": 0, "vertex_from": "5", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:29.843136631Z" + "timestamp": "2025-11-27T04:03:11.610956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422216, - "rtt_ms": 1.422216, + "rtt_ns": 2029959, + "rtt_ms": 2.029959, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "880", - "timestamp": "2025-11-27T01:23:29.843155751Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:11.611057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812545, - "rtt_ms": 1.812545, + "rtt_ns": 2492791, + "rtt_ms": 2.492791, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "810", - "timestamp": "2025-11-27T01:23:29.8435206Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:11.611383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647425, - "rtt_ms": 1.647425, + "rtt_ns": 1292584, + "rtt_ms": 1.292584, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.843577319Z" + "vertex_to": "414", + "timestamp": "2025-11-27T04:03:11.61224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647945, - "rtt_ms": 1.647945, + "rtt_ns": 1341041, + "rtt_ms": 1.341041, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.843612729Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.612243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727785, - "rtt_ms": 1.727785, + "rtt_ns": 1865250, + "rtt_ms": 1.86525, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:29.843616839Z" + "vertex_to": "810", + "timestamp": "2025-11-27T04:03:11.612254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861045, - "rtt_ms": 1.861045, + "rtt_ns": 1300458, + "rtt_ms": 1.300458, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.844162738Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:11.612257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531816, - "rtt_ms": 1.531816, + "rtt_ns": 1399583, + "rtt_ms": 1.399583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:29.844513327Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.612258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500765, - "rtt_ms": 1.500765, + "rtt_ns": 1417209, + "rtt_ms": 1.417209, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "414", - "timestamp": "2025-11-27T01:23:29.844607106Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:11.61226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481395, - "rtt_ms": 1.481395, + "rtt_ns": 1584333, + "rtt_ms": 1.584333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:29.844638946Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:03:11.612284-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191413, - "rtt_ms": 2.191413, + "rtt_ns": 1629792, + "rtt_ms": 1.629792, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.845275134Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:11.612412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740715, - "rtt_ms": 1.740715, + "rtt_ns": 1148333, + "rtt_ms": 1.148333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:29.845319684Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.612533-08:00" }, { "operation": "add_edge", - "rtt_ns": 2679292, - "rtt_ms": 2.679292, + "rtt_ns": 1547459, + "rtt_ms": 1.547459, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.845819103Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:11.612605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677815, - "rtt_ms": 1.677815, + "rtt_ns": 1160458, + "rtt_ms": 1.160458, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:29.845842443Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:03:11.613419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227094, - "rtt_ms": 2.227094, + "rtt_ns": 912291, + "rtt_ms": 0.912291, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "684", - "timestamp": "2025-11-27T01:23:29.845845733Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:11.613447-08:00" }, { "operation": "add_edge", - "rtt_ns": 2335323, - "rtt_ms": 2.335323, + "rtt_ns": 1444250, + "rtt_ms": 1.44425, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.845858853Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:11.613707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267944, - "rtt_ms": 2.267944, + "rtt_ns": 1449375, + "rtt_ms": 1.449375, "checkpoint": 0, "vertex_from": "5", "vertex_to": "480", - "timestamp": "2025-11-27T01:23:29.845881953Z" + "timestamp": "2025-11-27T04:03:11.613707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437945, - "rtt_ms": 1.437945, + "rtt_ns": 1518375, + "rtt_ms": 1.518375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:29.845952802Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:11.613773-08:00" }, { "operation": "add_edge", - "rtt_ns": 737747, - "rtt_ms": 0.737747, + "rtt_ns": 1378625, + "rtt_ms": 1.378625, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:29.84662123Z" + "vertex_from": "5", + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:11.613791-08:00" }, { "operation": "add_edge", - "rtt_ns": 845867, - "rtt_ms": 0.845867, + "rtt_ns": 1206167, + "rtt_ms": 1.206167, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.84670829Z" + "vertex_from": "5", + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:11.613812-08:00" }, { "operation": "add_edge", - "rtt_ns": 963907, - "rtt_ms": 0.963907, + "rtt_ns": 1637958, + "rtt_ms": 1.637958, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.846918429Z" + "vertex_from": "5", + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:11.613882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2436243, - "rtt_ms": 2.436243, + "rtt_ns": 1681500, + "rtt_ms": 1.6815, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:29.847045029Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:11.613967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2105254, - "rtt_ms": 2.105254, + "rtt_ns": 1731458, + "rtt_ms": 1.731458, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:29.847426358Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:11.613972-08:00" }, { "operation": "add_edge", - "rtt_ns": 925758, - "rtt_ms": 0.925758, + "rtt_ns": 1304875, + "rtt_ms": 1.304875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.847550008Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:11.615272-08:00" }, { "operation": "add_edge", - "rtt_ns": 866837, - "rtt_ms": 0.866837, + "rtt_ns": 1520167, + "rtt_ms": 1.520167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:29.847577707Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:11.615333-08:00" }, { "operation": "add_edge", - "rtt_ns": 848288, - "rtt_ms": 0.848288, + "rtt_ns": 1586750, + "rtt_ms": 1.58675, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:29.847768457Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:03:11.61536-08:00" }, { "operation": "add_edge", - "rtt_ns": 722608, - "rtt_ms": 0.722608, + "rtt_ns": 1634167, + "rtt_ms": 1.634167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.847768857Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:11.615426-08:00" }, { "operation": "add_edge", - "rtt_ns": 2005994, - "rtt_ms": 2.005994, + "rtt_ns": 1641500, + "rtt_ms": 1.6415, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:29.847849477Z" + "vertex_from": "6", + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.615524-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044084, - "rtt_ms": 2.044084, + "rtt_ns": 1976416, + "rtt_ms": 1.976416, "checkpoint": 0, "vertex_from": "5", "vertex_to": "424", - "timestamp": "2025-11-27T01:23:29.847891817Z" + "timestamp": "2025-11-27T04:03:11.615685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2681752, - "rtt_ms": 2.681752, + "rtt_ns": 2501083, + "rtt_ms": 2.501083, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:29.847958476Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:11.615922-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160553, - "rtt_ms": 2.160553, + "rtt_ns": 2563875, + "rtt_ms": 2.563875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.847980916Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:11.616272-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1097417, + "rtt_ms": 1.097417, + "checkpoint": 0, + "vertex_from": "6", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:11.616431-08:00" }, { "operation": "add_edge", - "rtt_ns": 3388110, - "rtt_ms": 3.38811, + "rtt_ns": 3084125, + "rtt_ms": 3.084125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:29.848028576Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.616532-08:00" }, { "operation": "add_edge", - "rtt_ns": 792278, - "rtt_ms": 0.792278, + "rtt_ns": 2900000, + "rtt_ms": 2.9, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.848219826Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:11.616873-08:00" }, { "operation": "add_edge", - "rtt_ns": 894927, - "rtt_ms": 0.894927, + "rtt_ns": 2040250, + "rtt_ms": 2.04025, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.848447515Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:11.617467-08:00" }, { "operation": "add_edge", - "rtt_ns": 926548, - "rtt_ms": 0.926548, + "rtt_ns": 2165292, + "rtt_ms": 2.165292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.848505545Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:11.617527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892204, - "rtt_ms": 1.892204, + "rtt_ns": 2014834, + "rtt_ms": 2.014834, "checkpoint": 0, "vertex_from": "6", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:29.849664131Z" + "timestamp": "2025-11-27T04:03:11.61754-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160193, - "rtt_ms": 2.160193, + "rtt_ns": 1863958, + "rtt_ms": 1.863958, "checkpoint": 0, "vertex_from": "6", "vertex_to": "707", - "timestamp": "2025-11-27T01:23:29.84993254Z" + "timestamp": "2025-11-27T04:03:11.61755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139223, - "rtt_ms": 2.139223, + "rtt_ns": 2401292, + "rtt_ms": 2.401292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.84999038Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.617674-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132263, - "rtt_ms": 2.132263, + "rtt_ns": 1387291, + "rtt_ms": 1.387291, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.8500274Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.617921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135014, - "rtt_ms": 2.135014, + "rtt_ns": 2010334, + "rtt_ms": 2.010334, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:29.85009599Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.617935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2070314, - "rtt_ms": 2.070314, + "rtt_ns": 1830792, + "rtt_ms": 1.830792, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:29.85010064Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.618105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174084, - "rtt_ms": 2.174084, + "rtt_ns": 1717708, + "rtt_ms": 1.717708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.85015625Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:11.61815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684765, - "rtt_ms": 1.684765, + "rtt_ns": 1329792, + "rtt_ms": 1.329792, "checkpoint": 0, "vertex_from": "6", "vertex_to": "179", - "timestamp": "2025-11-27T01:23:29.85019272Z" + "timestamp": "2025-11-27T04:03:11.618871-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2130750, + "rtt_ms": 2.13075, + "checkpoint": 0, + "vertex_from": "6", + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:11.619005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002844, - "rtt_ms": 2.002844, + "rtt_ns": 1842750, + "rtt_ms": 1.84275, "checkpoint": 0, "vertex_from": "6", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:29.85022454Z" + "timestamp": "2025-11-27T04:03:11.619313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835914, - "rtt_ms": 1.835914, + "rtt_ns": 1443417, + "rtt_ms": 1.443417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.850289679Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:11.619365-08:00" }, { "operation": "add_edge", - "rtt_ns": 752738, - "rtt_ms": 0.752738, + "rtt_ns": 1913833, + "rtt_ms": 1.913833, "checkpoint": 0, "vertex_from": "6", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.850418499Z" + "timestamp": "2025-11-27T04:03:11.619465-08:00" }, { "operation": "add_edge", - "rtt_ns": 865848, - "rtt_ms": 0.865848, + "rtt_ns": 2054334, + "rtt_ms": 2.054334, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:29.850801258Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.619582-08:00" }, { "operation": "add_edge", - "rtt_ns": 829198, - "rtt_ms": 0.829198, + "rtt_ns": 1992750, + "rtt_ms": 1.99275, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:29.850823518Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:11.619668-08:00" }, { "operation": "add_edge", - "rtt_ns": 795598, - "rtt_ms": 0.795598, + "rtt_ns": 1614250, + "rtt_ms": 1.61425, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.850824868Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:11.61972-08:00" }, { "operation": "add_edge", - "rtt_ns": 810338, - "rtt_ms": 0.810338, + "rtt_ns": 1784084, + "rtt_ms": 1.784084, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:29.850908088Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:11.619721-08:00" }, { "operation": "add_vertex", - "rtt_ns": 848347, - "rtt_ms": 0.848347, + "rtt_ns": 1648625, + "rtt_ms": 1.648625, "checkpoint": 0, "vertex_from": "342", - "timestamp": "2025-11-27T01:23:29.850952727Z" + "timestamp": "2025-11-27T04:03:11.619799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286866, - "rtt_ms": 1.286866, + "rtt_ns": 1402292, + "rtt_ms": 1.402292, "checkpoint": 0, "vertex_from": "6", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.851444566Z" + "timestamp": "2025-11-27T04:03:11.620276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440645, - "rtt_ms": 1.440645, + "rtt_ns": 1409125, + "rtt_ms": 1.409125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.851635315Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.620992-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1412455, - "rtt_ms": 1.412455, + "rtt_ns": 1683084, + "rtt_ms": 1.683084, "checkpoint": 0, "vertex_from": "996", - "timestamp": "2025-11-27T01:23:29.851640595Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1303316, - "rtt_ms": 1.303316, - "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.851723505Z" + "timestamp": "2025-11-27T04:03:11.620998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469446, - "rtt_ms": 1.469446, + "rtt_ns": 1749958, + "rtt_ms": 1.749958, "checkpoint": 0, "vertex_from": "6", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:29.851762895Z" + "timestamp": "2025-11-27T04:03:11.621117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840514, - "rtt_ms": 1.840514, + "rtt_ns": 2118625, + "rtt_ms": 2.118625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.852665592Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.621125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853764, - "rtt_ms": 1.853764, + "rtt_ns": 1466167, + "rtt_ms": 1.466167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:29.852680762Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:11.621188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885074, - "rtt_ms": 1.885074, + "rtt_ns": 1807041, + "rtt_ms": 1.807041, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.852687732Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:11.621528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415126, - "rtt_ms": 1.415126, + "rtt_ns": 2052250, + "rtt_ms": 2.05225, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:29.853051461Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:11.621721-08:00" }, { "operation": "add_edge", - "rtt_ns": 2345763, - "rtt_ms": 2.345763, + "rtt_ns": 1486084, + "rtt_ms": 1.486084, "checkpoint": 0, "vertex_from": "6", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.853792669Z" + "timestamp": "2025-11-27T04:03:11.621763-08:00" }, { "operation": "add_edge", - "rtt_ns": 3500610, - "rtt_ms": 3.50061, + "rtt_ns": 2311208, + "rtt_ms": 2.311208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:29.854410578Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.621777-08:00" }, { "operation": "add_edge", - "rtt_ns": 2725022, - "rtt_ms": 2.725022, + "rtt_ns": 2204542, + "rtt_ms": 2.204542, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.854489077Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:03:11.622004-08:00" }, { "operation": "add_edge", - "rtt_ns": 3557470, - "rtt_ms": 3.55747, + "rtt_ns": 2018000, + "rtt_ms": 2.018, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "342", - "timestamp": "2025-11-27T01:23:29.854510707Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:11.623011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2914082, - "rtt_ms": 2.914082, + "rtt_ns": 1544167, + "rtt_ms": 1.544167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "996", - "timestamp": "2025-11-27T01:23:29.854555207Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.623073-08:00" }, { "operation": "add_edge", - "rtt_ns": 2879282, - "rtt_ms": 2.879282, + "rtt_ns": 1988750, + "rtt_ms": 1.98875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:29.854603967Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.623115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993945, - "rtt_ms": 1.993945, + "rtt_ns": 1940375, + "rtt_ms": 1.940375, "checkpoint": 0, "vertex_from": "6", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:29.854660587Z" + "timestamp": "2025-11-27T04:03:11.623131-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023145, - "rtt_ms": 2.023145, + "rtt_ns": 2264625, + "rtt_ms": 2.264625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:29.854712467Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:03:11.623263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049315, - "rtt_ms": 2.049315, + "rtt_ns": 2306667, + "rtt_ms": 2.306667, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.854731547Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:11.623426-08:00" }, { "operation": "add_edge", - "rtt_ns": 998008, - "rtt_ms": 0.998008, + "rtt_ns": 1713125, + "rtt_ms": 1.713125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.854791877Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:11.623435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742175, - "rtt_ms": 1.742175, + "rtt_ns": 1773166, + "rtt_ms": 1.773166, "checkpoint": 0, "vertex_from": "6", "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.854794286Z" + "timestamp": "2025-11-27T04:03:11.623537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003368, - "rtt_ms": 1.003368, + "rtt_ns": 1774666, + "rtt_ms": 1.774666, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.855493225Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:11.623554-08:00" }, { "operation": "add_edge", - "rtt_ns": 934137, - "rtt_ms": 0.934137, + "rtt_ns": 1817459, + "rtt_ms": 1.817459, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "7", - "timestamp": "2025-11-27T01:23:29.855595484Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:11.623823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016207, - "rtt_ms": 1.016207, + "rtt_ns": 1814375, + "rtt_ms": 1.814375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.855621354Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:03:11.624889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112497, - "rtt_ms": 1.112497, + "rtt_ns": 1876375, + "rtt_ms": 1.876375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "713", - "timestamp": "2025-11-27T01:23:29.855624614Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.625008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236516, - "rtt_ms": 1.236516, + "rtt_ns": 1523875, + "rtt_ms": 1.523875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:29.855649544Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.625062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102717, - "rtt_ms": 1.102717, + "rtt_ns": 1875834, + "rtt_ms": 1.875834, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:29.855659334Z" + "vertex_to": "7", + "timestamp": "2025-11-27T04:03:11.62514-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1269076, - "rtt_ms": 1.269076, + "rtt_ns": 1721833, + "rtt_ms": 1.721833, "checkpoint": 0, "vertex_from": "474", - "timestamp": "2025-11-27T01:23:29.856003203Z" + "timestamp": "2025-11-27T04:03:11.62516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770164, - "rtt_ms": 1.770164, + "rtt_ns": 2160708, + "rtt_ms": 2.160708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.856563161Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:11.625175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770505, - "rtt_ms": 1.770505, + "rtt_ns": 2071291, + "rtt_ms": 2.071291, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:29.856566021Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:11.625192-08:00" }, { "operation": "add_edge", - "rtt_ns": 983737, - "rtt_ms": 0.983737, + "rtt_ns": 1752791, + "rtt_ms": 1.752791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.856579821Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:11.625308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916574, - "rtt_ms": 1.916574, + "rtt_ns": 1995709, + "rtt_ms": 1.995709, "checkpoint": 0, "vertex_from": "6", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.856630011Z" + "timestamp": "2025-11-27T04:03:11.625424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013477, - "rtt_ms": 1.013477, + "rtt_ns": 1705708, + "rtt_ms": 1.705708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.856635311Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:11.625529-08:00" }, { "operation": "add_edge", - "rtt_ns": 989107, - "rtt_ms": 0.989107, + "rtt_ns": 2041375, + "rtt_ms": 2.041375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.856639821Z" + "vertex_to": "474", + "timestamp": "2025-11-27T04:03:11.627202-08:00" }, { "operation": "add_edge", - "rtt_ns": 986797, - "rtt_ms": 0.986797, + "rtt_ns": 1927667, + "rtt_ms": 1.927667, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:29.856646861Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.627236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206306, - "rtt_ms": 1.206306, + "rtt_ns": 2083833, + "rtt_ms": 2.083833, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.856700191Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:11.627259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771305, - "rtt_ms": 1.771305, + "rtt_ns": 1797458, + "rtt_ms": 1.797458, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.857397659Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:11.627328-08:00" }, { "operation": "add_edge", - "rtt_ns": 2702412, - "rtt_ms": 2.702412, + "rtt_ns": 2143000, + "rtt_ms": 2.143, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "474", - "timestamp": "2025-11-27T01:23:29.858706185Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:11.627336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214554, - "rtt_ms": 2.214554, + "rtt_ns": 2282958, + "rtt_ms": 2.282958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.858781445Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:11.627347-08:00" }, { "operation": "add_edge", - "rtt_ns": 2223264, - "rtt_ms": 2.223264, + "rtt_ns": 2414292, + "rtt_ms": 2.414292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.858787705Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.627423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113174, - "rtt_ms": 2.113174, + "rtt_ns": 2000583, + "rtt_ms": 2.000583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:29.858814445Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:11.627425-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250213, - "rtt_ms": 2.250213, + "rtt_ns": 2294791, + "rtt_ms": 2.294791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:29.858886934Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:11.627436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268993, - "rtt_ms": 2.268993, + "rtt_ns": 2549125, + "rtt_ms": 2.549125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:29.858899714Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:11.627439-08:00" }, { "operation": "add_edge", - "rtt_ns": 2327223, - "rtt_ms": 2.327223, + "rtt_ns": 1234667, + "rtt_ms": 1.234667, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.858974854Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:11.628593-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334723, - "rtt_ms": 2.334723, + "rtt_ns": 1287875, + "rtt_ms": 1.287875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:29.858976484Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:11.628616-08:00" }, { "operation": "add_edge", - "rtt_ns": 2423343, - "rtt_ms": 2.423343, + "rtt_ns": 1529458, + "rtt_ms": 1.529458, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.859005094Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:11.628732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714945, - "rtt_ms": 1.714945, + "rtt_ns": 1487542, + "rtt_ms": 1.487542, "checkpoint": 0, "vertex_from": "6", "vertex_to": "19", - "timestamp": "2025-11-27T01:23:29.859113414Z" + "timestamp": "2025-11-27T04:03:11.628842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280756, - "rtt_ms": 1.280756, + "rtt_ns": 1621791, + "rtt_ms": 1.621791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:29.859988011Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:11.628859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328356, - "rtt_ms": 1.328356, + "rtt_ns": 1623208, + "rtt_ms": 1.623208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:29.860117841Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:11.628883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416565, - "rtt_ms": 1.416565, + "rtt_ns": 1460750, + "rtt_ms": 1.46075, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.86023243Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.628884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348106, - "rtt_ms": 1.348106, + "rtt_ns": 1454417, + "rtt_ms": 1.454417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:29.86024903Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.628891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362476, - "rtt_ms": 1.362476, + "rtt_ns": 1503292, + "rtt_ms": 1.503292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:29.86025076Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:11.628929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482765, - "rtt_ms": 1.482765, + "rtt_ns": 1507292, + "rtt_ms": 1.507292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.86026603Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:11.628947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809385, - "rtt_ms": 1.809385, + "rtt_ns": 1507375, + "rtt_ms": 1.507375, "checkpoint": 0, "vertex_from": "6", "vertex_to": "833", - "timestamp": "2025-11-27T01:23:29.860785439Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1779775, - "rtt_ms": 1.779775, - "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.860785979Z" + "timestamp": "2025-11-27T04:03:11.630125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691145, - "rtt_ms": 1.691145, + "rtt_ns": 1252667, + "rtt_ms": 1.252667, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "23", - "timestamp": "2025-11-27T01:23:29.860805229Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:11.630162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858295, - "rtt_ms": 1.858295, + "rtt_ns": 1621417, + "rtt_ms": 1.621417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:29.860835519Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:11.630505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755225, - "rtt_ms": 1.755225, + "rtt_ns": 1970042, + "rtt_ms": 1.970042, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:29.861744656Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:11.630564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924714, - "rtt_ms": 1.924714, + "rtt_ns": 1734542, + "rtt_ms": 1.734542, "checkpoint": 0, "vertex_from": "6", "vertex_to": "277", - "timestamp": "2025-11-27T01:23:29.862452874Z" + "timestamp": "2025-11-27T04:03:11.630664-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057443, - "rtt_ms": 2.057443, + "rtt_ns": 1814333, + "rtt_ms": 1.814333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:29.862561303Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:03:11.630733-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022834, - "rtt_ms": 2.022834, + "rtt_ns": 2087834, + "rtt_ms": 2.087834, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:29.862566943Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:11.630821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823794, - "rtt_ms": 1.823794, + "rtt_ns": 1959459, + "rtt_ms": 1.959459, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:29.862611133Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:03:11.630823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103653, - "rtt_ms": 2.103653, + "rtt_ns": 1897375, + "rtt_ms": 1.897375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:29.862620983Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:11.630845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867524, - "rtt_ms": 1.867524, + "rtt_ns": 2033541, + "rtt_ms": 2.033541, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.862655603Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:11.630878-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152343, - "rtt_ms": 2.152343, + "rtt_ns": 1178000, + "rtt_ms": 1.178, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:29.862685483Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:11.631342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884904, - "rtt_ms": 1.884904, + "rtt_ns": 1379000, + "rtt_ms": 1.379, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "51", - "timestamp": "2025-11-27T01:23:29.862691453Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:11.631506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939104, - "rtt_ms": 1.939104, + "rtt_ns": 1652958, + "rtt_ms": 1.652958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.862776283Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:11.632475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754025, - "rtt_ms": 1.754025, + "rtt_ns": 2323917, + "rtt_ms": 2.323917, "checkpoint": 0, "vertex_from": "6", "vertex_to": "240", - "timestamp": "2025-11-27T01:23:29.863500781Z" + "timestamp": "2025-11-27T04:03:11.633059-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122204, - "rtt_ms": 2.122204, + "rtt_ns": 2619416, + "rtt_ms": 2.619416, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:29.864690797Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:11.633126-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222524, - "rtt_ms": 2.222524, + "rtt_ns": 1792209, + "rtt_ms": 1.792209, "checkpoint": 0, "vertex_from": "6", "vertex_to": "161", - "timestamp": "2025-11-27T01:23:29.864844377Z" + "timestamp": "2025-11-27T04:03:11.633135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2969461, - "rtt_ms": 2.969461, + "rtt_ns": 2658417, + "rtt_ms": 2.658417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:29.865423575Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:03:11.633224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2681262, - "rtt_ms": 2.681262, + "rtt_ns": 2468542, + "rtt_ms": 2.468542, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.865458815Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:11.633292-08:00" }, { "operation": "add_edge", - "rtt_ns": 2849192, - "rtt_ms": 2.849192, + "rtt_ns": 2475583, + "rtt_ms": 2.475583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.865535735Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:11.633321-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152663, - "rtt_ms": 2.152663, + "rtt_ns": 2657625, + "rtt_ms": 2.657625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.865658574Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:11.633323-08:00" }, { "operation": "add_edge", - "rtt_ns": 3167981, - "rtt_ms": 3.167981, + "rtt_ns": 1962375, + "rtt_ms": 1.962375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.865730434Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:11.633471-08:00" }, { "operation": "add_edge", - "rtt_ns": 3123121, - "rtt_ms": 3.123121, + "rtt_ns": 2627292, + "rtt_ms": 2.627292, "checkpoint": 0, "vertex_from": "6", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.865736724Z" + "timestamp": "2025-11-27T04:03:11.633512-08:00" }, { "operation": "add_edge", - "rtt_ns": 3140101, - "rtt_ms": 3.140101, + "rtt_ns": 1096292, + "rtt_ms": 1.096292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:29.865796944Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.633573-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3196661, - "rtt_ms": 3.196661, + "operation": "add_vertex", + "rtt_ns": 1093167, + "rtt_ms": 1.093167, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:29.865889504Z" + "vertex_from": "422", + "timestamp": "2025-11-27T04:03:11.634417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564745, - "rtt_ms": 1.564745, + "rtt_ns": 1523375, + "rtt_ms": 1.523375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:29.866257202Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:11.634816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595095, - "rtt_ms": 1.595095, + "rtt_ns": 1701833, + "rtt_ms": 1.701833, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.866440302Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.634828-08:00" }, { "operation": "add_edge", - "rtt_ns": 903507, - "rtt_ms": 0.903507, + "rtt_ns": 1684459, + "rtt_ms": 1.684459, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:29.866440482Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:11.634909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131117, - "rtt_ms": 1.131117, + "rtt_ns": 1553500, + "rtt_ms": 1.5535, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:29.866556672Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:11.635127-08:00" }, { "operation": "add_edge", - "rtt_ns": 907567, - "rtt_ms": 0.907567, + "rtt_ns": 1674833, + "rtt_ms": 1.674833, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:29.866639501Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:11.635146-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1179486, - "rtt_ms": 1.179486, + "operation": "add_edge", + "rtt_ns": 2112208, + "rtt_ms": 2.112208, "checkpoint": 0, - "vertex_from": "422", - "timestamp": "2025-11-27T01:23:29.866640071Z" + "vertex_from": "6", + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:11.635173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275186, - "rtt_ms": 1.275186, + "rtt_ns": 1700083, + "rtt_ms": 1.700083, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.86716621Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:11.635213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423786, - "rtt_ms": 1.423786, + "rtt_ns": 2027250, + "rtt_ms": 2.02725, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.86722541Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:11.635349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487326, - "rtt_ms": 1.487326, + "rtt_ns": 2229958, + "rtt_ms": 2.229958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:29.86722547Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:11.635367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572366, - "rtt_ms": 1.572366, + "rtt_ns": 983292, + "rtt_ms": 0.983292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:29.86723228Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:03:11.635401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047024, - "rtt_ms": 2.047024, + "rtt_ns": 794042, + "rtt_ms": 0.794042, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:29.868604846Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:11.635611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997284, - "rtt_ms": 1.997284, + "rtt_ns": 1165583, + "rtt_ms": 1.165583, "checkpoint": 0, "vertex_from": "6", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:29.868638285Z" + "timestamp": "2025-11-27T04:03:11.636515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079164, - "rtt_ms": 2.079164, + "rtt_ns": 1395250, + "rtt_ms": 1.39525, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:29.869312694Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:11.63657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2556222, - "rtt_ms": 2.556222, + "rtt_ns": 1469167, + "rtt_ms": 1.469167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:29.869782922Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:11.636683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288227, - "rtt_ms": 1.288227, + "rtt_ns": 1552459, + "rtt_ms": 1.552459, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:29.869927372Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.636699-08:00" }, { "operation": "add_edge", - "rtt_ns": 2818332, - "rtt_ms": 2.818332, + "rtt_ns": 2112959, + "rtt_ms": 2.112959, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.869985212Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:11.636942-08:00" }, { "operation": "add_edge", - "rtt_ns": 3393041, - "rtt_ms": 3.393041, + "rtt_ns": 1586708, + "rtt_ms": 1.586708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "422", - "timestamp": "2025-11-27T01:23:29.870033462Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:11.636954-08:00" }, { "operation": "add_edge", - "rtt_ns": 3803270, - "rtt_ms": 3.80327, + "rtt_ns": 1844375, + "rtt_ms": 1.844375, "checkpoint": 0, "vertex_from": "6", "vertex_to": "147", - "timestamp": "2025-11-27T01:23:29.870061882Z" + "timestamp": "2025-11-27T04:03:11.636973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459855, - "rtt_ms": 1.459855, + "rtt_ns": 2112500, + "rtt_ms": 2.1125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:29.870066431Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:11.637024-08:00" }, { "operation": "add_edge", - "rtt_ns": 2895941, - "rtt_ms": 2.895941, + "rtt_ns": 1701625, + "rtt_ms": 1.701625, "checkpoint": 0, "vertex_from": "6", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:29.870122471Z" + "timestamp": "2025-11-27T04:03:11.637103-08:00" }, { "operation": "add_edge", - "rtt_ns": 3694779, - "rtt_ms": 3.694779, + "rtt_ns": 1564500, + "rtt_ms": 1.5645, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.870136141Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:11.637176-08:00" }, { "operation": "add_edge", - "rtt_ns": 3699949, - "rtt_ms": 3.699949, + "rtt_ns": 1000209, + "rtt_ms": 1.000209, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:29.870141611Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:11.637517-08:00" }, { "operation": "add_edge", - "rtt_ns": 881488, - "rtt_ms": 0.881488, + "rtt_ns": 2109875, + "rtt_ms": 2.109875, "checkpoint": 0, "vertex_from": "6", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.8706659Z" + "timestamp": "2025-11-27T04:03:11.639053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402546, - "rtt_ms": 1.402546, + "rtt_ns": 1962708, + "rtt_ms": 1.962708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:29.8707161Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:11.639066-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1034827, - "rtt_ms": 1.034827, + "rtt_ns": 2102208, + "rtt_ms": 2.102208, "checkpoint": 0, "vertex_from": "155", - "timestamp": "2025-11-27T01:23:29.871021309Z" + "timestamp": "2025-11-27T04:03:11.639076-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1140166, - "rtt_ms": 1.140166, + "operation": "add_edge", + "rtt_ns": 2421333, + "rtt_ms": 2.421333, "checkpoint": 0, - "vertex_from": "760", - "timestamp": "2025-11-27T01:23:29.871175828Z" + "vertex_from": "6", + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:11.639122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288906, - "rtt_ms": 1.288906, + "rtt_ns": 2587708, + "rtt_ms": 2.587708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.871217088Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:11.639159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185666, - "rtt_ms": 1.185666, + "rtt_ns": 2223167, + "rtt_ms": 2.223167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:29.871248858Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:11.639178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234787, - "rtt_ms": 1.234787, + "rtt_ns": 2081125, + "rtt_ms": 2.081125, "checkpoint": 0, "vertex_from": "6", "vertex_to": "305", - "timestamp": "2025-11-27T01:23:29.871302988Z" + "timestamp": "2025-11-27T04:03:11.63926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188267, - "rtt_ms": 1.188267, + "rtt_ns": 2655209, + "rtt_ms": 2.655209, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:29.871331148Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:11.639341-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2316875, + "rtt_ms": 2.316875, + "checkpoint": 0, + "vertex_from": "760", + "timestamp": "2025-11-27T04:03:11.639343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238957, - "rtt_ms": 1.238957, + "rtt_ns": 2731958, + "rtt_ms": 2.731958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:29.871375868Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:03:11.64025-08:00" }, { "operation": "add_edge", - "rtt_ns": 786448, - "rtt_ms": 0.786448, + "rtt_ns": 1583791, + "rtt_ms": 1.583791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.871453328Z" + "vertex_to": "155", + "timestamp": "2025-11-27T04:03:11.64066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792865, - "rtt_ms": 1.792865, + "rtt_ns": 1518000, + "rtt_ms": 1.518, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "101", - "timestamp": "2025-11-27T01:23:29.871916436Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.640677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286516, - "rtt_ms": 1.286516, + "rtt_ns": 1689792, + "rtt_ms": 1.689792, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.872003676Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:11.640758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1999495, - "rtt_ms": 1.999495, + "rtt_ns": 1427458, + "rtt_ms": 1.427458, "checkpoint": 0, "vertex_from": "6", "vertex_to": "760", - "timestamp": "2025-11-27T01:23:29.873175593Z" + "timestamp": "2025-11-27T04:03:11.640771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907304, - "rtt_ms": 1.907304, + "rtt_ns": 1683292, + "rtt_ms": 1.683292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:29.873210882Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:11.640806-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195083, - "rtt_ms": 2.195083, + "rtt_ns": 1567042, + "rtt_ms": 1.567042, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "155", - "timestamp": "2025-11-27T01:23:29.873216612Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:11.640828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014924, - "rtt_ms": 2.014924, + "rtt_ns": 1508833, + "rtt_ms": 1.508833, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.873232852Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:11.640851-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051134, - "rtt_ms": 2.051134, + "rtt_ns": 1744959, + "rtt_ms": 1.744959, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:29.873383122Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:11.640924-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020194, - "rtt_ms": 2.020194, + "rtt_ns": 2196333, + "rtt_ms": 2.196333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.873396942Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:11.64125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159214, - "rtt_ms": 2.159214, + "rtt_ns": 863542, + "rtt_ms": 0.863542, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:29.873409432Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:11.641635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511156, - "rtt_ms": 1.511156, + "rtt_ns": 1925417, + "rtt_ms": 1.925417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:29.873429012Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:11.642176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977794, - "rtt_ms": 1.977794, + "rtt_ns": 1595333, + "rtt_ms": 1.595333, "checkpoint": 0, "vertex_from": "6", "vertex_to": "60", - "timestamp": "2025-11-27T01:23:29.873431892Z" + "timestamp": "2025-11-27T04:03:11.642274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470576, - "rtt_ms": 1.470576, + "rtt_ns": 1768000, + "rtt_ms": 1.768, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:29.873475412Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.642429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139226, - "rtt_ms": 1.139226, + "rtt_ns": 1436209, + "rtt_ms": 1.436209, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.874316059Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:11.642688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142217, - "rtt_ms": 1.142217, + "rtt_ns": 1888083, + "rtt_ms": 1.888083, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:29.874353919Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:11.642695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222027, - "rtt_ms": 1.222027, + "rtt_ns": 2124333, + "rtt_ms": 2.124333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.874439399Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:11.642953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717425, - "rtt_ms": 1.717425, + "rtt_ns": 1379875, + "rtt_ms": 1.379875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:29.874950947Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:11.643016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675785, - "rtt_ms": 1.675785, + "rtt_ns": 2275625, + "rtt_ms": 2.275625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:29.875106157Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:03:11.643036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645285, - "rtt_ms": 1.645285, + "rtt_ns": 2358250, + "rtt_ms": 2.35825, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:29.875121427Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:11.64321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741605, - "rtt_ms": 1.741605, + "rtt_ns": 2648083, + "rtt_ms": 2.648083, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.875126297Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:11.643572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718775, - "rtt_ms": 1.718775, + "rtt_ns": 1423291, + "rtt_ms": 1.423291, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "11", - "timestamp": "2025-11-27T01:23:29.875129397Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.643853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741465, - "rtt_ms": 1.741465, + "rtt_ns": 1912542, + "rtt_ms": 1.912542, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.875139297Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:11.644187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710475, - "rtt_ms": 1.710475, + "rtt_ns": 2051042, + "rtt_ms": 2.051042, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.875143557Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:03:11.644228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642745, - "rtt_ms": 1.642745, + "rtt_ns": 1730875, + "rtt_ms": 1.730875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.875997464Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:03:11.644943-08:00" }, { "operation": "add_edge", - "rtt_ns": 891377, - "rtt_ms": 0.891377, + "rtt_ns": 1467209, + "rtt_ms": 1.467209, "checkpoint": 0, "vertex_from": "6", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:29.876013614Z" + "timestamp": "2025-11-27T04:03:11.645041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730285, - "rtt_ms": 1.730285, + "rtt_ns": 2160792, + "rtt_ms": 2.160792, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "309", - "timestamp": "2025-11-27T01:23:29.876047424Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:11.645178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609575, - "rtt_ms": 1.609575, + "rtt_ns": 2212209, + "rtt_ms": 2.212209, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:29.876050244Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:11.64525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119017, - "rtt_ms": 1.119017, + "rtt_ns": 2328625, + "rtt_ms": 2.328625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:29.876071344Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:11.645284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676645, - "rtt_ms": 1.676645, + "rtt_ns": 2598708, + "rtt_ms": 2.598708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:29.876804082Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:11.645289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838864, - "rtt_ms": 1.838864, + "rtt_ns": 2690208, + "rtt_ms": 2.690208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:29.876946451Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:03:11.645387-08:00" }, { "operation": "add_edge", - "rtt_ns": 2749171, - "rtt_ms": 2.749171, + "rtt_ns": 1176166, + "rtt_ms": 1.176166, "checkpoint": 0, "vertex_from": "6", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:29.877889698Z" + "timestamp": "2025-11-27T04:03:11.645405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971574, - "rtt_ms": 1.971574, + "rtt_ns": 1559291, + "rtt_ms": 1.559291, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.877986298Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:11.645413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2862171, - "rtt_ms": 2.862171, + "rtt_ns": 1275333, + "rtt_ms": 1.275333, "checkpoint": 0, "vertex_from": "6", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:29.877993128Z" + "timestamp": "2025-11-27T04:03:11.645464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2848631, - "rtt_ms": 2.848631, + "rtt_ns": 1355000, + "rtt_ms": 1.355, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:29.877993658Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:11.646606-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014624, - "rtt_ms": 2.014624, + "rtt_ns": 1504708, + "rtt_ms": 1.504708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:29.878013618Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:11.646683-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163203, - "rtt_ms": 2.163203, + "rtt_ns": 1660875, + "rtt_ms": 1.660875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:29.878212057Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:11.646702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182903, - "rtt_ms": 2.182903, + "rtt_ns": 1564375, + "rtt_ms": 1.564375, "checkpoint": 0, "vertex_from": "6", "vertex_to": "617", - "timestamp": "2025-11-27T01:23:29.878234327Z" + "timestamp": "2025-11-27T04:03:11.646849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425616, - "rtt_ms": 1.425616, + "rtt_ns": 1567458, + "rtt_ms": 1.567458, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:29.878373737Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:11.646857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321033, - "rtt_ms": 2.321033, + "rtt_ns": 1917500, + "rtt_ms": 1.9175, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:29.878393367Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:11.646861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590635, - "rtt_ms": 1.590635, + "rtt_ns": 1489625, + "rtt_ms": 1.489625, "checkpoint": 0, "vertex_from": "6", "vertex_to": "428", - "timestamp": "2025-11-27T01:23:29.878400087Z" + "timestamp": "2025-11-27T04:03:11.646877-08:00" }, { "operation": "add_edge", - "rtt_ns": 746678, - "rtt_ms": 0.746678, + "rtt_ns": 1480375, + "rtt_ms": 1.480375, "checkpoint": 0, "vertex_from": "6", "vertex_to": "404", - "timestamp": "2025-11-27T01:23:29.878638316Z" + "timestamp": "2025-11-27T04:03:11.646895-08:00" }, { "operation": "add_edge", - "rtt_ns": 815248, - "rtt_ms": 0.815248, + "rtt_ns": 1503125, + "rtt_ms": 1.503125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:29.878811216Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:03:11.646909-08:00" }, { "operation": "add_edge", - "rtt_ns": 811138, - "rtt_ms": 0.811138, + "rtt_ns": 1519208, + "rtt_ms": 1.519208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:29.878826376Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:11.646983-08:00" }, { "operation": "add_edge", - "rtt_ns": 878098, - "rtt_ms": 0.878098, + "rtt_ns": 1533000, + "rtt_ms": 1.533, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.878866166Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:11.648391-08:00" }, { "operation": "add_edge", - "rtt_ns": 726188, - "rtt_ms": 0.726188, + "rtt_ns": 1711167, + "rtt_ms": 1.711167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:29.878962775Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:11.648395-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1535334, + "rtt_ms": 1.535334, + "checkpoint": 0, + "vertex_from": "358", + "timestamp": "2025-11-27T04:03:11.648418-08:00" }, { "operation": "add_edge", - "rtt_ns": 983617, - "rtt_ms": 0.983617, + "rtt_ns": 1896458, + "rtt_ms": 1.896458, "checkpoint": 0, "vertex_from": "6", "vertex_to": "725", - "timestamp": "2025-11-27T01:23:29.878979135Z" + "timestamp": "2025-11-27T04:03:11.648504-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 790698, - "rtt_ms": 0.790698, + "operation": "add_edge", + "rtt_ns": 1653833, + "rtt_ms": 1.653833, "checkpoint": 0, - "vertex_from": "984", - "timestamp": "2025-11-27T01:23:29.879007335Z" + "vertex_from": "6", + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:11.648516-08:00" }, { "operation": "add_vertex", - "rtt_ns": 741608, - "rtt_ms": 0.741608, + "rtt_ns": 1695042, + "rtt_ms": 1.695042, "checkpoint": 0, - "vertex_from": "358", - "timestamp": "2025-11-27T01:23:29.879136235Z" + "vertex_from": "984", + "timestamp": "2025-11-27T04:03:11.648545-08:00" }, { "operation": "add_edge", - "rtt_ns": 912857, - "rtt_ms": 0.912857, + "rtt_ns": 1726958, + "rtt_ms": 1.726958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:29.879288794Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:11.648637-08:00" }, { "operation": "add_edge", - "rtt_ns": 917757, - "rtt_ms": 0.917757, + "rtt_ns": 1941584, + "rtt_ms": 1.941584, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:29.879319224Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:11.648645-08:00" }, { "operation": "add_edge", - "rtt_ns": 703198, - "rtt_ms": 0.703198, + "rtt_ns": 1771708, + "rtt_ms": 1.771708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:29.879342824Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:03:11.648669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516705, - "rtt_ms": 1.516705, + "rtt_ns": 1686292, + "rtt_ms": 1.686292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "313", - "timestamp": "2025-11-27T01:23:29.880344721Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:11.64867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708855, - "rtt_ms": 1.708855, + "rtt_ns": 1520667, + "rtt_ms": 1.520667, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.880520911Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:03:11.649939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250833, - "rtt_ms": 2.250833, + "rtt_ns": 1692083, + "rtt_ms": 1.692083, "checkpoint": 0, "vertex_from": "6", "vertex_to": "74", - "timestamp": "2025-11-27T01:23:29.881118849Z" + "timestamp": "2025-11-27T04:03:11.650088-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182454, - "rtt_ms": 2.182454, + "rtt_ns": 1865125, + "rtt_ms": 1.865125, "checkpoint": 0, "vertex_from": "6", "vertex_to": "984", - "timestamp": "2025-11-27T01:23:29.881189989Z" + "timestamp": "2025-11-27T04:03:11.650411-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231804, - "rtt_ms": 2.231804, + "rtt_ns": 1911709, + "rtt_ms": 1.911709, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:29.881195559Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:11.650557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984514, - "rtt_ms": 1.984514, + "rtt_ns": 2166959, + "rtt_ms": 2.166959, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:29.881275228Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:03:11.650559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2307263, - "rtt_ms": 2.307263, + "rtt_ns": 2149959, + "rtt_ms": 2.149959, "checkpoint": 0, "vertex_from": "6", "vertex_to": "852", - "timestamp": "2025-11-27T01:23:29.881287268Z" + "timestamp": "2025-11-27T04:03:11.650667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2216343, - "rtt_ms": 2.216343, + "rtt_ns": 2183208, + "rtt_ms": 2.183208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "358", - "timestamp": "2025-11-27T01:23:29.881352808Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.650853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449483, - "rtt_ms": 2.449483, + "rtt_ns": 2361958, + "rtt_ms": 2.361958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.881793127Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:11.650867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603245, - "rtt_ms": 1.603245, + "rtt_ns": 986583, + "rtt_ms": 0.986583, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:29.881948776Z" + "vertex_from": "7", + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:11.651399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450515, - "rtt_ms": 1.450515, + "rtt_ns": 2764541, + "rtt_ms": 2.764541, "checkpoint": 0, - "vertex_from": "7", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:29.881972116Z" + "vertex_from": "6", + "vertex_to": "818", + "timestamp": "2025-11-27T04:03:11.651435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2766672, - "rtt_ms": 2.766672, + "rtt_ns": 2799875, + "rtt_ms": 2.799875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:29.882087046Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:11.651437-08:00" }, { "operation": "add_edge", - "rtt_ns": 967387, - "rtt_ms": 0.967387, + "rtt_ns": 1853000, + "rtt_ms": 1.853, "checkpoint": 0, "vertex_from": "7", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:29.882087276Z" + "timestamp": "2025-11-27T04:03:11.651945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484136, - "rtt_ms": 1.484136, + "rtt_ns": 1338791, + "rtt_ms": 1.338791, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.882838024Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.652007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578696, - "rtt_ms": 1.578696, + "rtt_ns": 1449167, + "rtt_ms": 1.449167, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.882855954Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.652316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575096, - "rtt_ms": 1.575096, + "rtt_ns": 1800000, + "rtt_ms": 1.8, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.882863714Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.65236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674495, - "rtt_ms": 1.674495, + "rtt_ns": 1840333, + "rtt_ms": 1.840333, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:29.882865374Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:11.652399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684855, - "rtt_ms": 1.684855, + "rtt_ns": 1563875, + "rtt_ms": 1.563875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:29.882881294Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.652417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260696, - "rtt_ms": 1.260696, + "rtt_ns": 2603292, + "rtt_ms": 2.603292, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.883054793Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:11.652543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371286, - "rtt_ms": 1.371286, + "rtt_ns": 1677250, + "rtt_ms": 1.67725, "checkpoint": 0, "vertex_from": "7", "vertex_to": "568", - "timestamp": "2025-11-27T01:23:29.883320992Z" + "timestamp": "2025-11-27T04:03:11.653079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362126, - "rtt_ms": 1.362126, + "rtt_ns": 1346667, + "rtt_ms": 1.346667, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.883335042Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.653293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306316, - "rtt_ms": 1.306316, + "rtt_ns": 1958959, + "rtt_ms": 1.958959, "checkpoint": 0, "vertex_from": "7", "vertex_to": "424", - "timestamp": "2025-11-27T01:23:29.883394342Z" + "timestamp": "2025-11-27T04:03:11.653397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312036, - "rtt_ms": 1.312036, + "rtt_ns": 1568250, + "rtt_ms": 1.56825, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.883400132Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.653576-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132693, - "rtt_ms": 2.132693, + "rtt_ns": 1467125, + "rtt_ms": 1.467125, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.884999037Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:11.653784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207813, - "rtt_ms": 2.207813, + "rtt_ns": 1410833, + "rtt_ms": 1.410833, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.885090227Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.653811-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281283, - "rtt_ms": 2.281283, + "rtt_ns": 1572584, + "rtt_ms": 1.572584, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.885120237Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:11.653935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2322953, - "rtt_ms": 2.322953, + "rtt_ns": 1462959, + "rtt_ms": 1.462959, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.885179647Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:11.654007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359823, - "rtt_ms": 2.359823, + "rtt_ns": 1602458, + "rtt_ms": 1.602458, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.885224387Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.654021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924915, - "rtt_ms": 1.924915, + "rtt_ns": 2772666, + "rtt_ms": 2.772666, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "174", - "timestamp": "2025-11-27T01:23:29.885320387Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:11.654209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989864, - "rtt_ms": 1.989864, + "rtt_ns": 1538375, + "rtt_ms": 1.538375, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.885391066Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:11.654832-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395443, - "rtt_ms": 2.395443, + "rtt_ns": 1546500, + "rtt_ms": 1.5465, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:29.885452386Z" + "vertex_to": "174", + "timestamp": "2025-11-27T04:03:11.654947-08:00" }, { "operation": "add_edge", - "rtt_ns": 2167834, - "rtt_ms": 2.167834, + "rtt_ns": 1050709, + "rtt_ms": 1.050709, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.885503756Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:11.655059-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214964, - "rtt_ms": 2.214964, + "rtt_ns": 2097042, + "rtt_ms": 2.097042, "checkpoint": 0, "vertex_from": "7", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.885536996Z" + "timestamp": "2025-11-27T04:03:11.655182-08:00" }, { "operation": "add_edge", - "rtt_ns": 932518, - "rtt_ms": 0.932518, + "rtt_ns": 1263042, + "rtt_ms": 1.263042, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.885932505Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:11.6552-08:00" }, { "operation": "add_edge", - "rtt_ns": 850828, - "rtt_ms": 0.850828, + "rtt_ns": 1401250, + "rtt_ms": 1.40125, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:29.885975635Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:11.655213-08:00" }, { "operation": "add_edge", - "rtt_ns": 890098, - "rtt_ms": 0.890098, + "rtt_ns": 1439167, + "rtt_ms": 1.439167, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:29.885981195Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.655226-08:00" }, { "operation": "add_edge", - "rtt_ns": 956317, - "rtt_ms": 0.956317, + "rtt_ns": 1986917, + "rtt_ms": 1.986917, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.886136954Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:11.655564-08:00" }, { "operation": "add_edge", - "rtt_ns": 940047, - "rtt_ms": 0.940047, + "rtt_ns": 1999667, + "rtt_ms": 1.999667, "checkpoint": 0, "vertex_from": "7", "vertex_to": "8", - "timestamp": "2025-11-27T01:23:29.886165374Z" + "timestamp": "2025-11-27T04:03:11.656023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293047, - "rtt_ms": 1.293047, + "rtt_ns": 1366458, + "rtt_ms": 1.366458, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:29.886684813Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:11.656567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197867, - "rtt_ms": 1.197867, + "rtt_ns": 1411334, + "rtt_ms": 1.411334, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.886703003Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:03:11.656627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396366, - "rtt_ms": 1.396366, + "rtt_ns": 2987458, + "rtt_ms": 2.987458, "checkpoint": 0, "vertex_from": "7", "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.886718003Z" + "timestamp": "2025-11-27T04:03:11.657198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185127, - "rtt_ms": 1.185127, + "rtt_ns": 1633833, + "rtt_ms": 1.633833, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:29.886723243Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:03:11.657212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310777, - "rtt_ms": 1.310777, + "rtt_ns": 2310041, + "rtt_ms": 2.310041, "checkpoint": 0, "vertex_from": "7", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:29.886763983Z" + "timestamp": "2025-11-27T04:03:11.657257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438956, - "rtt_ms": 1.438956, + "rtt_ns": 2095041, + "rtt_ms": 2.095041, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.887421031Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:11.657278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330136, - "rtt_ms": 1.330136, + "rtt_ns": 2234500, + "rtt_ms": 2.2345, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:29.88749703Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:03:11.657294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564265, - "rtt_ms": 1.564265, + "rtt_ns": 2439250, + "rtt_ms": 2.43925, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:29.88749849Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.657666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546545, - "rtt_ms": 1.546545, + "rtt_ns": 3267208, + "rtt_ms": 3.267208, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "171", - "timestamp": "2025-11-27T01:23:29.88752353Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:11.658101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806624, - "rtt_ms": 1.806624, + "rtt_ns": 1886125, + "rtt_ms": 1.886125, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.888526007Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:11.658454-08:00" }, { "operation": "add_edge", - "rtt_ns": 3489490, - "rtt_ms": 3.48949, + "rtt_ns": 1297125, + "rtt_ms": 1.297125, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "433", - "timestamp": "2025-11-27T01:23:29.889627654Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.658496-08:00" }, { "operation": "add_edge", - "rtt_ns": 3057701, - "rtt_ms": 3.057701, + "rtt_ns": 2263000, + "rtt_ms": 2.263, "checkpoint": 0, "vertex_from": "7", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.889762164Z" + "timestamp": "2025-11-27T04:03:11.658892-08:00" }, { "operation": "add_edge", - "rtt_ns": 3163760, - "rtt_ms": 3.16376, + "rtt_ns": 2928333, + "rtt_ms": 2.928333, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:29.889849653Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:11.658953-08:00" }, { "operation": "add_edge", - "rtt_ns": 3153940, - "rtt_ms": 3.15394, + "rtt_ns": 1367417, + "rtt_ms": 1.367417, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:29.889918983Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.659034-08:00" }, { "operation": "add_edge", - "rtt_ns": 2463443, - "rtt_ms": 2.463443, + "rtt_ns": 1946542, + "rtt_ms": 1.946542, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:29.889961643Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:11.659225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2571632, - "rtt_ms": 2.571632, + "rtt_ns": 1984625, + "rtt_ms": 1.984625, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.889993693Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:11.659243-08:00" }, { "operation": "add_edge", - "rtt_ns": 3309280, - "rtt_ms": 3.30928, + "rtt_ns": 2034375, + "rtt_ms": 2.034375, "checkpoint": 0, "vertex_from": "7", "vertex_to": "164", - "timestamp": "2025-11-27T01:23:29.890034083Z" + "timestamp": "2025-11-27T04:03:11.659247-08:00" }, { "operation": "add_edge", - "rtt_ns": 2532523, - "rtt_ms": 2.532523, + "rtt_ns": 1964583, + "rtt_ms": 1.964583, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.890057993Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:03:11.65926-08:00" }, { "operation": "add_edge", - "rtt_ns": 2643123, - "rtt_ms": 2.643123, + "rtt_ns": 1270583, + "rtt_ms": 1.270583, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.890142713Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.659374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647275, - "rtt_ms": 1.647275, + "rtt_ns": 1066750, + "rtt_ms": 1.06675, "checkpoint": 0, "vertex_from": "7", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:29.890177522Z" + "timestamp": "2025-11-27T04:03:11.659522-08:00" }, { "operation": "add_edge", - "rtt_ns": 649558, - "rtt_ms": 0.649558, + "rtt_ns": 1187750, + "rtt_ms": 1.18775, "checkpoint": 0, "vertex_from": "7", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:29.890278902Z" - }, - { - "operation": "add_edge", - "rtt_ns": 718818, - "rtt_ms": 0.718818, - "checkpoint": 0, - "vertex_from": "7", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.890482842Z" + "timestamp": "2025-11-27T04:03:11.659685-08:00" }, { "operation": "add_edge", - "rtt_ns": 773868, - "rtt_ms": 0.773868, + "rtt_ns": 1459000, + "rtt_ms": 1.459, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "11", - "timestamp": "2025-11-27T01:23:29.890624581Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:11.660982-08:00" }, { "operation": "add_vertex", - "rtt_ns": 691238, - "rtt_ms": 0.691238, + "rtt_ns": 1744583, + "rtt_ms": 1.744583, "checkpoint": 0, "vertex_from": "882", - "timestamp": "2025-11-27T01:23:29.890751191Z" + "timestamp": "2025-11-27T04:03:11.661008-08:00" }, { "operation": "add_edge", - "rtt_ns": 853248, - "rtt_ms": 0.853248, + "rtt_ns": 1801750, + "rtt_ms": 1.80175, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.890773481Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.661028-08:00" }, { "operation": "add_edge", - "rtt_ns": 830908, - "rtt_ms": 0.830908, + "rtt_ns": 1778583, + "rtt_ms": 1.778583, "checkpoint": 0, "vertex_from": "7", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.890830351Z" + "timestamp": "2025-11-27T04:03:11.661045-08:00" }, { "operation": "add_edge", - "rtt_ns": 827607, - "rtt_ms": 0.827607, + "rtt_ns": 2156250, + "rtt_ms": 2.15625, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:29.89086286Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.66105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378795, - "rtt_ms": 1.378795, + "rtt_ns": 1725875, + "rtt_ms": 1.725875, "checkpoint": 0, "vertex_from": "7", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.891522678Z" + "timestamp": "2025-11-27T04:03:11.661101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623465, - "rtt_ms": 1.623465, + "rtt_ns": 2256625, + "rtt_ms": 2.256625, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.891586748Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:03:11.661211-08:00" }, { "operation": "add_edge", - "rtt_ns": 963947, - "rtt_ms": 0.963947, + "rtt_ns": 1585209, + "rtt_ms": 1.585209, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.891589628Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:11.661271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310506, - "rtt_ms": 1.310506, + "rtt_ns": 2240125, + "rtt_ms": 2.240125, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:29.891590508Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:11.661275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300276, - "rtt_ms": 1.300276, + "rtt_ns": 2263291, + "rtt_ms": 2.263291, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.891784448Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:11.661511-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1749025, - "rtt_ms": 1.749025, + "operation": "add_vertex", + "rtt_ns": 1448875, + "rtt_ms": 1.448875, "checkpoint": 0, - "vertex_from": "7", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:29.891928557Z" + "vertex_from": "334", + "timestamp": "2025-11-27T04:03:11.662551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766234, - "rtt_ms": 1.766234, + "rtt_ns": 1674917, + "rtt_ms": 1.674917, "checkpoint": 0, "vertex_from": "7", "vertex_to": "882", - "timestamp": "2025-11-27T01:23:29.892518045Z" + "timestamp": "2025-11-27T04:03:11.662683-08:00" }, { "operation": "add_edge", - "rtt_ns": 2170663, - "rtt_ms": 2.170663, + "rtt_ns": 2143667, + "rtt_ms": 2.143667, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.892945324Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2246574, - "rtt_ms": 2.246574, - "checkpoint": 0, - "vertex_from": "334", - "timestamp": "2025-11-27T01:23:29.893111844Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.663174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2886781, - "rtt_ms": 2.886781, + "rtt_ns": 2204500, + "rtt_ms": 2.2045, "checkpoint": 0, "vertex_from": "7", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.893718252Z" + "timestamp": "2025-11-27T04:03:11.663256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195204, - "rtt_ms": 2.195204, + "rtt_ns": 2329333, + "rtt_ms": 2.329333, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.893783922Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:11.663314-08:00" }, { "operation": "add_edge", - "rtt_ns": 2218184, - "rtt_ms": 2.218184, + "rtt_ns": 1818500, + "rtt_ms": 1.8185, "checkpoint": 0, "vertex_from": "7", "vertex_to": "866", - "timestamp": "2025-11-27T01:23:29.893809912Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2292804, - "rtt_ms": 2.292804, - "checkpoint": 0, - "vertex_from": "7", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:29.893820842Z" + "timestamp": "2025-11-27T04:03:11.663331-08:00" }, { "operation": "add_edge", - "rtt_ns": 2377993, - "rtt_ms": 2.377993, + "rtt_ns": 2346375, + "rtt_ms": 2.346375, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.893969341Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.663393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214863, - "rtt_ms": 2.214863, + "rtt_ns": 2208500, + "rtt_ms": 2.2085, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.894002371Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:11.663422-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128274, - "rtt_ms": 2.128274, + "rtt_ns": 2227667, + "rtt_ms": 2.227667, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.894058471Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.663505-08:00" }, { "operation": "add_edge", - "rtt_ns": 974117, - "rtt_ms": 0.974117, + "rtt_ns": 2282334, + "rtt_ms": 2.282334, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "334", - "timestamp": "2025-11-27T01:23:29.894086361Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:11.663554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186427, - "rtt_ms": 1.186427, + "rtt_ns": 1155583, + "rtt_ms": 1.155583, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "227", - "timestamp": "2025-11-27T01:23:29.894133011Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:11.664661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650096, - "rtt_ms": 1.650096, + "rtt_ns": 1342458, + "rtt_ms": 1.342458, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:29.894169901Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:11.664674-08:00" }, { "operation": "add_vertex", - "rtt_ns": 820847, - "rtt_ms": 0.820847, + "rtt_ns": 1345791, + "rtt_ms": 1.345791, "checkpoint": 0, "vertex_from": "364", - "timestamp": "2025-11-27T01:23:29.894606069Z" + "timestamp": "2025-11-27T04:03:11.664743-08:00" }, { "operation": "add_edge", - "rtt_ns": 848057, - "rtt_ms": 0.848057, + "rtt_ns": 2564500, + "rtt_ms": 2.5645, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:29.894671189Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.665248-08:00" }, { "operation": "add_edge", - "rtt_ns": 923827, - "rtt_ms": 0.923827, + "rtt_ns": 2095375, + "rtt_ms": 2.095375, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "14", - "timestamp": "2025-11-27T01:23:29.894739519Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:11.66527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028977, - "rtt_ms": 1.028977, + "rtt_ns": 1755875, + "rtt_ms": 1.755875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.894748529Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:11.665311-08:00" }, { "operation": "add_edge", - "rtt_ns": 761838, - "rtt_ms": 0.761838, + "rtt_ns": 2533000, + "rtt_ms": 2.533, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "13", - "timestamp": "2025-11-27T01:23:29.894767449Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:11.66579-08:00" }, { "operation": "add_edge", - "rtt_ns": 873738, - "rtt_ms": 0.873738, + "rtt_ns": 2521666, + "rtt_ms": 2.521666, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:29.894843879Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:03:11.665837-08:00" }, { "operation": "add_edge", - "rtt_ns": 959037, - "rtt_ms": 0.959037, + "rtt_ns": 1317875, + "rtt_ms": 1.317875, "checkpoint": 0, "vertex_from": "8", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:29.895018688Z" + "timestamp": "2025-11-27T04:03:11.665993-08:00" }, { "operation": "add_edge", - "rtt_ns": 867297, - "rtt_ms": 0.867297, + "rtt_ns": 1294750, + "rtt_ms": 1.29475, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:29.895038138Z" + "vertex_from": "7", + "vertex_to": "364", + "timestamp": "2025-11-27T04:03:11.666038-08:00" }, { "operation": "add_edge", - "rtt_ns": 996437, - "rtt_ms": 0.996437, + "rtt_ns": 3503750, + "rtt_ms": 3.50375, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "481", - "timestamp": "2025-11-27T01:23:29.895086078Z" + "vertex_from": "7", + "vertex_to": "334", + "timestamp": "2025-11-27T04:03:11.666055-08:00" }, { "operation": "add_edge", - "rtt_ns": 979017, - "rtt_ms": 0.979017, + "rtt_ns": 872291, + "rtt_ms": 0.872291, "checkpoint": 0, "vertex_from": "8", "vertex_to": "357", - "timestamp": "2025-11-27T01:23:29.895113828Z" + "timestamp": "2025-11-27T04:03:11.666143-08:00" }, { "operation": "add_edge", - "rtt_ns": 630638, - "rtt_ms": 0.630638, + "rtt_ns": 2795875, + "rtt_ms": 2.795875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "364", - "timestamp": "2025-11-27T01:23:29.895237207Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:03:11.666218-08:00" }, { "operation": "add_edge", - "rtt_ns": 937727, - "rtt_ms": 0.937727, + "rtt_ns": 1539958, + "rtt_ms": 1.539958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:29.895610606Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:11.667685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385776, - "rtt_ms": 1.385776, + "rtt_ns": 2230500, + "rtt_ms": 2.2305, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:29.896135795Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.668286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597155, - "rtt_ms": 1.597155, + "rtt_ns": 2313583, + "rtt_ms": 2.313583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.896337754Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:11.668307-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3664959, + "rtt_ms": 3.664959, + "checkpoint": 0, + "vertex_from": "7", + "vertex_to": "13", + "timestamp": "2025-11-27T04:03:11.668329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550895, - "rtt_ms": 1.550895, + "rtt_ns": 2555542, + "rtt_ms": 2.555542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.896395564Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:11.668348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749105, - "rtt_ms": 1.749105, + "rtt_ns": 2288625, + "rtt_ms": 2.288625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "35", - "timestamp": "2025-11-27T01:23:29.896518634Z" + "timestamp": "2025-11-27T04:03:11.668365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646525, - "rtt_ms": 1.646525, + "rtt_ns": 3070000, + "rtt_ms": 3.07, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:29.896668543Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:11.668382-08:00" }, { "operation": "add_edge", - "rtt_ns": 2700702, - "rtt_ms": 2.700702, + "rtt_ns": 3372083, + "rtt_ms": 3.372083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:29.89778828Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:03:11.668622-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2801625, + "rtt_ms": 2.801625, + "checkpoint": 0, + "vertex_from": "8", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:11.668639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2804562, - "rtt_ms": 2.804562, + "rtt_ns": 2422334, + "rtt_ms": 2.422334, "checkpoint": 0, "vertex_from": "8", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.8978441Z" + "timestamp": "2025-11-27T04:03:11.668642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2757152, - "rtt_ms": 2.757152, + "rtt_ns": 1683750, + "rtt_ms": 1.68375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:29.89787194Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:11.66937-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326283, - "rtt_ms": 2.326283, + "rtt_ns": 1333583, + "rtt_ms": 1.333583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:29.897939669Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:11.669642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893714, - "rtt_ms": 1.893714, + "rtt_ns": 1324292, + "rtt_ms": 1.324292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.898031179Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:11.66969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380726, - "rtt_ms": 1.380726, + "rtt_ns": 2169250, + "rtt_ms": 2.16925, "checkpoint": 0, "vertex_from": "8", "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.898050309Z" + "timestamp": "2025-11-27T04:03:11.67081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530105, - "rtt_ms": 1.530105, + "rtt_ns": 2209000, + "rtt_ms": 2.209, "checkpoint": 0, "vertex_from": "8", "vertex_to": "353", - "timestamp": "2025-11-27T01:23:29.898050409Z" + "timestamp": "2025-11-27T04:03:11.670832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671225, - "rtt_ms": 1.671225, + "rtt_ns": 2517750, + "rtt_ms": 2.51775, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.898067829Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:11.670848-08:00" }, { "operation": "add_edge", - "rtt_ns": 2840612, - "rtt_ms": 2.840612, + "rtt_ns": 2232041, + "rtt_ms": 2.232041, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:29.898078749Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:11.670875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752925, - "rtt_ms": 1.752925, + "rtt_ns": 2627083, + "rtt_ms": 2.627083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:29.898093269Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:11.670915-08:00" }, { "operation": "add_edge", - "rtt_ns": 897917, - "rtt_ms": 0.897917, + "rtt_ns": 2555708, + "rtt_ms": 2.555708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.898743767Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.670938-08:00" }, { "operation": "add_edge", - "rtt_ns": 982548, - "rtt_ms": 0.982548, + "rtt_ns": 2705084, + "rtt_ms": 2.705084, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "53", - "timestamp": "2025-11-27T01:23:29.898856607Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.671054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065657, - "rtt_ms": 1.065657, + "rtt_ns": 1713292, + "rtt_ms": 1.713292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:29.898857947Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:11.671085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365046, - "rtt_ms": 1.365046, + "rtt_ns": 1582416, + "rtt_ms": 1.582416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "436", - "timestamp": "2025-11-27T01:23:29.899397795Z" + "vertex_to": "53", + "timestamp": "2025-11-27T04:03:11.671225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620795, - "rtt_ms": 1.620795, + "rtt_ns": 1324917, + "rtt_ms": 1.324917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.899562134Z" + "vertex_to": "436", + "timestamp": "2025-11-27T04:03:11.672136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590645, - "rtt_ms": 1.590645, + "rtt_ns": 1192000, + "rtt_ms": 1.192, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:29.899642824Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:11.672278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577655, - "rtt_ms": 1.577655, + "rtt_ns": 1570250, + "rtt_ms": 1.57025, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:29.899658644Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:11.672403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568115, - "rtt_ms": 1.568115, + "rtt_ns": 2728292, + "rtt_ms": 2.728292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:29.899662374Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.672421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658175, - "rtt_ms": 1.658175, + "rtt_ns": 1657041, + "rtt_ms": 1.657041, "checkpoint": 0, "vertex_from": "8", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.899729234Z" + "timestamp": "2025-11-27T04:03:11.672534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866174, - "rtt_ms": 1.866174, + "rtt_ns": 1634209, + "rtt_ms": 1.634209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:29.899920863Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:11.67255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709295, - "rtt_ms": 1.709295, + "rtt_ns": 1863875, + "rtt_ms": 1.863875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:29.900455052Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:11.672713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391166, - "rtt_ms": 1.391166, + "rtt_ns": 1670750, + "rtt_ms": 1.67075, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:29.900790001Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:11.672725-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047424, - "rtt_ms": 2.047424, + "rtt_ns": 2141042, + "rtt_ms": 2.141042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.900906421Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:03:11.67308-08:00" }, { "operation": "add_edge", - "rtt_ns": 2682732, - "rtt_ms": 2.682732, + "rtt_ns": 1506750, + "rtt_ms": 1.50675, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:29.901540389Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:11.673911-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025454, - "rtt_ms": 2.025454, + "rtt_ns": 1868291, + "rtt_ms": 1.868291, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:29.901688948Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:11.674005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349824, - "rtt_ms": 2.349824, + "rtt_ns": 3148042, + "rtt_ms": 3.148042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.901912548Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:11.674374-08:00" }, { "operation": "add_edge", - "rtt_ns": 2492043, - "rtt_ms": 2.492043, + "rtt_ns": 1337917, + "rtt_ms": 1.337917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:29.902136337Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:11.674421-08:00" }, { "operation": "add_edge", - "rtt_ns": 2577313, - "rtt_ms": 2.577313, + "rtt_ns": 1892459, + "rtt_ms": 1.892459, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:29.902237117Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:11.674428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334464, - "rtt_ms": 2.334464, + "rtt_ns": 1729417, + "rtt_ms": 1.729417, "checkpoint": 0, "vertex_from": "8", "vertex_to": "266", - "timestamp": "2025-11-27T01:23:29.902256007Z" + "timestamp": "2025-11-27T04:03:11.674443-08:00" }, { "operation": "add_edge", - "rtt_ns": 3346761, - "rtt_ms": 3.346761, + "rtt_ns": 2144000, + "rtt_ms": 2.144, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.903077075Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:11.674566-08:00" }, { "operation": "add_edge", - "rtt_ns": 2661182, - "rtt_ms": 2.661182, + "rtt_ns": 1851166, + "rtt_ms": 1.851166, "checkpoint": 0, "vertex_from": "8", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.903117084Z" + "timestamp": "2025-11-27T04:03:11.674577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356013, - "rtt_ms": 2.356013, + "rtt_ns": 2045166, + "rtt_ms": 2.045166, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:29.903146824Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.674596-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272843, - "rtt_ms": 2.272843, + "rtt_ns": 2335584, + "rtt_ms": 2.335584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.903179984Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.674614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669345, - "rtt_ms": 1.669345, + "rtt_ns": 1038750, + "rtt_ms": 1.03875, "checkpoint": 0, "vertex_from": "8", "vertex_to": "9", - "timestamp": "2025-11-27T01:23:29.903211184Z" + "timestamp": "2025-11-27T04:03:11.675045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135797, - "rtt_ms": 1.135797, + "rtt_ns": 1148416, + "rtt_ms": 1.148416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:29.903274564Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.675061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616596, - "rtt_ms": 1.616596, + "rtt_ns": 1808792, + "rtt_ms": 1.808792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.903306694Z" + "vertex_to": "756", + "timestamp": "2025-11-27T04:03:11.676231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421606, - "rtt_ms": 1.421606, + "rtt_ns": 1888291, + "rtt_ms": 1.888291, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "756", - "timestamp": "2025-11-27T01:23:29.903335484Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:11.676317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245926, - "rtt_ms": 1.245926, + "rtt_ns": 1750042, + "rtt_ms": 1.750042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:29.903484293Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:11.676328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227626, - "rtt_ms": 1.227626, + "rtt_ns": 1398459, + "rtt_ms": 1.398459, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.903484923Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:11.676444-08:00" }, { "operation": "add_edge", - "rtt_ns": 954888, - "rtt_ms": 0.954888, + "rtt_ns": 2097417, + "rtt_ms": 2.097417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:29.904102922Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:11.676475-08:00" }, { "operation": "add_edge", - "rtt_ns": 951648, - "rtt_ms": 0.951648, + "rtt_ns": 1491959, + "rtt_ms": 1.491959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:29.904136312Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:11.676553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021288, - "rtt_ms": 1.021288, + "rtt_ns": 2172167, + "rtt_ms": 2.172167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:29.904139452Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:11.676616-08:00" }, { "operation": "add_edge", - "rtt_ns": 921677, - "rtt_ms": 0.921677, + "rtt_ns": 2021083, + "rtt_ms": 2.021083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "91", - "timestamp": "2025-11-27T01:23:29.904197831Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:11.676618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027907, - "rtt_ms": 1.027907, + "rtt_ns": 2147792, + "rtt_ms": 2.147792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:29.904240071Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.676715-08:00" }, { "operation": "add_edge", - "rtt_ns": 937757, - "rtt_ms": 0.937757, + "rtt_ns": 2133167, + "rtt_ms": 2.133167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.904245571Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:11.676748-08:00" }, { "operation": "add_edge", - "rtt_ns": 936737, - "rtt_ms": 0.936737, + "rtt_ns": 1686792, + "rtt_ms": 1.686792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "214", - "timestamp": "2025-11-27T01:23:29.904273421Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:11.678241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194336, - "rtt_ms": 1.194336, + "rtt_ns": 1560917, + "rtt_ms": 1.560917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:29.904273441Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:11.678277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568126, - "rtt_ms": 1.568126, + "rtt_ns": 2063292, + "rtt_ms": 2.063292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "866", - "timestamp": "2025-11-27T01:23:29.905055029Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:03:11.678295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004794, - "rtt_ms": 2.004794, + "rtt_ns": 1975541, + "rtt_ms": 1.975541, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:29.905491187Z" + "vertex_to": "214", + "timestamp": "2025-11-27T04:03:11.678304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362075, - "rtt_ms": 1.362075, + "rtt_ns": 1564542, + "rtt_ms": 1.564542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:29.905500677Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:11.678313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369405, - "rtt_ms": 1.369405, + "rtt_ns": 1747417, + "rtt_ms": 1.747417, "checkpoint": 0, "vertex_from": "8", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.905509927Z" + "timestamp": "2025-11-27T04:03:11.678366-08:00" }, { "operation": "add_edge", - "rtt_ns": 2481113, - "rtt_ms": 2.481113, + "rtt_ns": 1922250, + "rtt_ms": 1.92225, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:29.906755804Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:11.678367-08:00" }, { "operation": "add_edge", - "rtt_ns": 2666312, - "rtt_ms": 2.666312, + "rtt_ns": 1918584, + "rtt_ms": 1.918584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:29.906866283Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:03:11.678394-08:00" }, { "operation": "add_edge", - "rtt_ns": 2638042, - "rtt_ms": 2.638042, + "rtt_ns": 1820916, + "rtt_ms": 1.820916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.906884603Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:11.678437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2701702, - "rtt_ms": 2.701702, + "rtt_ns": 2130750, + "rtt_ms": 2.13075, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:29.906943483Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:11.678448-08:00" }, { "operation": "add_edge", - "rtt_ns": 2701762, - "rtt_ms": 2.701762, + "rtt_ns": 1694083, + "rtt_ms": 1.694083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.906975953Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:11.68-08:00" }, { "operation": "add_edge", - "rtt_ns": 2922611, - "rtt_ms": 2.922611, + "rtt_ns": 1659459, + "rtt_ms": 1.659459, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:29.907027583Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:11.680098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023054, - "rtt_ms": 2.023054, + "rtt_ns": 1833875, + "rtt_ms": 1.833875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:29.907080213Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.680112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648116, - "rtt_ms": 1.648116, + "rtt_ns": 1818500, + "rtt_ms": 1.8185, "checkpoint": 0, "vertex_from": "8", "vertex_to": "588", - "timestamp": "2025-11-27T01:23:29.907151933Z" + "timestamp": "2025-11-27T04:03:11.680185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655905, - "rtt_ms": 1.655905, + "rtt_ns": 1985250, + "rtt_ms": 1.98525, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.907168062Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:03:11.680281-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1897750, + "rtt_ms": 1.89775, + "checkpoint": 0, + "vertex_from": "8", + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:11.680292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705085, - "rtt_ms": 1.705085, + "rtt_ns": 1983250, + "rtt_ms": 1.98325, "checkpoint": 0, "vertex_from": "8", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.907197712Z" + "timestamp": "2025-11-27T04:03:11.680297-08:00" }, { "operation": "add_edge", - "rtt_ns": 693208, - "rtt_ms": 0.693208, + "rtt_ns": 2055209, + "rtt_ms": 2.055209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:29.907449992Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:11.680299-08:00" }, { "operation": "add_edge", - "rtt_ns": 721898, - "rtt_ms": 0.721898, + "rtt_ns": 1942792, + "rtt_ms": 1.942792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:29.907608271Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:11.68031-08:00" }, { "operation": "add_edge", - "rtt_ns": 797208, - "rtt_ms": 0.797208, + "rtt_ns": 1886375, + "rtt_ms": 1.886375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:29.907665361Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:11.680335-08:00" }, { "operation": "add_edge", - "rtt_ns": 722188, - "rtt_ms": 0.722188, + "rtt_ns": 1020708, + "rtt_ms": 1.020708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:29.907670411Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:03:11.681303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094997, - "rtt_ms": 1.094997, + "rtt_ns": 1360584, + "rtt_ms": 1.360584, "checkpoint": 0, "vertex_from": "8", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:29.90812375Z" + "timestamp": "2025-11-27T04:03:11.681473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005867, - "rtt_ms": 1.005867, + "rtt_ns": 1480334, + "rtt_ms": 1.480334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "817", - "timestamp": "2025-11-27T01:23:29.90815899Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:11.681482-08:00" }, { "operation": "add_edge", - "rtt_ns": 985767, - "rtt_ms": 0.985767, + "rtt_ns": 1239334, + "rtt_ms": 1.239334, "checkpoint": 0, "vertex_from": "8", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.908184719Z" + "timestamp": "2025-11-27T04:03:11.681538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142856, - "rtt_ms": 1.142856, + "rtt_ns": 1282042, + "rtt_ms": 1.282042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:29.908224909Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:11.681575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265096, - "rtt_ms": 1.265096, + "rtt_ns": 1409667, + "rtt_ms": 1.409667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.908242089Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:11.681596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138937, - "rtt_ms": 1.138937, + "rtt_ns": 1293000, + "rtt_ms": 1.293, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:29.908308149Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:11.681604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336126, - "rtt_ms": 1.336126, + "rtt_ns": 1377250, + "rtt_ms": 1.37725, "checkpoint": 0, "vertex_from": "8", "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.908787448Z" + "timestamp": "2025-11-27T04:03:11.681678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224137, - "rtt_ms": 1.224137, + "rtt_ns": 1593667, + "rtt_ms": 1.593667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:29.908833598Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.681694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225276, - "rtt_ms": 1.225276, + "rtt_ns": 1381791, + "rtt_ms": 1.381791, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.908896587Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:11.681727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432506, - "rtt_ms": 1.432506, + "rtt_ns": 1394041, + "rtt_ms": 1.394041, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:29.909099057Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:11.682877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133117, - "rtt_ms": 1.133117, + "rtt_ns": 1851000, + "rtt_ms": 1.851, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:29.909377386Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.683155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293697, - "rtt_ms": 1.293697, + "rtt_ns": 2062375, + "rtt_ms": 2.062375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.909479236Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:11.683537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277487, - "rtt_ms": 1.277487, + "rtt_ns": 2038042, + "rtt_ms": 2.038042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.909503246Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.683576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884174, - "rtt_ms": 1.884174, + "rtt_ns": 2014083, + "rtt_ms": 2.014083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:29.910009404Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:11.68359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050424, - "rtt_ms": 2.050424, + "rtt_ns": 2001959, + "rtt_ms": 2.001959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:29.910359473Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:11.683598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678065, - "rtt_ms": 1.678065, + "rtt_ns": 1934750, + "rtt_ms": 1.93475, "checkpoint": 0, "vertex_from": "8", "vertex_to": "39", - "timestamp": "2025-11-27T01:23:29.910466683Z" + "timestamp": "2025-11-27T04:03:11.683613-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441012, - "rtt_ms": 2.441012, + "rtt_ns": 2044250, + "rtt_ms": 2.04425, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:29.910601012Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:11.683773-08:00" }, { "operation": "add_edge", - "rtt_ns": 2307483, - "rtt_ms": 2.307483, + "rtt_ns": 2090667, + "rtt_ms": 2.090667, "checkpoint": 0, "vertex_from": "8", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.911141671Z" + "timestamp": "2025-11-27T04:03:11.683785-08:00" }, { "operation": "add_edge", - "rtt_ns": 2348393, - "rtt_ms": 2.348393, + "rtt_ns": 2246333, + "rtt_ms": 2.246333, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:29.91124604Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:11.683851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904124, - "rtt_ms": 1.904124, + "rtt_ns": 1154041, + "rtt_ms": 1.154041, "checkpoint": 0, "vertex_from": "8", "vertex_to": "387", - "timestamp": "2025-11-27T01:23:29.91128229Z" + "timestamp": "2025-11-27T04:03:11.68431-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193783, - "rtt_ms": 2.193783, + "rtt_ns": 1510667, + "rtt_ms": 1.510667, "checkpoint": 0, "vertex_from": "8", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:29.91129395Z" + "timestamp": "2025-11-27T04:03:11.684389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876034, - "rtt_ms": 1.876034, + "rtt_ns": 1107667, + "rtt_ms": 1.107667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:29.91135611Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:11.684685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306623, - "rtt_ms": 2.306623, + "rtt_ns": 1083208, + "rtt_ms": 1.083208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.911810589Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:11.684869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471796, - "rtt_ms": 1.471796, + "rtt_ns": 1406583, + "rtt_ms": 1.406583, "checkpoint": 0, "vertex_from": "8", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.911832249Z" + "timestamp": "2025-11-27T04:03:11.685005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930114, - "rtt_ms": 1.930114, + "rtt_ns": 1419416, + "rtt_ms": 1.419416, "checkpoint": 0, "vertex_from": "8", "vertex_to": "19", - "timestamp": "2025-11-27T01:23:29.911940268Z" + "timestamp": "2025-11-27T04:03:11.68501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689115, - "rtt_ms": 1.689115, + "rtt_ns": 1433541, + "rtt_ms": 1.433541, "checkpoint": 0, "vertex_from": "8", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.912156568Z" + "timestamp": "2025-11-27T04:03:11.685048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582005, - "rtt_ms": 1.582005, + "rtt_ns": 1515416, + "rtt_ms": 1.515416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:29.912185237Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:11.685053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648555, - "rtt_ms": 1.648555, + "rtt_ns": 2077208, + "rtt_ms": 2.077208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:29.912895385Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:11.685853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616065, - "rtt_ms": 1.616065, + "rtt_ns": 1567000, + "rtt_ms": 1.567, "checkpoint": 0, "vertex_from": "8", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:29.912899135Z" + "timestamp": "2025-11-27T04:03:11.685878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769794, - "rtt_ms": 1.769794, + "rtt_ns": 1193916, + "rtt_ms": 1.193916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.912912435Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:11.68588-08:00" }, { "operation": "add_edge", - "rtt_ns": 977447, - "rtt_ms": 0.977447, + "rtt_ns": 2130750, + "rtt_ms": 2.13075, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:29.912919465Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:11.685984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087046, - "rtt_ms": 1.087046, + "rtt_ns": 1454666, + "rtt_ms": 1.454666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "13", - "timestamp": "2025-11-27T01:23:29.912920315Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:11.686466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848524, - "rtt_ms": 1.848524, + "rtt_ns": 1687375, + "rtt_ms": 1.687375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:29.913206274Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:11.686557-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1528125, - "rtt_ms": 1.528125, + "operation": "add_vertex", + "rtt_ns": 1535042, + "rtt_ms": 1.535042, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:29.913339574Z" + "vertex_from": "627", + "timestamp": "2025-11-27T04:03:11.686585-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2260792, + "rtt_ms": 2.260792, + "checkpoint": 0, + "vertex_from": "466", + "timestamp": "2025-11-27T04:03:11.68665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223567, - "rtt_ms": 1.223567, + "rtt_ns": 1660000, + "rtt_ms": 1.66, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.913409614Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:03:11.686666-08:00" }, { "operation": "add_edge", - "rtt_ns": 746878, - "rtt_ms": 0.746878, + "rtt_ns": 1612625, + "rtt_ms": 1.612625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:29.913643043Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:11.686666-08:00" }, { "operation": "add_edge", - "rtt_ns": 798278, - "rtt_ms": 0.798278, + "rtt_ns": 1228000, + "rtt_ms": 1.228, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:29.913718813Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:11.687788-08:00" }, { "operation": "add_edge", - "rtt_ns": 854758, - "rtt_ms": 0.854758, + "rtt_ns": 2047916, + "rtt_ms": 2.047916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:29.913754933Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:11.687929-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2472863, - "rtt_ms": 2.472863, + "operation": "add_edge", + "rtt_ns": 1773666, + "rtt_ms": 1.773666, "checkpoint": 0, - "vertex_from": "466", - "timestamp": "2025-11-27T01:23:29.913770823Z" + "vertex_from": "8", + "vertex_to": "466", + "timestamp": "2025-11-27T04:03:11.688424-08:00" }, { "operation": "add_edge", - "rtt_ns": 852168, - "rtt_ms": 0.852168, + "rtt_ns": 1852916, + "rtt_ms": 1.852916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.913774153Z" + "vertex_to": "627", + "timestamp": "2025-11-27T04:03:11.688438-08:00" }, { "operation": "add_edge", - "rtt_ns": 877238, - "rtt_ms": 0.877238, + "rtt_ns": 2662375, + "rtt_ms": 2.662375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:29.913791533Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:11.688543-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1797174, - "rtt_ms": 1.797174, + "operation": "add_edge", + "rtt_ns": 1895708, + "rtt_ms": 1.895708, "checkpoint": 0, - "vertex_from": "627", - "timestamp": "2025-11-27T01:23:29.913955212Z" + "vertex_from": "8", + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:11.688563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223236, - "rtt_ms": 1.223236, + "rtt_ns": 2320459, + "rtt_ms": 2.320459, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:29.91463418Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.688787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002427, - "rtt_ms": 1.002427, + "rtt_ns": 2822084, + "rtt_ms": 2.822084, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "92", - "timestamp": "2025-11-27T01:23:29.91464639Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:11.688807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462346, - "rtt_ms": 1.462346, + "rtt_ns": 974958, + "rtt_ms": 0.974958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:29.91467027Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:11.688905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387346, - "rtt_ms": 1.387346, + "rtt_ns": 3196209, + "rtt_ms": 3.196209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:29.91472791Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:11.68905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124737, - "rtt_ms": 1.124737, + "rtt_ns": 1554042, + "rtt_ms": 1.554042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:29.91484449Z" + "vertex_to": "92", + "timestamp": "2025-11-27T04:03:11.689343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594235, - "rtt_ms": 1.594235, + "rtt_ns": 884208, + "rtt_ms": 0.884208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "466", - "timestamp": "2025-11-27T01:23:29.915365378Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:11.689448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594155, - "rtt_ms": 1.594155, + "rtt_ns": 1184083, + "rtt_ms": 1.184083, "checkpoint": 0, "vertex_from": "8", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:29.915369098Z" + "timestamp": "2025-11-27T04:03:11.689624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414376, - "rtt_ms": 1.414376, + "rtt_ns": 1209625, + "rtt_ms": 1.209625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "627", - "timestamp": "2025-11-27T01:23:29.915369908Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:11.689635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626155, - "rtt_ms": 1.626155, + "rtt_ns": 3130833, + "rtt_ms": 3.130833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:29.915418918Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:11.689802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703165, - "rtt_ms": 1.703165, + "rtt_ns": 2223042, + "rtt_ms": 2.223042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:29.915459698Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:11.690767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036044, - "rtt_ms": 2.036044, + "rtt_ns": 1723083, + "rtt_ms": 1.723083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:29.916674994Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:03:11.690774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2503862, - "rtt_ms": 2.503862, + "rtt_ns": 1336542, + "rtt_ms": 1.336542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "14", - "timestamp": "2025-11-27T01:23:29.917349992Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:11.690786-08:00" }, { "operation": "add_edge", - "rtt_ns": 2694112, - "rtt_ms": 2.694112, + "rtt_ns": 2117833, + "rtt_ms": 2.117833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.917423752Z" + "timestamp": "2025-11-27T04:03:11.691024-08:00" }, { "operation": "add_edge", - "rtt_ns": 2804862, - "rtt_ms": 2.804862, + "rtt_ns": 1407291, + "rtt_ms": 1.407291, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:29.917452452Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:11.691043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112764, - "rtt_ms": 2.112764, + "rtt_ns": 2275000, + "rtt_ms": 2.275, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:29.917479452Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:11.691063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2111904, - "rtt_ms": 2.111904, + "rtt_ns": 1475750, + "rtt_ms": 1.47575, "checkpoint": 0, "vertex_from": "8", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:29.917482762Z" + "timestamp": "2025-11-27T04:03:11.691103-08:00" }, { "operation": "add_edge", - "rtt_ns": 2835022, - "rtt_ms": 2.835022, + "rtt_ns": 1370417, + "rtt_ms": 1.370417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:29.917506882Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:11.691174-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 850298, - "rtt_ms": 0.850298, + "operation": "add_edge", + "rtt_ns": 2415167, + "rtt_ms": 2.415167, "checkpoint": 0, - "vertex_from": "403", - "timestamp": "2025-11-27T01:23:29.917527572Z" + "vertex_from": "8", + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:11.691223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209284, - "rtt_ms": 2.209284, + "rtt_ns": 1895500, + "rtt_ms": 1.8955, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:29.917579652Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:11.69124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128294, - "rtt_ms": 2.128294, + "rtt_ns": 872417, + "rtt_ms": 0.872417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:29.917589092Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:11.691982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179334, - "rtt_ms": 2.179334, + "rtt_ns": 981167, + "rtt_ms": 0.981167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:29.917600162Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:11.692045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065517, - "rtt_ms": 1.065517, + "rtt_ns": 1384958, + "rtt_ms": 1.384958, "checkpoint": 0, "vertex_from": "8", "vertex_to": "488", - "timestamp": "2025-11-27T01:23:29.918491119Z" + "timestamp": "2025-11-27T04:03:11.692171-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1420125, + "rtt_ms": 1.420125, + "checkpoint": 0, + "vertex_from": "403", + "timestamp": "2025-11-27T04:03:11.692188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214577, - "rtt_ms": 1.214577, + "rtt_ns": 1384250, + "rtt_ms": 1.38425, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.918565549Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:11.692624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055837, - "rtt_ms": 1.055837, + "rtt_ns": 1968292, + "rtt_ms": 1.968292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:29.918583739Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:11.692743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137827, - "rtt_ms": 1.137827, + "rtt_ns": 1879000, + "rtt_ms": 1.879, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:29.918591109Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:11.692923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513226, - "rtt_ms": 1.513226, + "rtt_ns": 1871458, + "rtt_ms": 1.871458, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:29.919021018Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:03:11.693046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557126, - "rtt_ms": 1.557126, + "rtt_ns": 1916416, + "rtt_ms": 1.916416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.919037678Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:11.69314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574546, - "rtt_ms": 1.574546, + "rtt_ns": 2387875, + "rtt_ms": 2.387875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:29.919058518Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:11.693413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608345, - "rtt_ms": 1.608345, + "rtt_ns": 2311875, + "rtt_ms": 2.311875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "182", - "timestamp": "2025-11-27T01:23:29.919189337Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:11.6945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602525, - "rtt_ms": 1.602525, + "rtt_ns": 2632834, + "rtt_ms": 2.632834, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.919203897Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.694616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637375, - "rtt_ms": 1.637375, + "rtt_ns": 2622167, + "rtt_ms": 2.622167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:29.919227547Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:11.694794-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1220987, - "rtt_ms": 1.220987, + "operation": "add_edge", + "rtt_ns": 1816292, + "rtt_ms": 1.816292, "checkpoint": 0, - "vertex_from": "123", - "timestamp": "2025-11-27T01:23:29.919790446Z" + "vertex_from": "8", + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:11.694863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387426, - "rtt_ms": 1.387426, + "rtt_ns": 1955334, + "rtt_ms": 1.955334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.919879565Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:03:11.694879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314406, - "rtt_ms": 1.314406, + "rtt_ns": 2255000, + "rtt_ms": 2.255, "checkpoint": 0, "vertex_from": "8", "vertex_to": "20", - "timestamp": "2025-11-27T01:23:29.919906915Z" + "timestamp": "2025-11-27T04:03:11.69488-08:00" }, { "operation": "add_edge", - "rtt_ns": 921447, - "rtt_ms": 0.921447, + "rtt_ns": 1521083, + "rtt_ms": 1.521083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:29.919943605Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:11.694935-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2923667, + "rtt_ms": 2.923667, + "checkpoint": 0, + "vertex_from": "123", + "timestamp": "2025-11-27T04:03:11.694971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369486, - "rtt_ms": 1.369486, + "rtt_ns": 1883500, + "rtt_ms": 1.8835, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.919955125Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:11.695024-08:00" }, { "operation": "add_edge", - "rtt_ns": 966677, - "rtt_ms": 0.966677, + "rtt_ns": 2282334, + "rtt_ms": 2.282334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "11", - "timestamp": "2025-11-27T01:23:29.920005275Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:11.695026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300746, - "rtt_ms": 1.300746, + "rtt_ns": 1022083, + "rtt_ms": 1.022083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:29.920531793Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:11.696048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365786, - "rtt_ms": 1.365786, + "rtt_ns": 1608875, + "rtt_ms": 1.608875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:29.920576173Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:11.69611-08:00" }, { "operation": "add_edge", - "rtt_ns": 879397, - "rtt_ms": 0.879397, + "rtt_ns": 1568750, + "rtt_ms": 1.56875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "123", - "timestamp": "2025-11-27T01:23:29.920670493Z" + "vertex_to": "185", + "timestamp": "2025-11-27T04:03:11.696364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542416, - "rtt_ms": 1.542416, + "rtt_ns": 1894416, + "rtt_ms": 1.894416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.920733553Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:11.696512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698225, - "rtt_ms": 1.698225, + "rtt_ns": 1485417, + "rtt_ms": 1.485417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:29.920758003Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:11.696513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327616, - "rtt_ms": 1.327616, + "rtt_ns": 1636084, + "rtt_ms": 1.636084, "checkpoint": 0, "vertex_from": "8", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:29.921284351Z" + "timestamp": "2025-11-27T04:03:11.696516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377396, - "rtt_ms": 1.377396, + "rtt_ns": 1645917, + "rtt_ms": 1.645917, "checkpoint": 0, "vertex_from": "8", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:29.921384781Z" + "timestamp": "2025-11-27T04:03:11.696527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504586, - "rtt_ms": 1.504586, + "rtt_ns": 1579542, + "rtt_ms": 1.579542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "185", - "timestamp": "2025-11-27T01:23:29.921414011Z" + "vertex_to": "123", + "timestamp": "2025-11-27T04:03:11.696551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476346, - "rtt_ms": 1.476346, + "rtt_ns": 1624083, + "rtt_ms": 1.624083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.921421961Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:03:11.69656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565216, - "rtt_ms": 1.565216, + "rtt_ns": 1723791, + "rtt_ms": 1.723791, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:29.921447291Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1178446, - "rtt_ms": 1.178446, - "checkpoint": 0, - "vertex_from": "63", - "timestamp": "2025-11-27T01:23:29.921914579Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.696587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968704, - "rtt_ms": 1.968704, + "rtt_ns": 1056334, + "rtt_ms": 1.056334, "checkpoint": 0, "vertex_from": "8", "vertex_to": "837", - "timestamp": "2025-11-27T01:23:29.922729557Z" + "timestamp": "2025-11-27T04:03:11.697167-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2196184, - "rtt_ms": 2.196184, + "operation": "add_vertex", + "rtt_ns": 1587959, + "rtt_ms": 1.587959, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:29.922774457Z" + "vertex_from": "63", + "timestamp": "2025-11-27T04:03:11.697638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2685262, - "rtt_ms": 2.685262, + "rtt_ns": 1655208, + "rtt_ms": 1.655208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "283", - "timestamp": "2025-11-27T01:23:29.923219005Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:03:11.698169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2575432, - "rtt_ms": 2.575432, + "rtt_ns": 1730209, + "rtt_ms": 1.730209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:29.923248875Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:03:11.698243-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2146504, - "rtt_ms": 2.146504, + "operation": "add_vertex", + "rtt_ns": 1684292, + "rtt_ms": 1.684292, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:29.923432495Z" + "vertex_from": "746", + "timestamp": "2025-11-27T04:03:11.698273-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029734, - "rtt_ms": 2.029734, + "rtt_ns": 1969792, + "rtt_ms": 1.969792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:29.923446305Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:11.698335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055344, - "rtt_ms": 2.055344, + "rtt_ns": 1820542, + "rtt_ms": 1.820542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "188", - "timestamp": "2025-11-27T01:23:29.923479215Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:11.698381-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032334, - "rtt_ms": 2.032334, + "rtt_ns": 1899333, + "rtt_ms": 1.899333, "checkpoint": 0, "vertex_from": "8", "vertex_to": "52", - "timestamp": "2025-11-27T01:23:29.923480995Z" + "timestamp": "2025-11-27T04:03:11.698427-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103543, - "rtt_ms": 2.103543, + "rtt_ns": 1931750, + "rtt_ms": 1.93175, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:29.923489384Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:03:11.698449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846565, - "rtt_ms": 1.846565, + "rtt_ns": 1734084, + "rtt_ms": 1.734084, "checkpoint": 0, "vertex_from": "8", "vertex_to": "63", - "timestamp": "2025-11-27T01:23:29.923761484Z" + "timestamp": "2025-11-27T04:03:11.699373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254796, - "rtt_ms": 1.254796, + "rtt_ns": 1552083, + "rtt_ms": 1.552083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:29.923986213Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.699797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290066, - "rtt_ms": 1.290066, + "rtt_ns": 3289417, + "rtt_ms": 3.289417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:29.924071623Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:11.699842-08:00" }, { "operation": "add_edge", - "rtt_ns": 826368, - "rtt_ms": 0.826368, + "rtt_ns": 1922334, + "rtt_ms": 1.922334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.924077423Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:11.700093-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 882068, - "rtt_ms": 0.882068, + "operation": "add_edge", + "rtt_ns": 1701458, + "rtt_ms": 1.701458, "checkpoint": 0, - "vertex_from": "746", - "timestamp": "2025-11-27T01:23:29.924104253Z" + "vertex_from": "8", + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:11.700129-08:00" }, { "operation": "add_edge", - "rtt_ns": 690918, - "rtt_ms": 0.690918, + "rtt_ns": 1723583, + "rtt_ms": 1.723583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:29.924127503Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:11.700174-08:00" }, { "operation": "add_edge", - "rtt_ns": 839778, - "rtt_ms": 0.839778, + "rtt_ns": 1852208, + "rtt_ms": 1.852208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:29.924330832Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:03:11.700189-08:00" }, { "operation": "add_edge", - "rtt_ns": 890547, - "rtt_ms": 0.890547, + "rtt_ns": 3156500, + "rtt_ms": 3.1565, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.924338472Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.700325-08:00" }, { "operation": "add_edge", - "rtt_ns": 897047, - "rtt_ms": 0.897047, + "rtt_ns": 1957625, + "rtt_ms": 1.957625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:29.924377572Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:11.700345-08:00" }, { "operation": "add_edge", - "rtt_ns": 926167, - "rtt_ms": 0.926167, + "rtt_ns": 2109208, + "rtt_ms": 2.109208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:29.924408742Z" + "vertex_to": "746", + "timestamp": "2025-11-27T04:03:11.700382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010167, - "rtt_ms": 1.010167, + "rtt_ns": 1822084, + "rtt_ms": 1.822084, "checkpoint": 0, "vertex_from": "8", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:29.92500335Z" + "timestamp": "2025-11-27T04:03:11.701198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332536, - "rtt_ms": 1.332536, + "rtt_ns": 1363791, + "rtt_ms": 1.363791, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:29.92509543Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:11.701218-08:00" }, { "operation": "add_edge", - "rtt_ns": 990927, - "rtt_ms": 0.990927, + "rtt_ns": 1282416, + "rtt_ms": 1.282416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "746", - "timestamp": "2025-11-27T01:23:29.9250957Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:11.701413-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1156296, - "rtt_ms": 1.156296, + "rtt_ns": 1686584, + "rtt_ms": 1.686584, "checkpoint": 0, "vertex_from": "966", - "timestamp": "2025-11-27T01:23:29.925232369Z" + "timestamp": "2025-11-27T04:03:11.701488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122976, - "rtt_ms": 1.122976, + "rtt_ns": 1411625, + "rtt_ms": 1.411625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "217", - "timestamp": "2025-11-27T01:23:29.925251949Z" + "timestamp": "2025-11-27T04:03:11.701506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191876, - "rtt_ms": 1.191876, + "rtt_ns": 1204416, + "rtt_ms": 1.204416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:29.925270469Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:11.701587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338556, - "rtt_ms": 1.338556, + "rtt_ns": 1524833, + "rtt_ms": 1.524833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:29.925679498Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1379476, - "rtt_ms": 1.379476, - "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:29.925711728Z" + "timestamp": "2025-11-27T04:03:11.7017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314726, - "rtt_ms": 1.314726, + "rtt_ns": 1373000, + "rtt_ms": 1.373, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:29.925724588Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:11.701719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359666, - "rtt_ms": 1.359666, + "rtt_ns": 1659917, + "rtt_ms": 1.659917, "checkpoint": 0, "vertex_from": "8", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.925739138Z" + "timestamp": "2025-11-27T04:03:11.701849-08:00" }, { "operation": "add_edge", - "rtt_ns": 787498, - "rtt_ms": 0.787498, + "rtt_ns": 1541500, + "rtt_ms": 1.5415, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:29.926041837Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:11.701867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923644, - "rtt_ms": 1.923644, + "rtt_ns": 1593542, + "rtt_ms": 1.593542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:29.927020994Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:11.702792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886165, - "rtt_ms": 1.886165, + "rtt_ns": 1603375, + "rtt_ms": 1.603375, "checkpoint": 0, "vertex_from": "8", "vertex_to": "966", - "timestamp": "2025-11-27T01:23:29.927119384Z" + "timestamp": "2025-11-27T04:03:11.703092-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133364, - "rtt_ms": 2.133364, + "rtt_ns": 1892375, + "rtt_ms": 1.892375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:29.927137924Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:11.703112-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2020514, - "rtt_ms": 2.020514, + "operation": "add_edge", + "rtt_ns": 1537125, + "rtt_ms": 1.537125, "checkpoint": 0, - "vertex_from": "945", - "timestamp": "2025-11-27T01:23:29.927293643Z" + "vertex_from": "8", + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:11.703125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581815, - "rtt_ms": 1.581815, + "rtt_ns": 1635167, + "rtt_ms": 1.635167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:29.927294893Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:11.703142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2198483, - "rtt_ms": 2.198483, + "rtt_ns": 1431750, + "rtt_ms": 1.43175, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.927297973Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:03:11.7033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2442283, - "rtt_ms": 2.442283, + "rtt_ns": 1669875, + "rtt_ms": 1.669875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:29.928123511Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.70339-08:00" }, { "operation": "add_edge", - "rtt_ns": 2406273, - "rtt_ms": 2.406273, + "rtt_ns": 1692709, + "rtt_ms": 1.692709, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.928146711Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:11.703543-08:00" }, { "operation": "add_edge", - "rtt_ns": 2870871, - "rtt_ms": 2.870871, + "rtt_ns": 2028792, + "rtt_ms": 2.028792, "checkpoint": 0, "vertex_from": "8", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.928597709Z" + "timestamp": "2025-11-27T04:03:11.703729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2614282, - "rtt_ms": 2.614282, + "rtt_ns": 898209, + "rtt_ms": 0.898209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:29.928657079Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:11.704199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471676, - "rtt_ms": 1.471676, + "rtt_ns": 1464500, + "rtt_ms": 1.4645, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "628", - "timestamp": "2025-11-27T01:23:29.928771599Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:11.704258-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 3009750, + "rtt_ms": 3.00975, + "checkpoint": 0, + "vertex_from": "945", + "timestamp": "2025-11-27T04:03:11.704424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650705, - "rtt_ms": 1.650705, + "rtt_ns": 1941083, + "rtt_ms": 1.941083, "checkpoint": 0, "vertex_from": "8", "vertex_to": "748", - "timestamp": "2025-11-27T01:23:29.928790939Z" + "timestamp": "2025-11-27T04:03:11.705036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505586, - "rtt_ms": 1.505586, + "rtt_ns": 1943209, + "rtt_ms": 1.943209, "checkpoint": 0, "vertex_from": "8", "vertex_to": "179", - "timestamp": "2025-11-27T01:23:29.928803439Z" + "timestamp": "2025-11-27T04:03:11.705056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722345, - "rtt_ms": 1.722345, + "rtt_ns": 1685250, + "rtt_ms": 1.68525, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:29.928844189Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:11.705076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577046, - "rtt_ms": 1.577046, + "rtt_ns": 1948375, + "rtt_ms": 1.948375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "945", - "timestamp": "2025-11-27T01:23:29.928871069Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:11.705093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896594, - "rtt_ms": 1.896594, + "rtt_ns": 1569833, + "rtt_ms": 1.569833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:29.928919698Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:11.705113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140347, - "rtt_ms": 1.140347, + "rtt_ns": 2004791, + "rtt_ms": 2.004791, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:29.929265098Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:03:11.705131-08:00" }, { "operation": "add_edge", - "rtt_ns": 847388, - "rtt_ms": 0.847388, + "rtt_ns": 1493833, + "rtt_ms": 1.493833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:29.929446477Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:11.705224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223196, - "rtt_ms": 1.223196, + "rtt_ns": 1071750, + "rtt_ms": 1.07175, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:29.930096355Z" + "vertex_to": "945", + "timestamp": "2025-11-27T04:03:11.705496-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1415875, + "rtt_ms": 1.415875, + "checkpoint": 0, + "vertex_from": "911", + "timestamp": "2025-11-27T04:03:11.705677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304726, - "rtt_ms": 1.304726, + "rtt_ns": 1635750, + "rtt_ms": 1.63575, "checkpoint": 0, "vertex_from": "8", "vertex_to": "89", - "timestamp": "2025-11-27T01:23:29.930096685Z" + "timestamp": "2025-11-27T04:03:11.705838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196077, - "rtt_ms": 1.196077, + "rtt_ns": 1421209, + "rtt_ms": 1.421209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:29.930118155Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:11.706478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346626, - "rtt_ms": 1.346626, + "rtt_ns": 1270375, + "rtt_ms": 1.270375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:29.930119425Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:11.706495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502006, - "rtt_ms": 1.502006, + "rtt_ns": 1548750, + "rtt_ms": 1.54875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:29.930160635Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.706586-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1361776, - "rtt_ms": 1.361776, - "checkpoint": 0, - "vertex_from": "911", - "timestamp": "2025-11-27T01:23:29.930169185Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2021484, - "rtt_ms": 2.021484, + "rtt_ns": 1514041, + "rtt_ms": 1.514041, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:29.930170135Z" + "vertex_from": "237", + "timestamp": "2025-11-27T04:03:11.706646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353806, - "rtt_ms": 1.353806, + "rtt_ns": 1660209, + "rtt_ms": 1.660209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.930199095Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1639105, - "rtt_ms": 1.639105, - "checkpoint": 0, - "vertex_from": "650", - "timestamp": "2025-11-27T01:23:29.930906943Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:11.706737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487446, - "rtt_ms": 1.487446, + "rtt_ns": 1349208, + "rtt_ms": 1.349208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:29.930935583Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:11.706848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094807, - "rtt_ms": 1.094807, + "rtt_ns": 1019667, + "rtt_ms": 1.019667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:29.931214502Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:11.706858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108087, - "rtt_ms": 1.108087, + "rtt_ns": 1304166, + "rtt_ms": 1.304166, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:29.931230742Z" + "vertex_to": "911", + "timestamp": "2025-11-27T04:03:11.706981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191007, - "rtt_ms": 1.191007, + "rtt_ns": 1885084, + "rtt_ms": 1.885084, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:29.931289162Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:11.706999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152837, - "rtt_ms": 1.152837, + "rtt_ns": 1089250, + "rtt_ms": 1.08925, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:29.931353692Z" + "vertex_to": "347", + "timestamp": "2025-11-27T04:03:11.707585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217197, - "rtt_ms": 1.217197, + "rtt_ns": 1179458, + "rtt_ms": 1.179458, "checkpoint": 0, "vertex_from": "8", "vertex_to": "342", - "timestamp": "2025-11-27T01:23:29.931379712Z" + "timestamp": "2025-11-27T04:03:11.707658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295996, - "rtt_ms": 1.295996, + "rtt_ns": 1773916, + "rtt_ms": 1.773916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "911", - "timestamp": "2025-11-27T01:23:29.931465521Z" + "vertex_to": "237", + "timestamp": "2025-11-27T04:03:11.70842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846865, - "rtt_ms": 1.846865, + "rtt_ns": 1561500, + "rtt_ms": 1.5615, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "347", - "timestamp": "2025-11-27T01:23:29.93201892Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:11.708421-08:00" }, { "operation": "add_vertex", - "rtt_ns": 699278, - "rtt_ms": 0.699278, + "rtt_ns": 3439459, + "rtt_ms": 3.439459, "checkpoint": 0, - "vertex_from": "181", - "timestamp": "2025-11-27T01:23:29.932166979Z" + "vertex_from": "650", + "timestamp": "2025-11-27T04:03:11.708533-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2204954, - "rtt_ms": 2.204954, + "operation": "add_edge", + "rtt_ns": 2021708, + "rtt_ms": 2.021708, "checkpoint": 0, - "vertex_from": "237", - "timestamp": "2025-11-27T01:23:29.932303519Z" + "vertex_from": "8", + "vertex_to": "779", + "timestamp": "2025-11-27T04:03:11.70876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989784, - "rtt_ms": 1.989784, + "rtt_ns": 2185083, + "rtt_ms": 2.185083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:29.932897237Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:11.708772-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059994, - "rtt_ms": 2.059994, + "rtt_ns": 1789958, + "rtt_ms": 1.789958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:29.932997017Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:11.70879-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272713, - "rtt_ms": 2.272713, + "rtt_ns": 1975458, + "rtt_ms": 1.975458, "checkpoint": 0, "vertex_from": "8", "vertex_to": "547", - "timestamp": "2025-11-27T01:23:29.933488395Z" + "timestamp": "2025-11-27T04:03:11.708825-08:00" }, { "operation": "add_edge", - "rtt_ns": 2190873, - "rtt_ms": 2.190873, + "rtt_ns": 1254833, + "rtt_ms": 1.254833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "156", - "timestamp": "2025-11-27T01:23:29.933571645Z" + "timestamp": "2025-11-27T04:03:11.708842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569785, - "rtt_ms": 1.569785, + "rtt_ns": 1871458, + "rtt_ms": 1.871458, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:29.933590425Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:11.708856-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275763, - "rtt_ms": 2.275763, + "rtt_ns": 1502125, + "rtt_ms": 1.502125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:29.933631075Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:11.709924-08:00" }, { "operation": "add_edge", - "rtt_ns": 2403343, - "rtt_ms": 2.403343, + "rtt_ns": 1147416, + "rtt_ms": 1.147416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:29.933636065Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:11.709942-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2379083, + "rtt_ms": 2.379083, + "checkpoint": 0, + "vertex_from": "181", + "timestamp": "2025-11-27T04:03:11.710038-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349013, - "rtt_ms": 2.349013, + "rtt_ns": 1508083, + "rtt_ms": 1.508083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:29.933639675Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:11.710041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476856, - "rtt_ms": 1.476856, + "rtt_ns": 1312500, + "rtt_ms": 1.3125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "181", - "timestamp": "2025-11-27T01:23:29.933644205Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:11.710138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643415, - "rtt_ms": 1.643415, + "rtt_ns": 1903167, + "rtt_ms": 1.903167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "237", - "timestamp": "2025-11-27T01:23:29.933947444Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:11.710325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163757, - "rtt_ms": 1.163757, + "rtt_ns": 1486583, + "rtt_ms": 1.486583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:29.934062574Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.710357-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1180086, - "rtt_ms": 1.180086, + "operation": "add_edge", + "rtt_ns": 1798792, + "rtt_ms": 1.798792, "checkpoint": 0, - "vertex_from": "622", - "timestamp": "2025-11-27T01:23:29.934179473Z" + "vertex_from": "8", + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:11.710572-08:00" }, { "operation": "add_edge", - "rtt_ns": 759518, - "rtt_ms": 0.759518, + "rtt_ns": 1746875, + "rtt_ms": 1.746875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:29.934332873Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:11.71059-08:00" }, { "operation": "add_vertex", - "rtt_ns": 729358, - "rtt_ms": 0.729358, + "rtt_ns": 2028375, + "rtt_ms": 2.028375, + "checkpoint": 0, + "vertex_from": "622", + "timestamp": "2025-11-27T04:03:11.710791-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 898917, + "rtt_ms": 0.898917, "checkpoint": 0, "vertex_from": "963", - "timestamp": "2025-11-27T01:23:29.934374833Z" + "timestamp": "2025-11-27T04:03:11.710825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206626, - "rtt_ms": 1.206626, + "rtt_ns": 886292, + "rtt_ms": 0.886292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:29.93515565Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:11.710829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590515, - "rtt_ms": 1.590515, + "rtt_ns": 1468334, + "rtt_ms": 1.468334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:29.93518267Z" + "vertex_to": "122", + "timestamp": "2025-11-27T04:03:11.712041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541355, - "rtt_ms": 1.541355, + "rtt_ns": 2020417, + "rtt_ms": 2.020417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:29.93518739Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:11.712063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126886, - "rtt_ms": 1.126886, + "rtt_ns": 1523167, + "rtt_ms": 1.523167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:29.93519207Z" + "vertex_to": "622", + "timestamp": "2025-11-27T04:03:11.712314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724575, - "rtt_ms": 1.724575, + "rtt_ns": 1765375, + "rtt_ms": 1.765375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:29.93521444Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:11.712356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595925, - "rtt_ms": 1.595925, + "rtt_ns": 1613709, + "rtt_ms": 1.613709, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.93523402Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:11.712444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623275, - "rtt_ms": 1.623275, + "rtt_ns": 2126375, + "rtt_ms": 2.126375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:29.93525638Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:11.712484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107337, - "rtt_ms": 1.107337, + "rtt_ns": 2466583, + "rtt_ms": 2.466583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "622", - "timestamp": "2025-11-27T01:23:29.93528722Z" + "vertex_to": "181", + "timestamp": "2025-11-27T04:03:11.712505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612475, - "rtt_ms": 1.612475, + "rtt_ns": 2412292, + "rtt_ms": 2.412292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "963", - "timestamp": "2025-11-27T01:23:29.935987548Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:11.712551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682815, - "rtt_ms": 1.682815, + "rtt_ns": 2228208, + "rtt_ms": 2.228208, "checkpoint": 0, "vertex_from": "8", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:29.936018458Z" + "timestamp": "2025-11-27T04:03:11.712556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156727, - "rtt_ms": 1.156727, + "rtt_ns": 1830416, + "rtt_ms": 1.830416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:29.936373187Z" + "vertex_to": "963", + "timestamp": "2025-11-27T04:03:11.712656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268357, - "rtt_ms": 1.268357, + "rtt_ns": 1570750, + "rtt_ms": 1.57075, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:29.936425637Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:11.713613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195647, - "rtt_ms": 1.195647, + "rtt_ns": 2076875, + "rtt_ms": 2.076875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:29.936453617Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:11.714141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376696, - "rtt_ms": 1.376696, + "rtt_ns": 1840500, + "rtt_ms": 1.8405, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:29.936566076Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:03:11.714156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787945, - "rtt_ms": 1.787945, + "rtt_ns": 1507500, + "rtt_ms": 1.5075, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:29.937076605Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:11.714165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914595, - "rtt_ms": 1.914595, + "rtt_ns": 1857250, + "rtt_ms": 1.85725, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.937108905Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:11.714214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267626, - "rtt_ms": 1.267626, + "rtt_ns": 1743334, + "rtt_ms": 1.743334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:29.937256524Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:11.714249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084074, - "rtt_ms": 2.084074, + "rtt_ns": 1818916, + "rtt_ms": 1.818916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "122", - "timestamp": "2025-11-27T01:23:29.937268234Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:11.714375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032064, - "rtt_ms": 2.032064, + "rtt_ns": 1898625, + "rtt_ms": 1.898625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:29.937268654Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:11.714383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317626, - "rtt_ms": 1.317626, + "rtt_ns": 1946209, + "rtt_ms": 1.946209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:29.937338234Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:11.714391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518005, - "rtt_ms": 1.518005, + "rtt_ns": 1926875, + "rtt_ms": 1.926875, "checkpoint": 0, "vertex_from": "8", "vertex_to": "226", - "timestamp": "2025-11-27T01:23:29.937944762Z" + "timestamp": "2025-11-27T04:03:11.714479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518975, - "rtt_ms": 1.518975, + "rtt_ns": 1125625, + "rtt_ms": 1.125625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:29.937973882Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:11.71474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636765, - "rtt_ms": 1.636765, + "rtt_ns": 985500, + "rtt_ms": 0.9855, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:29.938012692Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:11.715129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450766, - "rtt_ms": 1.450766, + "rtt_ns": 1210833, + "rtt_ms": 1.210833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:29.938018342Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:11.715376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673765, - "rtt_ms": 1.673765, + "rtt_ns": 1540167, + "rtt_ms": 1.540167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:29.93878495Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:11.715697-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194874, - "rtt_ms": 2.194874, + "rtt_ns": 1537667, + "rtt_ms": 1.537667, "checkpoint": 0, "vertex_from": "8", "vertex_to": "119", - "timestamp": "2025-11-27T01:23:29.939464938Z" + "timestamp": "2025-11-27T04:03:11.715753-08:00" }, { "operation": "add_edge", - "rtt_ns": 2388063, - "rtt_ms": 2.388063, + "rtt_ns": 1584416, + "rtt_ms": 1.584416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:29.939465848Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:11.715834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227753, - "rtt_ms": 2.227753, + "rtt_ns": 1460792, + "rtt_ms": 1.460792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:29.939497937Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:11.715852-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187753, - "rtt_ms": 2.187753, + "rtt_ns": 1679041, + "rtt_ms": 1.679041, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.939527217Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:03:11.716055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600415, - "rtt_ms": 1.600415, + "rtt_ns": 1109833, + "rtt_ms": 1.109833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "391", - "timestamp": "2025-11-27T01:23:29.939546567Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:03:11.71624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312813, - "rtt_ms": 2.312813, + "rtt_ns": 1778084, + "rtt_ms": 1.778084, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:29.939570947Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:11.71626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130303, - "rtt_ms": 2.130303, + "rtt_ns": 1568250, + "rtt_ms": 1.56825, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:29.940150055Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:11.716309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269703, - "rtt_ms": 2.269703, + "rtt_ns": 2031375, + "rtt_ms": 2.031375, "checkpoint": 0, "vertex_from": "8", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:29.940244515Z" + "timestamp": "2025-11-27T04:03:11.716415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239173, - "rtt_ms": 2.239173, + "rtt_ns": 2617042, + "rtt_ms": 2.617042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:29.940254065Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:11.717994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709884, - "rtt_ms": 1.709884, + "rtt_ns": 1588333, + "rtt_ms": 1.588333, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.940496914Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:11.718005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043056, - "rtt_ms": 1.043056, + "rtt_ns": 2077292, + "rtt_ms": 2.077292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:29.940509274Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:11.718133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034077, - "rtt_ms": 1.034077, + "rtt_ns": 1873375, + "rtt_ms": 1.873375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "248", - "timestamp": "2025-11-27T01:23:29.940533494Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:03:11.71814-08:00" }, { "operation": "add_edge", - "rtt_ns": 998607, - "rtt_ms": 0.998607, + "rtt_ns": 1834625, + "rtt_ms": 1.834625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:29.940571384Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:11.718145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111656, - "rtt_ms": 1.111656, + "rtt_ns": 2451750, + "rtt_ms": 2.45175, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:29.940579644Z" + "vertex_to": "248", + "timestamp": "2025-11-27T04:03:11.71815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041647, - "rtt_ms": 1.041647, + "rtt_ns": 2320125, + "rtt_ms": 2.320125, "checkpoint": 0, "vertex_from": "8", "vertex_to": "307", - "timestamp": "2025-11-27T01:23:29.940589374Z" + "timestamp": "2025-11-27T04:03:11.718156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102067, - "rtt_ms": 1.102067, + "rtt_ns": 2409250, + "rtt_ms": 2.40925, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "625", - "timestamp": "2025-11-27T01:23:29.940631804Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:11.718263-08:00" }, { "operation": "add_edge", - "rtt_ns": 805358, - "rtt_ms": 0.805358, + "rtt_ns": 2060666, + "rtt_ms": 2.060666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:29.940957143Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:11.718301-08:00" }, { "operation": "add_edge", - "rtt_ns": 787148, - "rtt_ms": 0.787148, + "rtt_ns": 2548584, + "rtt_ms": 2.548584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "395", - "timestamp": "2025-11-27T01:23:29.941044163Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:03:11.718304-08:00" }, { "operation": "add_edge", - "rtt_ns": 798518, - "rtt_ms": 0.798518, + "rtt_ns": 1083459, + "rtt_ms": 1.083459, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:29.941045063Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 680938, - "rtt_ms": 0.680938, - "checkpoint": 0, - "vertex_from": "829", - "timestamp": "2025-11-27T01:23:29.941315852Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:11.719079-08:00" }, { "operation": "add_edge", - "rtt_ns": 838288, - "rtt_ms": 0.838288, + "rtt_ns": 946208, + "rtt_ms": 0.946208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:29.941337692Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:11.71908-08:00" }, { "operation": "add_edge", - "rtt_ns": 866178, - "rtt_ms": 0.866178, + "rtt_ns": 1308667, + "rtt_ms": 1.308667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:29.941376812Z" + "vertex_to": "242", + "timestamp": "2025-11-27T04:03:11.719613-08:00" }, { "operation": "add_edge", - "rtt_ns": 834048, - "rtt_ms": 0.834048, + "rtt_ns": 1528958, + "rtt_ms": 1.528958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:29.941416862Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:11.719685-08:00" }, { "operation": "add_edge", - "rtt_ns": 832588, - "rtt_ms": 0.832588, + "rtt_ns": 1688375, + "rtt_ms": 1.688375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.941424072Z" + "vertex_to": "467", + "timestamp": "2025-11-27T04:03:11.719839-08:00" }, { "operation": "add_vertex", - "rtt_ns": 913267, - "rtt_ms": 0.913267, + "rtt_ns": 1838042, + "rtt_ms": 1.838042, "checkpoint": 0, "vertex_from": "850", - "timestamp": "2025-11-27T01:23:29.941488061Z" + "timestamp": "2025-11-27T04:03:11.719844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324426, - "rtt_ms": 1.324426, + "rtt_ns": 1614709, + "rtt_ms": 1.614709, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:29.94186558Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:11.719917-08:00" }, { "operation": "add_edge", - "rtt_ns": 923517, - "rtt_ms": 0.923517, + "rtt_ns": 1654750, + "rtt_ms": 1.65475, "checkpoint": 0, "vertex_from": "8", "vertex_to": "169", - "timestamp": "2025-11-27T01:23:29.94197207Z" + "timestamp": "2025-11-27T04:03:11.719918-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1628065, - "rtt_ms": 1.628065, + "operation": "add_vertex", + "rtt_ns": 1920042, + "rtt_ms": 1.920042, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "467", - "timestamp": "2025-11-27T01:23:29.942586818Z" + "vertex_from": "829", + "timestamp": "2025-11-27T04:03:11.720066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565685, - "rtt_ms": 1.565685, + "rtt_ns": 2740042, + "rtt_ms": 2.740042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:29.942613248Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:11.720881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473916, - "rtt_ms": 1.473916, + "rtt_ns": 1472125, + "rtt_ms": 1.472125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "829", - "timestamp": "2025-11-27T01:23:29.942790348Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:11.721158-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1416646, - "rtt_ms": 1.416646, + "operation": "add_vertex", + "rtt_ns": 1427000, + "rtt_ms": 1.427, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "242", - "timestamp": "2025-11-27T01:23:29.942795828Z" + "vertex_from": "543", + "timestamp": "2025-11-27T04:03:11.721346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457996, - "rtt_ms": 1.457996, + "rtt_ns": 2458958, + "rtt_ms": 2.458958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:29.942798618Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:11.72154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867415, - "rtt_ms": 1.867415, + "rtt_ns": 1746209, + "rtt_ms": 1.746209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "850", - "timestamp": "2025-11-27T01:23:29.943356066Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:11.721665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402046, - "rtt_ms": 1.402046, + "rtt_ns": 2097959, + "rtt_ms": 2.097959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:29.943375916Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:11.721712-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 789358, - "rtt_ms": 0.789358, + "operation": "add_edge", + "rtt_ns": 1936917, + "rtt_ms": 1.936917, "checkpoint": 0, - "vertex_from": "543", - "timestamp": "2025-11-27T01:23:29.943407306Z" + "vertex_from": "8", + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.721777-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016824, - "rtt_ms": 2.016824, + "rtt_ns": 2710917, + "rtt_ms": 2.710917, "checkpoint": 0, "vertex_from": "8", "vertex_to": "43", - "timestamp": "2025-11-27T01:23:29.943437576Z" + "timestamp": "2025-11-27T04:03:11.72179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048834, - "rtt_ms": 2.048834, + "rtt_ns": 1789167, + "rtt_ms": 1.789167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:29.943474726Z" + "vertex_to": "829", + "timestamp": "2025-11-27T04:03:11.721856-08:00" }, { "operation": "add_edge", - "rtt_ns": 901577, - "rtt_ms": 0.901577, + "rtt_ns": 2314042, + "rtt_ms": 2.314042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.943489505Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:03:11.722158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674945, - "rtt_ms": 1.674945, + "rtt_ns": 1483959, + "rtt_ms": 1.483959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:29.943542425Z" + "vertex_to": "543", + "timestamp": "2025-11-27T04:03:11.722831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247846, - "rtt_ms": 1.247846, + "rtt_ns": 1984125, + "rtt_ms": 1.984125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:29.944041434Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:11.722866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397815, - "rtt_ms": 1.397815, + "rtt_ns": 1452917, + "rtt_ms": 1.452917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:29.944196123Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:11.722994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415845, - "rtt_ms": 1.415845, + "rtt_ns": 1208541, + "rtt_ms": 1.208541, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.944216883Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:11.723065-08:00" }, { "operation": "add_edge", - "rtt_ns": 863097, - "rtt_ms": 0.863097, + "rtt_ns": 1279541, + "rtt_ms": 1.279541, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:29.944220823Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:11.723071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516556, - "rtt_ms": 1.516556, + "rtt_ns": 1411250, + "rtt_ms": 1.41125, "checkpoint": 0, "vertex_from": "8", "vertex_to": "30", - "timestamp": "2025-11-27T01:23:29.944895442Z" + "timestamp": "2025-11-27T04:03:11.723077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753895, - "rtt_ms": 1.753895, + "rtt_ns": 1570500, + "rtt_ms": 1.5705, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "543", - "timestamp": "2025-11-27T01:23:29.945161621Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:11.723284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934704, - "rtt_ms": 1.934704, + "rtt_ns": 1746541, + "rtt_ms": 1.746541, "checkpoint": 0, "vertex_from": "8", "vertex_to": "93", - "timestamp": "2025-11-27T01:23:29.9454112Z" + "timestamp": "2025-11-27T04:03:11.723524-08:00" }, { "operation": "add_edge", - "rtt_ns": 2926361, - "rtt_ms": 2.926361, + "rtt_ns": 2569125, + "rtt_ms": 2.569125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:29.946365797Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:11.723728-08:00" }, { "operation": "add_edge", - "rtt_ns": 2957642, - "rtt_ms": 2.957642, + "rtt_ns": 1557875, + "rtt_ms": 1.557875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:29.946448387Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:11.72439-08:00" }, { "operation": "add_edge", - "rtt_ns": 3001092, - "rtt_ms": 3.001092, + "rtt_ns": 1490500, + "rtt_ms": 1.4905, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:29.946544907Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:11.724562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2369014, - "rtt_ms": 2.369014, + "rtt_ns": 1343333, + "rtt_ms": 1.343333, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:29.946567357Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:11.724868-08:00" }, { "operation": "add_edge", - "rtt_ns": 2621893, - "rtt_ms": 2.621893, + "rtt_ns": 1718291, + "rtt_ms": 1.718291, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:29.946665107Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:11.725004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539273, - "rtt_ms": 2.539273, + "rtt_ns": 2175000, + "rtt_ms": 2.175, "checkpoint": 0, "vertex_from": "8", "vertex_to": "833", - "timestamp": "2025-11-27T01:23:29.946758216Z" + "timestamp": "2025-11-27T04:03:11.725042-08:00" }, { "operation": "add_edge", - "rtt_ns": 2556793, - "rtt_ms": 2.556793, + "rtt_ns": 1993625, + "rtt_ms": 1.993625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:29.946778626Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:11.725061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939954, - "rtt_ms": 1.939954, + "rtt_ns": 3025334, + "rtt_ms": 3.025334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:29.946837586Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:11.725185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478196, - "rtt_ms": 1.478196, + "rtt_ns": 2387833, + "rtt_ms": 2.387833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:29.946891056Z" + "timestamp": "2025-11-27T04:03:11.725466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753915, - "rtt_ms": 1.753915, + "rtt_ns": 1130417, + "rtt_ms": 1.130417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:29.946917246Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:11.725521-08:00" }, { "operation": "add_edge", - "rtt_ns": 704148, - "rtt_ms": 0.704148, + "rtt_ns": 2196167, + "rtt_ms": 2.196167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:29.947154015Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:11.725925-08:00" }, { "operation": "add_edge", - "rtt_ns": 800668, - "rtt_ms": 0.800668, + "rtt_ns": 2949167, + "rtt_ms": 2.949167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:29.947167795Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:11.725944-08:00" }, { - "operation": "add_edge", - "rtt_ns": 860167, - "rtt_ms": 0.860167, + "operation": "add_vertex", + "rtt_ns": 1804208, + "rtt_ms": 1.804208, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:29.947406584Z" + "vertex_from": "965", + "timestamp": "2025-11-27T04:03:11.726869-08:00" }, { "operation": "add_edge", - "rtt_ns": 902257, - "rtt_ms": 0.902257, + "rtt_ns": 1861708, + "rtt_ms": 1.861708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:29.947471164Z" + "vertex_to": "697", + "timestamp": "2025-11-27T04:03:11.726904-08:00" }, { "operation": "add_edge", - "rtt_ns": 900787, - "rtt_ms": 0.900787, + "rtt_ns": 1390041, + "rtt_ms": 1.390041, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:29.947567884Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:11.726914-08:00" }, { "operation": "add_edge", - "rtt_ns": 824678, - "rtt_ms": 0.824678, + "rtt_ns": 2127250, + "rtt_ms": 2.12725, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:29.947605944Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:03:11.726997-08:00" }, { "operation": "add_edge", - "rtt_ns": 933048, - "rtt_ms": 0.933048, + "rtt_ns": 2470417, + "rtt_ms": 2.470417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "370", - "timestamp": "2025-11-27T01:23:29.947692454Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:11.727036-08:00" }, { "operation": "add_edge", - "rtt_ns": 948917, - "rtt_ms": 0.948917, + "rtt_ns": 1568541, + "rtt_ms": 1.568541, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "697", - "timestamp": "2025-11-27T01:23:29.947787623Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 897947, - "rtt_ms": 0.897947, - "checkpoint": 0, - "vertex_from": "965", - "timestamp": "2025-11-27T01:23:29.947791503Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:11.727036-08:00" }, { "operation": "add_edge", - "rtt_ns": 966247, - "rtt_ms": 0.966247, + "rtt_ns": 2360333, + "rtt_ms": 2.360333, "checkpoint": 0, "vertex_from": "8", "vertex_to": "559", - "timestamp": "2025-11-27T01:23:29.947884923Z" + "timestamp": "2025-11-27T04:03:11.727555-08:00" }, { "operation": "add_edge", - "rtt_ns": 776758, - "rtt_ms": 0.776758, + "rtt_ns": 2944333, + "rtt_ms": 2.944333, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:29.947932103Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:03:11.727949-08:00" }, { - "operation": "add_edge", - "rtt_ns": 799208, - "rtt_ms": 0.799208, + "operation": "add_vertex", + "rtt_ns": 2269834, + "rtt_ms": 2.269834, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:29.947968393Z" + "vertex_from": "483", + "timestamp": "2025-11-27T04:03:11.728219-08:00" }, { "operation": "add_edge", - "rtt_ns": 640698, - "rtt_ms": 0.640698, + "rtt_ns": 1731292, + "rtt_ms": 1.731292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "364", - "timestamp": "2025-11-27T01:23:29.948210782Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:11.728647-08:00" }, { "operation": "add_edge", - "rtt_ns": 802578, - "rtt_ms": 0.802578, + "rtt_ns": 1765083, + "rtt_ms": 1.765083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:29.948211092Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:11.728802-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 791388, - "rtt_ms": 0.791388, + "operation": "add_edge", + "rtt_ns": 1791792, + "rtt_ms": 1.791792, "checkpoint": 0, - "vertex_from": "483", - "timestamp": "2025-11-27T01:23:29.948266132Z" + "vertex_from": "8", + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:11.728829-08:00" }, { "operation": "add_edge", - "rtt_ns": 680138, - "rtt_ms": 0.680138, + "rtt_ns": 2909792, + "rtt_ms": 2.909792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:29.948287252Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:03:11.728837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215506, - "rtt_ms": 1.215506, + "rtt_ns": 2326125, + "rtt_ms": 2.326125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:29.94890916Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:03:11.729195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132647, - "rtt_ms": 1.132647, + "rtt_ns": 2252708, + "rtt_ms": 2.252708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "965", - "timestamp": "2025-11-27T01:23:29.94892459Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:11.729251-08:00" }, { "operation": "add_edge", - "rtt_ns": 826998, - "rtt_ms": 0.826998, + "rtt_ns": 1469416, + "rtt_ms": 1.469416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:29.94904042Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:03:11.72942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092377, - "rtt_ms": 1.092377, + "rtt_ns": 2013625, + "rtt_ms": 2.013625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "647", - "timestamp": "2025-11-27T01:23:29.94906245Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:11.729569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366366, - "rtt_ms": 1.366366, + "rtt_ns": 2686917, + "rtt_ms": 2.686917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:29.949155369Z" + "vertex_to": "364", + "timestamp": "2025-11-27T04:03:11.729593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252106, - "rtt_ms": 1.252106, + "rtt_ns": 1137375, + "rtt_ms": 1.137375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:29.949185819Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:11.729967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335916, - "rtt_ms": 1.335916, + "rtt_ns": 1359209, + "rtt_ms": 1.359209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:29.949222159Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:11.730007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566895, - "rtt_ms": 1.566895, + "rtt_ns": 1147000, + "rtt_ms": 1.147, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "483", - "timestamp": "2025-11-27T01:23:29.949833287Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:11.730399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613365, - "rtt_ms": 1.613365, + "rtt_ns": 1236750, + "rtt_ms": 1.23675, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:29.949901647Z" + "vertex_to": "27", + "timestamp": "2025-11-27T04:03:11.730433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712725, - "rtt_ms": 1.712725, + "rtt_ns": 1057250, + "rtt_ms": 1.05725, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:29.949925137Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:11.730478-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1375536, - "rtt_ms": 1.375536, + "operation": "add_edge", + "rtt_ns": 2437125, + "rtt_ms": 2.437125, "checkpoint": 0, - "vertex_from": "143", - "timestamp": "2025-11-27T01:23:29.950287226Z" + "vertex_from": "8", + "vertex_to": "483", + "timestamp": "2025-11-27T04:03:11.730657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224776, - "rtt_ms": 1.224776, + "rtt_ns": 1505333, + "rtt_ms": 1.505333, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:29.950448045Z" + "vertex_from": "8", + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:11.731078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336126, - "rtt_ms": 1.336126, + "rtt_ns": 815166, + "rtt_ms": 0.815166, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:29.950524385Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:11.731295-08:00" }, { "operation": "add_edge", - "rtt_ns": 785008, - "rtt_ms": 0.785008, + "rtt_ns": 1778792, + "rtt_ms": 1.778792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:29.950687715Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:11.731373-08:00" }, { "operation": "add_edge", - "rtt_ns": 914728, - "rtt_ms": 0.914728, + "rtt_ns": 1514958, + "rtt_ms": 1.514958, "checkpoint": 0, "vertex_from": "9", "vertex_to": "88", - "timestamp": "2025-11-27T01:23:29.950749215Z" + "timestamp": "2025-11-27T04:03:11.731523-08:00" }, { "operation": "add_edge", - "rtt_ns": 852577, - "rtt_ms": 0.852577, + "rtt_ns": 1127334, + "rtt_ms": 1.127334, "checkpoint": 0, "vertex_from": "9", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:29.950780184Z" + "timestamp": "2025-11-27T04:03:11.731561-08:00" }, { "operation": "add_edge", - "rtt_ns": 2478353, - "rtt_ms": 2.478353, + "rtt_ns": 1183791, + "rtt_ms": 1.183791, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "27", - "timestamp": "2025-11-27T01:23:29.951404493Z" + "vertex_from": "9", + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:11.731583-08:00" }, { "operation": "add_edge", - "rtt_ns": 2432102, - "rtt_ms": 2.432102, + "rtt_ns": 1148917, + "rtt_ms": 1.148917, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:29.951496012Z" + "vertex_from": "9", + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:11.731807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477626, - "rtt_ms": 1.477626, + "rtt_ns": 1121000, + "rtt_ms": 1.121, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:29.951927531Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:11.732199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2889671, - "rtt_ms": 2.889671, + "rtt_ns": 2375959, + "rtt_ms": 2.375959, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:29.951931271Z" + "vertex_from": "9", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:11.732344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407706, - "rtt_ms": 1.407706, + "rtt_ns": 1055541, + "rtt_ms": 1.055541, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:29.951933121Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:11.732429-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1856354, - "rtt_ms": 1.856354, + "operation": "add_vertex", + "rtt_ns": 3721583, + "rtt_ms": 3.721583, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "143", - "timestamp": "2025-11-27T01:23:29.95214407Z" + "vertex_from": "143", + "timestamp": "2025-11-27T04:03:11.732561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472535, - "rtt_ms": 1.472535, + "rtt_ns": 1267000, + "rtt_ms": 1.267, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:29.95216092Z" - }, - { - "operation": "add_edge", - "rtt_ns": 3046641, - "rtt_ms": 3.046641, - "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:29.95220321Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:03:11.732792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632235, - "rtt_ms": 1.632235, + "rtt_ns": 1801292, + "rtt_ms": 1.801292, "checkpoint": 0, "vertex_from": "9", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:29.95238329Z" + "timestamp": "2025-11-27T04:03:11.733099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130196, - "rtt_ms": 1.130196, + "rtt_ns": 1723875, + "rtt_ms": 1.723875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "618", - "timestamp": "2025-11-27T01:23:29.952536759Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:11.733287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769745, - "rtt_ms": 1.769745, + "rtt_ns": 1713125, + "rtt_ms": 1.713125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:29.952551429Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:11.733303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740205, - "rtt_ms": 1.740205, + "rtt_ns": 1555083, + "rtt_ms": 1.555083, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:29.953237297Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:11.733363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428946, - "rtt_ms": 1.428946, + "rtt_ns": 5165959, + "rtt_ms": 5.165959, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:29.953361767Z" + "vertex_from": "8", + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:11.733969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035734, - "rtt_ms": 2.035734, + "rtt_ns": 1881916, + "rtt_ms": 1.881916, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:29.953964755Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:11.734227-08:00" }, { "operation": "add_edge", - "rtt_ns": 2686202, - "rtt_ms": 2.686202, + "rtt_ns": 2191167, + "rtt_ms": 2.191167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:29.954620363Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:11.734621-08:00" }, { "operation": "add_edge", - "rtt_ns": 2594943, - "rtt_ms": 2.594943, + "rtt_ns": 1495708, + "rtt_ms": 1.495708, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:29.954757123Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:11.734784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2633103, - "rtt_ms": 2.633103, + "rtt_ns": 2009292, + "rtt_ms": 2.009292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:29.954779123Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:11.734802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2401382, - "rtt_ms": 2.401382, + "rtt_ns": 1774250, + "rtt_ms": 1.77425, "checkpoint": 0, "vertex_from": "9", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:29.954786572Z" + "timestamp": "2025-11-27T04:03:11.734874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554545, - "rtt_ms": 1.554545, + "rtt_ns": 2754375, + "rtt_ms": 2.754375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:29.954793232Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:11.734955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2593742, - "rtt_ms": 2.593742, + "rtt_ns": 2437333, + "rtt_ms": 2.437333, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:29.954797952Z" + "vertex_from": "8", + "vertex_to": "143", + "timestamp": "2025-11-27T04:03:11.734998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276483, - "rtt_ms": 2.276483, + "rtt_ns": 1699875, + "rtt_ms": 1.699875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:29.954815372Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:11.735064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267093, - "rtt_ms": 2.267093, + "rtt_ns": 1804458, + "rtt_ms": 1.804458, "checkpoint": 0, "vertex_from": "9", "vertex_to": "517", - "timestamp": "2025-11-27T01:23:29.954820132Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1470525, - "rtt_ms": 1.470525, - "checkpoint": 0, - "vertex_from": "670", - "timestamp": "2025-11-27T01:23:29.954835992Z" + "timestamp": "2025-11-27T04:03:11.735109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279136, - "rtt_ms": 1.279136, + "rtt_ns": 1201958, + "rtt_ms": 1.201958, "checkpoint": 0, "vertex_from": "9", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:29.955245571Z" + "timestamp": "2025-11-27T04:03:11.73543-08:00" }, { "operation": "add_edge", - "rtt_ns": 744798, - "rtt_ms": 0.744798, + "rtt_ns": 1019375, + "rtt_ms": 1.019375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:29.955366521Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:11.735894-08:00" }, { "operation": "add_edge", - "rtt_ns": 650759, - "rtt_ms": 0.650759, + "rtt_ns": 1402625, + "rtt_ms": 1.402625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:29.955450071Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:03:11.736025-08:00" }, { "operation": "add_edge", - "rtt_ns": 829037, - "rtt_ms": 0.829037, + "rtt_ns": 1487250, + "rtt_ms": 1.48725, "checkpoint": 0, "vertex_from": "9", "vertex_to": "960", - "timestamp": "2025-11-27T01:23:29.95558736Z" + "timestamp": "2025-11-27T04:03:11.736274-08:00" }, { "operation": "add_edge", - "rtt_ns": 837678, - "rtt_ms": 0.837678, + "rtt_ns": 1579083, + "rtt_ms": 1.579083, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:29.95563267Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:11.736579-08:00" }, { "operation": "add_edge", - "rtt_ns": 847038, - "rtt_ms": 0.847038, + "rtt_ns": 1640084, + "rtt_ms": 1.640084, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:29.95566879Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:11.736596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303366, - "rtt_ms": 1.303366, + "rtt_ns": 1813458, + "rtt_ms": 1.813458, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "670", - "timestamp": "2025-11-27T01:23:29.956139858Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:11.736617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352446, - "rtt_ms": 1.352446, + "rtt_ns": 1649750, + "rtt_ms": 1.64975, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:29.956141148Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:03:11.736715-08:00" }, { "operation": "add_edge", - "rtt_ns": 962077, - "rtt_ms": 0.962077, + "rtt_ns": 1697917, + "rtt_ms": 1.697917, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:29.956329618Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:03:11.736808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597626, - "rtt_ms": 1.597626, + "rtt_ns": 1416208, + "rtt_ms": 1.416208, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:29.956416598Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:11.736847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639625, - "rtt_ms": 1.639625, + "rtt_ns": 1467167, + "rtt_ms": 1.467167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:29.956419848Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:11.737362-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1192097, - "rtt_ms": 1.192097, + "operation": "add_vertex", + "rtt_ns": 1608792, + "rtt_ms": 1.608792, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:29.956439318Z" + "vertex_from": "375", + "timestamp": "2025-11-27T04:03:11.737636-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1110166, - "rtt_ms": 1.110166, + "rtt_ns": 4212125, + "rtt_ms": 4.212125, "checkpoint": 0, - "vertex_from": "375", - "timestamp": "2025-11-27T01:23:29.956561967Z" + "vertex_from": "670", + "timestamp": "2025-11-27T04:03:11.738183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469866, - "rtt_ms": 1.469866, + "rtt_ns": 2264416, + "rtt_ms": 2.264416, "checkpoint": 0, "vertex_from": "9", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:29.957058126Z" + "timestamp": "2025-11-27T04:03:11.738539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522195, - "rtt_ms": 1.522195, + "rtt_ns": 1832583, + "rtt_ms": 1.832583, + "checkpoint": 0, + "vertex_from": "9", + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:11.738641-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2190625, + "rtt_ms": 2.190625, "checkpoint": 0, "vertex_from": "9", "vertex_to": "67", - "timestamp": "2025-11-27T01:23:29.957191975Z" + "timestamp": "2025-11-27T04:03:11.738788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575565, - "rtt_ms": 1.575565, + "rtt_ns": 2245459, + "rtt_ms": 2.245459, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:29.957209625Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:11.738865-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2115594, - "rtt_ms": 2.115594, + "rtt_ns": 2599542, + "rtt_ms": 2.599542, "checkpoint": 0, "vertex_from": "887", - "timestamp": "2025-11-27T01:23:29.958260162Z" + "timestamp": "2025-11-27T04:03:11.739317-08:00" }, { "operation": "add_edge", - "rtt_ns": 2647342, - "rtt_ms": 2.647342, + "rtt_ns": 3119041, + "rtt_ms": 3.119041, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:29.95897871Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:11.739699-08:00" }, { "operation": "add_edge", - "rtt_ns": 2637062, - "rtt_ms": 2.637062, + "rtt_ns": 1607250, + "rtt_ms": 1.60725, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:29.95905473Z" + "vertex_to": "670", + "timestamp": "2025-11-27T04:03:11.739791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937484, - "rtt_ms": 1.937484, + "rtt_ns": 2446083, + "rtt_ms": 2.446083, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "357", - "timestamp": "2025-11-27T01:23:29.959147999Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:11.739809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119173, - "rtt_ms": 2.119173, + "rtt_ns": 2978917, + "rtt_ms": 2.978917, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:29.959178319Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:11.739827-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043944, - "rtt_ms": 2.043944, + "rtt_ns": 1639791, + "rtt_ms": 1.639791, "checkpoint": 0, "vertex_from": "9", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:29.959236999Z" + "timestamp": "2025-11-27T04:03:11.740429-08:00" }, { "operation": "add_edge", - "rtt_ns": 2856801, - "rtt_ms": 2.856801, + "rtt_ns": 1585292, + "rtt_ms": 1.585292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:29.959278759Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:03:11.740452-08:00" }, { "operation": "add_edge", - "rtt_ns": 2851711, - "rtt_ms": 2.851711, + "rtt_ns": 2981333, + "rtt_ms": 2.981333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:29.959292709Z" + "vertex_to": "375", + "timestamp": "2025-11-27T04:03:11.740618-08:00" }, { "operation": "add_edge", - "rtt_ns": 3171851, - "rtt_ms": 3.171851, + "rtt_ns": 2037959, + "rtt_ms": 2.037959, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:29.959313169Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:11.74068-08:00" }, { "operation": "add_edge", - "rtt_ns": 3283470, - "rtt_ms": 3.28347, + "rtt_ns": 2198625, + "rtt_ms": 2.198625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "375", - "timestamp": "2025-11-27T01:23:29.959845967Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:11.740739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603585, - "rtt_ms": 1.603585, + "rtt_ns": 1522250, + "rtt_ms": 1.52225, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "887", - "timestamp": "2025-11-27T01:23:29.959864167Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:11.741223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180167, - "rtt_ms": 1.180167, + "rtt_ns": 1434333, + "rtt_ms": 1.434333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:29.960159947Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:11.741244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122766, - "rtt_ms": 1.122766, + "rtt_ns": 1855083, + "rtt_ms": 1.855083, "checkpoint": 0, "vertex_from": "9", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:29.960179056Z" + "timestamp": "2025-11-27T04:03:11.741647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488066, - "rtt_ms": 1.488066, + "rtt_ns": 2003292, + "rtt_ms": 2.003292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:29.960637175Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:11.741831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434926, - "rtt_ms": 1.434926, + "rtt_ns": 1396750, + "rtt_ms": 1.39675, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:29.960749445Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:11.74185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619606, - "rtt_ms": 1.619606, + "rtt_ns": 2541084, + "rtt_ms": 2.541084, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:29.960799355Z" + "vertex_to": "887", + "timestamp": "2025-11-27T04:03:11.741858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566296, - "rtt_ms": 1.566296, + "rtt_ns": 1187167, + "rtt_ms": 1.187167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:29.960804405Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:11.741868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525446, - "rtt_ms": 1.525446, + "rtt_ns": 1220666, + "rtt_ms": 1.220666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:29.960805985Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:11.74196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894455, - "rtt_ms": 1.894455, + "rtt_ns": 1195958, + "rtt_ms": 1.195958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:29.961188754Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:11.742441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440056, - "rtt_ms": 1.440056, + "rtt_ns": 1833750, + "rtt_ms": 1.83375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:29.961287803Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1165427, - "rtt_ms": 1.165427, - "checkpoint": 0, - "vertex_from": "367", - "timestamp": "2025-11-27T01:23:29.961348113Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:11.742453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498296, - "rtt_ms": 1.498296, + "rtt_ns": 1452417, + "rtt_ms": 1.452417, "checkpoint": 0, "vertex_from": "9", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:29.961363883Z" + "timestamp": "2025-11-27T04:03:11.742676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225426, - "rtt_ms": 1.225426, + "rtt_ns": 1286667, + "rtt_ms": 1.286667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:29.961386983Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:11.743155-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2092250, + "rtt_ms": 2.09225, + "checkpoint": 0, + "vertex_from": "367", + "timestamp": "2025-11-27T04:03:11.743741-08:00" }, { "operation": "add_edge", - "rtt_ns": 750298, - "rtt_ms": 0.750298, + "rtt_ns": 1995250, + "rtt_ms": 1.99525, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "115", - "timestamp": "2025-11-27T01:23:29.961388943Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:11.743855-08:00" }, { "operation": "add_edge", - "rtt_ns": 792898, - "rtt_ms": 0.792898, + "rtt_ns": 3792333, + "rtt_ms": 3.792333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:29.961598613Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:11.744223-08:00" }, { "operation": "add_edge", - "rtt_ns": 825777, - "rtt_ms": 0.825777, + "rtt_ns": 1972334, + "rtt_ms": 1.972334, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:29.961635302Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:03:11.744426-08:00" }, { "operation": "add_edge", - "rtt_ns": 837157, - "rtt_ms": 0.837157, + "rtt_ns": 2199583, + "rtt_ms": 2.199583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:29.961637632Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:03:11.744643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002687, - "rtt_ms": 1.002687, + "rtt_ns": 2834750, + "rtt_ms": 2.83475, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:29.961753622Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:11.744798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644375, - "rtt_ms": 1.644375, + "rtt_ns": 3103875, + "rtt_ms": 3.103875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "614", - "timestamp": "2025-11-27T01:23:29.962834839Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:03:11.744936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517316, - "rtt_ms": 1.517316, + "rtt_ns": 2313959, + "rtt_ms": 2.313959, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "367", - "timestamp": "2025-11-27T01:23:29.962866159Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:11.744991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580106, - "rtt_ms": 1.580106, + "rtt_ns": 1362334, + "rtt_ms": 1.362334, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:29.962870189Z" + "vertex_to": "367", + "timestamp": "2025-11-27T04:03:11.745104-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115174, - "rtt_ms": 2.115174, + "rtt_ns": 3271666, + "rtt_ms": 3.271666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:29.963480637Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:11.745123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224774, - "rtt_ms": 2.224774, + "rtt_ns": 968958, + "rtt_ms": 0.968958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:29.963613727Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:11.745396-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224554, - "rtt_ms": 2.224554, + "rtt_ns": 1561458, + "rtt_ms": 1.561458, "checkpoint": 0, "vertex_from": "9", "vertex_to": "326", - "timestamp": "2025-11-27T01:23:29.963615227Z" + "timestamp": "2025-11-27T04:03:11.745418-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018135, - "rtt_ms": 2.018135, + "rtt_ns": 2301167, + "rtt_ms": 2.301167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:29.963657087Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:11.745457-08:00" }, { "operation": "add_edge", - "rtt_ns": 2085595, - "rtt_ms": 2.085595, + "rtt_ns": 1645875, + "rtt_ms": 1.645875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:29.963724717Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:11.745871-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208023, - "rtt_ms": 2.208023, + "rtt_ns": 1263084, + "rtt_ms": 1.263084, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:29.963808066Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:11.746201-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076234, - "rtt_ms": 2.076234, + "rtt_ns": 1270750, + "rtt_ms": 1.27075, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:29.963834786Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:11.746395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055967, - "rtt_ms": 1.055967, + "rtt_ns": 1769125, + "rtt_ms": 1.769125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:29.963924256Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:11.746413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092787, - "rtt_ms": 1.092787, + "rtt_ns": 1180625, + "rtt_ms": 1.180625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:29.963965736Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:11.746638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169047, - "rtt_ms": 1.169047, + "rtt_ns": 1846292, + "rtt_ms": 1.846292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:29.964011486Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:11.746646-08:00" }, { "operation": "add_edge", - "rtt_ns": 811808, - "rtt_ms": 0.811808, + "rtt_ns": 1661667, + "rtt_ms": 1.661667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:29.964294955Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:11.746654-08:00" }, { "operation": "add_edge", - "rtt_ns": 852727, - "rtt_ms": 0.852727, + "rtt_ns": 1558792, + "rtt_ms": 1.558792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:29.964469924Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:11.746664-08:00" }, { "operation": "add_edge", - "rtt_ns": 912407, - "rtt_ms": 0.912407, + "rtt_ns": 1456292, + "rtt_ms": 1.456292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:29.964527654Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:11.746876-08:00" }, { "operation": "add_edge", - "rtt_ns": 823077, - "rtt_ms": 0.823077, + "rtt_ns": 1288917, + "rtt_ms": 1.288917, "checkpoint": 0, "vertex_from": "9", "vertex_to": "82", - "timestamp": "2025-11-27T01:23:29.964549784Z" + "timestamp": "2025-11-27T04:03:11.747161-08:00" }, { "operation": "add_edge", - "rtt_ns": 911547, - "rtt_ms": 0.911547, + "rtt_ns": 1930167, + "rtt_ms": 1.930167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:29.964570524Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:11.747328-08:00" }, { "operation": "add_edge", - "rtt_ns": 853668, - "rtt_ms": 0.853668, + "rtt_ns": 947250, + "rtt_ms": 0.94725, "checkpoint": 0, "vertex_from": "9", "vertex_to": "42", - "timestamp": "2025-11-27T01:23:29.964689904Z" + "timestamp": "2025-11-27T04:03:11.747343-08:00" }, { "operation": "add_edge", - "rtt_ns": 938287, - "rtt_ms": 0.938287, + "rtt_ns": 1370583, + "rtt_ms": 1.370583, "checkpoint": 0, "vertex_from": "9", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:29.964748373Z" + "timestamp": "2025-11-27T04:03:11.747572-08:00" }, { "operation": "add_edge", - "rtt_ns": 877087, - "rtt_ms": 0.877087, + "rtt_ns": 1340750, + "rtt_ms": 1.34075, "checkpoint": 0, "vertex_from": "9", "vertex_to": "102", - "timestamp": "2025-11-27T01:23:29.964802883Z" + "timestamp": "2025-11-27T04:03:11.747755-08:00" }, { "operation": "add_edge", - "rtt_ns": 883357, - "rtt_ms": 0.883357, + "rtt_ns": 1862833, + "rtt_ms": 1.862833, "checkpoint": 0, "vertex_from": "9", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:29.964896013Z" + "timestamp": "2025-11-27T04:03:11.74851-08:00" }, { "operation": "add_edge", - "rtt_ns": 957847, - "rtt_ms": 0.957847, + "rtt_ns": 1266959, + "rtt_ms": 1.266959, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:29.964925493Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:03:11.748597-08:00" }, { "operation": "add_edge", - "rtt_ns": 637428, - "rtt_ms": 0.637428, + "rtt_ns": 1891458, + "rtt_ms": 1.891458, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:29.964933893Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:11.74877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353956, - "rtt_ms": 1.353956, + "rtt_ns": 2156584, + "rtt_ms": 2.156584, "checkpoint": 0, "vertex_from": "9", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:29.9658251Z" + "timestamp": "2025-11-27T04:03:11.748821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474726, - "rtt_ms": 1.474726, + "rtt_ns": 2265417, + "rtt_ms": 2.265417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:29.96600435Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:11.74892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571505, - "rtt_ms": 1.571505, + "rtt_ns": 1753834, + "rtt_ms": 1.753834, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:29.966122819Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:11.749098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337443, - "rtt_ms": 2.337443, + "rtt_ns": 2045583, + "rtt_ms": 2.045583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "850", - "timestamp": "2025-11-27T01:23:29.966910827Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:11.749207-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567853, - "rtt_ms": 2.567853, + "rtt_ns": 1638791, + "rtt_ms": 1.638791, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:29.967372826Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:11.749212-08:00" }, { "operation": "add_edge", - "rtt_ns": 2624913, - "rtt_ms": 2.624913, + "rtt_ns": 2750541, + "rtt_ms": 2.750541, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:29.967375546Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:11.74939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2523973, - "rtt_ms": 2.523973, + "rtt_ns": 2914333, + "rtt_ms": 2.914333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:29.967422416Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:11.750671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433515, - "rtt_ms": 1.433515, + "rtt_ns": 1905209, + "rtt_ms": 1.905209, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:29.967439145Z" + "vertex_to": "92", + "timestamp": "2025-11-27T04:03:11.750676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612755, - "rtt_ms": 1.612755, + "rtt_ns": 2887792, + "rtt_ms": 2.887792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:29.967439635Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:03:11.751398-08:00" }, { "operation": "add_edge", - "rtt_ns": 2793361, - "rtt_ms": 2.793361, + "rtt_ns": 2829625, + "rtt_ms": 2.829625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:29.967485075Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:11.751428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2553722, - "rtt_ms": 2.553722, + "rtt_ns": 2731291, + "rtt_ms": 2.731291, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "92", - "timestamp": "2025-11-27T01:23:29.967490305Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:11.751555-08:00" }, { "operation": "add_edge", - "rtt_ns": 2587742, - "rtt_ms": 2.587742, + "rtt_ns": 2595292, + "rtt_ms": 2.595292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:29.967515085Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:11.751694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408046, - "rtt_ms": 1.408046, + "rtt_ns": 2779125, + "rtt_ms": 2.779125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:29.967532085Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:11.751993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222606, - "rtt_ms": 1.222606, + "rtt_ns": 1343583, + "rtt_ms": 1.343583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:29.968599572Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:11.752016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178307, - "rtt_ms": 1.178307, + "rtt_ns": 3185208, + "rtt_ms": 3.185208, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:29.968618852Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:11.752107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709575, - "rtt_ms": 1.709575, + "rtt_ns": 1821959, + "rtt_ms": 1.821959, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:29.968621532Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:11.752499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260956, - "rtt_ms": 1.260956, + "rtt_ns": 1131958, + "rtt_ms": 1.131958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:29.968634822Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:11.75256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229897, - "rtt_ms": 1.229897, + "rtt_ns": 1202416, + "rtt_ms": 1.202416, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:29.968670792Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:11.752601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250857, - "rtt_ms": 1.250857, + "rtt_ns": 3460666, + "rtt_ms": 3.460666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:29.968675932Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:11.752669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614215, - "rtt_ms": 1.614215, + "rtt_ns": 3661750, + "rtt_ms": 3.66175, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:29.96910596Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:11.753054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591865, - "rtt_ms": 1.591865, + "rtt_ns": 1817750, + "rtt_ms": 1.81775, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:29.96912496Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:11.753373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652775, - "rtt_ms": 1.652775, + "rtt_ns": 1390875, + "rtt_ms": 1.390875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:29.96916905Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:11.753385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698265, - "rtt_ms": 1.698265, + "rtt_ns": 1004625, + "rtt_ms": 1.004625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:29.96918689Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:11.754061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264376, - "rtt_ms": 1.264376, + "rtt_ns": 2439875, + "rtt_ms": 2.439875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:29.969938558Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:11.754135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742485, - "rtt_ms": 1.742485, + "rtt_ns": 2028959, + "rtt_ms": 2.028959, "checkpoint": 0, "vertex_from": "9", "vertex_to": "240", - "timestamp": "2025-11-27T01:23:29.970362917Z" + "timestamp": "2025-11-27T04:03:11.754137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910354, - "rtt_ms": 1.910354, + "rtt_ns": 2146875, + "rtt_ms": 2.146875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:29.970589416Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:11.754163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058294, - "rtt_ms": 2.058294, + "rtt_ns": 1785875, + "rtt_ms": 1.785875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:29.970659916Z" + "vertex_to": "470", + "timestamp": "2025-11-27T04:03:11.754286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539546, - "rtt_ms": 1.539546, + "rtt_ns": 2187542, + "rtt_ms": 2.187542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "213", - "timestamp": "2025-11-27T01:23:29.970665916Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:11.755573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2484773, - "rtt_ms": 2.484773, + "rtt_ns": 3012500, + "rtt_ms": 3.0125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "470", - "timestamp": "2025-11-27T01:23:29.971107485Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:11.755614-08:00" }, { "operation": "add_edge", - "rtt_ns": 2494702, - "rtt_ms": 2.494702, + "rtt_ns": 2985417, + "rtt_ms": 2.985417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:29.971131204Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:11.755655-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124184, - "rtt_ms": 2.124184, + "rtt_ns": 1781083, + "rtt_ms": 1.781083, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:29.971312604Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:11.755918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236944, - "rtt_ms": 2.236944, + "rtt_ns": 1787292, + "rtt_ms": 1.787292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:29.971344454Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:11.755923-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232574, - "rtt_ms": 2.232574, + "rtt_ns": 3464666, + "rtt_ms": 3.464666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:29.971403414Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:11.756026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831165, - "rtt_ms": 1.831165, + "rtt_ns": 2055834, + "rtt_ms": 2.055834, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:29.971771553Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:11.756118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471725, - "rtt_ms": 1.471725, + "rtt_ns": 2024000, + "rtt_ms": 2.024, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:29.971837812Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:11.756187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300416, - "rtt_ms": 1.300416, + "rtt_ns": 2818709, + "rtt_ms": 2.818709, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:29.971892162Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:03:11.756194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281736, - "rtt_ms": 1.281736, + "rtt_ns": 1939666, + "rtt_ms": 1.939666, "checkpoint": 0, "vertex_from": "9", "vertex_to": "775", - "timestamp": "2025-11-27T01:23:29.971943152Z" + "timestamp": "2025-11-27T04:03:11.756228-08:00" }, { "operation": "add_edge", - "rtt_ns": 904678, - "rtt_ms": 0.904678, + "rtt_ns": 1076666, + "rtt_ms": 1.076666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:29.972014482Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:03:11.756651-08:00" }, { "operation": "add_edge", - "rtt_ns": 959748, - "rtt_ms": 0.959748, + "rtt_ns": 1054334, + "rtt_ms": 1.054334, "checkpoint": 0, "vertex_from": "9", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:29.972091932Z" + "timestamp": "2025-11-27T04:03:11.756711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437096, - "rtt_ms": 1.437096, + "rtt_ns": 1097583, + "rtt_ms": 1.097583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "10", - "timestamp": "2025-11-27T01:23:29.972104632Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:11.756713-08:00" }, { "operation": "bfs", - "rtt_ns": 366674035, - "rtt_ms": 366, + "rtt_ns": 370878292, + "rtt_ms": 370, "checkpoint": 1, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "266", - "150", - "334", + "398", + "554", + "821", + "562", + "368", + "906", + "187", + "472", + "552", + "261", "462", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "138", - "242", - "941", - "413", - "44", - "212", - "581", - "483", - "200", - "758", - "597", - "715", - "755", - "535", + "230", "288", - "317", - "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "87", - "14", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "807", - "680", - "576", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "695", - "306", - "126", - "1", - "932", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "859", - "627", - "657", - "901", - "102", - "709", - "814", - "968", - "241", - "153", - "286", - "84", + "64", + "909", + "617", "386", - "76", - "928", - "253", - "232", - "169", - "284", - "602", - "55", - "866", - "142", - "352", - "28", - "963", - "892", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "532", - "361", - "665", - "270", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "419", - "280", - "195", - "322", - "772", - "530", - "77", - "163", + "394", + "56", + "217", "101", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "422", - "810", - "362", - "704", - "738", - "898", - "966", - "543", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "835", + "396", + "963", + "14", "172", - "748", - "450", - "366", - "290", - "259", - "531", - "46", - "870", - "220", - "161", - "217", - "474", - "586", + "932", + "921", + "150", + "166", + "188", + "271", + "905", + "83", + "162", + "625", + "945", "452", - "965", - "557", + "132", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "173", + "928", + "898", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "397", + "920", + "273", + "245", + "725", + "263", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "245", - "264", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "81", + "632", + "302", + "203", "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "832", - "128", + "913", + "576", + "116", + "147", "663", - "140", - "167", - "848", - "967", - "890", - "796", - "582", - "134", - "843", - "293", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", - "165", - "298", - "325", - "363", - "722", - "472", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", + "29", + "598", "473", + "853", + "915", + "61", + "47", + "145", + "610", + "341", + "175", + "900", + "656", + "243", + "796", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "940", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "490", + "546", + "340", + "146", + "0", + "714", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "603", - "921", - "262", - "775", - "707", - "672", - "1001", - "771", - "326", - "346", - "770", - "90", + "198", + "176", "956", - "328", - "648", - "86", - "184", - "323", - "227", - "904", - "364", - "600", - "211", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "696", + "395", + "844", + "227", + "825", + "929", "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "853", - "593", - "337", - "705", - "809", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", + "35", + "648", + "559", + "37", + "870", + "1008", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", - "203", - "504", - "186", - "538", - "216", - "554", - "54", - "213", + "174", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "460", + "721", + "872", + "967", + "5", + "103", + "773", + "970", + "899", "69", - "944", - "45", - "463", - "718", - "453", - "804", - "486", - "647", - "347", - "666", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", + "534", + "784", + "601", + "856", + "954", "433", - "12", - "779", - "736", - "683", - "388", - "407", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", + "580", + "126", + "440", + "544", + "78", + "706", + "513", + "634", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "890", + "419", + "178", + "654", + "65", + "333", + "364", "577", - "477", - "803", - "62", - "26", - "11", - "984", - "139", "192", - "394", + "608", + "643", + "262", + "620", + "692", + "402", + "410", + "517", + "573", + "454", + "810", + "453", + "34", + "817", + "41", + "26", + "104", + "570", "689", - "497", "673", - "400", - "449", - "922", - "49", - "938", - "527", - "786", - "0", - "752", - "339", - "676", - "580", - "116", - "551", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "31", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", + "3", + "805", + "755", + "301", + "596", + "413", + "682", "106", - "721", - "945", - "182", - "525", - "692", + "709", + "13", + "590", + "169", "105", - "946", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "590", - "273", - "760", - "82", - "60", - "37", - "826", - "148", - "57", - "205", - "659", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", - "670", - "767", - "622", - "488", - "158", + "874", + "25", + "307", + "369", "887", - "688", - "795", + "807", + "75", + "992", + "355", + "137", + "331", + "626", "818", - "370", - "460", - "787", - "906", - "756", - "835", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "1008", + "305", + "130", "646", - "91", - "905", "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "750", - "71", - "390", + "148", + "629", + "572", "233", - "27", - "611", - "201", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "437", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", + "754", + "592", + "587", + "627", + "322", + "964", + "804", + "282", + "186", + "313", + "794", + "199", + "786", + "606", + "107", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", "485", - "272", - "902", - "520", - "214", - "746", - "682", - "29", - "263", - "579", - "844", - "398", - "309", - "560", - "589", - "435", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", "164", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "438", - "960", + "141", + "63", + "210", + "777", + "265", + "373", + "167", + "139", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "182", + "294", + "537", "744", - "412", - "229", - "74", - "754", - "869", - "67", - "749", + "873", + "49", + "984", + "346", + "936", + "996", + "19", + "58", + "436", + "622", "385", - "204", - "301", - "269", + "48", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "400", + "31", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "449", + "483", + "855", "281", - "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "271", - "858", - "244", - "909", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "812", "662", - "226", - "913", - "816", + "338", + "838", + "749", + "405", + "523", + "558", + "969", + "540", + "437", + "77", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "482", + "326", + "486", + "738", + "356", + "859", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "367", + "274", + "694", + "613", + "50", "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "6", - "215", "16", - "822", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "269", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "1001", + "865", + "586", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "131", + "15", + "604", + "324", + "92", + "836", + "712", + "715", + "18", + "774", + "225", + "806", "820", - "396", - "563", - "183", - "308", - "650", - "111", - "156" + "809", + "902", + "253", + "306", + "160", + "93", + "151", + "882", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "525", + "616", + "270", + "1", + "70", + "155", + "645", + "988", + "17", + "361", + "477", + "756", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "40", + "62", + "224", + "466", + "416", + "657", + "966", + "530", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "370", + "412", + "284", + "896", + "778", + "195", + "681", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:32.373451029Z" + "timestamp": "2025-11-27T04:03:14.157375-08:00" }, { "operation": "bfs", - "rtt_ns": 305932824, - "rtt_ms": 305, + "rtt_ns": 288718333, + "rtt_ms": 288, "checkpoint": 1, "bfs_start": "1", "bfs_radius": 10, "bfs_result": [ - "266", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "36", - "96", - "708", - "629", - "367", - "136", - "634", - "664", - "418", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "138", - "242", - "941", - "44", - "212", - "581", - "483", - "200", + "398", + "554", + "821", + "562", + "368", + "552", + "261", + "230", + "288", + "64", + "617", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", "758", - "597", - "755", + "358", + "708", + "86", + "834", + "185", + "98", + "538", + "515", + "128", + "46", + "278", "535", - "288", - "317", - "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", + "837", + "835", + "396", + "963", "14", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "576", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "695", - "306", - "1", + "172", "932", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "470", - "970", - "9", - "38", - "73", - "397", - "627", - "657", - "901", - "102", - "968", - "153", - "84", - "386", - "76", - "928", - "253", - "232", - "169", - "284", - "602", - "55", - "866", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "614", - "540", - "640", - "340", - "291", - "784", - "532", - "361", - "665", - "270", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", - "776", - "515", - "649", + "921", + "150", + "166", + "188", + "271", + "905", "83", - "131", - "568", - "552", - "384", - "265", - "553", - "32", - "769", "162", - "896", - "378", - "658", - "98", - "773", - "419", - "280", - "195", - "322", - "772", - "530", - "77", - "163", - "101", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "422", - "810", - "704", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", - "172", - "748", - "450", - "366", - "290", - "259", - "531", - "46", - "870", - "161", - "217", - "474", - "586", + "625", + "945", "452", - "965", + "132", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "448", + "750", + "277", + "788", + "74", + "196", + "588", + "404", + "389", + "123", + "173", + "928", + "898", + "110", + "193", + "962", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "240", + "359", + "325", + "908", + "177", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "397", + "920", + "273", + "725", + "263", + "438", + "432", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "387", - "512", - "257", - "104", - "115", - "344", - "961", - "302", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "264", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "81", + "302", + "203", "202", - "375", - "395", - "774", - "268", - "129", - "587", - "514", - "832", - "128", - "140", - "167", - "848", - "967", + "913", + "576", + "116", + "147", + "29", + "853", + "915", + "47", + "145", + "610", + "175", + "900", + "656", + "243", "796", - "582", - "134", - "843", - "293", - "788", - "331", - "157", - "42", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "940", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "490", + "546", + "340", + "146", + "411", + "290", + "470", + "618", + "785", "165", - "325", - "363", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "593", "401", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "184", - "323", - "227", - "904", - "364", - "600", - "211", + "198", + "176", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "524", + "867", "697", - "224", - "208", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "528", - "660", - "21", - "681", - "349", - "596", - "22", + "292", + "696", + "395", + "844", + "227", + "825", + "929", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "174", "430", - "333", - "324", - "565", - "448", - "88", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "460", + "872", + "967", "5", - "562", - "853", - "593", - "337", - "705", - "809", - "261", - "43", - "72", - "389", - "490", - "792", - "94", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", - "203", - "504", - "538", - "216", - "554", - "54", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "402", - "918", - "550", - "75", - "481", - "188", - "294", + "773", + "970", "69", - "944", - "45", - "718", - "804", - "486", - "647", - "347", - "578", - "584", - "296", - "13", - "517", - "166", - "154", + "534", + "784", + "856", + "954", "433", - "12", - "779", - "736", - "388", - "577", - "477", - "26", - "11", - "984", - "139", - "192", - "394", - "497", - "673", - "400", - "449", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", + "450", + "158", + "329", + "312", + "553", + "353", + "285", "580", - "116", - "868", - "574", - "120", - "908", - "411", - "92", - "181", - "806", + "440", + "544", + "78", + "706", + "513", + "634", + "392", + "640", + "826", + "408", "357", - "258", - "113", - "64", - "547", - "466", - "329", - "954", - "19", - "51", - "58", + "28", + "545", + "33", + "419", + "178", + "654", + "65", + "333", + "364", + "577", + "192", + "608", + "643", + "262", + "692", + "402", + "410", + "517", + "573", + "454", + "810", + "34", + "817", + "41", + "26", + "104", "570", - "559", - "716", - "237", - "17", - "713", - "85", + "673", + "3", + "755", + "301", + "596", + "682", "106", - "945", - "182", - "525", - "692", + "13", + "169", "105", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "273", - "760", - "82", - "60", - "37", - "826", - "148", - "57", - "659", - "24", - "260", - "432", - "544", - "342", - "768", - "670", - "767", - "622", - "488", - "158", + "25", + "307", + "369", "887", - "688", - "795", + "75", + "992", + "355", + "137", + "331", "818", - "370", - "460", - "787", - "756", - "835", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "750", - "71", - "390", + "148", + "629", + "572", "233", - "27", - "611", - "201", - "144", - "373", - "642", - "594", - "243", - "330", - "437", - "176", - "910", - "464", - "314", - "523", - "821", - "534", - "175", - "485", - "272", - "902", - "520", - "214", - "746", - "682", - "29", - "263", - "579", - "844", - "398", - "309", - "560", - "589", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "408", + "976", + "154", + "260", + "308", + "665", + "180", "628", - "561", - "558", - "438", - "960", - "229", - "74", + "10", + "481", + "422", + "215", + "320", + "337", "754", - "67", - "749", - "385", - "204", - "301", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "152", - "616", - "549", - "436", - "529", - "541", - "654", - "271", - "858", + "592", + "587", + "627", + "322", + "804", + "282", + "313", + "794", + "786", + "606", + "107", "244", - "662", - "226", - "913", - "816", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "215", - "16", - "822", - "820", - "396", - "563", - "183", - "308", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", + "140", + "772", + "659", "650", - "156" - ], - "timestamp": "2025-11-27T01:23:32.679900251Z" - }, - { - "operation": "bfs", - "rtt_ns": 290683159, - "rtt_ms": 290, - "checkpoint": 1, - "bfs_start": "2", - "bfs_radius": 10, - "bfs_result": [ - "266", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "36", - "96", - "708", - "629", - "367", - "136", - "664", - "418", - "114", - "882", - "524", - "336", - "440", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", + "688", + "585", + "568", + "829", + "115", "677", - "123", - "81", - "138", - "242", - "941", - "44", - "212", - "581", - "483", - "200", - "758", - "597", - "755", - "535", - "288", - "317", + "323", + "868", "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "14", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "576", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "112", + "824", "124", - "356", - "354", - "8", - "410", - "656", - "618", - "327", - "428", - "10", - "312", - "246", - "307", + "852", + "164", + "63", + "210", "777", - "292", - "416", - "359", - "572", - "93", - "900", - "695", - "306", - "274", - "170", - "122", - "30", - "179", - "470", - "970", - "9", - "38", + "265", + "373", + "167", + "139", + "242", + "527", + "521", + "641", + "296", + "532", + "94", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "346", + "996", + "19", + "58", + "436", + "622", + "385", + "48", + "248", "73", - "397", - "627", - "657", - "901", - "102", - "968", - "153", - "84", - "386", - "76", - "928", - "232", - "169", - "284", + "6", + "802", + "647", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", "602", - "866", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "614", - "540", - "640", - "340", - "291", - "784", - "532", - "361", - "665", - "270", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "384", - "265", - "553", - "32", - "769", - "162", - "896", "658", - "98", - "773", - "419", - "280", - "195", - "322", - "772", - "530", - "77", - "163", - "101", - "403", - "608", - "23", - "107", - "391", + "216", + "344", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "449", + "483", + "855", + "281", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "497", + "276", + "82", + "662", "338", - "422", - "810", - "704", - "898", - "966", - "543", - "278", - "100", - "837", - "516", + "749", + "405", + "523", + "558", + "540", + "437", + "77", + "257", + "179", + "768", + "716", + "97", "609", - "332", - "3", - "573", - "916", - "802", + "264", + "482", + "326", + "486", + "356", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "367", + "274", + "694", "50", - "546", - "172", - "748", - "450", - "366", - "290", - "259", - "531", - "46", - "161", - "217", - "474", - "586", - "452", - "965", - "897", - "537", - "518", - "304", - "198", - "873", - "668", - "467", - "256", - "387", + "16", + "519", + "168", "512", - "257", - "104", - "115", - "344", - "961", - "302", - "99", - "996", - "360", - "15", - "992", - "34", - "930", - "264", - "2", - "800", - "841", - "70", - "424", - "202", - "375", - "395", - "774", - "268", - "129", - "587", + "213", + "918", + "480", + "526", + "256", + "965", + "843", + "713", + "769", + "212", "514", - "832", - "128", - "140", - "848", - "967", - "796", - "582", - "134", - "293", - "788", - "331", + "36", "157", - "42", - "165", - "325", - "363", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "521", - "833", - "710", - "66", - "277", - "401", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", + "8", + "204", + "352", + "122", "328", - "648", - "86", + "269", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "586", + "161", + "522", + "100", "184", - "323", - "227", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", "904", - "364", + "488", + "259", + "332", + "775", + "912", + "131", + "15", + "604", + "324", + "92", + "836", + "712", + "18", + "774", + "225", + "806", + "820", + "809", + "902", + "253", + "306", + "160", + "93", + "882", + "149", + "668", + "695", + "533", + "611", + "961", + "152", + "289", + "38", "600", - "211", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", + "780", + "114", + "589", + "272", + "237", + "672", + "525", + "616", + "270", + "1", + "70", + "155", "645", - "528", - "660", - "21", - "681", + "17", + "361", + "477", + "756", + "518", + "746", + "642", + "417", + "922", + "200", + "669", "349", - "596", - "22", - "324", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "40", + "224", + "466", + "416", + "657", + "966", + "530", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "370", + "284", + "896", + "778", + "195", + "681", + "916", "565", - "448", - "88", - "5", + "660" + ], + "timestamp": "2025-11-27T04:03:14.446192-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 263147500, + "rtt_ms": 263, + "checkpoint": 1, + "bfs_start": "2", + "bfs_radius": 10, + "bfs_result": [ + "398", + "554", + "821", "562", - "593", - "337", - "809", + "368", + "552", "261", - "43", - "72", - "389", - "490", - "792", - "94", - "196", - "484", - "583", - "276", + "230", + "288", + "64", + "617", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", + "758", "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", + "708", + "86", + "834", + "185", + "98", "538", - "216", - "554", - "54", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "402", - "918", - "550", - "75", - "481", + "515", + "128", + "46", + "278", + "535", + "837", + "835", + "396", + "963", + "14", + "172", + "921", + "150", + "166", "188", - "294", - "69", - "944", - "45", - "718", - "804", - "647", - "347", - "578", - "584", - "296", - "13", - "517", - "166", - "154", - "433", - "12", - "779", - "736", - "388", - "577", - "477", - "26", - "11", - "984", - "139", - "192", - "394", - "497", - "673", - "400", - "449", - "922", - "49", - "938", - "527", - "786", - "752", - "676", - "580", - "116", - "868", - "120", - "411", - "92", - "181", - "357", - "258", - "113", - "64", - "547", - "466", - "329", - "954", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "106", + "271", + "905", + "83", + "162", + "625", "945", - "182", - "525", - "692", - "105", - "180", - "780", - "4", - "526", - "210", - "836", - "976", - "348", - "399", + "452", + "132", + "387", + "22", + "9", + "770", + "435", + "752", + "448", + "750", + "277", + "788", + "74", + "196", + "588", + "404", + "389", + "123", + "928", + "898", + "110", + "193", + "962", + "363", + "143", + "897", + "474", + "240", + "359", + "325", + "177", + "578", "316", - "617", - "33", - "108", - "852", - "392", - "112", - "929", - "321", + "581", + "724", + "54", + "944", + "684", + "850", + "397", + "920", "273", - "760", - "82", - "60", - "37", - "148", - "57", - "659", - "24", - "260", + "725", + "263", + "438", "432", - "544", - "342", - "768", - "670", - "767", - "622", - "488", - "158", - "887", - "688", - "795", - "818", - "370", - "460", - "787", - "756", - "835", + "266", + "304", + "833", + "583", "393", - "706", - "47", - "610", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "750", - "71", + "45", + "561", + "99", + "543", "390", - "233", - "27", - "611", - "201", - "144", - "373", - "642", - "594", - "330", - "437", - "176", - "910", - "464", - "314", - "523", - "821", - "534", - "175", - "485", - "272", - "902", - "520", + "384", + "866", + "208", + "309", + "360", "214", - "746", - "682", + "541", + "81", + "302", + "202", + "576", + "116", + "147", "29", - "263", - "579", - "398", - "309", - "560", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "628", - "561", - "558", - "438", - "960", - "229", - "74", - "754", - "67", - "749", - "385", - "204", - "301", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "152", - "616", + "915", + "47", + "145", + "610", + "175", + "900", + "656", + "796", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "940", + "808", + "528", "549", - "436", - "529", - "541", - "654", - "271", + "228", + "67", + "456", + "490", + "546", + "340", + "146", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "593", + "401", + "198", + "176", + "275", "858", - "244", - "662", - "226", + "614", + "232", + "579", + "560", "816", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "16", - "822", - "820", - "396", + "120", + "849", + "283", + "582", + "701", + "748", + "57", + "832", + "674", + "113", + "211", + "787", + "23", + "649", + "163", "563", - "308", - "650", - "156" - ], - "timestamp": "2025-11-27T01:23:32.971413207Z" - }, - { - "operation": "bfs", - "rtt_ns": 263803408, - "rtt_ms": 263, - "checkpoint": 1, - "bfs_start": "4", - "bfs_radius": 10, - "bfs_result": [ - "266", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "36", - "96", - "708", - "629", - "367", - "136", - "664", - "418", - "114", - "882", + "30", + "536", + "960", "524", - "336", - "440", - "677", - "123", - "81", - "138", - "242", - "44", - "212", - "581", - "483", - "200", + "697", + "292", + "395", + "227", + "825", + "929", + "35", + "648", + "559", + "37", + "418", + "652", + "848", + "27", + "707", + "911", + "71", "597", - "535", - "288", - "317", - "133", + "129", + "24", + "484", "174", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", "209", - "785", - "147", - "282", - "119", - "240", - "14", - "712", - "644", - "782", - "592", - "725", - "35", - "63", - "225", - "834", - "576", - "124", - "356", - "354", - "8", - "410", - "656", - "618", - "428", - "10", + "460", + "872", + "967", + "5", + "773", + "970", + "69", + "534", + "784", + "954", + "433", + "450", + "158", + "329", "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "695", - "306", - "274", - "170", - "122", - "30", - "179", - "470", - "9", - "38", - "73", - "397", - "627", - "657", - "901", - "102", - "968", - "84", - "386", - "76", - "928", - "232", - "169", - "284", - "866", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "614", - "540", + "553", + "353", + "285", + "580", + "440", + "544", + "78", + "706", + "513", + "392", "640", - "291", - "784", - "532", - "361", - "665", - "270", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "384", - "265", - "553", - "32", - "769", - "162", - "896", - "658", - "98", - "773", + "357", + "28", + "545", + "33", "419", - "280", - "195", - "322", - "772", - "530", - "77", - "163", - "101", - "403", + "178", + "654", + "65", + "364", + "577", + "192", "608", - "23", - "107", - "391", - "338", - "422", + "643", + "262", + "692", + "402", + "410", + "517", + "573", + "454", "810", - "704", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "609", - "332", - "916", - "802", - "50", - "546", - "172", - "748", - "450", - "290", - "259", - "531", - "46", - "161", - "217", - "474", - "586", - "452", - "965", - "897", - "537", - "518", - "304", - "198", - "873", - "467", - "256", - "387", - "512", - "257", - "104", - "115", - "344", - "99", - "996", - "360", - "15", - "992", "34", - "930", - "264", + "817", + "41", + "26", + "104", + "570", + "673", + "3", + "755", + "301", + "596", + "682", + "106", + "13", + "169", + "105", + "170", "800", - "841", - "70", - "424", - "202", - "375", - "395", - "774", - "268", - "129", + "4", + "25", + "307", + "887", + "75", + "992", + "355", + "137", + "331", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "976", + "154", + "260", + "308", + "665", + "180", + "628", + "10", + "481", + "422", + "320", + "337", + "754", + "592", "587", - "514", - "832", - "128", + "627", + "322", + "804", + "282", + "313", + "794", + "786", + "107", + "244", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", "140", - "848", - "967", - "796", - "582", - "134", - "293", - "788", - "42", - "165", - "325", - "363", - "912", - "641", + "772", + "659", + "650", + "529", + "7", + "792", + "135", + "348", + "420", + "84", "52", - "68", - "864", - "536", - "674", - "110", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "323", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "760", + "72", + "112", + "124", + "852", + "164", + "63", + "210", + "777", + "265", + "373", + "139", + "242", + "527", "521", - "833", + "641", + "296", + "532", + "94", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "346", + "996", + "19", + "58", + "436", + "622", + "385", + "48", + "248", + "73", + "6", + "802", + "647", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "449", + "483", + "281", "710", - "66", - "277", - "401", - "920", - "585", + "334", + "434", + "43", + "138", + "399", + "366", + "497", + "276", + "82", + "662", + "338", + "749", + "405", + "523", + "558", + "540", + "437", + "77", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "482", + "326", + "356", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "367", + "274", + "50", + "16", "519", "168", - "414", - "300", - "850", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "770", + "512", + "213", + "918", + "480", + "526", + "256", + "965", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", "328", - "648", + "269", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "586", + "161", + "522", + "100", "184", - "323", - "227", + "12", + "2", + "226", + "89", + "564", + "467", + "136", "904", - "364", + "488", + "259", + "332", + "775", + "912", + "131", + "15", + "324", + "92", + "836", + "712", + "18", + "774", + "225", + "820", + "809", + "902", + "306", + "160", + "93", + "882", + "149", + "668", + "695", + "533", + "611", + "961", + "152", + "289", + "38", "600", - "701", - "97", - "353", - "297", - "684", - "697", + "780", + "114", + "272", + "237", + "672", + "525", + "616", + "270", + "70", + "155", + "645", + "17", + "361", + "477", + "756", + "518", + "746", + "642", + "417", + "922", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "40", "224", - "208", - "283", - "185", - "588", + "466", + "416", + "657", + "966", + "530", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "370", + "284", + "896", + "778", + "195", + "681", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:14.70944-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 235733750, + "rtt_ms": 235, + "checkpoint": 1, + "bfs_start": "4", + "bfs_radius": 10, + "bfs_result": [ + "554", + "562", "368", - "48", - "197", + "552", + "261", + "288", + "64", + "617", + "386", + "776", + "394", + "56", + "217", + "101", "80", + "53", "612", - "645", - "528", - "660", - "21", - "681", - "596", + "375", + "901", + "644", + "358", + "708", + "834", + "185", + "98", + "538", + "515", + "128", + "46", + "278", + "535", + "837", + "835", + "396", + "963", + "14", + "172", + "921", + "150", + "166", + "188", + "905", + "83", + "162", + "625", + "945", + "452", + "132", + "387", "22", - "324", + "9", + "770", + "435", + "752", "448", - "88", - "5", - "562", - "593", - "337", - "809", - "261", - "43", - "72", - "389", - "792", + "277", + "788", + "74", "196", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "355", - "405", - "825", - "538", - "216", - "554", + "588", + "404", + "389", + "123", + "928", + "898", + "110", + "193", + "363", + "143", + "897", + "474", + "240", + "359", + "325", + "578", + "316", + "581", + "724", "54", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "402", - "918", - "550", - "75", - "481", - "188", - "294", - "69", "944", + "684", + "850", + "397", + "920", + "273", + "725", + "263", + "438", + "432", + "266", + "304", + "833", + "583", + "393", "45", - "804", - "647", - "347", - "578", + "561", + "99", + "543", + "390", + "384", + "866", + "208", + "309", + "360", + "214", + "81", + "202", + "576", + "116", + "147", + "29", + "915", + "47", + "145", + "610", + "175", + "900", + "656", + "796", + "428", + "424", + "464", + "354", + "569", + "808", + "528", + "549", + "228", + "67", + "456", + "546", + "146", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", "584", - "296", - "13", - "517", - "166", - "154", - "433", - "12", - "779", - "736", - "388", - "577", - "26", - "11", - "984", - "139", - "192", - "394", - "673", - "400", - "449", - "49", - "938", - "527", - "786", - "752", "676", - "580", - "116", + "297", + "593", + "401", + "198", + "176", + "614", + "232", + "579", + "560", + "816", "120", - "411", - "92", - "181", - "357", - "258", + "849", + "283", + "582", + "701", + "748", + "57", + "832", + "674", "113", - "64", - "547", - "466", - "329", - "954", - "19", - "51", - "58", - "559", - "716", - "237", - "17", - "713", - "85", - "106", - "945", - "182", - "525", - "692", - "105", - "180", - "780", - "4", - "526", - "210", - "836", - "348", - "316", - "617", - "33", - "108", - "852", - "392", - "112", + "787", + "23", + "649", + "163", + "30", + "536", + "960", + "524", + "697", + "292", + "395", + "227", + "825", "929", - "321", - "273", - "760", - "82", - "60", + "35", + "648", + "559", "37", - "148", - "57", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", "24", - "260", - "432", - "544", - "342", - "768", - "670", - "622", - "488", + "174", + "60", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "460", + "967", + "5", + "773", + "69", + "534", + "784", + "954", + "433", + "450", "158", + "329", + "312", + "553", + "353", + "285", + "580", + "440", + "544", + "78", + "706", + "513", + "392", + "640", + "357", + "28", + "545", + "33", + "419", + "654", + "65", + "364", + "577", + "192", + "608", + "643", + "262", + "692", + "402", + "410", + "517", + "454", + "810", + "34", + "817", + "41", + "26", + "104", + "673", + "301", + "596", + "682", + "106", + "13", + "169", + "105", + "170", + "800", + "4", + "25", + "307", "887", - "688", + "75", + "992", + "355", + "137", "818", - "370", - "460", - "787", - "756", - "835", - "393", - "706", - "47", - "610", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "404", - "320", - "829", - "132", - "143", - "652", - "194", - "801", - "137", - "71", - "390", + "148", + "629", + "572", "233", - "27", - "611", - "201", - "144", - "642", - "594", - "330", - "176", - "910", - "464", - "534", - "175", - "485", - "272", - "902", - "520", - "214", - "746", - "682", - "29", - "263", - "579", - "309", - "560", - "435", - "164", - "65", - "880", - "25", - "456", - "420", + "154", + "260", + "308", + "665", + "180", "628", - "561", - "558", - "438", - "960", - "74", + "10", + "481", + "422", + "320", + "337", "754", - "67", - "749", - "385", - "204", - "301", - "269", - "281", - "285", - "155", - "160", - "130", - "193", - "152", - "616", - "549", - "436", - "529", - "654", + "592", + "587", + "627", + "322", + "804", + "282", + "313", + "794", + "786", + "107", "244", - "662", - "226", - "816", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "16", - "820", - "396", - "308", + "670", + "32", + "280", + "142", + "268", + "342", + "246", + "841", + "140", + "772", "650", - "156" - ], - "timestamp": "2025-11-27T01:23:33.235580594Z" - }, - { - "operation": "bfs", - "rtt_ns": 266902369, - "rtt_ms": 266, - "checkpoint": 1, - "bfs_start": "3", - "bfs_radius": 10, - "bfs_result": [ - "266", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "36", - "96", - "708", - "629", - "367", - "136", - "664", - "418", - "114", - "882", - "524", - "336", - "440", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", + "688", + "585", + "568", + "829", + "115", "677", - "123", - "81", - "138", + "323", + "133", + "91", + "21", + "66", + "181", + "624", + "760", + "72", + "112", + "124", + "852", + "164", + "63", + "210", + "777", + "265", + "139", "242", + "527", + "521", + "641", + "296", + "532", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "996", + "19", + "58", + "436", + "622", + "385", + "48", + "248", + "73", + "6", + "802", + "647", + "300", + "400", + "547", + "144", "44", - "212", - "581", + "88", + "39", + "864", + "658", + "216", + "344", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "449", "483", - "200", - "597", - "535", - "288", + "281", + "710", + "334", + "43", + "138", + "276", + "82", + "662", + "338", + "749", + "405", + "558", + "540", + "77", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "482", + "326", + "356", + "102", "317", - "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "14", + "96", + "516", + "720", + "910", + "108", + "201", + "367", + "274", + "50", + "16", + "519", + "168", + "512", + "213", + "918", + "480", + "526", + "256", + "965", + "713", + "769", + "212", + "514", + "36", + "8", + "204", + "352", + "122", + "328", + "269", + "520", + "414", + "403", + "267", + "291", + "293", + "134", + "586", + "161", + "522", + "100", + "184", + "12", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "131", + "15", + "324", + "92", + "836", "712", - "644", - "782", - "592", - "725", - "35", - "63", - "962", + "18", + "774", "225", - "834", - "576", - "124", - "356", - "354", - "8", - "410", - "656", - "618", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", + "820", + "809", + "902", + "306", + "160", "93", - "900", + "882", + "149", "695", - "306", - "274", - "170", - "122", - "30", - "179", - "470", - "9", + "533", + "611", + "152", + "289", "38", - "73", - "397", - "627", + "600", + "780", + "114", + "272", + "237", + "672", + "525", + "616", + "270", + "70", + "155", + "645", + "17", + "361", + "756", + "518", + "746", + "642", + "417", + "200", + "258", + "68", + "782", + "548", + "391", + "197", + "531", + "704", + "194", + "40", + "224", + "466", + "416", "657", - "901", - "102", - "968", - "84", - "386", + "966", + "530", + "171", + "550", + "880", "76", - "928", - "232", - "169", + "11", + "594", + "370", "284", - "866", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "614", - "540", - "640", - "340", - "291", - "784", - "532", - "361", - "665", - "270", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "384", - "265", - "553", - "32", - "769", - "162", "896", - "658", - "98", - "773", - "419", - "280", "195", - "322", - "772", - "530", - "77", - "163", + "681", + "916", + "660" + ], + "timestamp": "2025-11-27T04:03:14.945279-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 247576333, + "rtt_ms": 247, + "checkpoint": 1, + "bfs_start": "3", + "bfs_radius": 10, + "bfs_result": [ + "398", + "554", + "562", + "368", + "552", + "261", + "288", + "64", + "617", + "386", + "776", + "394", + "56", + "217", "101", - "403", - "608", - "23", - "107", - "391", - "338", - "422", - "810", - "704", - "898", - "966", - "543", + "80", + "53", + "612", + "375", + "901", + "644", + "358", + "708", + "86", + "834", + "185", + "98", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "609", - "332", - "3", - "916", - "802", - "50", - "546", + "835", + "396", + "963", + "14", "172", - "748", - "450", - "290", - "259", - "531", - "46", - "161", - "217", - "474", - "586", + "921", + "150", + "166", + "188", + "905", + "83", + "162", + "625", + "945", "452", - "965", + "132", + "387", + "22", + "9", + "770", + "435", + "752", + "448", + "750", + "277", + "788", + "74", + "196", + "588", + "404", + "389", + "123", + "928", + "898", + "110", + "193", + "962", + "363", + "143", "897", - "537", - "518", + "474", + "240", + "359", + "325", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "397", + "920", + "273", + "725", + "263", + "438", + "432", + "266", "304", - "198", - "873", - "467", - "256", - "387", - "512", - "257", - "104", - "115", - "344", - "961", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "264", - "800", - "841", - "70", - "424", + "214", + "81", "202", - "375", - "395", - "774", - "268", - "129", - "587", - "514", - "832", - "128", - "140", - "848", - "967", + "576", + "116", + "147", + "29", + "915", + "47", + "145", + "610", + "175", + "900", + "656", "796", - "582", - "134", - "293", - "788", - "331", - "42", + "428", + "424", + "822", + "464", + "354", + "569", + "808", + "528", + "549", + "228", + "67", + "456", + "546", + "340", + "146", + "411", + "290", + "470", + "618", + "785", "165", - "325", - "363", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "521", - "833", - "710", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "593", "401", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "770", - "328", - "648", - "86", - "184", - "323", - "227", - "904", - "364", - "600", - "211", + "198", + "176", "275", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "57", + "832", + "674", + "113", + "211", + "787", + "23", + "649", + "163", + "30", + "536", + "960", + "524", "697", - "224", - "208", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "612", - "645", - "528", - "660", - "21", - "681", - "596", - "22", - "324", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "809", - "261", - "43", - "72", - "389", - "792", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "355", - "405", + "292", + "395", + "227", "825", - "538", - "216", - "554", - "54", - "213", + "929", + "35", + "648", + "559", + "37", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "174", + "60", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "482", - "53", - "402", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "460", + "967", + "5", + "773", "69", - "944", - "45", - "718", - "804", - "647", - "347", - "578", - "584", - "296", - "13", - "517", - "166", - "154", + "534", + "784", + "954", "433", - "12", - "779", - "736", - "388", + "450", + "158", + "329", + "312", + "553", + "353", + "285", + "580", + "440", + "544", + "78", + "706", + "513", + "392", + "640", + "357", + "28", + "545", + "33", + "419", + "654", + "65", + "364", "577", - "26", - "11", - "984", - "139", "192", - "394", + "608", + "643", + "262", + "692", + "402", + "410", + "517", + "454", + "810", + "34", + "817", + "41", + "26", + "104", "673", - "400", - "449", - "49", - "938", - "527", - "786", - "752", - "676", - "580", - "116", - "868", - "120", - "411", - "92", - "181", - "357", - "258", - "113", - "64", - "547", - "466", - "329", - "954", - "19", - "51", - "58", - "559", - "716", - "237", - "17", - "713", - "85", + "3", + "301", + "596", + "682", "106", - "945", - "182", - "525", - "692", + "13", + "169", "105", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "348", - "316", - "617", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "273", - "760", - "82", - "60", - "37", - "148", - "57", - "24", - "260", - "432", - "544", - "342", - "768", - "670", - "622", - "488", - "158", + "25", + "307", "887", - "688", + "75", + "992", + "355", + "137", + "331", "818", - "370", - "460", - "787", - "756", - "835", - "393", - "706", - "47", - "610", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "404", - "320", - "829", - "132", - "143", - "652", - "194", - "801", - "137", - "750", - "71", - "390", + "148", + "629", + "572", "233", - "27", - "611", - "201", - "144", - "642", - "594", - "330", - "176", - "910", - "464", - "314", - "534", - "175", - "485", - "272", - "902", - "520", - "214", - "746", - "682", - "29", - "263", - "579", - "398", - "309", - "560", - "435", - "164", - "65", - "880", - "25", - "456", - "420", + "154", + "260", + "308", + "665", + "180", "628", - "561", - "558", - "438", - "960", - "74", + "10", + "481", + "422", + "320", + "337", "754", - "67", - "749", - "385", - "204", - "301", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "152", - "616", - "549", - "436", - "529", - "654", + "592", + "587", + "627", + "322", + "804", + "282", + "313", + "794", + "786", + "107", "244", - "662", - "226", - "816", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "16", - "822", - "820", - "396", - "308", + "670", + "32", + "280", + "142", + "268", + "342", + "246", + "841", + "140", + "772", "650", - "156" - ], - "timestamp": "2025-11-27T01:23:33.502844902Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2235034, - "rtt_ms": 2.235034, - "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.505122745Z" - }, - { - "operation": "add_edge", - "rtt_ns": 4332578, - "rtt_ms": 4.332578, - "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.507276579Z" - }, - { - "operation": "add_edge", - "rtt_ns": 4493558, - "rtt_ms": 4.493558, - "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.507390879Z" + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "323", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "760", + "72", + "112", + "124", + "852", + "164", + "63", + "210", + "777", + "265", + "139", + "242", + "527", + "521", + "641", + "296", + "532", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "996", + "19", + "58", + "436", + "622", + "385", + "48", + "248", + "73", + "6", + "802", + "647", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "658", + "216", + "344", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "449", + "483", + "281", + "710", + "334", + "43", + "138", + "276", + "82", + "662", + "338", + "749", + "405", + "558", + "540", + "77", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "482", + "326", + "356", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "367", + "274", + "50", + "16", + "519", + "168", + "512", + "213", + "918", + "480", + "526", + "256", + "965", + "713", + "769", + "212", + "514", + "36", + "8", + "204", + "352", + "122", + "328", + "269", + "520", + "414", + "403", + "267", + "291", + "293", + "134", + "586", + "161", + "522", + "100", + "184", + "12", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "131", + "15", + "324", + "92", + "836", + "712", + "18", + "774", + "225", + "820", + "809", + "902", + "306", + "160", + "93", + "882", + "149", + "695", + "533", + "611", + "961", + "152", + "289", + "38", + "600", + "780", + "114", + "272", + "237", + "672", + "525", + "616", + "270", + "70", + "155", + "645", + "17", + "361", + "756", + "518", + "746", + "642", + "417", + "200", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "40", + "224", + "466", + "416", + "657", + "966", + "530", + "171", + "550", + "880", + "76", + "11", + "594", + "314", + "370", + "284", + "896", + "778", + "195", + "681", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:15.19296-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1147459, + "rtt_ms": 1.147459, + "checkpoint": 0, + "vertex_from": "9", + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:15.194165-08:00" }, { "operation": "add_edge", - "rtt_ns": 4496948, - "rtt_ms": 4.496948, + "rtt_ns": 1249625, + "rtt_ms": 1.249625, "checkpoint": 0, "vertex_from": "9", "vertex_to": "482", - "timestamp": "2025-11-27T01:23:33.507435549Z" + "timestamp": "2025-11-27T04:03:15.194256-08:00" }, { "operation": "add_edge", - "rtt_ns": 4467308, - "rtt_ms": 4.467308, + "rtt_ns": 1427334, + "rtt_ms": 1.427334, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:33.507445099Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.194419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2413323, - "rtt_ms": 2.413323, + "rtt_ns": 1466542, + "rtt_ms": 1.466542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:33.507539748Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:15.194438-08:00" }, { "operation": "add_edge", - "rtt_ns": 4607487, - "rtt_ms": 4.607487, + "rtt_ns": 1513125, + "rtt_ms": 1.513125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "15", - "timestamp": "2025-11-27T01:23:33.507587338Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:15.194529-08:00" }, { "operation": "add_edge", - "rtt_ns": 4654127, - "rtt_ms": 4.654127, + "rtt_ns": 1586916, + "rtt_ms": 1.586916, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:33.507612658Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.194589-08:00" }, { "operation": "add_edge", - "rtt_ns": 4751657, - "rtt_ms": 4.751657, + "rtt_ns": 1721292, + "rtt_ms": 1.721292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.507722468Z" + "vertex_to": "15", + "timestamp": "2025-11-27T04:03:15.194765-08:00" }, { "operation": "add_edge", - "rtt_ns": 4794117, - "rtt_ms": 4.794117, + "rtt_ns": 1751417, + "rtt_ms": 1.751417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:33.507780568Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.194778-08:00" }, { "operation": "add_edge", - "rtt_ns": 4827687, - "rtt_ms": 4.827687, + "rtt_ns": 1817916, + "rtt_ms": 1.817916, "checkpoint": 0, "vertex_from": "9", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.507789008Z" + "timestamp": "2025-11-27T04:03:15.194851-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1973625, + "rtt_ms": 1.973625, + "checkpoint": 0, + "vertex_from": "9", + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:15.194999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095126, - "rtt_ms": 1.095126, + "rtt_ns": 1153459, + "rtt_ms": 1.153459, "checkpoint": 0, "vertex_from": "9", "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.508487695Z" + "timestamp": "2025-11-27T04:03:15.195575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236716, - "rtt_ms": 1.236716, + "rtt_ns": 1424167, + "rtt_ms": 1.424167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:33.508515885Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:15.195592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189386, - "rtt_ms": 1.189386, + "rtt_ns": 1402750, + "rtt_ms": 1.40275, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:33.508639595Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:15.19566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244986, - "rtt_ms": 1.244986, + "rtt_ns": 1461708, + "rtt_ms": 1.461708, "checkpoint": 0, "vertex_from": "9", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:33.508684765Z" + "timestamp": "2025-11-27T04:03:15.1959-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1386500, + "rtt_ms": 1.3865, + "checkpoint": 0, + "vertex_from": "9", + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:15.195917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227497, - "rtt_ms": 1.227497, + "rtt_ns": 1963583, + "rtt_ms": 1.963583, "checkpoint": 0, "vertex_from": "9", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.508777135Z" + "timestamp": "2025-11-27T04:03:15.196554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220727, - "rtt_ms": 1.220727, + "rtt_ns": 1837750, + "rtt_ms": 1.83775, "checkpoint": 0, "vertex_from": "9", "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.508810565Z" + "timestamp": "2025-11-27T04:03:15.196604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211516, - "rtt_ms": 1.211516, + "rtt_ns": 1865125, + "rtt_ms": 1.865125, "checkpoint": 0, "vertex_from": "9", "vertex_to": "28", - "timestamp": "2025-11-27T01:23:33.508826794Z" + "timestamp": "2025-11-27T04:03:15.196644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777974, - "rtt_ms": 1.777974, + "rtt_ns": 1230834, + "rtt_ms": 1.230834, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:33.509560022Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.196806-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383303, - "rtt_ms": 2.383303, + "rtt_ns": 1230542, + "rtt_ms": 1.230542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:33.510108311Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:15.196823-08:00" }, { "operation": "add_edge", - "rtt_ns": 3026651, - "rtt_ms": 3.026651, + "rtt_ns": 1975709, + "rtt_ms": 1.975709, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.510817809Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:15.196828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272673, - "rtt_ms": 2.272673, + "rtt_ns": 1053000, + "rtt_ms": 1.053, "checkpoint": 0, "vertex_from": "9", "vertex_to": "600", - "timestamp": "2025-11-27T01:23:33.510914658Z" + "timestamp": "2025-11-27T04:03:15.196956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2526263, - "rtt_ms": 2.526263, + "rtt_ns": 1983292, + "rtt_ms": 1.983292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:33.511018168Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:15.196983-08:00" }, { "operation": "add_edge", - "rtt_ns": 2728732, - "rtt_ms": 2.728732, + "rtt_ns": 1337125, + "rtt_ms": 1.337125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "186", - "timestamp": "2025-11-27T01:23:33.511415477Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.196999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2686372, - "rtt_ms": 2.686372, + "rtt_ns": 1112750, + "rtt_ms": 1.11275, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:33.511515116Z" + "vertex_to": "186", + "timestamp": "2025-11-27T04:03:15.197031-08:00" }, { "operation": "add_edge", - "rtt_ns": 2995441, - "rtt_ms": 2.995441, + "rtt_ns": 1172583, + "rtt_ms": 1.172583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:33.511807776Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.197996-08:00" }, { "operation": "add_edge", - "rtt_ns": 3095200, - "rtt_ms": 3.0952, + "rtt_ns": 1366792, + "rtt_ms": 1.366792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "11", - "timestamp": "2025-11-27T01:23:33.511875435Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:15.198012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814574, - "rtt_ms": 1.814574, + "rtt_ns": 1287292, + "rtt_ms": 1.287292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.511924575Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:15.198245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2400883, - "rtt_ms": 2.400883, + "rtt_ns": 1702333, + "rtt_ms": 1.702333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "803", - "timestamp": "2025-11-27T01:23:33.511963485Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:03:15.198259-08:00" }, { "operation": "add_edge", - "rtt_ns": 3455080, - "rtt_ms": 3.45508, + "rtt_ns": 1667084, + "rtt_ms": 1.667084, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.511973445Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:15.198272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818124, - "rtt_ms": 1.818124, + "rtt_ns": 1581625, + "rtt_ms": 1.581625, "checkpoint": 0, "vertex_from": "9", "vertex_to": "610", - "timestamp": "2025-11-27T01:23:33.512638713Z" + "timestamp": "2025-11-27T04:03:15.198415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197784, - "rtt_ms": 2.197784, + "rtt_ns": 1689292, + "rtt_ms": 1.689292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:33.513114592Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:03:15.198497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399245, - "rtt_ms": 1.399245, + "rtt_ns": 1524458, + "rtt_ms": 1.524458, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.513208641Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1240756, - "rtt_ms": 1.240756, - "checkpoint": 0, - "vertex_from": "310", - "timestamp": "2025-11-27T01:23:33.513208951Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:03:15.198509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800584, - "rtt_ms": 1.800584, + "rtt_ns": 1600792, + "rtt_ms": 1.600792, "checkpoint": 0, "vertex_from": "9", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:33.513218691Z" + "timestamp": "2025-11-27T04:03:15.198601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350326, - "rtt_ms": 1.350326, + "rtt_ns": 1749417, + "rtt_ms": 1.749417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.513227451Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:15.198782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787225, - "rtt_ms": 1.787225, + "rtt_ns": 1334666, + "rtt_ms": 1.334666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:33.513304441Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:15.199332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294313, - "rtt_ms": 2.294313, + "rtt_ns": 1341583, + "rtt_ms": 1.341583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:33.513314631Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.199355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339946, - "rtt_ms": 1.339946, + "rtt_ns": 1314917, + "rtt_ms": 1.314917, "checkpoint": 0, "vertex_from": "9", "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.513314851Z" + "timestamp": "2025-11-27T04:03:15.199588-08:00" }, { "operation": "add_edge", - "rtt_ns": 762318, - "rtt_ms": 0.762318, + "rtt_ns": 1372583, + "rtt_ms": 1.372583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:33.513402361Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:03:15.199619-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1475250, + "rtt_ms": 1.47525, + "checkpoint": 0, + "vertex_from": "310", + "timestamp": "2025-11-27T04:03:15.199735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505406, - "rtt_ms": 1.505406, + "rtt_ns": 1441375, + "rtt_ms": 1.441375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:33.513432631Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:15.199857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061296, - "rtt_ms": 1.061296, + "rtt_ns": 1375417, + "rtt_ms": 1.375417, "checkpoint": 0, "vertex_from": "9", "vertex_to": "484", - "timestamp": "2025-11-27T01:23:33.514177048Z" + "timestamp": "2025-11-27T04:03:15.199873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582906, - "rtt_ms": 1.582906, + "rtt_ns": 1102333, + "rtt_ms": 1.102333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:33.514804737Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:03:15.199887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507686, - "rtt_ms": 1.507686, + "rtt_ns": 1430416, + "rtt_ms": 1.430416, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "342", - "timestamp": "2025-11-27T01:23:33.514824597Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:15.19994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596176, - "rtt_ms": 1.596176, + "rtt_ns": 1601166, + "rtt_ms": 1.601166, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "358", - "timestamp": "2025-11-27T01:23:33.514825277Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:15.200207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637715, - "rtt_ms": 1.637715, + "rtt_ns": 1602542, + "rtt_ms": 1.602542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.514847666Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:03:15.201222-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1540685, - "rtt_ms": 1.540685, + "rtt_ns": 2075542, + "rtt_ms": 2.075542, "checkpoint": 0, "vertex_from": "425", - "timestamp": "2025-11-27T01:23:33.514849786Z" + "timestamp": "2025-11-27T04:03:15.201411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459445, - "rtt_ms": 1.459445, + "rtt_ns": 1834375, + "rtt_ms": 1.834375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:33.514863456Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:03:15.201423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776805, - "rtt_ms": 1.776805, + "rtt_ns": 1565709, + "rtt_ms": 1.565709, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "310", - "timestamp": "2025-11-27T01:23:33.514986356Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:15.201439-08:00" }, { "operation": "add_edge", - "rtt_ns": 2419193, - "rtt_ms": 2.419193, + "rtt_ns": 1810084, + "rtt_ms": 1.810084, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:33.515736914Z" + "vertex_to": "310", + "timestamp": "2025-11-27T04:03:15.201546-08:00" }, { "operation": "add_edge", - "rtt_ns": 2410023, - "rtt_ms": 2.410023, + "rtt_ns": 2316458, + "rtt_ms": 2.316458, "checkpoint": 0, "vertex_from": "9", "vertex_to": "90", - "timestamp": "2025-11-27T01:23:33.515844484Z" + "timestamp": "2025-11-27T04:03:15.202174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001145, - "rtt_ms": 2.001145, + "rtt_ns": 2835542, + "rtt_ms": 2.835542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:33.516179473Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:15.202191-08:00" }, { "operation": "add_edge", - "rtt_ns": 2069014, - "rtt_ms": 2.069014, + "rtt_ns": 2983125, + "rtt_ms": 2.983125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:33.516894651Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:15.20287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131254, - "rtt_ms": 2.131254, + "rtt_ns": 1663042, + "rtt_ms": 1.663042, "checkpoint": 0, "vertex_from": "9", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.51698058Z" + "timestamp": "2025-11-27T04:03:15.202887-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009664, - "rtt_ms": 2.009664, + "rtt_ns": 1611208, + "rtt_ms": 1.611208, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:33.51699778Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.203035-08:00" }, { "operation": "add_edge", - "rtt_ns": 2781772, - "rtt_ms": 2.781772, + "rtt_ns": 1609375, + "rtt_ms": 1.609375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:33.517588859Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:15.203049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784415, - "rtt_ms": 1.784415, + "rtt_ns": 3122750, + "rtt_ms": 3.12275, "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "342", - "timestamp": "2025-11-27T01:23:33.517631359Z" + "vertex_from": "9", + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:15.203063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2874552, - "rtt_ms": 2.874552, + "rtt_ns": 2872958, + "rtt_ms": 2.872958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "425", - "timestamp": "2025-11-27T01:23:33.517724898Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:15.203081-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038234, - "rtt_ms": 2.038234, + "rtt_ns": 1543166, + "rtt_ms": 1.543166, "checkpoint": 0, "vertex_from": "10", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:33.517776368Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1641375, - "rtt_ms": 1.641375, - "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.517822248Z" + "timestamp": "2025-11-27T04:03:15.20309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2998311, - "rtt_ms": 2.998311, + "rtt_ns": 1986875, + "rtt_ms": 1.986875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:33.517825198Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:03:15.203398-08:00" }, { "operation": "add_edge", - "rtt_ns": 2979072, - "rtt_ms": 2.979072, + "rtt_ns": 1391291, + "rtt_ms": 1.391291, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.517843598Z" + "vertex_from": "10", + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.203584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548766, - "rtt_ms": 1.548766, + "rtt_ns": 1143584, + "rtt_ms": 1.143584, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.518548616Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.204015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667595, - "rtt_ms": 1.667595, + "rtt_ns": 1978500, + "rtt_ms": 1.9785, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.518563516Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:03:15.204153-08:00" }, { "operation": "add_edge", - "rtt_ns": 945417, - "rtt_ms": 0.945417, + "rtt_ns": 1443041, + "rtt_ms": 1.443041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:33.518578706Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.204524-08:00" }, { "operation": "add_edge", - "rtt_ns": 891718, - "rtt_ms": 0.891718, + "rtt_ns": 1451333, + "rtt_ms": 1.451333, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.518617646Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.204542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660276, - "rtt_ms": 1.660276, + "rtt_ns": 1663041, + "rtt_ms": 1.663041, "checkpoint": 0, "vertex_from": "10", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.518642446Z" + "timestamp": "2025-11-27T04:03:15.204551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151337, - "rtt_ms": 1.151337, + "rtt_ns": 1154209, + "rtt_ms": 1.154209, "checkpoint": 0, "vertex_from": "10", "vertex_to": "305", - "timestamp": "2025-11-27T01:23:33.518975085Z" + "timestamp": "2025-11-27T04:03:15.204553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266436, - "rtt_ms": 1.266436, + "rtt_ns": 1514750, + "rtt_ms": 1.51475, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.519092774Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:15.204565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314026, - "rtt_ms": 1.314026, + "rtt_ns": 1856250, + "rtt_ms": 1.85625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.519093274Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:15.20492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638995, - "rtt_ms": 1.638995, + "rtt_ns": 1898000, + "rtt_ms": 1.898, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:33.519230114Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:15.204934-08:00" }, { "operation": "add_edge", - "rtt_ns": 734968, - "rtt_ms": 0.734968, + "rtt_ns": 1664584, + "rtt_ms": 1.664584, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.519286804Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:15.20525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456386, - "rtt_ms": 1.456386, + "rtt_ns": 1321458, + "rtt_ms": 1.321458, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.519301774Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.205476-08:00" }, { "operation": "add_edge", - "rtt_ns": 815438, - "rtt_ms": 0.815438, + "rtt_ns": 1474916, + "rtt_ms": 1.474916, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "14", - "timestamp": "2025-11-27T01:23:33.519380614Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.205491-08:00" }, { "operation": "add_edge", - "rtt_ns": 854567, - "rtt_ms": 0.854567, + "rtt_ns": 1259417, + "rtt_ms": 1.259417, "checkpoint": 0, "vertex_from": "10", "vertex_to": "17", - "timestamp": "2025-11-27T01:23:33.519435103Z" + "timestamp": "2025-11-27T04:03:15.205802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219646, - "rtt_ms": 1.219646, + "rtt_ns": 1371542, + "rtt_ms": 1.371542, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.519863162Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:15.205938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288136, - "rtt_ms": 1.288136, + "rtt_ns": 1493458, + "rtt_ms": 1.493458, "checkpoint": 0, "vertex_from": "10", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.519906642Z" + "timestamp": "2025-11-27T04:03:15.206048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500976, - "rtt_ms": 1.500976, + "rtt_ns": 1639125, + "rtt_ms": 1.639125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.52059518Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.206193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675575, - "rtt_ms": 1.675575, + "rtt_ns": 1284167, + "rtt_ms": 1.284167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:33.5206519Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.206206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893464, - "rtt_ms": 1.893464, + "rtt_ns": 1282417, + "rtt_ms": 1.282417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:33.521125038Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:15.206217-08:00" }, { "operation": "add_edge", - "rtt_ns": 2070474, - "rtt_ms": 2.070474, + "rtt_ns": 1704042, + "rtt_ms": 1.704042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:33.521164758Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:03:15.206229-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125494, - "rtt_ms": 2.125494, + "rtt_ns": 1888167, + "rtt_ms": 1.888167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:33.521428868Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.207365-08:00" }, { "operation": "add_edge", - "rtt_ns": 2263343, - "rtt_ms": 2.263343, + "rtt_ns": 2149375, + "rtt_ms": 2.149375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.521551877Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:15.2074-08:00" }, { "operation": "add_edge", - "rtt_ns": 2343223, - "rtt_ms": 2.343223, + "rtt_ns": 1694792, + "rtt_ms": 1.694792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.521724997Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:15.207635-08:00" }, { "operation": "add_edge", - "rtt_ns": 2935992, - "rtt_ms": 2.935992, + "rtt_ns": 2160834, + "rtt_ms": 2.160834, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:33.522371725Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:15.207652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2540593, - "rtt_ms": 2.540593, + "rtt_ns": 1615584, + "rtt_ms": 1.615584, "checkpoint": 0, "vertex_from": "10", "vertex_to": "906", - "timestamp": "2025-11-27T01:23:33.522406585Z" + "timestamp": "2025-11-27T04:03:15.207665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2587292, - "rtt_ms": 2.587292, + "rtt_ns": 1642792, + "rtt_ms": 1.642792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:33.522495004Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:15.207861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919864, - "rtt_ms": 1.919864, + "rtt_ns": 2073625, + "rtt_ms": 2.073625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:33.522573554Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.207876-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053474, - "rtt_ms": 2.053474, + "rtt_ns": 1651875, + "rtt_ms": 1.651875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "61", - "timestamp": "2025-11-27T01:23:33.522654024Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.207882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547416, - "rtt_ms": 1.547416, + "rtt_ns": 1723084, + "rtt_ms": 1.723084, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.522674404Z" + "vertex_to": "61", + "timestamp": "2025-11-27T04:03:15.20793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569076, - "rtt_ms": 1.569076, + "rtt_ns": 1757792, + "rtt_ms": 1.757792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "92", - "timestamp": "2025-11-27T01:23:33.522737294Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:15.207952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389785, - "rtt_ms": 1.389785, + "rtt_ns": 1411875, + "rtt_ms": 1.411875, "checkpoint": 0, "vertex_from": "10", "vertex_to": "244", - "timestamp": "2025-11-27T01:23:33.522821313Z" + "timestamp": "2025-11-27T04:03:15.208813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278846, - "rtt_ms": 1.278846, + "rtt_ns": 1275542, + "rtt_ms": 1.275542, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:33.522832223Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.208929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133906, - "rtt_ms": 1.133906, + "rtt_ns": 1361083, + "rtt_ms": 1.361083, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.522860593Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:15.208997-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 686188, - "rtt_ms": 0.686188, + "operation": "add_edge", + "rtt_ns": 1712333, + "rtt_ms": 1.712333, "checkpoint": 0, - "vertex_from": "860", - "timestamp": "2025-11-27T01:23:33.523183862Z" + "vertex_from": "10", + "vertex_to": "92", + "timestamp": "2025-11-27T04:03:15.20908-08:00" }, { "operation": "add_edge", - "rtt_ns": 812227, - "rtt_ms": 0.812227, + "rtt_ns": 1416500, + "rtt_ms": 1.4165, "checkpoint": 0, "vertex_from": "10", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.523185252Z" + "timestamp": "2025-11-27T04:03:15.209082-08:00" }, { "operation": "add_edge", - "rtt_ns": 596588, - "rtt_ms": 0.596588, + "rtt_ns": 1297916, + "rtt_ms": 1.297916, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.523251832Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:15.20916-08:00" }, { "operation": "add_edge", - "rtt_ns": 847527, - "rtt_ms": 0.847527, + "rtt_ns": 1418792, + "rtt_ms": 1.418792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:33.523256832Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.209371-08:00" }, { "operation": "add_edge", - "rtt_ns": 717198, - "rtt_ms": 0.717198, + "rtt_ns": 1608000, + "rtt_ms": 1.608, "checkpoint": 0, "vertex_from": "10", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.523292272Z" + "timestamp": "2025-11-27T04:03:15.209491-08:00" }, { "operation": "add_edge", - "rtt_ns": 777698, - "rtt_ms": 0.777698, + "rtt_ns": 1587667, + "rtt_ms": 1.587667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.523453562Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.209518-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1901041, + "rtt_ms": 1.901041, + "checkpoint": 0, + "vertex_from": "860", + "timestamp": "2025-11-27T04:03:15.209779-08:00" }, { "operation": "add_edge", - "rtt_ns": 779947, - "rtt_ms": 0.779947, + "rtt_ns": 1093250, + "rtt_ms": 1.09325, "checkpoint": 0, "vertex_from": "10", "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.523523541Z" + "timestamp": "2025-11-27T04:03:15.209907-08:00" }, { "operation": "add_edge", - "rtt_ns": 707588, - "rtt_ms": 0.707588, + "rtt_ns": 1390375, + "rtt_ms": 1.390375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.523541541Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:15.21032-08:00" }, { "operation": "add_edge", - "rtt_ns": 786448, - "rtt_ms": 0.786448, + "rtt_ns": 1334958, + "rtt_ms": 1.334958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:33.523609171Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:15.210333-08:00" }, { "operation": "add_edge", - "rtt_ns": 758978, - "rtt_ms": 0.758978, + "rtt_ns": 1450542, + "rtt_ms": 1.450542, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:33.523620941Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:15.210533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526356, - "rtt_ms": 1.526356, + "rtt_ns": 1385250, + "rtt_ms": 1.38525, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.524784808Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:15.210546-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210664, - "rtt_ms": 2.210664, + "rtt_ns": 1640417, + "rtt_ms": 1.640417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:33.525398466Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:15.210722-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176634, - "rtt_ms": 2.176634, + "rtt_ns": 1307041, + "rtt_ms": 1.307041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "628", - "timestamp": "2025-11-27T01:23:33.525470546Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:15.210829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303833, - "rtt_ms": 2.303833, + "rtt_ns": 1641583, + "rtt_ms": 1.641583, "checkpoint": 0, "vertex_from": "10", "vertex_to": "860", - "timestamp": "2025-11-27T01:23:33.525488395Z" + "timestamp": "2025-11-27T04:03:15.21142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981114, - "rtt_ms": 1.981114, + "rtt_ns": 2061208, + "rtt_ms": 2.061208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.525505615Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.211433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121463, - "rtt_ms": 2.121463, + "rtt_ns": 2035083, + "rtt_ms": 2.035083, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:33.525576835Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:03:15.211527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055204, - "rtt_ms": 2.055204, + "rtt_ns": 1744917, + "rtt_ms": 1.744917, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.525598805Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.212079-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039264, - "rtt_ms": 2.039264, + "rtt_ns": 2184667, + "rtt_ms": 2.184667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.525650175Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.212094-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087424, - "rtt_ms": 2.087424, + "rtt_ns": 1818041, + "rtt_ms": 1.818041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:33.525709625Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.212139-08:00" }, { "operation": "add_edge", - "rtt_ns": 2522683, - "rtt_ms": 2.522683, + "rtt_ns": 1432875, + "rtt_ms": 1.432875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:33.525775815Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.212155-08:00" }, { "operation": "add_edge", - "rtt_ns": 994517, - "rtt_ms": 0.994517, + "rtt_ns": 1491833, + "rtt_ms": 1.491833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.525781885Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.212323-08:00" }, { "operation": "add_edge", - "rtt_ns": 940328, - "rtt_ms": 0.940328, + "rtt_ns": 1904375, + "rtt_ms": 1.904375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "569", - "timestamp": "2025-11-27T01:23:33.526430803Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:15.212438-08:00" }, { "operation": "add_edge", - "rtt_ns": 957208, - "rtt_ms": 0.957208, + "rtt_ns": 2036625, + "rtt_ms": 2.036625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:33.526464683Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.212584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008967, - "rtt_ms": 1.008967, + "rtt_ns": 1219375, + "rtt_ms": 1.219375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.526586842Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:03:15.212641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524945, - "rtt_ms": 1.524945, + "rtt_ns": 1116291, + "rtt_ms": 1.116291, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.526925511Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.212644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487325, - "rtt_ms": 1.487325, + "rtt_ns": 1337000, + "rtt_ms": 1.337, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.526959091Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:15.212771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400906, - "rtt_ms": 1.400906, + "rtt_ns": 1323750, + "rtt_ms": 1.32375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:33.527053521Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:15.213483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501256, - "rtt_ms": 1.501256, + "rtt_ns": 1357959, + "rtt_ms": 1.357959, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.527102261Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:15.213498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402516, - "rtt_ms": 1.402516, + "rtt_ns": 1644000, + "rtt_ms": 1.644, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:33.527113541Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.213724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330766, - "rtt_ms": 1.330766, + "rtt_ns": 1412333, + "rtt_ms": 1.412333, "checkpoint": 0, "vertex_from": "10", "vertex_to": "465", - "timestamp": "2025-11-27T01:23:33.527114961Z" + "timestamp": "2025-11-27T04:03:15.213737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622335, - "rtt_ms": 1.622335, + "rtt_ns": 1307083, + "rtt_ms": 1.307083, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.52740186Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.213748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017997, - "rtt_ms": 1.017997, + "rtt_ns": 1726583, + "rtt_ms": 1.726583, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.527607159Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:15.213822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218836, - "rtt_ms": 1.218836, + "rtt_ns": 1226541, + "rtt_ms": 1.226541, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.527652029Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:15.213871-08:00" }, { "operation": "add_edge", - "rtt_ns": 857948, - "rtt_ms": 0.857948, + "rtt_ns": 1407209, + "rtt_ms": 1.407209, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:33.527785089Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.214049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364075, - "rtt_ms": 1.364075, + "rtt_ns": 1533916, + "rtt_ms": 1.533916, "checkpoint": 0, "vertex_from": "10", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.527832578Z" + "timestamp": "2025-11-27T04:03:15.214119-08:00" }, { "operation": "add_edge", - "rtt_ns": 930867, - "rtt_ms": 0.930867, + "rtt_ns": 1368459, + "rtt_ms": 1.368459, "checkpoint": 0, "vertex_from": "10", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.527892908Z" + "timestamp": "2025-11-27T04:03:15.214141-08:00" }, { "operation": "add_edge", - "rtt_ns": 911137, - "rtt_ms": 0.911137, + "rtt_ns": 1140750, + "rtt_ms": 1.14075, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.527967348Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.214889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222436, - "rtt_ms": 1.222436, + "rtt_ns": 1453250, + "rtt_ms": 1.45325, "checkpoint": 0, "vertex_from": "10", "vertex_to": "216", - "timestamp": "2025-11-27T01:23:33.528326107Z" + "timestamp": "2025-11-27T04:03:15.214952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478865, - "rtt_ms": 1.478865, + "rtt_ns": 1545833, + "rtt_ms": 1.545833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:33.528596226Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.21503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496445, - "rtt_ms": 1.496445, + "rtt_ns": 1505500, + "rtt_ms": 1.5055, "checkpoint": 0, "vertex_from": "10", "vertex_to": "587", - "timestamp": "2025-11-27T01:23:33.528612386Z" + "timestamp": "2025-11-27T04:03:15.21523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028087, - "rtt_ms": 1.028087, + "rtt_ns": 1371167, + "rtt_ms": 1.371167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:33.528636406Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:15.215244-08:00" }, { "operation": "add_edge", - "rtt_ns": 988337, - "rtt_ms": 0.988337, + "rtt_ns": 1175334, + "rtt_ms": 1.175334, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:33.528641606Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.215296-08:00" }, { "operation": "add_edge", - "rtt_ns": 862157, - "rtt_ms": 0.862157, + "rtt_ns": 1524791, + "rtt_ms": 1.524791, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.528648916Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:15.215349-08:00" }, { "operation": "add_edge", - "rtt_ns": 897338, - "rtt_ms": 0.897338, + "rtt_ns": 1648709, + "rtt_ms": 1.648709, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.528732266Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:15.215386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356836, - "rtt_ms": 1.356836, + "rtt_ns": 1909875, + "rtt_ms": 1.909875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.528761346Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:15.216052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311897, - "rtt_ms": 1.311897, + "rtt_ns": 2225542, + "rtt_ms": 2.225542, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.529206315Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.216276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2768242, - "rtt_ms": 2.768242, + "rtt_ns": 1535209, + "rtt_ms": 1.535209, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:33.53073719Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.216566-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107724, - "rtt_ms": 2.107724, + "rtt_ns": 1417792, + "rtt_ms": 1.417792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.53084204Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:15.216662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192304, - "rtt_ms": 2.192304, + "rtt_ns": 1946375, + "rtt_ms": 1.946375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "246", - "timestamp": "2025-11-27T01:23:33.53084945Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:15.216837-08:00" }, { "operation": "add_edge", - "rtt_ns": 2278784, - "rtt_ms": 2.278784, + "rtt_ns": 1895917, + "rtt_ms": 1.895917, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "87", - "timestamp": "2025-11-27T01:23:33.53089357Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:15.216849-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239494, - "rtt_ms": 2.239494, + "rtt_ns": 1509625, + "rtt_ms": 1.509625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:33.53100254Z" + "vertex_to": "246", + "timestamp": "2025-11-27T04:03:15.21686-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372214, - "rtt_ms": 2.372214, + "rtt_ns": 1487042, + "rtt_ms": 1.487042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:33.53101552Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:15.216875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833504, - "rtt_ms": 1.833504, + "rtt_ns": 1657750, + "rtt_ms": 1.65775, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.531041729Z" + "vertex_to": "87", + "timestamp": "2025-11-27T04:03:15.216889-08:00" }, { "operation": "add_edge", - "rtt_ns": 2461023, - "rtt_ms": 2.461023, + "rtt_ns": 1606042, + "rtt_ms": 1.606042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.531059809Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:15.216904-08:00" }, { "operation": "add_edge", - "rtt_ns": 2487193, - "rtt_ms": 2.487193, + "rtt_ns": 1078166, + "rtt_ms": 1.078166, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:33.531124869Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:15.217132-08:00" }, { "operation": "add_edge", - "rtt_ns": 2813892, - "rtt_ms": 2.813892, + "rtt_ns": 1270458, + "rtt_ms": 1.270458, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.531142319Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.217549-08:00" }, { "operation": "add_edge", - "rtt_ns": 972908, - "rtt_ms": 0.972908, + "rtt_ns": 1202041, + "rtt_ms": 1.202041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.531711058Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:15.217866-08:00" }, { "operation": "add_edge", - "rtt_ns": 907267, - "rtt_ms": 0.907267, + "rtt_ns": 1207125, + "rtt_ms": 1.207125, "checkpoint": 0, "vertex_from": "10", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.531802137Z" + "timestamp": "2025-11-27T04:03:15.218057-08:00" }, { "operation": "add_edge", - "rtt_ns": 796527, - "rtt_ms": 0.796527, + "rtt_ns": 1265250, + "rtt_ms": 1.26525, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:33.531802497Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.218141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402596, - "rtt_ms": 1.402596, + "rtt_ns": 1635791, + "rtt_ms": 1.635791, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:33.532253186Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.218204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463806, - "rtt_ms": 1.463806, + "rtt_ns": 1333375, + "rtt_ms": 1.333375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:33.532307626Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:03:15.218223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395146, - "rtt_ms": 1.395146, + "rtt_ns": 1391000, + "rtt_ms": 1.391, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:33.532438625Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:15.218229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439155, - "rtt_ms": 1.439155, + "rtt_ns": 1418958, + "rtt_ms": 1.418958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.532456445Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:15.21828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334756, - "rtt_ms": 1.334756, + "rtt_ns": 1164167, + "rtt_ms": 1.164167, "checkpoint": 0, "vertex_from": "10", "vertex_to": "360", - "timestamp": "2025-11-27T01:23:33.532461455Z" + "timestamp": "2025-11-27T04:03:15.218296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402296, - "rtt_ms": 1.402296, + "rtt_ns": 1399292, + "rtt_ms": 1.399292, "checkpoint": 0, "vertex_from": "10", "vertex_to": "433", - "timestamp": "2025-11-27T01:23:33.532463655Z" + "timestamp": "2025-11-27T04:03:15.218305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593716, - "rtt_ms": 1.593716, + "rtt_ns": 1407125, + "rtt_ms": 1.407125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:33.533398163Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:15.219274-08:00" }, { "operation": "add_edge", - "rtt_ns": 2255564, - "rtt_ms": 2.255564, + "rtt_ns": 1767041, + "rtt_ms": 1.767041, "checkpoint": 0, "vertex_from": "10", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.533399233Z" + "timestamp": "2025-11-27T04:03:15.219317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594236, - "rtt_ms": 1.594236, + "rtt_ns": 1394959, + "rtt_ms": 1.394959, "checkpoint": 0, "vertex_from": "10", "vertex_to": "626", - "timestamp": "2025-11-27T01:23:33.533398013Z" + "timestamp": "2025-11-27T04:03:15.219452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693665, - "rtt_ms": 1.693665, + "rtt_ns": 1401167, + "rtt_ms": 1.401167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:33.533406513Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:15.219625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149637, - "rtt_ms": 1.149637, + "rtt_ns": 1421959, + "rtt_ms": 1.421959, "checkpoint": 0, "vertex_from": "10", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.533407583Z" + "timestamp": "2025-11-27T04:03:15.219627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004127, - "rtt_ms": 1.004127, + "rtt_ns": 1755709, + "rtt_ms": 1.755709, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:33.533461892Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:15.219898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616135, - "rtt_ms": 1.616135, + "rtt_ns": 1849041, + "rtt_ms": 1.849041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:33.533925431Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:03:15.220147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599656, - "rtt_ms": 1.599656, + "rtt_ns": 2118959, + "rtt_ms": 2.118959, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:33.534039621Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:15.220424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603166, - "rtt_ms": 1.603166, + "rtt_ns": 2213208, + "rtt_ms": 2.213208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "358", - "timestamp": "2025-11-27T01:23:33.534065521Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:15.220444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648185, - "rtt_ms": 1.648185, + "rtt_ns": 2326167, + "rtt_ms": 2.326167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:33.53411327Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:15.220607-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1332356, - "rtt_ms": 1.332356, + "operation": "add_edge", + "rtt_ns": 1380750, + "rtt_ms": 1.38075, "checkpoint": 0, - "vertex_from": "933", - "timestamp": "2025-11-27T01:23:33.534734089Z" + "vertex_from": "10", + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.220834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752844, - "rtt_ms": 1.752844, + "rtt_ns": 1578667, + "rtt_ms": 1.578667, "checkpoint": 0, "vertex_from": "10", "vertex_to": "531", - "timestamp": "2025-11-27T01:23:33.535154067Z" + "timestamp": "2025-11-27T04:03:15.220897-08:00" }, { "operation": "add_edge", - "rtt_ns": 2485102, - "rtt_ms": 2.485102, + "rtt_ns": 1285459, + "rtt_ms": 1.285459, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:33.535894535Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:15.221184-08:00" }, { "operation": "add_edge", - "rtt_ns": 2975631, - "rtt_ms": 2.975631, + "rtt_ns": 1579250, + "rtt_ms": 1.57925, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.536385144Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:15.221206-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1943209, + "rtt_ms": 1.943209, + "checkpoint": 0, + "vertex_from": "933", + "timestamp": "2025-11-27T04:03:15.22122-08:00" }, { "operation": "add_edge", - "rtt_ns": 3046390, - "rtt_ms": 3.04639, + "rtt_ns": 1614834, + "rtt_ms": 1.614834, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.536449603Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.221244-08:00" }, { "operation": "add_edge", - "rtt_ns": 3023191, - "rtt_ms": 3.023191, + "rtt_ns": 905250, + "rtt_ms": 0.90525, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:33.536487363Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:15.221331-08:00" }, { "operation": "add_edge", - "rtt_ns": 2570592, - "rtt_ms": 2.570592, + "rtt_ns": 1206542, + "rtt_ms": 1.206542, "checkpoint": 0, "vertex_from": "10", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:33.536498043Z" + "timestamp": "2025-11-27T04:03:15.221354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2440002, - "rtt_ms": 2.440002, + "rtt_ns": 1197791, + "rtt_ms": 1.197791, "checkpoint": 0, "vertex_from": "10", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.536506863Z" + "timestamp": "2025-11-27T04:03:15.221643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2437383, - "rtt_ms": 2.437383, + "rtt_ns": 1332625, + "rtt_ms": 1.332625, "checkpoint": 0, "vertex_from": "10", "vertex_to": "417", - "timestamp": "2025-11-27T01:23:33.536551833Z" + "timestamp": "2025-11-27T04:03:15.22194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2512312, - "rtt_ms": 2.512312, + "rtt_ns": 1425875, + "rtt_ms": 1.425875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.536553293Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:15.222262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840414, - "rtt_ms": 1.840414, + "rtt_ns": 1502583, + "rtt_ms": 1.502583, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "933", - "timestamp": "2025-11-27T01:23:33.536574923Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.2224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424956, - "rtt_ms": 1.424956, + "rtt_ns": 1184500, + "rtt_ms": 1.1845, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:33.536581573Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:15.222539-08:00" }, { "operation": "add_edge", - "rtt_ns": 953818, - "rtt_ms": 0.953818, + "rtt_ns": 1411959, + "rtt_ms": 1.411959, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:33.537404941Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:03:15.222657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035257, - "rtt_ms": 1.035257, + "rtt_ns": 1740167, + "rtt_ms": 1.740167, "checkpoint": 0, "vertex_from": "10", "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.537421061Z" + "timestamp": "2025-11-27T04:03:15.222926-08:00" }, { "operation": "add_edge", - "rtt_ns": 906967, - "rtt_ms": 0.906967, + "rtt_ns": 1302792, + "rtt_ms": 1.302792, "checkpoint": 0, "vertex_from": "10", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:33.53746072Z" + "timestamp": "2025-11-27T04:03:15.222947-08:00" }, { "operation": "add_edge", - "rtt_ns": 994307, - "rtt_ms": 0.994307, + "rtt_ns": 1622041, + "rtt_ms": 1.622041, "checkpoint": 0, "vertex_from": "10", "vertex_to": "178", - "timestamp": "2025-11-27T01:23:33.53749436Z" + "timestamp": "2025-11-27T04:03:15.222954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607395, - "rtt_ms": 1.607395, + "rtt_ns": 1763667, + "rtt_ms": 1.763667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.53750393Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:15.222971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503316, - "rtt_ms": 1.503316, + "rtt_ns": 1819792, + "rtt_ms": 1.819792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.538079819Z" + "vertex_to": "933", + "timestamp": "2025-11-27T04:03:15.22304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697585, - "rtt_ms": 1.697585, + "rtt_ns": 1117667, + "rtt_ms": 1.117667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "837", - "timestamp": "2025-11-27T01:23:33.538185868Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:03:15.223519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677785, - "rtt_ms": 1.677785, + "rtt_ns": 1614833, + "rtt_ms": 1.614833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:33.538186848Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:15.223556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642985, - "rtt_ms": 1.642985, + "rtt_ns": 1452375, + "rtt_ms": 1.452375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:33.538199208Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:15.223716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618645, - "rtt_ms": 1.618645, + "rtt_ns": 1246375, + "rtt_ms": 1.246375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "115", - "timestamp": "2025-11-27T01:23:33.538202408Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.223786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215787, - "rtt_ms": 1.215787, + "rtt_ns": 1381583, + "rtt_ms": 1.381583, "checkpoint": 0, "vertex_from": "10", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:33.538677997Z" + "timestamp": "2025-11-27T04:03:15.22431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333316, - "rtt_ms": 1.333316, + "rtt_ns": 1372792, + "rtt_ms": 1.372792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.538740487Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:15.224327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271817, - "rtt_ms": 1.271817, + "rtt_ns": 1870375, + "rtt_ms": 1.870375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.538767837Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.224529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320166, - "rtt_ms": 1.320166, + "rtt_ns": 1597833, + "rtt_ms": 1.597833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:33.538826066Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.224545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422235, - "rtt_ms": 1.422235, + "rtt_ns": 1517083, + "rtt_ms": 1.517083, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.538844606Z" + "vertex_to": "199", + "timestamp": "2025-11-27T04:03:15.224559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123007, - "rtt_ms": 1.123007, + "rtt_ns": 1637208, + "rtt_ms": 1.637208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.539311685Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:15.224609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271836, - "rtt_ms": 1.271836, + "rtt_ns": 1442792, + "rtt_ms": 1.442792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:33.539353605Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:15.22523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179617, - "rtt_ms": 1.179617, + "rtt_ns": 1730000, + "rtt_ms": 1.73, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "23", - "timestamp": "2025-11-27T01:23:33.539387725Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:15.22525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234917, - "rtt_ms": 1.234917, + "rtt_ns": 1760708, + "rtt_ms": 1.760708, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "199", - "timestamp": "2025-11-27T01:23:33.539422185Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.225318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402116, - "rtt_ms": 1.402116, + "rtt_ns": 1783167, + "rtt_ms": 1.783167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.539602994Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:03:15.2255-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1715025, - "rtt_ms": 1.715025, + "rtt_ns": 1481250, + "rtt_ms": 1.48125, "checkpoint": 0, - "vertex_from": "651", - "timestamp": "2025-11-27T01:23:33.540458272Z" + "vertex_from": "247", + "timestamp": "2025-11-27T04:03:15.226013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948914, - "rtt_ms": 1.948914, + "rtt_ns": 1432041, + "rtt_ms": 1.432041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:33.540629541Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:15.226045-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2021544, - "rtt_ms": 2.021544, + "operation": "add_vertex", + "rtt_ns": 1867042, + "rtt_ms": 1.867042, "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:33.540790771Z" + "vertex_from": "651", + "timestamp": "2025-11-27T04:03:15.226179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057334, - "rtt_ms": 2.057334, + "rtt_ns": 2063667, + "rtt_ms": 2.063667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.54090316Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2113464, - "rtt_ms": 2.113464, - "checkpoint": 0, - "vertex_from": "247", - "timestamp": "2025-11-27T01:23:33.54094258Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:15.226392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672785, - "rtt_ms": 1.672785, + "rtt_ns": 1851000, + "rtt_ms": 1.851, "checkpoint": 0, "vertex_from": "10", "vertex_to": "432", - "timestamp": "2025-11-27T01:23:33.54098651Z" + "timestamp": "2025-11-27T04:03:15.22641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681405, - "rtt_ms": 1.681405, + "rtt_ns": 1867459, + "rtt_ms": 1.867459, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:33.54110626Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.226414-08:00" }, { "operation": "add_edge", - "rtt_ns": 2427473, - "rtt_ms": 2.427473, + "rtt_ns": 1172625, + "rtt_ms": 1.172625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:33.541816168Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.226491-08:00" }, { "operation": "add_edge", - "rtt_ns": 2501863, - "rtt_ms": 2.501863, + "rtt_ns": 1281375, + "rtt_ms": 1.281375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.541856478Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:15.226512-08:00" }, { "operation": "add_edge", - "rtt_ns": 2278694, - "rtt_ms": 2.278694, + "rtt_ns": 1542375, + "rtt_ms": 1.542375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.541883288Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:15.226793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573165, - "rtt_ms": 1.573165, + "rtt_ns": 1436833, + "rtt_ms": 1.436833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:33.542031917Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.226938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437626, - "rtt_ms": 1.437626, + "rtt_ns": 1603084, + "rtt_ms": 1.603084, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.542070657Z" + "vertex_to": "247", + "timestamp": "2025-11-27T04:03:15.227616-08:00" }, { "operation": "add_edge", - "rtt_ns": 716168, - "rtt_ms": 0.716168, + "rtt_ns": 1657125, + "rtt_ms": 1.657125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.542573756Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:15.228072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392436, - "rtt_ms": 1.392436, + "rtt_ns": 1203125, + "rtt_ms": 1.203125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.542185147Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:15.227998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359157, - "rtt_ms": 1.359157, + "rtt_ns": 1493333, + "rtt_ms": 1.493333, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.542263757Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.228007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343787, - "rtt_ms": 1.343787, + "rtt_ns": 1603750, + "rtt_ms": 1.60375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "247", - "timestamp": "2025-11-27T01:23:33.542286667Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:15.228016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330006, - "rtt_ms": 1.330006, + "rtt_ns": 1622375, + "rtt_ms": 1.622375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:33.542318236Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.228016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227606, - "rtt_ms": 1.227606, + "rtt_ns": 1843708, + "rtt_ms": 1.843708, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.542336026Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:03:15.228023-08:00" }, { "operation": "add_edge", - "rtt_ns": 616828, - "rtt_ms": 0.616828, + "rtt_ns": 1977459, + "rtt_ms": 1.977459, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:33.542501996Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.228024-08:00" }, { "operation": "add_edge", - "rtt_ns": 658418, - "rtt_ms": 0.658418, + "rtt_ns": 1541541, + "rtt_ms": 1.541541, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.542692855Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.228034-08:00" }, { "operation": "add_edge", - "rtt_ns": 888537, - "rtt_ms": 0.888537, + "rtt_ns": 1220208, + "rtt_ms": 1.220208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.542706725Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.228159-08:00" }, { "operation": "add_edge", - "rtt_ns": 939647, - "rtt_ms": 0.939647, + "rtt_ns": 1346375, + "rtt_ms": 1.346375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:33.543515083Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.229437-08:00" }, { "operation": "add_edge", - "rtt_ns": 951247, - "rtt_ms": 0.951247, + "rtt_ns": 1378334, + "rtt_ms": 1.378334, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:33.543533843Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:03:15.229438-08:00" }, { "operation": "add_edge", - "rtt_ns": 965877, - "rtt_ms": 0.965877, + "rtt_ns": 1450750, + "rtt_ms": 1.45075, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:33.543564023Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:15.229546-08:00" }, { "operation": "add_edge", - "rtt_ns": 938217, - "rtt_ms": 0.938217, + "rtt_ns": 1455750, + "rtt_ms": 1.45575, "checkpoint": 0, "vertex_from": "10", "vertex_to": "344", - "timestamp": "2025-11-27T01:23:33.543571133Z" + "timestamp": "2025-11-27T04:03:15.229548-08:00" }, { "operation": "add_edge", - "rtt_ns": 997667, - "rtt_ms": 0.997667, + "rtt_ns": 1586041, + "rtt_ms": 1.586041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:33.543592093Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.229746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513615, - "rtt_ms": 1.513615, + "rtt_ns": 1692458, + "rtt_ms": 1.692458, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:33.544085991Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:15.229765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476366, - "rtt_ms": 1.476366, + "rtt_ns": 1691167, + "rtt_ms": 1.691167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.544173071Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:15.229772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543976, - "rtt_ms": 1.543976, + "rtt_ns": 1704959, + "rtt_ms": 1.704959, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:33.544195961Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:15.229782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596915, - "rtt_ms": 1.596915, + "rtt_ns": 1702042, + "rtt_ms": 1.702042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.544209561Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:15.229789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630786, - "rtt_ms": 1.630786, + "rtt_ns": 1816208, + "rtt_ms": 1.816208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.544341261Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.229923-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071334, - "rtt_ms": 2.071334, + "rtt_ns": 1666417, + "rtt_ms": 1.666417, "checkpoint": 0, "vertex_from": "10", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.545588557Z" + "timestamp": "2025-11-27T04:03:15.231106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094994, - "rtt_ms": 2.094994, + "rtt_ns": 1857208, + "rtt_ms": 1.857208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "339", - "timestamp": "2025-11-27T01:23:33.545667257Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:15.231296-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109014, - "rtt_ms": 2.109014, + "rtt_ns": 1886333, + "rtt_ms": 1.886333, "checkpoint": 0, "vertex_from": "10", "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.545674457Z" + "timestamp": "2025-11-27T04:03:15.231433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2161554, - "rtt_ms": 2.161554, + "rtt_ns": 1693000, + "rtt_ms": 1.693, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:33.545697787Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:15.231482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578035, - "rtt_ms": 1.578035, + "rtt_ns": 1944166, + "rtt_ms": 1.944166, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:33.545752416Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:03:15.231493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720765, - "rtt_ms": 1.720765, + "rtt_ns": 2002125, + "rtt_ms": 2.002125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:33.545809596Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:15.231775-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236113, - "rtt_ms": 2.236113, + "rtt_ns": 2045667, + "rtt_ms": 2.045667, "checkpoint": 0, "vertex_from": "10", "vertex_to": "119", - "timestamp": "2025-11-27T01:23:33.545829716Z" + "timestamp": "2025-11-27T04:03:15.231793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670025, - "rtt_ms": 1.670025, + "rtt_ns": 2025625, + "rtt_ms": 2.025625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:33.545881626Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:15.231808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575005, - "rtt_ms": 1.575005, + "rtt_ns": 2154041, + "rtt_ms": 2.154041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:33.545917606Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:15.231921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727745, - "rtt_ms": 1.727745, + "rtt_ns": 2014667, + "rtt_ms": 2.014667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.545926226Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:15.231939-08:00" }, { "operation": "add_edge", - "rtt_ns": 919357, - "rtt_ms": 0.919357, + "rtt_ns": 1250708, + "rtt_ms": 1.250708, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.546595814Z" + "vertex_to": "364", + "timestamp": "2025-11-27T04:03:15.232357-08:00" }, { "operation": "add_edge", - "rtt_ns": 971377, - "rtt_ms": 0.971377, + "rtt_ns": 1461875, + "rtt_ms": 1.461875, "checkpoint": 0, "vertex_from": "10", "vertex_to": "13", - "timestamp": "2025-11-27T01:23:33.546640024Z" + "timestamp": "2025-11-27T04:03:15.232759-08:00" }, { "operation": "add_edge", - "rtt_ns": 947547, - "rtt_ms": 0.947547, + "rtt_ns": 1389958, + "rtt_ms": 1.389958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:33.546647244Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.232884-08:00" }, { "operation": "add_edge", - "rtt_ns": 914628, - "rtt_ms": 0.914628, + "rtt_ns": 1567500, + "rtt_ms": 1.5675, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.546668464Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:15.233003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103597, - "rtt_ms": 1.103597, + "rtt_ns": 1740792, + "rtt_ms": 1.740792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "364", - "timestamp": "2025-11-27T01:23:33.546694114Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:15.233226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032497, - "rtt_ms": 1.032497, + "rtt_ns": 1437625, + "rtt_ms": 1.437625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.546844243Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:15.233246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539466, - "rtt_ms": 1.539466, + "rtt_ns": 1459292, + "rtt_ms": 1.459292, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:33.547371572Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.233381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563495, - "rtt_ms": 1.563495, + "rtt_ns": 1645291, + "rtt_ms": 1.645291, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:33.547446831Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:15.233439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541095, - "rtt_ms": 1.541095, + "rtt_ns": 1500875, + "rtt_ms": 1.500875, "checkpoint": 0, "vertex_from": "10", "vertex_to": "402", - "timestamp": "2025-11-27T01:23:33.547468641Z" + "timestamp": "2025-11-27T04:03:15.23344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594885, - "rtt_ms": 1.594885, + "rtt_ns": 1717125, + "rtt_ms": 1.717125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.547514121Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.233493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186306, - "rtt_ms": 1.186306, + "rtt_ns": 1248667, + "rtt_ms": 1.248667, "checkpoint": 0, "vertex_from": "10", "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.54778422Z" + "timestamp": "2025-11-27T04:03:15.233607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152067, - "rtt_ms": 1.152067, + "rtt_ns": 1316500, + "rtt_ms": 1.3165, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:33.54799754Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:15.234202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455435, - "rtt_ms": 1.455435, + "rtt_ns": 1458834, + "rtt_ms": 1.458834, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:33.548103859Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.234221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469975, - "rtt_ms": 1.469975, + "rtt_ns": 1343167, + "rtt_ms": 1.343167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.548111239Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:15.234347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455405, - "rtt_ms": 1.455405, + "rtt_ns": 1225167, + "rtt_ms": 1.225167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:33.548150829Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.234606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497345, - "rtt_ms": 1.497345, + "rtt_ns": 1517083, + "rtt_ms": 1.517083, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:33.548167059Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:15.234764-08:00" }, { "operation": "add_edge", - "rtt_ns": 878717, - "rtt_ms": 0.878717, + "rtt_ns": 1292500, + "rtt_ms": 1.2925, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.548251479Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:15.234788-08:00" }, { "operation": "add_edge", - "rtt_ns": 797148, - "rtt_ms": 0.797148, + "rtt_ns": 1604166, + "rtt_ms": 1.604166, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.548267219Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:15.234831-08:00" }, { "operation": "add_edge", - "rtt_ns": 866328, - "rtt_ms": 0.866328, + "rtt_ns": 1405584, + "rtt_ms": 1.405584, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:33.548383469Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:15.234847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735245, - "rtt_ms": 1.735245, + "rtt_ns": 1423959, + "rtt_ms": 1.423959, "checkpoint": 0, "vertex_from": "10", "vertex_to": "338", - "timestamp": "2025-11-27T01:23:33.549183736Z" + "timestamp": "2025-11-27T04:03:15.234863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822965, - "rtt_ms": 1.822965, + "rtt_ns": 1484250, + "rtt_ms": 1.48425, "checkpoint": 0, "vertex_from": "10", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.549608725Z" + "timestamp": "2025-11-27T04:03:15.235092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641745, - "rtt_ms": 1.641745, + "rtt_ns": 1102958, + "rtt_ms": 1.102958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.549640925Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:15.23545-08:00" }, { "operation": "add_edge", - "rtt_ns": 2170164, - "rtt_ms": 2.170164, + "rtt_ns": 1523417, + "rtt_ms": 1.523417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:33.550283633Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.235745-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101974, - "rtt_ms": 2.101974, + "rtt_ns": 1567958, + "rtt_ms": 1.567958, "checkpoint": 0, - "vertex_from": "11", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:33.550370273Z" + "vertex_from": "10", + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.235771-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281084, - "rtt_ms": 2.281084, + "rtt_ns": 1181417, + "rtt_ms": 1.181417, "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.550386593Z" + "vertex_from": "11", + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.236029-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227954, - "rtt_ms": 2.227954, + "rtt_ns": 1447458, + "rtt_ms": 1.447458, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:33.550396533Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:15.236055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257764, - "rtt_ms": 2.257764, + "rtt_ns": 1422833, + "rtt_ms": 1.422833, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:33.550410043Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:15.236254-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165523, - "rtt_ms": 2.165523, + "rtt_ns": 1483583, + "rtt_ms": 1.483583, "checkpoint": 0, "vertex_from": "11", "vertex_to": "556", - "timestamp": "2025-11-27T01:23:33.550418132Z" + "timestamp": "2025-11-27T04:03:15.236272-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057363, - "rtt_ms": 2.057363, + "rtt_ns": 1193667, + "rtt_ms": 1.193667, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.550443332Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.236288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482636, - "rtt_ms": 1.482636, + "rtt_ns": 1586291, + "rtt_ms": 1.586291, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:33.550667842Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:15.236351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153236, - "rtt_ms": 1.153236, + "rtt_ns": 1534167, + "rtt_ms": 1.534167, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.550763071Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:15.236398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135536, - "rtt_ms": 1.135536, + "rtt_ns": 1461167, + "rtt_ms": 1.461167, "checkpoint": 0, "vertex_from": "11", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.550777671Z" + "timestamp": "2025-11-27T04:03:15.236913-08:00" }, { "operation": "add_edge", - "rtt_ns": 776988, - "rtt_ms": 0.776988, + "rtt_ns": 1433625, + "rtt_ms": 1.433625, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:33.551063531Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:15.237205-08:00" }, { "operation": "add_edge", - "rtt_ns": 694168, - "rtt_ms": 0.694168, + "rtt_ns": 1475458, + "rtt_ms": 1.475458, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:33.551082211Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:15.237222-08:00" }, { "operation": "add_edge", - "rtt_ns": 683688, - "rtt_ms": 0.683688, + "rtt_ns": 1413125, + "rtt_ms": 1.413125, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.55112787Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.237813-08:00" }, { "operation": "add_edge", - "rtt_ns": 778407, - "rtt_ms": 0.778407, + "rtt_ns": 1478583, + "rtt_ms": 1.478583, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.55117567Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.23783-08:00" }, { "operation": "add_edge", - "rtt_ns": 797688, - "rtt_ms": 0.797688, + "rtt_ns": 1977875, + "rtt_ms": 1.977875, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:33.55121682Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.238035-08:00" }, { - "operation": "add_edge", - "rtt_ns": 898987, - "rtt_ms": 0.898987, + "operation": "add_vertex", + "rtt_ns": 939500, + "rtt_ms": 0.9395, "checkpoint": 0, - "vertex_from": "11", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.55127019Z" + "vertex_from": "993", + "timestamp": "2025-11-27T04:03:15.238163-08:00" }, { "operation": "add_edge", - "rtt_ns": 721438, - "rtt_ms": 0.721438, + "rtt_ns": 1923208, + "rtt_ms": 1.923208, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.55139029Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:15.238178-08:00" }, { "operation": "add_edge", - "rtt_ns": 995467, - "rtt_ms": 0.995467, + "rtt_ns": 2164792, + "rtt_ms": 2.164792, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.55140689Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:15.238195-08:00" }, { "operation": "add_edge", - "rtt_ns": 748678, - "rtt_ms": 0.748678, + "rtt_ns": 1936459, + "rtt_ms": 1.936459, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "12", - "timestamp": "2025-11-27T01:23:33.551528019Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:15.238209-08:00" }, { "operation": "add_edge", - "rtt_ns": 785308, - "rtt_ms": 0.785308, + "rtt_ns": 1229209, + "rtt_ms": 1.229209, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.551551159Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.238436-08:00" }, { "operation": "add_edge", - "rtt_ns": 728857, - "rtt_ms": 0.728857, + "rtt_ns": 2158334, + "rtt_ms": 2.158334, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.551793508Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.238447-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 737768, - "rtt_ms": 0.737768, + "operation": "add_edge", + "rtt_ns": 1550166, + "rtt_ms": 1.550166, "checkpoint": 0, - "vertex_from": "993", - "timestamp": "2025-11-27T01:23:33.551822638Z" + "vertex_from": "11", + "vertex_to": "12", + "timestamp": "2025-11-27T04:03:15.238465-08:00" }, { "operation": "add_edge", - "rtt_ns": 702638, - "rtt_ms": 0.702638, + "rtt_ns": 1033833, + "rtt_ms": 1.033833, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:33.551831758Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:15.239089-08:00" }, { "operation": "add_edge", - "rtt_ns": 749608, - "rtt_ms": 0.749608, + "rtt_ns": 1547417, + "rtt_ms": 1.547417, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.551926378Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:15.239362-08:00" }, { "operation": "add_edge", - "rtt_ns": 703378, - "rtt_ms": 0.703378, + "rtt_ns": 1625042, + "rtt_ms": 1.625042, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.551974638Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.239456-08:00" }, { "operation": "add_edge", - "rtt_ns": 777918, - "rtt_ms": 0.777918, + "rtt_ns": 1582000, + "rtt_ms": 1.582, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:33.551995588Z" + "vertex_to": "993", + "timestamp": "2025-11-27T04:03:15.239746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492175, - "rtt_ms": 1.492175, + "rtt_ns": 1314375, + "rtt_ms": 1.314375, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.552900215Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:15.239763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597275, - "rtt_ms": 1.597275, + "rtt_ns": 1566708, + "rtt_ms": 1.566708, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "849", - "timestamp": "2025-11-27T01:23:33.552988545Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.239777-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122364, - "rtt_ms": 2.122364, + "rtt_ns": 1371959, + "rtt_ms": 1.371959, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:33.553675363Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:15.23981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889345, - "rtt_ms": 1.889345, + "rtt_ns": 1363083, + "rtt_ms": 1.363083, "checkpoint": 0, "vertex_from": "11", "vertex_to": "21", - "timestamp": "2025-11-27T01:23:33.553683913Z" + "timestamp": "2025-11-27T04:03:15.239829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2474273, - "rtt_ms": 2.474273, + "rtt_ns": 1647833, + "rtt_ms": 1.647833, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:33.554308671Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:03:15.239844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432236, - "rtt_ms": 1.432236, + "rtt_ns": 1678292, + "rtt_ms": 1.678292, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.554334411Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:15.239858-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340003, - "rtt_ms": 2.340003, + "rtt_ns": 1515125, + "rtt_ms": 1.515125, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.554336341Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:15.240605-08:00" }, { "operation": "add_edge", - "rtt_ns": 2531133, - "rtt_ms": 2.531133, + "rtt_ns": 1258500, + "rtt_ms": 1.2585, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "993", - "timestamp": "2025-11-27T01:23:33.554354121Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.240623-08:00" }, { "operation": "add_edge", - "rtt_ns": 2382303, - "rtt_ms": 2.382303, + "rtt_ns": 1406083, + "rtt_ms": 1.406083, "checkpoint": 0, "vertex_from": "11", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.554358011Z" + "timestamp": "2025-11-27T04:03:15.240864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2448573, - "rtt_ms": 2.448573, + "rtt_ns": 1119959, + "rtt_ms": 1.119959, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.554376691Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.240883-08:00" }, { "operation": "add_edge", - "rtt_ns": 2874302, - "rtt_ms": 2.874302, + "rtt_ns": 1502208, + "rtt_ms": 1.502208, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:33.554404171Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.24128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576866, - "rtt_ms": 1.576866, + "rtt_ns": 1468750, + "rtt_ms": 1.46875, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.554566511Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.241298-08:00" }, { "operation": "add_edge", - "rtt_ns": 865738, - "rtt_ms": 0.865738, + "rtt_ns": 1455500, + "rtt_ms": 1.4555, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.555202989Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:15.241314-08:00" }, { "operation": "add_edge", - "rtt_ns": 925178, - "rtt_ms": 0.925178, + "rtt_ns": 1650292, + "rtt_ms": 1.650292, "checkpoint": 0, "vertex_from": "11", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.555235259Z" + "timestamp": "2025-11-27T04:03:15.241494-08:00" }, { "operation": "add_edge", - "rtt_ns": 923798, - "rtt_ms": 0.923798, + "rtt_ns": 1765208, + "rtt_ms": 1.765208, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.555302969Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.241512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644676, - "rtt_ms": 1.644676, + "rtt_ns": 1733333, + "rtt_ms": 1.733333, "checkpoint": 0, "vertex_from": "11", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.555321749Z" + "timestamp": "2025-11-27T04:03:15.241544-08:00" }, { "operation": "add_edge", - "rtt_ns": 996787, - "rtt_ms": 0.996787, + "rtt_ns": 896708, + "rtt_ms": 0.896708, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.555352118Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:15.241762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691035, - "rtt_ms": 1.691035, + "rtt_ns": 923625, + "rtt_ms": 0.923625, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.555375658Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.241808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184497, - "rtt_ms": 1.184497, + "rtt_ns": 1353042, + "rtt_ms": 1.353042, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.555519918Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.241959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139687, - "rtt_ms": 1.139687, + "rtt_ns": 1442958, + "rtt_ms": 1.442958, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:33.555545628Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.242067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597685, - "rtt_ms": 1.597685, + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:33.556165766Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.2431-08:00" }, { "operation": "add_edge", - "rtt_ns": 928937, - "rtt_ms": 0.928937, + "rtt_ns": 1828959, + "rtt_ms": 1.828959, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.556232626Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:15.243128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003297, - "rtt_ms": 1.003297, + "rtt_ns": 2066625, + "rtt_ms": 2.066625, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.556239506Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:15.243348-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1305458, + "rtt_ms": 1.305458, + "checkpoint": 0, + "vertex_from": "743", + "timestamp": "2025-11-27T04:03:15.243373-08:00" }, { "operation": "add_edge", - "rtt_ns": 942327, - "rtt_ms": 0.942327, + "rtt_ns": 1852250, + "rtt_ms": 1.85225, "checkpoint": 0, "vertex_from": "11", "vertex_to": "300", - "timestamp": "2025-11-27T01:23:33.556264876Z" + "timestamp": "2025-11-27T04:03:15.243397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089837, - "rtt_ms": 1.089837, + "rtt_ns": 2168542, + "rtt_ms": 2.168542, "checkpoint": 0, "vertex_from": "11", "vertex_to": "211", - "timestamp": "2025-11-27T01:23:33.556294576Z" + "timestamp": "2025-11-27T04:03:15.243483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941565, - "rtt_ms": 1.941565, + "rtt_ns": 1702750, + "rtt_ms": 1.70275, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:33.556301926Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:15.243512-08:00" }, { "operation": "add_edge", - "rtt_ns": 853318, - "rtt_ms": 0.853318, + "rtt_ns": 1769167, + "rtt_ms": 1.769167, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.557020424Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:15.243533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687915, - "rtt_ms": 1.687915, + "rtt_ns": 2170792, + "rtt_ms": 2.170792, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:33.557040733Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.243666-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1514355, - "rtt_ms": 1.514355, + "operation": "add_edge", + "rtt_ns": 1724958, + "rtt_ms": 1.724958, "checkpoint": 0, - "vertex_from": "743", - "timestamp": "2025-11-27T01:23:33.557062193Z" + "vertex_from": "11", + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:15.243685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594405, - "rtt_ms": 1.594405, + "rtt_ns": 1315208, + "rtt_ms": 1.315208, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:33.557115103Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.244416-08:00" }, { "operation": "add_edge", - "rtt_ns": 917457, - "rtt_ms": 0.917457, + "rtt_ns": 1348791, + "rtt_ms": 1.348791, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:33.557157673Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.244478-08:00" }, { "operation": "add_edge", - "rtt_ns": 912177, - "rtt_ms": 0.912177, + "rtt_ns": 1231292, + "rtt_ms": 1.231292, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.557178213Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.244765-08:00" }, { "operation": "add_edge", - "rtt_ns": 952627, - "rtt_ms": 0.952627, + "rtt_ns": 1388375, + "rtt_ms": 1.388375, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.557186303Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:15.244787-08:00" }, { "operation": "add_edge", - "rtt_ns": 893237, - "rtt_ms": 0.893237, + "rtt_ns": 1420709, + "rtt_ms": 1.420709, "checkpoint": 0, "vertex_from": "11", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.557188793Z" + "timestamp": "2025-11-27T04:03:15.244906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832575, - "rtt_ms": 1.832575, + "rtt_ns": 1589416, + "rtt_ms": 1.589416, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:33.557208893Z" + "vertex_to": "743", + "timestamp": "2025-11-27T04:03:15.244963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553375, - "rtt_ms": 1.553375, + "rtt_ns": 1476000, + "rtt_ms": 1.476, "checkpoint": 0, "vertex_from": "11", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.557856401Z" + "timestamp": "2025-11-27T04:03:15.244989-08:00" }, { "operation": "add_edge", - "rtt_ns": 813868, - "rtt_ms": 0.813868, + "rtt_ns": 1332708, + "rtt_ms": 1.332708, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "743", - "timestamp": "2025-11-27T01:23:33.557876471Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:03:15.245018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171177, - "rtt_ms": 1.171177, + "rtt_ns": 1424375, + "rtt_ms": 1.424375, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:33.55828746Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.245092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405326, - "rtt_ms": 1.405326, + "rtt_ns": 1824000, + "rtt_ms": 1.824, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.558447329Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:15.245174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931544, - "rtt_ms": 1.931544, + "rtt_ns": 1541792, + "rtt_ms": 1.541792, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.558953338Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:15.246021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881624, - "rtt_ms": 1.881624, + "rtt_ns": 1409208, + "rtt_ms": 1.409208, "checkpoint": 0, "vertex_from": "12", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.559071717Z" + "timestamp": "2025-11-27T04:03:15.246197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990954, - "rtt_ms": 1.990954, + "rtt_ns": 1306208, + "rtt_ms": 1.306208, "checkpoint": 0, - "vertex_from": "11", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:33.559170377Z" + "vertex_from": "12", + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.246213-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039084, - "rtt_ms": 2.039084, + "rtt_ns": 1811042, + "rtt_ms": 1.811042, "checkpoint": 0, "vertex_from": "11", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:33.559198237Z" + "timestamp": "2025-11-27T04:03:15.246227-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101664, - "rtt_ms": 2.101664, + "rtt_ns": 1609500, + "rtt_ms": 1.6095, "checkpoint": 0, "vertex_from": "12", "vertex_to": "88", - "timestamp": "2025-11-27T01:23:33.559289787Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2267153, - "rtt_ms": 2.267153, - "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.559476936Z" + "timestamp": "2025-11-27T04:03:15.246376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545455, - "rtt_ms": 1.545455, + "rtt_ns": 1374583, + "rtt_ms": 1.374583, "checkpoint": 0, "vertex_from": "12", "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.559834375Z" + "timestamp": "2025-11-27T04:03:15.246393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025764, - "rtt_ms": 2.025764, + "rtt_ns": 1331291, + "rtt_ms": 1.331291, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.559903665Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.246424-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091214, - "rtt_ms": 2.091214, + "rtt_ns": 1508875, + "rtt_ms": 1.508875, "checkpoint": 0, "vertex_from": "12", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.559948355Z" + "timestamp": "2025-11-27T04:03:15.246473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533256, - "rtt_ms": 1.533256, + "rtt_ns": 1625875, + "rtt_ms": 1.625875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.559981975Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.246617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059827, - "rtt_ms": 1.059827, + "rtt_ns": 1527792, + "rtt_ms": 1.527792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.560132914Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:15.246705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202246, - "rtt_ms": 1.202246, + "rtt_ns": 1247250, + "rtt_ms": 1.24725, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:33.560157524Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.247445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104827, - "rtt_ms": 1.104827, + "rtt_ns": 1175250, + "rtt_ms": 1.17525, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.560276384Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:15.2476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036657, - "rtt_ms": 1.036657, + "rtt_ns": 1268000, + "rtt_ms": 1.268, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.560327544Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:15.247661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137207, - "rtt_ms": 1.137207, + "rtt_ns": 1188666, + "rtt_ms": 1.188666, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.560337264Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.247662-08:00" }, { "operation": "add_edge", - "rtt_ns": 876748, - "rtt_ms": 0.876748, + "rtt_ns": 1660333, + "rtt_ms": 1.660333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:33.560354544Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.247682-08:00" }, { "operation": "add_edge", - "rtt_ns": 562678, - "rtt_ms": 0.562678, + "rtt_ns": 1897750, + "rtt_ms": 1.89775, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:33.560398583Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.248126-08:00" }, { "operation": "add_edge", - "rtt_ns": 783187, - "rtt_ms": 0.783187, + "rtt_ns": 1922334, + "rtt_ms": 1.922334, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.560732752Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.248136-08:00" }, { "operation": "add_edge", - "rtt_ns": 864847, - "rtt_ms": 0.864847, + "rtt_ns": 1761875, + "rtt_ms": 1.761875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:33.560770742Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:15.248139-08:00" }, { "operation": "add_edge", - "rtt_ns": 835957, - "rtt_ms": 0.835957, + "rtt_ns": 1756166, + "rtt_ms": 1.756166, "checkpoint": 0, "vertex_from": "12", "vertex_to": "18", - "timestamp": "2025-11-27T01:23:33.560819222Z" + "timestamp": "2025-11-27T04:03:15.248374-08:00" }, { "operation": "add_edge", - "rtt_ns": 740318, - "rtt_ms": 0.740318, + "rtt_ns": 1799500, + "rtt_ms": 1.7995, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:33.560898832Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:15.248505-08:00" }, { "operation": "add_edge", - "rtt_ns": 783178, - "rtt_ms": 0.783178, + "rtt_ns": 1238709, + "rtt_ms": 1.238709, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:33.560917872Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.248922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169246, - "rtt_ms": 1.169246, + "rtt_ns": 1503917, + "rtt_ms": 1.503917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "243", - "timestamp": "2025-11-27T01:23:33.56150741Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:15.24895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322296, - "rtt_ms": 1.322296, + "rtt_ns": 1774042, + "rtt_ms": 1.774042, "checkpoint": 0, "vertex_from": "12", "vertex_to": "26", - "timestamp": "2025-11-27T01:23:33.56159993Z" + "timestamp": "2025-11-27T04:03:15.249377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228947, - "rtt_ms": 1.228947, + "rtt_ns": 1898583, + "rtt_ms": 1.898583, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:33.56162855Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.249561-08:00" }, { "operation": "add_edge", - "rtt_ns": 906378, - "rtt_ms": 0.906378, + "rtt_ns": 1454750, + "rtt_ms": 1.45475, "checkpoint": 0, "vertex_from": "12", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.56164117Z" + "timestamp": "2025-11-27T04:03:15.249591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314756, - "rtt_ms": 1.314756, + "rtt_ns": 1960417, + "rtt_ms": 1.960417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.56164309Z" + "vertex_to": "243", + "timestamp": "2025-11-27T04:03:15.249624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302046, - "rtt_ms": 1.302046, + "rtt_ns": 1197125, + "rtt_ms": 1.197125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.56165861Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.249703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382986, - "rtt_ms": 1.382986, + "rtt_ns": 1365917, + "rtt_ms": 1.365917, "checkpoint": 0, "vertex_from": "12", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.562207078Z" + "timestamp": "2025-11-27T04:03:15.249741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288596, - "rtt_ms": 1.288596, + "rtt_ns": 1632792, + "rtt_ms": 1.632792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.562208248Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:15.249761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316596, - "rtt_ms": 1.316596, + "rtt_ns": 1636250, + "rtt_ms": 1.63625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.562216958Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:15.249777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462466, - "rtt_ms": 1.462466, + "rtt_ns": 1130125, + "rtt_ms": 1.130125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.562234088Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.250053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147297, - "rtt_ms": 1.147297, + "rtt_ns": 1086000, + "rtt_ms": 1.086, "checkpoint": 0, "vertex_from": "12", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.562656967Z" + "timestamp": "2025-11-27T04:03:15.250071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514565, - "rtt_ms": 1.514565, + "rtt_ns": 1024542, + "rtt_ms": 1.024542, "checkpoint": 0, "vertex_from": "12", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.563144945Z" + "timestamp": "2025-11-27T04:03:15.250587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502585, - "rtt_ms": 1.502585, + "rtt_ns": 1457708, + "rtt_ms": 1.457708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.563162185Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.250836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702775, - "rtt_ms": 1.702775, + "rtt_ns": 1606375, + "rtt_ms": 1.606375, "checkpoint": 0, "vertex_from": "12", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:33.563347635Z" + "timestamp": "2025-11-27T04:03:15.2512-08:00" }, { "operation": "add_edge", - "rtt_ns": 2015354, - "rtt_ms": 2.015354, + "rtt_ns": 1456333, + "rtt_ms": 1.456333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.563661354Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.251218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485796, - "rtt_ms": 1.485796, + "rtt_ns": 1646250, + "rtt_ms": 1.64625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.563694614Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.251272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486526, - "rtt_ms": 1.486526, + "rtt_ns": 1648667, + "rtt_ms": 1.648667, "checkpoint": 0, "vertex_from": "12", "vertex_to": "705", - "timestamp": "2025-11-27T01:23:33.563694894Z" + "timestamp": "2025-11-27T04:03:15.251391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549855, - "rtt_ms": 1.549855, + "rtt_ns": 1635792, + "rtt_ms": 1.635792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:33.563786623Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:15.251413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203913, - "rtt_ms": 2.203913, + "rtt_ns": 1357292, + "rtt_ms": 1.357292, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.563805323Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:15.251429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806755, - "rtt_ms": 1.806755, + "rtt_ns": 1740833, + "rtt_ms": 1.740833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:33.564025573Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.251444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771914, - "rtt_ms": 1.771914, + "rtt_ns": 1407083, + "rtt_ms": 1.407083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.564430551Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:15.251461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507586, - "rtt_ms": 1.507586, + "rtt_ns": 1362792, + "rtt_ms": 1.362792, "checkpoint": 0, "vertex_from": "12", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.564653951Z" + "timestamp": "2025-11-27T04:03:15.251952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631185, - "rtt_ms": 1.631185, + "rtt_ns": 1790083, + "rtt_ms": 1.790083, "checkpoint": 0, "vertex_from": "12", "vertex_to": "25", - "timestamp": "2025-11-27T01:23:33.56479504Z" + "timestamp": "2025-11-27T04:03:15.252627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490435, - "rtt_ms": 1.490435, + "rtt_ns": 1430167, + "rtt_ms": 1.430167, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:33.56483982Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:15.252649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221346, - "rtt_ms": 1.221346, + "rtt_ns": 1285417, + "rtt_ms": 1.285417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.56491762Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.252715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356006, - "rtt_ms": 1.356006, + "rtt_ns": 1530708, + "rtt_ms": 1.530708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.56505293Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:15.252732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423565, - "rtt_ms": 1.423565, + "rtt_ns": 1472708, + "rtt_ms": 1.472708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:33.565086619Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.252745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362696, - "rtt_ms": 1.362696, + "rtt_ns": 1291042, + "rtt_ms": 1.291042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.565169189Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.252752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195846, - "rtt_ms": 1.195846, + "rtt_ns": 1369709, + "rtt_ms": 1.369709, "checkpoint": 0, "vertex_from": "12", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.565222829Z" + "timestamp": "2025-11-27T04:03:15.252815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466496, - "rtt_ms": 1.466496, + "rtt_ns": 1507125, + "rtt_ms": 1.507125, "checkpoint": 0, "vertex_from": "12", "vertex_to": "308", - "timestamp": "2025-11-27T01:23:33.565254619Z" + "timestamp": "2025-11-27T04:03:15.252922-08:00" }, { "operation": "add_edge", - "rtt_ns": 921928, - "rtt_ms": 0.921928, + "rtt_ns": 1596500, + "rtt_ms": 1.5965, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.565353839Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.252988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202557, - "rtt_ms": 1.202557, + "rtt_ns": 1112709, + "rtt_ms": 1.112709, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.565999227Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.253066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425455, - "rtt_ms": 1.425455, + "rtt_ns": 1848042, + "rtt_ms": 1.848042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.566080926Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.254594-08:00" }, { "operation": "add_edge", - "rtt_ns": 933377, - "rtt_ms": 0.933377, + "rtt_ns": 1900000, + "rtt_ms": 1.9, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.566103826Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:15.254615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063276, - "rtt_ms": 1.063276, + "rtt_ns": 1994625, + "rtt_ms": 1.994625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:33.566117306Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:15.254623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327846, - "rtt_ms": 1.327846, + "rtt_ns": 1707167, + "rtt_ms": 1.707167, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:33.566247116Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:15.254631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407926, - "rtt_ms": 1.407926, + "rtt_ns": 1912916, + "rtt_ms": 1.912916, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.566249056Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:15.254646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284147, - "rtt_ms": 1.284147, + "rtt_ns": 1999042, + "rtt_ms": 1.999042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.566371756Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.254649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471356, - "rtt_ms": 1.471356, + "rtt_ns": 1675333, + "rtt_ms": 1.675333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.566695885Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:15.254665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467856, - "rtt_ms": 1.467856, + "rtt_ns": 1849583, + "rtt_ms": 1.849583, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.566724095Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.254665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514295, - "rtt_ms": 1.514295, + "rtt_ns": 1925584, + "rtt_ms": 1.925584, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:33.566871174Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:15.254678-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272313, - "rtt_ms": 2.272313, + "rtt_ns": 1741041, + "rtt_ms": 1.741041, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.568520869Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:15.254808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2580192, - "rtt_ms": 2.580192, + "rtt_ns": 1063667, + "rtt_ms": 1.063667, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.569277537Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:03:15.255873-08:00" }, { "operation": "add_edge", - "rtt_ns": 3221171, - "rtt_ms": 3.221171, + "rtt_ns": 1329959, + "rtt_ms": 1.329959, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.569339687Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:15.255977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2660532, - "rtt_ms": 2.660532, + "rtt_ns": 1441583, + "rtt_ms": 1.441583, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.569385627Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:15.256037-08:00" }, { "operation": "add_edge", - "rtt_ns": 3134711, - "rtt_ms": 3.134711, + "rtt_ns": 1454834, + "rtt_ms": 1.454834, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:33.569385807Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.25612-08:00" }, { "operation": "add_edge", - "rtt_ns": 3288831, - "rtt_ms": 3.288831, + "rtt_ns": 1519083, + "rtt_ms": 1.519083, "checkpoint": 0, "vertex_from": "12", "vertex_to": "816", - "timestamp": "2025-11-27T01:23:33.569395567Z" + "timestamp": "2025-11-27T04:03:15.256135-08:00" }, { "operation": "add_edge", - "rtt_ns": 3407870, - "rtt_ms": 3.40787, + "rtt_ns": 1509167, + "rtt_ms": 1.509167, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:33.569408437Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.256141-08:00" }, { "operation": "add_edge", - "rtt_ns": 2547373, - "rtt_ms": 2.547373, + "rtt_ns": 1512042, + "rtt_ms": 1.512042, "checkpoint": 0, "vertex_from": "12", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.569419477Z" + "timestamp": "2025-11-27T04:03:15.256193-08:00" }, { "operation": "add_edge", - "rtt_ns": 3053851, - "rtt_ms": 3.053851, + "rtt_ns": 1573750, + "rtt_ms": 1.57375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:33.569427147Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:15.256199-08:00" }, { "operation": "add_edge", - "rtt_ns": 3351561, - "rtt_ms": 3.351561, + "rtt_ns": 1554833, + "rtt_ms": 1.554833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.569433527Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:15.256204-08:00" }, { "operation": "add_edge", - "rtt_ns": 982537, - "rtt_ms": 0.982537, + "rtt_ns": 1557125, + "rtt_ms": 1.557125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:33.570380024Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.256223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118367, - "rtt_ms": 1.118367, + "rtt_ns": 1288458, + "rtt_ms": 1.288458, "checkpoint": 0, "vertex_from": "12", "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.570397284Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1055837, - "rtt_ms": 1.055837, - "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.570443994Z" + "timestamp": "2025-11-27T04:03:15.257163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933805, - "rtt_ms": 1.933805, + "rtt_ns": 1224958, + "rtt_ms": 1.224958, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "754", - "timestamp": "2025-11-27T01:23:33.570456904Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.257204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082867, - "rtt_ms": 1.082867, + "rtt_ns": 1246500, + "rtt_ms": 1.2465, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:33.570470664Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:15.257452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055257, - "rtt_ms": 1.055257, + "rtt_ns": 1354667, + "rtt_ms": 1.354667, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:33.570475814Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.257555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597245, - "rtt_ms": 1.597245, + "rtt_ns": 1454708, + "rtt_ms": 1.454708, "checkpoint": 0, "vertex_from": "12", "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.571007352Z" + "timestamp": "2025-11-27T04:03:15.257597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597405, - "rtt_ms": 1.597405, + "rtt_ns": 1637250, + "rtt_ms": 1.63725, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.571035892Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:15.257774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609815, - "rtt_ms": 1.609815, + "rtt_ns": 1669625, + "rtt_ms": 1.669625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.571038602Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.257791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743345, - "rtt_ms": 1.743345, + "rtt_ns": 1599083, + "rtt_ms": 1.599083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.571084032Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:15.257794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082697, - "rtt_ms": 1.082697, + "rtt_ns": 1756583, + "rtt_ms": 1.756583, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.571482761Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:15.257795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202197, - "rtt_ms": 1.202197, + "rtt_ns": 1646083, + "rtt_ms": 1.646083, "checkpoint": 0, "vertex_from": "12", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.571583461Z" + "timestamp": "2025-11-27T04:03:15.257869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160297, - "rtt_ms": 1.160297, + "rtt_ns": 1961709, + "rtt_ms": 1.961709, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:33.571632271Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.259167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907074, - "rtt_ms": 1.907074, + "rtt_ns": 1589417, + "rtt_ms": 1.589417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.572352208Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:15.259187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924714, - "rtt_ms": 1.924714, + "rtt_ns": 2037584, + "rtt_ms": 2.037584, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.572402518Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.259203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320996, - "rtt_ms": 1.320996, + "rtt_ns": 1768583, + "rtt_ms": 1.768583, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:33.572406468Z" + "vertex_to": "490", + "timestamp": "2025-11-27T04:03:15.259221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376726, - "rtt_ms": 1.376726, + "rtt_ns": 1681167, + "rtt_ms": 1.681167, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.572413798Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:15.259237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393126, - "rtt_ms": 1.393126, + "rtt_ns": 1753083, + "rtt_ms": 1.753083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:33.572433468Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:03:15.259528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978794, - "rtt_ms": 1.978794, + "rtt_ns": 1778584, + "rtt_ms": 1.778584, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "490", - "timestamp": "2025-11-27T01:23:33.572437908Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:15.259573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461046, - "rtt_ms": 1.461046, + "rtt_ns": 1785250, + "rtt_ms": 1.78525, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "13", - "timestamp": "2025-11-27T01:23:33.572469778Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:15.259577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614145, - "rtt_ms": 1.614145, + "rtt_ns": 2493792, + "rtt_ms": 2.493792, "checkpoint": 0, "vertex_from": "12", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.573098446Z" + "timestamp": "2025-11-27T04:03:15.260364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493235, - "rtt_ms": 1.493235, + "rtt_ns": 2578250, + "rtt_ms": 2.57825, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.573126886Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:03:15.260375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072594, - "rtt_ms": 2.072594, + "rtt_ns": 1672875, + "rtt_ms": 1.672875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.574480422Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:15.260877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2898241, - "rtt_ms": 2.898241, + "rtt_ns": 1367500, + "rtt_ms": 1.3675, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:33.574483652Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:15.260942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203714, - "rtt_ms": 2.203714, + "rtt_ns": 1901750, + "rtt_ms": 1.90175, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:33.574558662Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:15.261482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2242224, - "rtt_ms": 2.242224, + "rtt_ns": 2312042, + "rtt_ms": 2.312042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:33.574657842Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:15.2615-08:00" }, { "operation": "add_edge", - "rtt_ns": 2684812, - "rtt_ms": 2.684812, + "rtt_ns": 2292958, + "rtt_ms": 2.292958, "checkpoint": 0, "vertex_from": "12", "vertex_to": "14", - "timestamp": "2025-11-27T01:23:33.57508881Z" + "timestamp": "2025-11-27T04:03:15.261515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2886622, - "rtt_ms": 2.886622, + "rtt_ns": 2006167, + "rtt_ms": 2.006167, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:33.57532194Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:15.261534-08:00" }, { "operation": "add_edge", - "rtt_ns": 3417390, - "rtt_ms": 3.41739, + "rtt_ns": 2310333, + "rtt_ms": 2.310333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:33.575856478Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.261548-08:00" }, { "operation": "add_edge", - "rtt_ns": 2944421, - "rtt_ms": 2.944421, + "rtt_ns": 1357666, + "rtt_ms": 1.357666, "checkpoint": 0, "vertex_from": "12", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.576044267Z" + "timestamp": "2025-11-27T04:03:15.261734-08:00" }, { "operation": "add_edge", - "rtt_ns": 3594279, - "rtt_ms": 3.594279, + "rtt_ns": 2586541, + "rtt_ms": 2.586541, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.576066157Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:15.261755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2946641, - "rtt_ms": 2.946641, + "rtt_ns": 1410000, + "rtt_ms": 1.41, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "837", - "timestamp": "2025-11-27T01:23:33.576079147Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.261775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616605, - "rtt_ms": 1.616605, + "rtt_ns": 1148708, + "rtt_ms": 1.148708, "checkpoint": 0, "vertex_from": "12", "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.576099367Z" + "timestamp": "2025-11-27T04:03:15.262092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612425, - "rtt_ms": 1.612425, + "rtt_ns": 1310334, + "rtt_ms": 1.310334, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.576101137Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:03:15.26219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442835, - "rtt_ms": 1.442835, + "rtt_ns": 1477125, + "rtt_ms": 1.477125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.576103077Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.263026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578535, - "rtt_ms": 1.578535, + "rtt_ns": 1349250, + "rtt_ms": 1.34925, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:33.576139027Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:15.263127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833754, - "rtt_ms": 1.833754, + "rtt_ns": 1868708, + "rtt_ms": 1.868708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.577157094Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:03:15.263369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114207, - "rtt_ms": 1.114207, + "rtt_ns": 1870667, + "rtt_ms": 1.870667, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:33.577195304Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.263387-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2145214, - "rtt_ms": 2.145214, + "operation": "add_vertex", + "rtt_ns": 1647084, + "rtt_ms": 1.647084, "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.577235574Z" + "vertex_from": "811", + "timestamp": "2025-11-27T04:03:15.263404-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1247427, - "rtt_ms": 1.247427, + "operation": "add_edge", + "rtt_ns": 1688083, + "rtt_ms": 1.688083, "checkpoint": 0, - "vertex_from": "811", - "timestamp": "2025-11-27T01:23:33.577295204Z" + "vertex_from": "12", + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:15.263423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277216, - "rtt_ms": 1.277216, + "rtt_ns": 1901875, + "rtt_ms": 1.901875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.577419793Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.263437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319586, - "rtt_ms": 1.319586, + "rtt_ns": 1258791, + "rtt_ms": 1.258791, "checkpoint": 0, "vertex_from": "12", "vertex_to": "488", - "timestamp": "2025-11-27T01:23:33.577420393Z" + "timestamp": "2025-11-27T04:03:15.263451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565975, - "rtt_ms": 1.565975, + "rtt_ns": 1983625, + "rtt_ms": 1.983625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:33.577424613Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.263466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416346, - "rtt_ms": 1.416346, + "rtt_ns": 1556167, + "rtt_ms": 1.556167, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:33.577520113Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:15.263649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768215, - "rtt_ms": 1.768215, + "rtt_ns": 1202667, + "rtt_ms": 1.202667, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.577874222Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:15.26467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829765, - "rtt_ms": 1.829765, + "rtt_ns": 1447792, + "rtt_ms": 1.447792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:33.577897352Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.264818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279666, - "rtt_ms": 1.279666, + "rtt_ns": 1399416, + "rtt_ms": 1.399416, "checkpoint": 0, "vertex_from": "12", "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.57851653Z" + "timestamp": "2025-11-27T04:03:15.264837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416766, - "rtt_ms": 1.416766, + "rtt_ns": 1916917, + "rtt_ms": 1.916917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.57861318Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:03:15.264944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485716, - "rtt_ms": 1.485716, + "rtt_ns": 1539917, + "rtt_ms": 1.539917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.57864512Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.264963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256477, - "rtt_ms": 1.256477, + "rtt_ns": 1858000, + "rtt_ms": 1.858, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "123", - "timestamp": "2025-11-27T01:23:33.57868356Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.264986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298706, - "rtt_ms": 1.298706, + "rtt_ns": 1550667, + "rtt_ms": 1.550667, "checkpoint": 0, "vertex_from": "12", "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.578721039Z" + "timestamp": "2025-11-27T04:03:15.265002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201016, - "rtt_ms": 1.201016, + "rtt_ns": 1604208, + "rtt_ms": 1.604208, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:33.578722519Z" + "vertex_to": "811", + "timestamp": "2025-11-27T04:03:15.265009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434655, - "rtt_ms": 1.434655, + "rtt_ns": 1630042, + "rtt_ms": 1.630042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "811", - "timestamp": "2025-11-27T01:23:33.578730509Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.265018-08:00" }, { "operation": "add_edge", - "rtt_ns": 856277, - "rtt_ms": 0.856277, + "rtt_ns": 1475416, + "rtt_ms": 1.475416, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:33.578731699Z" + "vertex_to": "123", + "timestamp": "2025-11-27T04:03:15.265125-08:00" }, { "operation": "add_edge", - "rtt_ns": 880507, - "rtt_ms": 0.880507, + "rtt_ns": 1381958, + "rtt_ms": 1.381958, "checkpoint": 0, "vertex_from": "12", "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.578779799Z" + "timestamp": "2025-11-27T04:03:15.26622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779505, - "rtt_ms": 1.779505, + "rtt_ns": 1708834, + "rtt_ms": 1.708834, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:33.579202718Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:15.266673-08:00" }, { "operation": "add_edge", - "rtt_ns": 841968, - "rtt_ms": 0.841968, + "rtt_ns": 1951417, + "rtt_ms": 1.951417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.579359938Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:15.266771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614225, - "rtt_ms": 1.614225, + "rtt_ns": 2106708, + "rtt_ms": 2.106708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:33.580261245Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:15.26678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681235, - "rtt_ms": 1.681235, + "rtt_ns": 2107833, + "rtt_ms": 2.107833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:33.580295445Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:15.267126-08:00" }, { "operation": "add_edge", - "rtt_ns": 2005315, - "rtt_ms": 2.005315, + "rtt_ns": 2134750, + "rtt_ms": 2.13475, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:33.580738514Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:15.267144-08:00" }, { "operation": "add_edge", - "rtt_ns": 2683522, - "rtt_ms": 2.683522, + "rtt_ns": 2199875, + "rtt_ms": 2.199875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "574", - "timestamp": "2025-11-27T01:23:33.581368642Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.267145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782122, - "rtt_ms": 2.782122, + "rtt_ns": 2174917, + "rtt_ms": 2.174917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:33.581505861Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:15.267161-08:00" }, { "operation": "add_edge", - "rtt_ns": 2752002, - "rtt_ms": 2.752002, + "rtt_ns": 2091584, + "rtt_ms": 2.091584, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:33.581533051Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:15.267218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2860772, - "rtt_ms": 2.860772, + "rtt_ns": 2333625, + "rtt_ms": 2.333625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:33.581582931Z" + "vertex_to": "574", + "timestamp": "2025-11-27T04:03:15.267336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2414153, - "rtt_ms": 2.414153, + "rtt_ns": 1174250, + "rtt_ms": 1.17425, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.581619361Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:15.267395-08:00" }, { "operation": "add_edge", - "rtt_ns": 2991282, - "rtt_ms": 2.991282, + "rtt_ns": 1404250, + "rtt_ms": 1.40425, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:33.581724071Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:15.26808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395233, - "rtt_ms": 2.395233, + "rtt_ns": 1319292, + "rtt_ms": 1.319292, "checkpoint": 0, "vertex_from": "12", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.581756931Z" + "timestamp": "2025-11-27T04:03:15.2681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607325, - "rtt_ms": 1.607325, + "rtt_ns": 1349416, + "rtt_ms": 1.349416, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:33.58187055Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.268122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638975, - "rtt_ms": 1.638975, + "rtt_ns": 954334, + "rtt_ms": 0.954334, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.58193563Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:15.26835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196736, - "rtt_ms": 1.196736, + "rtt_ns": 1309000, + "rtt_ms": 1.309, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.58193668Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:15.268436-08:00" }, { "operation": "add_edge", - "rtt_ns": 654778, - "rtt_ms": 0.654778, + "rtt_ns": 1502958, + "rtt_ms": 1.502958, "checkpoint": 0, "vertex_from": "12", "vertex_to": "263", - "timestamp": "2025-11-27T01:23:33.5820251Z" + "timestamp": "2025-11-27T04:03:15.268665-08:00" }, { "operation": "add_edge", - "rtt_ns": 657379, - "rtt_ms": 0.657379, + "rtt_ns": 1624125, + "rtt_ms": 1.624125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:33.58216459Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.26877-08:00" }, { "operation": "add_edge", - "rtt_ns": 753528, - "rtt_ms": 0.753528, + "rtt_ns": 1494125, + "rtt_ms": 1.494125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.582338469Z" + "vertex_to": "111", + "timestamp": "2025-11-27T04:03:15.268831-08:00" }, { "operation": "add_edge", - "rtt_ns": 838678, - "rtt_ms": 0.838678, + "rtt_ns": 1722625, + "rtt_ms": 1.722625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "111", - "timestamp": "2025-11-27T01:23:33.582377019Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.26887-08:00" }, { "operation": "add_edge", - "rtt_ns": 780318, - "rtt_ms": 0.780318, + "rtt_ns": 1752000, + "rtt_ms": 1.752, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.582401429Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:15.268971-08:00" }, { "operation": "add_edge", - "rtt_ns": 732278, - "rtt_ms": 0.732278, + "rtt_ns": 1620125, + "rtt_ms": 1.620125, "checkpoint": 0, "vertex_from": "12", "vertex_to": "369", - "timestamp": "2025-11-27T01:23:33.582457979Z" + "timestamp": "2025-11-27T04:03:15.26972-08:00" }, { "operation": "add_edge", - "rtt_ns": 772588, - "rtt_ms": 0.772588, + "rtt_ns": 1385417, + "rtt_ms": 1.385417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:33.582530999Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:15.269736-08:00" }, { "operation": "add_edge", - "rtt_ns": 596619, - "rtt_ms": 0.596619, + "rtt_ns": 1669625, + "rtt_ms": 1.669625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.582533799Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:15.269751-08:00" }, { "operation": "add_edge", - "rtt_ns": 624459, - "rtt_ms": 0.624459, + "rtt_ns": 1643291, + "rtt_ms": 1.643291, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.582562779Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:15.269766-08:00" }, { "operation": "add_edge", - "rtt_ns": 694778, - "rtt_ms": 0.694778, + "rtt_ns": 1461375, + "rtt_ms": 1.461375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:33.582566648Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.269898-08:00" }, { "operation": "add_edge", - "rtt_ns": 573548, - "rtt_ms": 0.573548, + "rtt_ns": 1276500, + "rtt_ms": 1.2765, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:33.582739738Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:15.270149-08:00" }, { "operation": "add_edge", - "rtt_ns": 738078, - "rtt_ms": 0.738078, + "rtt_ns": 1335875, + "rtt_ms": 1.335875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:33.582764788Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:15.270168-08:00" }, { "operation": "add_edge", - "rtt_ns": 822988, - "rtt_ms": 0.822988, + "rtt_ns": 1515042, + "rtt_ms": 1.515042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:33.583162957Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:15.270181-08:00" }, { "operation": "add_edge", - "rtt_ns": 854838, - "rtt_ms": 0.854838, + "rtt_ns": 1224167, + "rtt_ms": 1.224167, "checkpoint": 0, "vertex_from": "12", "vertex_to": "175", - "timestamp": "2025-11-27T01:23:33.583233247Z" + "timestamp": "2025-11-27T04:03:15.270196-08:00" }, { "operation": "add_edge", - "rtt_ns": 946637, - "rtt_ms": 0.946637, + "rtt_ns": 1668833, + "rtt_ms": 1.668833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:33.583350816Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:15.27044-08:00" }, { "operation": "add_edge", - "rtt_ns": 918257, - "rtt_ms": 0.918257, + "rtt_ns": 1564250, + "rtt_ms": 1.56425, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.583379246Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:15.271316-08:00" }, { "operation": "add_edge", - "rtt_ns": 839087, - "rtt_ms": 0.839087, + "rtt_ns": 1137791, + "rtt_ms": 1.137791, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:33.583403896Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:15.271335-08:00" }, { "operation": "add_edge", - "rtt_ns": 897897, - "rtt_ms": 0.897897, + "rtt_ns": 1627916, + "rtt_ms": 1.627916, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:33.583434066Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:15.271349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287706, - "rtt_ms": 1.287706, + "rtt_ns": 1464500, + "rtt_ms": 1.4645, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:33.583820745Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:15.271363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343467, - "rtt_ms": 1.343467, + "rtt_ns": 1610375, + "rtt_ms": 1.610375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.583911565Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:15.271377-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1129750, + "rtt_ms": 1.12975, + "checkpoint": 0, + "vertex_from": "566", + "timestamp": "2025-11-27T04:03:15.271571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221756, - "rtt_ms": 1.221756, + "rtt_ns": 1395958, + "rtt_ms": 1.395958, "checkpoint": 0, "vertex_from": "12", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.583988864Z" + "timestamp": "2025-11-27T04:03:15.271578-08:00" }, { "operation": "add_edge", - "rtt_ns": 867697, - "rtt_ms": 0.867697, + "rtt_ns": 1436834, + "rtt_ms": 1.436834, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:33.584032914Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:15.271587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353956, - "rtt_ms": 1.353956, + "rtt_ns": 1425250, + "rtt_ms": 1.42525, "checkpoint": 0, "vertex_from": "12", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.584095664Z" + "timestamp": "2025-11-27T04:03:15.271593-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1513185, - "rtt_ms": 1.513185, + "operation": "add_edge", + "rtt_ns": 1863834, + "rtt_ms": 1.863834, "checkpoint": 0, - "vertex_from": "566", - "timestamp": "2025-11-27T01:23:33.584749592Z" + "vertex_from": "12", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.271601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2730752, - "rtt_ms": 2.730752, + "rtt_ns": 1986625, + "rtt_ms": 1.986625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:33.586135628Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.273365-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375323, - "rtt_ms": 2.375323, + "rtt_ns": 2017541, + "rtt_ms": 2.017541, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.586198478Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:15.273368-08:00" }, { "operation": "add_edge", - "rtt_ns": 2803022, - "rtt_ms": 2.803022, + "rtt_ns": 1809875, + "rtt_ms": 1.809875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.586238678Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:15.273381-08:00" }, { "operation": "add_edge", - "rtt_ns": 2925002, - "rtt_ms": 2.925002, + "rtt_ns": 1793584, + "rtt_ms": 1.793584, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:33.586305248Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:15.273387-08:00" }, { "operation": "add_edge", - "rtt_ns": 2409442, - "rtt_ms": 2.409442, + "rtt_ns": 2157750, + "rtt_ms": 2.15775, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:33.586322427Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.273522-08:00" }, { "operation": "add_edge", - "rtt_ns": 2998021, - "rtt_ms": 2.998021, + "rtt_ns": 2191459, + "rtt_ms": 2.191459, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:33.586350907Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:15.273527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2369723, - "rtt_ms": 2.369723, + "rtt_ns": 1952833, + "rtt_ms": 1.952833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:33.586404267Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:15.27354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349423, - "rtt_ms": 2.349423, + "rtt_ns": 1967625, + "rtt_ms": 1.967625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.586446557Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:15.273546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768655, - "rtt_ms": 1.768655, + "rtt_ns": 2251917, + "rtt_ms": 2.251917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:33.586518957Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:15.273569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533293, - "rtt_ms": 2.533293, + "rtt_ns": 1974917, + "rtt_ms": 1.974917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:33.586525167Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:15.273576-08:00" }, { "operation": "add_edge", - "rtt_ns": 944127, - "rtt_ms": 0.944127, + "rtt_ns": 1740583, + "rtt_ms": 1.740583, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:33.587082405Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:15.275123-08:00" }, { "operation": "add_edge", - "rtt_ns": 932147, - "rtt_ms": 0.932147, + "rtt_ns": 1563500, + "rtt_ms": 1.5635, "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.587135085Z" + "vertex_from": "13", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.27514-08:00" }, { "operation": "add_edge", - "rtt_ns": 899827, - "rtt_ms": 0.899827, + "rtt_ns": 1676459, + "rtt_ms": 1.676459, "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:33.587140415Z" + "vertex_from": "13", + "vertex_to": "29", + "timestamp": "2025-11-27T04:03:15.275217-08:00" }, { "operation": "add_edge", - "rtt_ns": 857267, - "rtt_ms": 0.857267, + "rtt_ns": 1724583, + "rtt_ms": 1.724583, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.587164385Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.275295-08:00" }, { "operation": "add_edge", - "rtt_ns": 867078, - "rtt_ms": 0.867078, + "rtt_ns": 1790417, + "rtt_ms": 1.790417, "checkpoint": 0, "vertex_from": "13", "vertex_to": "26", - "timestamp": "2025-11-27T01:23:33.587219305Z" + "timestamp": "2025-11-27T04:03:15.275318-08:00" }, { "operation": "add_edge", - "rtt_ns": 917168, - "rtt_ms": 0.917168, + "rtt_ns": 1961833, + "rtt_ms": 1.961833, "checkpoint": 0, - "vertex_from": "13", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:33.587241895Z" + "vertex_from": "12", + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:15.275328-08:00" }, { "operation": "add_edge", - "rtt_ns": 887278, - "rtt_ms": 0.887278, + "rtt_ns": 1961625, + "rtt_ms": 1.961625, "checkpoint": 0, - "vertex_from": "13", - "vertex_to": "29", - "timestamp": "2025-11-27T01:23:33.587293105Z" + "vertex_from": "12", + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.275331-08:00" }, { "operation": "add_edge", - "rtt_ns": 848058, - "rtt_ms": 0.848058, + "rtt_ns": 1807791, + "rtt_ms": 1.807791, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.587296015Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:15.275331-08:00" }, { "operation": "add_edge", - "rtt_ns": 808547, - "rtt_ms": 0.808547, + "rtt_ns": 1835792, + "rtt_ms": 1.835792, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.587328844Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:15.275383-08:00" }, { "operation": "add_edge", - "rtt_ns": 817157, - "rtt_ms": 0.817157, + "rtt_ns": 2029125, + "rtt_ms": 2.029125, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.587343474Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.275417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036877, - "rtt_ms": 1.036877, + "rtt_ns": 1614125, + "rtt_ms": 1.614125, "checkpoint": 0, "vertex_from": "13", "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.588173212Z" + "timestamp": "2025-11-27T04:03:15.276755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008127, - "rtt_ms": 1.008127, + "rtt_ns": 1349042, + "rtt_ms": 1.349042, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.588231012Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.276767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549126, - "rtt_ms": 1.549126, + "rtt_ns": 1488875, + "rtt_ms": 1.488875, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:33.588633551Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.276818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680675, - "rtt_ms": 1.680675, + "rtt_ns": 1446542, + "rtt_ms": 1.446542, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.58882266Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:15.276831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554655, - "rtt_ms": 1.554655, + "rtt_ns": 1724750, + "rtt_ms": 1.72475, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.588852Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.277044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530066, - "rtt_ms": 1.530066, + "rtt_ns": 1765792, + "rtt_ms": 1.765792, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.58887467Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:15.277061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665115, - "rtt_ms": 1.665115, + "rtt_ns": 1777041, + "rtt_ms": 1.777041, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.58890801Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:15.277111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619735, - "rtt_ms": 1.619735, + "rtt_ns": 2139916, + "rtt_ms": 2.139916, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "632", - "timestamp": "2025-11-27T01:23:33.58891497Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:15.277264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595976, - "rtt_ms": 1.595976, + "rtt_ns": 1946583, + "rtt_ms": 1.946583, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:33.58892612Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:03:15.27728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843764, - "rtt_ms": 1.843764, + "rtt_ns": 2200916, + "rtt_ms": 2.200916, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.589009969Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.277419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348826, - "rtt_ms": 1.348826, + "rtt_ns": 1418959, + "rtt_ms": 1.418959, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.589582108Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:15.278251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2031614, - "rtt_ms": 2.031614, + "rtt_ns": 1526583, + "rtt_ms": 1.526583, "checkpoint": 0, "vertex_from": "13", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.590207346Z" + "timestamp": "2025-11-27T04:03:15.278283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961144, - "rtt_ms": 1.961144, + "rtt_ns": 1476542, + "rtt_ms": 1.476542, "checkpoint": 0, "vertex_from": "13", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:33.590597295Z" + "timestamp": "2025-11-27T04:03:15.278297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863564, - "rtt_ms": 1.863564, + "rtt_ns": 1614792, + "rtt_ms": 1.614792, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.590687264Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:15.278677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801344, - "rtt_ms": 1.801344, + "rtt_ns": 1971666, + "rtt_ms": 1.971666, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:33.590712184Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.27874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987754, - "rtt_ms": 1.987754, + "rtt_ns": 1730250, + "rtt_ms": 1.73025, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:33.590863144Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.278995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937135, - "rtt_ms": 1.937135, + "rtt_ns": 2125958, + "rtt_ms": 2.125958, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:33.590948734Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.279171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112824, - "rtt_ms": 2.112824, + "rtt_ns": 1343375, + "rtt_ms": 1.343375, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.590966024Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.279641-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058144, - "rtt_ms": 2.058144, + "rtt_ns": 2238625, + "rtt_ms": 2.238625, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.590975154Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:15.279658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463595, - "rtt_ms": 1.463595, + "rtt_ns": 2418500, + "rtt_ms": 2.4185, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.591048143Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.279699-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142133, - "rtt_ms": 2.142133, + "rtt_ns": 1505542, + "rtt_ms": 1.505542, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.591069683Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.27976-08:00" }, { "operation": "add_edge", - "rtt_ns": 862167, - "rtt_ms": 0.862167, + "rtt_ns": 1586916, + "rtt_ms": 1.586916, "checkpoint": 0, "vertex_from": "13", "vertex_to": "549", - "timestamp": "2025-11-27T01:23:33.591070533Z" + "timestamp": "2025-11-27T04:03:15.279871-08:00" }, { "operation": "add_edge", - "rtt_ns": 627598, - "rtt_ms": 0.627598, + "rtt_ns": 2792666, + "rtt_ms": 2.792666, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.591342502Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:15.279904-08:00" }, { "operation": "add_edge", - "rtt_ns": 662948, - "rtt_ms": 0.662948, + "rtt_ns": 1176459, + "rtt_ms": 1.176459, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:33.591351722Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.279919-08:00" }, { "operation": "add_edge", - "rtt_ns": 799187, - "rtt_ms": 0.799187, + "rtt_ns": 1327708, + "rtt_ms": 1.327708, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.591398302Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:15.280007-08:00" }, { "operation": "add_edge", - "rtt_ns": 603718, - "rtt_ms": 0.603718, + "rtt_ns": 1047334, + "rtt_ms": 1.047334, "checkpoint": 0, "vertex_from": "13", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.591468572Z" + "timestamp": "2025-11-27T04:03:15.280044-08:00" }, { "operation": "add_edge", - "rtt_ns": 625678, - "rtt_ms": 0.625678, + "rtt_ns": 942125, + "rtt_ms": 0.942125, "checkpoint": 0, "vertex_from": "13", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.591575432Z" + "timestamp": "2025-11-27T04:03:15.280114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241046, - "rtt_ms": 1.241046, + "rtt_ns": 1359791, + "rtt_ms": 1.359791, "checkpoint": 0, "vertex_from": "13", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:33.59220904Z" + "timestamp": "2025-11-27T04:03:15.281002-08:00" }, { "operation": "add_edge", - "rtt_ns": 885878, - "rtt_ms": 0.885878, + "rtt_ns": 1261584, + "rtt_ms": 1.261584, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:33.59224021Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.281022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287816, - "rtt_ms": 1.287816, + "rtt_ns": 1377084, + "rtt_ms": 1.377084, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.59226481Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.281077-08:00" }, { "operation": "add_edge", - "rtt_ns": 940588, - "rtt_ms": 0.940588, + "rtt_ns": 1608500, + "rtt_ms": 1.6085, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.59228488Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.281268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341556, - "rtt_ms": 1.341556, + "rtt_ns": 1405209, + "rtt_ms": 1.405209, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.592391029Z" + "vertex_to": "117", + "timestamp": "2025-11-27T04:03:15.281277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528546, - "rtt_ms": 1.528546, + "rtt_ns": 1367750, + "rtt_ms": 1.36775, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:33.592928138Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:15.281287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867215, - "rtt_ms": 1.867215, + "rtt_ns": 1476125, + "rtt_ms": 1.476125, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.592938708Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.281381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923855, - "rtt_ms": 1.923855, + "rtt_ns": 1481500, + "rtt_ms": 1.4815, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "117", - "timestamp": "2025-11-27T01:23:33.592995808Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:15.281491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447836, - "rtt_ms": 1.447836, + "rtt_ns": 1399584, + "rtt_ms": 1.399584, "checkpoint": 0, "vertex_from": "13", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.593023978Z" + "timestamp": "2025-11-27T04:03:15.281514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639265, - "rtt_ms": 1.639265, + "rtt_ns": 1473417, + "rtt_ms": 1.473417, "checkpoint": 0, "vertex_from": "13", "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.593108637Z" + "timestamp": "2025-11-27T04:03:15.281518-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321263, - "rtt_ms": 2.321263, + "rtt_ns": 1340209, + "rtt_ms": 1.340209, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "627", - "timestamp": "2025-11-27T01:23:33.594562463Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:15.282343-08:00" }, { "operation": "add_edge", - "rtt_ns": 2419563, - "rtt_ms": 2.419563, + "rtt_ns": 1338541, + "rtt_ms": 1.338541, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:33.594630473Z" + "vertex_to": "627", + "timestamp": "2025-11-27T04:03:15.282362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602126, - "rtt_ms": 1.602126, + "rtt_ns": 1299500, + "rtt_ms": 1.2995, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.594711813Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.282378-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340064, - "rtt_ms": 2.340064, + "rtt_ns": 1297541, + "rtt_ms": 1.297541, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:33.594732063Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:15.282585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2474363, - "rtt_ms": 2.474363, + "rtt_ns": 1334208, + "rtt_ms": 1.334208, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.594740203Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:15.282603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770665, - "rtt_ms": 1.770665, + "rtt_ns": 1591042, + "rtt_ms": 1.591042, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.594767383Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:15.282869-08:00" }, { "operation": "add_edge", - "rtt_ns": 2403863, - "rtt_ms": 2.403863, + "rtt_ns": 1382875, + "rtt_ms": 1.382875, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:33.595429511Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.282902-08:00" }, { "operation": "add_edge", - "rtt_ns": 723698, - "rtt_ms": 0.723698, + "rtt_ns": 1418834, + "rtt_ms": 1.418834, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.595436411Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.282911-08:00" }, { "operation": "add_edge", - "rtt_ns": 2503243, - "rtt_ms": 2.503243, + "rtt_ns": 1558667, + "rtt_ms": 1.558667, "checkpoint": 0, "vertex_from": "13", "vertex_to": "291", - "timestamp": "2025-11-27T01:23:33.595444611Z" + "timestamp": "2025-11-27T04:03:15.282943-08:00" }, { "operation": "add_edge", - "rtt_ns": 988068, - "rtt_ms": 0.988068, + "rtt_ns": 1464167, + "rtt_ms": 1.464167, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.595551891Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:15.282979-08:00" }, { "operation": "add_edge", - "rtt_ns": 3340620, - "rtt_ms": 3.34062, + "rtt_ns": 1289958, + "rtt_ms": 1.289958, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:33.59562636Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.283652-08:00" }, { "operation": "add_edge", - "rtt_ns": 3114141, - "rtt_ms": 3.114141, + "rtt_ns": 1333709, + "rtt_ms": 1.333709, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:33.596043459Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.283712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611036, - "rtt_ms": 1.611036, + "rtt_ns": 1537584, + "rtt_ms": 1.537584, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.596242289Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:15.283881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487386, - "rtt_ms": 1.487386, + "rtt_ns": 1415416, + "rtt_ms": 1.415416, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.596256959Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:15.284019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535335, - "rtt_ms": 1.535335, + "rtt_ns": 1559584, + "rtt_ms": 1.559584, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:33.596278278Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:15.284146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977894, - "rtt_ms": 1.977894, + "rtt_ns": 1361167, + "rtt_ms": 1.361167, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:33.596711007Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.284264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843075, - "rtt_ms": 1.843075, + "rtt_ns": 1411250, + "rtt_ms": 1.41125, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.597273846Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:15.284282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940424, - "rtt_ms": 1.940424, + "rtt_ns": 1357250, + "rtt_ms": 1.35725, "checkpoint": 0, "vertex_from": "13", "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.597386795Z" + "timestamp": "2025-11-27T04:03:15.284301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969394, - "rtt_ms": 1.969394, + "rtt_ns": 1634250, + "rtt_ms": 1.63425, "checkpoint": 0, "vertex_from": "13", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.597408395Z" + "timestamp": "2025-11-27T04:03:15.284547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781635, - "rtt_ms": 1.781635, + "rtt_ns": 1644167, + "rtt_ms": 1.644167, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:33.597409055Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.284624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155556, - "rtt_ms": 1.155556, + "rtt_ns": 1063625, + "rtt_ms": 1.063625, "checkpoint": 0, - "vertex_from": "13", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.597414045Z" + "vertex_from": "14", + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.285211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902684, - "rtt_ms": 1.902684, + "rtt_ns": 1529459, + "rtt_ms": 1.529459, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.597455385Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:15.285254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230236, - "rtt_ms": 1.230236, + "rtt_ns": 1768792, + "rtt_ms": 1.768792, "checkpoint": 0, - "vertex_from": "13", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.597473845Z" + "vertex_from": "14", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.286034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222427, - "rtt_ms": 1.222427, + "rtt_ns": 2014250, + "rtt_ms": 2.01425, "checkpoint": 0, - "vertex_from": "14", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.597501815Z" + "vertex_from": "13", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.286034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468156, - "rtt_ms": 1.468156, + "rtt_ns": 2184209, + "rtt_ms": 2.184209, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:33.597514265Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:15.286067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803655, - "rtt_ms": 1.803655, + "rtt_ns": 2413000, + "rtt_ms": 2.413, "checkpoint": 0, - "vertex_from": "14", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.598515462Z" + "vertex_from": "13", + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:15.286068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274956, - "rtt_ms": 1.274956, + "rtt_ns": 1477875, + "rtt_ms": 1.477875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.598663811Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:15.286103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346646, - "rtt_ms": 1.346646, + "rtt_ns": 1814958, + "rtt_ms": 1.814958, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.598756001Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.286117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535405, - "rtt_ms": 1.535405, + "rtt_ns": 1997125, + "rtt_ms": 1.997125, "checkpoint": 0, "vertex_from": "14", "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.598809911Z" + "timestamp": "2025-11-27T04:03:15.28628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428256, - "rtt_ms": 1.428256, + "rtt_ns": 1753208, + "rtt_ms": 1.753208, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:33.598838211Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.286301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433236, - "rtt_ms": 1.433236, + "rtt_ns": 1254875, + "rtt_ms": 1.254875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.598909811Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.286467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499655, - "rtt_ms": 1.499655, + "rtt_ns": 1695916, + "rtt_ms": 1.695916, "checkpoint": 0, "vertex_from": "14", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.59895597Z" + "timestamp": "2025-11-27T04:03:15.286952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511775, - "rtt_ms": 1.511775, + "rtt_ns": 1225209, + "rtt_ms": 1.225209, "checkpoint": 0, "vertex_from": "14", "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.59902714Z" + "timestamp": "2025-11-27T04:03:15.287293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646285, - "rtt_ms": 1.646285, + "rtt_ns": 1250375, + "rtt_ms": 1.250375, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.59914927Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:15.287355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735305, - "rtt_ms": 1.735305, + "rtt_ns": 1554625, + "rtt_ms": 1.554625, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.59915115Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.287591-08:00" }, { "operation": "add_edge", - "rtt_ns": 572479, - "rtt_ms": 0.572479, + "rtt_ns": 1541917, + "rtt_ms": 1.541917, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:33.59923877Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:15.287611-08:00" }, { "operation": "add_edge", - "rtt_ns": 770668, - "rtt_ms": 0.770668, + "rtt_ns": 1589000, + "rtt_ms": 1.589, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:33.59928808Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.287626-08:00" }, { "operation": "add_edge", - "rtt_ns": 688298, - "rtt_ms": 0.688298, + "rtt_ns": 1741583, + "rtt_ms": 1.741583, "checkpoint": 0, "vertex_from": "14", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.599445299Z" + "timestamp": "2025-11-27T04:03:15.28786-08:00" }, { "operation": "add_edge", - "rtt_ns": 704728, - "rtt_ms": 0.704728, + "rtt_ns": 1587125, + "rtt_ms": 1.587125, "checkpoint": 0, "vertex_from": "14", "vertex_to": "41", - "timestamp": "2025-11-27T01:23:33.599516059Z" + "timestamp": "2025-11-27T04:03:15.287868-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1403833, + "rtt_ms": 1.403833, + "checkpoint": 0, + "vertex_from": "14", + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:15.287872-08:00" }, { "operation": "add_edge", - "rtt_ns": 688788, - "rtt_ms": 0.688788, + "rtt_ns": 1634000, + "rtt_ms": 1.634, "checkpoint": 0, "vertex_from": "14", "vertex_to": "17", - "timestamp": "2025-11-27T01:23:33.599528089Z" + "timestamp": "2025-11-27T04:03:15.287935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358866, - "rtt_ms": 1.358866, + "rtt_ns": 1815292, + "rtt_ms": 1.815292, "checkpoint": 0, "vertex_from": "14", "vertex_to": "50", - "timestamp": "2025-11-27T01:23:33.600315826Z" + "timestamp": "2025-11-27T04:03:15.288769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323686, - "rtt_ms": 1.323686, + "rtt_ns": 1484583, + "rtt_ms": 1.484583, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:33.600351816Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:15.28884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222286, - "rtt_ms": 1.222286, + "rtt_ns": 1557959, + "rtt_ms": 1.557959, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:33.600377456Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:15.288854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468795, - "rtt_ms": 1.468795, + "rtt_ns": 1236792, + "rtt_ms": 1.236792, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.600381286Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.288863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148856, - "rtt_ms": 1.148856, + "rtt_ns": 1403583, + "rtt_ms": 1.403583, "checkpoint": 0, "vertex_from": "14", "vertex_to": "496", - "timestamp": "2025-11-27T01:23:33.600389016Z" + "timestamp": "2025-11-27T04:03:15.289015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252196, - "rtt_ms": 1.252196, + "rtt_ns": 1099333, + "rtt_ms": 1.099333, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.600403066Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:15.289036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114906, - "rtt_ms": 1.114906, + "rtt_ns": 1459375, + "rtt_ms": 1.459375, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.600403966Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:15.289052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768035, - "rtt_ms": 1.768035, + "rtt_ns": 1395250, + "rtt_ms": 1.39525, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.601214104Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:15.28927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997124, - "rtt_ms": 1.997124, + "rtt_ns": 1419250, + "rtt_ms": 1.41925, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.601526383Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:15.289288-08:00" }, { "operation": "add_edge", - "rtt_ns": 3031851, - "rtt_ms": 3.031851, + "rtt_ns": 1431458, + "rtt_ms": 1.431458, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:33.60254946Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.289292-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331013, - "rtt_ms": 2.331013, + "rtt_ns": 1089584, + "rtt_ms": 1.089584, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:33.602647799Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:15.290142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2343773, - "rtt_ms": 2.343773, + "rtt_ns": 1429958, + "rtt_ms": 1.429958, "checkpoint": 0, "vertex_from": "14", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.602697139Z" + "timestamp": "2025-11-27T04:03:15.290201-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393893, - "rtt_ms": 2.393893, + "rtt_ns": 1583333, + "rtt_ms": 1.583333, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:33.602784329Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.290425-08:00" }, { "operation": "add_edge", - "rtt_ns": 2474383, - "rtt_ms": 2.474383, + "rtt_ns": 1711500, + "rtt_ms": 1.7115, "checkpoint": 0, "vertex_from": "14", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.602858029Z" + "timestamp": "2025-11-27T04:03:15.290567-08:00" }, { "operation": "add_edge", - "rtt_ns": 2467723, - "rtt_ms": 2.467723, + "rtt_ns": 1337875, + "rtt_ms": 1.337875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.602872349Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:03:15.290632-08:00" }, { "operation": "add_edge", - "rtt_ns": 2500293, - "rtt_ms": 2.500293, + "rtt_ns": 1623458, + "rtt_ms": 1.623458, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.602879199Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:15.29064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563573, - "rtt_ms": 2.563573, + "rtt_ns": 1614208, + "rtt_ms": 1.614208, "checkpoint": 0, "vertex_from": "14", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.602968319Z" + "timestamp": "2025-11-27T04:03:15.290651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479265, - "rtt_ms": 1.479265, + "rtt_ns": 1845167, + "rtt_ms": 1.845167, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.603006578Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:03:15.290709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815784, - "rtt_ms": 1.815784, + "rtt_ns": 1489084, + "rtt_ms": 1.489084, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:33.603031308Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.29076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257466, - "rtt_ms": 1.257466, + "rtt_ns": 1504292, + "rtt_ms": 1.504292, "checkpoint": 0, "vertex_from": "14", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.603808346Z" + "timestamp": "2025-11-27T04:03:15.290793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142797, - "rtt_ms": 1.142797, + "rtt_ns": 1129333, + "rtt_ms": 1.129333, "checkpoint": 0, "vertex_from": "14", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.603928496Z" + "timestamp": "2025-11-27T04:03:15.291332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232527, - "rtt_ms": 1.232527, + "rtt_ns": 1202625, + "rtt_ms": 1.202625, "checkpoint": 0, "vertex_from": "14", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:33.603930636Z" + "timestamp": "2025-11-27T04:03:15.291347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570335, - "rtt_ms": 1.570335, + "rtt_ns": 1079792, + "rtt_ms": 1.079792, "checkpoint": 0, "vertex_from": "14", "vertex_to": "244", - "timestamp": "2025-11-27T01:23:33.604444494Z" + "timestamp": "2025-11-27T04:03:15.291647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813135, - "rtt_ms": 1.813135, + "rtt_ns": 1354166, + "rtt_ms": 1.354166, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "16", - "timestamp": "2025-11-27T01:23:33.604461574Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.291781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604735, - "rtt_ms": 1.604735, + "rtt_ns": 1274708, + "rtt_ms": 1.274708, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.604464514Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:15.292069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596275, - "rtt_ms": 1.596275, + "rtt_ns": 1412042, + "rtt_ms": 1.412042, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "466", - "timestamp": "2025-11-27T01:23:33.604477304Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:15.292173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470466, - "rtt_ms": 1.470466, + "rtt_ns": 1548250, + "rtt_ms": 1.54825, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.604477914Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:15.292189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522565, - "rtt_ms": 1.522565, + "rtt_ns": 1638209, + "rtt_ms": 1.638209, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:33.604492124Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:15.292289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498716, - "rtt_ms": 1.498716, + "rtt_ns": 1599083, + "rtt_ms": 1.599083, "checkpoint": 0, "vertex_from": "14", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.604530994Z" + "timestamp": "2025-11-27T04:03:15.292309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282156, - "rtt_ms": 1.282156, + "rtt_ns": 1691584, + "rtt_ms": 1.691584, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:33.605211692Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:03:15.292325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346536, - "rtt_ms": 1.346536, + "rtt_ns": 1191958, + "rtt_ms": 1.191958, "checkpoint": 0, "vertex_from": "14", "vertex_to": "965", - "timestamp": "2025-11-27T01:23:33.605278172Z" + "timestamp": "2025-11-27T04:03:15.292525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480806, - "rtt_ms": 1.480806, + "rtt_ns": 894416, + "rtt_ms": 0.894416, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:33.605290062Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.292542-08:00" }, { "operation": "add_edge", - "rtt_ns": 819688, - "rtt_ms": 0.819688, + "rtt_ns": 1117625, + "rtt_ms": 1.117625, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.605299552Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:15.2929-08:00" }, { "operation": "add_edge", - "rtt_ns": 891968, - "rtt_ms": 0.891968, + "rtt_ns": 1568792, + "rtt_ms": 1.568792, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.605385622Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.292916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167667, - "rtt_ms": 1.167667, + "rtt_ns": 1668917, + "rtt_ms": 1.668917, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.605699751Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.293859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335756, - "rtt_ms": 1.335756, + "rtt_ns": 1565750, + "rtt_ms": 1.56575, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.60580179Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:15.293875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464576, - "rtt_ms": 1.464576, + "rtt_ns": 1840625, + "rtt_ms": 1.840625, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.60592735Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:15.294166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496226, - "rtt_ms": 1.496226, + "rtt_ns": 1641417, + "rtt_ms": 1.641417, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.6059424Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:15.294184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474036, - "rtt_ms": 1.474036, + "rtt_ns": 2063375, + "rtt_ms": 2.063375, "checkpoint": 0, "vertex_from": "14", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:33.60595392Z" + "timestamp": "2025-11-27T04:03:15.294237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603716, - "rtt_ms": 1.603716, + "rtt_ns": 2185208, + "rtt_ms": 2.185208, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.606816858Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.294255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832485, - "rtt_ms": 1.832485, + "rtt_ns": 2122166, + "rtt_ms": 2.122166, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:33.607114837Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.294412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852875, - "rtt_ms": 1.852875, + "rtt_ns": 2166459, + "rtt_ms": 2.166459, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.607153507Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.294692-08:00" }, { "operation": "add_edge", - "rtt_ns": 2485033, - "rtt_ms": 2.485033, + "rtt_ns": 1793500, + "rtt_ms": 1.7935, "checkpoint": 0, "vertex_from": "14", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.607871855Z" + "timestamp": "2025-11-27T04:03:15.294694-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180464, - "rtt_ms": 2.180464, + "rtt_ns": 1821042, + "rtt_ms": 1.821042, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.607983914Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2060354, - "rtt_ms": 2.060354, - "checkpoint": 0, - "vertex_from": "14", - "vertex_to": "157", - "timestamp": "2025-11-27T01:23:33.608004584Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:15.294738-08:00" }, { "operation": "add_edge", - "rtt_ns": 2714642, - "rtt_ms": 2.714642, + "rtt_ns": 1517292, + "rtt_ms": 1.517292, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.608005934Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.295377-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057554, - "rtt_ms": 2.057554, + "rtt_ns": 1558792, + "rtt_ms": 1.558792, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.608012744Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:15.295435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2335023, - "rtt_ms": 2.335023, + "rtt_ns": 1256542, + "rtt_ms": 1.256542, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:33.608036664Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.295494-08:00" }, { "operation": "add_edge", - "rtt_ns": 2117184, - "rtt_ms": 2.117184, + "rtt_ns": 1346000, + "rtt_ms": 1.346, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:33.608046374Z" + "vertex_to": "157", + "timestamp": "2025-11-27T04:03:15.295513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445075, - "rtt_ms": 1.445075, + "rtt_ns": 1313334, + "rtt_ms": 1.313334, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.608265013Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.295726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135336, - "rtt_ms": 1.135336, + "rtt_ns": 1564292, + "rtt_ms": 1.564292, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.608291143Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.295749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209416, - "rtt_ms": 1.209416, + "rtt_ns": 1496542, + "rtt_ms": 1.496542, "checkpoint": 0, "vertex_from": "14", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.608325893Z" + "timestamp": "2025-11-27T04:03:15.295752-08:00" }, { "operation": "add_edge", - "rtt_ns": 643298, - "rtt_ms": 0.643298, + "rtt_ns": 1064958, + "rtt_ms": 1.064958, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:33.608516643Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:15.295761-08:00" }, { "operation": "add_edge", - "rtt_ns": 688218, - "rtt_ms": 0.688218, + "rtt_ns": 1315209, + "rtt_ms": 1.315209, "checkpoint": 0, "vertex_from": "14", "vertex_to": "866", - "timestamp": "2025-11-27T01:23:33.608694272Z" + "timestamp": "2025-11-27T04:03:15.296054-08:00" }, { "operation": "add_edge", - "rtt_ns": 708858, - "rtt_ms": 0.708858, + "rtt_ns": 1499792, + "rtt_ms": 1.499792, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.608716132Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:15.296195-08:00" }, { "operation": "add_edge", - "rtt_ns": 785378, - "rtt_ms": 0.785378, + "rtt_ns": 1434209, + "rtt_ms": 1.434209, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.608772402Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:15.296871-08:00" }, { "operation": "add_edge", - "rtt_ns": 799518, - "rtt_ms": 0.799518, + "rtt_ns": 1372916, + "rtt_ms": 1.372916, "checkpoint": 0, "vertex_from": "14", "vertex_to": "920", - "timestamp": "2025-11-27T01:23:33.608847212Z" + "timestamp": "2025-11-27T04:03:15.296887-08:00" }, { "operation": "add_edge", - "rtt_ns": 876508, - "rtt_ms": 0.876508, + "rtt_ns": 1599916, + "rtt_ms": 1.599916, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:33.608891442Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:15.297096-08:00" }, { "operation": "add_edge", - "rtt_ns": 913487, - "rtt_ms": 0.913487, + "rtt_ns": 1416625, + "rtt_ms": 1.416625, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:33.608951371Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:15.297167-08:00" }, { "operation": "add_edge", - "rtt_ns": 694158, - "rtt_ms": 0.694158, + "rtt_ns": 1789000, + "rtt_ms": 1.789, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.608960141Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.297168-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1499958, + "rtt_ms": 1.499958, + "checkpoint": 0, + "vertex_from": "222", + "timestamp": "2025-11-27T04:03:15.297255-08:00" }, { "operation": "add_edge", - "rtt_ns": 697958, - "rtt_ms": 0.697958, + "rtt_ns": 1544125, + "rtt_ms": 1.544125, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:33.608989671Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.297272-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 705098, - "rtt_ms": 0.705098, + "operation": "add_edge", + "rtt_ns": 1094541, + "rtt_ms": 1.094541, "checkpoint": 0, - "vertex_from": "222", - "timestamp": "2025-11-27T01:23:33.609033961Z" + "vertex_from": "15", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.29729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447505, - "rtt_ms": 1.447505, + "rtt_ns": 1665250, + "rtt_ms": 1.66525, "checkpoint": 0, "vertex_from": "15", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.609965098Z" + "timestamp": "2025-11-27T04:03:15.297427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311196, - "rtt_ms": 1.311196, + "rtt_ns": 1551834, + "rtt_ms": 1.551834, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.610028858Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.297607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471066, - "rtt_ms": 1.471066, + "rtt_ns": 1514792, + "rtt_ms": 1.514792, "checkpoint": 0, "vertex_from": "15", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.610244638Z" + "timestamp": "2025-11-27T04:03:15.298387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579035, - "rtt_ms": 1.579035, + "rtt_ns": 1559459, + "rtt_ms": 1.559459, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.610277167Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.298447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451595, - "rtt_ms": 1.451595, + "rtt_ns": 1196708, + "rtt_ms": 1.196708, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.610299877Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.298488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361866, - "rtt_ms": 1.361866, + "rtt_ns": 1432667, + "rtt_ms": 1.432667, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.610323717Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.298601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344806, - "rtt_ms": 1.344806, + "rtt_ns": 1374333, + "rtt_ms": 1.374333, "checkpoint": 0, "vertex_from": "14", "vertex_to": "222", - "timestamp": "2025-11-27T01:23:33.610379417Z" + "timestamp": "2025-11-27T04:03:15.298629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708734, - "rtt_ms": 1.708734, + "rtt_ns": 1499542, + "rtt_ms": 1.499542, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.610606216Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.298669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679255, - "rtt_ms": 1.679255, + "rtt_ns": 1663167, + "rtt_ms": 1.663167, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.610631946Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:15.298762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839305, - "rtt_ms": 1.839305, + "rtt_ns": 1504375, + "rtt_ms": 1.504375, "checkpoint": 0, "vertex_from": "15", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.610834196Z" + "timestamp": "2025-11-27T04:03:15.298777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097267, - "rtt_ms": 1.097267, + "rtt_ns": 1200750, + "rtt_ms": 1.20075, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.611422124Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 698668, - "rtt_ms": 0.698668, - "checkpoint": 0, - "vertex_from": "121", - "timestamp": "2025-11-27T01:23:33.611537364Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:03:15.298808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310187, - "rtt_ms": 1.310187, + "rtt_ns": 1415834, + "rtt_ms": 1.415834, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.611588394Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:15.298844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224356, - "rtt_ms": 1.224356, + "rtt_ns": 1029791, + "rtt_ms": 1.029791, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:33.611605223Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.299807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683685, - "rtt_ms": 1.683685, + "rtt_ns": 1155667, + "rtt_ms": 1.155667, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:33.611713623Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.299825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558455, - "rtt_ms": 1.558455, + "rtt_ns": 1600834, + "rtt_ms": 1.600834, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:33.611806063Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.300051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683975, - "rtt_ms": 1.683975, + "rtt_ns": 1575291, + "rtt_ms": 1.575291, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.611984922Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.300064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2537793, - "rtt_ms": 2.537793, + "rtt_ns": 1681750, + "rtt_ms": 1.68175, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.612505941Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.300069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936865, - "rtt_ms": 1.936865, + "rtt_ns": 1440583, + "rtt_ms": 1.440583, "checkpoint": 0, "vertex_from": "15", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.612544291Z" + "timestamp": "2025-11-27T04:03:15.300071-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1338333, + "rtt_ms": 1.338333, + "checkpoint": 0, + "vertex_from": "121", + "timestamp": "2025-11-27T04:03:15.300102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935415, - "rtt_ms": 1.935415, + "rtt_ns": 1530208, + "rtt_ms": 1.530208, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.612568901Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:15.300132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223456, - "rtt_ms": 1.223456, + "rtt_ns": 1450583, + "rtt_ms": 1.450583, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.61264812Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.30026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089807, - "rtt_ms": 1.089807, + "rtt_ns": 1436167, + "rtt_ms": 1.436167, "checkpoint": 0, "vertex_from": "15", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.61269622Z" + "timestamp": "2025-11-27T04:03:15.30028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353695, - "rtt_ms": 1.353695, + "rtt_ns": 1242917, + "rtt_ms": 1.242917, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.612943469Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.301051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408155, - "rtt_ms": 1.408155, + "rtt_ns": 1241292, + "rtt_ms": 1.241292, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "121", - "timestamp": "2025-11-27T01:23:33.612946039Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:15.301067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148216, - "rtt_ms": 1.148216, + "rtt_ns": 1236375, + "rtt_ms": 1.236375, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:33.612956039Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:03:15.30134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144897, - "rtt_ms": 1.144897, + "rtt_ns": 1122333, + "rtt_ms": 1.122333, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:33.613132089Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:15.301404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430106, - "rtt_ms": 1.430106, + "rtt_ns": 1554000, + "rtt_ms": 1.554, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.613145149Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.301814-08:00" }, { "operation": "add_edge", - "rtt_ns": 802558, - "rtt_ms": 0.802558, + "rtt_ns": 1781708, + "rtt_ms": 1.781708, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:33.613760157Z" + "vertex_from": "15", + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:15.301833-08:00" }, { "operation": "add_edge", - "rtt_ns": 808537, - "rtt_ms": 0.808537, + "rtt_ns": 1778208, + "rtt_ms": 1.778208, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.613942806Z" + "vertex_from": "15", + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.301848-08:00" }, { "operation": "add_edge", - "rtt_ns": 796987, - "rtt_ms": 0.796987, + "rtt_ns": 1717542, + "rtt_ms": 1.717542, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:33.613943566Z" + "vertex_from": "15", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.30185-08:00" }, { "operation": "add_edge", - "rtt_ns": 743508, - "rtt_ms": 0.743508, + "rtt_ns": 1822791, + "rtt_ms": 1.822791, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.614689934Z" + "vertex_from": "15", + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.301894-08:00" }, { "operation": "add_edge", - "rtt_ns": 952997, - "rtt_ms": 0.952997, + "rtt_ns": 2009250, + "rtt_ms": 2.00925, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:33.614715344Z" + "vertex_from": "15", + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:15.302075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139607, - "rtt_ms": 1.139607, + "rtt_ns": 1369334, + "rtt_ms": 1.369334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.615083613Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:15.302438-08:00" }, { "operation": "add_edge", - "rtt_ns": 2571862, - "rtt_ms": 2.571862, + "rtt_ns": 1567875, + "rtt_ms": 1.567875, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.615117293Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:15.30262-08:00" }, { "operation": "add_edge", - "rtt_ns": 2675672, - "rtt_ms": 2.675672, + "rtt_ns": 1170042, + "rtt_ms": 1.170042, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:33.615183263Z" + "vertex_from": "16", + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:15.303065-08:00" }, { "operation": "add_edge", - "rtt_ns": 2310974, - "rtt_ms": 2.310974, + "rtt_ns": 1291458, + "rtt_ms": 1.291458, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:33.615256263Z" + "vertex_from": "16", + "vertex_to": "805", + "timestamp": "2025-11-27T04:03:15.303145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2739551, - "rtt_ms": 2.739551, + "rtt_ns": 2058500, + "rtt_ms": 2.0585, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.615309512Z" + "vertex_from": "16", + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:15.303463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2453123, - "rtt_ms": 2.453123, + "rtt_ns": 1618000, + "rtt_ms": 1.618, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:33.615400852Z" + "vertex_from": "16", + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:15.303467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2723432, - "rtt_ms": 2.723432, + "rtt_ns": 1647709, + "rtt_ms": 1.647709, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.615420942Z" + "vertex_from": "16", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.303482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2784602, - "rtt_ms": 2.784602, + "rtt_ns": 1409334, + "rtt_ms": 1.409334, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.615434362Z" + "vertex_from": "16", + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:15.303486-08:00" }, { "operation": "add_edge", - "rtt_ns": 977917, - "rtt_ms": 0.977917, + "rtt_ns": 2158084, + "rtt_ms": 2.158084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:33.615696041Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.303501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021247, - "rtt_ms": 1.021247, + "rtt_ns": 1713250, + "rtt_ms": 1.71325, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "805", - "timestamp": "2025-11-27T01:23:33.615714241Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:15.303529-08:00" }, { "operation": "add_edge", - "rtt_ns": 655298, - "rtt_ms": 0.655298, + "rtt_ns": 1146625, + "rtt_ms": 1.146625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.615740151Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:15.303768-08:00" }, { "operation": "add_edge", - "rtt_ns": 726017, - "rtt_ms": 0.726017, + "rtt_ns": 1448417, + "rtt_ms": 1.448417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:33.61598402Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:15.303889-08:00" }, { "operation": "add_edge", - "rtt_ns": 862007, - "rtt_ms": 0.862007, + "rtt_ns": 1490375, + "rtt_ms": 1.490375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:33.61598525Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:15.304636-08:00" }, { "operation": "add_edge", - "rtt_ns": 833047, - "rtt_ms": 0.833047, + "rtt_ns": 1445792, + "rtt_ms": 1.445792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:33.61601752Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:15.304933-08:00" }, { "operation": "add_edge", - "rtt_ns": 695168, - "rtt_ms": 0.695168, + "rtt_ns": 1181917, + "rtt_ms": 1.181917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.6160966Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.30495-08:00" }, { "operation": "add_edge", - "rtt_ns": 729748, - "rtt_ms": 0.729748, + "rtt_ns": 1074292, + "rtt_ms": 1.074292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:33.61615159Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.304964-08:00" }, { "operation": "add_edge", - "rtt_ns": 868388, - "rtt_ms": 0.868388, + "rtt_ns": 1498750, + "rtt_ms": 1.49875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.61617899Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:15.304968-08:00" }, { "operation": "add_edge", - "rtt_ns": 761108, - "rtt_ms": 0.761108, + "rtt_ns": 1913958, + "rtt_ms": 1.913958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.61619857Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:15.30498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636606, - "rtt_ms": 1.636606, + "rtt_ns": 1498000, + "rtt_ms": 1.498, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:33.617334247Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:15.30498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606386, - "rtt_ms": 1.606386, + "rtt_ns": 1535709, + "rtt_ms": 1.535709, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.617347997Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634236, - "rtt_ms": 1.634236, + "rtt_ns": 1470959, + "rtt_ms": 1.470959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:33.617350647Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.305002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626836, - "rtt_ms": 1.626836, + "rtt_ns": 1513209, + "rtt_ms": 1.513209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.617647416Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:15.305016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594466, - "rtt_ms": 1.594466, + "rtt_ns": 1206291, + "rtt_ms": 1.206291, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:33.617692836Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.306172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772795, - "rtt_ms": 1.772795, + "rtt_ns": 1559292, + "rtt_ms": 1.559292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.617759085Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.306196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115084, - "rtt_ms": 2.115084, + "rtt_ns": 1267333, + "rtt_ms": 1.267333, "checkpoint": 0, "vertex_from": "16", "vertex_to": "151", - "timestamp": "2025-11-27T01:23:33.618268064Z" + "timestamp": "2025-11-27T04:03:15.306218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277604, - "rtt_ms": 2.277604, + "rtt_ns": 1251208, + "rtt_ms": 1.251208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.618457864Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.306232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2524913, - "rtt_ms": 2.524913, + "rtt_ns": 1316083, + "rtt_ms": 1.316083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.618511473Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:15.30625-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313873, - "rtt_ms": 2.313873, + "rtt_ns": 1353333, + "rtt_ms": 1.353333, "checkpoint": 0, "vertex_from": "16", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.618513943Z" + "timestamp": "2025-11-27T04:03:15.306324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457646, - "rtt_ms": 1.457646, + "rtt_ns": 1422084, + "rtt_ms": 1.422084, "checkpoint": 0, "vertex_from": "16", "vertex_to": "74", - "timestamp": "2025-11-27T01:23:33.618793323Z" + "timestamp": "2025-11-27T04:03:15.306403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462516, - "rtt_ms": 1.462516, + "rtt_ns": 1404542, + "rtt_ms": 1.404542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.618815033Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.306422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236266, - "rtt_ms": 1.236266, + "rtt_ns": 1421583, + "rtt_ms": 1.421583, "checkpoint": 0, "vertex_from": "16", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.618885262Z" + "timestamp": "2025-11-27T04:03:15.306424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532725, - "rtt_ms": 1.532725, + "rtt_ns": 1471584, + "rtt_ms": 1.471584, "checkpoint": 0, "vertex_from": "16", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.618885202Z" + "timestamp": "2025-11-27T04:03:15.306473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266746, - "rtt_ms": 1.266746, + "rtt_ns": 1235583, + "rtt_ms": 1.235583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.618960922Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.30771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246347, - "rtt_ms": 1.246347, + "rtt_ns": 1496833, + "rtt_ms": 1.496833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.619006972Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.307748-08:00" }, { "operation": "add_edge", - "rtt_ns": 738598, - "rtt_ms": 0.738598, + "rtt_ns": 1569000, + "rtt_ms": 1.569, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:33.619007742Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:15.307894-08:00" }, { "operation": "add_edge", - "rtt_ns": 701648, - "rtt_ms": 0.701648, + "rtt_ns": 1738167, + "rtt_ms": 1.738167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:33.619162592Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.307913-08:00" }, { "operation": "add_edge", - "rtt_ns": 823618, - "rtt_ms": 0.823618, + "rtt_ns": 1862209, + "rtt_ms": 1.862209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.619336161Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:03:15.308266-08:00" }, { "operation": "add_edge", - "rtt_ns": 838508, - "rtt_ms": 0.838508, + "rtt_ns": 2092417, + "rtt_ms": 2.092417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.619353861Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.308327-08:00" }, { "operation": "add_edge", - "rtt_ns": 777577, - "rtt_ms": 0.777577, + "rtt_ns": 1925209, + "rtt_ms": 1.925209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:33.61959558Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.308348-08:00" }, { "operation": "add_edge", - "rtt_ns": 866667, - "rtt_ms": 0.866667, + "rtt_ns": 2276041, + "rtt_ms": 2.276041, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:33.61966276Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:15.308701-08:00" }, { "operation": "add_edge", - "rtt_ns": 866708, - "rtt_ms": 0.866708, + "rtt_ns": 2521208, + "rtt_ms": 2.521208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.61975503Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:15.308718-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 776128, - "rtt_ms": 0.776128, + "operation": "add_edge", + "rtt_ns": 2515250, + "rtt_ms": 2.51525, "checkpoint": 0, - "vertex_from": "979", - "timestamp": "2025-11-27T01:23:33.61978883Z" + "vertex_from": "16", + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:15.308735-08:00" }, { "operation": "add_edge", - "rtt_ns": 969298, - "rtt_ms": 0.969298, + "rtt_ns": 856250, + "rtt_ms": 0.85625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.61985635Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.308751-08:00" }, { - "operation": "add_edge", - "rtt_ns": 981067, - "rtt_ms": 0.981067, + "operation": "add_vertex", + "rtt_ns": 1341375, + "rtt_ms": 1.341375, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.619943459Z" + "vertex_from": "979", + "timestamp": "2025-11-27T04:03:15.309092-08:00" }, { "operation": "add_edge", - "rtt_ns": 994797, - "rtt_ms": 0.994797, + "rtt_ns": 1414042, + "rtt_ms": 1.414042, "checkpoint": 0, "vertex_from": "16", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:33.620003089Z" + "timestamp": "2025-11-27T04:03:15.309125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097687, - "rtt_ms": 1.097687, + "rtt_ns": 1540708, + "rtt_ms": 1.540708, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "860", - "timestamp": "2025-11-27T01:23:33.620696597Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.309454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408136, - "rtt_ms": 1.408136, + "rtt_ns": 1552250, + "rtt_ms": 1.55225, "checkpoint": 0, "vertex_from": "16", "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.620763327Z" + "timestamp": "2025-11-27T04:03:15.30982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582355, - "rtt_ms": 1.582355, + "rtt_ns": 1495834, + "rtt_ms": 1.495834, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.620920026Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:15.309845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462675, - "rtt_ms": 1.462675, + "rtt_ns": 1672792, + "rtt_ms": 1.672792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.621218955Z" + "vertex_to": "860", + "timestamp": "2025-11-27T04:03:15.31-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586175, - "rtt_ms": 1.586175, + "rtt_ns": 1317625, + "rtt_ms": 1.317625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:33.621250165Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:15.310019-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173853, - "rtt_ms": 2.173853, + "rtt_ns": 1316208, + "rtt_ms": 1.316208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.621338145Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.310035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670485, - "rtt_ms": 1.670485, + "rtt_ns": 1316333, + "rtt_ms": 1.316333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "979", - "timestamp": "2025-11-27T01:23:33.621460075Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:03:15.310052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641215, - "rtt_ms": 1.641215, + "rtt_ns": 1315416, + "rtt_ms": 1.315416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.621499525Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.310067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708755, - "rtt_ms": 1.708755, + "rtt_ns": 1326084, + "rtt_ms": 1.326084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.621713274Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.310452-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079804, - "rtt_ms": 2.079804, + "rtt_ns": 1483042, + "rtt_ms": 1.483042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "754", - "timestamp": "2025-11-27T01:23:33.622024493Z" + "vertex_to": "979", + "timestamp": "2025-11-27T04:03:15.310576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341336, - "rtt_ms": 1.341336, + "rtt_ns": 1520250, + "rtt_ms": 1.52025, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.622039213Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.310975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162077, - "rtt_ms": 1.162077, + "rtt_ns": 1180042, + "rtt_ms": 1.180042, "checkpoint": 0, "vertex_from": "16", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.622083413Z" + "timestamp": "2025-11-27T04:03:15.311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351056, - "rtt_ms": 1.351056, + "rtt_ns": 1402291, + "rtt_ms": 1.402291, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.622115973Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.311248-08:00" }, { "operation": "add_edge", - "rtt_ns": 916088, - "rtt_ms": 0.916088, + "rtt_ns": 1314875, + "rtt_ms": 1.314875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.622167223Z" + "vertex_to": "622", + "timestamp": "2025-11-27T04:03:15.311368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805995, - "rtt_ms": 1.805995, + "rtt_ns": 1374500, + "rtt_ms": 1.3745, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.62302651Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.311394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984344, - "rtt_ms": 1.984344, + "rtt_ns": 1303459, + "rtt_ms": 1.303459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.623323889Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.311757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852694, - "rtt_ms": 1.852694, + "rtt_ns": 1707291, + "rtt_ms": 1.707291, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "622", - "timestamp": "2025-11-27T01:23:33.623353749Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:15.311775-08:00" }, { "operation": "add_edge", - "rtt_ns": 2622792, - "rtt_ms": 2.622792, + "rtt_ns": 1792541, + "rtt_ms": 1.792541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.624337336Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.311794-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1241500, + "rtt_ms": 1.2415, + "checkpoint": 0, + "vertex_from": "16", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.311818-08:00" }, { "operation": "add_edge", - "rtt_ns": 2896121, - "rtt_ms": 2.896121, + "rtt_ns": 1854792, + "rtt_ms": 1.854792, "checkpoint": 0, "vertex_from": "16", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.624357546Z" + "timestamp": "2025-11-27T04:03:15.311893-08:00" }, { "operation": "add_edge", - "rtt_ns": 2354983, - "rtt_ms": 2.354983, + "rtt_ns": 1555666, + "rtt_ms": 1.555666, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.624380826Z" + "vertex_to": "30", + "timestamp": "2025-11-27T04:03:15.312557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2589852, - "rtt_ms": 2.589852, + "rtt_ns": 1370167, + "rtt_ms": 1.370167, "checkpoint": 0, "vertex_from": "16", "vertex_to": "131", - "timestamp": "2025-11-27T01:23:33.624758455Z" + "timestamp": "2025-11-27T04:03:15.312619-08:00" }, { "operation": "add_edge", - "rtt_ns": 2701452, - "rtt_ms": 2.701452, + "rtt_ns": 1675458, + "rtt_ms": 1.675458, "checkpoint": 0, "vertex_from": "16", "vertex_to": "297", - "timestamp": "2025-11-27T01:23:33.624787445Z" + "timestamp": "2025-11-27T04:03:15.312652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2771232, - "rtt_ms": 2.771232, + "rtt_ns": 1497791, + "rtt_ms": 1.497791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.624811885Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.312869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536376, - "rtt_ms": 1.536376, + "rtt_ns": 1531209, + "rtt_ms": 1.531209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:33.624892255Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:15.312927-08:00" }, { "operation": "add_edge", - "rtt_ns": 2791141, - "rtt_ms": 2.791141, + "rtt_ns": 1323375, + "rtt_ms": 1.323375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "30", - "timestamp": "2025-11-27T01:23:33.624908854Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:03:15.3131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618295, - "rtt_ms": 1.618295, + "rtt_ns": 1352167, + "rtt_ms": 1.352167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:33.624943594Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:15.31311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964204, - "rtt_ms": 1.964204, + "rtt_ns": 1258416, + "rtt_ms": 1.258416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.624992444Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.313154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724205, - "rtt_ms": 1.724205, + "rtt_ns": 1393125, + "rtt_ms": 1.393125, "checkpoint": 0, "vertex_from": "16", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.626083411Z" + "timestamp": "2025-11-27T04:03:15.313187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316276, - "rtt_ms": 1.316276, + "rtt_ns": 1375583, + "rtt_ms": 1.375583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:33.626128901Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:15.313194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396446, - "rtt_ms": 1.396446, + "rtt_ns": 1474125, + "rtt_ms": 1.474125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:33.626184921Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:15.314094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219197, - "rtt_ms": 1.219197, + "rtt_ns": 1751083, + "rtt_ms": 1.751083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.626212751Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:15.314404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880075, - "rtt_ms": 1.880075, + "rtt_ns": 1852125, + "rtt_ms": 1.852125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "110", - "timestamp": "2025-11-27T01:23:33.626220001Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:15.31441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489275, - "rtt_ms": 1.489275, + "rtt_ns": 2132125, + "rtt_ms": 2.132125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.62624923Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:03:15.315004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304946, - "rtt_ms": 1.304946, + "rtt_ns": 2131292, + "rtt_ms": 2.131292, "checkpoint": 0, "vertex_from": "16", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:33.62624993Z" + "timestamp": "2025-11-27T04:03:15.315059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448696, - "rtt_ms": 1.448696, + "rtt_ns": 967666, + "rtt_ms": 0.967666, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "395", - "timestamp": "2025-11-27T01:23:33.6263604Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:15.315063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498625, - "rtt_ms": 1.498625, + "rtt_ns": 2004833, + "rtt_ms": 2.004833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:33.62639189Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:15.315116-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086854, - "rtt_ms": 2.086854, + "rtt_ns": 1934708, + "rtt_ms": 1.934708, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:33.62647047Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:15.315124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278886, - "rtt_ms": 1.278886, + "rtt_ns": 2207625, + "rtt_ms": 2.207625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.627365307Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.315363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207747, - "rtt_ms": 1.207747, + "rtt_ns": 2266667, + "rtt_ms": 2.266667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:33.627459897Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:15.315367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225977, - "rtt_ms": 1.225977, + "rtt_ns": 977583, + "rtt_ms": 0.977583, "checkpoint": 0, "vertex_from": "16", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.627476367Z" + "timestamp": "2025-11-27T04:03:15.315382-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1490965, - "rtt_ms": 1.490965, + "rtt_ns": 2191875, + "rtt_ms": 2.191875, "checkpoint": 0, "vertex_from": "542", - "timestamp": "2025-11-27T01:23:33.627707186Z" + "timestamp": "2025-11-27T04:03:15.315387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615845, - "rtt_ms": 1.615845, + "rtt_ns": 1073250, + "rtt_ms": 1.07325, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.627746546Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:15.315484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626635, - "rtt_ms": 1.626635, + "rtt_ns": 1453375, + "rtt_ms": 1.453375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.627847936Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:15.316459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500466, - "rtt_ms": 1.500466, + "rtt_ns": 1089542, + "rtt_ms": 1.089542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.627862896Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:03:15.316477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508476, - "rtt_ms": 1.508476, + "rtt_ns": 1733292, + "rtt_ms": 1.733292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.627901626Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.316858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817154, - "rtt_ms": 1.817154, + "rtt_ns": 1757208, + "rtt_ms": 1.757208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:33.628004085Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1596785, - "rtt_ms": 1.596785, - "checkpoint": 0, - "vertex_from": "730", - "timestamp": "2025-11-27T01:23:33.628069625Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:15.316874-08:00" }, { "operation": "add_edge", - "rtt_ns": 737088, - "rtt_ms": 0.737088, + "rtt_ns": 1506625, + "rtt_ms": 1.506625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:33.628104385Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.316889-08:00" }, { "operation": "add_edge", - "rtt_ns": 758308, - "rtt_ms": 0.758308, + "rtt_ns": 1423125, + "rtt_ms": 1.423125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.628219385Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.316908-08:00" }, { "operation": "add_edge", - "rtt_ns": 772588, - "rtt_ms": 0.772588, + "rtt_ns": 1559333, + "rtt_ms": 1.559333, "checkpoint": 0, "vertex_from": "16", "vertex_to": "572", - "timestamp": "2025-11-27T01:23:33.628251285Z" + "timestamp": "2025-11-27T04:03:15.316924-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1499706, - "rtt_ms": 1.499706, + "operation": "add_vertex", + "rtt_ns": 1876333, + "rtt_ms": 1.876333, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:33.629207292Z" + "vertex_from": "730", + "timestamp": "2025-11-27T04:03:15.316942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980794, - "rtt_ms": 1.980794, + "rtt_ns": 1590958, + "rtt_ms": 1.590958, "checkpoint": 0, "vertex_from": "16", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:33.6297298Z" + "timestamp": "2025-11-27T04:03:15.316959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147744, - "rtt_ms": 2.147744, + "rtt_ns": 1987250, + "rtt_ms": 1.98725, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.62999655Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:15.317048-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2134544, - "rtt_ms": 2.134544, + "operation": "add_vertex", + "rtt_ns": 1612208, + "rtt_ms": 1.612208, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.62999863Z" + "vertex_from": "505", + "timestamp": "2025-11-27T04:03:15.318537-08:00" }, { "operation": "add_edge", - "rtt_ns": 2513383, - "rtt_ms": 2.513383, + "rtt_ns": 1695500, + "rtt_ms": 1.6955, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "730", - "timestamp": "2025-11-27T01:23:33.630583608Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:15.318554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532506, - "rtt_ms": 1.532506, + "rtt_ns": 1521125, + "rtt_ms": 1.521125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:33.630741258Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:03:15.31857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2537673, - "rtt_ms": 2.537673, + "rtt_ns": 1619250, + "rtt_ms": 1.61925, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:33.630759078Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.318579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2864852, - "rtt_ms": 2.864852, + "rtt_ns": 2124916, + "rtt_ms": 2.124916, "checkpoint": 0, "vertex_from": "16", "vertex_to": "610", - "timestamp": "2025-11-27T01:23:33.630768138Z" + "timestamp": "2025-11-27T04:03:15.318585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2667103, - "rtt_ms": 2.667103, + "rtt_ns": 2119042, + "rtt_ms": 2.119042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:33.630773338Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:03:15.318598-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539902, - "rtt_ms": 2.539902, + "rtt_ns": 1860458, + "rtt_ms": 1.860458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.630792037Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:15.318769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2806932, - "rtt_ms": 2.806932, + "rtt_ns": 1844084, + "rtt_ms": 1.844084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:33.630812667Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:03:15.318786-08:00" }, { "operation": "add_edge", - "rtt_ns": 959097, - "rtt_ms": 0.959097, + "rtt_ns": 1925959, + "rtt_ms": 1.925959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.631728645Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:15.318801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749635, - "rtt_ms": 1.749635, + "rtt_ns": 1996375, + "rtt_ms": 1.996375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.631748105Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.318886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752565, - "rtt_ms": 1.752565, + "rtt_ns": 1256125, + "rtt_ms": 1.256125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "285", - "timestamp": "2025-11-27T01:23:33.631752705Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:15.319827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199887, - "rtt_ms": 1.199887, + "rtt_ns": 1246875, + "rtt_ms": 1.246875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "865", - "timestamp": "2025-11-27T01:23:33.631786295Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:15.319845-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2060825, - "rtt_ms": 2.060825, + "operation": "add_edge", + "rtt_ns": 1341333, + "rtt_ms": 1.341333, "checkpoint": 0, - "vertex_from": "505", - "timestamp": "2025-11-27T01:23:33.631794655Z" + "vertex_from": "16", + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:15.320229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603766, - "rtt_ms": 1.603766, + "rtt_ns": 1459917, + "rtt_ms": 1.459917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.632397643Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:03:15.320247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680765, - "rtt_ms": 1.680765, + "rtt_ns": 1725209, + "rtt_ms": 1.725209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:33.632423553Z" + "vertex_to": "505", + "timestamp": "2025-11-27T04:03:15.320262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619416, - "rtt_ms": 1.619416, + "rtt_ns": 1469500, + "rtt_ms": 1.4695, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "17", - "timestamp": "2025-11-27T01:23:33.632433433Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:03:15.320272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663825, - "rtt_ms": 1.663825, + "rtt_ns": 1696583, + "rtt_ms": 1.696583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.632438703Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.320283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689245, - "rtt_ms": 1.689245, + "rtt_ns": 1743250, + "rtt_ms": 1.74325, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "119", - "timestamp": "2025-11-27T01:23:33.632450263Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:03:15.320299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508885, - "rtt_ms": 1.508885, + "rtt_ns": 1548084, + "rtt_ms": 1.548084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "482", - "timestamp": "2025-11-27T01:23:33.63323953Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.320318-08:00" }, { "operation": "add_edge", - "rtt_ns": 894937, - "rtt_ms": 0.894937, + "rtt_ns": 1770084, + "rtt_ms": 1.770084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:33.63334634Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:03:15.320351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620995, - "rtt_ms": 1.620995, + "rtt_ns": 1496167, + "rtt_ms": 1.496167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:33.63337108Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:15.321324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622005, - "rtt_ms": 1.622005, + "rtt_ns": 1544375, + "rtt_ms": 1.544375, "checkpoint": 0, "vertex_from": "16", "vertex_to": "114", - "timestamp": "2025-11-27T01:23:33.63340983Z" + "timestamp": "2025-11-27T04:03:15.321391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014347, - "rtt_ms": 1.014347, + "rtt_ns": 1458167, + "rtt_ms": 1.458167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.63344881Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:15.321777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819084, - "rtt_ms": 1.819084, + "rtt_ns": 1553541, + "rtt_ms": 1.553541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:33.633574889Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.321817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809184, - "rtt_ms": 1.809184, + "rtt_ns": 2209375, + "rtt_ms": 2.209375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "505", - "timestamp": "2025-11-27T01:23:33.633604159Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.322509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601365, - "rtt_ms": 1.601365, + "rtt_ns": 2298834, + "rtt_ms": 2.298834, "checkpoint": 0, "vertex_from": "16", "vertex_to": "325", - "timestamp": "2025-11-27T01:23:33.634000378Z" + "timestamp": "2025-11-27T04:03:15.322529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605265, - "rtt_ms": 1.605265, + "rtt_ns": 2297375, + "rtt_ms": 2.297375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:33.634045308Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.322544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752745, - "rtt_ms": 1.752745, + "rtt_ns": 1452958, + "rtt_ms": 1.452958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.634178508Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.32278-08:00" }, { "operation": "add_edge", - "rtt_ns": 2111904, - "rtt_ms": 2.111904, + "rtt_ns": 2439917, + "rtt_ms": 2.439917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.635523114Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:15.322792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022644, - "rtt_ms": 2.022644, + "rtt_ns": 1017417, + "rtt_ms": 1.017417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:33.635628953Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:15.322796-08:00" }, { "operation": "add_edge", - "rtt_ns": 2667072, - "rtt_ms": 2.667072, + "rtt_ns": 2525750, + "rtt_ms": 2.52575, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.636117032Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:15.32281-08:00" }, { "operation": "add_edge", - "rtt_ns": 2220753, - "rtt_ms": 2.220753, + "rtt_ns": 2539167, + "rtt_ms": 2.539167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:33.636222751Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:15.322814-08:00" }, { "operation": "add_edge", - "rtt_ns": 2979171, - "rtt_ms": 2.979171, + "rtt_ns": 1282708, + "rtt_ms": 1.282708, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.636227041Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:15.3231-08:00" }, { "operation": "add_edge", - "rtt_ns": 3339640, - "rtt_ms": 3.33964, + "rtt_ns": 2218917, + "rtt_ms": 2.218917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:33.63668757Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.323611-08:00" }, { "operation": "add_edge", - "rtt_ns": 2641232, - "rtt_ms": 2.641232, + "rtt_ns": 1264167, + "rtt_ms": 1.264167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:33.63682077Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:15.324079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215487, - "rtt_ms": 1.215487, + "rtt_ns": 1398833, + "rtt_ms": 1.398833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.63684666Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.324209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330036, - "rtt_ms": 1.330036, + "rtt_ns": 1681250, + "rtt_ms": 1.68125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.63685478Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:15.324226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2845971, - "rtt_ms": 2.845971, + "rtt_ns": 1493875, + "rtt_ms": 1.493875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.636892329Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.324291-08:00" }, { "operation": "add_edge", - "rtt_ns": 3324320, - "rtt_ms": 3.32432, + "rtt_ns": 1572208, + "rtt_ms": 1.572208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:33.636901399Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.324365-08:00" }, { "operation": "add_edge", - "rtt_ns": 3583779, - "rtt_ms": 3.583779, + "rtt_ns": 1874875, + "rtt_ms": 1.874875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:33.636957439Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:15.324385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414196, - "rtt_ms": 1.414196, + "rtt_ns": 1617959, + "rtt_ms": 1.617959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.637638507Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.324399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039297, - "rtt_ms": 1.039297, + "rtt_ns": 1300917, + "rtt_ms": 1.300917, "checkpoint": 0, "vertex_from": "16", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.637729207Z" + "timestamp": "2025-11-27T04:03:15.324402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529656, - "rtt_ms": 1.529656, + "rtt_ns": 1935708, + "rtt_ms": 1.935708, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:33.637759047Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.324465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649935, - "rtt_ms": 1.649935, + "rtt_ns": 1545125, + "rtt_ms": 1.545125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.637768027Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:15.32516-08:00" }, { "operation": "add_edge", - "rtt_ns": 953697, - "rtt_ms": 0.953697, + "rtt_ns": 1513584, + "rtt_ms": 1.513584, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:33.637776087Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:03:15.325595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195026, - "rtt_ms": 1.195026, + "rtt_ns": 1386708, + "rtt_ms": 1.386708, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:33.638044506Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.325614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252076, - "rtt_ms": 1.252076, + "rtt_ns": 1445708, + "rtt_ms": 1.445708, "checkpoint": 0, "vertex_from": "16", "vertex_to": "523", - "timestamp": "2025-11-27T01:23:33.638108616Z" + "timestamp": "2025-11-27T04:03:15.325656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262507, - "rtt_ms": 1.262507, + "rtt_ns": 1298958, + "rtt_ms": 1.298958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.638156886Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:15.325702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255857, - "rtt_ms": 1.255857, + "rtt_ns": 1489959, + "rtt_ms": 1.489959, "checkpoint": 0, "vertex_from": "16", "vertex_to": "811", - "timestamp": "2025-11-27T01:23:33.638158766Z" + "timestamp": "2025-11-27T04:03:15.325782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225697, - "rtt_ms": 1.225697, + "rtt_ns": 1478625, + "rtt_ms": 1.478625, "checkpoint": 0, "vertex_from": "16", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:33.638184956Z" + "timestamp": "2025-11-27T04:03:15.325845-08:00" }, { "operation": "add_edge", - "rtt_ns": 608038, - "rtt_ms": 0.608038, + "rtt_ns": 1508041, + "rtt_ms": 1.508041, "checkpoint": 0, "vertex_from": "16", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:33.638247775Z" + "timestamp": "2025-11-27T04:03:15.325894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227186, - "rtt_ms": 1.227186, + "rtt_ns": 1513667, + "rtt_ms": 1.513667, "checkpoint": 0, "vertex_from": "16", "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.638959113Z" + "timestamp": "2025-11-27T04:03:15.325913-08:00" }, { "operation": "add_edge", - "rtt_ns": 840627, - "rtt_ms": 0.840627, + "rtt_ns": 1667375, + "rtt_ms": 1.667375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "634", - "timestamp": "2025-11-27T01:23:33.639000793Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:15.326134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063837, - "rtt_ms": 1.063837, + "rtt_ns": 1378125, + "rtt_ms": 1.378125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:33.639110053Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:15.326541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002907, - "rtt_ms": 1.002907, + "rtt_ns": 1518416, + "rtt_ms": 1.518416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.639114533Z" + "vertex_to": "634", + "timestamp": "2025-11-27T04:03:15.327221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358056, - "rtt_ms": 1.358056, + "rtt_ns": 1323333, + "rtt_ms": 1.323333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:33.639128153Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:15.327237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388266, - "rtt_ms": 1.388266, + "rtt_ns": 1927750, + "rtt_ms": 1.92775, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:33.639149323Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:15.327524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384416, - "rtt_ms": 1.384416, + "rtt_ns": 1910416, + "rtt_ms": 1.910416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:33.639164053Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.327525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006897, - "rtt_ms": 1.006897, + "rtt_ns": 1750625, + "rtt_ms": 1.750625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.639165403Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:15.327534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569545, - "rtt_ms": 1.569545, + "rtt_ns": 1828542, + "rtt_ms": 1.828542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:33.639756061Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:15.327724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694225, - "rtt_ms": 1.694225, + "rtt_ns": 1623833, + "rtt_ms": 1.623833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.63994329Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:15.327759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220246, - "rtt_ms": 1.220246, + "rtt_ns": 2128292, + "rtt_ms": 2.128292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:33.640336439Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:15.32779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364466, - "rtt_ms": 1.364466, + "rtt_ns": 1966209, + "rtt_ms": 1.966209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:33.640370939Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.327812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311806, - "rtt_ms": 1.311806, + "rtt_ns": 1322959, + "rtt_ms": 1.322959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:33.640442299Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:15.327865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291506, - "rtt_ms": 1.291506, + "rtt_ns": 1456958, + "rtt_ms": 1.456958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:33.640456849Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:15.328679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351496, - "rtt_ms": 1.351496, + "rtt_ns": 1673750, + "rtt_ms": 1.67375, "checkpoint": 0, "vertex_from": "16", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:33.640502289Z" + "timestamp": "2025-11-27T04:03:15.328912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369696, - "rtt_ms": 1.369696, + "rtt_ns": 1681792, + "rtt_ms": 1.681792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:33.640537459Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:15.329217-08:00" }, { "operation": "add_edge", - "rtt_ns": 833798, - "rtt_ms": 0.833798, + "rtt_ns": 1708042, + "rtt_ms": 1.708042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:33.640591359Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:15.329236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646476, - "rtt_ms": 1.646476, + "rtt_ns": 1536000, + "rtt_ms": 1.536, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:33.640607169Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:03:15.329402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217577, - "rtt_ms": 1.217577, + "rtt_ns": 1646291, + "rtt_ms": 1.646291, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:33.641163597Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:15.329438-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097354, - "rtt_ms": 2.097354, + "rtt_ns": 2084000, + "rtt_ms": 2.084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:33.641208547Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:15.329609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047177, - "rtt_ms": 1.047177, + "rtt_ns": 1972875, + "rtt_ms": 1.972875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "436", - "timestamp": "2025-11-27T01:23:33.641384836Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:15.329787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792565, - "rtt_ms": 1.792565, + "rtt_ns": 1305459, + "rtt_ms": 1.305459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "101", - "timestamp": "2025-11-27T01:23:33.642250634Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:15.329986-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1123277, - "rtt_ms": 1.123277, + "operation": "add_edge", + "rtt_ns": 2245375, + "rtt_ms": 2.245375, "checkpoint": 0, - "vertex_from": "343", - "timestamp": "2025-11-27T01:23:33.642334734Z" + "vertex_from": "16", + "vertex_to": "436", + "timestamp": "2025-11-27T04:03:15.330005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169154, - "rtt_ms": 2.169154, + "rtt_ns": 2446416, + "rtt_ms": 2.446416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:33.642708083Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:15.330171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2360424, - "rtt_ms": 2.360424, + "rtt_ns": 1312625, + "rtt_ms": 1.312625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:33.642732833Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:15.330226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232124, - "rtt_ms": 2.232124, + "rtt_ns": 1166750, + "rtt_ms": 1.16675, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:33.642735973Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:15.330385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581306, - "rtt_ms": 1.581306, + "rtt_ns": 1222542, + "rtt_ms": 1.222542, "checkpoint": 0, "vertex_from": "16", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.642748503Z" + "timestamp": "2025-11-27T04:03:15.330625-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2305634, - "rtt_ms": 2.305634, + "operation": "add_vertex", + "rtt_ns": 1220834, + "rtt_ms": 1.220834, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:33.642749253Z" + "vertex_from": "343", + "timestamp": "2025-11-27T04:03:15.330663-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165013, - "rtt_ms": 2.165013, + "rtt_ns": 1216208, + "rtt_ms": 1.216208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:33.642773402Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:15.330826-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201733, - "rtt_ms": 2.201733, + "rtt_ns": 1122958, + "rtt_ms": 1.122958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:33.642794042Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:15.331129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586126, - "rtt_ms": 1.586126, + "rtt_ns": 1618500, + "rtt_ms": 1.6185, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:33.642972272Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:15.331605-08:00" }, { "operation": "add_edge", - "rtt_ns": 776927, - "rtt_ms": 0.776927, + "rtt_ns": 2386000, + "rtt_ms": 2.386, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "343", - "timestamp": "2025-11-27T01:23:33.643112051Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:15.331623-08:00" }, { "operation": "add_edge", - "rtt_ns": 883727, - "rtt_ms": 0.883727, + "rtt_ns": 1226125, + "rtt_ms": 1.226125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:33.643136111Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:15.331854-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 766517, - "rtt_ms": 0.766517, + "operation": "add_edge", + "rtt_ns": 1688417, + "rtt_ms": 1.688417, "checkpoint": 0, - "vertex_from": "789", - "timestamp": "2025-11-27T01:23:33.6435046Z" + "vertex_from": "16", + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:15.331917-08:00" }, { "operation": "add_edge", - "rtt_ns": 847257, - "rtt_ms": 0.847257, + "rtt_ns": 1286000, + "rtt_ms": 1.286, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:33.64355657Z" + "vertex_to": "343", + "timestamp": "2025-11-27T04:03:15.331949-08:00" }, { "operation": "add_edge", - "rtt_ns": 867457, - "rtt_ms": 0.867457, + "rtt_ns": 1582000, + "rtt_ms": 1.582, "checkpoint": 0, "vertex_from": "16", "vertex_to": "344", - "timestamp": "2025-11-27T01:23:33.64361975Z" + "timestamp": "2025-11-27T04:03:15.331968-08:00" }, { - "operation": "add_edge", - "rtt_ns": 915397, - "rtt_ms": 0.915397, + "operation": "add_vertex", + "rtt_ns": 1869458, + "rtt_ms": 1.869458, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:33.64365367Z" + "vertex_from": "789", + "timestamp": "2025-11-27T04:03:15.332041-08:00" }, { "operation": "add_edge", - "rtt_ns": 959368, - "rtt_ms": 0.959368, + "rtt_ns": 1230167, + "rtt_ms": 1.230167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:33.64373396Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:15.332057-08:00" }, { "operation": "add_edge", - "rtt_ns": 997907, - "rtt_ms": 0.997907, + "rtt_ns": 2803541, + "rtt_ms": 2.803541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:33.64374816Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:15.332591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011848, - "rtt_ms": 1.011848, + "rtt_ns": 1482375, + "rtt_ms": 1.482375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:33.64380812Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:03:15.332612-08:00" }, { "operation": "add_edge", - "rtt_ns": 778978, - "rtt_ms": 0.778978, + "rtt_ns": 1427542, + "rtt_ms": 1.427542, "checkpoint": 0, "vertex_from": "16", "vertex_to": "801", - "timestamp": "2025-11-27T01:23:33.643892229Z" + "timestamp": "2025-11-27T04:03:15.333034-08:00" }, { "operation": "add_edge", - "rtt_ns": 918817, - "rtt_ms": 0.918817, + "rtt_ns": 1122792, + "rtt_ms": 1.122792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "51", - "timestamp": "2025-11-27T01:23:33.643892319Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:15.333073-08:00" }, { "operation": "add_edge", - "rtt_ns": 769988, - "rtt_ms": 0.769988, + "rtt_ns": 1614417, + "rtt_ms": 1.614417, "checkpoint": 0, "vertex_from": "16", "vertex_to": "201", - "timestamp": "2025-11-27T01:23:33.643907019Z" + "timestamp": "2025-11-27T04:03:15.333238-08:00" }, { "operation": "add_edge", - "rtt_ns": 602049, - "rtt_ms": 0.602049, + "rtt_ns": 1201250, + "rtt_ms": 1.20125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:33.644107119Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:15.333259-08:00" }, { "operation": "add_edge", - "rtt_ns": 582099, - "rtt_ms": 0.582099, + "rtt_ns": 1440250, + "rtt_ms": 1.44025, "checkpoint": 0, "vertex_from": "16", "vertex_to": "540", - "timestamp": "2025-11-27T01:23:33.644139869Z" + "timestamp": "2025-11-27T04:03:15.333297-08:00" }, { "operation": "add_edge", - "rtt_ns": 666588, - "rtt_ms": 0.666588, + "rtt_ns": 1359125, + "rtt_ms": 1.359125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.644287308Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.333328-08:00" }, { "operation": "add_edge", - "rtt_ns": 785478, - "rtt_ms": 0.785478, + "rtt_ns": 1421083, + "rtt_ms": 1.421083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:33.644440468Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.333339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046376, - "rtt_ms": 1.046376, + "rtt_ns": 1424042, + "rtt_ms": 1.424042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.644856006Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:03:15.333466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140516, - "rtt_ms": 1.140516, + "rtt_ns": 1527250, + "rtt_ms": 1.52725, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.644875696Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:03:15.33414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311216, - "rtt_ms": 1.311216, + "rtt_ns": 1619833, + "rtt_ms": 1.619833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:33.645060566Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.334212-08:00" }, { "operation": "add_edge", - "rtt_ns": 969697, - "rtt_ms": 0.969697, + "rtt_ns": 1801500, + "rtt_ms": 1.8015, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.645078406Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:03:15.335061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224127, - "rtt_ms": 1.224127, + "rtt_ns": 1810625, + "rtt_ms": 1.810625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:33.645117766Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:15.33511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211777, - "rtt_ms": 1.211777, + "rtt_ns": 2143791, + "rtt_ms": 2.143791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:33.645120886Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:15.33518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029706, - "rtt_ms": 1.029706, + "rtt_ns": 2122458, + "rtt_ms": 2.122458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "837", - "timestamp": "2025-11-27T01:23:33.645171005Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:15.335197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365096, - "rtt_ms": 1.365096, + "rtt_ns": 2082416, + "rtt_ms": 2.082416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "173", - "timestamp": "2025-11-27T01:23:33.645258525Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:15.335411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495626, - "rtt_ms": 1.495626, + "rtt_ns": 1961583, + "rtt_ms": 1.961583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.645784164Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:15.335428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018517, - "rtt_ms": 1.018517, + "rtt_ns": 2101333, + "rtt_ms": 2.101333, "checkpoint": 0, "vertex_from": "16", "vertex_to": "391", - "timestamp": "2025-11-27T01:23:33.645876263Z" + "timestamp": "2025-11-27T04:03:15.335442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017947, - "rtt_ms": 1.017947, + "rtt_ns": 2213917, + "rtt_ms": 2.213917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:33.645894553Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.335453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479685, - "rtt_ms": 1.479685, + "rtt_ns": 1357750, + "rtt_ms": 1.35775, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:33.645921413Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.33557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037387, - "rtt_ms": 1.037387, + "rtt_ns": 1586167, + "rtt_ms": 1.586167, "checkpoint": 0, "vertex_from": "16", "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.646099193Z" + "timestamp": "2025-11-27T04:03:15.335728-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048234, - "rtt_ms": 2.048234, + "rtt_ns": 970375, + "rtt_ms": 0.970375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:33.647220579Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:15.336541-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233543, - "rtt_ms": 2.233543, + "rtt_ns": 1462584, + "rtt_ms": 1.462584, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.647314729Z" + "vertex_to": "921", + "timestamp": "2025-11-27T04:03:15.336661-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258353, - "rtt_ms": 2.258353, + "rtt_ns": 1317000, + "rtt_ms": 1.317, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.647380949Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:03:15.336771-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281033, - "rtt_ms": 2.281033, + "rtt_ns": 1360292, + "rtt_ms": 1.360292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:33.647400359Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:15.336789-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 679868, - "rtt_ms": 0.679868, + "operation": "add_edge", + "rtt_ns": 1693584, + "rtt_ms": 1.693584, "checkpoint": 0, - "vertex_from": "861", - "timestamp": "2025-11-27T01:23:33.647902717Z" + "vertex_from": "16", + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.336805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2168803, - "rtt_ms": 2.168803, + "rtt_ns": 1379250, + "rtt_ms": 1.37925, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.647954117Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:03:15.336822-08:00" }, { "operation": "add_edge", - "rtt_ns": 2714812, - "rtt_ms": 2.714812, + "rtt_ns": 1774542, + "rtt_ms": 1.774542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "921", - "timestamp": "2025-11-27T01:23:33.647974367Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:15.336837-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2178064, - "rtt_ms": 2.178064, + "operation": "add_vertex", + "rtt_ns": 1145667, + "rtt_ms": 1.145667, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:33.648055657Z" + "vertex_from": "861", + "timestamp": "2025-11-27T04:03:15.336874-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232444, - "rtt_ms": 2.232444, + "rtt_ns": 1717292, + "rtt_ms": 1.717292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "922", - "timestamp": "2025-11-27T01:23:33.648128117Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:03:15.336898-08:00" }, { "operation": "add_edge", - "rtt_ns": 2296153, - "rtt_ms": 2.296153, + "rtt_ns": 1569084, + "rtt_ms": 1.569084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "558", - "timestamp": "2025-11-27T01:23:33.648218776Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.336981-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119803, - "rtt_ms": 2.119803, + "rtt_ns": 1062541, + "rtt_ms": 1.062541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:33.648220686Z" + "vertex_to": "861", + "timestamp": "2025-11-27T04:03:15.337938-08:00" }, { "operation": "add_edge", - "rtt_ns": 939867, - "rtt_ms": 0.939867, + "rtt_ns": 1299000, + "rtt_ms": 1.299, "checkpoint": 0, "vertex_from": "16", "vertex_to": "205", - "timestamp": "2025-11-27T01:23:33.648322326Z" + "timestamp": "2025-11-27T04:03:15.33796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023057, - "rtt_ms": 1.023057, + "rtt_ns": 1175958, + "rtt_ms": 1.175958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:33.648340566Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:15.337966-08:00" }, { "operation": "add_edge", - "rtt_ns": 961717, - "rtt_ms": 0.961717, + "rtt_ns": 1333834, + "rtt_ms": 1.333834, "checkpoint": 0, "vertex_from": "16", "vertex_to": "267", - "timestamp": "2025-11-27T01:23:33.648364746Z" + "timestamp": "2025-11-27T04:03:15.338106-08:00" }, { "operation": "add_edge", - "rtt_ns": 547279, - "rtt_ms": 0.547279, + "rtt_ns": 1591667, + "rtt_ms": 1.591667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "861", - "timestamp": "2025-11-27T01:23:33.648450576Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:15.338134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329176, - "rtt_ms": 1.329176, + "rtt_ns": 1330167, + "rtt_ms": 1.330167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:33.649284893Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:15.338153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848715, - "rtt_ms": 1.848715, + "rtt_ns": 1261333, + "rtt_ms": 1.261333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.649824132Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:15.338245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628345, - "rtt_ms": 1.628345, + "rtt_ns": 1462292, + "rtt_ms": 1.462292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:33.649848671Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.338267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794954, - "rtt_ms": 1.794954, + "rtt_ns": 1385791, + "rtt_ms": 1.385791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.649851941Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:03:15.338285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732074, - "rtt_ms": 1.732074, + "rtt_ns": 1673875, + "rtt_ms": 1.673875, "checkpoint": 0, "vertex_from": "16", "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.649863761Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1765725, - "rtt_ms": 1.765725, - "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:33.649988461Z" + "timestamp": "2025-11-27T04:03:15.338511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694375, - "rtt_ms": 1.694375, + "rtt_ns": 1239125, + "rtt_ms": 1.239125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "121", - "timestamp": "2025-11-27T01:23:33.650017981Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:15.339394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700655, - "rtt_ms": 1.700655, + "rtt_ns": 1458334, + "rtt_ms": 1.458334, "checkpoint": 0, "vertex_from": "16", "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.650066641Z" + "timestamp": "2025-11-27T04:03:15.339425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737415, - "rtt_ms": 1.737415, + "rtt_ns": 1554041, + "rtt_ms": 1.554041, "checkpoint": 0, "vertex_from": "16", "vertex_to": "976", - "timestamp": "2025-11-27T01:23:33.650081911Z" + "timestamp": "2025-11-27T04:03:15.339515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835814, - "rtt_ms": 1.835814, + "rtt_ns": 1499458, + "rtt_ms": 1.499458, "checkpoint": 0, "vertex_from": "16", "vertex_to": "777", - "timestamp": "2025-11-27T01:23:33.65028744Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1292696, - "rtt_ms": 1.292696, - "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.651311697Z" + "timestamp": "2025-11-27T04:03:15.339608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259136, - "rtt_ms": 1.259136, + "rtt_ns": 1786333, + "rtt_ms": 1.786333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:33.651342437Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:03:15.339725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274616, - "rtt_ms": 1.274616, + "rtt_ns": 1460083, + "rtt_ms": 1.460083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.651342387Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:15.339746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503346, - "rtt_ms": 1.503346, + "rtt_ns": 1488667, + "rtt_ms": 1.488667, "checkpoint": 0, "vertex_from": "16", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:33.651357497Z" + "timestamp": "2025-11-27T04:03:15.339757-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088154, - "rtt_ms": 2.088154, + "rtt_ns": 1626625, + "rtt_ms": 1.626625, "checkpoint": 0, "vertex_from": "16", "vertex_to": "904", - "timestamp": "2025-11-27T01:23:33.651374917Z" + "timestamp": "2025-11-27T04:03:15.339762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527156, - "rtt_ms": 1.527156, + "rtt_ns": 1454208, + "rtt_ms": 1.454208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:33.651377437Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:03:15.339966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523576, - "rtt_ms": 1.523576, + "rtt_ns": 1800083, + "rtt_ms": 1.800083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:33.651389147Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:15.340047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410866, - "rtt_ms": 1.410866, + "rtt_ns": 1265041, + "rtt_ms": 1.265041, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "39", - "timestamp": "2025-11-27T01:23:33.651401067Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.340691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587305, - "rtt_ms": 1.587305, + "rtt_ns": 1479459, + "rtt_ms": 1.479459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.651413347Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.340876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309596, - "rtt_ms": 1.309596, + "rtt_ns": 1862125, + "rtt_ms": 1.862125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "647", - "timestamp": "2025-11-27T01:23:33.651598396Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:15.341378-08:00" }, { "operation": "add_edge", - "rtt_ns": 921437, - "rtt_ms": 0.921437, + "rtt_ns": 1669625, + "rtt_ms": 1.669625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:33.652299904Z" + "vertex_to": "211", + "timestamp": "2025-11-27T04:03:15.341395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198467, - "rtt_ms": 1.198467, + "rtt_ns": 1719875, + "rtt_ms": 1.719875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "211", - "timestamp": "2025-11-27T01:23:33.652511834Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:15.341479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167117, - "rtt_ms": 1.167117, + "rtt_ns": 1741083, + "rtt_ms": 1.741083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:33.652558184Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:15.341504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160147, - "rtt_ms": 1.160147, + "rtt_ns": 1759083, + "rtt_ms": 1.759083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "341", - "timestamp": "2025-11-27T01:23:33.652574984Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:15.341506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402216, - "rtt_ms": 1.402216, + "rtt_ns": 1957083, + "rtt_ms": 1.957083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:33.652746403Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:03:15.341566-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200464, - "rtt_ms": 2.200464, + "rtt_ns": 1780625, + "rtt_ms": 1.780625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:33.653560281Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:15.341828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2344473, - "rtt_ms": 2.344473, + "rtt_ns": 1880209, + "rtt_ms": 1.880209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:33.65369027Z" + "vertex_to": "316", + "timestamp": "2025-11-27T04:03:15.341847-08:00" }, { "operation": "add_edge", - "rtt_ns": 2388783, - "rtt_ms": 2.388783, + "rtt_ns": 1500000, + "rtt_ms": 1.5, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:33.6537912Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:15.342192-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238574, - "rtt_ms": 2.238574, + "rtt_ns": 1644208, + "rtt_ms": 1.644208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:33.65383992Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:15.342521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2615793, - "rtt_ms": 2.615793, + "rtt_ns": 1430917, + "rtt_ms": 1.430917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "316", - "timestamp": "2025-11-27T01:23:33.65399285Z" + "vertex_to": "341", + "timestamp": "2025-11-27T04:03:15.34281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965704, - "rtt_ms": 1.965704, + "rtt_ns": 1544708, + "rtt_ms": 1.544708, "checkpoint": 0, "vertex_from": "16", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.654525708Z" + "timestamp": "2025-11-27T04:03:15.343058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2302214, - "rtt_ms": 2.302214, + "rtt_ns": 1579375, + "rtt_ms": 1.579375, "checkpoint": 0, "vertex_from": "16", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.654603258Z" + "timestamp": "2025-11-27T04:03:15.343059-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101434, - "rtt_ms": 2.101434, + "rtt_ns": 1235084, + "rtt_ms": 1.235084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.654614328Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:15.343064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050624, - "rtt_ms": 2.050624, + "rtt_ns": 1413125, + "rtt_ms": 1.413125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.654626878Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:15.343261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954995, - "rtt_ms": 1.954995, + "rtt_ns": 1777834, + "rtt_ms": 1.777834, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:33.654702428Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.343283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224727, - "rtt_ms": 1.224727, + "rtt_ns": 1736625, + "rtt_ms": 1.736625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:33.654916017Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.343303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134977, - "rtt_ms": 1.134977, + "rtt_ns": 2183584, + "rtt_ms": 2.183584, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "597", - "timestamp": "2025-11-27T01:23:33.654927117Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:15.34358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004787, - "rtt_ms": 1.004787, + "rtt_ns": 1279375, + "rtt_ms": 1.279375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.654998637Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:03:15.343802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451416, - "rtt_ms": 1.451416, + "rtt_ns": 2019083, + "rtt_ms": 2.019083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:33.655012967Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:15.344212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176507, - "rtt_ms": 1.176507, + "rtt_ns": 1278208, + "rtt_ms": 1.278208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:33.655018387Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:03:15.344582-08:00" }, { "operation": "add_edge", - "rtt_ns": 675038, - "rtt_ms": 0.675038, + "rtt_ns": 1333959, + "rtt_ms": 1.333959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.655201436Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:15.344618-08:00" }, { "operation": "add_edge", - "rtt_ns": 665278, - "rtt_ms": 0.665278, + "rtt_ns": 1703500, + "rtt_ms": 1.7035, "checkpoint": 0, "vertex_from": "16", "vertex_to": "464", - "timestamp": "2025-11-27T01:23:33.655270046Z" + "timestamp": "2025-11-27T04:03:15.344769-08:00" }, { "operation": "add_edge", - "rtt_ns": 643918, - "rtt_ms": 0.643918, + "rtt_ns": 1523167, + "rtt_ms": 1.523167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:33.655347266Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:15.344785-08:00" }, { "operation": "add_edge", - "rtt_ns": 745758, - "rtt_ms": 0.745758, + "rtt_ns": 1840875, + "rtt_ms": 1.840875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:33.655361016Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.344902-08:00" }, { "operation": "add_edge", - "rtt_ns": 738658, - "rtt_ms": 0.738658, + "rtt_ns": 1913709, + "rtt_ms": 1.913709, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:33.655366566Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:15.344974-08:00" }, { "operation": "add_edge", - "rtt_ns": 589388, - "rtt_ms": 0.589388, + "rtt_ns": 1171750, + "rtt_ms": 1.17175, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:33.655506645Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:15.344974-08:00" }, { "operation": "add_edge", - "rtt_ns": 684438, - "rtt_ms": 0.684438, + "rtt_ns": 1422584, + "rtt_ms": 1.422584, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:33.655612485Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:15.345003-08:00" }, { "operation": "add_edge", - "rtt_ns": 654958, - "rtt_ms": 0.654958, + "rtt_ns": 1169916, + "rtt_ms": 1.169916, "checkpoint": 0, "vertex_from": "16", "vertex_to": "75", - "timestamp": "2025-11-27T01:23:33.655654755Z" + "timestamp": "2025-11-27T04:03:15.345383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106126, - "rtt_ms": 1.106126, + "rtt_ns": 2713459, + "rtt_ms": 2.713459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:33.656125863Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:15.345527-08:00" }, { "operation": "add_edge", - "rtt_ns": 918577, - "rtt_ms": 0.918577, + "rtt_ns": 986333, + "rtt_ms": 0.986333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:33.656189863Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:15.345961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205846, - "rtt_ms": 1.205846, + "rtt_ns": 1285959, + "rtt_ms": 1.285959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:33.656219693Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1064407, - "rtt_ms": 1.064407, - "checkpoint": 0, - "vertex_from": "487", - "timestamp": "2025-11-27T01:23:33.656270373Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:15.346262-08:00" }, { "operation": "add_vertex", - "rtt_ns": 924637, - "rtt_ms": 0.924637, + "rtt_ns": 1375584, + "rtt_ms": 1.375584, "checkpoint": 0, "vertex_from": "798", - "timestamp": "2025-11-27T01:23:33.656273933Z" + "timestamp": "2025-11-27T04:03:15.34628-08:00" }, { "operation": "add_edge", - "rtt_ns": 991817, - "rtt_ms": 0.991817, + "rtt_ns": 1510583, + "rtt_ms": 1.510583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:33.656359753Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:15.346296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046707, - "rtt_ms": 1.046707, + "rtt_ns": 1295541, + "rtt_ms": 1.295541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.656408833Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:15.3463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646315, - "rtt_ms": 1.646315, + "rtt_ns": 1729875, + "rtt_ms": 1.729875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:33.65715404Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:03:15.346312-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1606833, + "rtt_ms": 1.606833, + "checkpoint": 0, + "vertex_from": "487", + "timestamp": "2025-11-27T04:03:15.346378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735495, - "rtt_ms": 1.735495, + "rtt_ns": 2387291, + "rtt_ms": 2.387291, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.65734917Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:15.347006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942304, - "rtt_ms": 1.942304, + "rtt_ns": 1719833, + "rtt_ms": 1.719833, "checkpoint": 0, "vertex_from": "16", "vertex_to": "549", - "timestamp": "2025-11-27T01:23:33.657597799Z" + "timestamp": "2025-11-27T04:03:15.347248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435906, - "rtt_ms": 1.435906, + "rtt_ns": 1302500, + "rtt_ms": 1.3025, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.657630279Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:15.347265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663676, - "rtt_ms": 1.663676, + "rtt_ns": 1147875, + "rtt_ms": 1.147875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:33.657790899Z" + "vertex_to": "798", + "timestamp": "2025-11-27T04:03:15.347428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587805, - "rtt_ms": 1.587805, + "rtt_ns": 2300917, + "rtt_ms": 2.300917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.657808328Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.347686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417425, - "rtt_ms": 1.417425, + "rtt_ns": 1475000, + "rtt_ms": 1.475, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:33.657827448Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.347776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614655, - "rtt_ms": 1.614655, + "rtt_ns": 1647334, + "rtt_ms": 1.647334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "798", - "timestamp": "2025-11-27T01:23:33.657888938Z" + "vertex_to": "487", + "timestamp": "2025-11-27T04:03:15.348026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702365, - "rtt_ms": 1.702365, + "rtt_ns": 1808208, + "rtt_ms": 1.808208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "487", - "timestamp": "2025-11-27T01:23:33.657973038Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:15.348121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622695, - "rtt_ms": 1.622695, + "rtt_ns": 1842667, + "rtt_ms": 1.842667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.657984188Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.34814-08:00" }, { "operation": "add_edge", - "rtt_ns": 872728, - "rtt_ms": 0.872728, + "rtt_ns": 1883542, + "rtt_ms": 1.883542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:33.658027998Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.348146-08:00" }, { "operation": "add_edge", - "rtt_ns": 678268, - "rtt_ms": 0.678268, + "rtt_ns": 1209916, + "rtt_ms": 1.209916, "checkpoint": 0, "vertex_from": "16", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.658028468Z" + "timestamp": "2025-11-27T04:03:15.348459-08:00" }, { "operation": "add_edge", - "rtt_ns": 871828, - "rtt_ms": 0.871828, + "rtt_ns": 1372792, + "rtt_ms": 1.372792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:33.658700876Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:03:15.348638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146727, - "rtt_ms": 1.146727, + "rtt_ns": 1532333, + "rtt_ms": 1.532333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "614", - "timestamp": "2025-11-27T01:23:33.658746396Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:15.348962-08:00" }, { "operation": "add_edge", - "rtt_ns": 952328, - "rtt_ms": 0.952328, + "rtt_ns": 2317875, + "rtt_ms": 2.317875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "451", - "timestamp": "2025-11-27T01:23:33.658761966Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:15.349325-08:00" }, { "operation": "add_vertex", - "rtt_ns": 970317, - "rtt_ms": 0.970317, + "rtt_ns": 1826583, + "rtt_ms": 1.826583, "checkpoint": 0, "vertex_from": "79", - "timestamp": "2025-11-27T01:23:33.658763596Z" + "timestamp": "2025-11-27T04:03:15.349528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305066, - "rtt_ms": 1.305066, + "rtt_ns": 1942375, + "rtt_ms": 1.942375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.658936405Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:15.350402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932704, - "rtt_ms": 1.932704, + "rtt_ns": 1965417, + "rtt_ms": 1.965417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.659822772Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.350607-08:00" }, { "operation": "add_edge", - "rtt_ns": 2585272, - "rtt_ms": 2.585272, + "rtt_ns": 2603500, + "rtt_ms": 2.6035, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:33.66057062Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:15.35063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2666902, - "rtt_ms": 2.666902, + "rtt_ns": 2499708, + "rtt_ms": 2.499708, "checkpoint": 0, "vertex_from": "16", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:33.66064186Z" + "timestamp": "2025-11-27T04:03:15.35064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2641832, - "rtt_ms": 2.641832, + "rtt_ns": 2514792, + "rtt_ms": 2.514792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.66067164Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:15.350662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2791541, - "rtt_ms": 2.791541, + "rtt_ns": 2621125, + "rtt_ms": 2.621125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:33.660821209Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.350743-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1570667, + "rtt_ms": 1.570667, + "checkpoint": 0, + "vertex_from": "16", + "vertex_to": "339", + "timestamp": "2025-11-27T04:03:15.350897-08:00" }, { "operation": "add_edge", - "rtt_ns": 2212263, - "rtt_ms": 2.212263, + "rtt_ns": 1386458, + "rtt_ms": 1.386458, "checkpoint": 0, "vertex_from": "16", "vertex_to": "79", - "timestamp": "2025-11-27T01:23:33.660976339Z" + "timestamp": "2025-11-27T04:03:15.350915-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2289793, - "rtt_ms": 2.289793, + "rtt_ns": 1987667, + "rtt_ms": 1.987667, "checkpoint": 0, "vertex_from": "931", - "timestamp": "2025-11-27T01:23:33.660996219Z" + "timestamp": "2025-11-27T04:03:15.350951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2263203, - "rtt_ms": 2.263203, + "rtt_ns": 3294250, + "rtt_ms": 3.29425, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:33.661027729Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:03:15.351071-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139344, - "rtt_ms": 2.139344, + "rtt_ns": 1111292, + "rtt_ms": 1.111292, "checkpoint": 0, "vertex_from": "16", "vertex_to": "216", - "timestamp": "2025-11-27T01:23:33.661076949Z" + "timestamp": "2025-11-27T04:03:15.351719-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1286457, - "rtt_ms": 1.286457, + "operation": "add_edge", + "rtt_ns": 1333625, + "rtt_ms": 1.333625, "checkpoint": 0, - "vertex_from": "986", - "timestamp": "2025-11-27T01:23:33.661112029Z" + "vertex_from": "16", + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:15.351736-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2392363, - "rtt_ms": 2.392363, + "operation": "add_vertex", + "rtt_ns": 1435958, + "rtt_ms": 1.435958, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "339", - "timestamp": "2025-11-27T01:23:33.661140369Z" + "vertex_from": "986", + "timestamp": "2025-11-27T04:03:15.352067-08:00" }, { "operation": "add_edge", - "rtt_ns": 673798, - "rtt_ms": 0.673798, + "rtt_ns": 1012500, + "rtt_ms": 1.0125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:33.661245738Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:15.352084-08:00" }, { "operation": "add_edge", - "rtt_ns": 760398, - "rtt_ms": 0.760398, + "rtt_ns": 1493667, + "rtt_ms": 1.493667, "checkpoint": 0, "vertex_from": "16", "vertex_to": "674", - "timestamp": "2025-11-27T01:23:33.661403658Z" + "timestamp": "2025-11-27T04:03:15.352156-08:00" }, { "operation": "add_edge", - "rtt_ns": 637049, - "rtt_ms": 0.637049, + "rtt_ns": 1222125, + "rtt_ms": 1.222125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:33.661459338Z" + "vertex_to": "931", + "timestamp": "2025-11-27T04:03:15.352174-08:00" }, { "operation": "add_edge", - "rtt_ns": 835947, - "rtt_ms": 0.835947, + "rtt_ns": 1318958, + "rtt_ms": 1.318958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:33.661508367Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:15.352217-08:00" }, { "operation": "add_edge", - "rtt_ns": 721508, - "rtt_ms": 0.721508, + "rtt_ns": 1317875, + "rtt_ms": 1.317875, "checkpoint": 0, "vertex_from": "16", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:33.661699057Z" + "timestamp": "2025-11-27T04:03:15.352233-08:00" }, { "operation": "add_edge", - "rtt_ns": 771028, - "rtt_ms": 0.771028, + "rtt_ns": 1576542, + "rtt_ms": 1.576542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "931", - "timestamp": "2025-11-27T01:23:33.661767727Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:15.35232-08:00" }, { "operation": "add_edge", - "rtt_ns": 790917, - "rtt_ms": 0.790917, + "rtt_ns": 2192916, + "rtt_ms": 2.192916, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:33.661819556Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:15.352834-08:00" }, { "operation": "add_edge", - "rtt_ns": 832077, - "rtt_ms": 0.832077, + "rtt_ns": 1244834, + "rtt_ms": 1.244834, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:33.661910916Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:03:15.352982-08:00" }, { "operation": "add_edge", - "rtt_ns": 823938, - "rtt_ms": 0.823938, + "rtt_ns": 1381292, + "rtt_ms": 1.381292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "790", - "timestamp": "2025-11-27T01:23:33.661965446Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:15.353102-08:00" }, { "operation": "add_edge", - "rtt_ns": 904137, - "rtt_ms": 0.904137, + "rtt_ns": 1153708, + "rtt_ms": 1.153708, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "986", - "timestamp": "2025-11-27T01:23:33.662016486Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:15.353238-08:00" }, { "operation": "add_edge", - "rtt_ns": 812918, - "rtt_ms": 0.812918, + "rtt_ns": 1098000, + "rtt_ms": 1.098, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:33.662059526Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:15.353255-08:00" }, { "operation": "add_edge", - "rtt_ns": 640518, - "rtt_ms": 0.640518, + "rtt_ns": 1702417, + "rtt_ms": 1.702417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:33.662101006Z" + "vertex_to": "986", + "timestamp": "2025-11-27T04:03:15.353769-08:00" }, { "operation": "add_edge", - "rtt_ns": 632939, - "rtt_ms": 0.632939, + "rtt_ns": 1497583, + "rtt_ms": 1.497583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.662142256Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:15.354333-08:00" }, { "operation": "add_edge", - "rtt_ns": 738428, - "rtt_ms": 0.738428, + "rtt_ns": 1246791, + "rtt_ms": 1.246791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:33.662143396Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:15.354349-08:00" }, { "operation": "add_edge", - "rtt_ns": 996137, - "rtt_ms": 0.996137, + "rtt_ns": 2082375, + "rtt_ms": 2.082375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:33.662697634Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:15.354404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177206, - "rtt_ms": 1.177206, + "rtt_ns": 1181041, + "rtt_ms": 1.181041, "checkpoint": 0, "vertex_from": "16", "vertex_to": "153", - "timestamp": "2025-11-27T01:23:33.663194752Z" + "timestamp": "2025-11-27T04:03:15.35442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291736, - "rtt_ms": 1.291736, + "rtt_ns": 1223083, + "rtt_ms": 1.223083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "485", - "timestamp": "2025-11-27T01:23:33.663203712Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:15.354479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391046, - "rtt_ms": 1.391046, + "rtt_ns": 2324500, + "rtt_ms": 2.3245, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:33.663212052Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:15.354499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450405, - "rtt_ms": 1.450405, + "rtt_ns": 2285958, + "rtt_ms": 2.285958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:33.663220742Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:15.354504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606285, - "rtt_ms": 1.606285, + "rtt_ns": 1532167, + "rtt_ms": 1.532167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.663667611Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:03:15.354515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703445, - "rtt_ms": 1.703445, + "rtt_ns": 2450375, + "rtt_ms": 2.450375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:33.663670071Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:15.354684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621325, - "rtt_ms": 1.621325, + "rtt_ns": 1184000, + "rtt_ms": 1.184, "checkpoint": 0, "vertex_from": "16", "vertex_to": "102", - "timestamp": "2025-11-27T01:23:33.663723531Z" + "timestamp": "2025-11-27T04:03:15.354955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166446, - "rtt_ms": 1.166446, + "rtt_ns": 906375, + "rtt_ms": 0.906375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:33.66386565Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:15.355386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735984, - "rtt_ms": 1.735984, + "rtt_ns": 1519459, + "rtt_ms": 1.519459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:33.66387954Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:03:15.356035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787675, - "rtt_ms": 1.787675, + "rtt_ns": 1761417, + "rtt_ms": 1.761417, "checkpoint": 0, "vertex_from": "16", "vertex_to": "773", - "timestamp": "2025-11-27T01:23:33.66393293Z" - }, - { - "operation": "add_edge", - "rtt_ns": 876957, - "rtt_ms": 0.876957, - "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:33.664546828Z" + "timestamp": "2025-11-27T04:03:15.356112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453516, - "rtt_ms": 1.453516, + "rtt_ns": 1829666, + "rtt_ms": 1.829666, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "46", - "timestamp": "2025-11-27T01:23:33.665125197Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:15.356163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939665, - "rtt_ms": 1.939665, + "rtt_ns": 1710417, + "rtt_ms": 1.710417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:33.665144787Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:15.356216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054045, - "rtt_ms": 2.054045, + "rtt_ns": 1834541, + "rtt_ms": 1.834541, "checkpoint": 0, "vertex_from": "16", "vertex_to": "809", - "timestamp": "2025-11-27T01:23:33.665251317Z" + "timestamp": "2025-11-27T04:03:15.356256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067854, - "rtt_ms": 2.067854, + "rtt_ns": 1965417, + "rtt_ms": 1.965417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:33.665294316Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:15.35637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363076, - "rtt_ms": 1.363076, + "rtt_ns": 1689375, + "rtt_ms": 1.689375, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:33.665298296Z" + "vertex_from": "16", + "vertex_to": "46", + "timestamp": "2025-11-27T04:03:15.356375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098804, - "rtt_ms": 2.098804, + "rtt_ns": 1887042, + "rtt_ms": 1.887042, "checkpoint": 0, "vertex_from": "16", "vertex_to": "466", - "timestamp": "2025-11-27T01:23:33.665313306Z" + "timestamp": "2025-11-27T04:03:15.356389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450316, - "rtt_ms": 1.450316, + "rtt_ns": 1491250, + "rtt_ms": 1.49125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.665331336Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:15.357604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546726, - "rtt_ms": 1.546726, + "rtt_ns": 1495541, + "rtt_ms": 1.495541, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:33.665413316Z" + "vertex_from": "17", + "vertex_to": "87", + "timestamp": "2025-11-27T04:03:15.357661-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192614, - "rtt_ms": 2.192614, + "rtt_ns": 2311083, + "rtt_ms": 2.311083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:33.665918025Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:15.357698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543576, - "rtt_ms": 1.543576, + "rtt_ns": 1463959, + "rtt_ms": 1.463959, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "87", - "timestamp": "2025-11-27T01:23:33.666091354Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.357721-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094444, - "rtt_ms": 2.094444, + "rtt_ns": 1606833, + "rtt_ms": 1.606833, "checkpoint": 0, "vertex_from": "17", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.667221141Z" + "timestamp": "2025-11-27T04:03:15.357824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191364, - "rtt_ms": 2.191364, + "rtt_ns": 1860583, + "rtt_ms": 1.860583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.667337171Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.357899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2705303, - "rtt_ms": 2.705303, + "rtt_ns": 1619833, + "rtt_ms": 1.619833, "checkpoint": 0, "vertex_from": "17", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:33.668005379Z" + "timestamp": "2025-11-27T04:03:15.358011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2795112, - "rtt_ms": 2.795112, + "rtt_ns": 3078875, + "rtt_ms": 3.078875, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:33.668109538Z" + "vertex_from": "16", + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:15.358035-08:00" }, { "operation": "add_edge", - "rtt_ns": 2824222, - "rtt_ms": 2.824222, + "rtt_ns": 1736333, + "rtt_ms": 1.736333, "checkpoint": 0, "vertex_from": "17", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:33.668119688Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2230763, - "rtt_ms": 2.230763, - "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.668149928Z" + "timestamp": "2025-11-27T04:03:15.358113-08:00" }, { "operation": "add_edge", - "rtt_ns": 3019231, - "rtt_ms": 3.019231, + "rtt_ns": 2089333, + "rtt_ms": 2.089333, "checkpoint": 0, "vertex_from": "17", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.668271518Z" + "timestamp": "2025-11-27T04:03:15.35846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182294, - "rtt_ms": 2.182294, + "rtt_ns": 1108208, + "rtt_ms": 1.108208, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.668274788Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:15.358714-08:00" }, { "operation": "add_edge", - "rtt_ns": 2895622, - "rtt_ms": 2.895622, + "rtt_ns": 1309750, + "rtt_ms": 1.30975, "checkpoint": 0, "vertex_from": "17", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.668310228Z" + "timestamp": "2025-11-27T04:03:15.359009-08:00" }, { "operation": "add_edge", - "rtt_ns": 2984202, - "rtt_ms": 2.984202, + "rtt_ns": 1320042, + "rtt_ms": 1.320042, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.668316788Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:03:15.35922-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1591745, - "rtt_ms": 1.591745, + "rtt_ns": 1241584, + "rtt_ms": 1.241584, "checkpoint": 0, "vertex_from": "685", - "timestamp": "2025-11-27T01:23:33.668931066Z" + "timestamp": "2025-11-27T04:03:15.359254-08:00" }, { "operation": "add_edge", - "rtt_ns": 796298, - "rtt_ms": 0.796298, + "rtt_ns": 1663333, + "rtt_ms": 1.663333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.668948126Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.359326-08:00" }, { "operation": "add_edge", - "rtt_ns": 839938, - "rtt_ms": 0.839938, + "rtt_ns": 1564625, + "rtt_ms": 1.564625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:33.668951846Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.359389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762625, - "rtt_ms": 1.762625, + "rtt_ns": 1714666, + "rtt_ms": 1.714666, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "976", - "timestamp": "2025-11-27T01:23:33.668985276Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:15.359436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598975, - "rtt_ms": 1.598975, + "rtt_ns": 1476250, + "rtt_ms": 1.47625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:33.669605464Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.359937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370986, - "rtt_ms": 1.370986, + "rtt_ns": 1859875, + "rtt_ms": 1.859875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:33.669644244Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:15.359974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407356, - "rtt_ms": 1.407356, + "rtt_ns": 1030667, + "rtt_ms": 1.030667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:33.669683694Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:15.360041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373606, - "rtt_ms": 1.373606, + "rtt_ns": 2008709, + "rtt_ms": 2.008709, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.669691564Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:15.360044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606026, - "rtt_ms": 1.606026, + "rtt_ns": 1396250, + "rtt_ms": 1.39625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.669726544Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.360111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770175, - "rtt_ms": 1.770175, + "rtt_ns": 1140375, + "rtt_ms": 1.140375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:33.670081603Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.361253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164186, - "rtt_ms": 1.164186, + "rtt_ns": 2097250, + "rtt_ms": 2.09725, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.670150632Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:03:15.361351-08:00" }, { "operation": "add_edge", - "rtt_ns": 814938, - "rtt_ms": 0.814938, + "rtt_ns": 2239458, + "rtt_ms": 2.239458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.670421272Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:15.361462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481635, - "rtt_ms": 1.481635, + "rtt_ns": 2090209, + "rtt_ms": 2.090209, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.670431091Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.36148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805815, - "rtt_ms": 1.805815, + "rtt_ns": 1511334, + "rtt_ms": 1.511334, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "685", - "timestamp": "2025-11-27T01:23:33.670737131Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.361486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372676, - "rtt_ms": 1.372676, + "rtt_ns": 1452333, + "rtt_ms": 1.452333, "checkpoint": 0, "vertex_from": "17", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.67101774Z" + "timestamp": "2025-11-27T04:03:15.361497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519695, - "rtt_ms": 1.519695, + "rtt_ns": 2062458, + "rtt_ms": 2.062458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.671204179Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:15.361501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2346893, - "rtt_ms": 2.346893, + "rtt_ns": 1505125, + "rtt_ms": 1.505125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.671299839Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.361548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148787, - "rtt_ms": 1.148787, + "rtt_ns": 2236125, + "rtt_ms": 2.236125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:33.671300119Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:15.361564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231846, - "rtt_ms": 1.231846, + "rtt_ns": 1903459, + "rtt_ms": 1.903459, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:33.671314149Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.361842-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 913625, + "rtt_ms": 0.913625, + "checkpoint": 0, + "vertex_from": "17", + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:15.362169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646305, - "rtt_ms": 1.646305, + "rtt_ns": 1168167, + "rtt_ms": 1.168167, "checkpoint": 0, "vertex_from": "17", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.671373499Z" + "timestamp": "2025-11-27T04:03:15.362521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804714, - "rtt_ms": 1.804714, + "rtt_ns": 1135959, + "rtt_ms": 1.135959, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:33.671497158Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:15.362599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082616, - "rtt_ms": 1.082616, + "rtt_ns": 4719166, + "rtt_ms": 4.719166, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.671504558Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:15.366563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209227, - "rtt_ms": 1.209227, + "rtt_ns": 5403333, + "rtt_ms": 5.403333, "checkpoint": 0, "vertex_from": "17", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.671640698Z" + "timestamp": "2025-11-27T04:03:15.366901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689175, - "rtt_ms": 1.689175, + "rtt_ns": 5363667, + "rtt_ms": 5.363667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.673063794Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:15.366913-08:00" }, { "operation": "add_edge", - "rtt_ns": 2384243, - "rtt_ms": 2.384243, + "rtt_ns": 5439125, + "rtt_ms": 5.439125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.673685042Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:15.36692-08:00" }, { "operation": "add_edge", - "rtt_ns": 2513412, - "rtt_ms": 2.513412, + "rtt_ns": 5450833, + "rtt_ms": 5.450833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.673828231Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.366937-08:00" }, { "operation": "add_edge", - "rtt_ns": 3305500, - "rtt_ms": 3.3055, + "rtt_ns": 5394458, + "rtt_ms": 5.394458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.674043161Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.366959-08:00" }, { "operation": "add_edge", - "rtt_ns": 3103480, - "rtt_ms": 3.10348, + "rtt_ns": 5475583, + "rtt_ms": 5.475583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.67412196Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:15.366977-08:00" }, { "operation": "add_edge", - "rtt_ns": 3138611, - "rtt_ms": 3.138611, + "rtt_ns": 4921667, + "rtt_ms": 4.921667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:33.674637539Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:03:15.367092-08:00" }, { "operation": "add_edge", - "rtt_ns": 3443490, - "rtt_ms": 3.44349, + "rtt_ns": 4697083, + "rtt_ms": 4.697083, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "558", - "timestamp": "2025-11-27T01:23:33.674744069Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.367297-08:00" }, { "operation": "add_edge", - "rtt_ns": 3553720, - "rtt_ms": 3.55372, + "rtt_ns": 5111417, + "rtt_ms": 5.111417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.674758689Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.367633-08:00" }, { "operation": "add_edge", - "rtt_ns": 3644159, - "rtt_ms": 3.644159, + "rtt_ns": 1175333, + "rtt_ms": 1.175333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.675285807Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.368077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656685, - "rtt_ms": 1.656685, + "rtt_ns": 1219125, + "rtt_ms": 1.219125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.675344227Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:03:15.368313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377996, - "rtt_ms": 1.377996, + "rtt_ns": 1737583, + "rtt_ms": 1.737583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.675422257Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:15.368676-08:00" }, { "operation": "add_edge", - "rtt_ns": 4021008, - "rtt_ms": 4.021008, + "rtt_ns": 2202625, + "rtt_ms": 2.202625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.675526276Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:15.368768-08:00" }, { "operation": "add_edge", - "rtt_ns": 2488822, - "rtt_ms": 2.488822, + "rtt_ns": 1951541, + "rtt_ms": 1.951541, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.675553486Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:15.368931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436776, - "rtt_ms": 1.436776, + "rtt_ns": 2032000, + "rtt_ms": 2.032, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "653", - "timestamp": "2025-11-27T01:23:33.675559926Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.368948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739815, - "rtt_ms": 1.739815, + "rtt_ns": 1405250, + "rtt_ms": 1.40525, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.675569086Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.369039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727715, - "rtt_ms": 1.727715, + "rtt_ns": 2129625, + "rtt_ms": 2.129625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.676366034Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.36905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036677, - "rtt_ms": 1.036677, + "rtt_ns": 1832333, + "rtt_ms": 1.832333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:33.676381634Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.36913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635815, - "rtt_ms": 1.635815, + "rtt_ns": 1215583, + "rtt_ms": 1.215583, "checkpoint": 0, "vertex_from": "17", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.676397064Z" + "timestamp": "2025-11-27T04:03:15.369294-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1112197, - "rtt_ms": 1.112197, + "operation": "add_edge", + "rtt_ns": 2400458, + "rtt_ms": 2.400458, "checkpoint": 0, - "vertex_from": "636", - "timestamp": "2025-11-27T01:23:33.676399554Z" + "vertex_from": "17", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.36936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668475, - "rtt_ms": 1.668475, + "rtt_ns": 1024375, + "rtt_ms": 1.024375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.676413054Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.369956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325846, - "rtt_ms": 1.325846, + "rtt_ns": 1402667, + "rtt_ms": 1.402667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.676895692Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:15.370079-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1892750, + "rtt_ms": 1.89275, + "checkpoint": 0, + "vertex_from": "636", + "timestamp": "2025-11-27T04:03:15.370207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427406, - "rtt_ms": 1.427406, + "rtt_ns": 1443125, + "rtt_ms": 1.443125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.676981542Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:03:15.370212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480316, - "rtt_ms": 1.480316, + "rtt_ns": 1174125, + "rtt_ms": 1.174125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.677007712Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.370226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483626, - "rtt_ms": 1.483626, + "rtt_ns": 1186666, + "rtt_ms": 1.186666, "checkpoint": 0, "vertex_from": "17", "vertex_to": "688", - "timestamp": "2025-11-27T01:23:33.677044822Z" + "timestamp": "2025-11-27T04:03:15.370228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677605, - "rtt_ms": 1.677605, + "rtt_ns": 1285500, + "rtt_ms": 1.2855, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "75", - "timestamp": "2025-11-27T01:23:33.677100532Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.370234-08:00" }, { - "operation": "add_edge", - "rtt_ns": 760038, - "rtt_ms": 0.760038, + "operation": "add_vertex", + "rtt_ns": 1274333, + "rtt_ms": 1.274333, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.677142142Z" + "vertex_from": "498", + "timestamp": "2025-11-27T04:03:15.370407-08:00" }, { "operation": "add_edge", - "rtt_ns": 830187, - "rtt_ms": 0.830187, + "rtt_ns": 2009042, + "rtt_ms": 2.009042, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.677229631Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.371305-08:00" }, { "operation": "add_edge", - "rtt_ns": 862457, - "rtt_ms": 0.862457, + "rtt_ns": 1108375, + "rtt_ms": 1.108375, "checkpoint": 0, "vertex_from": "17", "vertex_to": "636", - "timestamp": "2025-11-27T01:23:33.677262181Z" + "timestamp": "2025-11-27T04:03:15.371315-08:00" }, { "operation": "add_edge", - "rtt_ns": 858367, - "rtt_ms": 0.858367, + "rtt_ns": 1390708, + "rtt_ms": 1.390708, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.677272151Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:15.371617-08:00" }, { "operation": "add_edge", - "rtt_ns": 951477, - "rtt_ms": 0.951477, + "rtt_ns": 1410334, + "rtt_ms": 1.410334, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:33.677960879Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:15.37164-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1600255, - "rtt_ms": 1.600255, + "operation": "add_edge", + "rtt_ns": 1734291, + "rtt_ms": 1.734291, "checkpoint": 0, - "vertex_from": "498", - "timestamp": "2025-11-27T01:23:33.677971259Z" + "vertex_from": "17", + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.371692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028337, - "rtt_ms": 1.028337, + "rtt_ns": 1528708, + "rtt_ms": 1.528708, "checkpoint": 0, "vertex_from": "17", "vertex_to": "275", - "timestamp": "2025-11-27T01:23:33.678010709Z" + "timestamp": "2025-11-27T04:03:15.371741-08:00" }, { "operation": "add_edge", - "rtt_ns": 969437, - "rtt_ms": 0.969437, + "rtt_ns": 2425000, + "rtt_ms": 2.425, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.678112399Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:15.371786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122697, - "rtt_ms": 1.122697, + "rtt_ns": 1597667, + "rtt_ms": 1.597667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:33.678168279Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.371832-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1529596, - "rtt_ms": 1.529596, + "operation": "add_vertex", + "rtt_ns": 1768958, + "rtt_ms": 1.768958, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.678759777Z" + "vertex_from": "455", + "timestamp": "2025-11-27T04:03:15.37185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505236, - "rtt_ms": 1.505236, + "rtt_ns": 1506458, + "rtt_ms": 1.506458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:33.678780187Z" + "vertex_to": "498", + "timestamp": "2025-11-27T04:03:15.371914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547516, - "rtt_ms": 1.547516, + "rtt_ns": 1432917, + "rtt_ms": 1.432917, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:33.678810497Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.37274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713165, - "rtt_ms": 1.713165, + "rtt_ns": 1501042, + "rtt_ms": 1.501042, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.678814477Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1940515, - "rtt_ms": 1.940515, - "checkpoint": 0, - "vertex_from": "455", - "timestamp": "2025-11-27T01:23:33.678838397Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.372818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090857, - "rtt_ms": 1.090857, + "rtt_ns": 1333167, + "rtt_ms": 1.333167, "checkpoint": 0, "vertex_from": "17", "vertex_to": "228", - "timestamp": "2025-11-27T01:23:33.679102816Z" + "timestamp": "2025-11-27T04:03:15.373076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216037, - "rtt_ms": 1.216037, + "rtt_ns": 1456000, + "rtt_ms": 1.456, "checkpoint": 0, "vertex_from": "17", "vertex_to": "73", - "timestamp": "2025-11-27T01:23:33.679178556Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2968541, - "rtt_ms": 2.968541, - "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.6810819Z" - }, - { - "operation": "add_edge", - "rtt_ns": 3267441, - "rtt_ms": 3.267441, - "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "498", - "timestamp": "2025-11-27T01:23:33.68123915Z" + "timestamp": "2025-11-27T04:03:15.37315-08:00" }, { "operation": "add_edge", - "rtt_ns": 3155851, - "rtt_ms": 3.155851, + "rtt_ns": 1235834, + "rtt_ms": 1.235834, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:33.68132639Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:15.373152-08:00" }, { "operation": "add_edge", - "rtt_ns": 2515923, - "rtt_ms": 2.515923, + "rtt_ns": 1543333, + "rtt_ms": 1.543333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "333", - "timestamp": "2025-11-27T01:23:33.68132778Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:15.373161-08:00" }, { "operation": "add_edge", - "rtt_ns": 2578373, - "rtt_ms": 2.578373, + "rtt_ns": 1420583, + "rtt_ms": 1.420583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:33.68133963Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.373208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2609953, - "rtt_ms": 2.609953, + "rtt_ns": 1470500, + "rtt_ms": 1.4705, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.68139186Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:15.373304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2603022, - "rtt_ms": 2.603022, + "rtt_ns": 1688250, + "rtt_ms": 1.68825, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "188", - "timestamp": "2025-11-27T01:23:33.681418679Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:15.37333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2665542, - "rtt_ms": 2.665542, + "rtt_ns": 1499417, + "rtt_ms": 1.499417, "checkpoint": 0, "vertex_from": "17", "vertex_to": "455", - "timestamp": "2025-11-27T01:23:33.681504229Z" + "timestamp": "2025-11-27T04:03:15.37335-08:00" }, { "operation": "add_vertex", - "rtt_ns": 938367, - "rtt_ms": 0.938367, + "rtt_ns": 1598875, + "rtt_ms": 1.598875, "checkpoint": 0, "vertex_from": "295", - "timestamp": "2025-11-27T01:23:33.682179417Z" + "timestamp": "2025-11-27T04:03:15.374809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186717, - "rtt_ms": 1.186717, + "rtt_ns": 1749708, + "rtt_ms": 1.749708, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:33.682270947Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.374903-08:00" }, { "operation": "add_edge", - "rtt_ns": 3094431, - "rtt_ms": 3.094431, + "rtt_ns": 2095625, + "rtt_ms": 2.095625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.682274157Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:03:15.374914-08:00" }, { "operation": "add_edge", - "rtt_ns": 3187501, - "rtt_ms": 3.187501, + "rtt_ns": 1777833, + "rtt_ms": 1.777833, "checkpoint": 0, "vertex_from": "17", "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.682291317Z" + "timestamp": "2025-11-27T04:03:15.374929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555116, - "rtt_ms": 1.555116, + "rtt_ns": 1581750, + "rtt_ms": 1.58175, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.682975275Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:03:15.374947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654995, - "rtt_ms": 1.654995, + "rtt_ns": 1688667, + "rtt_ms": 1.688667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "18", - "timestamp": "2025-11-27T01:23:33.682996935Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:03:15.37502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679625, - "rtt_ms": 1.679625, + "rtt_ns": 1744500, + "rtt_ms": 1.7445, "checkpoint": 0, "vertex_from": "17", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:33.683007175Z" + "timestamp": "2025-11-27T04:03:15.375051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613566, - "rtt_ms": 1.613566, + "rtt_ns": 2349459, + "rtt_ms": 2.349459, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.683007185Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.375092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692415, - "rtt_ms": 1.692415, + "rtt_ns": 1930250, + "rtt_ms": 1.93025, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "334", - "timestamp": "2025-11-27T01:23:33.683021975Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:15.375093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028367, - "rtt_ms": 1.028367, + "rtt_ns": 2014958, + "rtt_ms": 2.014958, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "295", - "timestamp": "2025-11-27T01:23:33.683208144Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:03:15.375094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846075, - "rtt_ms": 1.846075, + "rtt_ns": 1370584, + "rtt_ms": 1.370584, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "428", - "timestamp": "2025-11-27T01:23:33.683351874Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.376464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310736, - "rtt_ms": 1.310736, + "rtt_ns": 1821666, + "rtt_ms": 1.821666, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.683583773Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:03:15.376751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327126, - "rtt_ms": 1.327126, + "rtt_ns": 2030625, + "rtt_ms": 2.030625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:33.683603393Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:03:15.37684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322366, - "rtt_ms": 1.322366, + "rtt_ns": 1992708, + "rtt_ms": 1.992708, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "47", - "timestamp": "2025-11-27T01:23:33.683615693Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.376897-08:00" }, { "operation": "add_edge", - "rtt_ns": 723808, - "rtt_ms": 0.723808, + "rtt_ns": 1857166, + "rtt_ms": 1.857166, "checkpoint": 0, "vertex_from": "17", "vertex_to": "301", - "timestamp": "2025-11-27T01:23:33.683701113Z" + "timestamp": "2025-11-27T04:03:15.37695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125556, - "rtt_ms": 1.125556, + "rtt_ns": 1961750, + "rtt_ms": 1.96175, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.684124181Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:15.376983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329886, - "rtt_ms": 1.329886, + "rtt_ns": 2080709, + "rtt_ms": 2.080709, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.684353221Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.376996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346416, - "rtt_ms": 1.346416, + "rtt_ns": 2047833, + "rtt_ms": 2.047833, "checkpoint": 0, "vertex_from": "17", "vertex_to": "108", - "timestamp": "2025-11-27T01:23:33.684356541Z" + "timestamp": "2025-11-27T04:03:15.377144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020047, - "rtt_ms": 1.020047, + "rtt_ns": 2700625, + "rtt_ms": 2.700625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:33.684373371Z" + "vertex_to": "47", + "timestamp": "2025-11-27T04:03:15.377752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226526, - "rtt_ms": 1.226526, + "rtt_ns": 2974833, + "rtt_ms": 2.974833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:33.68443611Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.377923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491255, - "rtt_ms": 1.491255, + "rtt_ns": 1580916, + "rtt_ms": 1.580916, "checkpoint": 0, "vertex_from": "17", "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.68450145Z" + "timestamp": "2025-11-27T04:03:15.378048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2848901, - "rtt_ms": 2.848901, + "rtt_ns": 1226542, + "rtt_ms": 1.226542, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:33.686467654Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:15.378067-08:00" }, { "operation": "add_edge", - "rtt_ns": 3031971, - "rtt_ms": 3.031971, + "rtt_ns": 1315875, + "rtt_ms": 1.315875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "236", - "timestamp": "2025-11-27T01:23:33.686617524Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:15.3783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320603, - "rtt_ms": 2.320603, + "rtt_ns": 1604667, + "rtt_ms": 1.604667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:33.686675504Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:15.378503-08:00" }, { "operation": "add_edge", - "rtt_ns": 2554113, - "rtt_ms": 2.554113, + "rtt_ns": 1607458, + "rtt_ms": 1.607458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:33.686679844Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:15.378604-08:00" }, { "operation": "add_edge", - "rtt_ns": 3010301, - "rtt_ms": 3.010301, + "rtt_ns": 1809417, + "rtt_ms": 1.809417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:33.686712874Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:03:15.37876-08:00" }, { "operation": "add_edge", - "rtt_ns": 2490692, - "rtt_ms": 2.490692, + "rtt_ns": 2123750, + "rtt_ms": 2.12375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:33.686849043Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.378876-08:00" }, { "operation": "add_edge", - "rtt_ns": 3301930, - "rtt_ms": 3.30193, + "rtt_ns": 1151250, + "rtt_ms": 1.15125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:33.686906763Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:15.3792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2606703, - "rtt_ms": 2.606703, + "rtt_ns": 1899917, + "rtt_ms": 1.899917, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:33.687045313Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:15.379654-08:00" }, { "operation": "add_edge", - "rtt_ns": 2726381, - "rtt_ms": 2.726381, + "rtt_ns": 2553500, + "rtt_ms": 2.5535, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.687102372Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:03:15.379698-08:00" }, { "operation": "add_edge", - "rtt_ns": 2642182, - "rtt_ms": 2.642182, + "rtt_ns": 1854750, + "rtt_ms": 1.85475, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:33.687145632Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:15.379779-08:00" }, { "operation": "add_edge", - "rtt_ns": 727228, - "rtt_ms": 0.727228, + "rtt_ns": 1232958, + "rtt_ms": 1.232958, "checkpoint": 0, "vertex_from": "17", "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.687196252Z" + "timestamp": "2025-11-27T04:03:15.37984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642445, - "rtt_ms": 1.642445, + "rtt_ns": 1179542, + "rtt_ms": 1.179542, "checkpoint": 0, "vertex_from": "17", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.688265339Z" + "timestamp": "2025-11-27T04:03:15.379941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713715, - "rtt_ms": 1.713715, + "rtt_ns": 1442667, + "rtt_ms": 1.442667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.688395229Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:15.379946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778474, - "rtt_ms": 1.778474, + "rtt_ns": 1678875, + "rtt_ms": 1.678875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.688455618Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:15.37998-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1929504, - "rtt_ms": 1.929504, + "operation": "add_edge", + "rtt_ns": 2021792, + "rtt_ms": 2.021792, "checkpoint": 0, - "vertex_from": "287", - "timestamp": "2025-11-27T01:23:33.688648518Z" + "vertex_from": "17", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.38009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848835, - "rtt_ms": 1.848835, + "rtt_ns": 1247417, + "rtt_ms": 1.247417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:33.688700288Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.380125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199233, - "rtt_ms": 2.199233, + "rtt_ns": 2091125, + "rtt_ms": 2.091125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:33.689108446Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.381294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188204, - "rtt_ms": 2.188204, + "rtt_ns": 1567250, + "rtt_ms": 1.56725, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:33.689335456Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:15.381408-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294643, - "rtt_ms": 2.294643, + "rtt_ns": 1473417, + "rtt_ms": 1.473417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.689341396Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:15.381421-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251174, - "rtt_ms": 2.251174, + "rtt_ns": 1334125, + "rtt_ms": 1.334125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "58", - "timestamp": "2025-11-27T01:23:33.689354686Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:15.381426-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163314, - "rtt_ms": 2.163314, + "rtt_ns": 1476667, + "rtt_ms": 1.476667, "checkpoint": 0, "vertex_from": "17", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.689360926Z" + "timestamp": "2025-11-27T04:03:15.381459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321746, - "rtt_ms": 1.321746, + "rtt_ns": 1871667, + "rtt_ms": 1.871667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:33.689588855Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:15.381571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209596, - "rtt_ms": 1.209596, + "rtt_ns": 1472875, + "rtt_ms": 1.472875, "checkpoint": 0, "vertex_from": "17", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.689605925Z" + "timestamp": "2025-11-27T04:03:15.381598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127426, - "rtt_ms": 1.127426, + "rtt_ns": 1822458, + "rtt_ms": 1.822458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "287", - "timestamp": "2025-11-27T01:23:33.689776914Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:15.381602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100596, - "rtt_ms": 1.100596, + "rtt_ns": 1686125, + "rtt_ms": 1.686125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:33.689802354Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:03:15.381628-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2008875, + "rtt_ms": 2.008875, + "checkpoint": 0, + "vertex_from": "287", + "timestamp": "2025-11-27T04:03:15.381664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347866, - "rtt_ms": 1.347866, + "rtt_ns": 1234333, + "rtt_ms": 1.234333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:33.689804924Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:03:15.382694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334506, - "rtt_ms": 1.334506, + "rtt_ns": 1289625, + "rtt_ms": 1.289625, "checkpoint": 0, "vertex_from": "17", "vertex_to": "344", - "timestamp": "2025-11-27T01:23:33.690443892Z" + "timestamp": "2025-11-27T04:03:15.382711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025817, - "rtt_ms": 1.025817, + "rtt_ns": 1470208, + "rtt_ms": 1.470208, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:33.690616342Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:15.382897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260696, - "rtt_ms": 1.260696, + "rtt_ns": 1355750, + "rtt_ms": 1.35575, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:33.690617932Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:15.382959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269086, - "rtt_ms": 1.269086, + "rtt_ns": 1642292, + "rtt_ms": 1.642292, "checkpoint": 0, "vertex_from": "17", "vertex_to": "837", - "timestamp": "2025-11-27T01:23:33.690633622Z" + "timestamp": "2025-11-27T04:03:15.383241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325276, - "rtt_ms": 1.325276, + "rtt_ns": 2016167, + "rtt_ms": 2.016167, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "453", - "timestamp": "2025-11-27T01:23:33.690668312Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:03:15.383311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375016, - "rtt_ms": 1.375016, + "rtt_ns": 1685542, + "rtt_ms": 1.685542, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:33.690711592Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.383316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152267, - "rtt_ms": 1.152267, + "rtt_ns": 1684291, + "rtt_ms": 1.684291, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.690761002Z" + "vertex_to": "287", + "timestamp": "2025-11-27T04:03:15.383349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614416, - "rtt_ms": 1.614416, + "rtt_ns": 2202875, + "rtt_ms": 2.202875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.69141893Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:15.383611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662885, - "rtt_ms": 1.662885, + "rtt_ns": 1008750, + "rtt_ms": 1.00875, "checkpoint": 0, "vertex_from": "17", "vertex_to": "612", - "timestamp": "2025-11-27T01:23:33.691469839Z" + "timestamp": "2025-11-27T04:03:15.383907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715605, - "rtt_ms": 1.715605, + "rtt_ns": 1296167, + "rtt_ms": 1.296167, "checkpoint": 0, "vertex_from": "17", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.691497929Z" + "timestamp": "2025-11-27T04:03:15.383991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211576, - "rtt_ms": 1.211576, + "rtt_ns": 1547833, + "rtt_ms": 1.547833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.691881918Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.38426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377886, - "rtt_ms": 1.377886, + "rtt_ns": 1318667, + "rtt_ms": 1.318667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.691995938Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:15.384278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625026, - "rtt_ms": 1.625026, + "rtt_ns": 1161541, + "rtt_ms": 1.161541, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:33.692071958Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:15.384404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467986, - "rtt_ms": 1.467986, + "rtt_ns": 1130958, + "rtt_ms": 1.130958, "checkpoint": 0, "vertex_from": "17", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.692103118Z" + "timestamp": "2025-11-27T04:03:15.384447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457175, - "rtt_ms": 1.457175, + "rtt_ns": 1161959, + "rtt_ms": 1.161959, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.692169987Z" + "vertex_to": "151", + "timestamp": "2025-11-27T04:03:15.384474-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3142458, + "rtt_ms": 3.142458, + "checkpoint": 0, + "vertex_from": "17", + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:15.384714-08:00" }, { "operation": "add_vertex", - "rtt_ns": 700488, - "rtt_ms": 0.700488, + "rtt_ns": 1221208, + "rtt_ms": 1.221208, "checkpoint": 0, "vertex_from": "876", - "timestamp": "2025-11-27T01:23:33.692200977Z" + "timestamp": "2025-11-27T04:03:15.385502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464385, - "rtt_ms": 1.464385, + "rtt_ns": 2935958, + "rtt_ms": 2.935958, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.692226997Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.386285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635445, - "rtt_ms": 1.635445, + "rtt_ns": 1912666, + "rtt_ms": 1.912666, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "151", - "timestamp": "2025-11-27T01:23:33.692255407Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:15.386318-08:00" }, { "operation": "add_edge", - "rtt_ns": 851018, - "rtt_ms": 0.851018, + "rtt_ns": 2170041, + "rtt_ms": 2.170041, "checkpoint": 0, "vertex_from": "17", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:33.692321747Z" + "timestamp": "2025-11-27T04:03:15.386431-08:00" }, { "operation": "add_edge", - "rtt_ns": 964217, - "rtt_ms": 0.964217, + "rtt_ns": 2558791, + "rtt_ms": 2.558791, "checkpoint": 0, "vertex_from": "17", "vertex_to": "355", - "timestamp": "2025-11-27T01:23:33.692384667Z" + "timestamp": "2025-11-27T04:03:15.386551-08:00" }, { "operation": "add_edge", - "rtt_ns": 942757, - "rtt_ms": 0.942757, + "rtt_ns": 1882416, + "rtt_ms": 1.882416, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.692940685Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:15.386599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104967, - "rtt_ms": 1.104967, + "rtt_ns": 3358417, + "rtt_ms": 3.358417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:33.692994455Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.386971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503165, - "rtt_ms": 1.503165, + "rtt_ns": 2724875, + "rtt_ms": 2.724875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.693576273Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.387174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487075, - "rtt_ms": 1.487075, + "rtt_ns": 1685583, + "rtt_ms": 1.685583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:33.693592123Z" + "vertex_to": "876", + "timestamp": "2025-11-27T04:03:15.387188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621636, - "rtt_ms": 1.621636, + "rtt_ns": 3173750, + "rtt_ms": 3.17375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "876", - "timestamp": "2025-11-27T01:23:33.693823143Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.387648-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233964, - "rtt_ms": 2.233964, + "rtt_ns": 1233542, + "rtt_ms": 1.233542, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.694405771Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:15.387665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2154664, - "rtt_ms": 2.154664, + "rtt_ns": 1544000, + "rtt_ms": 1.544, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:33.694478441Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.38783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2255344, - "rtt_ms": 2.255344, + "rtt_ns": 1651291, + "rtt_ms": 1.651291, "checkpoint": 0, "vertex_from": "17", "vertex_to": "869", - "timestamp": "2025-11-27T01:23:33.694483691Z" + "timestamp": "2025-11-27T04:03:15.38797-08:00" }, { "operation": "add_edge", - "rtt_ns": 2235834, - "rtt_ms": 2.235834, + "rtt_ns": 1455833, + "rtt_ms": 1.455833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:33.694493201Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:15.388008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721835, - "rtt_ms": 1.721835, + "rtt_ns": 1486917, + "rtt_ms": 1.486917, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:33.69466624Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.388087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781475, - "rtt_ms": 1.781475, + "rtt_ns": 1234750, + "rtt_ms": 1.23475, "checkpoint": 0, "vertex_from": "17", "vertex_to": "360", - "timestamp": "2025-11-27T01:23:33.69477791Z" + "timestamp": "2025-11-27T04:03:15.38841-08:00" }, { "operation": "add_edge", - "rtt_ns": 2479223, - "rtt_ms": 2.479223, + "rtt_ns": 1329375, + "rtt_ms": 1.329375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.69486495Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.388518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343747, - "rtt_ms": 1.343747, + "rtt_ns": 1583167, + "rtt_ms": 1.583167, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.69492187Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:15.388555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348527, - "rtt_ms": 1.348527, + "rtt_ns": 4610833, + "rtt_ms": 4.610833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "244", - "timestamp": "2025-11-27T01:23:33.69494275Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.38857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170916, - "rtt_ms": 1.170916, + "rtt_ns": 1322959, + "rtt_ms": 1.322959, "checkpoint": 0, "vertex_from": "17", "vertex_to": "387", - "timestamp": "2025-11-27T01:23:33.694996149Z" + "timestamp": "2025-11-27T04:03:15.388989-08:00" }, { "operation": "add_edge", - "rtt_ns": 801778, - "rtt_ms": 0.801778, + "rtt_ns": 1305417, + "rtt_ms": 1.305417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:33.695209139Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:03:15.389394-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 891375, + "rtt_ms": 0.891375, + "checkpoint": 0, + "vertex_from": "18", + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:15.389447-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1039750, + "rtt_ms": 1.03975, + "checkpoint": 0, + "vertex_from": "18", + "vertex_to": "565", + "timestamp": "2025-11-27T04:03:15.38961-08:00" }, { "operation": "add_edge", - "rtt_ns": 768678, - "rtt_ms": 0.768678, + "rtt_ns": 1277666, + "rtt_ms": 1.277666, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:33.695253839Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:15.389797-08:00" }, { "operation": "add_edge", - "rtt_ns": 877117, - "rtt_ms": 0.877117, + "rtt_ns": 2058000, + "rtt_ms": 2.058, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "19", - "timestamp": "2025-11-27T01:23:33.695371918Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:15.389889-08:00" }, { "operation": "add_edge", - "rtt_ns": 908857, - "rtt_ms": 0.908857, + "rtt_ns": 2641500, + "rtt_ms": 2.6415, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:33.695388618Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:03:15.390291-08:00" }, { "operation": "add_edge", - "rtt_ns": 746218, - "rtt_ms": 0.746218, + "rtt_ns": 2028542, + "rtt_ms": 2.028542, "checkpoint": 0, "vertex_from": "17", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:33.695414108Z" + "timestamp": "2025-11-27T04:03:15.390439-08:00" }, { "operation": "add_edge", - "rtt_ns": 703538, - "rtt_ms": 0.703538, + "rtt_ns": 2485500, + "rtt_ms": 2.4855, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:33.695483458Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:15.390459-08:00" }, { "operation": "add_edge", - "rtt_ns": 628058, - "rtt_ms": 0.628058, + "rtt_ns": 1559291, + "rtt_ms": 1.559291, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:33.695494228Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:15.39055-08:00" }, { "operation": "add_edge", - "rtt_ns": 865258, - "rtt_ms": 0.865258, + "rtt_ns": 1114875, + "rtt_ms": 1.114875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:33.695862927Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.390563-08:00" }, { "operation": "add_edge", - "rtt_ns": 965897, - "rtt_ms": 0.965897, + "rtt_ns": 1309166, + "rtt_ms": 1.309166, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:33.695888747Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:15.390704-08:00" }, { "operation": "add_edge", - "rtt_ns": 989437, - "rtt_ms": 0.989437, + "rtt_ns": 1217833, + "rtt_ms": 1.217833, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.695933337Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.390829-08:00" }, { "operation": "add_edge", - "rtt_ns": 806707, - "rtt_ms": 0.806707, + "rtt_ns": 1746500, + "rtt_ms": 1.7465, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.696062436Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:15.391544-08:00" }, { "operation": "add_edge", - "rtt_ns": 869667, - "rtt_ms": 0.869667, + "rtt_ns": 1693209, + "rtt_ms": 1.693209, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.696081426Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:15.391583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185177, - "rtt_ms": 1.185177, + "rtt_ns": 2136042, + "rtt_ms": 2.136042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:33.696558495Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:15.3927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301856, - "rtt_ms": 1.301856, + "rtt_ns": 2438583, + "rtt_ms": 2.438583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.696717004Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:15.392898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245566, - "rtt_ms": 1.245566, + "rtt_ns": 1326208, + "rtt_ms": 1.326208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:33.696741294Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.392911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355056, - "rtt_ms": 1.355056, + "rtt_ns": 2247333, + "rtt_ms": 2.247333, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:33.696745654Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:15.392952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285706, - "rtt_ms": 1.285706, + "rtt_ns": 2609125, + "rtt_ms": 2.609125, "checkpoint": 0, "vertex_from": "18", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.696774094Z" + "timestamp": "2025-11-27T04:03:15.393049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025987, - "rtt_ms": 1.025987, + "rtt_ns": 2854750, + "rtt_ms": 2.85475, "checkpoint": 0, "vertex_from": "18", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.696889994Z" + "timestamp": "2025-11-27T04:03:15.393407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063127, - "rtt_ms": 1.063127, + "rtt_ns": 2663167, + "rtt_ms": 2.663167, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:33.696952864Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.393493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600005, - "rtt_ms": 1.600005, + "rtt_ns": 3366250, + "rtt_ms": 3.36625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:33.697534462Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.39366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986794, - "rtt_ms": 1.986794, + "rtt_ns": 2200208, + "rtt_ms": 2.200208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.698051Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.393747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2123244, - "rtt_ms": 2.123244, + "rtt_ns": 5780250, + "rtt_ms": 5.78025, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.69820605Z" + "vertex_from": "17", + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:15.39379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577256, - "rtt_ms": 1.577256, + "rtt_ns": 1382709, + "rtt_ms": 1.382709, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.69832056Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:15.394084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066194, - "rtt_ms": 2.066194, + "rtt_ns": 1207166, + "rtt_ms": 1.207166, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:33.698842078Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:15.394257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372463, - "rtt_ms": 2.372463, + "rtt_ns": 1363625, + "rtt_ms": 1.363625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.698932338Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.394276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193044, - "rtt_ms": 2.193044, + "rtt_ns": 1528958, + "rtt_ms": 1.528958, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.698940048Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.39443-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103113, - "rtt_ms": 2.103113, + "rtt_ns": 1727000, + "rtt_ms": 1.727, "checkpoint": 0, "vertex_from": "18", "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.699057287Z" + "timestamp": "2025-11-27T04:03:15.395135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356623, - "rtt_ms": 2.356623, + "rtt_ns": 2256834, + "rtt_ms": 2.256834, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:33.699075357Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:15.39521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2218423, - "rtt_ms": 2.218423, + "rtt_ns": 1074791, + "rtt_ms": 1.074791, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:33.699109997Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.395352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589785, - "rtt_ms": 1.589785, + "rtt_ns": 1123250, + "rtt_ms": 1.12325, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:33.699127387Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.395382-08:00" }, { "operation": "add_edge", - "rtt_ns": 823267, - "rtt_ms": 0.823267, + "rtt_ns": 1612250, + "rtt_ms": 1.61225, "checkpoint": 0, "vertex_from": "18", "vertex_to": "277", - "timestamp": "2025-11-27T01:23:33.699145137Z" + "timestamp": "2025-11-27T04:03:15.395406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029547, - "rtt_ms": 1.029547, + "rtt_ns": 1964666, + "rtt_ms": 1.964666, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:33.699236987Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:15.395459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205247, - "rtt_ms": 1.205247, + "rtt_ns": 1874208, + "rtt_ms": 1.874208, "checkpoint": 0, "vertex_from": "18", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.699257517Z" + "timestamp": "2025-11-27T04:03:15.395535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052807, - "rtt_ms": 1.052807, + "rtt_ns": 1831625, + "rtt_ms": 1.831625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.699986975Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:15.395581-08:00" }, { "operation": "add_edge", - "rtt_ns": 967038, - "rtt_ms": 0.967038, + "rtt_ns": 1718750, + "rtt_ms": 1.71875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:33.700026355Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.395804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064127, - "rtt_ms": 1.064127, + "rtt_ns": 1353041, + "rtt_ms": 1.353041, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.700140724Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:15.396813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016647, - "rtt_ms": 1.016647, + "rtt_ns": 1962125, + "rtt_ms": 1.962125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:33.700145264Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.397173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072777, - "rtt_ms": 1.072777, + "rtt_ns": 1856125, + "rtt_ms": 1.856125, "checkpoint": 0, "vertex_from": "18", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.700219614Z" + "timestamp": "2025-11-27T04:03:15.39724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026667, - "rtt_ms": 1.026667, + "rtt_ns": 1702084, + "rtt_ms": 1.702084, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.700265574Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.397284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195357, - "rtt_ms": 1.195357, + "rtt_ns": 1918042, + "rtt_ms": 1.918042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.700307234Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.397326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366106, - "rtt_ms": 1.366106, + "rtt_ns": 2910625, + "rtt_ms": 2.910625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.700308984Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:03:15.397342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066977, - "rtt_ms": 1.066977, + "rtt_ns": 1811833, + "rtt_ms": 1.811833, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:33.700326694Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.397348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517906, - "rtt_ms": 1.517906, + "rtt_ns": 2273709, + "rtt_ms": 2.273709, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.700361574Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.39741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234216, - "rtt_ms": 1.234216, + "rtt_ns": 2158000, + "rtt_ms": 2.158, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.701263111Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:15.397511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144147, - "rtt_ms": 1.144147, + "rtt_ns": 1727459, + "rtt_ms": 1.727459, "checkpoint": 0, "vertex_from": "18", "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.701286071Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1067387, - "rtt_ms": 1.067387, - "checkpoint": 0, - "vertex_from": "426", - "timestamp": "2025-11-27T01:23:33.701289551Z" + "timestamp": "2025-11-27T04:03:15.397532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307966, - "rtt_ms": 1.307966, + "rtt_ns": 1134167, + "rtt_ms": 1.134167, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.701297261Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.397948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273866, - "rtt_ms": 1.273866, + "rtt_ns": 1423709, + "rtt_ms": 1.423709, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.70163747Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.398665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335006, - "rtt_ms": 1.335006, + "rtt_ns": 1435917, + "rtt_ms": 1.435917, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.70164424Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.398778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355126, - "rtt_ms": 1.355126, + "rtt_ns": 1449791, + "rtt_ms": 1.449791, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.70166571Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:15.398799-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1374326, - "rtt_ms": 1.374326, + "operation": "add_vertex", + "rtt_ns": 1624542, + "rtt_ms": 1.624542, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.70170269Z" + "vertex_from": "426", + "timestamp": "2025-11-27T04:03:15.398799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442446, - "rtt_ms": 1.442446, + "rtt_ns": 1405291, + "rtt_ms": 1.405291, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.70170941Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:15.398816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591425, - "rtt_ms": 1.591425, + "rtt_ns": 1659167, + "rtt_ms": 1.659167, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.701739139Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.398944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234086, - "rtt_ms": 1.234086, + "rtt_ns": 1781042, + "rtt_ms": 1.781042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "426", - "timestamp": "2025-11-27T01:23:33.702524137Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.399107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385696, - "rtt_ms": 1.385696, + "rtt_ns": 1684250, + "rtt_ms": 1.68425, "checkpoint": 0, "vertex_from": "18", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:33.702685667Z" + "timestamp": "2025-11-27T04:03:15.399217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461936, - "rtt_ms": 1.461936, + "rtt_ns": 1951250, + "rtt_ms": 1.95125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:33.702727397Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:15.399463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809464, - "rtt_ms": 1.809464, + "rtt_ns": 1556250, + "rtt_ms": 1.55625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:33.703096645Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:15.399505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210274, - "rtt_ms": 2.210274, + "rtt_ns": 1350042, + "rtt_ms": 1.350042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:33.703950823Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.400016-08:00" }, { "operation": "add_edge", - "rtt_ns": 2965851, - "rtt_ms": 2.965851, + "rtt_ns": 1833458, + "rtt_ms": 1.833458, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.704611971Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.400613-08:00" }, { "operation": "add_edge", - "rtt_ns": 2913361, - "rtt_ms": 2.913361, + "rtt_ns": 1491750, + "rtt_ms": 1.49175, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.704617661Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:15.40071-08:00" }, { "operation": "add_edge", - "rtt_ns": 2908031, - "rtt_ms": 2.908031, + "rtt_ns": 1924375, + "rtt_ms": 1.924375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.704620061Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.400726-08:00" }, { "operation": "add_edge", - "rtt_ns": 2988071, - "rtt_ms": 2.988071, + "rtt_ns": 1707666, + "rtt_ms": 1.707666, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.704627021Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:15.400816-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072964, - "rtt_ms": 2.072964, + "rtt_ns": 2031708, + "rtt_ms": 2.031708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:33.704761461Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:03:15.400831-08:00" }, { "operation": "add_edge", - "rtt_ns": 2247294, - "rtt_ms": 2.247294, + "rtt_ns": 2117583, + "rtt_ms": 2.117583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:33.704772791Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.400935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783545, - "rtt_ms": 1.783545, + "rtt_ns": 1502834, + "rtt_ms": 1.502834, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "20", - "timestamp": "2025-11-27T01:23:33.70488166Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.400966-08:00" }, { "operation": "add_edge", - "rtt_ns": 3215680, - "rtt_ms": 3.21568, + "rtt_ns": 2028292, + "rtt_ms": 2.028292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.70488371Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:15.400973-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192203, - "rtt_ms": 2.192203, + "rtt_ns": 1470166, + "rtt_ms": 1.470166, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.70492097Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:03:15.400976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391216, - "rtt_ms": 1.391216, + "rtt_ns": 1695750, + "rtt_ms": 1.69575, "checkpoint": 0, "vertex_from": "18", "vertex_to": "613", - "timestamp": "2025-11-27T01:23:33.705344809Z" + "timestamp": "2025-11-27T04:03:15.401712-08:00" }, { "operation": "add_edge", - "rtt_ns": 907588, - "rtt_ms": 0.907588, + "rtt_ns": 1304209, + "rtt_ms": 1.304209, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.705530279Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:15.402015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448186, - "rtt_ms": 1.448186, + "rtt_ns": 1635959, + "rtt_ms": 1.635959, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.706062667Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.402573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602886, - "rtt_ms": 1.602886, + "rtt_ns": 1617375, + "rtt_ms": 1.617375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.706222997Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:15.402594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505315, - "rtt_ms": 1.505315, + "rtt_ns": 1910208, + "rtt_ms": 1.910208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.706268586Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.402637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399156, - "rtt_ms": 1.399156, + "rtt_ns": 2059625, + "rtt_ms": 2.059625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:33.706322446Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.402673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717805, - "rtt_ms": 1.717805, + "rtt_ns": 1768292, + "rtt_ms": 1.768292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:33.706348206Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:15.402743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466746, - "rtt_ms": 1.466746, + "rtt_ns": 1791833, + "rtt_ms": 1.791833, "checkpoint": 0, "vertex_from": "18", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:33.706350456Z" + "timestamp": "2025-11-27T04:03:15.402759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486346, - "rtt_ms": 1.486346, + "rtt_ns": 2019000, + "rtt_ms": 2.019, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:33.706372036Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:15.402836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729115, - "rtt_ms": 1.729115, + "rtt_ns": 2091625, + "rtt_ms": 2.091625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.706504126Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.402924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774975, - "rtt_ms": 1.774975, + "rtt_ns": 2205291, + "rtt_ms": 2.205291, "checkpoint": 0, "vertex_from": "18", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.707122304Z" + "timestamp": "2025-11-27T04:03:15.40392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081457, - "rtt_ms": 1.081457, + "rtt_ns": 1096250, + "rtt_ms": 1.09625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.707145274Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.403933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280567, - "rtt_ms": 1.280567, + "rtt_ns": 1973959, + "rtt_ms": 1.973959, + "checkpoint": 0, + "vertex_from": "18", + "vertex_to": "28", + "timestamp": "2025-11-27T04:03:15.403991-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1392958, + "rtt_ms": 1.392958, "checkpoint": 0, "vertex_from": "18", "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.707550633Z" + "timestamp": "2025-11-27T04:03:15.404031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423796, - "rtt_ms": 1.423796, + "rtt_ns": 1501208, + "rtt_ms": 1.501208, "checkpoint": 0, "vertex_from": "18", "vertex_to": "944", - "timestamp": "2025-11-27T01:23:33.707649403Z" + "timestamp": "2025-11-27T04:03:15.404096-08:00" }, { "operation": "add_edge", - "rtt_ns": 2120934, - "rtt_ms": 2.120934, + "rtt_ns": 1492791, + "rtt_ms": 1.492791, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "28", - "timestamp": "2025-11-27T01:23:33.707652233Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:15.404167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343686, - "rtt_ms": 1.343686, + "rtt_ns": 1636208, + "rtt_ms": 1.636208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.707695532Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.404211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417896, - "rtt_ms": 1.417896, + "rtt_ns": 1492833, + "rtt_ms": 1.492833, "checkpoint": 0, "vertex_from": "18", "vertex_to": "432", - "timestamp": "2025-11-27T01:23:33.707767942Z" + "timestamp": "2025-11-27T04:03:15.404236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408676, - "rtt_ms": 1.408676, + "rtt_ns": 1494000, + "rtt_ms": 1.494, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.707783262Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:15.404254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777465, - "rtt_ms": 1.777465, + "rtt_ns": 1422958, + "rtt_ms": 1.422958, "checkpoint": 0, "vertex_from": "18", "vertex_to": "165", - "timestamp": "2025-11-27T01:23:33.708283771Z" + "timestamp": "2025-11-27T04:03:15.404347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408376, - "rtt_ms": 1.408376, + "rtt_ns": 1351291, + "rtt_ms": 1.351291, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.70853272Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.405519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395556, - "rtt_ms": 1.395556, + "rtt_ns": 1251417, + "rtt_ms": 1.251417, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "867", - "timestamp": "2025-11-27T01:23:33.70854243Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:15.4056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2220494, - "rtt_ms": 2.220494, + "rtt_ns": 1580875, + "rtt_ms": 1.580875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.70854445Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:15.405612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577455, - "rtt_ms": 1.577455, + "rtt_ns": 1605042, + "rtt_ms": 1.605042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.709129608Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:15.405702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376576, - "rtt_ms": 1.376576, + "rtt_ns": 1465625, + "rtt_ms": 1.465625, "checkpoint": 0, "vertex_from": "18", "vertex_to": "67", - "timestamp": "2025-11-27T01:23:33.709164728Z" + "timestamp": "2025-11-27T04:03:15.405702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511676, - "rtt_ms": 1.511676, + "rtt_ns": 1511167, + "rtt_ms": 1.511167, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.709210738Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:15.405723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456426, - "rtt_ms": 1.456426, + "rtt_ns": 1742416, + "rtt_ms": 1.742416, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:33.709225988Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.405734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069456, - "rtt_ms": 1.069456, + "rtt_ns": 1886125, + "rtt_ms": 1.886125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.709355087Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.405809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736944, - "rtt_ms": 1.736944, + "rtt_ns": 1891500, + "rtt_ms": 1.8915, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:33.709390547Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:03:15.405826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747054, - "rtt_ms": 1.747054, + "rtt_ns": 1599458, + "rtt_ms": 1.599458, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.709398657Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.405854-08:00" }, { "operation": "add_edge", - "rtt_ns": 2768782, - "rtt_ms": 2.768782, + "rtt_ns": 1552250, + "rtt_ms": 1.55225, "checkpoint": 0, "vertex_from": "18", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.711316342Z" + "timestamp": "2025-11-27T04:03:15.407072-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208273, - "rtt_ms": 2.208273, + "rtt_ns": 1453708, + "rtt_ms": 1.453708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:33.711373991Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:15.407157-08:00" }, { "operation": "add_edge", - "rtt_ns": 2869141, - "rtt_ms": 2.869141, + "rtt_ns": 1383334, + "rtt_ms": 1.383334, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:33.711404551Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.407239-08:00" }, { "operation": "add_edge", - "rtt_ns": 2584553, - "rtt_ms": 2.584553, + "rtt_ns": 1634292, + "rtt_ms": 1.634292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:33.71198646Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:15.407248-08:00" }, { "operation": "add_edge", - "rtt_ns": 3463130, - "rtt_ms": 3.46313, + "rtt_ns": 1559041, + "rtt_ms": 1.559041, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:33.71200981Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:15.407262-08:00" }, { "operation": "add_edge", - "rtt_ns": 2852131, - "rtt_ms": 2.852131, + "rtt_ns": 1573708, + "rtt_ms": 1.573708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.712081929Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:15.407308-08:00" }, { "operation": "add_edge", - "rtt_ns": 2742572, - "rtt_ms": 2.742572, + "rtt_ns": 1750500, + "rtt_ms": 1.7505, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.712134609Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:15.407351-08:00" }, { "operation": "add_edge", - "rtt_ns": 3078661, - "rtt_ms": 3.078661, + "rtt_ns": 1554625, + "rtt_ms": 1.554625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.712211059Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:15.407365-08:00" }, { "operation": "add_edge", - "rtt_ns": 3011741, - "rtt_ms": 3.011741, + "rtt_ns": 1646958, + "rtt_ms": 1.646958, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:33.712224029Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.407371-08:00" }, { "operation": "add_edge", - "rtt_ns": 2911082, - "rtt_ms": 2.911082, + "rtt_ns": 1599459, + "rtt_ms": 1.599459, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:33.712267449Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:15.407426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495756, - "rtt_ms": 1.495756, + "rtt_ns": 2044792, + "rtt_ms": 2.044792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "22", - "timestamp": "2025-11-27T01:23:33.712902767Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:15.409295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945194, - "rtt_ms": 1.945194, + "rtt_ns": 2341750, + "rtt_ms": 2.34175, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.713263746Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:03:15.409415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023994, - "rtt_ms": 2.023994, + "rtt_ns": 2054792, + "rtt_ms": 2.054792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "21", - "timestamp": "2025-11-27T01:23:33.713399425Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.409426-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1490985, - "rtt_ms": 1.490985, + "rtt_ns": 2190542, + "rtt_ms": 2.190542, "checkpoint": 0, "vertex_from": "717", - "timestamp": "2025-11-27T01:23:33.713483285Z" + "timestamp": "2025-11-27T04:03:15.409434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269436, - "rtt_ms": 1.269436, + "rtt_ns": 2180000, + "rtt_ms": 2.18, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.713538425Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:15.409489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539025, - "rtt_ms": 1.539025, + "rtt_ns": 2096292, + "rtt_ms": 2.096292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.713552315Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:15.409523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346836, - "rtt_ms": 1.346836, + "rtt_ns": 2209334, + "rtt_ms": 2.209334, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.713559525Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:15.409575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447736, - "rtt_ms": 1.447736, + "rtt_ns": 2423250, + "rtt_ms": 2.42325, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:33.713584145Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:03:15.409581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384686, - "rtt_ms": 1.384686, + "rtt_ns": 2275875, + "rtt_ms": 2.275875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:33.713610635Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.409628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573426, - "rtt_ms": 1.573426, + "rtt_ns": 2498000, + "rtt_ms": 2.498, "checkpoint": 0, "vertex_from": "18", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.713657015Z" + "timestamp": "2025-11-27T04:03:15.409761-08:00" }, { "operation": "add_edge", - "rtt_ns": 754558, - "rtt_ms": 0.754558, + "rtt_ns": 1150875, + "rtt_ms": 1.150875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:33.713659135Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:03:15.410585-08:00" }, { "operation": "add_edge", - "rtt_ns": 855217, - "rtt_ms": 0.855217, + "rtt_ns": 1312541, + "rtt_ms": 1.312541, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:33.714120773Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.41073-08:00" }, { "operation": "add_edge", - "rtt_ns": 720798, - "rtt_ms": 0.720798, + "rtt_ns": 1301250, + "rtt_ms": 1.30125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.714121333Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.410791-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1449166, + "rtt_ms": 1.449166, + "checkpoint": 0, + "vertex_from": "18", + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:15.410973-08:00" }, { "operation": "add_edge", - "rtt_ns": 712828, - "rtt_ms": 0.712828, + "rtt_ns": 1565917, + "rtt_ms": 1.565917, "checkpoint": 0, "vertex_from": "18", "vertex_to": "900", - "timestamp": "2025-11-27T01:23:33.714254613Z" + "timestamp": "2025-11-27T04:03:15.410993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189366, - "rtt_ms": 1.189366, + "rtt_ns": 1368250, + "rtt_ms": 1.36825, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.714742971Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:03:15.410997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287776, - "rtt_ms": 1.287776, + "rtt_ns": 1703625, + "rtt_ms": 1.703625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:33.714899661Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:15.410999-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1338096, - "rtt_ms": 1.338096, + "rtt_ns": 1443375, + "rtt_ms": 1.443375, "checkpoint": 0, "vertex_from": "1002", - "timestamp": "2025-11-27T01:23:33.714929131Z" + "timestamp": "2025-11-27T04:03:15.41102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568635, - "rtt_ms": 1.568635, + "rtt_ns": 1581583, + "rtt_ms": 1.581583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "717", - "timestamp": "2025-11-27T01:23:33.71505245Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:15.411164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436845, - "rtt_ms": 1.436845, + "rtt_ns": 1402625, + "rtt_ms": 1.402625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "918", - "timestamp": "2025-11-27T01:23:33.71509502Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.411166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547775, - "rtt_ms": 1.547775, + "rtt_ns": 844542, + "rtt_ms": 0.844542, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:33.71510858Z" + "vertex_to": "1002", + "timestamp": "2025-11-27T04:03:15.411865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528005, - "rtt_ms": 1.528005, + "rtt_ns": 1488500, + "rtt_ms": 1.4885, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.7151883Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:15.41228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690895, - "rtt_ms": 1.690895, + "rtt_ns": 1425708, + "rtt_ms": 1.425708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.715813468Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:15.412399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071887, - "rtt_ms": 1.071887, + "rtt_ns": 1475291, + "rtt_ms": 1.475291, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:33.715816088Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.412474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567275, - "rtt_ms": 1.567275, + "rtt_ns": 1888958, + "rtt_ms": 1.888958, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:33.715823458Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.412476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732395, - "rtt_ms": 1.732395, + "rtt_ns": 1908792, + "rtt_ms": 1.908792, "checkpoint": 0, "vertex_from": "18", "vertex_to": "44", - "timestamp": "2025-11-27T01:23:33.715855488Z" + "timestamp": "2025-11-27T04:03:15.412641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264016, - "rtt_ms": 1.264016, + "rtt_ns": 1648667, + "rtt_ms": 1.648667, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.716165217Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:15.412814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347246, - "rtt_ms": 1.347246, + "rtt_ns": 1935292, + "rtt_ms": 1.935292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "1002", - "timestamp": "2025-11-27T01:23:33.716276697Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:15.412936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311627, - "rtt_ms": 1.311627, + "rtt_ns": 2004416, + "rtt_ms": 2.004416, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:33.716421647Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:15.413172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625075, - "rtt_ms": 1.625075, + "rtt_ns": 2212500, + "rtt_ms": 2.2125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:33.716814435Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.413207-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306634, - "rtt_ms": 2.306634, + "rtt_ns": 1495708, + "rtt_ms": 1.495708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:33.717403834Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:15.413361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2553533, - "rtt_ms": 2.553533, + "rtt_ns": 1545375, + "rtt_ms": 1.545375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.717607273Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:15.413829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839115, - "rtt_ms": 1.839115, + "rtt_ns": 1192125, + "rtt_ms": 1.192125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:33.717653923Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:03:15.413834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2378494, - "rtt_ms": 2.378494, + "rtt_ns": 1370500, + "rtt_ms": 1.3705, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:33.718195752Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:15.413848-08:00" }, { "operation": "add_edge", - "rtt_ns": 2489553, - "rtt_ms": 2.489553, + "rtt_ns": 1528542, + "rtt_ms": 1.528542, "checkpoint": 0, "vertex_from": "18", "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.718314301Z" + "timestamp": "2025-11-27T04:03:15.41393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2496323, - "rtt_ms": 2.496323, + "rtt_ns": 1468584, + "rtt_ms": 1.468584, "checkpoint": 0, "vertex_from": "18", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.718354671Z" + "timestamp": "2025-11-27T04:03:15.413944-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029064, - "rtt_ms": 2.029064, + "rtt_ns": 2200542, + "rtt_ms": 2.200542, "checkpoint": 0, "vertex_from": "18", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.718451951Z" + "timestamp": "2025-11-27T04:03:15.415015-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210804, - "rtt_ms": 2.210804, + "rtt_ns": 2491875, + "rtt_ms": 2.491875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "826", - "timestamp": "2025-11-27T01:23:33.718488641Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:15.415429-08:00" }, { "operation": "add_edge", - "rtt_ns": 2373004, - "rtt_ms": 2.373004, + "rtt_ns": 1656250, + "rtt_ms": 1.65625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:33.718539671Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:15.415491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735036, - "rtt_ms": 1.735036, + "rtt_ns": 2323583, + "rtt_ms": 2.323583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.718552091Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:15.415532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354386, - "rtt_ms": 1.354386, + "rtt_ns": 2389584, + "rtt_ms": 2.389584, "checkpoint": 0, "vertex_from": "18", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:33.71876035Z" + "timestamp": "2025-11-27T04:03:15.415564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142737, - "rtt_ms": 1.142737, + "rtt_ns": 2254708, + "rtt_ms": 2.254708, "checkpoint": 0, "vertex_from": "18", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:33.71879759Z" + "timestamp": "2025-11-27T04:03:15.415618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294297, - "rtt_ms": 1.294297, + "rtt_ns": 1714667, + "rtt_ms": 1.714667, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.71890287Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.41566-08:00" }, { "operation": "add_edge", - "rtt_ns": 925737, - "rtt_ms": 0.925737, + "rtt_ns": 1749458, + "rtt_ms": 1.749458, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.719122969Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:15.41568-08:00" }, { "operation": "add_edge", - "rtt_ns": 827268, - "rtt_ms": 0.827268, + "rtt_ns": 1924250, + "rtt_ms": 1.92425, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.719143659Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:15.415773-08:00" }, { "operation": "add_edge", - "rtt_ns": 849137, - "rtt_ms": 0.849137, + "rtt_ns": 1958250, + "rtt_ms": 1.95825, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:33.719302328Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.415788-08:00" }, { - "operation": "add_edge", - "rtt_ns": 866877, - "rtt_ms": 0.866877, + "operation": "add_vertex", + "rtt_ns": 1429667, + "rtt_ms": 1.429667, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.719407698Z" + "vertex_from": "937", + "timestamp": "2025-11-27T04:03:15.416923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073557, - "rtt_ms": 1.073557, + "rtt_ns": 1471416, + "rtt_ms": 1.471416, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:33.719429718Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:15.417004-08:00" }, { "operation": "add_edge", - "rtt_ns": 875727, - "rtt_ms": 0.875727, + "rtt_ns": 1230042, + "rtt_ms": 1.230042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:33.719429898Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:15.417004-08:00" }, { "operation": "add_edge", - "rtt_ns": 940557, - "rtt_ms": 0.940557, + "rtt_ns": 1326333, + "rtt_ms": 1.326333, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.719432978Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:15.417007-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 702898, - "rtt_ms": 0.702898, + "operation": "add_edge", + "rtt_ns": 1730417, + "rtt_ms": 1.730417, "checkpoint": 0, - "vertex_from": "937", - "timestamp": "2025-11-27T01:23:33.719467428Z" + "vertex_from": "18", + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:15.41716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094397, - "rtt_ms": 1.094397, + "rtt_ns": 1596125, + "rtt_ms": 1.596125, "checkpoint": 0, "vertex_from": "18", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:33.720220436Z" + "timestamp": "2025-11-27T04:03:15.417216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713205, - "rtt_ms": 1.713205, + "rtt_ns": 2216417, + "rtt_ms": 2.216417, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:33.720617885Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.417232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194447, - "rtt_ms": 1.194447, + "rtt_ns": 1759834, + "rtt_ms": 1.759834, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:33.720626925Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:15.417324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487816, - "rtt_ms": 1.487816, + "rtt_ns": 1675750, + "rtt_ms": 1.67575, "checkpoint": 0, "vertex_from": "18", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.720632795Z" + "timestamp": "2025-11-27T04:03:15.417336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207087, - "rtt_ms": 1.207087, + "rtt_ns": 1658417, + "rtt_ms": 1.658417, "checkpoint": 0, "vertex_from": "18", "vertex_to": "595", - "timestamp": "2025-11-27T01:23:33.720639115Z" + "timestamp": "2025-11-27T04:03:15.417447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281466, - "rtt_ms": 1.281466, + "rtt_ns": 1475208, + "rtt_ms": 1.475208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:33.720691054Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.41856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271956, - "rtt_ms": 1.271956, + "rtt_ns": 1267334, + "rtt_ms": 1.267334, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:33.720708624Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:15.418592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992894, - "rtt_ms": 1.992894, + "rtt_ns": 1320458, + "rtt_ms": 1.320458, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:33.720793224Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:03:15.418657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675806, - "rtt_ms": 1.675806, + "rtt_ns": 1508042, + "rtt_ms": 1.508042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:33.720980514Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:15.418669-08:00" }, { "operation": "add_edge", - "rtt_ns": 3168571, - "rtt_ms": 3.168571, + "rtt_ns": 1678750, + "rtt_ms": 1.67875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "937", - "timestamp": "2025-11-27T01:23:33.722636709Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:15.418685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360126, - "rtt_ms": 1.360126, + "rtt_ns": 1501666, + "rtt_ms": 1.501666, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:33.723165817Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1425976, - "rtt_ms": 1.425976, - "checkpoint": 0, - "vertex_from": "791", - "timestamp": "2025-11-27T01:23:33.723227497Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:15.418735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182447, - "rtt_ms": 1.182447, + "rtt_ns": 1829375, + "rtt_ms": 1.829375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "865", - "timestamp": "2025-11-27T01:23:33.723320757Z" + "vertex_to": "937", + "timestamp": "2025-11-27T04:03:15.418753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306696, - "rtt_ms": 1.306696, + "rtt_ns": 1747917, + "rtt_ms": 1.747917, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:33.723370046Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:15.418754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638565, - "rtt_ms": 1.638565, + "rtt_ns": 1437792, + "rtt_ms": 1.437792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.723422236Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:15.418885-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1341046, - "rtt_ms": 1.341046, + "operation": "add_vertex", + "rtt_ns": 1682458, + "rtt_ms": 1.682458, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:33.723466316Z" + "vertex_from": "791", + "timestamp": "2025-11-27T04:03:15.418901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420486, - "rtt_ms": 1.420486, + "rtt_ns": 1432500, + "rtt_ms": 1.4325, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "369", - "timestamp": "2025-11-27T01:23:33.723521066Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.420103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106476, - "rtt_ms": 1.106476, + "rtt_ns": 1750375, + "rtt_ms": 1.750375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "342", - "timestamp": "2025-11-27T01:23:33.723746255Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:03:15.420344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658015, - "rtt_ms": 1.658015, + "rtt_ns": 1841125, + "rtt_ms": 1.841125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:33.723774265Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:15.420402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725205, - "rtt_ms": 1.725205, + "rtt_ns": 1783917, + "rtt_ms": 1.783917, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.723802585Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:15.420469-08:00" }, { "operation": "add_edge", - "rtt_ns": 896497, - "rtt_ms": 0.896497, + "rtt_ns": 1830500, + "rtt_ms": 1.8305, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.724064294Z" + "vertex_from": "19", + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.420717-08:00" }, { "operation": "add_edge", - "rtt_ns": 930967, - "rtt_ms": 0.930967, + "rtt_ns": 2065833, + "rtt_ms": 2.065833, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "791", - "timestamp": "2025-11-27T01:23:33.724159024Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.42082-08:00" }, { "operation": "add_edge", - "rtt_ns": 879637, - "rtt_ms": 0.879637, + "rtt_ns": 2198625, + "rtt_ms": 2.198625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:33.724203404Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:03:15.420857-08:00" }, { "operation": "add_edge", - "rtt_ns": 790028, - "rtt_ms": 0.790028, + "rtt_ns": 1958250, + "rtt_ms": 1.95825, "checkpoint": 0, - "vertex_from": "19", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.724312674Z" + "vertex_from": "18", + "vertex_to": "791", + "timestamp": "2025-11-27T04:03:15.42086-08:00" }, { "operation": "add_edge", - "rtt_ns": 942848, - "rtt_ms": 0.942848, + "rtt_ns": 2133542, + "rtt_ms": 2.133542, "checkpoint": 0, "vertex_from": "18", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.724314304Z" + "timestamp": "2025-11-27T04:03:15.42087-08:00" }, { "operation": "add_edge", - "rtt_ns": 858298, - "rtt_ms": 0.858298, + "rtt_ns": 2118416, + "rtt_ms": 2.118416, "checkpoint": 0, "vertex_from": "18", "vertex_to": "226", - "timestamp": "2025-11-27T01:23:33.724329364Z" + "timestamp": "2025-11-27T04:03:15.420873-08:00" }, { "operation": "add_edge", - "rtt_ns": 914257, - "rtt_ms": 0.914257, + "rtt_ns": 1235500, + "rtt_ms": 1.2355, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.724338043Z" + "vertex_from": "19", + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:15.421706-08:00" }, { "operation": "add_edge", - "rtt_ns": 683888, - "rtt_ms": 0.683888, + "rtt_ns": 1479791, + "rtt_ms": 1.479791, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.724431683Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:03:15.421824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335306, - "rtt_ms": 1.335306, + "rtt_ns": 1846708, + "rtt_ms": 1.846708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.725139071Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.421952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403886, - "rtt_ms": 1.403886, + "rtt_ns": 1586208, + "rtt_ms": 1.586208, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "437", - "timestamp": "2025-11-27T01:23:33.725179251Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.42199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042217, - "rtt_ms": 1.042217, + "rtt_ns": 1158500, + "rtt_ms": 1.1585, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:33.725247351Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.422016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124367, - "rtt_ms": 1.124367, + "rtt_ns": 1317750, + "rtt_ms": 1.31775, "checkpoint": 0, "vertex_from": "19", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:33.725284931Z" + "timestamp": "2025-11-27T04:03:15.422035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317586, - "rtt_ms": 1.317586, + "rtt_ns": 1732708, + "rtt_ms": 1.732708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:33.7253838Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.422607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547665, - "rtt_ms": 1.547665, + "rtt_ns": 1897708, + "rtt_ms": 1.897708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.725865429Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:15.422734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593465, - "rtt_ms": 1.593465, + "rtt_ns": 1031125, + "rtt_ms": 1.031125, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.725908819Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.422857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701885, - "rtt_ms": 1.701885, + "rtt_ns": 2011792, + "rtt_ms": 2.011792, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.726042158Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:15.422883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633385, - "rtt_ms": 1.633385, + "rtt_ns": 2169084, + "rtt_ms": 2.169084, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.726067598Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:15.42303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817055, - "rtt_ms": 1.817055, + "rtt_ns": 1339667, + "rtt_ms": 1.339667, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:33.726149488Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:15.423046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378326, - "rtt_ms": 1.378326, + "rtt_ns": 1745541, + "rtt_ms": 1.745541, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.726519467Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.423698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146567, - "rtt_ms": 1.146567, + "rtt_ns": 1680250, + "rtt_ms": 1.68025, "checkpoint": 0, "vertex_from": "19", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.726531597Z" + "timestamp": "2025-11-27T04:03:15.423718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330756, - "rtt_ms": 1.330756, + "rtt_ns": 1874041, + "rtt_ms": 1.874041, "checkpoint": 0, "vertex_from": "19", "vertex_to": "177", - "timestamp": "2025-11-27T01:23:33.726581017Z" + "timestamp": "2025-11-27T04:03:15.423865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427156, - "rtt_ms": 1.427156, + "rtt_ns": 1882708, + "rtt_ms": 1.882708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.726608047Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.4239-08:00" }, { "operation": "add_edge", - "rtt_ns": 769727, - "rtt_ms": 0.769727, + "rtt_ns": 1065250, + "rtt_ms": 1.06525, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.726679916Z" + "vertex_to": "366", + "timestamp": "2025-11-27T04:03:15.42395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394075, - "rtt_ms": 1.394075, + "rtt_ns": 1417917, + "rtt_ms": 1.417917, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.726680276Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.424275-08:00" }, { "operation": "add_edge", - "rtt_ns": 881337, - "rtt_ms": 0.881337, + "rtt_ns": 1720333, + "rtt_ms": 1.720333, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.726747626Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:15.424456-08:00" }, { "operation": "add_edge", - "rtt_ns": 633268, - "rtt_ms": 0.633268, + "rtt_ns": 1429708, + "rtt_ms": 1.429708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:33.726784196Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.424476-08:00" }, { "operation": "add_edge", - "rtt_ns": 743318, - "rtt_ms": 0.743318, + "rtt_ns": 1997541, + "rtt_ms": 1.997541, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.726786996Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.424606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203007, - "rtt_ms": 1.203007, + "rtt_ns": 2167625, + "rtt_ms": 2.167625, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "366", - "timestamp": "2025-11-27T01:23:33.727272945Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:15.425199-08:00" }, { "operation": "add_edge", - "rtt_ns": 979237, - "rtt_ms": 0.979237, + "rtt_ns": 1362042, + "rtt_ms": 1.362042, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:33.727561934Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:15.425826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571395, - "rtt_ms": 1.571395, + "rtt_ns": 2159084, + "rtt_ms": 2.159084, "checkpoint": 0, "vertex_from": "19", "vertex_to": "86", - "timestamp": "2025-11-27T01:23:33.728104492Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1857945, - "rtt_ms": 1.857945, - "checkpoint": 0, - "vertex_from": "19", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.728378672Z" + "timestamp": "2025-11-27T04:03:15.425858-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192724, - "rtt_ms": 2.192724, + "rtt_ns": 1931959, + "rtt_ms": 1.931959, "checkpoint": 0, "vertex_from": "19", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.72887449Z" + "timestamp": "2025-11-27T04:03:15.425882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173404, - "rtt_ms": 2.173404, + "rtt_ns": 2329958, + "rtt_ms": 2.329958, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.72896188Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:15.426049-08:00" }, { "operation": "add_edge", - "rtt_ns": 2280324, - "rtt_ms": 2.280324, + "rtt_ns": 2156625, + "rtt_ms": 2.156625, "checkpoint": 0, "vertex_from": "19", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:33.7289619Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2363743, - "rtt_ms": 2.363743, - "checkpoint": 0, - "vertex_from": "19", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.72897337Z" + "timestamp": "2025-11-27T04:03:15.426057-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231744, - "rtt_ms": 2.231744, + "rtt_ns": 1787666, + "rtt_ms": 1.787666, "checkpoint": 0, "vertex_from": "19", "vertex_to": "267", - "timestamp": "2025-11-27T01:23:33.7289802Z" + "timestamp": "2025-11-27T04:03:15.426064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428043, - "rtt_ms": 2.428043, + "rtt_ns": 2215792, + "rtt_ms": 2.215792, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:33.729213639Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.426081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154417, - "rtt_ms": 1.154417, + "rtt_ns": 1627375, + "rtt_ms": 1.627375, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:33.729260219Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.426105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013364, - "rtt_ms": 2.013364, + "rtt_ns": 1496834, + "rtt_ms": 1.496834, "checkpoint": 0, "vertex_from": "19", "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.729289979Z" + "timestamp": "2025-11-27T04:03:15.426124-08:00" }, { "operation": "add_edge", - "rtt_ns": 928767, - "rtt_ms": 0.928767, + "rtt_ns": 1870416, + "rtt_ms": 1.870416, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.729308679Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.42707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777305, - "rtt_ms": 1.777305, + "rtt_ns": 1333041, + "rtt_ms": 1.333041, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.729341029Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.427192-08:00" }, { "operation": "add_edge", - "rtt_ns": 580219, - "rtt_ms": 0.580219, + "rtt_ns": 1745042, + "rtt_ms": 1.745042, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.729456679Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.427827-08:00" }, { "operation": "add_edge", - "rtt_ns": 572938, - "rtt_ms": 0.572938, + "rtt_ns": 2065334, + "rtt_ms": 2.065334, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.729537368Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:15.427892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133847, - "rtt_ms": 1.133847, + "rtt_ns": 1875292, + "rtt_ms": 1.875292, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.730115517Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:15.42794-08:00" }, { "operation": "add_edge", - "rtt_ns": 804478, - "rtt_ms": 0.804478, + "rtt_ns": 1943875, + "rtt_ms": 1.943875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.730115617Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:15.428068-08:00" }, { "operation": "add_edge", - "rtt_ns": 857697, - "rtt_ms": 0.857697, + "rtt_ns": 2022167, + "rtt_ms": 2.022167, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.730200896Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.428085-08:00" }, { "operation": "add_edge", - "rtt_ns": 926557, - "rtt_ms": 0.926557, + "rtt_ns": 2165541, + "rtt_ms": 2.165541, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:33.730217716Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:15.428271-08:00" }, { "operation": "add_edge", - "rtt_ns": 956017, - "rtt_ms": 0.956017, + "rtt_ns": 2697750, + "rtt_ms": 2.69775, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.730217836Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:15.428581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009787, - "rtt_ms": 1.009787, + "rtt_ns": 1725667, + "rtt_ms": 1.725667, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:33.730226606Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:15.428797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264186, - "rtt_ms": 1.264186, + "rtt_ns": 1019750, + "rtt_ms": 1.01975, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:33.730238916Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.428848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355266, - "rtt_ms": 1.355266, + "rtt_ns": 2820375, + "rtt_ms": 2.820375, "checkpoint": 0, "vertex_from": "19", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.730318626Z" + "timestamp": "2025-11-27T04:03:15.42887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392406, - "rtt_ms": 1.392406, + "rtt_ns": 1708625, + "rtt_ms": 1.708625, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "870", - "timestamp": "2025-11-27T01:23:33.730850415Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.428903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452366, - "rtt_ms": 1.452366, + "rtt_ns": 1146041, + "rtt_ms": 1.146041, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.730991084Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.429232-08:00" }, { "operation": "add_edge", - "rtt_ns": 994168, - "rtt_ms": 0.994168, + "rtt_ns": 1276625, + "rtt_ms": 1.276625, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.731234264Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.429858-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018765, - "rtt_ms": 2.018765, + "rtt_ns": 1818958, + "rtt_ms": 1.818958, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.732237691Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:15.429888-08:00" }, { "operation": "add_edge", - "rtt_ns": 2282893, - "rtt_ms": 2.282893, + "rtt_ns": 2357792, + "rtt_ms": 2.357792, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:33.73240032Z" + "vertex_to": "870", + "timestamp": "2025-11-27T04:03:15.430251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2658023, - "rtt_ms": 2.658023, + "rtt_ns": 1435666, + "rtt_ms": 1.435666, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.732877209Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:15.430312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2769962, - "rtt_ms": 2.769962, + "rtt_ns": 1528833, + "rtt_ms": 1.528833, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.732972358Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.430433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2680092, - "rtt_ms": 2.680092, + "rtt_ns": 2517875, + "rtt_ms": 2.517875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.732999978Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.430459-08:00" }, { "operation": "add_edge", - "rtt_ns": 3285801, - "rtt_ms": 3.285801, + "rtt_ns": 1702792, + "rtt_ms": 1.702792, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.733513847Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.4305-08:00" }, { "operation": "add_edge", - "rtt_ns": 3474770, - "rtt_ms": 3.47477, + "rtt_ns": 1302625, + "rtt_ms": 1.302625, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.733592647Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:15.430536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205007, - "rtt_ms": 1.205007, + "rtt_ns": 1687500, + "rtt_ms": 1.6875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:33.733606557Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.430536-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372323, - "rtt_ms": 2.372323, + "rtt_ns": 2292791, + "rtt_ms": 2.292791, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "43", - "timestamp": "2025-11-27T01:23:33.733607467Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:03:15.430565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2769941, - "rtt_ms": 2.769941, + "rtt_ns": 1449541, + "rtt_ms": 1.449541, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:33.733621726Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.431309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451255, - "rtt_ms": 1.451255, + "rtt_ns": 1747584, + "rtt_ms": 1.747584, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "26", - "timestamp": "2025-11-27T01:23:33.733690186Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:03:15.431638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2711282, - "rtt_ms": 2.711282, + "rtt_ns": 1479542, + "rtt_ms": 1.479542, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.733703206Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:03:15.431731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562065, - "rtt_ms": 1.562065, + "rtt_ns": 1474666, + "rtt_ms": 1.474666, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "938", - "timestamp": "2025-11-27T01:23:33.734440994Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:15.431788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478936, - "rtt_ms": 1.478936, + "rtt_ns": 1365791, + "rtt_ms": 1.365791, "checkpoint": 0, "vertex_from": "19", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.734480174Z" + "timestamp": "2025-11-27T04:03:15.431867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568916, - "rtt_ms": 1.568916, + "rtt_ns": 1408833, + "rtt_ms": 1.408833, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:33.734542474Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.431978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056386, - "rtt_ms": 1.056386, + "rtt_ns": 1555375, + "rtt_ms": 1.555375, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:33.734664543Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:03:15.431991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107426, - "rtt_ms": 1.107426, + "rtt_ns": 1457167, + "rtt_ms": 1.457167, "checkpoint": 0, "vertex_from": "19", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.734701343Z" + "timestamp": "2025-11-27T04:03:15.431994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139616, - "rtt_ms": 1.139616, + "rtt_ns": 1545166, + "rtt_ms": 1.545166, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.734747593Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:15.432005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144267, - "rtt_ms": 1.144267, + "rtt_ns": 1554125, + "rtt_ms": 1.554125, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:33.734767223Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:15.43209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367606, - "rtt_ms": 1.367606, + "rtt_ns": 1793834, + "rtt_ms": 1.793834, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:33.734883313Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:15.433103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432546, - "rtt_ms": 1.432546, + "rtt_ns": 1526417, + "rtt_ms": 1.526417, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.735124142Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:15.433315-08:00" }, { "operation": "add_edge", - "rtt_ns": 759248, - "rtt_ms": 0.759248, + "rtt_ns": 1540416, + "rtt_ms": 1.540416, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:33.735201052Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:15.433631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527286, - "rtt_ms": 1.527286, + "rtt_ns": 2106792, + "rtt_ms": 2.106792, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.735231182Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:15.433746-08:00" }, { "operation": "add_edge", - "rtt_ns": 841237, - "rtt_ms": 0.841237, + "rtt_ns": 1757833, + "rtt_ms": 1.757833, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.735384711Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:15.433763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540185, - "rtt_ms": 1.540185, + "rtt_ns": 1978125, + "rtt_ms": 1.978125, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.736021309Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:15.433846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508656, - "rtt_ms": 1.508656, + "rtt_ns": 1886750, + "rtt_ms": 1.88675, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.736174239Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.433868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551056, - "rtt_ms": 1.551056, + "rtt_ns": 2154625, + "rtt_ms": 2.154625, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.736259139Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.433887-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044294, - "rtt_ms": 2.044294, + "rtt_ns": 2164750, + "rtt_ms": 2.16475, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:33.736812497Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.434157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813414, - "rtt_ms": 1.813414, + "rtt_ns": 2249917, + "rtt_ms": 2.249917, "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.737016506Z" + "vertex_from": "19", + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.434244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155393, - "rtt_ms": 2.155393, + "rtt_ns": 1634667, + "rtt_ms": 1.634667, "checkpoint": 0, "vertex_from": "19", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.737039566Z" + "timestamp": "2025-11-27T04:03:15.43495-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291093, - "rtt_ms": 2.291093, + "rtt_ns": 1883333, + "rtt_ms": 1.883333, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.737039916Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:15.434988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891734, - "rtt_ms": 1.891734, + "rtt_ns": 1447959, + "rtt_ms": 1.447959, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.737123936Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.43508-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032524, - "rtt_ms": 2.032524, + "rtt_ns": 1234875, + "rtt_ms": 1.234875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.737158926Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.435084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040097, - "rtt_ms": 1.040097, + "rtt_ns": 1503041, + "rtt_ms": 1.503041, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:33.737216366Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.435267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846185, - "rtt_ms": 1.846185, + "rtt_ns": 1123583, + "rtt_ms": 1.123583, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.737231986Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.435281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015457, - "rtt_ms": 1.015457, + "rtt_ns": 1585375, + "rtt_ms": 1.585375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.737276056Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:15.435332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789605, - "rtt_ms": 1.789605, + "rtt_ns": 1551167, + "rtt_ms": 1.551167, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.737811784Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:15.435439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079697, - "rtt_ms": 1.079697, + "rtt_ns": 1933542, + "rtt_ms": 1.933542, "checkpoint": 0, "vertex_from": "20", "vertex_to": "228", - "timestamp": "2025-11-27T01:23:33.737894804Z" + "timestamp": "2025-11-27T04:03:15.436179-08:00" }, { "operation": "add_edge", - "rtt_ns": 922438, - "rtt_ms": 0.922438, + "rtt_ns": 2540084, + "rtt_ms": 2.540084, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.737940914Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.436409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472316, - "rtt_ms": 1.472316, + "rtt_ns": 1234500, + "rtt_ms": 1.2345, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.738513552Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:15.436504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609305, - "rtt_ms": 1.609305, + "rtt_ns": 1564292, + "rtt_ms": 1.564292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.738652031Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.436516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497505, - "rtt_ms": 1.497505, + "rtt_ns": 1436834, + "rtt_ms": 1.436834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.738730421Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.436518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529045, - "rtt_ms": 1.529045, + "rtt_ns": 1232542, + "rtt_ms": 1.232542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.738747151Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.436565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631455, - "rtt_ms": 1.631455, + "rtt_ns": 1591542, + "rtt_ms": 1.591542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:33.738791321Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:15.436582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682965, - "rtt_ms": 1.682965, + "rtt_ns": 1558084, + "rtt_ms": 1.558084, "checkpoint": 0, "vertex_from": "20", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.738807981Z" + "timestamp": "2025-11-27T04:03:15.436642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020117, - "rtt_ms": 1.020117, + "rtt_ns": 1449125, + "rtt_ms": 1.449125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:33.738833611Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.436732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578575, - "rtt_ms": 1.578575, + "rtt_ns": 1677792, + "rtt_ms": 1.677792, "checkpoint": 0, "vertex_from": "20", "vertex_to": "554", - "timestamp": "2025-11-27T01:23:33.738856011Z" + "timestamp": "2025-11-27T04:03:15.437119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613955, - "rtt_ms": 1.613955, + "rtt_ns": 1537083, + "rtt_ms": 1.537083, "checkpoint": 0, "vertex_from": "20", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.739510129Z" + "timestamp": "2025-11-27T04:03:15.437947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148567, - "rtt_ms": 1.148567, + "rtt_ns": 2051667, + "rtt_ms": 2.051667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:33.739801948Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:15.438231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884764, - "rtt_ms": 1.884764, + "rtt_ns": 1701459, + "rtt_ms": 1.701459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "313", - "timestamp": "2025-11-27T01:23:33.739827138Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:15.438267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465166, - "rtt_ms": 1.465166, + "rtt_ns": 1890667, + "rtt_ms": 1.890667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.740213917Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:03:15.438395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719515, - "rtt_ms": 1.719515, + "rtt_ns": 1894709, + "rtt_ms": 1.894709, "checkpoint": 0, "vertex_from": "20", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.740234767Z" + "timestamp": "2025-11-27T04:03:15.438411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658275, - "rtt_ms": 1.658275, + "rtt_ns": 1679917, + "rtt_ms": 1.679917, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:33.740389906Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.438412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599935, - "rtt_ms": 1.599935, + "rtt_ns": 1866250, + "rtt_ms": 1.86625, "checkpoint": 0, "vertex_from": "20", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:33.740392456Z" + "timestamp": "2025-11-27T04:03:15.438509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578265, - "rtt_ms": 1.578265, + "rtt_ns": 1942667, + "rtt_ms": 1.942667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:33.740412716Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.438525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606085, - "rtt_ms": 1.606085, + "rtt_ns": 1669292, + "rtt_ms": 1.669292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.740415786Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:15.438791-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268923, - "rtt_ms": 2.268923, + "rtt_ns": 2276459, + "rtt_ms": 2.276459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:33.741125974Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:15.438795-08:00" }, { "operation": "add_edge", - "rtt_ns": 2497843, - "rtt_ms": 2.497843, + "rtt_ns": 1104875, + "rtt_ms": 1.104875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.742302301Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.439518-08:00" }, { "operation": "add_edge", - "rtt_ns": 2963752, - "rtt_ms": 2.963752, + "rtt_ns": 1677459, + "rtt_ms": 1.677459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.742475561Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:15.439626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2777442, - "rtt_ms": 2.777442, + "rtt_ns": 1411375, + "rtt_ms": 1.411375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.743013859Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.439643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2652943, - "rtt_ms": 2.652943, + "rtt_ns": 1774958, + "rtt_ms": 1.774958, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.743046479Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.440043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2665943, - "rtt_ms": 2.665943, + "rtt_ns": 1268125, + "rtt_ms": 1.268125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:33.743056849Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:15.44006-08:00" }, { "operation": "add_edge", - "rtt_ns": 2907902, - "rtt_ms": 2.907902, + "rtt_ns": 1760417, + "rtt_ms": 1.760417, "checkpoint": 0, "vertex_from": "20", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.743124199Z" + "timestamp": "2025-11-27T04:03:15.440172-08:00" }, { "operation": "add_edge", - "rtt_ns": 3377801, - "rtt_ms": 3.377801, + "rtt_ns": 1783792, + "rtt_ms": 1.783792, "checkpoint": 0, "vertex_from": "20", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.743206729Z" + "timestamp": "2025-11-27T04:03:15.44018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2819222, - "rtt_ms": 2.819222, + "rtt_ns": 1684000, + "rtt_ms": 1.684, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:33.743233258Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:15.440194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2816812, - "rtt_ms": 2.816812, + "rtt_ns": 1430542, + "rtt_ms": 1.430542, "checkpoint": 0, "vertex_from": "20", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.743234848Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2120114, - "rtt_ms": 2.120114, - "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.743248678Z" + "timestamp": "2025-11-27T04:03:15.440227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648365, - "rtt_ms": 1.648365, + "rtt_ns": 1744042, + "rtt_ms": 1.744042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.743953116Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.44027-08:00" }, { "operation": "add_edge", - "rtt_ns": 943997, - "rtt_ms": 0.943997, + "rtt_ns": 1405750, + "rtt_ms": 1.40575, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.743992856Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:15.440926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402606, - "rtt_ms": 1.402606, + "rtt_ns": 1371500, + "rtt_ms": 1.3715, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "659", - "timestamp": "2025-11-27T01:23:33.744418965Z" + "vertex_to": "230", + "timestamp": "2025-11-27T04:03:15.441016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484776, - "rtt_ms": 1.484776, + "rtt_ns": 931417, + "rtt_ms": 0.931417, "checkpoint": 0, "vertex_from": "20", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:33.744543385Z" + "timestamp": "2025-11-27T04:03:15.441104-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071014, - "rtt_ms": 2.071014, + "rtt_ns": 1075875, + "rtt_ms": 1.075875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "230", - "timestamp": "2025-11-27T01:23:33.744548085Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.441137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495165, - "rtt_ms": 1.495165, + "rtt_ns": 1537542, + "rtt_ms": 1.537542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:33.744621024Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.441165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458985, - "rtt_ms": 1.458985, + "rtt_ns": 1140125, + "rtt_ms": 1.140125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.744667424Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:03:15.441185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507056, - "rtt_ms": 1.507056, + "rtt_ns": 1300500, + "rtt_ms": 1.3005, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:33.744742294Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:15.441481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552386, - "rtt_ms": 1.552386, + "rtt_ns": 1573542, + "rtt_ms": 1.573542, "checkpoint": 0, "vertex_from": "20", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.744788444Z" + "timestamp": "2025-11-27T04:03:15.441844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708775, - "rtt_ms": 1.708775, + "rtt_ns": 1740208, + "rtt_ms": 1.740208, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.744959273Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:15.441968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399546, - "rtt_ms": 1.399546, + "rtt_ns": 2480958, + "rtt_ms": 2.480958, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:33.745394392Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.442676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553456, - "rtt_ms": 1.553456, + "rtt_ns": 1594125, + "rtt_ms": 1.594125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.745509032Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:15.442701-08:00" }, { "operation": "add_edge", - "rtt_ns": 913178, - "rtt_ms": 0.913178, + "rtt_ns": 1570292, + "rtt_ms": 1.570292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.745536322Z" + "vertex_to": "79", + "timestamp": "2025-11-27T04:03:15.442757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113176, - "rtt_ms": 1.113176, + "rtt_ns": 1685833, + "rtt_ms": 1.685833, "checkpoint": 0, "vertex_from": "20", "vertex_to": "904", - "timestamp": "2025-11-27T01:23:33.745659261Z" + "timestamp": "2025-11-27T04:03:15.442853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360216, - "rtt_ms": 1.360216, + "rtt_ns": 2004417, + "rtt_ms": 2.004417, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.745780691Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.442931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768554, - "rtt_ms": 1.768554, + "rtt_ns": 2137333, + "rtt_ms": 2.137333, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "79", - "timestamp": "2025-11-27T01:23:33.746318949Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.443154-08:00" }, { "operation": "add_edge", - "rtt_ns": 2492063, - "rtt_ms": 2.492063, + "rtt_ns": 2174084, + "rtt_ms": 2.174084, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.747235567Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:15.443312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791944, - "rtt_ms": 1.791944, + "rtt_ns": 2299791, + "rtt_ms": 2.299791, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "188", - "timestamp": "2025-11-27T01:23:33.747329636Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.444146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943764, - "rtt_ms": 1.943764, + "rtt_ns": 1447708, + "rtt_ms": 1.447708, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.747339266Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.44415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2755702, - "rtt_ms": 2.755702, + "rtt_ns": 2763084, + "rtt_ms": 2.763084, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.747424706Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.444247-08:00" }, { "operation": "add_edge", - "rtt_ns": 2649702, - "rtt_ms": 2.649702, + "rtt_ns": 2296709, + "rtt_ms": 2.296709, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.747440026Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.444266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2585033, - "rtt_ms": 2.585033, + "rtt_ns": 1869667, + "rtt_ms": 1.869667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.747545516Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.444548-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049454, - "rtt_ms": 2.049454, + "rtt_ns": 1828375, + "rtt_ms": 1.828375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:33.747560536Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:03:15.444761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796055, - "rtt_ms": 1.796055, + "rtt_ns": 2724291, + "rtt_ms": 2.724291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.747578076Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.445482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1946484, - "rtt_ms": 1.946484, + "rtt_ns": 1233125, + "rtt_ms": 1.233125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.747607455Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.4455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304996, - "rtt_ms": 1.304996, + "rtt_ns": 2202250, + "rtt_ms": 2.20225, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.747624975Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:15.445515-08:00" }, { "operation": "add_edge", - "rtt_ns": 892267, - "rtt_ms": 0.892267, + "rtt_ns": 1439666, + "rtt_ms": 1.439666, "checkpoint": 0, "vertex_from": "20", "vertex_to": "56", - "timestamp": "2025-11-27T01:23:33.748130574Z" + "timestamp": "2025-11-27T04:03:15.44559-08:00" }, { "operation": "add_edge", - "rtt_ns": 855408, - "rtt_ms": 0.855408, + "rtt_ns": 1578666, + "rtt_ms": 1.578666, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:33.748186324Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.445725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301996, - "rtt_ms": 1.301996, + "rtt_ns": 1486709, + "rtt_ms": 1.486709, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.748743322Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:15.445734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431256, - "rtt_ms": 1.431256, + "rtt_ns": 2621666, + "rtt_ms": 2.621666, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.748772412Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.445776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347406, - "rtt_ms": 1.347406, + "rtt_ns": 1265917, + "rtt_ms": 1.265917, "checkpoint": 0, "vertex_from": "20", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:33.748773222Z" + "timestamp": "2025-11-27T04:03:15.445817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224006, - "rtt_ms": 1.224006, + "rtt_ns": 3209584, + "rtt_ms": 3.209584, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.748785782Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:15.446064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240376, - "rtt_ms": 1.240376, + "rtt_ns": 1326333, + "rtt_ms": 1.326333, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.748788422Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.446843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166227, - "rtt_ms": 1.166227, + "rtt_ns": 1267708, + "rtt_ms": 1.267708, "checkpoint": 0, "vertex_from": "20", "vertex_to": "139", - "timestamp": "2025-11-27T01:23:33.748792772Z" + "timestamp": "2025-11-27T04:03:15.446996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203387, - "rtt_ms": 1.203387, + "rtt_ns": 1192959, + "rtt_ms": 1.192959, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.748812742Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:15.447011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427875, - "rtt_ms": 1.427875, + "rtt_ns": 1535500, + "rtt_ms": 1.5355, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.749007991Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.447019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482325, - "rtt_ms": 1.482325, + "rtt_ns": 1468042, + "rtt_ms": 1.468042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.749670159Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.447059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583675, - "rtt_ms": 1.583675, + "rtt_ns": 2327875, + "rtt_ms": 2.327875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:33.749716089Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1579835, - "rtt_ms": 1.579835, - "checkpoint": 0, - "vertex_from": "934", - "timestamp": "2025-11-27T01:23:33.750401047Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.44709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141814, - "rtt_ms": 2.141814, + "rtt_ns": 1321334, + "rtt_ms": 1.321334, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.750929206Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.447099-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340783, - "rtt_ms": 2.340783, + "rtt_ns": 1601666, + "rtt_ms": 1.601666, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:33.751131255Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.447102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251444, - "rtt_ms": 2.251444, + "rtt_ns": 1538833, + "rtt_ms": 1.538833, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.751261115Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:15.447274-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605112, - "rtt_ms": 2.605112, + "rtt_ns": 2035292, + "rtt_ms": 2.035292, "checkpoint": 0, "vertex_from": "20", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:33.751380674Z" + "timestamp": "2025-11-27T04:03:15.448101-08:00" }, { "operation": "add_edge", - "rtt_ns": 3216750, - "rtt_ms": 3.21675, + "rtt_ns": 1138292, + "rtt_ms": 1.138292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.752011322Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.448243-08:00" }, { "operation": "add_edge", - "rtt_ns": 2429363, - "rtt_ms": 2.429363, + "rtt_ns": 1346208, + "rtt_ms": 1.346208, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.752146872Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.448366-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507583, - "rtt_ms": 2.507583, + "rtt_ns": 1458708, + "rtt_ms": 1.458708, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.752179352Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:15.448457-08:00" }, { "operation": "add_edge", - "rtt_ns": 3440780, - "rtt_ms": 3.44078, + "rtt_ns": 1450416, + "rtt_ms": 1.450416, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:33.752185962Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.44855-08:00" }, { "operation": "add_edge", - "rtt_ns": 3454280, - "rtt_ms": 3.45428, + "rtt_ns": 1724583, + "rtt_ms": 1.724583, "checkpoint": 0, "vertex_from": "20", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.752230502Z" + "timestamp": "2025-11-27T04:03:15.448568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877935, - "rtt_ms": 1.877935, + "rtt_ns": 1568000, + "rtt_ms": 1.568, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "934", - "timestamp": "2025-11-27T01:23:33.752279492Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:15.44858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378956, - "rtt_ms": 1.378956, + "rtt_ns": 1365209, + "rtt_ms": 1.365209, "checkpoint": 0, "vertex_from": "20", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.752309422Z" + "timestamp": "2025-11-27T04:03:15.44864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227606, - "rtt_ms": 1.227606, + "rtt_ns": 1561625, + "rtt_ms": 1.561625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:33.752360891Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:15.448652-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1669375, + "rtt_ms": 1.669375, + "checkpoint": 0, + "vertex_from": "934", + "timestamp": "2025-11-27T04:03:15.448731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010307, - "rtt_ms": 1.010307, + "rtt_ns": 1938334, + "rtt_ms": 1.938334, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.752392191Z" + "vertex_to": "934", + "timestamp": "2025-11-27T04:03:15.45067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161266, - "rtt_ms": 1.161266, + "rtt_ns": 2438333, + "rtt_ms": 2.438333, "checkpoint": 0, "vertex_from": "20", "vertex_to": "325", - "timestamp": "2025-11-27T01:23:33.752423421Z" + "timestamp": "2025-11-27T04:03:15.450682-08:00" }, { "operation": "add_edge", - "rtt_ns": 992457, - "rtt_ms": 0.992457, + "rtt_ns": 2183042, + "rtt_ms": 2.183042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.753140899Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:15.450752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163027, - "rtt_ms": 1.163027, + "rtt_ns": 2700875, + "rtt_ms": 2.700875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.753175419Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:15.450803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460176, - "rtt_ms": 1.460176, + "rtt_ns": 2162708, + "rtt_ms": 2.162708, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:33.753862177Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:15.450816-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1526676, - "rtt_ms": 1.526676, + "operation": "add_vertex", + "rtt_ns": 2269292, + "rtt_ms": 2.269292, "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.753888667Z" + "vertex_from": "703", + "timestamp": "2025-11-27T04:03:15.45085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578255, - "rtt_ms": 1.578255, + "rtt_ns": 2445750, + "rtt_ms": 2.44575, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.753888807Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.450904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609795, - "rtt_ms": 1.609795, + "rtt_ns": 2412375, + "rtt_ms": 2.412375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.753890227Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.451054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756335, - "rtt_ms": 1.756335, + "rtt_ns": 2516125, + "rtt_ms": 2.516125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:33.753936507Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.451069-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1757345, - "rtt_ms": 1.757345, + "operation": "add_edge", + "rtt_ns": 2704792, + "rtt_ms": 2.704792, "checkpoint": 0, - "vertex_from": "703", - "timestamp": "2025-11-27T01:23:33.753946377Z" + "vertex_from": "20", + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.451071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720455, - "rtt_ms": 1.720455, + "rtt_ns": 1189750, + "rtt_ms": 1.18975, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.753952667Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:15.452007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732135, - "rtt_ms": 1.732135, + "rtt_ns": 1164292, + "rtt_ms": 1.164292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "345", - "timestamp": "2025-11-27T01:23:33.754157186Z" + "vertex_to": "703", + "timestamp": "2025-11-27T04:03:15.452015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788745, - "rtt_ms": 1.788745, + "rtt_ns": 1125333, + "rtt_ms": 1.125333, "checkpoint": 0, "vertex_from": "20", "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.754965524Z" + "timestamp": "2025-11-27T04:03:15.45203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138507, - "rtt_ms": 1.138507, + "rtt_ns": 1398291, + "rtt_ms": 1.398291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.755002124Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.452468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886875, - "rtt_ms": 1.886875, + "rtt_ns": 1799667, + "rtt_ms": 1.799667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:33.755029654Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.452483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167457, - "rtt_ms": 1.167457, + "rtt_ns": 1459208, + "rtt_ms": 1.459208, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.755057534Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.452531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167877, - "rtt_ms": 1.167877, + "rtt_ns": 1809875, + "rtt_ms": 1.809875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.755058374Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:15.452563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711715, - "rtt_ms": 1.711715, + "rtt_ns": 1869500, + "rtt_ms": 1.8695, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.755649652Z" + "vertex_to": "345", + "timestamp": "2025-11-27T04:03:15.452673-08:00" }, { "operation": "add_edge", - "rtt_ns": 2609262, - "rtt_ms": 2.609262, + "rtt_ns": 2085375, + "rtt_ms": 2.085375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "703", - "timestamp": "2025-11-27T01:23:33.756556419Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.452756-08:00" }, { "operation": "add_edge", - "rtt_ns": 2662552, - "rtt_ms": 2.662552, + "rtt_ns": 816250, + "rtt_ms": 0.81625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:33.756619589Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:15.452824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2808552, - "rtt_ms": 2.808552, + "rtt_ns": 1972000, + "rtt_ms": 1.972, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:33.756700239Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.453026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2576673, - "rtt_ms": 2.576673, + "rtt_ns": 1059334, + "rtt_ms": 1.059334, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:33.756735069Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.453075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766845, - "rtt_ms": 1.766845, + "rtt_ns": 1240000, + "rtt_ms": 1.24, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:33.756770419Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:15.453709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767035, - "rtt_ms": 1.767035, + "rtt_ns": 1199917, + "rtt_ms": 1.199917, "checkpoint": 0, "vertex_from": "20", "vertex_to": "293", - "timestamp": "2025-11-27T01:23:33.756835169Z" + "timestamp": "2025-11-27T04:03:15.453875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903615, - "rtt_ms": 1.903615, + "rtt_ns": 1406666, + "rtt_ms": 1.406666, "checkpoint": 0, "vertex_from": "20", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:33.756871159Z" + "timestamp": "2025-11-27T04:03:15.453891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276086, - "rtt_ms": 1.276086, + "rtt_ns": 874584, + "rtt_ms": 0.874584, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:33.756927068Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.45475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868824, - "rtt_ms": 1.868824, + "rtt_ns": 1943709, + "rtt_ms": 1.943709, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.756929068Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:15.454769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933254, - "rtt_ms": 1.933254, + "rtt_ns": 2318791, + "rtt_ms": 2.318791, "checkpoint": 0, "vertex_from": "20", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.756963698Z" + "timestamp": "2025-11-27T04:03:15.45489-08:00" }, { "operation": "add_edge", - "rtt_ns": 741928, - "rtt_ms": 0.741928, + "rtt_ns": 2390666, + "rtt_ms": 2.390666, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.757299877Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:15.454922-08:00" }, { "operation": "add_edge", - "rtt_ns": 739428, - "rtt_ms": 0.739428, + "rtt_ns": 2910667, + "rtt_ms": 2.910667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "25", - "timestamp": "2025-11-27T01:23:33.757359887Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:15.454941-08:00" }, { "operation": "add_edge", - "rtt_ns": 761708, - "rtt_ms": 0.761708, + "rtt_ns": 2322708, + "rtt_ms": 2.322708, + "checkpoint": 0, + "vertex_from": "20", + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:15.45508-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1379000, + "rtt_ms": 1.379, "checkpoint": 0, "vertex_from": "20", "vertex_to": "141", - "timestamp": "2025-11-27T01:23:33.757464327Z" + "timestamp": "2025-11-27T04:03:15.455089-08:00" }, { "operation": "add_vertex", - "rtt_ns": 690288, - "rtt_ms": 0.690288, + "rtt_ns": 820500, + "rtt_ms": 0.8205, "checkpoint": 0, "vertex_from": "190", - "timestamp": "2025-11-27T01:23:33.757655856Z" + "timestamp": "2025-11-27T04:03:15.455765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111957, - "rtt_ms": 1.111957, + "rtt_ns": 2865750, + "rtt_ms": 2.86575, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.757848576Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.455893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361406, - "rtt_ms": 1.361406, + "rtt_ns": 1246334, + "rtt_ms": 1.246334, + "checkpoint": 0, + "vertex_from": "20", + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:15.456016-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2141833, + "rtt_ms": 2.141833, "checkpoint": 0, "vertex_from": "20", "vertex_to": "897", - "timestamp": "2025-11-27T01:23:33.758135475Z" + "timestamp": "2025-11-27T04:03:15.456034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441835, - "rtt_ms": 1.441835, + "rtt_ns": 2963584, + "rtt_ms": 2.963584, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:33.758278554Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:03:15.456039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944945, - "rtt_ms": 1.944945, + "rtt_ns": 1610250, + "rtt_ms": 1.61025, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:33.758873103Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:15.456361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033633, - "rtt_ms": 2.033633, + "rtt_ns": 3109083, + "rtt_ms": 3.109083, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:33.758906102Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:15.458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969064, - "rtt_ms": 1.969064, + "rtt_ns": 3094917, + "rtt_ms": 3.094917, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "190", - "timestamp": "2025-11-27T01:23:33.75962523Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:03:15.458018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2226543, - "rtt_ms": 2.226543, + "rtt_ns": 2005291, + "rtt_ms": 2.005291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:33.75969245Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:15.458045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849424, - "rtt_ms": 1.849424, + "rtt_ns": 2248584, + "rtt_ms": 2.248584, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "472", - "timestamp": "2025-11-27T01:23:33.75969913Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:15.458143-08:00" }, { "operation": "add_edge", - "rtt_ns": 2387973, - "rtt_ms": 2.387973, + "rtt_ns": 3061417, + "rtt_ms": 3.061417, "checkpoint": 0, "vertex_from": "20", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.75974908Z" + "timestamp": "2025-11-27T04:03:15.458151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449773, - "rtt_ms": 2.449773, + "rtt_ns": 2125625, + "rtt_ms": 2.125625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.75975116Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.45816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616265, - "rtt_ms": 1.616265, + "rtt_ns": 1810084, + "rtt_ms": 1.810084, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.75975294Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:15.458172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473326, - "rtt_ms": 1.473326, + "rtt_ns": 3147500, + "rtt_ms": 3.1475, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:33.75975315Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.45823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2827952, - "rtt_ms": 2.827952, + "rtt_ns": 2523667, + "rtt_ms": 2.523667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:33.75975883Z" + "vertex_to": "190", + "timestamp": "2025-11-27T04:03:15.458289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676145, - "rtt_ms": 1.676145, + "rtt_ns": 2284750, + "rtt_ms": 2.28475, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.760586957Z" + "vertex_to": "472", + "timestamp": "2025-11-27T04:03:15.458302-08:00" }, { "operation": "add_edge", - "rtt_ns": 979127, - "rtt_ms": 0.979127, + "rtt_ns": 1302333, + "rtt_ms": 1.302333, "checkpoint": 0, "vertex_from": "20", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:33.760679457Z" + "timestamp": "2025-11-27T04:03:15.459448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083177, - "rtt_ms": 1.083177, + "rtt_ns": 1235458, + "rtt_ms": 1.235458, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.760710107Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:15.459467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016917, - "rtt_ms": 1.016917, + "rtt_ns": 1435333, + "rtt_ms": 1.435333, "checkpoint": 0, "vertex_from": "20", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.760710457Z" + "timestamp": "2025-11-27T04:03:15.459481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854464, - "rtt_ms": 1.854464, + "rtt_ns": 1495750, + "rtt_ms": 1.49575, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:33.760729117Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.459497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020547, - "rtt_ms": 1.020547, + "rtt_ns": 1404792, + "rtt_ms": 1.404792, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:33.760770887Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:15.459567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562275, - "rtt_ms": 1.562275, + "rtt_ns": 1413417, + "rtt_ms": 1.413417, "checkpoint": 0, "vertex_from": "20", "vertex_to": "354", - "timestamp": "2025-11-27T01:23:33.761317735Z" + "timestamp": "2025-11-27T04:03:15.459587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662595, - "rtt_ms": 1.662595, + "rtt_ns": 1433834, + "rtt_ms": 1.433834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:33.761416695Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:15.459723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671185, - "rtt_ms": 1.671185, + "rtt_ns": 1454750, + "rtt_ms": 1.45475, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:33.761433755Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:15.45976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705955, - "rtt_ms": 1.705955, + "rtt_ns": 1648167, + "rtt_ms": 1.648167, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.761461755Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:03:15.459801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258066, - "rtt_ms": 1.258066, + "rtt_ns": 1781833, + "rtt_ms": 1.781833, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:33.761971573Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:15.459801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995014, - "rtt_ms": 1.995014, + "rtt_ns": 1292750, + "rtt_ms": 1.29275, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:33.762725681Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:15.460761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2060454, - "rtt_ms": 2.060454, + "rtt_ns": 1192125, + "rtt_ms": 1.192125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "842", - "timestamp": "2025-11-27T01:23:33.762741591Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:15.46078-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042084, - "rtt_ms": 2.042084, + "rtt_ns": 1565875, + "rtt_ms": 1.565875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:33.762814671Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:03:15.461015-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116914, - "rtt_ms": 2.116914, + "rtt_ns": 1532583, + "rtt_ms": 1.532583, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:33.762829631Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:15.461031-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249014, - "rtt_ms": 2.249014, + "rtt_ns": 1289792, + "rtt_ms": 1.289792, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.762836991Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:15.461051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419376, - "rtt_ms": 1.419376, + "rtt_ns": 1495625, + "rtt_ms": 1.495625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.762837131Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:15.461065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485695, - "rtt_ms": 1.485695, + "rtt_ns": 1403208, + "rtt_ms": 1.403208, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:33.76292124Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:15.461207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869344, - "rtt_ms": 1.869344, + "rtt_ns": 1489834, + "rtt_ms": 1.489834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:33.763332669Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.461215-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095854, - "rtt_ms": 2.095854, + "rtt_ns": 1433542, + "rtt_ms": 1.433542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:33.763415039Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:15.461236-08:00" }, { "operation": "add_edge", - "rtt_ns": 2247994, - "rtt_ms": 2.247994, + "rtt_ns": 2640958, + "rtt_ms": 2.640958, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:33.764990745Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:15.462123-08:00" }, { "operation": "add_edge", - "rtt_ns": 3106091, - "rtt_ms": 3.106091, + "rtt_ns": 1037083, + "rtt_ms": 1.037083, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:33.765078614Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.462253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2873792, - "rtt_ms": 2.873792, + "rtt_ns": 1222875, + "rtt_ms": 1.222875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "603", - "timestamp": "2025-11-27T01:23:33.765691853Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:15.462274-08:00" }, { "operation": "add_edge", - "rtt_ns": 3019061, - "rtt_ms": 3.019061, + "rtt_ns": 1242959, + "rtt_ms": 1.242959, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.765747112Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.462453-08:00" }, { "operation": "add_edge", - "rtt_ns": 2457293, - "rtt_ms": 2.457293, + "rtt_ns": 1474917, + "rtt_ms": 1.474917, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.765791572Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:03:15.462491-08:00" }, { "operation": "add_edge", - "rtt_ns": 2907232, - "rtt_ms": 2.907232, + "rtt_ns": 1766250, + "rtt_ms": 1.76625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.765831412Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.462529-08:00" }, { "operation": "add_edge", - "rtt_ns": 3038831, - "rtt_ms": 3.038831, + "rtt_ns": 1336375, + "rtt_ms": 1.336375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:33.765869652Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:15.462573-08:00" }, { "operation": "add_edge", - "rtt_ns": 3059951, - "rtt_ms": 3.059951, + "rtt_ns": 1594166, + "rtt_ms": 1.594166, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:33.765898252Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:15.462626-08:00" }, { "operation": "add_edge", - "rtt_ns": 3073951, - "rtt_ms": 3.073951, + "rtt_ns": 1585250, + "rtt_ms": 1.58525, "checkpoint": 0, "vertex_from": "20", "vertex_to": "24", - "timestamp": "2025-11-27T01:23:33.765913982Z" + "timestamp": "2025-11-27T04:03:15.462651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506276, - "rtt_ms": 1.506276, + "rtt_ns": 1922250, + "rtt_ms": 1.92225, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:33.76658642Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:15.462703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646435, - "rtt_ms": 1.646435, + "rtt_ns": 1717750, + "rtt_ms": 1.71775, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:33.76663938Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:03:15.464172-08:00" }, { "operation": "add_edge", - "rtt_ns": 3240621, - "rtt_ms": 3.240621, + "rtt_ns": 2122833, + "rtt_ms": 2.122833, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:33.76665701Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.464616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674256, - "rtt_ms": 1.674256, + "rtt_ns": 2370541, + "rtt_ms": 2.370541, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:33.767422738Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:15.464635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654826, - "rtt_ms": 1.654826, + "rtt_ns": 1991541, + "rtt_ms": 1.991541, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.767447568Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:03:15.464643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754965, - "rtt_ms": 1.754965, + "rtt_ns": 2066209, + "rtt_ms": 2.066209, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.767449158Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:15.464693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622716, - "rtt_ms": 1.622716, + "rtt_ns": 2419625, + "rtt_ms": 2.419625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.767455188Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:15.464695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608125, - "rtt_ms": 1.608125, + "rtt_ns": 2216291, + "rtt_ms": 2.216291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:33.767523527Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.464746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881305, - "rtt_ms": 1.881305, + "rtt_ns": 2245125, + "rtt_ms": 2.245125, "checkpoint": 0, "vertex_from": "20", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.767751847Z" + "timestamp": "2025-11-27T04:03:15.46482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393576, - "rtt_ms": 1.393576, + "rtt_ns": 2241083, + "rtt_ms": 2.241083, "checkpoint": 0, "vertex_from": "20", "vertex_to": "298", - "timestamp": "2025-11-27T01:23:33.767981156Z" + "timestamp": "2025-11-27T04:03:15.464945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082334, - "rtt_ms": 2.082334, + "rtt_ns": 2966542, + "rtt_ms": 2.966542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:33.767982066Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:15.465091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365336, - "rtt_ms": 1.365336, + "rtt_ns": 1748417, + "rtt_ms": 1.748417, "checkpoint": 0, "vertex_from": "20", "vertex_to": "773", - "timestamp": "2025-11-27T01:23:33.768007676Z" + "timestamp": "2025-11-27T04:03:15.465922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351976, - "rtt_ms": 1.351976, + "rtt_ns": 1400000, + "rtt_ms": 1.4, "checkpoint": 0, "vertex_from": "20", "vertex_to": "114", - "timestamp": "2025-11-27T01:23:33.768011126Z" + "timestamp": "2025-11-27T04:03:15.466019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331336, - "rtt_ms": 1.331336, + "rtt_ns": 1465000, + "rtt_ms": 1.465, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.768781774Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:15.466102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331666, - "rtt_ms": 1.331666, + "rtt_ns": 1447500, + "rtt_ms": 1.4475, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.768858633Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:15.466144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423795, - "rtt_ms": 1.423795, + "rtt_ns": 1335750, + "rtt_ms": 1.33575, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:33.768872793Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.466157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490145, - "rtt_ms": 1.490145, + "rtt_ns": 1529000, + "rtt_ms": 1.529, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.768914193Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.466224-08:00" }, { "operation": "add_edge", - "rtt_ns": 959907, - "rtt_ms": 0.959907, + "rtt_ns": 1598667, + "rtt_ms": 1.598667, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "29", - "timestamp": "2025-11-27T01:23:33.768943773Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:15.466243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215386, - "rtt_ms": 1.215386, + "rtt_ns": 1508084, + "rtt_ms": 1.508084, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.768969933Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:15.466255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588285, - "rtt_ms": 1.588285, + "rtt_ns": 1968709, + "rtt_ms": 1.968709, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.769046153Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:03:15.466915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693165, - "rtt_ms": 1.693165, + "rtt_ns": 1833083, + "rtt_ms": 1.833083, "checkpoint": 0, "vertex_from": "21", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.769677331Z" + "timestamp": "2025-11-27T04:03:15.466925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723555, - "rtt_ms": 1.723555, + "rtt_ns": 1180042, + "rtt_ms": 1.180042, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.769734331Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:15.467338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763425, - "rtt_ms": 1.763425, + "rtt_ns": 1364834, + "rtt_ms": 1.364834, "checkpoint": 0, "vertex_from": "21", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.769775591Z" + "timestamp": "2025-11-27T04:03:15.467384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375406, - "rtt_ms": 1.375406, + "rtt_ns": 1329375, + "rtt_ms": 1.329375, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.77015904Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.467474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357606, - "rtt_ms": 1.357606, + "rtt_ns": 1570208, + "rtt_ms": 1.570208, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:33.770232559Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.467493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392016, - "rtt_ms": 1.392016, + "rtt_ns": 1448958, + "rtt_ms": 1.448958, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.770253459Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.467553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777395, - "rtt_ms": 1.777395, + "rtt_ns": 1040709, + "rtt_ms": 1.040709, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:33.770748818Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.468595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729455, - "rtt_ms": 1.729455, + "rtt_ns": 1193875, + "rtt_ms": 1.193875, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:33.770776668Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.468669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868215, - "rtt_ms": 1.868215, + "rtt_ns": 1761334, + "rtt_ms": 1.761334, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:33.770812858Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:15.468678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185046, - "rtt_ms": 1.185046, + "rtt_ns": 1774583, + "rtt_ms": 1.774583, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.770961777Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.468701-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047554, - "rtt_ms": 2.047554, + "rtt_ns": 2493959, + "rtt_ms": 2.493959, "checkpoint": 0, "vertex_from": "21", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.770962887Z" + "timestamp": "2025-11-27T04:03:15.468719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339736, - "rtt_ms": 1.339736, + "rtt_ns": 1387875, + "rtt_ms": 1.387875, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.771018837Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:15.468727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315516, - "rtt_ms": 1.315516, + "rtt_ns": 2544500, + "rtt_ms": 2.5445, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:33.771050927Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:15.468788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654525, - "rtt_ms": 1.654525, + "rtt_ns": 1499917, + "rtt_ms": 1.499917, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.771887714Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.468885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751184, - "rtt_ms": 1.751184, + "rtt_ns": 1905625, + "rtt_ms": 1.905625, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.771910974Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.4694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663565, - "rtt_ms": 1.663565, + "rtt_ns": 3214875, + "rtt_ms": 3.214875, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.771918184Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:15.469471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324406, - "rtt_ms": 1.324406, + "rtt_ns": 1408709, + "rtt_ms": 1.408709, "checkpoint": 0, "vertex_from": "21", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.772074364Z" + "timestamp": "2025-11-27T04:03:15.470006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383406, - "rtt_ms": 1.383406, + "rtt_ns": 1326875, + "rtt_ms": 1.326875, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.772197554Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.470047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346076, - "rtt_ms": 1.346076, + "rtt_ns": 1288292, + "rtt_ms": 1.288292, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.772309023Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:15.470174-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1368836, - "rtt_ms": 1.368836, + "operation": "add_edge", + "rtt_ns": 1525083, + "rtt_ms": 1.525083, "checkpoint": 0, - "vertex_from": "468", - "timestamp": "2025-11-27T01:23:33.772334573Z" + "vertex_from": "21", + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.470195-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1906084, - "rtt_ms": 1.906084, + "operation": "add_vertex", + "rtt_ns": 1822958, + "rtt_ms": 1.822958, "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.772926301Z" + "vertex_from": "468", + "timestamp": "2025-11-27T04:03:15.470552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2184363, - "rtt_ms": 2.184363, + "rtt_ns": 1889500, + "rtt_ms": 1.8895, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.7732364Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.470569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574982, - "rtt_ms": 2.574982, + "rtt_ns": 1184167, + "rtt_ms": 1.184167, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.77335412Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.470585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692385, - "rtt_ms": 1.692385, + "rtt_ns": 1951042, + "rtt_ms": 1.951042, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.773581439Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.47074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710185, - "rtt_ms": 1.710185, + "rtt_ns": 1442000, + "rtt_ms": 1.442, "checkpoint": 0, "vertex_from": "21", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.773630369Z" + "timestamp": "2025-11-27T04:03:15.470914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2560273, - "rtt_ms": 2.560273, + "rtt_ns": 881333, + "rtt_ms": 0.881333, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.774474537Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:03:15.471077-08:00" }, { "operation": "add_edge", - "rtt_ns": 2845851, - "rtt_ms": 2.845851, + "rtt_ns": 2328542, + "rtt_ms": 2.328542, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:33.775044425Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.471078-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138904, - "rtt_ms": 2.138904, + "rtt_ns": 1157375, + "rtt_ms": 1.157375, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "179", - "timestamp": "2025-11-27T01:23:33.775066715Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.471165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2998571, - "rtt_ms": 2.998571, + "rtt_ns": 1183333, + "rtt_ms": 1.183333, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.775074275Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:15.471231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2748622, - "rtt_ms": 2.748622, + "rtt_ns": 1946375, + "rtt_ms": 1.946375, "checkpoint": 0, "vertex_from": "21", "vertex_to": "468", - "timestamp": "2025-11-27T01:23:33.775083755Z" + "timestamp": "2025-11-27T04:03:15.472499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736295, - "rtt_ms": 1.736295, + "rtt_ns": 1985167, + "rtt_ms": 1.985167, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:33.775091545Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:03:15.472555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880355, - "rtt_ms": 1.880355, + "rtt_ns": 1641917, + "rtt_ms": 1.641917, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "167", - "timestamp": "2025-11-27T01:23:33.775119555Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:15.472557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2811452, - "rtt_ms": 2.811452, + "rtt_ns": 2442250, + "rtt_ms": 2.44225, "checkpoint": 0, "vertex_from": "21", "vertex_to": "301", - "timestamp": "2025-11-27T01:23:33.775121845Z" + "timestamp": "2025-11-27T04:03:15.472618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511706, - "rtt_ms": 1.511706, + "rtt_ns": 1774750, + "rtt_ms": 1.77475, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:33.775143535Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:03:15.472853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569296, - "rtt_ms": 1.569296, + "rtt_ns": 2177750, + "rtt_ms": 2.17775, "checkpoint": 0, "vertex_from": "21", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:33.775153415Z" + "timestamp": "2025-11-27T04:03:15.472921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428815, - "rtt_ms": 1.428815, + "rtt_ns": 1868208, + "rtt_ms": 1.868208, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "422", - "timestamp": "2025-11-27T01:23:33.775905222Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.473035-08:00" }, { "operation": "add_edge", - "rtt_ns": 971077, - "rtt_ms": 0.971077, + "rtt_ns": 1996125, + "rtt_ms": 1.996125, "checkpoint": 0, "vertex_from": "21", "vertex_to": "362", - "timestamp": "2025-11-27T01:23:33.776016752Z" + "timestamp": "2025-11-27T04:03:15.473075-08:00" }, { "operation": "add_edge", - "rtt_ns": 975357, - "rtt_ms": 0.975357, + "rtt_ns": 1900666, + "rtt_ms": 1.900666, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.776062612Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.473134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867735, - "rtt_ms": 1.867735, + "rtt_ns": 2566708, + "rtt_ms": 2.566708, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.77693528Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:15.473152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820585, - "rtt_ms": 1.820585, + "rtt_ns": 1220916, + "rtt_ms": 1.220916, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.7769441Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:15.474257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843065, - "rtt_ms": 1.843065, + "rtt_ns": 1724459, + "rtt_ms": 1.724459, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.77696555Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.474344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924554, - "rtt_ms": 1.924554, + "rtt_ns": 1570750, + "rtt_ms": 1.57075, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.777001009Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:15.474425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887504, - "rtt_ms": 1.887504, + "rtt_ns": 1893166, + "rtt_ms": 1.893166, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.777042919Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:15.474452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149467, - "rtt_ms": 1.149467, + "rtt_ns": 1928042, + "rtt_ms": 1.928042, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:33.777057629Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:15.474485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017727, - "rtt_ms": 1.017727, + "rtt_ns": 1612834, + "rtt_ms": 1.612834, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:33.777081619Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.474536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947574, - "rtt_ms": 1.947574, + "rtt_ns": 2078000, + "rtt_ms": 2.078, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:33.777093139Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.47458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020924, - "rtt_ms": 2.020924, + "rtt_ns": 1535959, + "rtt_ms": 1.535959, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:33.777113749Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.474689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243627, - "rtt_ms": 1.243627, + "rtt_ns": 1567375, + "rtt_ms": 1.567375, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.777261759Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:15.474702-08:00" }, { "operation": "add_edge", - "rtt_ns": 885117, - "rtt_ms": 0.885117, + "rtt_ns": 1630791, + "rtt_ms": 1.630791, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "363", - "timestamp": "2025-11-27T01:23:33.777852347Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.474706-08:00" }, { "operation": "add_edge", - "rtt_ns": 846628, - "rtt_ms": 0.846628, + "rtt_ns": 1258958, + "rtt_ms": 1.258958, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.777891387Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:15.47584-08:00" }, { "operation": "add_edge", - "rtt_ns": 985007, - "rtt_ms": 0.985007, + "rtt_ns": 1557000, + "rtt_ms": 1.557, + "checkpoint": 0, + "vertex_from": "21", + "vertex_to": "363", + "timestamp": "2025-11-27T04:03:15.475902-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1504666, + "rtt_ms": 1.504666, "checkpoint": 0, "vertex_from": "22", "vertex_to": "50", - "timestamp": "2025-11-27T01:23:33.778067986Z" + "timestamp": "2025-11-27T04:03:15.476041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189447, - "rtt_ms": 1.189447, + "rtt_ns": 1634667, + "rtt_ms": 1.634667, "checkpoint": 0, "vertex_from": "21", "vertex_to": "960", - "timestamp": "2025-11-27T01:23:33.778193456Z" + "timestamp": "2025-11-27T04:03:15.47606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389796, - "rtt_ms": 1.389796, + "rtt_ns": 1475250, + "rtt_ms": 1.47525, "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.778336446Z" + "vertex_from": "22", + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:15.476182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486826, - "rtt_ms": 1.486826, + "rtt_ns": 1509417, + "rtt_ms": 1.509417, "checkpoint": 0, "vertex_from": "22", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.778749995Z" + "timestamp": "2025-11-27T04:03:15.476212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664725, - "rtt_ms": 1.664725, + "rtt_ns": 1650167, + "rtt_ms": 1.650167, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:33.778759694Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.47634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838404, - "rtt_ms": 1.838404, + "rtt_ns": 2159209, + "rtt_ms": 2.159209, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.778775434Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.476417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746045, - "rtt_ms": 1.746045, + "rtt_ns": 1970833, + "rtt_ms": 1.970833, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.778861004Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.476423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855755, - "rtt_ms": 1.855755, + "rtt_ns": 2002208, + "rtt_ms": 2.002208, "checkpoint": 0, "vertex_from": "22", "vertex_to": "108", - "timestamp": "2025-11-27T01:23:33.778915294Z" + "timestamp": "2025-11-27T04:03:15.476487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526526, - "rtt_ms": 1.526526, + "rtt_ns": 1456875, + "rtt_ms": 1.456875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.779419063Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.477518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406636, - "rtt_ms": 1.406636, + "rtt_ns": 1359542, + "rtt_ms": 1.359542, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.779475732Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.4777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844885, - "rtt_ms": 1.844885, + "rtt_ns": 1799708, + "rtt_ms": 1.799708, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "488", - "timestamp": "2025-11-27T01:23:33.780040511Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.477703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359073, - "rtt_ms": 2.359073, + "rtt_ns": 1702500, + "rtt_ms": 1.7025, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:33.78021338Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:03:15.477745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573396, - "rtt_ms": 1.573396, + "rtt_ns": 1415458, + "rtt_ms": 1.415458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.78035268Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.47784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320603, - "rtt_ms": 2.320603, + "rtt_ns": 1361792, + "rtt_ms": 1.361792, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.780658459Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:15.47785-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134404, - "rtt_ms": 2.134404, + "rtt_ns": 1443041, + "rtt_ms": 1.443041, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.780895208Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.477861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2818541, - "rtt_ms": 2.818541, + "rtt_ns": 1762333, + "rtt_ms": 1.762333, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.781569466Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.477975-08:00" }, { "operation": "add_edge", - "rtt_ns": 2768122, - "rtt_ms": 2.768122, + "rtt_ns": 2210375, + "rtt_ms": 2.210375, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.781630326Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.478053-08:00" }, { "operation": "add_edge", - "rtt_ns": 2738102, - "rtt_ms": 2.738102, + "rtt_ns": 2102625, + "rtt_ms": 2.102625, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.781654626Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.478286-08:00" }, { "operation": "add_edge", - "rtt_ns": 2244204, - "rtt_ms": 2.244204, + "rtt_ns": 1337875, + "rtt_ms": 1.337875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.781721136Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:15.47918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2812061, - "rtt_ms": 2.812061, + "rtt_ns": 1503458, + "rtt_ms": 1.503458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:33.782232994Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:15.479208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240763, - "rtt_ms": 2.240763, + "rtt_ns": 1185459, + "rtt_ms": 1.185459, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:33.782283954Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:15.47924-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039854, - "rtt_ms": 2.039854, + "rtt_ns": 1560542, + "rtt_ms": 1.560542, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.782393834Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:15.479264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740785, - "rtt_ms": 1.740785, + "rtt_ns": 1588875, + "rtt_ms": 1.588875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.782400694Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.479334-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203334, - "rtt_ms": 2.203334, + "rtt_ns": 1483458, + "rtt_ms": 1.483458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:33.782418154Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:03:15.479335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524866, - "rtt_ms": 1.524866, + "rtt_ns": 1358583, + "rtt_ms": 1.358583, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "39", - "timestamp": "2025-11-27T01:23:33.782422564Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.479335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620915, - "rtt_ms": 1.620915, + "rtt_ns": 1489333, + "rtt_ms": 1.489333, "checkpoint": 0, "vertex_from": "22", "vertex_to": "26", - "timestamp": "2025-11-27T01:23:33.783191601Z" + "timestamp": "2025-11-27T04:03:15.479351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568915, - "rtt_ms": 1.568915, + "rtt_ns": 2042250, + "rtt_ms": 2.04225, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.783201661Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.479562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581245, - "rtt_ms": 1.581245, + "rtt_ns": 1861000, + "rtt_ms": 1.861, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.783237451Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:03:15.480148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520325, - "rtt_ms": 1.520325, + "rtt_ns": 1359000, + "rtt_ms": 1.359, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "43", - "timestamp": "2025-11-27T01:23:33.783244681Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:15.480601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337626, - "rtt_ms": 1.337626, + "rtt_ns": 1486542, + "rtt_ms": 1.486542, "checkpoint": 0, "vertex_from": "22", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.78362366Z" + "timestamp": "2025-11-27T04:03:15.480696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425466, - "rtt_ms": 1.425466, + "rtt_ns": 1582416, + "rtt_ms": 1.582416, "checkpoint": 0, "vertex_from": "22", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.78366023Z" + "timestamp": "2025-11-27T04:03:15.480763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443835, - "rtt_ms": 1.443835, + "rtt_ns": 1517083, + "rtt_ms": 1.517083, "checkpoint": 0, "vertex_from": "22", "vertex_to": "905", - "timestamp": "2025-11-27T01:23:33.783846629Z" + "timestamp": "2025-11-27T04:03:15.480782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445505, - "rtt_ms": 1.445505, + "rtt_ns": 1462458, + "rtt_ms": 1.462458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.783866439Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1534725, - "rtt_ms": 1.534725, - "checkpoint": 0, - "vertex_from": "22", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.783959709Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.480799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612395, - "rtt_ms": 1.612395, + "rtt_ns": 1612583, + "rtt_ms": 1.612583, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:33.784007339Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.480948-08:00" }, { "operation": "add_edge", - "rtt_ns": 811098, - "rtt_ms": 0.811098, + "rtt_ns": 2101542, + "rtt_ms": 2.101542, "checkpoint": 0, "vertex_from": "22", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.784015159Z" + "timestamp": "2025-11-27T04:03:15.481454-08:00" }, { "operation": "add_edge", - "rtt_ns": 806528, - "rtt_ms": 0.806528, + "rtt_ns": 1321583, + "rtt_ms": 1.321583, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.784045819Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:15.48147-08:00" }, { "operation": "add_edge", - "rtt_ns": 856368, - "rtt_ms": 0.856368, + "rtt_ns": 2187542, + "rtt_ms": 2.187542, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.784049499Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.481523-08:00" }, { "operation": "add_edge", - "rtt_ns": 879198, - "rtt_ms": 0.879198, + "rtt_ns": 2086667, + "rtt_ms": 2.086667, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.784125269Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.481651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021787, - "rtt_ms": 1.021787, + "rtt_ns": 1852625, + "rtt_ms": 1.852625, "checkpoint": 0, "vertex_from": "22", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.784646437Z" + "timestamp": "2025-11-27T04:03:15.482454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017117, - "rtt_ms": 1.017117, + "rtt_ns": 2026625, + "rtt_ms": 2.026625, "checkpoint": 0, "vertex_from": "22", "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.784680357Z" + "timestamp": "2025-11-27T04:03:15.482725-08:00" }, { "operation": "add_edge", - "rtt_ns": 905838, - "rtt_ms": 0.905838, + "rtt_ns": 2021041, + "rtt_ms": 2.021041, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:33.784773547Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.482786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695535, - "rtt_ms": 1.695535, + "rtt_ns": 2130541, + "rtt_ms": 2.130541, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:33.785657954Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:03:15.483079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561705, - "rtt_ms": 1.561705, + "rtt_ns": 2293833, + "rtt_ms": 2.293833, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.785689274Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:15.483094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042667, - "rtt_ms": 1.042667, + "rtt_ns": 2355875, + "rtt_ms": 2.355875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.785691094Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:15.483139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847735, - "rtt_ms": 1.847735, + "rtt_ns": 1796417, + "rtt_ms": 1.796417, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.785699354Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.483251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698305, - "rtt_ms": 1.698305, + "rtt_ns": 1939875, + "rtt_ms": 1.939875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.785715274Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.483464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708885, - "rtt_ms": 1.708885, + "rtt_ns": 2002125, + "rtt_ms": 2.002125, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "46", - "timestamp": "2025-11-27T01:23:33.785718274Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.483473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707425, - "rtt_ms": 1.707425, + "rtt_ns": 1057208, + "rtt_ms": 1.057208, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.785758834Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.483514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083367, - "rtt_ms": 1.083367, + "rtt_ns": 1907292, + "rtt_ms": 1.907292, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:33.785765244Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.483561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811744, - "rtt_ms": 1.811744, + "rtt_ns": 1378875, + "rtt_ms": 1.378875, "checkpoint": 0, "vertex_from": "22", "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.786586811Z" + "timestamp": "2025-11-27T04:03:15.484166-08:00" }, { "operation": "add_edge", - "rtt_ns": 2643092, - "rtt_ms": 2.643092, + "rtt_ns": 1670542, + "rtt_ms": 1.670542, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.786691571Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:15.484766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635045, - "rtt_ms": 1.635045, + "rtt_ns": 1733375, + "rtt_ms": 1.733375, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:33.787294579Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.484873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634325, - "rtt_ms": 1.634325, + "rtt_ns": 1375708, + "rtt_ms": 1.375708, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:33.787335289Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:15.48489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758725, - "rtt_ms": 1.758725, + "rtt_ns": 2180292, + "rtt_ms": 2.180292, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.787481169Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:15.484907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976594, - "rtt_ms": 1.976594, + "rtt_ns": 1463291, + "rtt_ms": 1.463291, "checkpoint": 0, "vertex_from": "22", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:33.787694908Z" + "timestamp": "2025-11-27T04:03:15.484928-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268813, - "rtt_ms": 2.268813, + "rtt_ns": 1735792, + "rtt_ms": 1.735792, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.787960297Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:15.484988-08:00" }, { "operation": "add_edge", - "rtt_ns": 2943541, - "rtt_ms": 2.943541, + "rtt_ns": 1545458, + "rtt_ms": 1.545458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.788636585Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.485019-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124374, - "rtt_ms": 2.124374, + "rtt_ns": 1940875, + "rtt_ms": 1.940875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.788713385Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:15.485021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2970181, - "rtt_ms": 2.970181, + "rtt_ns": 1609750, + "rtt_ms": 1.60975, "checkpoint": 0, "vertex_from": "22", "vertex_to": "278", - "timestamp": "2025-11-27T01:23:33.788736935Z" + "timestamp": "2025-11-27T04:03:15.485172-08:00" }, { "operation": "add_edge", - "rtt_ns": 2984691, - "rtt_ms": 2.984691, + "rtt_ns": 999166, + "rtt_ms": 0.999166, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.788745005Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:15.48589-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080864, - "rtt_ms": 2.080864, + "rtt_ns": 1739958, + "rtt_ms": 1.739958, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.788774015Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:15.485908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454236, - "rtt_ms": 1.454236, + "rtt_ns": 1208708, + "rtt_ms": 1.208708, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:33.788790645Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.485975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573706, - "rtt_ms": 1.573706, + "rtt_ns": 1201708, + "rtt_ms": 1.201708, "checkpoint": 0, - "vertex_from": "22", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:33.788871025Z" + "vertex_from": "23", + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.486376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440716, - "rtt_ms": 1.440716, + "rtt_ns": 1518458, + "rtt_ms": 1.518458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.788922985Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:15.486394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247326, - "rtt_ms": 1.247326, + "rtt_ns": 1523750, + "rtt_ms": 1.52375, "checkpoint": 0, "vertex_from": "22", "vertex_to": "329", - "timestamp": "2025-11-27T01:23:33.788943904Z" + "timestamp": "2025-11-27T04:03:15.486453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080547, - "rtt_ms": 1.080547, + "rtt_ns": 1472000, + "rtt_ms": 1.472, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:33.789042124Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:15.486494-08:00" }, { "operation": "add_edge", - "rtt_ns": 980707, - "rtt_ms": 0.980707, + "rtt_ns": 1489458, + "rtt_ms": 1.489458, "checkpoint": 0, "vertex_from": "23", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.789695172Z" + "timestamp": "2025-11-27T04:03:15.486511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182667, - "rtt_ms": 1.182667, + "rtt_ns": 1665500, + "rtt_ms": 1.6655, "checkpoint": 0, - "vertex_from": "23", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:33.789821852Z" + "vertex_from": "22", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.486573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125247, - "rtt_ms": 1.125247, + "rtt_ns": 1603625, + "rtt_ms": 1.603625, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.789900572Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:15.486594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201707, - "rtt_ms": 1.201707, + "rtt_ns": 956458, + "rtt_ms": 0.956458, "checkpoint": 0, "vertex_from": "23", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:33.789948272Z" + "timestamp": "2025-11-27T04:03:15.486848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146466, - "rtt_ms": 1.146466, + "rtt_ns": 866792, + "rtt_ms": 0.866792, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:33.790019501Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.487262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253026, - "rtt_ms": 1.253026, + "rtt_ns": 1497292, + "rtt_ms": 1.497292, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.790045671Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.487406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876075, - "rtt_ms": 1.876075, + "rtt_ns": 1165084, + "rtt_ms": 1.165084, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.79061617Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:15.487761-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1279084, + "rtt_ms": 1.279084, + "checkpoint": 0, + "vertex_from": "851", + "timestamp": "2025-11-27T04:03:15.487775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752175, - "rtt_ms": 1.752175, + "rtt_ns": 1434541, + "rtt_ms": 1.434541, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.79067569Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:15.487813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853985, - "rtt_ms": 1.853985, + "rtt_ns": 1374834, + "rtt_ms": 1.374834, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.790799659Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.487886-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1791235, - "rtt_ms": 1.791235, + "operation": "add_edge", + "rtt_ns": 1483125, + "rtt_ms": 1.483125, "checkpoint": 0, - "vertex_from": "851", - "timestamp": "2025-11-27T01:23:33.790835719Z" + "vertex_from": "23", + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.488057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450826, - "rtt_ms": 1.450826, + "rtt_ns": 2152583, + "rtt_ms": 2.152583, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.791147458Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.488128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363936, - "rtt_ms": 1.363936, + "rtt_ns": 1691250, + "rtt_ms": 1.69125, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:33.791266268Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.488145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569666, - "rtt_ms": 1.569666, + "rtt_ns": 1302917, + "rtt_ms": 1.302917, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.791394498Z" + "vertex_to": "851", + "timestamp": "2025-11-27T04:03:15.489079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484326, - "rtt_ms": 1.484326, + "rtt_ns": 1282750, + "rtt_ms": 1.28275, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.791434418Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.489097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939665, - "rtt_ms": 1.939665, + "rtt_ns": 1349375, + "rtt_ms": 1.349375, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.791960906Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:03:15.489111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394256, - "rtt_ms": 1.394256, + "rtt_ns": 1239584, + "rtt_ms": 1.239584, "checkpoint": 0, "vertex_from": "23", "vertex_to": "709", - "timestamp": "2025-11-27T01:23:33.792195585Z" + "timestamp": "2025-11-27T04:03:15.489127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053327, - "rtt_ms": 1.053327, + "rtt_ns": 1974208, + "rtt_ms": 1.974208, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.792202535Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.489237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368126, - "rtt_ms": 1.368126, + "rtt_ns": 2385000, + "rtt_ms": 2.385, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "851", - "timestamp": "2025-11-27T01:23:33.792204375Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.489241-08:00" }, { "operation": "add_edge", - "rtt_ns": 946067, - "rtt_ms": 0.946067, + "rtt_ns": 1848083, + "rtt_ms": 1.848083, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:33.792214085Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.489256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542015, - "rtt_ms": 1.542015, + "rtt_ns": 1374458, + "rtt_ms": 1.374458, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.792219215Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:15.489504-08:00" }, { "operation": "add_edge", - "rtt_ns": 2183834, - "rtt_ms": 2.183834, + "rtt_ns": 1436375, + "rtt_ms": 1.436375, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.792232925Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.489582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629525, - "rtt_ms": 1.629525, + "rtt_ns": 1586750, + "rtt_ms": 1.58675, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "602", - "timestamp": "2025-11-27T01:23:33.792247075Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.489645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421216, - "rtt_ms": 1.421216, + "rtt_ns": 888542, + "rtt_ms": 0.888542, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.792856493Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.489986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509635, - "rtt_ms": 1.509635, + "rtt_ns": 1773125, + "rtt_ms": 1.773125, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.792905323Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.490853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403576, - "rtt_ms": 1.403576, + "rtt_ns": 1930666, + "rtt_ms": 1.930666, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.793366372Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.491435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276486, - "rtt_ms": 1.276486, + "rtt_ns": 1964583, + "rtt_ms": 1.964583, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.793498671Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.491547-08:00" }, { "operation": "add_edge", - "rtt_ns": 706238, - "rtt_ms": 0.706238, + "rtt_ns": 1965042, + "rtt_ms": 1.965042, "checkpoint": 0, "vertex_from": "24", "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.793564531Z" + "timestamp": "2025-11-27T04:03:15.491613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362586, - "rtt_ms": 1.362586, + "rtt_ns": 2505000, + "rtt_ms": 2.505, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.793579991Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:15.491633-08:00" }, { "operation": "add_edge", - "rtt_ns": 775858, - "rtt_ms": 0.775858, + "rtt_ns": 2436125, + "rtt_ms": 2.436125, + "checkpoint": 0, + "vertex_from": "23", + "vertex_to": "557", + "timestamp": "2025-11-27T04:03:15.491674-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2078625, + "rtt_ms": 2.078625, "checkpoint": 0, "vertex_from": "24", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.793683841Z" + "timestamp": "2025-11-27T04:03:15.492065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456396, - "rtt_ms": 1.456396, + "rtt_ns": 2986667, + "rtt_ms": 2.986667, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.793705171Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.492228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562256, - "rtt_ms": 1.562256, + "rtt_ns": 3043833, + "rtt_ms": 3.043833, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:33.793759961Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.492305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613765, - "rtt_ms": 1.613765, + "rtt_ns": 3207875, + "rtt_ms": 3.207875, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:33.79382067Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:03:15.49232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678285, - "rtt_ms": 1.678285, + "rtt_ns": 2063000, + "rtt_ms": 2.063, "checkpoint": 0, - "vertex_from": "23", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:33.79388366Z" + "vertex_from": "24", + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:15.492917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661955, - "rtt_ms": 1.661955, + "rtt_ns": 1712542, + "rtt_ms": 1.712542, "checkpoint": 0, - "vertex_from": "23", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.79389674Z" + "vertex_from": "24", + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:15.493387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026587, - "rtt_ms": 1.026587, + "rtt_ns": 1475709, + "rtt_ms": 1.475709, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:33.794394389Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.493542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017807, - "rtt_ms": 1.017807, + "rtt_ns": 2003667, + "rtt_ms": 2.003667, "checkpoint": 0, "vertex_from": "24", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.794583348Z" + "timestamp": "2025-11-27T04:03:15.493552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015817, - "rtt_ms": 1.015817, + "rtt_ns": 2023042, + "rtt_ms": 2.023042, "checkpoint": 0, "vertex_from": "24", "vertex_to": "456", - "timestamp": "2025-11-27T01:23:33.794597588Z" + "timestamp": "2025-11-27T04:03:15.493637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118777, - "rtt_ms": 1.118777, + "rtt_ns": 2218667, + "rtt_ms": 2.218667, "checkpoint": 0, "vertex_from": "24", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.794618868Z" + "timestamp": "2025-11-27T04:03:15.493655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531545, - "rtt_ms": 1.531545, + "rtt_ns": 1945875, + "rtt_ms": 1.945875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.795292616Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1640045, - "rtt_ms": 1.640045, - "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:33.795347736Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.494176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714515, - "rtt_ms": 1.714515, + "rtt_ns": 1894250, + "rtt_ms": 1.89425, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:33.795399646Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.494202-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574333, - "rtt_ms": 2.574333, + "rtt_ns": 2002458, + "rtt_ms": 2.002458, "checkpoint": 0, "vertex_from": "24", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:33.796472513Z" + "timestamp": "2025-11-27T04:03:15.494324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2631362, - "rtt_ms": 2.631362, + "rtt_ns": 1463166, + "rtt_ms": 1.463166, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.796517192Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:15.494851-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146263, - "rtt_ms": 2.146263, + "rtt_ns": 1949583, + "rtt_ms": 1.949583, "checkpoint": 0, "vertex_from": "24", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.796542292Z" + "timestamp": "2025-11-27T04:03:15.494867-08:00" }, { "operation": "add_edge", - "rtt_ns": 2734342, - "rtt_ms": 2.734342, + "rtt_ns": 1386500, + "rtt_ms": 1.3865, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.796556342Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2702852, - "rtt_ms": 2.702852, - "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:33.79728754Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:15.494932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2867572, - "rtt_ms": 2.867572, + "rtt_ns": 3424333, + "rtt_ms": 3.424333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:33.79746706Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:15.495058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2955681, - "rtt_ms": 2.955681, + "rtt_ns": 1710875, + "rtt_ms": 1.710875, "checkpoint": 0, "vertex_from": "24", "vertex_to": "153", - "timestamp": "2025-11-27T01:23:33.797580249Z" + "timestamp": "2025-11-27T04:03:15.495264-08:00" }, { "operation": "add_edge", - "rtt_ns": 2322623, - "rtt_ms": 2.322623, + "rtt_ns": 2292875, + "rtt_ms": 2.292875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.797616959Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:03:15.496618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2302143, - "rtt_ms": 2.302143, + "rtt_ns": 2461750, + "rtt_ms": 2.46175, "checkpoint": 0, "vertex_from": "24", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.797703119Z" + "timestamp": "2025-11-27T04:03:15.496639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2515752, - "rtt_ms": 2.515752, + "rtt_ns": 3001625, + "rtt_ms": 3.001625, "checkpoint": 0, "vertex_from": "24", "vertex_to": "329", - "timestamp": "2025-11-27T01:23:33.797864478Z" + "timestamp": "2025-11-27T04:03:15.496657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505776, - "rtt_ms": 1.505776, + "rtt_ns": 3034333, + "rtt_ms": 3.034333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:33.797979618Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:15.496673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606425, - "rtt_ms": 1.606425, + "rtt_ns": 1837667, + "rtt_ms": 1.837667, "checkpoint": 0, "vertex_from": "24", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.798149747Z" + "timestamp": "2025-11-27T04:03:15.496692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633115, - "rtt_ms": 1.633115, + "rtt_ns": 2031958, + "rtt_ms": 2.031958, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "451", - "timestamp": "2025-11-27T01:23:33.798151387Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.496965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065257, - "rtt_ms": 1.065257, + "rtt_ns": 2828542, + "rtt_ms": 2.828542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.798770296Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1420795, - "rtt_ms": 1.420795, - "checkpoint": 0, - "vertex_from": "793", - "timestamp": "2025-11-27T01:23:33.798890645Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:15.497032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622625, - "rtt_ms": 1.622625, + "rtt_ns": 1782166, + "rtt_ms": 1.782166, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.798912635Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:15.497048-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1340636, - "rtt_ms": 1.340636, + "operation": "add_vertex", + "rtt_ns": 2202209, + "rtt_ms": 2.202209, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:33.798922325Z" + "vertex_from": "793", + "timestamp": "2025-11-27T04:03:15.497264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309196, - "rtt_ms": 1.309196, + "rtt_ns": 2651125, + "rtt_ms": 2.651125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:33.798927505Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.49752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254777, - "rtt_ms": 1.254777, + "rtt_ns": 1195250, + "rtt_ms": 1.19525, "checkpoint": 0, "vertex_from": "24", "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.799120615Z" + "timestamp": "2025-11-27T04:03:15.497853-08:00" }, { "operation": "add_edge", - "rtt_ns": 3015661, - "rtt_ms": 3.015661, + "rtt_ns": 1798958, + "rtt_ms": 1.798958, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.799574243Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.498492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674405, - "rtt_ms": 1.674405, + "rtt_ns": 2297958, + "rtt_ms": 2.297958, "checkpoint": 0, "vertex_from": "24", "vertex_to": "172", - "timestamp": "2025-11-27T01:23:33.799655423Z" + "timestamp": "2025-11-27T04:03:15.498972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612016, - "rtt_ms": 1.612016, + "rtt_ns": 2119625, + "rtt_ms": 2.119625, "checkpoint": 0, "vertex_from": "24", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.799765183Z" + "timestamp": "2025-11-27T04:03:15.499085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900725, - "rtt_ms": 1.900725, + "rtt_ns": 2562250, + "rtt_ms": 2.56225, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.800052062Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:15.499182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688175, - "rtt_ms": 1.688175, + "rtt_ns": 2607000, + "rtt_ms": 2.607, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "793", - "timestamp": "2025-11-27T01:23:33.80057926Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.499247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937114, - "rtt_ms": 1.937114, + "rtt_ns": 2007708, + "rtt_ms": 2.007708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.80070876Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:03:15.499272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871155, - "rtt_ms": 1.871155, + "rtt_ns": 2259292, + "rtt_ms": 2.259292, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:33.8007848Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.499292-08:00" }, { "operation": "add_edge", - "rtt_ns": 2436943, - "rtt_ms": 2.436943, + "rtt_ns": 2480709, + "rtt_ms": 2.480709, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.801365748Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:15.499529-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018994, - "rtt_ms": 2.018994, + "rtt_ns": 2431875, + "rtt_ms": 2.431875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:33.801594347Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.499953-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025804, - "rtt_ms": 2.025804, + "rtt_ns": 1265416, + "rtt_ms": 1.265416, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:33.801683567Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.500515-08:00" }, { "operation": "add_edge", - "rtt_ns": 3940578, - "rtt_ms": 3.940578, + "rtt_ns": 1261833, + "rtt_ms": 1.261833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:33.803062573Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:15.500535-08:00" }, { "operation": "add_edge", - "rtt_ns": 3123080, - "rtt_ms": 3.12308, + "rtt_ns": 1248291, + "rtt_ms": 1.248291, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.803176202Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:15.500542-08:00" }, { "operation": "add_edge", - "rtt_ns": 4272007, - "rtt_ms": 4.272007, + "rtt_ns": 1779916, + "rtt_ms": 1.779916, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.803197172Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:15.500753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840154, - "rtt_ms": 1.840154, + "rtt_ns": 3030792, + "rtt_ms": 3.030792, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:33.803207562Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.500885-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2443092, - "rtt_ms": 2.443092, + "rtt_ns": 1552125, + "rtt_ms": 1.552125, "checkpoint": 0, "vertex_from": "311", - "timestamp": "2025-11-27T01:23:33.803230482Z" + "timestamp": "2025-11-27T04:03:15.501084-08:00" }, { "operation": "add_edge", - "rtt_ns": 3467539, - "rtt_ms": 3.467539, + "rtt_ns": 1380125, + "rtt_ms": 1.380125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "55", - "timestamp": "2025-11-27T01:23:33.803234572Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:15.501336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2530062, - "rtt_ms": 2.530062, + "rtt_ns": 1547250, + "rtt_ms": 1.54725, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:33.803239942Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:15.502301-08:00" }, { "operation": "add_edge", - "rtt_ns": 2680142, - "rtt_ms": 2.680142, + "rtt_ns": 3138666, + "rtt_ms": 3.138666, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.803261942Z" + "vertex_to": "55", + "timestamp": "2025-11-27T04:03:15.502321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170386, - "rtt_ms": 1.170386, + "rtt_ns": 1853500, + "rtt_ms": 1.8535, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:33.804234539Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.502389-08:00" }, { "operation": "add_edge", - "rtt_ns": 2663272, - "rtt_ms": 2.663272, + "rtt_ns": 3918666, + "rtt_ms": 3.918666, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:33.804258859Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:15.502411-08:00" }, { "operation": "add_edge", - "rtt_ns": 2647672, - "rtt_ms": 2.647672, + "rtt_ns": 3432333, + "rtt_ms": 3.432333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.804332169Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:15.502519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135137, - "rtt_ms": 1.135137, + "rtt_ns": 1836542, + "rtt_ms": 1.836542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.804344159Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.502723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127557, - "rtt_ms": 1.127557, + "rtt_ns": 2226833, + "rtt_ms": 2.226833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:33.804368759Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:15.502743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192557, - "rtt_ms": 1.192557, + "rtt_ns": 1666042, + "rtt_ms": 1.666042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.804391599Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:03:15.502751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838645, - "rtt_ms": 1.838645, + "rtt_ns": 2321084, + "rtt_ms": 2.321084, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "311", - "timestamp": "2025-11-27T01:23:33.805069767Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:15.502865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833875, - "rtt_ms": 1.833875, + "rtt_ns": 2095834, + "rtt_ms": 2.095834, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:33.805070697Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.503434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896175, - "rtt_ms": 1.896175, + "rtt_ns": 1896000, + "rtt_ms": 1.896, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:33.805073557Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:15.504218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901985, - "rtt_ms": 1.901985, + "rtt_ns": 1746042, + "rtt_ms": 1.746042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.805166047Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:15.504268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313726, - "rtt_ms": 1.313726, + "rtt_ns": 1680625, + "rtt_ms": 1.680625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.805684265Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.504425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483396, - "rtt_ms": 1.483396, + "rtt_ns": 1675792, + "rtt_ms": 1.675792, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:33.805719195Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:15.504429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497166, - "rtt_ms": 1.497166, + "rtt_ns": 2080917, + "rtt_ms": 2.080917, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.805842075Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.504472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466586, - "rtt_ms": 1.466586, + "rtt_ns": 1914125, + "rtt_ms": 1.914125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.805860475Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.504638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882495, - "rtt_ms": 1.882495, + "rtt_ns": 2613625, + "rtt_ms": 2.613625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.806217114Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:15.504916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376146, - "rtt_ms": 1.376146, + "rtt_ns": 2536375, + "rtt_ms": 2.536375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:33.806543623Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:15.504948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511406, - "rtt_ms": 1.511406, + "rtt_ns": 2140167, + "rtt_ms": 2.140167, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.806582793Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:15.505032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517606, - "rtt_ms": 1.517606, + "rtt_ns": 1248625, + "rtt_ms": 1.248625, "checkpoint": 0, "vertex_from": "24", "vertex_to": "897", - "timestamp": "2025-11-27T01:23:33.806590433Z" + "timestamp": "2025-11-27T04:03:15.505468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532066, - "rtt_ms": 1.532066, + "rtt_ns": 1603334, + "rtt_ms": 1.603334, "checkpoint": 0, "vertex_from": "24", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.806606813Z" + "timestamp": "2025-11-27T04:03:15.505872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397136, - "rtt_ms": 1.397136, + "rtt_ns": 1546791, + "rtt_ms": 1.546791, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:33.807082641Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.507016-08:00" }, { "operation": "add_edge", - "rtt_ns": 969627, - "rtt_ms": 0.969627, + "rtt_ns": 2548416, + "rtt_ms": 2.548416, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.807188151Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:15.507022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363016, - "rtt_ms": 1.363016, + "rtt_ns": 2409666, + "rtt_ms": 2.409666, "checkpoint": 0, "vertex_from": "24", "vertex_to": "724", - "timestamp": "2025-11-27T01:23:33.807206271Z" + "timestamp": "2025-11-27T04:03:15.507048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486966, - "rtt_ms": 1.486966, + "rtt_ns": 2627416, + "rtt_ms": 2.627416, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:33.807207081Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:15.507059-08:00" }, { "operation": "add_edge", - "rtt_ns": 2961102, - "rtt_ms": 2.961102, + "rtt_ns": 1471750, + "rtt_ms": 1.47175, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:33.807221561Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.507345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701555, - "rtt_ms": 1.701555, + "rtt_ns": 3927042, + "rtt_ms": 3.927042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.80756284Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.507362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865374, - "rtt_ms": 1.865374, + "rtt_ns": 2952208, + "rtt_ms": 2.952208, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:33.808473707Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:15.507378-08:00" }, { "operation": "add_edge", - "rtt_ns": 2045594, - "rtt_ms": 2.045594, + "rtt_ns": 2444666, + "rtt_ms": 2.444666, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.808629687Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.507396-08:00" }, { "operation": "add_edge", - "rtt_ns": 2271443, - "rtt_ms": 2.271443, + "rtt_ns": 2645709, + "rtt_ms": 2.645709, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.808862776Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.507562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381593, - "rtt_ms": 2.381593, + "rtt_ns": 2576209, + "rtt_ms": 2.576209, "checkpoint": 0, "vertex_from": "24", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:33.808927876Z" + "timestamp": "2025-11-27T04:03:15.507609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372543, - "rtt_ms": 2.372543, + "rtt_ns": 1167666, + "rtt_ms": 1.167666, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.809456034Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.508531-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303833, - "rtt_ms": 2.303833, + "rtt_ns": 1644417, + "rtt_ms": 1.644417, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.809493554Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:15.508991-08:00" }, { "operation": "add_edge", - "rtt_ns": 2336443, - "rtt_ms": 2.336443, + "rtt_ns": 1395208, + "rtt_ms": 1.395208, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.809559954Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.509005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2367113, - "rtt_ms": 2.367113, + "rtt_ns": 2001083, + "rtt_ms": 2.001083, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:33.809575524Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.50905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491783, - "rtt_ms": 2.491783, + "rtt_ns": 2025875, + "rtt_ms": 2.025875, "checkpoint": 0, "vertex_from": "24", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.809699794Z" + "timestamp": "2025-11-27T04:03:15.509087-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201694, - "rtt_ms": 2.201694, + "rtt_ns": 2124916, + "rtt_ms": 2.124916, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.809765634Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:15.509143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339376, - "rtt_ms": 1.339376, + "rtt_ns": 1749166, + "rtt_ms": 1.749166, "checkpoint": 0, "vertex_from": "24", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.809814093Z" + "timestamp": "2025-11-27T04:03:15.509145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231186, - "rtt_ms": 1.231186, + "rtt_ns": 2181333, + "rtt_ms": 2.181333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.809861683Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.509204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404786, - "rtt_ms": 1.404786, + "rtt_ns": 1661542, + "rtt_ms": 1.661542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:33.810334282Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.509225-08:00" }, { "operation": "add_edge", - "rtt_ns": 909658, - "rtt_ms": 0.909658, + "rtt_ns": 1887750, + "rtt_ms": 1.88775, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:33.810367252Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.509267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505096, - "rtt_ms": 1.505096, + "rtt_ns": 966541, + "rtt_ms": 0.966541, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.810368672Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.510171-08:00" }, { "operation": "add_edge", - "rtt_ns": 803488, - "rtt_ms": 0.803488, + "rtt_ns": 1355250, + "rtt_ms": 1.35525, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.810380902Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:15.510362-08:00" }, { "operation": "add_edge", - "rtt_ns": 866118, - "rtt_ms": 0.866118, + "rtt_ns": 1459708, + "rtt_ms": 1.459708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:33.810427162Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:15.510452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074027, - "rtt_ms": 1.074027, + "rtt_ns": 1422333, + "rtt_ms": 1.422333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.810568331Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.510512-08:00" }, { "operation": "add_edge", - "rtt_ns": 909047, - "rtt_ms": 0.909047, + "rtt_ns": 1432917, + "rtt_ms": 1.432917, "checkpoint": 0, "vertex_from": "24", "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.810609841Z" + "timestamp": "2025-11-27T04:03:15.510577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381266, - "rtt_ms": 1.381266, + "rtt_ns": 2059375, + "rtt_ms": 2.059375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:33.811243779Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:15.510593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520025, - "rtt_ms": 1.520025, + "rtt_ns": 1641000, + "rtt_ms": 1.641, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:33.811286969Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:03:15.510692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476626, - "rtt_ms": 1.476626, + "rtt_ns": 1474959, + "rtt_ms": 1.474959, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.811291779Z" + "vertex_to": "199", + "timestamp": "2025-11-27T04:03:15.510742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278106, - "rtt_ms": 1.278106, + "rtt_ns": 1646000, + "rtt_ms": 1.646, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.811706918Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:15.510871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452035, - "rtt_ms": 1.452035, + "rtt_ns": 1727000, + "rtt_ms": 1.727, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.811822097Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:15.510873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454705, - "rtt_ms": 1.454705, + "rtt_ns": 1656291, + "rtt_ms": 1.656291, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.811836747Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.511829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857875, - "rtt_ms": 1.857875, + "rtt_ns": 1152584, + "rtt_ms": 1.152584, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:33.812427896Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:15.511846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821395, - "rtt_ms": 1.821395, + "rtt_ns": 1668167, + "rtt_ms": 1.668167, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.812432126Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:15.512031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188647, - "rtt_ms": 1.188647, + "rtt_ns": 1467875, + "rtt_ms": 1.467875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:33.812433626Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:15.512046-08:00" }, { "operation": "add_edge", - "rtt_ns": 2069634, - "rtt_ms": 2.069634, + "rtt_ns": 1188875, + "rtt_ms": 1.188875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:33.812439626Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.512061-08:00" }, { "operation": "add_edge", - "rtt_ns": 2255813, - "rtt_ms": 2.255813, + "rtt_ns": 1697708, + "rtt_ms": 1.697708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "199", - "timestamp": "2025-11-27T01:23:33.812591295Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:15.512151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314826, - "rtt_ms": 1.314826, + "rtt_ns": 1572916, + "rtt_ms": 1.572916, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.812607765Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:15.512166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321416, - "rtt_ms": 1.321416, + "rtt_ns": 1705250, + "rtt_ms": 1.70525, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.812609735Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.512218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824474, - "rtt_ms": 1.824474, + "rtt_ns": 1530875, + "rtt_ms": 1.530875, "checkpoint": 0, "vertex_from": "24", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.813532422Z" + "timestamp": "2025-11-27T04:03:15.512405-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231314, - "rtt_ms": 2.231314, + "rtt_ns": 2104792, + "rtt_ms": 2.104792, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.814069721Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.512848-08:00" }, { "operation": "add_edge", - "rtt_ns": 2862342, - "rtt_ms": 2.862342, + "rtt_ns": 1289916, + "rtt_ms": 1.289916, "checkpoint": 0, "vertex_from": "24", "vertex_to": "582", - "timestamp": "2025-11-27T01:23:33.814685779Z" + "timestamp": "2025-11-27T04:03:15.513119-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376452, - "rtt_ms": 2.376452, + "rtt_ns": 1263458, + "rtt_ms": 1.263458, "checkpoint": 0, "vertex_from": "24", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.814817318Z" + "timestamp": "2025-11-27T04:03:15.513415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533722, - "rtt_ms": 2.533722, + "rtt_ns": 1594500, + "rtt_ms": 1.5945, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.814963798Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:15.513641-08:00" }, { "operation": "add_edge", - "rtt_ns": 2557112, - "rtt_ms": 2.557112, + "rtt_ns": 1700750, + "rtt_ms": 1.70075, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:33.814990418Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:03:15.513868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497286, - "rtt_ms": 1.497286, + "rtt_ns": 1739667, + "rtt_ms": 1.739667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:33.815030998Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.513958-08:00" }, { "operation": "add_edge", - "rtt_ns": 2445593, - "rtt_ms": 2.445593, + "rtt_ns": 1915292, + "rtt_ms": 1.915292, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.815054228Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:15.513977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491373, - "rtt_ms": 2.491373, + "rtt_ns": 2326833, + "rtt_ms": 2.326833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:33.815106008Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.514173-08:00" }, { "operation": "add_edge", - "rtt_ns": 2540623, - "rtt_ms": 2.540623, + "rtt_ns": 2700417, + "rtt_ms": 2.700417, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:33.815134388Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.514732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162646, - "rtt_ms": 1.162646, + "rtt_ns": 2462708, + "rtt_ms": 2.462708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.815239207Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:15.51487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2813521, - "rtt_ms": 2.813521, + "rtt_ns": 2024417, + "rtt_ms": 2.024417, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:33.815249957Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:15.514873-08:00" }, { "operation": "add_edge", - "rtt_ns": 745448, - "rtt_ms": 0.745448, + "rtt_ns": 1548750, + "rtt_ms": 1.54875, "checkpoint": 0, "vertex_from": "24", "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.815434627Z" + "timestamp": "2025-11-27T04:03:15.514967-08:00" }, { "operation": "add_edge", - "rtt_ns": 695008, - "rtt_ms": 0.695008, + "rtt_ns": 1889667, + "rtt_ms": 1.889667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:33.815513776Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.51501-08:00" }, { "operation": "add_edge", - "rtt_ns": 671558, - "rtt_ms": 0.671558, + "rtt_ns": 1208125, + "rtt_ms": 1.208125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:33.815664806Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:15.515077-08:00" }, { "operation": "add_edge", - "rtt_ns": 800648, - "rtt_ms": 0.800648, + "rtt_ns": 1446208, + "rtt_ms": 1.446208, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:33.815766086Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:15.515089-08:00" }, { "operation": "add_edge", - "rtt_ns": 756928, - "rtt_ms": 0.756928, + "rtt_ns": 1213500, + "rtt_ms": 1.2135, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:33.815789516Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:15.515388-08:00" }, { "operation": "add_edge", - "rtt_ns": 772597, - "rtt_ms": 0.772597, + "rtt_ns": 1594667, + "rtt_ms": 1.594667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:33.815827725Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:15.515554-08:00" }, { "operation": "add_edge", - "rtt_ns": 725397, - "rtt_ms": 0.725397, + "rtt_ns": 1576708, + "rtt_ms": 1.576708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.815860655Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:15.515555-08:00" }, { "operation": "add_edge", - "rtt_ns": 827567, - "rtt_ms": 0.827567, + "rtt_ns": 1493750, + "rtt_ms": 1.49375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.815935005Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.516365-08:00" }, { "operation": "add_edge", - "rtt_ns": 757108, - "rtt_ms": 0.757108, + "rtt_ns": 1482875, + "rtt_ms": 1.482875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.816008125Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:15.516494-08:00" }, { "operation": "add_edge", - "rtt_ns": 806638, - "rtt_ms": 0.806638, + "rtt_ns": 1776167, + "rtt_ms": 1.776167, "checkpoint": 0, "vertex_from": "24", "vertex_to": "525", - "timestamp": "2025-11-27T01:23:33.816048245Z" + "timestamp": "2025-11-27T04:03:15.516651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075357, - "rtt_ms": 1.075357, + "rtt_ns": 1573291, + "rtt_ms": 1.573291, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:33.816511404Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:03:15.516663-08:00" }, { "operation": "add_edge", - "rtt_ns": 744287, - "rtt_ms": 0.744287, + "rtt_ns": 1934833, + "rtt_ms": 1.934833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:33.816535183Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.516668-08:00" }, { "operation": "add_edge", - "rtt_ns": 849507, - "rtt_ms": 0.849507, + "rtt_ns": 1839459, + "rtt_ms": 1.839459, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:33.816617903Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.516807-08:00" }, { "operation": "add_edge", - "rtt_ns": 961597, - "rtt_ms": 0.961597, + "rtt_ns": 1744208, + "rtt_ms": 1.744208, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "57", - "timestamp": "2025-11-27T01:23:33.816629143Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:03:15.516824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188507, - "rtt_ms": 1.188507, + "rtt_ns": 1467833, + "rtt_ms": 1.467833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:33.816703843Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:15.516856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077377, - "rtt_ms": 1.077377, + "rtt_ns": 1318000, + "rtt_ms": 1.318, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.816939242Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.516873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835085, - "rtt_ms": 1.835085, + "rtt_ns": 1454834, + "rtt_ms": 1.454834, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.81766436Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:15.517009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944075, - "rtt_ms": 1.944075, + "rtt_ns": 1381459, + "rtt_ms": 1.381459, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.81795417Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.517747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103064, - "rtt_ms": 2.103064, + "rtt_ns": 1122750, + "rtt_ms": 1.12275, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:33.818039519Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:15.517997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145984, - "rtt_ms": 2.145984, + "rtt_ns": 1333959, + "rtt_ms": 1.333959, "checkpoint": 0, "vertex_from": "24", "vertex_to": "131", - "timestamp": "2025-11-27T01:23:33.818195589Z" + "timestamp": "2025-11-27T04:03:15.517998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334013, - "rtt_ms": 2.334013, + "rtt_ns": 1549042, + "rtt_ms": 1.549042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.818847567Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:15.518044-08:00" }, { "operation": "add_edge", - "rtt_ns": 2333184, - "rtt_ms": 2.333184, + "rtt_ns": 1247042, + "rtt_ms": 1.247042, "checkpoint": 0, "vertex_from": "24", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.818953567Z" + "timestamp": "2025-11-27T04:03:15.518072-08:00" }, { "operation": "add_edge", - "rtt_ns": 2439764, - "rtt_ms": 2.439764, + "rtt_ns": 1447250, + "rtt_ms": 1.44725, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:33.818976727Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:15.518099-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1476916, + "rtt_ms": 1.476916, + "checkpoint": 0, + "vertex_from": "24", + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.518145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383654, - "rtt_ms": 2.383654, + "rtt_ns": 1504000, + "rtt_ms": 1.504, "checkpoint": 0, "vertex_from": "24", "vertex_to": "232", - "timestamp": "2025-11-27T01:23:33.819013997Z" + "timestamp": "2025-11-27T04:03:15.518361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2366703, - "rtt_ms": 2.366703, + "rtt_ns": 1761458, + "rtt_ms": 1.761458, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:33.819072826Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:15.518569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2166314, - "rtt_ms": 2.166314, + "rtt_ns": 1972917, + "rtt_ms": 1.972917, "checkpoint": 0, "vertex_from": "24", "vertex_to": "657", - "timestamp": "2025-11-27T01:23:33.819107026Z" + "timestamp": "2025-11-27T04:03:15.518983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469446, - "rtt_ms": 1.469446, + "rtt_ns": 1866583, + "rtt_ms": 1.866583, "checkpoint": 0, "vertex_from": "24", "vertex_to": "393", - "timestamp": "2025-11-27T01:23:33.819137176Z" + "timestamp": "2025-11-27T04:03:15.519617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139417, - "rtt_ms": 1.139417, + "rtt_ns": 1276042, + "rtt_ms": 1.276042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.819180466Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:15.519638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019067, - "rtt_ms": 1.019067, + "rtt_ns": 1652375, + "rtt_ms": 1.652375, "checkpoint": 0, "vertex_from": "24", "vertex_to": "52", - "timestamp": "2025-11-27T01:23:33.819216126Z" + "timestamp": "2025-11-27T04:03:15.519697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338486, - "rtt_ms": 1.338486, + "rtt_ns": 1704167, + "rtt_ms": 1.704167, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:33.819294456Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:15.519703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196207, - "rtt_ms": 1.196207, + "rtt_ns": 2429000, + "rtt_ms": 2.429, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:33.820046164Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:15.520575-08:00" }, { "operation": "add_edge", - "rtt_ns": 945618, - "rtt_ms": 0.945618, + "rtt_ns": 1593750, + "rtt_ms": 1.59375, "checkpoint": 0, "vertex_from": "24", "vertex_to": "88", - "timestamp": "2025-11-27T01:23:33.820054214Z" + "timestamp": "2025-11-27T04:03:15.52058-08:00" }, { "operation": "add_edge", - "rtt_ns": 938817, - "rtt_ms": 0.938817, + "rtt_ns": 2493625, + "rtt_ms": 2.493625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.820076893Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:15.520593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073836, - "rtt_ms": 1.073836, + "rtt_ns": 2525667, + "rtt_ms": 2.525667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:33.820089653Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:15.520598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021657, - "rtt_ms": 1.021657, + "rtt_ns": 2279375, + "rtt_ms": 2.279375, "checkpoint": 0, "vertex_from": "24", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:33.820096163Z" + "timestamp": "2025-11-27T04:03:15.520849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144106, - "rtt_ms": 1.144106, + "rtt_ns": 1254084, + "rtt_ms": 1.254084, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:33.820099323Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.520872-08:00" }, { "operation": "add_edge", - "rtt_ns": 934997, - "rtt_ms": 0.934997, + "rtt_ns": 3138334, + "rtt_ms": 3.138334, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.820151983Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:15.521137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057417, - "rtt_ms": 1.057417, + "rtt_ns": 1496458, + "rtt_ms": 1.496458, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:33.820239073Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:15.521202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277656, - "rtt_ms": 1.277656, + "rtt_ns": 1619709, + "rtt_ms": 1.619709, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:33.820256903Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:15.521318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701865, - "rtt_ms": 1.701865, + "rtt_ns": 1802458, + "rtt_ms": 1.802458, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:33.820998521Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:15.521441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212396, - "rtt_ms": 1.212396, + "rtt_ns": 1054792, + "rtt_ms": 1.054792, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.82126092Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:15.521635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118047, - "rtt_ms": 1.118047, + "rtt_ns": 1688416, + "rtt_ms": 1.688416, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.82135862Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:15.522826-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1327577, - "rtt_ms": 1.327577, + "operation": "add_vertex", + "rtt_ns": 1567458, + "rtt_ms": 1.567458, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "405", - "timestamp": "2025-11-27T01:23:33.82140729Z" + "vertex_from": "279", + "timestamp": "2025-11-27T04:03:15.522888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353366, - "rtt_ms": 1.353366, + "rtt_ns": 2515500, + "rtt_ms": 2.5155, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:33.821451519Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:15.523115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387576, - "rtt_ms": 1.387576, + "rtt_ns": 2562500, + "rtt_ms": 2.5625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.821488359Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.523139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460546, - "rtt_ms": 1.460546, + "rtt_ns": 1534959, + "rtt_ms": 1.534959, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:33.821551769Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:15.523171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519135, - "rtt_ms": 1.519135, + "rtt_ns": 2007708, + "rtt_ms": 2.007708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:33.821576179Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:15.52321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515156, - "rtt_ms": 1.515156, + "rtt_ns": 2431000, + "rtt_ms": 2.431, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:33.821669089Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:15.523282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292016, - "rtt_ms": 1.292016, + "rtt_ns": 2587375, + "rtt_ms": 2.587375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:33.822292527Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.52346-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2039004, - "rtt_ms": 2.039004, + "operation": "add_edge", + "rtt_ns": 3229000, + "rtt_ms": 3.229, "checkpoint": 0, - "vertex_from": "279", - "timestamp": "2025-11-27T01:23:33.822299017Z" + "vertex_from": "24", + "vertex_to": "405", + "timestamp": "2025-11-27T04:03:15.523823-08:00" }, { "operation": "add_edge", - "rtt_ns": 895177, - "rtt_ms": 0.895177, + "rtt_ns": 1126291, + "rtt_ms": 1.126291, "checkpoint": 0, "vertex_from": "25", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.822304127Z" + "timestamp": "2025-11-27T04:03:15.524242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167486, - "rtt_ms": 1.167486, + "rtt_ns": 1527584, + "rtt_ms": 1.527584, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:33.822430676Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.524355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611236, - "rtt_ms": 1.611236, + "rtt_ns": 1233500, + "rtt_ms": 1.2335, "checkpoint": 0, "vertex_from": "25", "vertex_to": "338", - "timestamp": "2025-11-27T01:23:33.823063685Z" + "timestamp": "2025-11-27T04:03:15.524373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609825, - "rtt_ms": 1.609825, + "rtt_ns": 1234125, + "rtt_ms": 1.234125, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:33.823162624Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:15.524536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531475, - "rtt_ms": 1.531475, + "rtt_ns": 1335958, + "rtt_ms": 1.335958, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "119", - "timestamp": "2025-11-27T01:23:33.823201534Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:15.524547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739045, - "rtt_ms": 1.739045, + "rtt_ns": 1615250, + "rtt_ms": 1.61525, "checkpoint": 0, "vertex_from": "25", "vertex_to": "28", - "timestamp": "2025-11-27T01:23:33.823230304Z" + "timestamp": "2025-11-27T04:03:15.524787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659855, - "rtt_ms": 1.659855, + "rtt_ns": 1674209, + "rtt_ms": 1.674209, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:33.823237194Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:03:15.525135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906304, - "rtt_ms": 1.906304, + "rtt_ns": 1588209, + "rtt_ms": 1.588209, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.823266404Z" + "vertex_from": "25", + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.525412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319196, - "rtt_ms": 1.319196, + "rtt_ns": 1198208, + "rtt_ms": 1.198208, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "279", - "timestamp": "2025-11-27T01:23:33.823618593Z" + "vertex_from": "25", + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.525442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213437, - "rtt_ms": 1.213437, + "rtt_ns": 1319041, + "rtt_ms": 1.319041, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.823647213Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:15.525693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394016, - "rtt_ms": 1.394016, + "rtt_ns": 1171250, + "rtt_ms": 1.17125, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.823699973Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.525711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435016, - "rtt_ms": 1.435016, + "rtt_ns": 1219750, + "rtt_ms": 1.21975, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.823729343Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:03:15.525768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104007, - "rtt_ms": 1.104007, + "rtt_ns": 1494625, + "rtt_ms": 1.494625, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.824337471Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.525851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095487, - "rtt_ms": 1.095487, + "rtt_ns": 1384875, + "rtt_ms": 1.384875, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.824364241Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:15.526172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328876, - "rtt_ms": 1.328876, + "rtt_ns": 3299625, + "rtt_ms": 3.299625, "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.82449315Z" + "vertex_from": "24", + "vertex_to": "279", + "timestamp": "2025-11-27T04:03:15.526188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335516, - "rtt_ms": 1.335516, + "rtt_ns": 1064625, + "rtt_ms": 1.064625, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "421", - "timestamp": "2025-11-27T01:23:33.82453805Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.526201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445946, - "rtt_ms": 1.445946, + "rtt_ns": 1057666, + "rtt_ms": 1.057666, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.82468436Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.52647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653035, - "rtt_ms": 1.653035, + "rtt_ns": 5387458, + "rtt_ms": 5.387458, "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:33.8247184Z" + "vertex_from": "24", + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:15.52683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627755, - "rtt_ms": 1.627755, + "rtt_ns": 1018167, + "rtt_ms": 1.018167, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:33.825358318Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.527222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742425, - "rtt_ms": 1.742425, + "rtt_ns": 1794250, + "rtt_ms": 1.79425, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.825390648Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.527239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713755, - "rtt_ms": 1.713755, + "rtt_ns": 1065459, + "rtt_ms": 1.065459, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.825415348Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:15.527255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811025, - "rtt_ms": 1.811025, + "rtt_ns": 903459, + "rtt_ms": 0.903459, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.825430888Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.527375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296866, - "rtt_ms": 1.296866, + "rtt_ns": 1691625, + "rtt_ms": 1.691625, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.825791226Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:15.527461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453475, - "rtt_ms": 1.453475, + "rtt_ns": 1387667, + "rtt_ms": 1.387667, "checkpoint": 0, "vertex_from": "25", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.825819076Z" + "timestamp": "2025-11-27T04:03:15.527561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324246, - "rtt_ms": 1.324246, + "rtt_ns": 1102709, + "rtt_ms": 1.102709, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.825868426Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.528478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591085, - "rtt_ms": 1.591085, + "rtt_ns": 2871541, + "rtt_ms": 2.871541, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.825930026Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.528583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246756, - "rtt_ms": 1.246756, + "rtt_ns": 2731458, + "rtt_ms": 2.731458, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.825968196Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.528583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314316, - "rtt_ms": 1.314316, + "rtt_ns": 1424750, + "rtt_ms": 1.42475, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.826000046Z" + "vertex_to": "205", + "timestamp": "2025-11-27T04:03:15.528647-08:00" }, { "operation": "add_edge", - "rtt_ns": 803087, - "rtt_ms": 0.803087, + "rtt_ns": 3343500, + "rtt_ms": 3.3435, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "205", - "timestamp": "2025-11-27T01:23:33.826163005Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.529038-08:00" }, { "operation": "add_edge", - "rtt_ns": 796207, - "rtt_ms": 0.796207, + "rtt_ns": 1890166, + "rtt_ms": 1.890166, "checkpoint": 0, "vertex_from": "25", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.826187815Z" + "timestamp": "2025-11-27T04:03:15.529129-08:00" }, { "operation": "add_edge", - "rtt_ns": 820938, - "rtt_ms": 0.820938, + "rtt_ns": 1742292, + "rtt_ms": 1.742292, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.826254195Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:15.529204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314196, - "rtt_ms": 1.314196, + "rtt_ns": 2836959, + "rtt_ms": 2.836959, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:33.826730514Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.529668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868175, - "rtt_ms": 1.868175, + "rtt_ns": 2433917, + "rtt_ms": 2.433917, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.827737811Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:15.529689-08:00" }, { "operation": "add_edge", - "rtt_ns": 2604683, - "rtt_ms": 2.604683, + "rtt_ns": 2125667, + "rtt_ms": 2.125667, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.828397749Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:15.52969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2545612, - "rtt_ms": 2.545612, + "rtt_ns": 1531750, + "rtt_ms": 1.53175, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.828546718Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:15.530117-08:00" }, { "operation": "add_edge", - "rtt_ns": 2754012, - "rtt_ms": 2.754012, + "rtt_ns": 1655375, + "rtt_ms": 1.655375, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:33.828574698Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.530135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2653802, - "rtt_ms": 2.653802, + "rtt_ns": 1487792, + "rtt_ms": 1.487792, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:33.828586238Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.530136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2691762, - "rtt_ms": 2.691762, + "rtt_ns": 1558834, + "rtt_ms": 1.558834, "checkpoint": 0, "vertex_from": "25", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.828660968Z" + "timestamp": "2025-11-27T04:03:15.530145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2519343, - "rtt_ms": 2.519343, + "rtt_ns": 1254125, + "rtt_ms": 1.254125, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.828683648Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:03:15.530459-08:00" }, { "operation": "add_edge", - "rtt_ns": 2528393, - "rtt_ms": 2.528393, + "rtt_ns": 1634000, + "rtt_ms": 1.634, "checkpoint": 0, "vertex_from": "25", "vertex_to": "204", - "timestamp": "2025-11-27T01:23:33.828717408Z" + "timestamp": "2025-11-27T04:03:15.530765-08:00" }, { "operation": "add_edge", - "rtt_ns": 2484393, - "rtt_ms": 2.484393, + "rtt_ns": 1806625, + "rtt_ms": 1.806625, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "603", - "timestamp": "2025-11-27T01:23:33.828739738Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:15.530846-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1383333, + "rtt_ms": 1.383333, + "checkpoint": 0, + "vertex_from": "25", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.531075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059407, - "rtt_ms": 1.059407, + "rtt_ns": 1386167, + "rtt_ms": 1.386167, "checkpoint": 0, "vertex_from": "25", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.828798078Z" + "timestamp": "2025-11-27T04:03:15.531078-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103584, - "rtt_ms": 2.103584, + "rtt_ns": 1759083, + "rtt_ms": 1.759083, "checkpoint": 0, "vertex_from": "25", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.828834938Z" + "timestamp": "2025-11-27T04:03:15.531428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053417, - "rtt_ms": 1.053417, + "rtt_ns": 1465583, + "rtt_ms": 1.465583, "checkpoint": 0, "vertex_from": "25", "vertex_to": "868", - "timestamp": "2025-11-27T01:23:33.829601685Z" + "timestamp": "2025-11-27T04:03:15.531584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118527, - "rtt_ms": 1.118527, + "rtt_ns": 1466667, + "rtt_ms": 1.466667, "checkpoint": 0, "vertex_from": "25", "vertex_to": "233", - "timestamp": "2025-11-27T01:23:33.829707335Z" + "timestamp": "2025-11-27T04:03:15.531604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365446, - "rtt_ms": 1.365446, - "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.829765555Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1203077, - "rtt_ms": 1.203077, - "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.829779015Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1740775, - "rtt_ms": 1.740775, + "rtt_ns": 1592875, + "rtt_ms": 1.592875, "checkpoint": 0, "vertex_from": "25", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.830403133Z" + "timestamp": "2025-11-27T04:03:15.531738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803675, - "rtt_ms": 1.803675, + "rtt_ns": 1298083, + "rtt_ms": 1.298083, "checkpoint": 0, "vertex_from": "25", "vertex_to": "368", - "timestamp": "2025-11-27T01:23:33.830488323Z" + "timestamp": "2025-11-27T04:03:15.531758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755875, - "rtt_ms": 1.755875, + "rtt_ns": 1638125, + "rtt_ms": 1.638125, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.830555283Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.531774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872275, - "rtt_ms": 1.872275, + "rtt_ns": 1370750, + "rtt_ms": 1.37075, "checkpoint": 0, "vertex_from": "25", "vertex_to": "737", - "timestamp": "2025-11-27T01:23:33.830590633Z" + "timestamp": "2025-11-27T04:03:15.532137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872445, - "rtt_ms": 1.872445, + "rtt_ns": 1316666, + "rtt_ms": 1.316666, "checkpoint": 0, "vertex_from": "25", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.830613323Z" + "timestamp": "2025-11-27T04:03:15.532163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298717, - "rtt_ms": 1.298717, + "rtt_ns": 1293208, + "rtt_ms": 1.293208, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.830902222Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.532369-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095534, - "rtt_ms": 2.095534, + "rtt_ns": 1307000, + "rtt_ms": 1.307, "checkpoint": 0, "vertex_from": "25", "vertex_to": "337", - "timestamp": "2025-11-27T01:23:33.830931812Z" + "timestamp": "2025-11-27T04:03:15.532386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319276, - "rtt_ms": 1.319276, + "rtt_ns": 1167083, + "rtt_ms": 1.167083, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.831086471Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.532596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409146, - "rtt_ms": 1.409146, + "rtt_ns": 1020917, + "rtt_ms": 1.020917, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.831189021Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:15.532626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515876, - "rtt_ms": 1.515876, + "rtt_ns": 1326250, + "rtt_ms": 1.32625, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:33.831224341Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.5331-08:00" }, { "operation": "add_edge", - "rtt_ns": 826788, - "rtt_ms": 0.826788, + "rtt_ns": 1359167, + "rtt_ms": 1.359167, "checkpoint": 0, "vertex_from": "25", "vertex_to": "482", - "timestamp": "2025-11-27T01:23:33.831231411Z" + "timestamp": "2025-11-27T04:03:15.533118-08:00" }, { "operation": "add_edge", - "rtt_ns": 811928, - "rtt_ms": 0.811928, + "rtt_ns": 1928417, + "rtt_ms": 1.928417, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.831301201Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:15.533514-08:00" }, { "operation": "add_edge", - "rtt_ns": 753668, - "rtt_ms": 0.753668, + "rtt_ns": 1390958, + "rtt_ms": 1.390958, "checkpoint": 0, "vertex_from": "25", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.831311171Z" + "timestamp": "2025-11-27T04:03:15.533531-08:00" }, { "operation": "add_edge", - "rtt_ns": 773297, - "rtt_ms": 0.773297, + "rtt_ns": 1230666, + "rtt_ms": 1.230666, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.83136472Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.5336-08:00" }, { "operation": "add_edge", - "rtt_ns": 802707, - "rtt_ms": 0.802707, + "rtt_ns": 1264083, + "rtt_ms": 1.264083, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.83141655Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:15.533651-08:00" }, { "operation": "add_edge", - "rtt_ns": 699088, - "rtt_ms": 0.699088, + "rtt_ns": 1530333, + "rtt_ms": 1.530333, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:33.83160235Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.533695-08:00" }, { "operation": "add_edge", - "rtt_ns": 978557, - "rtt_ms": 0.978557, + "rtt_ns": 1213375, + "rtt_ms": 1.213375, "checkpoint": 0, "vertex_from": "26", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.831912799Z" + "timestamp": "2025-11-27T04:03:15.53381-08:00" }, { "operation": "add_edge", - "rtt_ns": 847098, - "rtt_ms": 0.847098, + "rtt_ns": 1509500, + "rtt_ms": 1.5095, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.831935659Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.535111-08:00" }, { "operation": "add_edge", - "rtt_ns": 779378, - "rtt_ms": 0.779378, + "rtt_ns": 3390875, + "rtt_ms": 3.390875, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.831970799Z" + "vertex_from": "25", + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.53513-08:00" }, { "operation": "add_edge", - "rtt_ns": 832267, - "rtt_ms": 0.832267, + "rtt_ns": 1487250, + "rtt_ms": 1.48725, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:33.832057918Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.535139-08:00" }, { "operation": "add_edge", - "rtt_ns": 843867, - "rtt_ms": 0.843867, + "rtt_ns": 1334958, + "rtt_ms": 1.334958, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.832076618Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:15.535146-08:00" }, { "operation": "add_edge", - "rtt_ns": 845457, - "rtt_ms": 0.845457, + "rtt_ns": 1629250, + "rtt_ms": 1.62925, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.832158428Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.535161-08:00" }, { "operation": "add_edge", - "rtt_ns": 858137, - "rtt_ms": 0.858137, + "rtt_ns": 1486292, + "rtt_ms": 1.486292, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.832160468Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:15.535182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518436, - "rtt_ms": 1.518436, + "rtt_ns": 2575083, + "rtt_ms": 2.575083, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.832884006Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.535203-08:00" }, { "operation": "add_edge", - "rtt_ns": 987607, - "rtt_ms": 0.987607, + "rtt_ns": 2251750, + "rtt_ms": 2.25175, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.832901716Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:15.535371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333566, - "rtt_ms": 1.333566, + "rtt_ns": 1919916, + "rtt_ms": 1.919916, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.832938076Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.535434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007727, - "rtt_ms": 1.007727, + "rtt_ns": 2406917, + "rtt_ms": 2.406917, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.832944316Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.535508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581766, - "rtt_ms": 1.581766, + "rtt_ns": 1270500, + "rtt_ms": 1.2705, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:33.832999266Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.536475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688675, - "rtt_ms": 1.688675, + "rtt_ns": 1409042, + "rtt_ms": 1.409042, "checkpoint": 0, "vertex_from": "26", "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.833661264Z" + "timestamp": "2025-11-27T04:03:15.536551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606776, - "rtt_ms": 1.606776, + "rtt_ns": 1445041, + "rtt_ms": 1.445041, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.833666084Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:15.536557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636485, - "rtt_ms": 1.636485, + "rtt_ns": 1258167, + "rtt_ms": 1.258167, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.833799373Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:15.53663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768625, - "rtt_ms": 1.768625, + "rtt_ns": 1510583, + "rtt_ms": 1.510583, "checkpoint": 0, "vertex_from": "26", "vertex_to": "596", - "timestamp": "2025-11-27T01:23:33.833846873Z" + "timestamp": "2025-11-27T04:03:15.536672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745135, - "rtt_ms": 1.745135, + "rtt_ns": 1609667, + "rtt_ms": 1.609667, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.833905193Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.53674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309596, - "rtt_ms": 1.309596, + "rtt_ns": 1600208, + "rtt_ms": 1.600208, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:33.834195112Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.536747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316036, - "rtt_ms": 1.316036, + "rtt_ns": 1574166, + "rtt_ms": 1.574166, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.834219592Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.536757-08:00" }, { "operation": "add_edge", - "rtt_ns": 2520922, - "rtt_ms": 2.520922, + "rtt_ns": 1249750, + "rtt_ms": 1.24975, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "347", - "timestamp": "2025-11-27T01:23:33.835467318Z" + "vertex_to": "882", + "timestamp": "2025-11-27T04:03:15.536759-08:00" }, { "operation": "add_edge", - "rtt_ns": 2500642, - "rtt_ms": 2.500642, + "rtt_ns": 1337500, + "rtt_ms": 1.3375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:33.835501398Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.536773-08:00" }, { "operation": "add_edge", - "rtt_ns": 2431212, - "rtt_ms": 2.431212, + "rtt_ns": 1235958, + "rtt_ms": 1.235958, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:33.836094336Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.537867-08:00" }, { "operation": "add_edge", - "rtt_ns": 3271410, - "rtt_ms": 3.27141, + "rtt_ns": 1326667, + "rtt_ms": 1.326667, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "882", - "timestamp": "2025-11-27T01:23:33.836210916Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:15.537885-08:00" }, { "operation": "add_edge", - "rtt_ns": 2581522, - "rtt_ms": 2.581522, + "rtt_ns": 1296791, + "rtt_ms": 1.296791, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.836249656Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:15.53797-08:00" }, { "operation": "add_edge", - "rtt_ns": 2459843, - "rtt_ms": 2.459843, + "rtt_ns": 1300375, + "rtt_ms": 1.300375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:33.836367006Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:15.538074-08:00" }, { "operation": "add_edge", - "rtt_ns": 2569913, - "rtt_ms": 2.569913, + "rtt_ns": 1353666, + "rtt_ms": 1.353666, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:33.836370816Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:15.538113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2525033, - "rtt_ms": 2.525033, + "rtt_ns": 1384750, + "rtt_ms": 1.38475, "checkpoint": 0, "vertex_from": "26", "vertex_to": "387", - "timestamp": "2025-11-27T01:23:33.836373246Z" + "timestamp": "2025-11-27T04:03:15.538126-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231023, - "rtt_ms": 2.231023, + "rtt_ns": 1431708, + "rtt_ms": 1.431708, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:33.836453655Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:15.538189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008727, - "rtt_ms": 1.008727, + "rtt_ns": 1737542, + "rtt_ms": 1.737542, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:33.836477565Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:15.53829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281643, - "rtt_ms": 2.281643, + "rtt_ns": 1605584, + "rtt_ms": 1.605584, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:33.836478145Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:15.538354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012427, - "rtt_ms": 1.012427, + "rtt_ns": 1926541, + "rtt_ms": 1.926541, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.836515825Z" + "vertex_to": "347", + "timestamp": "2025-11-27T04:03:15.538404-08:00" }, { "operation": "add_edge", - "rtt_ns": 695478, - "rtt_ms": 0.695478, + "rtt_ns": 1337875, + "rtt_ms": 1.337875, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "334", - "timestamp": "2025-11-27T01:23:33.836792254Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.539206-08:00" }, { "operation": "add_edge", - "rtt_ns": 725568, - "rtt_ms": 0.725568, + "rtt_ns": 1337417, + "rtt_ms": 1.337417, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.836976694Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:03:15.539224-08:00" }, { "operation": "add_edge", - "rtt_ns": 792878, - "rtt_ms": 0.792878, + "rtt_ns": 2079542, + "rtt_ms": 2.079542, "checkpoint": 0, "vertex_from": "26", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.837004584Z" + "timestamp": "2025-11-27T04:03:15.540052-08:00" }, { "operation": "add_edge", - "rtt_ns": 818017, - "rtt_ms": 0.818017, + "rtt_ns": 1782209, + "rtt_ms": 1.782209, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:33.837186263Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.540073-08:00" }, { "operation": "add_edge", - "rtt_ns": 882477, - "rtt_ms": 0.882477, + "rtt_ns": 1900750, + "rtt_ms": 1.90075, "checkpoint": 0, "vertex_from": "26", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.837257673Z" + "timestamp": "2025-11-27T04:03:15.540091-08:00" }, { "operation": "add_edge", - "rtt_ns": 860228, - "rtt_ms": 0.860228, + "rtt_ns": 1964958, + "rtt_ms": 1.964958, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.837339813Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.540092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020007, - "rtt_ms": 1.020007, + "rtt_ns": 2035000, + "rtt_ms": 2.035, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.837393023Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:15.54011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524386, - "rtt_ms": 1.524386, + "rtt_ns": 2010917, + "rtt_ms": 2.010917, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.838041941Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:15.540125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590176, - "rtt_ms": 1.590176, + "rtt_ns": 1800500, + "rtt_ms": 1.8005, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:33.838070191Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.540155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174486, - "rtt_ms": 1.174486, + "rtt_ns": 2010709, + "rtt_ms": 2.010709, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.83815263Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:15.540416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729385, - "rtt_ms": 1.729385, + "rtt_ns": 2135791, + "rtt_ms": 2.135791, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.83818418Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:15.541343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414456, - "rtt_ms": 1.414456, + "rtt_ns": 2135542, + "rtt_ms": 2.135542, "checkpoint": 0, "vertex_from": "26", "vertex_to": "266", - "timestamp": "2025-11-27T01:23:33.83820824Z" + "timestamp": "2025-11-27T04:03:15.54136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305676, - "rtt_ms": 1.305676, + "rtt_ns": 988209, + "rtt_ms": 0.988209, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.83831101Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:03:15.541405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261546, - "rtt_ms": 1.261546, + "rtt_ns": 1548708, + "rtt_ms": 1.548708, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.838448649Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.541601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619725, - "rtt_ms": 1.619725, + "rtt_ns": 1602000, + "rtt_ms": 1.602, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.838878498Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.541694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663555, - "rtt_ms": 1.663555, + "rtt_ns": 1662625, + "rtt_ms": 1.662625, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.839004878Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.541737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649715, - "rtt_ms": 1.649715, + "rtt_ns": 1633208, + "rtt_ms": 1.633208, "checkpoint": 0, "vertex_from": "26", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.839044568Z" + "timestamp": "2025-11-27T04:03:15.541759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157327, - "rtt_ms": 1.157327, + "rtt_ns": 1755167, + "rtt_ms": 1.755167, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:33.839312087Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.54185-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1276537, - "rtt_ms": 1.276537, + "operation": "add_vertex", + "rtt_ns": 2760584, + "rtt_ms": 2.760584, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:33.839349867Z" + "vertex_from": "740", + "timestamp": "2025-11-27T04:03:15.542919-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126764, - "rtt_ms": 2.126764, + "rtt_ns": 1616250, + "rtt_ms": 1.61625, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:33.840576553Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:15.54296-08:00" }, { "operation": "add_edge", - "rtt_ns": 2435423, - "rtt_ms": 2.435423, + "rtt_ns": 1363750, + "rtt_ms": 1.36375, "checkpoint": 0, "vertex_from": "26", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.841315321Z" + "timestamp": "2025-11-27T04:03:15.543102-08:00" }, { "operation": "add_edge", - "rtt_ns": 3177941, - "rtt_ms": 3.177941, + "rtt_ns": 1767375, + "rtt_ms": 1.767375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.841387251Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.543128-08:00" }, { "operation": "add_edge", - "rtt_ns": 3113161, - "rtt_ms": 3.113161, + "rtt_ns": 1850209, + "rtt_ms": 1.850209, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.841425361Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.543256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2424833, - "rtt_ms": 2.424833, + "rtt_ns": 1664625, + "rtt_ms": 1.664625, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:33.841471071Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.543267-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 3971878, - "rtt_ms": 3.971878, + "operation": "add_edge", + "rtt_ns": 1518459, + "rtt_ms": 1.518459, "checkpoint": 0, - "vertex_from": "740", - "timestamp": "2025-11-27T01:23:33.842017169Z" + "vertex_from": "26", + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:15.543279-08:00" }, { "operation": "add_edge", - "rtt_ns": 3880069, - "rtt_ms": 3.880069, + "rtt_ns": 3192292, + "rtt_ms": 3.192292, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.842065289Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.543303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490256, - "rtt_ms": 1.490256, + "rtt_ns": 1646750, + "rtt_ms": 1.64675, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:33.842068789Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:15.543344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2727702, - "rtt_ms": 2.727702, + "rtt_ns": 1780541, + "rtt_ms": 1.780541, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:33.842078379Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:15.543632-08:00" }, { "operation": "add_edge", - "rtt_ns": 3248510, - "rtt_ms": 3.24851, + "rtt_ns": 1129208, + "rtt_ms": 1.129208, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.842254758Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:15.544258-08:00" }, { "operation": "add_edge", - "rtt_ns": 2972781, - "rtt_ms": 2.972781, + "rtt_ns": 1402667, + "rtt_ms": 1.402667, "checkpoint": 0, "vertex_from": "26", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.842285968Z" + "timestamp": "2025-11-27T04:03:15.544364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494076, - "rtt_ms": 1.494076, + "rtt_ns": 1291250, + "rtt_ms": 1.29125, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.842882337Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:15.544396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690245, - "rtt_ms": 1.690245, + "rtt_ns": 1522791, + "rtt_ms": 1.522791, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.843006776Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:03:15.544443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641485, - "rtt_ms": 1.641485, + "rtt_ns": 1867708, + "rtt_ms": 1.867708, "checkpoint": 0, "vertex_from": "26", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.843068776Z" + "timestamp": "2025-11-27T04:03:15.54515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175887, - "rtt_ms": 1.175887, + "rtt_ns": 1921792, + "rtt_ms": 1.921792, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.843247176Z" + "vertex_from": "26", + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.545185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836235, - "rtt_ms": 1.836235, + "rtt_ns": 1660833, + "rtt_ms": 1.660833, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.843309016Z" + "vertex_from": "27", + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:15.545294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363646, - "rtt_ms": 1.363646, + "rtt_ns": 2017708, + "rtt_ms": 2.017708, "checkpoint": 0, "vertex_from": "27", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.843430805Z" + "timestamp": "2025-11-27T04:03:15.545363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223927, - "rtt_ms": 1.223927, + "rtt_ns": 2127459, + "rtt_ms": 2.127459, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.843484505Z" + "vertex_from": "26", + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:15.545395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503976, - "rtt_ms": 1.503976, + "rtt_ns": 2097167, + "rtt_ms": 2.097167, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "740", - "timestamp": "2025-11-27T01:23:33.843521525Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.545402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458046, - "rtt_ms": 1.458046, + "rtt_ns": 2098708, + "rtt_ms": 2.098708, "checkpoint": 0, "vertex_from": "27", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.843539025Z" + "timestamp": "2025-11-27T04:03:15.546358-08:00" }, { "operation": "add_edge", - "rtt_ns": 733498, - "rtt_ms": 0.733498, + "rtt_ns": 1970125, + "rtt_ms": 1.970125, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.843617105Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:15.546369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440556, - "rtt_ms": 1.440556, + "rtt_ns": 1993209, + "rtt_ms": 1.993209, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:33.843727654Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.546438-08:00" }, { "operation": "add_edge", - "rtt_ns": 774318, - "rtt_ms": 0.774318, + "rtt_ns": 2277791, + "rtt_ms": 2.277791, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:33.843844224Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.546642-08:00" }, { "operation": "add_edge", - "rtt_ns": 863158, - "rtt_ms": 0.863158, + "rtt_ns": 1797750, + "rtt_ms": 1.79775, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.843871144Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.547093-08:00" }, { "operation": "add_edge", - "rtt_ns": 721317, - "rtt_ms": 0.721317, + "rtt_ns": 1908125, + "rtt_ms": 1.908125, "checkpoint": 0, "vertex_from": "27", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.844031613Z" + "timestamp": "2025-11-27T04:03:15.547272-08:00" }, { "operation": "add_edge", - "rtt_ns": 799337, - "rtt_ms": 0.799337, + "rtt_ns": 1981958, + "rtt_ms": 1.981958, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.844047403Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:15.547386-08:00" }, { "operation": "add_edge", - "rtt_ns": 703048, - "rtt_ms": 0.703048, + "rtt_ns": 1217209, + "rtt_ms": 1.217209, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.844134713Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:15.547656-08:00" }, { "operation": "add_edge", - "rtt_ns": 629328, - "rtt_ms": 0.629328, + "rtt_ns": 2641958, + "rtt_ms": 2.641958, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:33.844152363Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:15.547828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130757, - "rtt_ms": 1.130757, + "rtt_ns": 2692875, + "rtt_ms": 2.692875, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:33.844616052Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.547843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423176, - "rtt_ms": 1.423176, + "rtt_ns": 1546458, + "rtt_ms": 1.546458, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.844963611Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:15.547905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272387, - "rtt_ms": 1.272387, + "rtt_ns": 2523334, + "rtt_ms": 2.523334, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.845000941Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.547923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394796, - "rtt_ms": 1.394796, + "rtt_ns": 1619125, + "rtt_ms": 1.619125, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:33.845012771Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.547989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803615, - "rtt_ms": 1.803615, + "rtt_ns": 2210416, + "rtt_ms": 2.210416, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.845675789Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.548854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895384, - "rtt_ms": 1.895384, + "rtt_ns": 1418667, + "rtt_ms": 1.418667, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:33.845740718Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.549076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890184, - "rtt_ms": 1.890184, + "rtt_ns": 1997000, + "rtt_ms": 1.997, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:33.846043797Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:15.549093-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021474, - "rtt_ms": 2.021474, + "rtt_ns": 1883791, + "rtt_ms": 1.883791, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:33.846054447Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.549157-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024124, - "rtt_ms": 2.024124, + "rtt_ns": 1447209, + "rtt_ms": 1.447209, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.846073077Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.549371-08:00" }, { "operation": "add_edge", - "rtt_ns": 2045024, - "rtt_ms": 2.045024, + "rtt_ns": 1552834, + "rtt_ms": 1.552834, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "333", - "timestamp": "2025-11-27T01:23:33.846180917Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:15.549397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812584, - "rtt_ms": 1.812584, + "rtt_ns": 1636209, + "rtt_ms": 1.636209, "checkpoint": 0, "vertex_from": "27", "vertex_to": "357", - "timestamp": "2025-11-27T01:23:33.846431466Z" + "timestamp": "2025-11-27T04:03:15.549543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519475, - "rtt_ms": 1.519475, + "rtt_ns": 2171458, + "rtt_ms": 2.171458, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.846484626Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:15.549559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527425, - "rtt_ms": 1.527425, + "rtt_ns": 1729000, + "rtt_ms": 1.729, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.846529556Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:03:15.549559-08:00" }, { "operation": "add_edge", - "rtt_ns": 934247, - "rtt_ms": 0.934247, + "rtt_ns": 1596208, + "rtt_ms": 1.596208, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.846611476Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.549587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597755, - "rtt_ms": 1.597755, + "rtt_ns": 1322167, + "rtt_ms": 1.322167, "checkpoint": 0, "vertex_from": "27", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.846612496Z" + "timestamp": "2025-11-27T04:03:15.550179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057087, - "rtt_ms": 1.057087, + "rtt_ns": 1579958, + "rtt_ms": 1.579958, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:33.846799835Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.550953-08:00" }, { "operation": "add_edge", - "rtt_ns": 844608, - "rtt_ms": 0.844608, + "rtt_ns": 1615375, + "rtt_ms": 1.615375, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.846890365Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.551014-08:00" }, { "operation": "add_edge", - "rtt_ns": 861548, - "rtt_ms": 0.861548, + "rtt_ns": 1940125, + "rtt_ms": 1.940125, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.846936325Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:15.551033-08:00" }, { "operation": "add_edge", - "rtt_ns": 956408, - "rtt_ms": 0.956408, + "rtt_ns": 2049292, + "rtt_ms": 2.049292, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.847011615Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:15.551207-08:00" }, { "operation": "add_edge", - "rtt_ns": 842368, - "rtt_ms": 0.842368, + "rtt_ns": 2469542, + "rtt_ms": 2.469542, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.847024255Z" + "vertex_from": "27", + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.551546-08:00" }, { "operation": "add_edge", - "rtt_ns": 837648, - "rtt_ms": 0.837648, + "rtt_ns": 2071500, + "rtt_ms": 2.0715, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.847272644Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.551615-08:00" }, { "operation": "add_edge", - "rtt_ns": 831898, - "rtt_ms": 0.831898, + "rtt_ns": 2252750, + "rtt_ms": 2.25275, "checkpoint": 0, "vertex_from": "28", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.847318264Z" + "timestamp": "2025-11-27T04:03:15.551813-08:00" }, { "operation": "add_edge", - "rtt_ns": 870457, - "rtt_ms": 0.870457, + "rtt_ns": 2268125, + "rtt_ms": 2.268125, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.847401213Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.551828-08:00" }, { "operation": "add_edge", - "rtt_ns": 896887, - "rtt_ms": 0.896887, + "rtt_ns": 1661958, + "rtt_ms": 1.661958, "checkpoint": 0, "vertex_from": "28", "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.847509843Z" + "timestamp": "2025-11-27T04:03:15.551842-08:00" }, { "operation": "add_edge", - "rtt_ns": 912257, - "rtt_ms": 0.912257, + "rtt_ns": 2401583, + "rtt_ms": 2.401583, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:33.847526193Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.551989-08:00" }, { "operation": "add_edge", - "rtt_ns": 783388, - "rtt_ms": 0.783388, + "rtt_ns": 1595083, + "rtt_ms": 1.595083, "checkpoint": 0, "vertex_from": "28", "vertex_to": "786", - "timestamp": "2025-11-27T01:23:33.847584933Z" + "timestamp": "2025-11-27T04:03:15.55261-08:00" }, { "operation": "add_edge", - "rtt_ns": 703348, - "rtt_ms": 0.703348, + "rtt_ns": 1516000, + "rtt_ms": 1.516, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.847594863Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.552724-08:00" }, { "operation": "add_edge", - "rtt_ns": 688118, - "rtt_ms": 0.688118, + "rtt_ns": 2371625, + "rtt_ms": 2.371625, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.847625293Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:15.553326-08:00" }, { "operation": "add_edge", - "rtt_ns": 695947, - "rtt_ms": 0.695947, + "rtt_ns": 1780209, + "rtt_ms": 1.780209, "checkpoint": 0, "vertex_from": "28", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.847708362Z" + "timestamp": "2025-11-27T04:03:15.553327-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2295834, + "rtt_ms": 2.295834, + "checkpoint": 0, + "vertex_from": "28", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.55333-08:00" }, { "operation": "add_edge", - "rtt_ns": 718188, - "rtt_ms": 0.718188, + "rtt_ns": 1896083, + "rtt_ms": 1.896083, "checkpoint": 0, "vertex_from": "28", "vertex_to": "45", - "timestamp": "2025-11-27T01:23:33.847743832Z" + "timestamp": "2025-11-27T04:03:15.553512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680565, - "rtt_ms": 1.680565, + "rtt_ns": 2001917, + "rtt_ms": 2.001917, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:33.848954479Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:15.553845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709855, - "rtt_ms": 1.709855, + "rtt_ns": 2148708, + "rtt_ms": 2.148708, "checkpoint": 0, "vertex_from": "28", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.849029239Z" + "timestamp": "2025-11-27T04:03:15.553978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639175, - "rtt_ms": 1.639175, + "rtt_ns": 2009500, + "rtt_ms": 2.0095, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:33.849041688Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:15.554001-08:00" }, { "operation": "add_edge", - "rtt_ns": 2270193, - "rtt_ms": 2.270193, + "rtt_ns": 2199083, + "rtt_ms": 2.199083, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:33.849780986Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:15.554013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326093, - "rtt_ms": 2.326093, + "rtt_ns": 1584292, + "rtt_ms": 1.584292, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.849853856Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:15.555598-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2508375, + "rtt_ms": 2.508375, + "checkpoint": 0, + "vertex_from": "28", + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.555837-08:00" }, { "operation": "add_edge", - "rtt_ns": 2270993, - "rtt_ms": 2.270993, + "rtt_ns": 3133000, + "rtt_ms": 3.133, "checkpoint": 0, "vertex_from": "28", "vertex_to": "357", - "timestamp": "2025-11-27T01:23:33.849857696Z" + "timestamp": "2025-11-27T04:03:15.555858-08:00" }, { "operation": "add_edge", - "rtt_ns": 2308203, - "rtt_ms": 2.308203, + "rtt_ns": 2053666, + "rtt_ms": 2.053666, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.849904426Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:15.556033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236584, - "rtt_ms": 2.236584, + "rtt_ns": 2097750, + "rtt_ms": 2.09775, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.849946606Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:03:15.5561-08:00" }, { "operation": "add_edge", - "rtt_ns": 2360363, - "rtt_ms": 2.360363, + "rtt_ns": 3490166, + "rtt_ms": 3.490166, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.849986946Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.556103-08:00" }, { "operation": "add_edge", - "rtt_ns": 2361883, - "rtt_ms": 2.361883, + "rtt_ns": 2803667, + "rtt_ms": 2.803667, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.850108455Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.556135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073727, - "rtt_ms": 1.073727, + "rtt_ns": 2860375, + "rtt_ms": 2.860375, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "32", - "timestamp": "2025-11-27T01:23:33.850117275Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.556187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168286, - "rtt_ms": 1.168286, + "rtt_ns": 2773625, + "rtt_ms": 2.773625, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.850198505Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.556286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263626, - "rtt_ms": 1.263626, + "rtt_ns": 2457667, + "rtt_ms": 2.457667, "checkpoint": 0, "vertex_from": "28", "vertex_to": "674", - "timestamp": "2025-11-27T01:23:33.850219645Z" + "timestamp": "2025-11-27T04:03:15.556304-08:00" }, { "operation": "add_edge", - "rtt_ns": 692078, - "rtt_ms": 0.692078, + "rtt_ns": 1182750, + "rtt_ms": 1.18275, "checkpoint": 0, "vertex_from": "28", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.850551204Z" + "timestamp": "2025-11-27T04:03:15.557021-08:00" }, { "operation": "add_edge", - "rtt_ns": 849558, - "rtt_ms": 0.849558, + "rtt_ns": 1491458, + "rtt_ms": 1.491458, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.850632304Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.557091-08:00" }, { "operation": "add_edge", - "rtt_ns": 837447, - "rtt_ms": 0.837447, + "rtt_ns": 1737417, + "rtt_ms": 1.737417, "checkpoint": 0, "vertex_from": "28", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.850742953Z" + "timestamp": "2025-11-27T04:03:15.557597-08:00" }, { "operation": "add_edge", - "rtt_ns": 901857, - "rtt_ms": 0.901857, + "rtt_ns": 1518625, + "rtt_ms": 1.518625, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.850757423Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.55762-08:00" }, { "operation": "add_edge", - "rtt_ns": 863727, - "rtt_ms": 0.863727, + "rtt_ns": 1623916, + "rtt_ms": 1.623916, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.850851823Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:15.557812-08:00" }, { "operation": "add_edge", - "rtt_ns": 996917, - "rtt_ms": 0.996917, + "rtt_ns": 1524166, + "rtt_ms": 1.524166, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.850944793Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:03:15.557828-08:00" }, { "operation": "add_edge", - "rtt_ns": 860008, - "rtt_ms": 0.860008, + "rtt_ns": 1861041, + "rtt_ms": 1.861041, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.850978543Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.557897-08:00" }, { "operation": "add_edge", - "rtt_ns": 908948, - "rtt_ms": 0.908948, + "rtt_ns": 1857500, + "rtt_ms": 1.8575, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.851022863Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.557994-08:00" }, { "operation": "add_edge", - "rtt_ns": 846317, - "rtt_ms": 0.846317, + "rtt_ns": 1893500, + "rtt_ms": 1.8935, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:33.851046112Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:15.558181-08:00" }, { "operation": "add_edge", - "rtt_ns": 933037, - "rtt_ms": 0.933037, + "rtt_ns": 1299583, + "rtt_ms": 1.299583, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.851155012Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.558322-08:00" }, { "operation": "add_edge", - "rtt_ns": 657898, - "rtt_ms": 0.657898, + "rtt_ns": 1176709, + "rtt_ms": 1.176709, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "179", - "timestamp": "2025-11-27T01:23:33.851210622Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:15.55899-08:00" }, { "operation": "add_edge", - "rtt_ns": 801187, - "rtt_ms": 0.801187, + "rtt_ns": 1901084, + "rtt_ms": 1.901084, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.851435561Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.558993-08:00" }, { "operation": "add_edge", - "rtt_ns": 704178, - "rtt_ms": 0.704178, + "rtt_ns": 1108541, + "rtt_ms": 1.108541, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.851448271Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:15.559008-08:00" }, { "operation": "add_edge", - "rtt_ns": 612668, - "rtt_ms": 0.612668, + "rtt_ns": 2953875, + "rtt_ms": 2.953875, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.851465961Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:15.559057-08:00" }, { "operation": "add_edge", - "rtt_ns": 708428, - "rtt_ms": 0.708428, + "rtt_ns": 1545625, + "rtt_ms": 1.545625, "checkpoint": 0, "vertex_from": "28", "vertex_to": "422", - "timestamp": "2025-11-27T01:23:33.851467351Z" + "timestamp": "2025-11-27T04:03:15.559145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090677, - "rtt_ms": 1.090677, + "rtt_ns": 1360083, + "rtt_ms": 1.360083, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.852247209Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.559189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223946, - "rtt_ms": 1.223946, + "rtt_ns": 1565833, + "rtt_ms": 1.565833, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.852248269Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.559562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347506, - "rtt_ms": 1.347506, + "rtt_ns": 1394666, + "rtt_ms": 1.394666, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.852294199Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.559577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269897, - "rtt_ms": 1.269897, + "rtt_ns": 2061500, + "rtt_ms": 2.0615, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.852317609Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.559682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110697, - "rtt_ms": 1.110697, + "rtt_ns": 1374958, + "rtt_ms": 1.374958, "checkpoint": 0, "vertex_from": "28", "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.852323569Z" + "timestamp": "2025-11-27T04:03:15.559698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373206, - "rtt_ms": 1.373206, + "rtt_ns": 2186833, + "rtt_ms": 2.186833, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.852352679Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.561196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537526, - "rtt_ms": 1.537526, + "rtt_ns": 2027125, + "rtt_ms": 2.027125, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.852974127Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:15.561217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508496, - "rtt_ms": 1.508496, + "rtt_ns": 2232333, + "rtt_ms": 2.232333, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:33.852977117Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.561223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566486, - "rtt_ms": 1.566486, + "rtt_ns": 2485667, + "rtt_ms": 2.485667, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.853033707Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:15.561544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761065, - "rtt_ms": 1.761065, + "rtt_ns": 1891084, + "rtt_ms": 1.891084, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.853210206Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.56159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295176, - "rtt_ms": 1.295176, + "rtt_ns": 1931750, + "rtt_ms": 1.93175, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:33.853544925Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:03:15.561615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337856, - "rtt_ms": 1.337856, + "rtt_ns": 2060166, + "rtt_ms": 2.060166, "checkpoint": 0, "vertex_from": "28", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.853656875Z" + "timestamp": "2025-11-27T04:03:15.561638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071264, - "rtt_ms": 2.071264, + "rtt_ns": 2542833, + "rtt_ms": 2.542833, "checkpoint": 0, "vertex_from": "28", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.854320643Z" + "timestamp": "2025-11-27T04:03:15.56169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063264, - "rtt_ms": 2.063264, + "rtt_ns": 2702292, + "rtt_ms": 2.702292, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.854418183Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.561697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494486, - "rtt_ms": 1.494486, + "rtt_ns": 2296667, + "rtt_ms": 2.296667, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:33.854529243Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:15.56186-08:00" }, { "operation": "add_edge", - "rtt_ns": 2524493, - "rtt_ms": 2.524493, + "rtt_ns": 1489416, + "rtt_ms": 1.489416, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:33.854820482Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:15.562714-08:00" }, { "operation": "add_edge", - "rtt_ns": 2523103, - "rtt_ms": 2.523103, + "rtt_ns": 1525750, + "rtt_ms": 1.52575, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "51", - "timestamp": "2025-11-27T01:23:33.854848212Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.562744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964214, - "rtt_ms": 1.964214, + "rtt_ns": 1574375, + "rtt_ms": 1.574375, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.854943201Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:15.562771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785515, - "rtt_ms": 1.785515, + "rtt_ns": 1491834, + "rtt_ms": 1.491834, "checkpoint": 0, "vertex_from": "28", "vertex_to": "71", - "timestamp": "2025-11-27T01:23:33.854997571Z" + "timestamp": "2025-11-27T04:03:15.563039-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048924, - "rtt_ms": 2.048924, + "rtt_ns": 1425334, + "rtt_ms": 1.425334, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.855024641Z" + "vertex_from": "29", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.563116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534736, - "rtt_ms": 1.534736, + "rtt_ns": 1739583, + "rtt_ms": 1.739583, "checkpoint": 0, "vertex_from": "28", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.855080881Z" + "timestamp": "2025-11-27T04:03:15.563331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759505, - "rtt_ms": 1.759505, + "rtt_ns": 1731959, + "rtt_ms": 1.731959, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.85541756Z" + "vertex_from": "29", + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.56338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194787, - "rtt_ms": 1.194787, + "rtt_ns": 1714625, + "rtt_ms": 1.714625, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.85561373Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:15.563413-08:00" }, { "operation": "add_edge", - "rtt_ns": 914698, - "rtt_ms": 0.914698, + "rtt_ns": 1809625, + "rtt_ms": 1.809625, "checkpoint": 0, - "vertex_from": "29", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.855858689Z" + "vertex_from": "28", + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.563427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648576, - "rtt_ms": 1.648576, + "rtt_ns": 1609041, + "rtt_ms": 1.609041, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.855970919Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:15.56347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586336, - "rtt_ms": 1.586336, + "rtt_ns": 1553458, + "rtt_ms": 1.553458, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:33.856585147Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.564312-08:00" }, { "operation": "add_edge", - "rtt_ns": 995797, - "rtt_ms": 0.995797, + "rtt_ns": 1612875, + "rtt_ms": 1.612875, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.856611167Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.56433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2090684, - "rtt_ms": 2.090684, + "rtt_ns": 1252417, + "rtt_ms": 1.252417, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:33.856621327Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.564371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773445, - "rtt_ms": 1.773445, + "rtt_ns": 1425875, + "rtt_ms": 1.425875, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.856622487Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:15.564465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831354, - "rtt_ms": 1.831354, + "rtt_ns": 1919708, + "rtt_ms": 1.919708, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:33.856652996Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:15.564692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576305, - "rtt_ms": 1.576305, + "rtt_ns": 1616750, + "rtt_ms": 1.61675, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.856658396Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.56503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240246, - "rtt_ms": 1.240246, + "rtt_ns": 1853917, + "rtt_ms": 1.853917, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:33.856658666Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.565235-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104494, - "rtt_ms": 2.104494, + "rtt_ns": 1134084, + "rtt_ms": 1.134084, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:33.857130195Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:15.565465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353306, - "rtt_ms": 1.353306, + "rtt_ns": 2015209, + "rtt_ms": 2.015209, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.857212875Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:15.565486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288236, - "rtt_ms": 1.288236, + "rtt_ns": 2160666, + "rtt_ms": 2.160666, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.857259855Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:15.565492-08:00" }, { "operation": "add_edge", - "rtt_ns": 588438, - "rtt_ms": 0.588438, + "rtt_ns": 2244334, + "rtt_ms": 2.244334, "checkpoint": 0, - "vertex_from": "30", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:33.857849513Z" + "vertex_from": "29", + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.565674-08:00" }, { "operation": "add_edge", - "rtt_ns": 769678, - "rtt_ms": 0.769678, + "rtt_ns": 1610042, + "rtt_ms": 1.610042, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:33.857900743Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:15.565923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270807, - "rtt_ms": 1.270807, + "rtt_ns": 1930916, + "rtt_ms": 1.930916, "checkpoint": 0, "vertex_from": "29", "vertex_to": "232", - "timestamp": "2025-11-27T01:23:33.857924623Z" + "timestamp": "2025-11-27T04:03:15.566397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351076, - "rtt_ms": 1.351076, + "rtt_ns": 2091541, + "rtt_ms": 2.091541, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:33.857937533Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.566464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686685, - "rtt_ms": 1.686685, + "rtt_ns": 1495667, + "rtt_ms": 1.495667, "checkpoint": 0, "vertex_from": "29", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.858346441Z" + "timestamp": "2025-11-27T04:03:15.566528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949854, - "rtt_ms": 1.949854, + "rtt_ns": 1394125, + "rtt_ms": 1.394125, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:33.858573391Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:15.56663-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056673, - "rtt_ms": 2.056673, + "rtt_ns": 1218459, + "rtt_ms": 1.218459, "checkpoint": 0, - "vertex_from": "29", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:33.85866956Z" + "vertex_from": "30", + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:15.566706-08:00" }, { "operation": "add_edge", - "rtt_ns": 2508313, - "rtt_ms": 2.508313, + "rtt_ns": 2019667, + "rtt_ms": 2.019667, "checkpoint": 0, "vertex_from": "29", "vertex_to": "118", - "timestamp": "2025-11-27T01:23:33.859167789Z" + "timestamp": "2025-11-27T04:03:15.566715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984824, - "rtt_ms": 1.984824, + "rtt_ns": 1368792, + "rtt_ms": 1.368792, "checkpoint": 0, "vertex_from": "29", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.859199359Z" + "timestamp": "2025-11-27T04:03:15.566835-08:00" }, { "operation": "add_edge", - "rtt_ns": 2589612, - "rtt_ms": 2.589612, - "checkpoint": 0, - "vertex_from": "29", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.859213619Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1407406, - "rtt_ms": 1.407406, + "rtt_ns": 2099958, + "rtt_ms": 2.099958, "checkpoint": 0, "vertex_from": "30", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:33.859258959Z" + "timestamp": "2025-11-27T04:03:15.567593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394595, - "rtt_ms": 1.394595, + "rtt_ns": 1675125, + "rtt_ms": 1.675125, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:33.859334418Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.567599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544195, - "rtt_ms": 1.544195, + "rtt_ns": 2172625, + "rtt_ms": 2.172625, "checkpoint": 0, "vertex_from": "30", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.859445668Z" + "timestamp": "2025-11-27T04:03:15.567847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733695, - "rtt_ms": 1.733695, + "rtt_ns": 1503250, + "rtt_ms": 1.50325, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.859659078Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.567968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318896, - "rtt_ms": 1.318896, + "rtt_ns": 1758375, + "rtt_ms": 1.758375, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.859666447Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:15.568474-08:00" }, { "operation": "add_edge", - "rtt_ns": 580198, - "rtt_ms": 0.580198, + "rtt_ns": 1778541, + "rtt_ms": 1.778541, "checkpoint": 0, "vertex_from": "30", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.859748827Z" + "timestamp": "2025-11-27T04:03:15.568486-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1342886, - "rtt_ms": 1.342886, + "operation": "add_edge", + "rtt_ns": 2106625, + "rtt_ms": 2.106625, "checkpoint": 0, - "vertex_from": "231", - "timestamp": "2025-11-27T01:23:33.859922387Z" + "vertex_from": "30", + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:15.568505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288667, - "rtt_ms": 1.288667, + "rtt_ns": 2060625, + "rtt_ms": 2.060625, "checkpoint": 0, "vertex_from": "30", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:33.859959417Z" + "timestamp": "2025-11-27T04:03:15.568694-08:00" }, { "operation": "add_edge", - "rtt_ns": 818477, - "rtt_ms": 0.818477, + "rtt_ns": 1862583, + "rtt_ms": 1.862583, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:33.860019906Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:15.568699-08:00" }, { - "operation": "add_edge", - "rtt_ns": 788017, - "rtt_ms": 0.788017, + "operation": "add_vertex", + "rtt_ns": 2177542, + "rtt_ms": 2.177542, "checkpoint": 0, - "vertex_from": "30", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.860047886Z" + "vertex_from": "231", + "timestamp": "2025-11-27T04:03:15.568708-08:00" }, { "operation": "add_edge", - "rtt_ns": 918547, - "rtt_ms": 0.918547, + "rtt_ns": 1473375, + "rtt_ms": 1.473375, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:33.860134266Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.569444-08:00" }, { "operation": "add_edge", - "rtt_ns": 833448, - "rtt_ms": 0.833448, + "rtt_ns": 1948833, + "rtt_ms": 1.948833, "checkpoint": 0, "vertex_from": "30", "vertex_to": "736", - "timestamp": "2025-11-27T01:23:33.860168886Z" + "timestamp": "2025-11-27T04:03:15.569549-08:00" }, { "operation": "add_edge", - "rtt_ns": 722188, - "rtt_ms": 0.722188, + "rtt_ns": 2094708, + "rtt_ms": 2.094708, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.860169906Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.569689-08:00" }, { "operation": "add_edge", - "rtt_ns": 678628, - "rtt_ms": 0.678628, + "rtt_ns": 1344958, + "rtt_ms": 1.344958, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.860345615Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.57004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148426, - "rtt_ms": 1.148426, + "rtt_ns": 1642375, + "rtt_ms": 1.642375, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.860808994Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:15.570148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275506, - "rtt_ms": 1.275506, + "rtt_ns": 1485875, + "rtt_ms": 1.485875, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.861025373Z" + "vertex_to": "231", + "timestamp": "2025-11-27T04:03:15.570194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087653, - "rtt_ms": 2.087653, + "rtt_ns": 2484750, + "rtt_ms": 2.48475, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:33.86204793Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.570333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214214, - "rtt_ms": 2.214214, + "rtt_ns": 2071833, + "rtt_ms": 2.071833, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.86223474Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.570548-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231324, - "rtt_ms": 2.231324, + "rtt_ns": 1863334, + "rtt_ms": 1.863334, "checkpoint": 0, "vertex_from": "30", "vertex_to": "166", - "timestamp": "2025-11-27T01:23:33.86227995Z" + "timestamp": "2025-11-27T04:03:15.570563-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178693, - "rtt_ms": 2.178693, + "rtt_ns": 2083334, + "rtt_ms": 2.083334, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.862348009Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.570571-08:00" }, { "operation": "add_edge", - "rtt_ns": 2460112, - "rtt_ms": 2.460112, + "rtt_ns": 1263000, + "rtt_ms": 1.263, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "231", - "timestamp": "2025-11-27T01:23:33.862382959Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.570709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2304733, - "rtt_ms": 2.304733, + "rtt_ns": 1858417, + "rtt_ms": 1.858417, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:33.862475799Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.571409-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340693, - "rtt_ms": 2.340693, + "rtt_ns": 1743750, + "rtt_ms": 1.74375, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.862476759Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:15.571433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186934, - "rtt_ms": 2.186934, + "rtt_ns": 1408208, + "rtt_ms": 1.408208, "checkpoint": 0, "vertex_from": "30", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.862533009Z" + "timestamp": "2025-11-27T04:03:15.571449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824945, - "rtt_ms": 1.824945, + "rtt_ns": 1561750, + "rtt_ms": 1.56175, "checkpoint": 0, "vertex_from": "30", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.862635189Z" + "timestamp": "2025-11-27T04:03:15.57171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639036, - "rtt_ms": 1.639036, + "rtt_ns": 1618542, + "rtt_ms": 1.618542, "checkpoint": 0, "vertex_from": "30", "vertex_to": "297", - "timestamp": "2025-11-27T01:23:33.862665979Z" + "timestamp": "2025-11-27T04:03:15.571814-08:00" }, { "operation": "add_edge", - "rtt_ns": 588948, - "rtt_ms": 0.588948, + "rtt_ns": 1913750, + "rtt_ms": 1.91375, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.862830148Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:15.572249-08:00" }, { "operation": "add_edge", - "rtt_ns": 801908, - "rtt_ms": 0.801908, + "rtt_ns": 1717166, + "rtt_ms": 1.717166, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:33.862851218Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.572266-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1762291, + "rtt_ms": 1.762291, + "checkpoint": 0, + "vertex_from": "31", + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.572327-08:00" }, { "operation": "add_edge", - "rtt_ns": 581239, - "rtt_ms": 0.581239, + "rtt_ns": 1632125, + "rtt_ms": 1.632125, "checkpoint": 0, "vertex_from": "31", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.862965828Z" + "timestamp": "2025-11-27T04:03:15.572342-08:00" }, { "operation": "add_edge", - "rtt_ns": 767797, - "rtt_ms": 0.767797, + "rtt_ns": 2214291, + "rtt_ms": 2.214291, "checkpoint": 0, "vertex_from": "31", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.863049917Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:15.572787-08:00" }, { "operation": "add_edge", - "rtt_ns": 718078, - "rtt_ms": 0.718078, + "rtt_ns": 1933834, + "rtt_ms": 1.933834, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.863196497Z" + "vertex_from": "31", + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.573343-08:00" }, { "operation": "add_edge", - "rtt_ns": 739477, - "rtt_ms": 0.739477, + "rtt_ns": 1909042, + "rtt_ms": 1.909042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:33.863411996Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.573343-08:00" }, { "operation": "add_edge", - "rtt_ns": 797807, - "rtt_ms": 0.797807, + "rtt_ns": 1271958, + "rtt_ms": 1.271958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:33.863433726Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.573539-08:00" }, { "operation": "add_edge", - "rtt_ns": 903247, - "rtt_ms": 0.903247, + "rtt_ns": 1815458, + "rtt_ms": 1.815458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:33.863437706Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:03:15.57363-08:00" }, { "operation": "add_edge", - "rtt_ns": 822368, - "rtt_ms": 0.822368, + "rtt_ns": 1942333, + "rtt_ms": 1.942333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.863653396Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:15.573654-08:00" }, { "operation": "add_edge", - "rtt_ns": 785007, - "rtt_ms": 0.785007, + "rtt_ns": 2368333, + "rtt_ms": 2.368333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.863751735Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:15.573818-08:00" }, { "operation": "add_edge", - "rtt_ns": 913897, - "rtt_ms": 0.913897, + "rtt_ns": 1589042, + "rtt_ms": 1.589042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.863767485Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.573839-08:00" }, { "operation": "add_edge", - "rtt_ns": 623708, - "rtt_ms": 0.623708, + "rtt_ns": 1277875, + "rtt_ms": 1.277875, "checkpoint": 0, "vertex_from": "32", "vertex_to": "864", - "timestamp": "2025-11-27T01:23:33.863820985Z" + "timestamp": "2025-11-27T04:03:15.574065-08:00" }, { "operation": "add_edge", - "rtt_ns": 796148, - "rtt_ms": 0.796148, + "rtt_ns": 1779041, + "rtt_ms": 1.779041, "checkpoint": 0, "vertex_from": "32", "vertex_to": "48", - "timestamp": "2025-11-27T01:23:33.863846915Z" + "timestamp": "2025-11-27T04:03:15.574128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614306, - "rtt_ms": 1.614306, + "rtt_ns": 909750, + "rtt_ms": 0.90975, "checkpoint": 0, - "vertex_from": "31", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:33.863963125Z" + "vertex_from": "32", + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:15.574541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514826, - "rtt_ms": 1.514826, + "rtt_ns": 1534916, + "rtt_ms": 1.534916, "checkpoint": 0, - "vertex_from": "31", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.863991585Z" + "vertex_from": "32", + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:15.574879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007077, - "rtt_ms": 1.007077, + "rtt_ns": 1549333, + "rtt_ms": 1.549333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:33.864661273Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.574893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256207, - "rtt_ms": 1.256207, + "rtt_ns": 1567292, + "rtt_ms": 1.567292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:33.864690933Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.575107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254487, - "rtt_ms": 1.254487, + "rtt_ns": 1052666, + "rtt_ms": 1.052666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.864693313Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.575182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042367, - "rtt_ms": 1.042367, + "rtt_ns": 1379708, + "rtt_ms": 1.379708, "checkpoint": 0, "vertex_from": "32", "vertex_to": "88", - "timestamp": "2025-11-27T01:23:33.864864842Z" + "timestamp": "2025-11-27T04:03:15.57522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486876, - "rtt_ms": 1.486876, + "rtt_ns": 997542, + "rtt_ms": 0.997542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.864899822Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.57554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147807, - "rtt_ms": 1.147807, + "rtt_ns": 1575375, + "rtt_ms": 1.575375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.864901942Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.575642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138977, - "rtt_ms": 1.138977, + "rtt_ns": 2588167, + "rtt_ms": 2.588167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:33.864908422Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.576242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195827, - "rtt_ms": 1.195827, + "rtt_ns": 2580291, + "rtt_ms": 2.580291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.865043772Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:15.576399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644905, - "rtt_ms": 1.644905, + "rtt_ns": 1629500, + "rtt_ms": 1.6295, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.86560862Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:03:15.57651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121174, - "rtt_ms": 2.121174, + "rtt_ns": 1347333, + "rtt_ms": 1.347333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "604", - "timestamp": "2025-11-27T01:23:33.866790087Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.57653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2821902, - "rtt_ms": 2.821902, + "rtt_ns": 4482750, + "rtt_ms": 4.48275, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.866813947Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.57681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059354, - "rtt_ms": 2.059354, + "rtt_ns": 2351334, + "rtt_ms": 2.351334, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:33.866974566Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:15.577246-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098884, - "rtt_ms": 2.098884, + "rtt_ns": 2212542, + "rtt_ms": 2.212542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:33.867002646Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:03:15.577321-08:00" }, { "operation": "add_edge", - "rtt_ns": 2127104, - "rtt_ms": 2.127104, + "rtt_ns": 1694042, + "rtt_ms": 1.694042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.867171706Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:15.577337-08:00" }, { "operation": "add_edge", - "rtt_ns": 2490873, - "rtt_ms": 2.490873, + "rtt_ns": 1029583, + "rtt_ms": 1.029583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:33.867183946Z" + "vertex_to": "143", + "timestamp": "2025-11-27T04:03:15.577429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648705, - "rtt_ms": 1.648705, + "rtt_ns": 1462708, + "rtt_ms": 1.462708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "143", - "timestamp": "2025-11-27T01:23:33.867258585Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.577706-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416613, - "rtt_ms": 2.416613, + "rtt_ns": 2215916, + "rtt_ms": 2.215916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.867282705Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:15.577757-08:00" }, { "operation": "add_edge", - "rtt_ns": 2629972, - "rtt_ms": 2.629972, + "rtt_ns": 1244083, + "rtt_ms": 1.244083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:33.867324555Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.577774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2448023, - "rtt_ms": 2.448023, + "rtt_ns": 1510459, + "rtt_ms": 1.510459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:33.867348855Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.578021-08:00" }, { "operation": "add_edge", - "rtt_ns": 854257, - "rtt_ms": 0.854257, + "rtt_ns": 1579459, + "rtt_ms": 1.579459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "61", - "timestamp": "2025-11-27T01:23:33.868027463Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:15.578392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156797, - "rtt_ms": 1.156797, + "rtt_ns": 1176791, + "rtt_ms": 1.176791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:33.868133063Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:15.578425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369066, - "rtt_ms": 1.369066, + "rtt_ns": 3230000, + "rtt_ms": 3.23, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.868160463Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:15.578453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393036, - "rtt_ms": 1.393036, + "rtt_ns": 1470792, + "rtt_ms": 1.470792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.868209633Z" + "vertex_to": "61", + "timestamp": "2025-11-27T04:03:15.578793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692485, - "rtt_ms": 1.692485, + "rtt_ns": 1663042, + "rtt_ms": 1.663042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.868695961Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:15.579002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571526, - "rtt_ms": 1.571526, + "rtt_ns": 1588875, + "rtt_ms": 1.588875, "checkpoint": 0, "vertex_from": "32", "vertex_to": "526", - "timestamp": "2025-11-27T01:23:33.868831421Z" + "timestamp": "2025-11-27T04:03:15.57902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540336, - "rtt_ms": 1.540336, + "rtt_ns": 1171167, + "rtt_ms": 1.171167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:33.868865951Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.579193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550536, - "rtt_ms": 1.550536, + "rtt_ns": 1534250, + "rtt_ms": 1.53425, "checkpoint": 0, "vertex_from": "32", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.868899931Z" + "timestamp": "2025-11-27T04:03:15.579333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723945, - "rtt_ms": 1.723945, + "rtt_ns": 1699875, + "rtt_ms": 1.699875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.868909151Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:15.579407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626796, - "rtt_ms": 1.626796, + "rtt_ns": 1814459, + "rtt_ms": 1.814459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.868910271Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:15.579572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083687, - "rtt_ms": 1.083687, + "rtt_ns": 1493041, + "rtt_ms": 1.493041, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.86911287Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:03:15.580288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594445, - "rtt_ms": 1.594445, + "rtt_ns": 1227875, + "rtt_ms": 1.227875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.869728438Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:15.580422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553335, - "rtt_ms": 1.553335, + "rtt_ns": 1445458, + "rtt_ms": 1.445458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:33.869764998Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:15.580448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626685, - "rtt_ms": 1.626685, + "rtt_ns": 2110792, + "rtt_ms": 2.110792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:33.869788068Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.580504-08:00" }, { "operation": "add_edge", - "rtt_ns": 993267, - "rtt_ms": 0.993267, + "rtt_ns": 2052208, + "rtt_ms": 2.052208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:33.869825978Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:15.580507-08:00" }, { "operation": "add_edge", - "rtt_ns": 947897, - "rtt_ms": 0.947897, + "rtt_ns": 1506166, + "rtt_ms": 1.506166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.869859368Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:15.580527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187227, - "rtt_ms": 1.187227, + "rtt_ns": 2743917, + "rtt_ms": 2.743917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "33", - "timestamp": "2025-11-27T01:23:33.869885248Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:15.58117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161046, - "rtt_ms": 1.161046, + "rtt_ns": 1786250, + "rtt_ms": 1.78625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:33.870028337Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:15.58136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829854, - "rtt_ms": 1.829854, + "rtt_ns": 2104750, + "rtt_ms": 2.10475, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:33.870731125Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:15.58144-08:00" }, { "operation": "add_edge", - "rtt_ns": 2262863, - "rtt_ms": 2.262863, + "rtt_ns": 2123542, + "rtt_ms": 2.123542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:33.871377523Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.581531-08:00" }, { "operation": "add_edge", - "rtt_ns": 2525182, - "rtt_ms": 2.525182, + "rtt_ns": 1430250, + "rtt_ms": 1.43025, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:33.871435563Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:15.581853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824645, - "rtt_ms": 1.824645, + "rtt_ns": 1755333, + "rtt_ms": 1.755333, "checkpoint": 0, "vertex_from": "32", "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.871613873Z" + "timestamp": "2025-11-27T04:03:15.582204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897165, - "rtt_ms": 1.897165, + "rtt_ns": 1951750, + "rtt_ms": 1.95175, "checkpoint": 0, "vertex_from": "32", "vertex_to": "73", - "timestamp": "2025-11-27T01:23:33.871627213Z" + "timestamp": "2025-11-27T04:03:15.582242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058964, - "rtt_ms": 2.058964, + "rtt_ns": 1816750, + "rtt_ms": 1.81675, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:33.871826372Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.582325-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019034, - "rtt_ms": 2.019034, + "rtt_ns": 1843250, + "rtt_ms": 1.84325, "checkpoint": 0, "vertex_from": "32", "vertex_to": "773", - "timestamp": "2025-11-27T01:23:33.871906072Z" + "timestamp": "2025-11-27T04:03:15.582371-08:00" }, { "operation": "add_edge", - "rtt_ns": 2181953, - "rtt_ms": 2.181953, + "rtt_ns": 977500, + "rtt_ms": 0.9775, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.872009021Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:15.58251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217783, - "rtt_ms": 2.217783, + "rtt_ns": 2384792, + "rtt_ms": 2.384792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.872078021Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.58289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366536, - "rtt_ms": 1.366536, + "rtt_ns": 1777375, + "rtt_ms": 1.777375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.872098351Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:15.582948-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188514, - "rtt_ms": 2.188514, + "rtt_ns": 1697250, + "rtt_ms": 1.69725, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.872217791Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.583059-08:00" }, { "operation": "add_edge", - "rtt_ns": 868958, - "rtt_ms": 0.868958, + "rtt_ns": 1550625, + "rtt_ms": 1.550625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:33.872248511Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.583405-08:00" }, { "operation": "add_edge", - "rtt_ns": 817528, - "rtt_ms": 0.817528, + "rtt_ns": 1976833, + "rtt_ms": 1.976833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:33.872254141Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:15.583419-08:00" }, { "operation": "add_edge", - "rtt_ns": 877757, - "rtt_ms": 0.877757, + "rtt_ns": 1426083, + "rtt_ms": 1.426083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.87250561Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:15.583669-08:00" }, { "operation": "add_edge", - "rtt_ns": 891567, - "rtt_ms": 0.891567, + "rtt_ns": 1704792, + "rtt_ms": 1.704792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.87250645Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:15.584032-08:00" }, { "operation": "add_edge", - "rtt_ns": 642718, - "rtt_ms": 0.642718, + "rtt_ns": 1539875, + "rtt_ms": 1.539875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:33.87255Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.584051-08:00" }, { "operation": "add_edge", - "rtt_ns": 771358, - "rtt_ms": 0.771358, + "rtt_ns": 1193250, + "rtt_ms": 1.19325, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:33.87259841Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:03:15.584142-08:00" }, { "operation": "add_edge", - "rtt_ns": 696768, - "rtt_ms": 0.696768, + "rtt_ns": 1835250, + "rtt_ms": 1.83525, "checkpoint": 0, "vertex_from": "32", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:33.872706859Z" + "timestamp": "2025-11-27T04:03:15.584209-08:00" }, { "operation": "add_edge", - "rtt_ns": 671488, - "rtt_ms": 0.671488, + "rtt_ns": 2035459, + "rtt_ms": 2.035459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.872750249Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.584241-08:00" }, { "operation": "add_edge", - "rtt_ns": 653988, - "rtt_ms": 0.653988, + "rtt_ns": 1354583, + "rtt_ms": 1.354583, "checkpoint": 0, "vertex_from": "32", "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.872753059Z" + "timestamp": "2025-11-27T04:03:15.584247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229606, - "rtt_ms": 1.229606, + "rtt_ns": 2010167, + "rtt_ms": 2.010167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:33.873484597Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:03:15.585072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274556, - "rtt_ms": 1.274556, + "rtt_ns": 1680458, + "rtt_ms": 1.680458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "457", - "timestamp": "2025-11-27T01:23:33.873493597Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:03:15.5851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304996, - "rtt_ms": 1.304996, + "rtt_ns": 2540250, + "rtt_ms": 2.54025, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "124", - "timestamp": "2025-11-27T01:23:33.873555597Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:15.585947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609795, - "rtt_ms": 1.609795, + "rtt_ns": 2415500, + "rtt_ms": 2.4155, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:33.874160495Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:15.586085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678155, - "rtt_ms": 1.678155, + "rtt_ns": 2054250, + "rtt_ms": 2.05425, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "115", - "timestamp": "2025-11-27T01:23:33.874185025Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:15.586106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658235, - "rtt_ms": 1.658235, + "rtt_ns": 1926083, + "rtt_ms": 1.926083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:33.874257795Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:15.586136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839334, - "rtt_ms": 1.839334, + "rtt_ns": 2217167, + "rtt_ms": 2.217167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:33.874346794Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:15.586251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703785, - "rtt_ms": 1.703785, + "rtt_ns": 2018167, + "rtt_ms": 2.018167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:33.874457914Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.586265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707905, - "rtt_ms": 1.707905, + "rtt_ns": 2151084, + "rtt_ms": 2.151084, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:33.874458904Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:15.586393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753685, - "rtt_ms": 1.753685, + "rtt_ns": 2257459, + "rtt_ms": 2.257459, "checkpoint": 0, "vertex_from": "32", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.874461764Z" + "timestamp": "2025-11-27T04:03:15.586401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315046, - "rtt_ms": 1.315046, + "rtt_ns": 1005709, + "rtt_ms": 1.005709, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:33.874810813Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:15.587142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275326, - "rtt_ms": 1.275326, + "rtt_ns": 1176750, + "rtt_ms": 1.17675, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:33.874838793Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:03:15.587428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391506, - "rtt_ms": 1.391506, + "rtt_ns": 2353334, + "rtt_ms": 2.353334, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.874877763Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:15.587455-08:00" }, { "operation": "add_edge", - "rtt_ns": 760268, - "rtt_ms": 0.760268, + "rtt_ns": 2400834, + "rtt_ms": 2.400834, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.874947343Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:15.587475-08:00" }, { "operation": "add_edge", - "rtt_ns": 794588, - "rtt_ms": 0.794588, + "rtt_ns": 1523833, + "rtt_ms": 1.523833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:33.874956623Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:15.58763-08:00" }, { "operation": "add_edge", - "rtt_ns": 758637, - "rtt_ms": 0.758637, + "rtt_ns": 1709959, + "rtt_ms": 1.709959, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.875017412Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:03:15.587658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053307, - "rtt_ms": 1.053307, + "rtt_ns": 1572791, + "rtt_ms": 1.572791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:33.875403001Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.587659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263956, - "rtt_ms": 1.263956, + "rtt_ns": 1393125, + "rtt_ms": 1.393125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:33.8757269Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.587659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291206, - "rtt_ms": 1.291206, + "rtt_ns": 1285542, + "rtt_ms": 1.285542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:33.87575144Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:15.587679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387936, - "rtt_ms": 1.387936, + "rtt_ns": 1978458, + "rtt_ms": 1.978458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.8758489Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:15.588381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046907, - "rtt_ms": 1.046907, + "rtt_ns": 1415708, + "rtt_ms": 1.415708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:33.87588697Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.588872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542985, - "rtt_ms": 1.542985, + "rtt_ns": 1452334, + "rtt_ms": 1.452334, "checkpoint": 0, "vertex_from": "32", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.876421668Z" + "timestamp": "2025-11-27T04:03:15.588881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650015, - "rtt_ms": 1.650015, + "rtt_ns": 1519708, + "rtt_ms": 1.519708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:33.876461788Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.588996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094357, - "rtt_ms": 1.094357, + "rtt_ns": 1374584, + "rtt_ms": 1.374584, "checkpoint": 0, "vertex_from": "32", "vertex_to": "112", - "timestamp": "2025-11-27T01:23:33.876499998Z" + "timestamp": "2025-11-27T04:03:15.589033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560195, - "rtt_ms": 1.560195, + "rtt_ns": 1928791, + "rtt_ms": 1.928791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.876508848Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:15.589077-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1560255, - "rtt_ms": 1.560255, + "operation": "add_vertex", + "rtt_ns": 1428459, + "rtt_ms": 1.428459, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.876518458Z" + "vertex_from": "372", + "timestamp": "2025-11-27T04:03:15.589089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551926, - "rtt_ms": 1.551926, + "rtt_ns": 1432708, + "rtt_ms": 1.432708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.876570278Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:15.589093-08:00" }, { "operation": "add_edge", - "rtt_ns": 967057, - "rtt_ms": 0.967057, + "rtt_ns": 1439375, + "rtt_ms": 1.439375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:33.876855427Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:15.589119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124277, - "rtt_ms": 1.124277, + "rtt_ns": 1543125, + "rtt_ms": 1.543125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:33.876975087Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:15.589174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249577, - "rtt_ms": 1.249577, + "rtt_ns": 1628666, + "rtt_ms": 1.628666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:33.877002987Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:15.590011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062727, - "rtt_ms": 1.062727, + "rtt_ns": 1242291, + "rtt_ms": 1.242291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:33.877525855Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:15.590239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135507, - "rtt_ms": 1.135507, + "rtt_ns": 1214292, + "rtt_ms": 1.214292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "179", - "timestamp": "2025-11-27T01:23:33.877559315Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:15.590291-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1907275, - "rtt_ms": 1.907275, + "operation": "add_edge", + "rtt_ns": 1489542, + "rtt_ms": 1.489542, "checkpoint": 0, - "vertex_from": "372", - "timestamp": "2025-11-27T01:23:33.877639555Z" + "vertex_from": "32", + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:15.590372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609075, - "rtt_ms": 1.609075, + "rtt_ns": 1399250, + "rtt_ms": 1.39925, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:33.878180573Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:15.590433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273056, - "rtt_ms": 1.273056, + "rtt_ns": 1415042, + "rtt_ms": 1.415042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:33.878249273Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:15.590508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246506, - "rtt_ms": 1.246506, + "rtt_ns": 1668708, + "rtt_ms": 1.668708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:33.878252083Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:03:15.590543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421436, - "rtt_ms": 1.421436, + "rtt_ns": 1486250, + "rtt_ms": 1.48625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:33.878279023Z" + "timestamp": "2025-11-27T04:03:15.590607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844485, - "rtt_ms": 1.844485, + "rtt_ns": 1469125, + "rtt_ms": 1.469125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:33.878355273Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:15.590645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838725, - "rtt_ms": 1.838725, + "rtt_ns": 1642250, + "rtt_ms": 1.64225, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:33.878359593Z" + "vertex_to": "372", + "timestamp": "2025-11-27T04:03:15.590731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959565, - "rtt_ms": 1.959565, + "rtt_ns": 1069167, + "rtt_ms": 1.069167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:33.878461363Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:15.591578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034457, - "rtt_ms": 1.034457, + "rtt_ns": 1625750, + "rtt_ms": 1.62575, "checkpoint": 0, "vertex_from": "32", "vertex_to": "594", - "timestamp": "2025-11-27T01:23:33.878563172Z" + "timestamp": "2025-11-27T04:03:15.591866-08:00" }, { "operation": "add_edge", - "rtt_ns": 898118, - "rtt_ms": 0.898118, + "rtt_ns": 2211125, + "rtt_ms": 2.211125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.879150071Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:15.592223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004198, - "rtt_ms": 1.004198, + "rtt_ns": 2048625, + "rtt_ms": 2.048625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "266", - "timestamp": "2025-11-27T01:23:33.879185811Z" + "timestamp": "2025-11-27T04:03:15.592421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641446, - "rtt_ms": 1.641446, + "rtt_ns": 1692250, + "rtt_ms": 1.69225, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.879202651Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:15.592426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586745, - "rtt_ms": 1.586745, + "rtt_ns": 1784292, + "rtt_ms": 1.784292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "372", - "timestamp": "2025-11-27T01:23:33.87922695Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:15.59243-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1908542, + "rtt_ms": 1.908542, + "checkpoint": 0, + "vertex_from": "994", + "timestamp": "2025-11-27T04:03:15.592454-08:00" }, { "operation": "add_edge", - "rtt_ns": 973427, - "rtt_ms": 0.973427, + "rtt_ns": 2185292, + "rtt_ms": 2.185292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:33.87922803Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.59262-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1811335, - "rtt_ms": 1.811335, + "operation": "add_edge", + "rtt_ns": 2484250, + "rtt_ms": 2.48425, "checkpoint": 0, - "vertex_from": "994", - "timestamp": "2025-11-27T01:23:33.880096618Z" + "vertex_from": "32", + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:15.592777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759725, - "rtt_ms": 1.759725, + "rtt_ns": 1603458, + "rtt_ms": 1.603458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "730", - "timestamp": "2025-11-27T01:23:33.880116508Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:15.593183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912584, - "rtt_ms": 1.912584, + "rtt_ns": 2620042, + "rtt_ms": 2.620042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:33.880275967Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:03:15.593229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899464, - "rtt_ms": 1.899464, + "rtt_ns": 1588916, + "rtt_ms": 1.588916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:33.880363077Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:03:15.593455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972865, - "rtt_ms": 1.972865, + "rtt_ns": 1460042, + "rtt_ms": 1.460042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:33.880538267Z" + "vertex_to": "994", + "timestamp": "2025-11-27T04:03:15.593914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2184293, - "rtt_ms": 2.184293, + "rtt_ns": 1708375, + "rtt_ms": 1.708375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "709", - "timestamp": "2025-11-27T01:23:33.881335744Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:15.593932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177344, - "rtt_ms": 2.177344, + "rtt_ns": 1309958, + "rtt_ms": 1.309958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.881406204Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:15.594087-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207383, - "rtt_ms": 2.207383, + "rtt_ns": 1808583, + "rtt_ms": 1.808583, "checkpoint": 0, "vertex_from": "32", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:33.881411654Z" + "timestamp": "2025-11-27T04:03:15.594231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367636, - "rtt_ms": 1.367636, + "rtt_ns": 1614458, + "rtt_ms": 1.614458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "338", - "timestamp": "2025-11-27T01:23:33.881486344Z" + "timestamp": "2025-11-27T04:03:15.594235-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312814, - "rtt_ms": 2.312814, + "rtt_ns": 1811500, + "rtt_ms": 1.8115, "checkpoint": 0, "vertex_from": "32", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.881542074Z" + "timestamp": "2025-11-27T04:03:15.594242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509295, - "rtt_ms": 1.509295, + "rtt_ns": 1896875, + "rtt_ms": 1.896875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "994", - "timestamp": "2025-11-27T01:23:33.881606453Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:15.594324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080546, - "rtt_ms": 1.080546, + "rtt_ns": 2312958, + "rtt_ms": 2.312958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:33.881620133Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.595769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507892, - "rtt_ms": 2.507892, + "rtt_ns": 1541333, + "rtt_ms": 1.541333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.881695713Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:03:15.595786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341536, - "rtt_ms": 1.341536, + "rtt_ns": 1718666, + "rtt_ms": 1.718666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.881706153Z" + "vertex_to": "791", + "timestamp": "2025-11-27T04:03:15.595807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452106, - "rtt_ms": 1.452106, + "rtt_ns": 1931166, + "rtt_ms": 1.931166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.881729043Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:15.595846-08:00" }, { "operation": "add_edge", - "rtt_ns": 993427, - "rtt_ms": 0.993427, + "rtt_ns": 2667250, + "rtt_ms": 2.66725, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "791", - "timestamp": "2025-11-27T01:23:33.882481081Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:15.595897-08:00" }, { "operation": "add_edge", - "rtt_ns": 982217, - "rtt_ms": 0.982217, + "rtt_ns": 1793041, + "rtt_ms": 1.793041, "checkpoint": 0, "vertex_from": "32", "vertex_to": "668", - "timestamp": "2025-11-27T01:23:33.882525181Z" + "timestamp": "2025-11-27T04:03:15.596025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247757, - "rtt_ms": 1.247757, + "rtt_ns": 1793125, + "rtt_ms": 1.793125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.882584531Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:15.596029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186616, - "rtt_ms": 1.186616, + "rtt_ns": 2134458, + "rtt_ms": 2.134458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "212", - "timestamp": "2025-11-27T01:23:33.8826Z" + "timestamp": "2025-11-27T04:03:15.596068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211256, - "rtt_ms": 1.211256, + "rtt_ns": 2955791, + "rtt_ms": 2.955791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:33.88262045Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:15.59614-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1113987, - "rtt_ms": 1.113987, + "operation": "add_vertex", + "rtt_ns": 1838584, + "rtt_ms": 1.838584, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "965", - "timestamp": "2025-11-27T01:23:33.8827354Z" + "vertex_from": "159", + "timestamp": "2025-11-27T04:03:15.596163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536135, - "rtt_ms": 1.536135, + "rtt_ns": 1355000, + "rtt_ms": 1.355, "checkpoint": 0, "vertex_from": "32", "vertex_to": "297", - "timestamp": "2025-11-27T01:23:33.883267258Z" + "timestamp": "2025-11-27T04:03:15.597142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696295, - "rtt_ms": 1.696295, + "rtt_ns": 1390792, + "rtt_ms": 1.390792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:33.883304578Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:15.597161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659865, - "rtt_ms": 1.659865, + "rtt_ns": 1552000, + "rtt_ms": 1.552, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:33.883367228Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1743695, - "rtt_ms": 1.743695, - "checkpoint": 0, - "vertex_from": "159", - "timestamp": "2025-11-27T01:23:33.883442978Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:15.597399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676785, - "rtt_ms": 1.676785, + "rtt_ns": 1618500, + "rtt_ms": 1.6185, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:33.884203696Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:15.597426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617106, - "rtt_ms": 1.617106, + "rtt_ns": 1564333, + "rtt_ms": 1.564333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "299", - "timestamp": "2025-11-27T01:23:33.884219406Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.597462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754995, - "rtt_ms": 1.754995, + "rtt_ns": 1466834, + "rtt_ms": 1.466834, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.884238776Z" + "vertex_to": "299", + "timestamp": "2025-11-27T04:03:15.597492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004377, - "rtt_ms": 1.004377, + "rtt_ns": 1401042, + "rtt_ms": 1.401042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:33.884310025Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.597541-08:00" }, { "operation": "add_edge", - "rtt_ns": 913077, - "rtt_ms": 0.913077, + "rtt_ns": 1492167, + "rtt_ms": 1.492167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "159", - "timestamp": "2025-11-27T01:23:33.884356495Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:15.597561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141667, - "rtt_ms": 1.141667, + "rtt_ns": 1581625, + "rtt_ms": 1.581625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.884410625Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.597612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693965, - "rtt_ms": 1.693965, + "rtt_ns": 1569792, + "rtt_ms": 1.569792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:33.884430815Z" + "vertex_to": "159", + "timestamp": "2025-11-27T04:03:15.597733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845544, - "rtt_ms": 1.845544, + "rtt_ns": 1621542, + "rtt_ms": 1.621542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.884432595Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.599085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096627, - "rtt_ms": 1.096627, + "rtt_ns": 1932209, + "rtt_ms": 1.932209, "checkpoint": 0, "vertex_from": "32", "vertex_to": "940", - "timestamp": "2025-11-27T01:23:33.884464825Z" + "timestamp": "2025-11-27T04:03:15.599094-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364713, - "rtt_ms": 2.364713, + "rtt_ns": 1672041, + "rtt_ms": 1.672041, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.884986823Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:15.599099-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1276187, - "rtt_ms": 1.276187, + "rtt_ns": 1646458, + "rtt_ms": 1.646458, "checkpoint": 0, "vertex_from": "981", - "timestamp": "2025-11-27T01:23:33.885591272Z" + "timestamp": "2025-11-27T04:03:15.59914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687955, - "rtt_ms": 1.687955, + "rtt_ns": 1823542, + "rtt_ms": 1.823542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:33.885909931Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.599226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992554, - "rtt_ms": 1.992554, + "rtt_ns": 1613625, + "rtt_ms": 1.613625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.886404339Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.599226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227184, - "rtt_ms": 2.227184, + "rtt_ns": 1697875, + "rtt_ms": 1.697875, "checkpoint": 0, "vertex_from": "32", "vertex_to": "553", - "timestamp": "2025-11-27T01:23:33.886584879Z" + "timestamp": "2025-11-27T04:03:15.59924-08:00" }, { "operation": "add_edge", - "rtt_ns": 2213893, - "rtt_ms": 2.213893, + "rtt_ns": 2141833, + "rtt_ms": 2.141833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:33.886648828Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:15.599285-08:00" }, { "operation": "add_edge", - "rtt_ns": 2804202, - "rtt_ms": 2.804202, + "rtt_ns": 1731291, + "rtt_ms": 1.731291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.887236047Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.599293-08:00" }, { "operation": "add_edge", - "rtt_ns": 3107070, - "rtt_ms": 3.10707, + "rtt_ns": 1563417, + "rtt_ms": 1.563417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.887347086Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:15.599298-08:00" }, { "operation": "add_edge", - "rtt_ns": 3167320, - "rtt_ms": 3.16732, + "rtt_ns": 1345250, + "rtt_ms": 1.34525, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.887373546Z" + "vertex_to": "79", + "timestamp": "2025-11-27T04:03:15.600446-08:00" }, { "operation": "add_edge", - "rtt_ns": 2477303, - "rtt_ms": 2.477303, + "rtt_ns": 1258667, + "rtt_ms": 1.258667, + "checkpoint": 0, + "vertex_from": "32", + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:15.600486-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1407416, + "rtt_ms": 1.407416, "checkpoint": 0, "vertex_from": "32", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:33.887465576Z" + "timestamp": "2025-11-27T04:03:15.600503-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491052, - "rtt_ms": 2.491052, + "rtt_ns": 1391375, + "rtt_ms": 1.391375, "checkpoint": 0, "vertex_from": "32", "vertex_to": "981", - "timestamp": "2025-11-27T01:23:33.888083134Z" + "timestamp": "2025-11-27T04:03:15.600531-08:00" }, { "operation": "add_edge", - "rtt_ns": 3634629, - "rtt_ms": 3.634629, + "rtt_ns": 1950083, + "rtt_ms": 1.950083, "checkpoint": 0, "vertex_from": "32", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:33.888102184Z" + "timestamp": "2025-11-27T04:03:15.601038-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224483, - "rtt_ms": 2.224483, + "rtt_ns": 1816709, + "rtt_ms": 1.816709, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "79", - "timestamp": "2025-11-27T01:23:33.888136114Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.601103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546415, - "rtt_ms": 1.546415, + "rtt_ns": 1983875, + "rtt_ms": 1.983875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:33.888137394Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.601279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526356, - "rtt_ms": 1.526356, + "rtt_ns": 2051375, + "rtt_ms": 2.051375, "checkpoint": 0, "vertex_from": "32", "vertex_to": "587", - "timestamp": "2025-11-27T01:23:33.888176894Z" + "timestamp": "2025-11-27T04:03:15.601293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812915, - "rtt_ms": 1.812915, + "rtt_ns": 2230916, + "rtt_ms": 2.230916, "checkpoint": 0, "vertex_from": "32", "vertex_to": "585", - "timestamp": "2025-11-27T01:23:33.888219074Z" + "timestamp": "2025-11-27T04:03:15.601457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663815, - "rtt_ms": 1.663815, + "rtt_ns": 2161416, + "rtt_ms": 2.161416, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.888901172Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:03:15.601461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590876, - "rtt_ms": 1.590876, + "rtt_ns": 1496916, + "rtt_ms": 1.496916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.888943042Z" + "vertex_to": "279", + "timestamp": "2025-11-27T04:03:15.602029-08:00" }, { "operation": "add_edge", - "rtt_ns": 870918, - "rtt_ms": 0.870918, + "rtt_ns": 1667959, + "rtt_ms": 1.667959, "checkpoint": 0, "vertex_from": "32", "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.888975072Z" + "timestamp": "2025-11-27T04:03:15.602172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511346, - "rtt_ms": 1.511346, + "rtt_ns": 2143500, + "rtt_ms": 2.1435, "checkpoint": 0, "vertex_from": "32", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.888978632Z" + "timestamp": "2025-11-27T04:03:15.602592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905535, - "rtt_ms": 1.905535, + "rtt_ns": 1567500, + "rtt_ms": 1.5675, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:33.889280601Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:15.602607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227977, - "rtt_ms": 1.227977, + "rtt_ns": 2123041, + "rtt_ms": 2.123041, "checkpoint": 0, "vertex_from": "32", "vertex_to": "976", - "timestamp": "2025-11-27T01:23:33.889315111Z" + "timestamp": "2025-11-27T04:03:15.60261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333916, - "rtt_ms": 1.333916, + "rtt_ns": 1149375, + "rtt_ms": 1.149375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "279", - "timestamp": "2025-11-27T01:23:33.88947165Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:15.602612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409306, - "rtt_ms": 1.409306, + "rtt_ns": 1261542, + "rtt_ms": 1.261542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:33.88954845Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:15.60272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373616, - "rtt_ms": 1.373616, + "rtt_ns": 1446666, + "rtt_ms": 1.446666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.88955173Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:03:15.602741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429136, - "rtt_ms": 1.429136, + "rtt_ns": 1464750, + "rtt_ms": 1.46475, "checkpoint": 0, "vertex_from": "32", "vertex_to": "334", - "timestamp": "2025-11-27T01:23:33.88965026Z" + "timestamp": "2025-11-27T04:03:15.602745-08:00" }, { "operation": "add_edge", - "rtt_ns": 798938, - "rtt_ms": 0.798938, + "rtt_ns": 1646833, + "rtt_ms": 1.646833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "60", - "timestamp": "2025-11-27T01:23:33.8897011Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.602751-08:00" }, { "operation": "add_edge", - "rtt_ns": 832237, - "rtt_ms": 0.832237, + "rtt_ns": 1156959, + "rtt_ms": 1.156959, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:33.889776499Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:15.603187-08:00" }, { "operation": "add_edge", - "rtt_ns": 865177, - "rtt_ms": 0.865177, + "rtt_ns": 1067667, + "rtt_ms": 1.067667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.889842559Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:15.603684-08:00" }, { "operation": "add_edge", - "rtt_ns": 914417, - "rtt_ms": 0.914417, + "rtt_ns": 1236042, + "rtt_ms": 1.236042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:33.889894959Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:15.603844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010157, - "rtt_ms": 1.010157, + "rtt_ns": 2037916, + "rtt_ms": 2.037916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.890326958Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:15.604211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159577, - "rtt_ms": 1.159577, + "rtt_ns": 1500167, + "rtt_ms": 1.500167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:33.890441558Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:03:15.604242-08:00" }, { "operation": "add_edge", - "rtt_ns": 940797, - "rtt_ms": 0.940797, + "rtt_ns": 1547875, + "rtt_ms": 1.547875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:33.890494167Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:03:15.604269-08:00" }, { "operation": "add_edge", - "rtt_ns": 931027, - "rtt_ms": 0.931027, + "rtt_ns": 1723542, + "rtt_ms": 1.723542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "286", - "timestamp": "2025-11-27T01:23:33.890582757Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:15.604316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033477, - "rtt_ms": 1.033477, + "rtt_ns": 1746208, + "rtt_ms": 1.746208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:33.890583247Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:03:15.604492-08:00" }, { "operation": "add_edge", - "rtt_ns": 912037, - "rtt_ms": 0.912037, + "rtt_ns": 1961417, + "rtt_ms": 1.961417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "422", - "timestamp": "2025-11-27T01:23:33.890614417Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.604714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203057, - "rtt_ms": 1.203057, + "rtt_ns": 2114750, + "rtt_ms": 2.11475, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:33.890676597Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:15.604743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565676, - "rtt_ms": 1.565676, + "rtt_ns": 1739917, + "rtt_ms": 1.739917, "checkpoint": 0, "vertex_from": "32", "vertex_to": "852", - "timestamp": "2025-11-27T01:23:33.891462375Z" + "timestamp": "2025-11-27T04:03:15.604928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706866, - "rtt_ms": 1.706866, + "rtt_ns": 1248916, + "rtt_ms": 1.248916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:33.891484435Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:15.604934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042747, - "rtt_ms": 1.042747, + "rtt_ns": 1285000, + "rtt_ms": 1.285, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:33.891485745Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.60578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204307, - "rtt_ms": 1.204307, + "rtt_ns": 1586584, + "rtt_ms": 1.586584, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:33.891533215Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:15.605798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974605, - "rtt_ms": 1.974605, + "rtt_ns": 2069834, + "rtt_ms": 2.069834, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.891818904Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:03:15.605915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378827, - "rtt_ms": 1.378827, + "rtt_ns": 1657334, + "rtt_ms": 1.657334, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:33.891874624Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:15.605927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525836, - "rtt_ms": 1.525836, + "rtt_ns": 1219750, + "rtt_ms": 1.21975, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "440", - "timestamp": "2025-11-27T01:23:33.892110233Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:03:15.605935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498706, - "rtt_ms": 1.498706, + "rtt_ns": 1822500, + "rtt_ms": 1.8225, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.892114903Z" + "vertex_to": "440", + "timestamp": "2025-11-27T04:03:15.606065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929515, - "rtt_ms": 1.929515, + "rtt_ns": 1861250, + "rtt_ms": 1.86125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:33.892514682Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.606178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080146, - "rtt_ms": 1.080146, + "rtt_ns": 1604458, + "rtt_ms": 1.604458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "211", - "timestamp": "2025-11-27T01:23:33.892566201Z" + "timestamp": "2025-11-27T04:03:15.606348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918074, - "rtt_ms": 1.918074, + "rtt_ns": 1191791, + "rtt_ms": 1.191791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.892596131Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:03:15.606991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984614, - "rtt_ms": 1.984614, + "rtt_ns": 2528209, + "rtt_ms": 2.528209, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.893472029Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:03:15.607463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048844, - "rtt_ms": 2.048844, + "rtt_ns": 2685875, + "rtt_ms": 2.685875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "602", - "timestamp": "2025-11-27T01:23:33.893513249Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.607614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716025, - "rtt_ms": 1.716025, + "rtt_ns": 1875166, + "rtt_ms": 1.875166, "checkpoint": 0, "vertex_from": "32", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.893537059Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1717754, - "rtt_ms": 1.717754, - "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "391", - "timestamp": "2025-11-27T01:23:33.893593708Z" + "timestamp": "2025-11-27T04:03:15.607657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063033, - "rtt_ms": 2.063033, + "rtt_ns": 1598708, + "rtt_ms": 1.598708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:33.893598098Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:15.607666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569885, - "rtt_ms": 1.569885, + "rtt_ns": 1319166, + "rtt_ms": 1.319166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "826", - "timestamp": "2025-11-27T01:23:33.893686328Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:15.607668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600145, - "rtt_ms": 1.600145, + "rtt_ns": 1734583, + "rtt_ms": 1.734583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:33.893711708Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:15.60767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190787, - "rtt_ms": 1.190787, + "rtt_ns": 1551333, + "rtt_ms": 1.551333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:33.893758198Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.60773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679565, - "rtt_ms": 1.679565, + "rtt_ns": 1817083, + "rtt_ms": 1.817083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.894196437Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:15.607735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709515, - "rtt_ms": 1.709515, + "rtt_ns": 2001250, + "rtt_ms": 2.00125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.894307456Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:03:15.607929-08:00" }, { "operation": "add_edge", - "rtt_ns": 866087, - "rtt_ms": 0.866087, + "rtt_ns": 1249667, + "rtt_ms": 1.249667, "checkpoint": 0, "vertex_from": "32", "vertex_to": "616", - "timestamp": "2025-11-27T01:23:33.894380386Z" + "timestamp": "2025-11-27T04:03:15.608246-08:00" }, { "operation": "add_edge", - "rtt_ns": 922947, - "rtt_ms": 0.922947, + "rtt_ns": 931500, + "rtt_ms": 0.9315, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:33.894397436Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:15.608663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008277, - "rtt_ms": 1.008277, + "rtt_ns": 1790500, + "rtt_ms": 1.7905, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.894546216Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.609461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521346, - "rtt_ms": 1.521346, + "rtt_ns": 1869416, + "rtt_ms": 1.869416, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:33.895208804Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:15.609539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614346, - "rtt_ms": 1.614346, + "rtt_ns": 1991583, + "rtt_ms": 1.991583, "checkpoint": 0, "vertex_from": "32", "vertex_to": "185", - "timestamp": "2025-11-27T01:23:33.895210544Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1499966, - "rtt_ms": 1.499966, - "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:33.895212744Z" + "timestamp": "2025-11-27T04:03:15.609607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635775, - "rtt_ms": 1.635775, + "rtt_ns": 1694500, + "rtt_ms": 1.6945, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.895235273Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:15.609625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489175, - "rtt_ms": 1.489175, + "rtt_ns": 2006667, + "rtt_ms": 2.006667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.895248393Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:15.609676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532395, - "rtt_ms": 1.532395, + "rtt_ns": 2221417, + "rtt_ms": 2.221417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "363", - "timestamp": "2025-11-27T01:23:33.895931991Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:15.609688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842835, - "rtt_ms": 1.842835, + "rtt_ns": 2150833, + "rtt_ms": 2.150833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:33.896152031Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.609809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828855, - "rtt_ms": 1.828855, + "rtt_ns": 1697125, + "rtt_ms": 1.697125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:33.896210711Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:15.611305-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1696504, - "rtt_ms": 1.696504, + "rtt_ns": 2747709, + "rtt_ms": 2.747709, "checkpoint": 0, "vertex_from": "845", - "timestamp": "2025-11-27T01:23:33.89624729Z" + "timestamp": "2025-11-27T04:03:15.611414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045487, - "rtt_ms": 1.045487, + "rtt_ns": 1976583, + "rtt_ms": 1.976583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "684", - "timestamp": "2025-11-27T01:23:33.89628384Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:03:15.611439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072776, - "rtt_ms": 1.072776, + "rtt_ns": 1653042, + "rtt_ms": 1.653042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:33.89628717Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:15.611464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2123973, - "rtt_ms": 2.123973, + "rtt_ns": 1918541, + "rtt_ms": 1.918541, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:33.89632484Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:15.611608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150416, - "rtt_ms": 1.150416, + "rtt_ns": 1938458, + "rtt_ms": 1.938458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "597", - "timestamp": "2025-11-27T01:23:33.89636074Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:15.611616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640505, - "rtt_ms": 1.640505, + "rtt_ns": 3373333, + "rtt_ms": 3.373333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:33.896853379Z" + "vertex_to": "363", + "timestamp": "2025-11-27T04:03:15.61162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700195, - "rtt_ms": 1.700195, + "rtt_ns": 2081041, + "rtt_ms": 2.081041, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:33.896950508Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:15.611621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075337, - "rtt_ms": 1.075337, + "rtt_ns": 3951458, + "rtt_ms": 3.951458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:33.897228808Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:15.611689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172846, - "rtt_ms": 1.172846, + "rtt_ns": 2224166, + "rtt_ms": 2.224166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:33.897384697Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:03:15.61185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510606, - "rtt_ms": 1.510606, + "rtt_ns": 1278167, + "rtt_ms": 1.278167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.897444667Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:15.612718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193137, - "rtt_ms": 1.193137, + "rtt_ns": 1471541, + "rtt_ms": 1.471541, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:33.897520097Z" + "vertex_to": "845", + "timestamp": "2025-11-27T04:03:15.612885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295406, - "rtt_ms": 1.295406, + "rtt_ns": 1414291, + "rtt_ms": 1.414291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:33.897580866Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:15.613038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384176, - "rtt_ms": 1.384176, + "rtt_ns": 1745208, + "rtt_ms": 1.745208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "845", - "timestamp": "2025-11-27T01:23:33.897631806Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:15.613052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997494, - "rtt_ms": 1.997494, + "rtt_ns": 1442458, + "rtt_ms": 1.442458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.898359364Z" + "timestamp": "2025-11-27T04:03:15.61306-08:00" }, { "operation": "add_edge", - "rtt_ns": 2202604, - "rtt_ms": 2.202604, + "rtt_ns": 1472542, + "rtt_ms": 1.472542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:33.898490834Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:15.613097-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107803, - "rtt_ms": 2.107803, + "rtt_ns": 2048584, + "rtt_ms": 2.048584, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:33.898962862Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:15.613513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881584, - "rtt_ms": 1.881584, + "rtt_ns": 1747042, + "rtt_ms": 1.747042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:33.899111562Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:03:15.613598-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201764, - "rtt_ms": 2.201764, + "rtt_ns": 963500, + "rtt_ms": 0.9635, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:33.899153122Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:15.613683-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312403, - "rtt_ms": 2.312403, + "rtt_ns": 2077209, + "rtt_ms": 2.077209, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:33.89975801Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:15.613686-08:00" }, { "operation": "add_edge", - "rtt_ns": 2436773, - "rtt_ms": 2.436773, + "rtt_ns": 3281458, + "rtt_ms": 3.281458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "428", - "timestamp": "2025-11-27T01:23:33.89982287Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:15.614971-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312513, - "rtt_ms": 2.312513, + "rtt_ns": 2114042, + "rtt_ms": 2.114042, "checkpoint": 0, "vertex_from": "32", "vertex_to": "596", - "timestamp": "2025-11-27T01:23:33.8998338Z" + "timestamp": "2025-11-27T04:03:15.615001-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265194, - "rtt_ms": 2.265194, + "rtt_ns": 1510958, + "rtt_ms": 1.510958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:33.89984716Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:15.615026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237844, - "rtt_ms": 2.237844, + "rtt_ns": 2012834, + "rtt_ms": 2.012834, "checkpoint": 0, "vertex_from": "32", "vertex_to": "228", - "timestamp": "2025-11-27T01:23:33.89987074Z" + "timestamp": "2025-11-27T04:03:15.615066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534176, - "rtt_ms": 1.534176, + "rtt_ns": 2303000, + "rtt_ms": 2.303, "checkpoint": 0, "vertex_from": "32", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:33.8998957Z" + "timestamp": "2025-11-27T04:03:15.615364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619195, - "rtt_ms": 1.619195, - "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:33.900111319Z" - }, - { - "operation": "add_edge", - "rtt_ns": 999597, - "rtt_ms": 0.999597, + "rtt_ns": 1706459, + "rtt_ms": 1.706459, "checkpoint": 0, "vertex_from": "32", "vertex_to": "404", - "timestamp": "2025-11-27T01:23:33.900153969Z" + "timestamp": "2025-11-27T04:03:15.61539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221627, - "rtt_ms": 1.221627, + "rtt_ns": 1968791, + "rtt_ms": 1.968791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:33.900185819Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.615568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082957, - "rtt_ms": 1.082957, + "rtt_ns": 2593833, + "rtt_ms": 2.593833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.900197149Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:15.615692-08:00" }, { "operation": "add_edge", - "rtt_ns": 905117, - "rtt_ms": 0.905117, + "rtt_ns": 2341791, + "rtt_ms": 2.341791, "checkpoint": 0, "vertex_from": "32", "vertex_to": "710", - "timestamp": "2025-11-27T01:23:33.900664457Z" + "timestamp": "2025-11-27T04:03:15.61603-08:00" }, { "operation": "add_edge", - "rtt_ns": 912567, - "rtt_ms": 0.912567, + "rtt_ns": 3041166, + "rtt_ms": 3.041166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:33.900748017Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:15.616082-08:00" }, { "operation": "add_edge", - "rtt_ns": 941987, - "rtt_ms": 0.941987, + "rtt_ns": 1491625, + "rtt_ms": 1.491625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "482", - "timestamp": "2025-11-27T01:23:33.900765987Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:15.616493-08:00" }, { "operation": "add_edge", - "rtt_ns": 895387, - "rtt_ms": 0.895387, + "rtt_ns": 1451375, + "rtt_ms": 1.451375, "checkpoint": 0, "vertex_from": "32", "vertex_to": "75", - "timestamp": "2025-11-27T01:23:33.900767257Z" + "timestamp": "2025-11-27T04:03:15.616519-08:00" }, { "operation": "add_edge", - "rtt_ns": 930677, - "rtt_ms": 0.930677, + "rtt_ns": 1136000, + "rtt_ms": 1.136, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:33.900827287Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:15.616527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011837, - "rtt_ms": 1.011837, + "rtt_ns": 1566625, + "rtt_ms": 1.566625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:33.900860067Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:03:15.616539-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 695908, - "rtt_ms": 0.695908, + "operation": "add_edge", + "rtt_ns": 1252709, + "rtt_ms": 1.252709, "checkpoint": 0, - "vertex_from": "977", - "timestamp": "2025-11-27T01:23:33.900884247Z" + "vertex_from": "32", + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:15.616617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359656, - "rtt_ms": 1.359656, + "rtt_ns": 2132125, + "rtt_ms": 2.132125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:33.901473335Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:15.617701-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1369706, - "rtt_ms": 1.369706, + "operation": "add_vertex", + "rtt_ns": 2053125, + "rtt_ms": 2.053125, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:33.901568005Z" + "vertex_from": "977", + "timestamp": "2025-11-27T04:03:15.617747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474496, - "rtt_ms": 1.474496, + "rtt_ns": 1195250, + "rtt_ms": 1.19525, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:33.901629735Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:15.617814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644846, - "rtt_ms": 1.644846, + "rtt_ns": 1405292, + "rtt_ms": 1.405292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:33.902394163Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:15.617934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826535, - "rtt_ms": 1.826535, + "rtt_ns": 1905167, + "rtt_ms": 1.905167, "checkpoint": 0, "vertex_from": "32", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:33.902493322Z" + "timestamp": "2025-11-27T04:03:15.617994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745255, - "rtt_ms": 1.745255, + "rtt_ns": 3308292, + "rtt_ms": 3.308292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:33.902514062Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:15.618337-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042234, - "rtt_ms": 2.042234, + "rtt_ns": 1994875, + "rtt_ms": 1.994875, "checkpoint": 0, "vertex_from": "32", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.902809721Z" + "timestamp": "2025-11-27T04:03:15.618515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126294, - "rtt_ms": 2.126294, + "rtt_ns": 2495000, + "rtt_ms": 2.495, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:33.902955011Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:15.618528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423136, - "rtt_ms": 1.423136, + "rtt_ns": 1170166, + "rtt_ms": 1.170166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "45", - "timestamp": "2025-11-27T01:23:33.902992951Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:03:15.619106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415806, - "rtt_ms": 1.415806, + "rtt_ns": 1127667, + "rtt_ms": 1.127667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "437", - "timestamp": "2025-11-27T01:23:33.903046641Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:15.619123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2242004, - "rtt_ms": 2.242004, + "rtt_ns": 2633459, + "rtt_ms": 2.633459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:33.903103201Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:15.619129-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245044, - "rtt_ms": 2.245044, + "rtt_ns": 1383833, + "rtt_ms": 1.383833, "checkpoint": 0, "vertex_from": "32", "vertex_to": "977", - "timestamp": "2025-11-27T01:23:33.903129601Z" + "timestamp": "2025-11-27T04:03:15.619131-08:00" }, { "operation": "add_edge", - "rtt_ns": 845027, - "rtt_ms": 0.845027, + "rtt_ns": 1424833, + "rtt_ms": 1.424833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.90324072Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:03:15.619241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776785, - "rtt_ms": 1.776785, + "rtt_ns": 3295708, + "rtt_ms": 3.295708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:33.90325194Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:15.619836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261037, - "rtt_ms": 1.261037, + "rtt_ns": 1498042, + "rtt_ms": 1.498042, "checkpoint": 0, "vertex_from": "32", "vertex_to": "610", - "timestamp": "2025-11-27T01:23:33.903756069Z" + "timestamp": "2025-11-27T04:03:15.619836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274917, - "rtt_ms": 1.274917, + "rtt_ns": 2136125, + "rtt_ms": 2.136125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:33.903789889Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:15.619838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269507, - "rtt_ms": 1.269507, + "rtt_ns": 2088500, + "rtt_ms": 2.0885, "checkpoint": 0, "vertex_from": "32", "vertex_to": "327", - "timestamp": "2025-11-27T01:23:33.904080518Z" + "timestamp": "2025-11-27T04:03:15.620617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797395, - "rtt_ms": 1.797395, + "rtt_ns": 1706250, + "rtt_ms": 1.70625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "287", - "timestamp": "2025-11-27T01:23:33.904754636Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:15.620838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734445, - "rtt_ms": 1.734445, + "rtt_ns": 2447542, + "rtt_ms": 2.447542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:33.904782456Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:15.620965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232943, - "rtt_ms": 2.232943, + "rtt_ns": 1730959, + "rtt_ms": 1.730959, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:33.905337094Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:03:15.620974-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185274, - "rtt_ms": 2.185274, + "rtt_ns": 1275667, + "rtt_ms": 1.275667, "checkpoint": 0, "vertex_from": "32", "vertex_to": "944", - "timestamp": "2025-11-27T01:23:33.905428064Z" + "timestamp": "2025-11-27T04:03:15.621113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2431033, - "rtt_ms": 2.431033, + "rtt_ns": 1325500, + "rtt_ms": 1.3255, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "496", - "timestamp": "2025-11-27T01:23:33.905429924Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:15.621164-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319293, - "rtt_ms": 2.319293, + "rtt_ns": 2051958, + "rtt_ms": 2.051958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "932", - "timestamp": "2025-11-27T01:23:33.905450334Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:15.621182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757005, - "rtt_ms": 1.757005, + "rtt_ns": 2124708, + "rtt_ms": 2.124708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:33.905514634Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:03:15.62125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2311963, - "rtt_ms": 2.311963, + "rtt_ns": 1420000, + "rtt_ms": 1.42, "checkpoint": 0, "vertex_from": "32", "vertex_to": "241", - "timestamp": "2025-11-27T01:23:33.905565003Z" + "timestamp": "2025-11-27T04:03:15.621257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817544, - "rtt_ms": 1.817544, + "rtt_ns": 2154833, + "rtt_ms": 2.154833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.905608403Z" + "vertex_to": "287", + "timestamp": "2025-11-27T04:03:15.621261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553795, - "rtt_ms": 1.553795, + "rtt_ns": 1378334, + "rtt_ms": 1.378334, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "46", - "timestamp": "2025-11-27T01:23:33.905635703Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:15.622636-08:00" }, { "operation": "add_edge", - "rtt_ns": 870107, - "rtt_ms": 0.870107, + "rtt_ns": 1378250, + "rtt_ms": 1.37825, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:33.905655063Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:15.622641-08:00" }, { "operation": "add_edge", - "rtt_ns": 935967, - "rtt_ms": 0.935967, + "rtt_ns": 1410875, + "rtt_ms": 1.410875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:33.905692273Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:15.622662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066336, - "rtt_ms": 1.066336, + "rtt_ns": 1877667, + "rtt_ms": 1.877667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:33.90658534Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:03:15.622717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162426, - "rtt_ms": 1.162426, + "rtt_ns": 1767583, + "rtt_ms": 1.767583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:33.90661399Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:15.622743-08:00" }, { "operation": "add_edge", - "rtt_ns": 982887, - "rtt_ms": 0.982887, + "rtt_ns": 1895792, + "rtt_ms": 1.895792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.90663918Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:15.623061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251236, - "rtt_ms": 1.251236, + "rtt_ns": 2098917, + "rtt_ms": 2.098917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:33.90668244Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:15.623214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307286, - "rtt_ms": 1.307286, + "rtt_ns": 2839292, + "rtt_ms": 2.839292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:33.90673708Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:15.623458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411276, - "rtt_ms": 1.411276, + "rtt_ns": 2506167, + "rtt_ms": 2.506167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:33.90674983Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:15.623473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186377, - "rtt_ms": 1.186377, + "rtt_ns": 2399625, + "rtt_ms": 2.399625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:33.90675283Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:15.623583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655145, - "rtt_ms": 1.655145, + "rtt_ns": 1299833, + "rtt_ms": 1.299833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:33.907348288Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.624044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781735, - "rtt_ms": 1.781735, + "rtt_ns": 1501041, + "rtt_ms": 1.501041, "checkpoint": 0, "vertex_from": "32", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.907419318Z" + "timestamp": "2025-11-27T04:03:15.624143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909805, - "rtt_ms": 1.909805, + "rtt_ns": 1526167, + "rtt_ms": 1.526167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:33.907519308Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:15.624245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361186, - "rtt_ms": 1.361186, + "rtt_ns": 1725167, + "rtt_ms": 1.725167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:33.908001376Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:15.624364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382836, - "rtt_ms": 1.382836, + "rtt_ns": 1720667, + "rtt_ms": 1.720667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:33.908066166Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.624383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505596, - "rtt_ms": 1.505596, + "rtt_ns": 1335958, + "rtt_ms": 1.335958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.908091936Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:03:15.624398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374656, - "rtt_ms": 1.374656, + "rtt_ns": 1225625, + "rtt_ms": 1.225625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.908114846Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:15.624442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390046, - "rtt_ms": 1.390046, + "rtt_ns": 1095500, + "rtt_ms": 1.0955, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:33.908144176Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:03:15.625239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432886, - "rtt_ms": 1.432886, + "rtt_ns": 1121417, + "rtt_ms": 1.121417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:33.908183746Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:15.625367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590855, - "rtt_ms": 1.590855, + "rtt_ns": 2200375, + "rtt_ms": 2.200375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "339", - "timestamp": "2025-11-27T01:23:33.908207365Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:15.625784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269256, - "rtt_ms": 1.269256, + "rtt_ns": 2357459, + "rtt_ms": 2.357459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:33.908789994Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.625831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516566, - "rtt_ms": 1.516566, + "rtt_ns": 1889625, + "rtt_ms": 1.889625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "121", - "timestamp": "2025-11-27T01:23:33.908866224Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:15.625934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494555, - "rtt_ms": 1.494555, + "rtt_ns": 2488208, + "rtt_ms": 2.488208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:33.908915113Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:15.625948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754635, - "rtt_ms": 1.754635, + "rtt_ns": 1630292, + "rtt_ms": 1.630292, "checkpoint": 0, "vertex_from": "32", "vertex_to": "202", - "timestamp": "2025-11-27T01:23:33.909757231Z" + "timestamp": "2025-11-27T04:03:15.626014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850454, - "rtt_ms": 1.850454, + "rtt_ns": 1608375, + "rtt_ms": 1.608375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:33.90996624Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.626051-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076984, - "rtt_ms": 2.076984, + "rtt_ns": 1691250, + "rtt_ms": 1.69125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.91016991Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:03:15.626091-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032863, - "rtt_ms": 2.032863, + "rtt_ns": 1749667, + "rtt_ms": 1.749667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:33.910217629Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:15.626115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386893, - "rtt_ms": 2.386893, + "rtt_ns": 1078625, + "rtt_ms": 1.078625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "459", - "timestamp": "2025-11-27T01:23:33.910454329Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:15.627027-08:00" }, { "operation": "add_edge", - "rtt_ns": 2204393, - "rtt_ms": 2.204393, + "rtt_ns": 1389875, + "rtt_ms": 1.389875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.910995397Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:15.627175-08:00" }, { "operation": "add_edge", - "rtt_ns": 2941811, - "rtt_ms": 2.941811, + "rtt_ns": 1912125, + "rtt_ms": 1.912125, "checkpoint": 0, "vertex_from": "32", "vertex_to": "412", - "timestamp": "2025-11-27T01:23:33.911088427Z" + "timestamp": "2025-11-27T04:03:15.627282-08:00" }, { "operation": "add_edge", - "rtt_ns": 2880232, - "rtt_ms": 2.880232, + "rtt_ns": 2056625, + "rtt_ms": 2.056625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:33.911088657Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:15.627297-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199334, - "rtt_ms": 2.199334, + "rtt_ns": 1500875, + "rtt_ms": 1.500875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:33.911115697Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:15.627436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422766, - "rtt_ms": 1.422766, + "rtt_ns": 1338000, + "rtt_ms": 1.338, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "110", - "timestamp": "2025-11-27T01:23:33.911181227Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:15.627454-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326093, - "rtt_ms": 2.326093, + "rtt_ns": 1489000, + "rtt_ms": 1.489, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:33.911193977Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:03:15.627541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268556, - "rtt_ms": 1.268556, + "rtt_ns": 1455500, + "rtt_ms": 1.4555, "checkpoint": 0, "vertex_from": "32", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:33.911235666Z" + "timestamp": "2025-11-27T04:03:15.627547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243176, - "rtt_ms": 1.243176, + "rtt_ns": 1738709, + "rtt_ms": 1.738709, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:33.911413896Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:15.627571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207017, - "rtt_ms": 1.207017, + "rtt_ns": 1913209, + "rtt_ms": 1.913209, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:33.911425356Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:15.627928-08:00" }, { "operation": "add_edge", - "rtt_ns": 984187, - "rtt_ms": 0.984187, + "rtt_ns": 1486792, + "rtt_ms": 1.486792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:33.911439666Z" + "vertex_to": "979", + "timestamp": "2025-11-27T04:03:15.629029-08:00" }, { "operation": "add_edge", - "rtt_ns": 827188, - "rtt_ms": 0.827188, + "rtt_ns": 1761250, + "rtt_ms": 1.76125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:33.911823935Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:15.629059-08:00" }, { "operation": "add_edge", - "rtt_ns": 753228, - "rtt_ms": 0.753228, + "rtt_ns": 1839833, + "rtt_ms": 1.839833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:33.911843185Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:15.629125-08:00" }, { "operation": "add_edge", - "rtt_ns": 806047, - "rtt_ms": 0.806047, + "rtt_ns": 2114625, + "rtt_ms": 2.114625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:33.911896154Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:15.629143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286076, - "rtt_ms": 1.286076, + "rtt_ns": 1982875, + "rtt_ms": 1.982875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "979", - "timestamp": "2025-11-27T01:23:33.912469023Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:15.629159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369316, - "rtt_ms": 1.369316, + "rtt_ns": 1848541, + "rtt_ms": 1.848541, "checkpoint": 0, "vertex_from": "32", "vertex_to": "156", - "timestamp": "2025-11-27T01:23:33.912486043Z" + "timestamp": "2025-11-27T04:03:15.629303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135487, - "rtt_ms": 1.135487, + "rtt_ns": 1746708, + "rtt_ms": 1.746708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:33.912550513Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:03:15.62932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134956, - "rtt_ms": 1.134956, + "rtt_ns": 1775500, + "rtt_ms": 1.7755, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:33.912575912Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:15.629323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166596, - "rtt_ms": 1.166596, + "rtt_ns": 1404291, + "rtt_ms": 1.404291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:33.912592792Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:03:15.629334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369756, - "rtt_ms": 1.369756, + "rtt_ns": 1917750, + "rtt_ms": 1.91775, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:33.912606412Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:15.629355-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1472325, - "rtt_ms": 1.472325, + "operation": "add_vertex", + "rtt_ns": 1404750, + "rtt_ms": 1.40475, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:33.912667132Z" + "vertex_from": "376", + "timestamp": "2025-11-27T04:03:15.630549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427716, - "rtt_ms": 1.427716, + "rtt_ns": 1539500, + "rtt_ms": 1.5395, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "203", - "timestamp": "2025-11-27T01:23:33.91332511Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:15.63057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533745, - "rtt_ms": 1.533745, + "rtt_ns": 1617250, + "rtt_ms": 1.61725, "checkpoint": 0, "vertex_from": "32", "vertex_to": "680", - "timestamp": "2025-11-27T01:23:33.91335897Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1821724, - "rtt_ms": 1.821724, - "checkpoint": 0, - "vertex_from": "376", - "timestamp": "2025-11-27T01:23:33.913670209Z" + "timestamp": "2025-11-27T04:03:15.630743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103837, - "rtt_ms": 1.103837, + "rtt_ns": 1698125, + "rtt_ms": 1.698125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:33.913711559Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:15.630758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268466, - "rtt_ms": 1.268466, + "rtt_ns": 1610750, + "rtt_ms": 1.61075, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:33.913823319Z" + "vertex_to": "203", + "timestamp": "2025-11-27T04:03:15.63077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379036, - "rtt_ms": 1.379036, + "rtt_ns": 1553542, + "rtt_ms": 1.553542, "checkpoint": 0, "vertex_from": "32", "vertex_to": "563", - "timestamp": "2025-11-27T01:23:33.913866039Z" + "timestamp": "2025-11-27T04:03:15.630874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320096, - "rtt_ms": 1.320096, + "rtt_ns": 1683458, + "rtt_ms": 1.683458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:33.913897338Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:15.63104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473255, - "rtt_ms": 1.473255, + "rtt_ns": 1728125, + "rtt_ms": 1.728125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "865", - "timestamp": "2025-11-27T01:23:33.913943508Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:15.631064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899804, - "rtt_ms": 1.899804, + "rtt_ns": 1768417, + "rtt_ms": 1.768417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:33.914567856Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:03:15.631072-08:00" }, { "operation": "add_edge", - "rtt_ns": 972627, - "rtt_ms": 0.972627, + "rtt_ns": 1752208, + "rtt_ms": 1.752208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "376", - "timestamp": "2025-11-27T01:23:33.914643156Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:15.631076-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100754, - "rtt_ms": 2.100754, + "rtt_ns": 1502625, + "rtt_ms": 1.502625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:33.914695156Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:15.632378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417346, - "rtt_ms": 1.417346, + "rtt_ns": 1612625, + "rtt_ms": 1.612625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "157", - "timestamp": "2025-11-27T01:23:33.914743936Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:03:15.632384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388576, - "rtt_ms": 1.388576, + "rtt_ns": 1819917, + "rtt_ms": 1.819917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:33.914748446Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:15.632391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695975, - "rtt_ms": 1.695975, + "rtt_ns": 1332166, + "rtt_ms": 1.332166, "checkpoint": 0, "vertex_from": "32", "vertex_to": "150", - "timestamp": "2025-11-27T01:23:33.915562964Z" + "timestamp": "2025-11-27T04:03:15.632397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862845, - "rtt_ms": 1.862845, + "rtt_ns": 1372625, + "rtt_ms": 1.372625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "844", - "timestamp": "2025-11-27T01:23:33.915761423Z" + "timestamp": "2025-11-27T04:03:15.632446-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159854, - "rtt_ms": 2.159854, + "rtt_ns": 1777625, + "rtt_ms": 1.777625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:33.915872113Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:15.632521-08:00" }, { "operation": "add_edge", - "rtt_ns": 677058, - "rtt_ms": 0.677058, + "rtt_ns": 1821250, + "rtt_ms": 1.82125, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:33.916440521Z" + "vertex_from": "32", + "vertex_to": "157", + "timestamp": "2025-11-27T04:03:15.63258-08:00" }, { "operation": "add_edge", - "rtt_ns": 756728, - "rtt_ms": 0.756728, + "rtt_ns": 2047333, + "rtt_ms": 2.047333, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:33.916630071Z" + "vertex_from": "32", + "vertex_to": "376", + "timestamp": "2025-11-27T04:03:15.632596-08:00" }, { "operation": "add_edge", - "rtt_ns": 2839671, - "rtt_ms": 2.839671, + "rtt_ns": 1679333, + "rtt_ms": 1.679333, "checkpoint": 0, "vertex_from": "32", "vertex_to": "360", - "timestamp": "2025-11-27T01:23:33.91666491Z" + "timestamp": "2025-11-27T04:03:15.632722-08:00" }, { "operation": "add_edge", - "rtt_ns": 2792552, - "rtt_ms": 2.792552, + "rtt_ns": 1702166, + "rtt_ms": 1.702166, "checkpoint": 0, "vertex_from": "32", "vertex_to": "349", - "timestamp": "2025-11-27T01:23:33.91673693Z" + "timestamp": "2025-11-27T04:03:15.632779-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103434, - "rtt_ms": 2.103434, + "rtt_ns": 1020042, + "rtt_ms": 1.020042, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:33.91679963Z" + "vertex_from": "33", + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:15.633743-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1255875, + "rtt_ms": 1.255875, + "checkpoint": 0, + "vertex_from": "33", + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:15.633837-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334164, - "rtt_ms": 2.334164, + "rtt_ns": 1569583, + "rtt_ms": 1.569583, "checkpoint": 0, "vertex_from": "32", "vertex_to": "570", - "timestamp": "2025-11-27T01:23:33.91690329Z" + "timestamp": "2025-11-27T04:03:15.633948-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169334, - "rtt_ms": 2.169334, + "rtt_ns": 1525125, + "rtt_ms": 1.525125, "checkpoint": 0, "vertex_from": "32", "vertex_to": "880", - "timestamp": "2025-11-27T01:23:33.9169189Z" + "timestamp": "2025-11-27T04:03:15.633972-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291754, - "rtt_ms": 2.291754, + "rtt_ns": 1386792, + "rtt_ms": 1.386792, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "694", - "timestamp": "2025-11-27T01:23:33.91693641Z" + "vertex_from": "33", + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:15.633984-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199984, - "rtt_ms": 2.199984, + "rtt_ns": 1620500, + "rtt_ms": 1.6205, "checkpoint": 0, "vertex_from": "32", "vertex_to": "199", - "timestamp": "2025-11-27T01:23:33.91694513Z" + "timestamp": "2025-11-27T04:03:15.634018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473045, - "rtt_ms": 1.473045, + "rtt_ns": 1677709, + "rtt_ms": 1.677709, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:33.917038219Z" + "vertex_to": "694", + "timestamp": "2025-11-27T04:03:15.634063-08:00" }, { "operation": "add_edge", - "rtt_ns": 728868, - "rtt_ms": 0.728868, + "rtt_ns": 1315625, + "rtt_ms": 1.315625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:33.917170489Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:15.634096-08:00" }, { "operation": "add_edge", - "rtt_ns": 601988, - "rtt_ms": 0.601988, + "rtt_ns": 1593709, + "rtt_ms": 1.593709, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:33.917234009Z" + "vertex_from": "32", + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:15.634116-08:00" }, { "operation": "add_edge", - "rtt_ns": 981898, - "rtt_ms": 0.981898, + "rtt_ns": 1767541, + "rtt_ms": 1.767541, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.917647838Z" + "vertex_from": "32", + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:15.634174-08:00" }, { "operation": "add_edge", - "rtt_ns": 890728, - "rtt_ms": 0.890728, + "rtt_ns": 1705917, + "rtt_ms": 1.705917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:33.917691498Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.635678-08:00" }, { "operation": "add_edge", - "rtt_ns": 974917, - "rtt_ms": 0.974917, + "rtt_ns": 2028917, + "rtt_ms": 2.028917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "740", - "timestamp": "2025-11-27T01:23:33.917713097Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.635773-08:00" }, { "operation": "add_edge", - "rtt_ns": 816567, - "rtt_ms": 0.816567, + "rtt_ns": 1826542, + "rtt_ms": 1.826542, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:33.917737267Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:15.635776-08:00" }, { "operation": "add_edge", - "rtt_ns": 878757, - "rtt_ms": 0.878757, + "rtt_ns": 1963416, + "rtt_ms": 1.963416, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.917783107Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:03:15.635801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363546, - "rtt_ms": 1.363546, + "rtt_ns": 1905709, + "rtt_ms": 1.905709, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:33.918301996Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:15.636023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436026, - "rtt_ms": 1.436026, + "rtt_ns": 1939000, + "rtt_ms": 1.939, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "217", - "timestamp": "2025-11-27T01:23:33.918478655Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:15.636114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325566, - "rtt_ms": 1.325566, + "rtt_ns": 2173375, + "rtt_ms": 2.173375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:33.918562435Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:15.636158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655185, - "rtt_ms": 1.655185, + "rtt_ns": 2156084, + "rtt_ms": 2.156084, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.918601485Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:15.636175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454006, - "rtt_ms": 1.454006, + "rtt_ns": 2120833, + "rtt_ms": 2.120833, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:33.918626355Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:15.636185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773445, - "rtt_ms": 1.773445, + "rtt_ns": 2090625, + "rtt_ms": 2.090625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:33.919422953Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:03:15.636187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734965, - "rtt_ms": 1.734965, + "rtt_ns": 1494000, + "rtt_ms": 1.494, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:33.919427613Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:15.637271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717756, - "rtt_ms": 1.717756, + "rtt_ns": 1535792, + "rtt_ms": 1.535792, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:33.919431913Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:15.637338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692016, - "rtt_ms": 1.692016, + "rtt_ns": 1342208, + "rtt_ms": 1.342208, "checkpoint": 0, "vertex_from": "33", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:33.919476133Z" + "timestamp": "2025-11-27T04:03:15.637366-08:00" }, { "operation": "add_edge", - "rtt_ns": 997438, - "rtt_ms": 0.997438, + "rtt_ns": 1610250, + "rtt_ms": 1.61025, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:33.919477353Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:15.637384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740576, - "rtt_ms": 1.740576, + "rtt_ns": 1743583, + "rtt_ms": 1.743583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:33.919478963Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:15.637422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189056, - "rtt_ms": 1.189056, + "rtt_ns": 1325041, + "rtt_ms": 1.325041, "checkpoint": 0, "vertex_from": "33", "vertex_to": "49", - "timestamp": "2025-11-27T01:23:33.919493332Z" + "timestamp": "2025-11-27T04:03:15.637442-08:00" }, { "operation": "add_edge", - "rtt_ns": 961657, - "rtt_ms": 0.961657, + "rtt_ns": 1440375, + "rtt_ms": 1.440375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:33.919526452Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.637628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100597, - "rtt_ms": 1.100597, + "rtt_ns": 1466708, + "rtt_ms": 1.466708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:33.919703442Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:15.637643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217336, - "rtt_ms": 1.217336, + "rtt_ns": 1457917, + "rtt_ms": 1.457917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.919844811Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:15.637644-08:00" }, { "operation": "add_edge", - "rtt_ns": 750397, - "rtt_ms": 0.750397, + "rtt_ns": 1488459, + "rtt_ms": 1.488459, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:33.92018026Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:15.637647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552115, - "rtt_ms": 1.552115, + "rtt_ns": 1414417, + "rtt_ms": 1.414417, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:33.920977528Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:15.638753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694015, - "rtt_ms": 1.694015, + "rtt_ns": 1327583, + "rtt_ms": 1.327583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.921128698Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:15.638772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744324, - "rtt_ms": 1.744324, + "rtt_ns": 1540958, + "rtt_ms": 1.540958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:33.921223727Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:15.638926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750065, - "rtt_ms": 1.750065, + "rtt_ns": 1442958, + "rtt_ms": 1.442958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.921247537Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:15.639091-08:00" }, { "operation": "add_edge", - "rtt_ns": 2295013, - "rtt_ms": 2.295013, + "rtt_ns": 1480083, + "rtt_ms": 1.480083, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.921772806Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.639109-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267733, - "rtt_ms": 2.267733, + "rtt_ns": 1483625, + "rtt_ms": 1.483625, "checkpoint": 0, "vertex_from": "33", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:33.921973045Z" + "timestamp": "2025-11-27T04:03:15.639129-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449413, - "rtt_ms": 2.449413, + "rtt_ns": 1904875, + "rtt_ms": 1.904875, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:33.921977175Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:15.639177-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156584, - "rtt_ms": 2.156584, + "rtt_ns": 1601375, + "rtt_ms": 1.601375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:33.922002685Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:15.639245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885635, - "rtt_ms": 1.885635, + "rtt_ns": 1900208, + "rtt_ms": 1.900208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:33.922068295Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:15.639267-08:00" }, { "operation": "add_edge", - "rtt_ns": 2620932, - "rtt_ms": 2.620932, + "rtt_ns": 1931791, + "rtt_ms": 1.931791, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.922101715Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:15.639356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529526, - "rtt_ms": 1.529526, + "rtt_ns": 1021125, + "rtt_ms": 1.021125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:33.922509814Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:15.640151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456835, - "rtt_ms": 1.456835, + "rtt_ns": 1265291, + "rtt_ms": 1.265291, "checkpoint": 0, "vertex_from": "33", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:33.922586563Z" + "timestamp": "2025-11-27T04:03:15.640193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753485, - "rtt_ms": 1.753485, + "rtt_ns": 1312042, + "rtt_ms": 1.312042, "checkpoint": 0, "vertex_from": "33", "vertex_to": "527", - "timestamp": "2025-11-27T01:23:33.923002752Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1234276, - "rtt_ms": 1.234276, - "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:33.923345891Z" + "timestamp": "2025-11-27T04:03:15.640422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396286, - "rtt_ms": 1.396286, + "rtt_ns": 1885334, + "rtt_ms": 1.885334, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:33.923370661Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:15.640659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402626, - "rtt_ms": 1.402626, + "rtt_ns": 1427500, + "rtt_ms": 1.4275, "checkpoint": 0, "vertex_from": "33", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:33.923381131Z" + "timestamp": "2025-11-27T04:03:15.640674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611045, - "rtt_ms": 1.611045, + "rtt_ns": 1922250, + "rtt_ms": 1.92225, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:33.923387081Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:15.640677-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174344, - "rtt_ms": 2.174344, + "rtt_ns": 1609667, + "rtt_ms": 1.609667, "checkpoint": 0, "vertex_from": "33", "vertex_to": "550", - "timestamp": "2025-11-27T01:23:33.923400551Z" + "timestamp": "2025-11-27T04:03:15.640701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503946, - "rtt_ms": 1.503946, + "rtt_ns": 1623625, + "rtt_ms": 1.623625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:33.923507921Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:15.640802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529215, - "rtt_ms": 1.529215, + "rtt_ns": 1613750, + "rtt_ms": 1.61375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:33.92359933Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:15.640882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729784, - "rtt_ms": 1.729784, + "rtt_ns": 1730917, + "rtt_ms": 1.730917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:33.924241068Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:03:15.641089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674955, - "rtt_ms": 1.674955, + "rtt_ns": 1168583, + "rtt_ms": 1.168583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:33.924262948Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:15.64132-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1668445, - "rtt_ms": 1.668445, + "rtt_ns": 1855792, + "rtt_ms": 1.855792, "checkpoint": 0, - "vertex_from": "615", - "timestamp": "2025-11-27T01:23:33.924674267Z" + "vertex_from": "427", + "timestamp": "2025-11-27T04:03:15.642531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339126, - "rtt_ms": 1.339126, + "rtt_ns": 2112916, + "rtt_ms": 2.112916, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:33.924723587Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:15.642536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350096, - "rtt_ms": 1.350096, + "rtt_ns": 2387666, + "rtt_ms": 2.387666, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:33.924752797Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:15.642582-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1497346, - "rtt_ms": 1.497346, + "rtt_ns": 1940875, + "rtt_ms": 1.940875, "checkpoint": 0, - "vertex_from": "427", - "timestamp": "2025-11-27T01:23:33.924847377Z" + "vertex_from": "615", + "timestamp": "2025-11-27T04:03:15.6426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554285, - "rtt_ms": 1.554285, + "rtt_ns": 1813583, + "rtt_ms": 1.813583, "checkpoint": 0, "vertex_from": "33", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:33.924943016Z" + "timestamp": "2025-11-27T04:03:15.642616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987024, - "rtt_ms": 1.987024, + "rtt_ns": 1986667, + "rtt_ms": 1.986667, "checkpoint": 0, "vertex_from": "33", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:33.925359105Z" + "timestamp": "2025-11-27T04:03:15.642664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885605, - "rtt_ms": 1.885605, + "rtt_ns": 1847250, + "rtt_ms": 1.84725, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.925486355Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:15.64273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227197, - "rtt_ms": 1.227197, + "rtt_ns": 2078458, + "rtt_ms": 2.078458, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.925492285Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.6434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320276, - "rtt_ms": 1.320276, + "rtt_ns": 2331917, + "rtt_ms": 2.331917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:33.925562624Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:15.643427-08:00" }, { "operation": "add_edge", - "rtt_ns": 2070253, - "rtt_ms": 2.070253, + "rtt_ns": 3034708, + "rtt_ms": 3.034708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:33.925579644Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:15.643737-08:00" }, { "operation": "add_edge", - "rtt_ns": 938077, - "rtt_ms": 0.938077, + "rtt_ns": 1456208, + "rtt_ms": 1.456208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "615", - "timestamp": "2025-11-27T01:23:33.925612674Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:15.644074-08:00" }, { "operation": "add_edge", - "rtt_ns": 892377, - "rtt_ms": 0.892377, + "rtt_ns": 1464000, + "rtt_ms": 1.464, "checkpoint": 0, "vertex_from": "33", "vertex_to": "163", - "timestamp": "2025-11-27T01:23:33.925646704Z" + "timestamp": "2025-11-27T04:03:15.644129-08:00" }, { "operation": "add_edge", - "rtt_ns": 927367, - "rtt_ms": 0.927367, + "rtt_ns": 1753000, + "rtt_ms": 1.753, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:33.925652624Z" + "vertex_to": "615", + "timestamp": "2025-11-27T04:03:15.644353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541965, - "rtt_ms": 1.541965, + "rtt_ns": 1836667, + "rtt_ms": 1.836667, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "427", - "timestamp": "2025-11-27T01:23:33.926389652Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:15.644374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471396, - "rtt_ms": 1.471396, + "rtt_ns": 1714000, + "rtt_ms": 1.714, "checkpoint": 0, "vertex_from": "33", "vertex_to": "843", - "timestamp": "2025-11-27T01:23:33.926416122Z" + "timestamp": "2025-11-27T04:03:15.644444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323996, - "rtt_ms": 1.323996, + "rtt_ns": 1873708, + "rtt_ms": 1.873708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.926684421Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.644456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211816, - "rtt_ms": 1.211816, + "rtt_ns": 2278500, + "rtt_ms": 2.2785, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:33.926707621Z" + "vertex_to": "427", + "timestamp": "2025-11-27T04:03:15.64481-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1301146, - "rtt_ms": 1.301146, + "operation": "add_edge", + "rtt_ns": 1902667, + "rtt_ms": 1.902667, "checkpoint": 0, - "vertex_from": "690", - "timestamp": "2025-11-27T01:23:33.92695041Z" + "vertex_from": "33", + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:15.645333-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2059750, + "rtt_ms": 2.05975, + "checkpoint": 0, + "vertex_from": "33", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.645461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796595, - "rtt_ms": 1.796595, + "rtt_ns": 1529250, + "rtt_ms": 1.52925, "checkpoint": 0, "vertex_from": "33", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:33.927360859Z" + "timestamp": "2025-11-27T04:03:15.645604-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1479834, + "rtt_ms": 1.479834, + "checkpoint": 0, + "vertex_from": "33", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:15.646291-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1834905, - "rtt_ms": 1.834905, + "rtt_ns": 2258500, + "rtt_ms": 2.2585, "checkpoint": 0, "vertex_from": "661", - "timestamp": "2025-11-27T01:23:33.927416859Z" + "timestamp": "2025-11-27T04:03:15.646389-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093603, - "rtt_ms": 2.093603, + "rtt_ns": 2042209, + "rtt_ms": 2.042209, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:33.927581408Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:15.646396-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122594, - "rtt_ms": 2.122594, + "rtt_ns": 1961125, + "rtt_ms": 1.961125, "checkpoint": 0, "vertex_from": "33", "vertex_to": "480", - "timestamp": "2025-11-27T01:23:33.927780428Z" + "timestamp": "2025-11-27T04:03:15.646406-08:00" }, { "operation": "add_edge", - "rtt_ns": 2804952, - "rtt_ms": 2.804952, + "rtt_ns": 2100250, + "rtt_ms": 2.10025, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:33.928419496Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.646557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174144, - "rtt_ms": 2.174144, + "rtt_ns": 3056166, + "rtt_ms": 3.056166, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.928566316Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:15.646795-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2350113, - "rtt_ms": 2.350113, + "operation": "add_vertex", + "rtt_ns": 2508125, + "rtt_ms": 2.508125, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:33.929037804Z" + "vertex_from": "690", + "timestamp": "2025-11-27T04:03:15.646884-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355013, - "rtt_ms": 2.355013, + "rtt_ns": 1606958, + "rtt_ms": 1.606958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "34", - "timestamp": "2025-11-27T01:23:33.929064794Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:15.646941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2670252, - "rtt_ms": 2.670252, + "rtt_ns": 1558125, + "rtt_ms": 1.558125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:33.929089144Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:03:15.64702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177974, - "rtt_ms": 2.177974, + "rtt_ns": 1991209, + "rtt_ms": 1.991209, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "690", - "timestamp": "2025-11-27T01:23:33.929129014Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:15.647596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350136, - "rtt_ms": 1.350136, + "rtt_ns": 1648917, + "rtt_ms": 1.648917, "checkpoint": 0, "vertex_from": "33", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.929132124Z" + "timestamp": "2025-11-27T04:03:15.648047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800625, - "rtt_ms": 1.800625, + "rtt_ns": 1674833, + "rtt_ms": 1.674833, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:33.929163814Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:03:15.648064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750515, - "rtt_ms": 1.750515, + "rtt_ns": 1754541, + "rtt_ms": 1.754541, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "661", - "timestamp": "2025-11-27T01:23:33.929167654Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:03:15.648164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613256, - "rtt_ms": 1.613256, + "rtt_ns": 1904917, + "rtt_ms": 1.904917, "checkpoint": 0, "vertex_from": "33", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:33.929197244Z" + "timestamp": "2025-11-27T04:03:15.648199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352506, - "rtt_ms": 1.352506, + "rtt_ns": 1330708, + "rtt_ms": 1.330708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:33.929921382Z" + "vertex_to": "690", + "timestamp": "2025-11-27T04:03:15.648215-08:00" }, { "operation": "add_edge", - "rtt_ns": 952357, - "rtt_ms": 0.952357, + "rtt_ns": 1431917, + "rtt_ms": 1.431917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:33.930042461Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:15.648228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627365, - "rtt_ms": 1.627365, + "rtt_ns": 1686000, + "rtt_ms": 1.686, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:33.930048271Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:15.648244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081557, - "rtt_ms": 1.081557, + "rtt_ns": 1305334, + "rtt_ms": 1.305334, "checkpoint": 0, "vertex_from": "33", "vertex_to": "837", - "timestamp": "2025-11-27T01:23:33.930147501Z" + "timestamp": "2025-11-27T04:03:15.648247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112657, - "rtt_ms": 1.112657, + "rtt_ns": 1396375, + "rtt_ms": 1.396375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:33.930151661Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:15.648993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501626, - "rtt_ms": 1.501626, + "rtt_ns": 1017583, + "rtt_ms": 1.017583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:33.93067043Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:15.649247-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1580086, - "rtt_ms": 1.580086, + "operation": "add_vertex", + "rtt_ns": 1496042, + "rtt_ms": 1.496042, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:33.9307118Z" + "vertex_from": "813", + "timestamp": "2025-11-27T04:03:15.649544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560056, - "rtt_ms": 1.560056, + "rtt_ns": 1384041, + "rtt_ms": 1.384041, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:33.93072527Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:15.649584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540365, - "rtt_ms": 1.540365, + "rtt_ns": 1391750, + "rtt_ms": 1.39175, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:33.930743629Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:15.64964-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1621575, - "rtt_ms": 1.621575, + "operation": "add_edge", + "rtt_ns": 1409500, + "rtt_ms": 1.4095, "checkpoint": 0, - "vertex_from": "813", - "timestamp": "2025-11-27T01:23:33.930756559Z" + "vertex_from": "33", + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:15.649655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007957, - "rtt_ms": 1.007957, + "rtt_ns": 1451958, + "rtt_ms": 1.451958, "checkpoint": 0, "vertex_from": "33", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.930932199Z" + "timestamp": "2025-11-27T04:03:15.64967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090567, - "rtt_ms": 1.090567, + "rtt_ns": 1544000, + "rtt_ms": 1.544, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:33.931142228Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:15.649709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130697, - "rtt_ms": 1.130697, + "rtt_ns": 1691333, + "rtt_ms": 1.691333, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:33.931174418Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:15.649756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174846, - "rtt_ms": 1.174846, + "rtt_ns": 2876542, + "rtt_ms": 2.876542, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.931848076Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:15.649897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431525, - "rtt_ms": 1.431525, + "rtt_ns": 1631209, + "rtt_ms": 1.631209, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:33.932159025Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:15.650626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072724, - "rtt_ms": 2.072724, + "rtt_ns": 1738875, + "rtt_ms": 1.738875, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:33.932221765Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:15.650986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546866, - "rtt_ms": 1.546866, + "rtt_ns": 1384291, + "rtt_ms": 1.384291, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "813", - "timestamp": "2025-11-27T01:23:33.932304095Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:03:15.651025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574636, - "rtt_ms": 1.574636, + "rtt_ns": 1536708, + "rtt_ms": 1.536708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:33.932319835Z" + "vertex_to": "187", + "timestamp": "2025-11-27T04:03:15.651121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624955, - "rtt_ms": 1.624955, + "rtt_ns": 1469250, + "rtt_ms": 1.46925, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "187", - "timestamp": "2025-11-27T01:23:33.932338115Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:15.65114-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215254, - "rtt_ms": 2.215254, + "rtt_ns": 1292167, + "rtt_ms": 1.292167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:33.932368845Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:15.65119-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027664, - "rtt_ms": 2.027664, + "rtt_ns": 1482958, + "rtt_ms": 1.482958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:33.933203332Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:15.651193-08:00" }, { "operation": "add_edge", - "rtt_ns": 2085294, - "rtt_ms": 2.085294, + "rtt_ns": 1666125, + "rtt_ms": 1.666125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:33.933229282Z" + "vertex_to": "813", + "timestamp": "2025-11-27T04:03:15.651211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386216, - "rtt_ms": 1.386216, + "rtt_ns": 1455708, + "rtt_ms": 1.455708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.933235882Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:15.651213-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303113, - "rtt_ms": 2.303113, + "rtt_ns": 1770625, + "rtt_ms": 1.770625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:33.933237332Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:15.651426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241987, - "rtt_ms": 1.241987, + "rtt_ns": 1652917, + "rtt_ms": 1.652917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:33.933465652Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:15.652282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218476, - "rtt_ms": 1.218476, + "rtt_ns": 1365916, + "rtt_ms": 1.365916, "checkpoint": 0, "vertex_from": "33", "vertex_to": "161", - "timestamp": "2025-11-27T01:23:33.933524171Z" + "timestamp": "2025-11-27T04:03:15.652391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447906, - "rtt_ms": 1.447906, + "rtt_ns": 1044166, + "rtt_ms": 1.044166, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.933607901Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:15.652471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287416, - "rtt_ms": 1.287416, + "rtt_ns": 1552166, + "rtt_ms": 1.552166, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:33.933608851Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:15.652539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305466, - "rtt_ms": 1.305466, + "rtt_ns": 1348917, + "rtt_ms": 1.348917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:33.933646041Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:15.65256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302466, - "rtt_ms": 1.302466, + "rtt_ns": 1438792, + "rtt_ms": 1.438792, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:33.933673851Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:15.652561-08:00" }, { "operation": "add_edge", - "rtt_ns": 720678, - "rtt_ms": 0.720678, + "rtt_ns": 1417459, + "rtt_ms": 1.417459, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:33.93395872Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.652612-08:00" }, { "operation": "add_edge", - "rtt_ns": 768328, - "rtt_ms": 0.768328, + "rtt_ns": 1422417, + "rtt_ms": 1.422417, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.93397447Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:15.652613-08:00" }, { "operation": "add_edge", - "rtt_ns": 789808, - "rtt_ms": 0.789808, + "rtt_ns": 1412209, + "rtt_ms": 1.412209, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:33.93402858Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:15.652625-08:00" }, { "operation": "add_edge", - "rtt_ns": 814958, - "rtt_ms": 0.814958, + "rtt_ns": 1563583, + "rtt_ms": 1.563583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:33.93404623Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:15.652704-08:00" }, { "operation": "add_edge", - "rtt_ns": 632988, - "rtt_ms": 0.632988, + "rtt_ns": 1935375, + "rtt_ms": 1.935375, "checkpoint": 0, "vertex_from": "33", "vertex_to": "198", - "timestamp": "2025-11-27T01:23:33.93409997Z" + "timestamp": "2025-11-27T04:03:15.654218-08:00" }, { "operation": "add_edge", - "rtt_ns": 530489, - "rtt_ms": 0.530489, + "rtt_ns": 1863834, + "rtt_ms": 1.863834, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:33.93414128Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:15.654336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415506, - "rtt_ms": 1.415506, + "rtt_ns": 1966792, + "rtt_ms": 1.966792, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:33.934941597Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:15.654528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922204, - "rtt_ms": 1.922204, + "rtt_ns": 1939125, + "rtt_ms": 1.939125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:33.935531535Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.654644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906934, - "rtt_ms": 1.906934, + "rtt_ns": 2348708, + "rtt_ms": 2.348708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:33.935581635Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:15.654743-08:00" }, { "operation": "add_edge", - "rtt_ns": 2586442, - "rtt_ms": 2.586442, + "rtt_ns": 2310625, + "rtt_ms": 2.310625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:33.936233743Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:15.654872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2396353, - "rtt_ms": 2.396353, + "rtt_ns": 2320666, + "rtt_ms": 2.320666, "checkpoint": 0, "vertex_from": "33", "vertex_to": "456", - "timestamp": "2025-11-27T01:23:33.936356803Z" + "timestamp": "2025-11-27T04:03:15.654933-08:00" }, { "operation": "add_edge", - "rtt_ns": 2484413, - "rtt_ms": 2.484413, + "rtt_ns": 2507916, + "rtt_ms": 2.507916, "checkpoint": 0, "vertex_from": "33", "vertex_to": "152", - "timestamp": "2025-11-27T01:23:33.936460273Z" + "timestamp": "2025-11-27T04:03:15.655122-08:00" }, { "operation": "add_edge", - "rtt_ns": 2419193, - "rtt_ms": 2.419193, + "rtt_ns": 2864250, + "rtt_ms": 2.86425, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.936466673Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:15.655405-08:00" }, { "operation": "add_edge", - "rtt_ns": 2517362, - "rtt_ms": 2.517362, + "rtt_ns": 2931417, + "rtt_ms": 2.931417, "checkpoint": 0, "vertex_from": "33", "vertex_to": "440", - "timestamp": "2025-11-27T01:23:33.936547722Z" + "timestamp": "2025-11-27T04:03:15.655558-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428242, - "rtt_ms": 2.428242, - "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:33.936570782Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2525382, - "rtt_ms": 2.525382, + "rtt_ns": 1599917, + "rtt_ms": 1.599917, "checkpoint": 0, "vertex_from": "33", "vertex_to": "851", - "timestamp": "2025-11-27T01:23:33.936626792Z" + "timestamp": "2025-11-27T04:03:15.655819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150917, - "rtt_ms": 1.150917, + "rtt_ns": 1562625, + "rtt_ms": 1.562625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:33.936734462Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:15.655899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804075, - "rtt_ms": 1.804075, + "rtt_ns": 1467666, + "rtt_ms": 1.467666, "checkpoint": 0, "vertex_from": "33", "vertex_to": "284", - "timestamp": "2025-11-27T01:23:33.936749022Z" + "timestamp": "2025-11-27T04:03:15.655997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247127, - "rtt_ms": 1.247127, + "rtt_ns": 1245750, + "rtt_ms": 1.24575, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:33.936780842Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:15.65618-08:00" }, { "operation": "add_edge", - "rtt_ns": 635978, - "rtt_ms": 0.635978, + "rtt_ns": 1730042, + "rtt_ms": 1.730042, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:33.936871061Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:15.656375-08:00" }, { "operation": "add_edge", - "rtt_ns": 915957, - "rtt_ms": 0.915957, + "rtt_ns": 2224583, + "rtt_ms": 2.224583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:33.93727593Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:15.656969-08:00" }, { "operation": "add_edge", - "rtt_ns": 863117, - "rtt_ms": 0.863117, + "rtt_ns": 1856291, + "rtt_ms": 1.856291, "checkpoint": 0, "vertex_from": "33", "vertex_to": "227", - "timestamp": "2025-11-27T01:23:33.93732466Z" + "timestamp": "2025-11-27T04:03:15.656981-08:00" }, { "operation": "add_edge", - "rtt_ns": 856007, - "rtt_ms": 0.856007, + "rtt_ns": 1601875, + "rtt_ms": 1.601875, "checkpoint": 0, "vertex_from": "33", "vertex_to": "354", - "timestamp": "2025-11-27T01:23:33.93732499Z" + "timestamp": "2025-11-27T04:03:15.657008-08:00" }, { "operation": "add_edge", - "rtt_ns": 793728, - "rtt_ms": 0.793728, + "rtt_ns": 1829959, + "rtt_ms": 1.829959, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:33.9373661Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.65739-08:00" }, { "operation": "add_edge", - "rtt_ns": 850958, - "rtt_ms": 0.850958, + "rtt_ns": 1584208, + "rtt_ms": 1.584208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.9374016Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:15.657484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214646, - "rtt_ms": 1.214646, + "rtt_ns": 1503667, + "rtt_ms": 1.503667, "checkpoint": 0, "vertex_from": "33", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:33.937951158Z" + "timestamp": "2025-11-27T04:03:15.657501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295686, - "rtt_ms": 1.295686, + "rtt_ns": 2648084, + "rtt_ms": 2.648084, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:33.938078498Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:15.657521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222117, - "rtt_ms": 1.222117, + "rtt_ns": 1705833, + "rtt_ms": 1.705833, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.938094568Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:15.657526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454625, - "rtt_ms": 1.454625, + "rtt_ns": 1361958, + "rtt_ms": 1.361958, "checkpoint": 0, "vertex_from": "33", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:33.938204997Z" + "timestamp": "2025-11-27T04:03:15.657543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591635, - "rtt_ms": 1.591635, + "rtt_ns": 1259959, + "rtt_ms": 1.259959, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:33.938219757Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1314276, - "rtt_ms": 1.314276, - "checkpoint": 0, - "vertex_from": "250", - "timestamp": "2025-11-27T01:23:33.938718886Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:15.657637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470696, - "rtt_ms": 1.470696, + "rtt_ns": 1129500, + "rtt_ms": 1.1295, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:33.938796556Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:15.658111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475216, - "rtt_ms": 1.475216, + "rtt_ns": 1181625, + "rtt_ms": 1.181625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:33.938802376Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.658151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457946, - "rtt_ms": 1.457946, + "rtt_ns": 1155542, + "rtt_ms": 1.155542, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.938825156Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:15.658165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560905, - "rtt_ms": 1.560905, + "rtt_ns": 1131375, + "rtt_ms": 1.131375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.938839215Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:15.658522-08:00" }, { "operation": "add_edge", - "rtt_ns": 902417, - "rtt_ms": 0.902417, + "rtt_ns": 1018250, + "rtt_ms": 1.01825, "checkpoint": 0, "vertex_from": "33", "vertex_to": "324", - "timestamp": "2025-11-27T01:23:33.938855115Z" + "timestamp": "2025-11-27T04:03:15.65854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162577, - "rtt_ms": 1.162577, + "rtt_ns": 1168292, + "rtt_ms": 1.168292, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:33.939368954Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:15.658654-08:00" }, { - "operation": "add_edge", - "rtt_ns": 707378, - "rtt_ms": 0.707378, + "operation": "add_vertex", + "rtt_ns": 1422916, + "rtt_ms": 1.422916, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "250", - "timestamp": "2025-11-27T01:23:33.939426864Z" + "vertex_from": "503", + "timestamp": "2025-11-27T04:03:15.659588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213027, - "rtt_ms": 1.213027, + "rtt_ns": 2083958, + "rtt_ms": 2.083958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:33.939434184Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:03:15.659611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362046, - "rtt_ms": 1.362046, + "rtt_ns": 2284958, + "rtt_ms": 2.284958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:33.939442284Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:15.659828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346736, - "rtt_ms": 1.346736, + "rtt_ns": 1859375, + "rtt_ms": 1.859375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:33.939442624Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:15.659971-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1272896, - "rtt_ms": 1.272896, + "rtt_ns": 2487709, + "rtt_ms": 2.487709, "checkpoint": 0, - "vertex_from": "503", - "timestamp": "2025-11-27T01:23:33.940078672Z" + "vertex_from": "250", + "timestamp": "2025-11-27T04:03:15.65999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322067, - "rtt_ms": 1.322067, + "rtt_ns": 1922291, + "rtt_ms": 1.922291, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.940162562Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:15.660075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489165, - "rtt_ms": 1.489165, + "rtt_ns": 1458083, + "rtt_ms": 1.458083, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:33.940316321Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:15.660113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537315, - "rtt_ms": 1.537315, + "rtt_ns": 1635208, + "rtt_ms": 1.635208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:33.940335191Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:15.660158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990245, - "rtt_ms": 1.990245, + "rtt_ns": 2536041, + "rtt_ms": 2.536041, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:33.9408476Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:15.660174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607625, - "rtt_ms": 1.607625, + "rtt_ns": 1845084, + "rtt_ms": 1.845084, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "35", - "timestamp": "2025-11-27T01:23:33.941044349Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.660386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634605, - "rtt_ms": 1.634605, + "rtt_ns": 1341583, + "rtt_ms": 1.341583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "814", - "timestamp": "2025-11-27T01:23:33.941062739Z" + "vertex_to": "503", + "timestamp": "2025-11-27T04:03:15.66093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634795, - "rtt_ms": 1.634795, + "rtt_ns": 1337542, + "rtt_ms": 1.337542, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:33.941078959Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:15.660949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662205, - "rtt_ms": 1.662205, + "rtt_ns": 1339542, + "rtt_ms": 1.339542, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:33.941107679Z" + "vertex_to": "814", + "timestamp": "2025-11-27T04:03:15.661173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740265, - "rtt_ms": 1.740265, + "rtt_ns": 1210208, + "rtt_ms": 1.210208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:33.941111469Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:03:15.661183-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 733578, - "rtt_ms": 0.733578, + "operation": "add_edge", + "rtt_ns": 1506125, + "rtt_ms": 1.506125, "checkpoint": 0, - "vertex_from": "223", - "timestamp": "2025-11-27T01:23:33.941848577Z" + "vertex_from": "33", + "vertex_to": "250", + "timestamp": "2025-11-27T04:03:15.661497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007004, - "rtt_ms": 2.007004, + "rtt_ns": 1490125, + "rtt_ms": 1.490125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:33.942171256Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:03:15.661666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2290413, - "rtt_ms": 2.290413, + "rtt_ns": 1663666, + "rtt_ms": 1.663666, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "503", - "timestamp": "2025-11-27T01:23:33.942369575Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:15.661822-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147114, - "rtt_ms": 2.147114, + "rtt_ns": 1822125, + "rtt_ms": 1.822125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.942484015Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:15.661897-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257834, - "rtt_ms": 2.257834, + "rtt_ns": 1529750, + "rtt_ms": 1.52975, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:33.942576075Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.661917-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000174, - "rtt_ms": 2.000174, + "rtt_ns": 1903375, + "rtt_ms": 1.903375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:33.943080313Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:15.662017-08:00" }, { "operation": "add_edge", - "rtt_ns": 2553813, - "rtt_ms": 2.553813, + "rtt_ns": 2602041, + "rtt_ms": 2.602041, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "61", - "timestamp": "2025-11-27T01:23:33.943617792Z" + "vertex_to": "376", + "timestamp": "2025-11-27T04:03:15.663552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794095, - "rtt_ms": 1.794095, + "rtt_ns": 2394625, + "rtt_ms": 2.394625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "223", - "timestamp": "2025-11-27T01:23:33.943643182Z" + "vertex_to": "61", + "timestamp": "2025-11-27T04:03:15.663568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482306, - "rtt_ms": 1.482306, + "rtt_ns": 2385125, + "rtt_ms": 2.385125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:33.943655502Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:15.663569-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1089067, - "rtt_ms": 1.089067, + "operation": "add_vertex", + "rtt_ns": 1907750, + "rtt_ms": 1.90775, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:33.943666472Z" + "vertex_from": "223", + "timestamp": "2025-11-27T04:03:15.663578-08:00" }, { "operation": "add_edge", - "rtt_ns": 2896992, - "rtt_ms": 2.896992, + "rtt_ns": 1668625, + "rtt_ms": 1.668625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:33.943745602Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:15.663586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281137, - "rtt_ms": 1.281137, + "rtt_ns": 2749708, + "rtt_ms": 2.749708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:33.943767102Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:15.663681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2722043, - "rtt_ms": 2.722043, + "rtt_ns": 1906500, + "rtt_ms": 1.9065, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "376", - "timestamp": "2025-11-27T01:23:33.943768262Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:15.66373-08:00" }, { "operation": "add_edge", - "rtt_ns": 2742872, - "rtt_ms": 2.742872, + "rtt_ns": 1852500, + "rtt_ms": 1.8525, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:33.943853241Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:15.663751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612676, - "rtt_ms": 1.612676, + "rtt_ns": 2363291, + "rtt_ms": 2.363291, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:33.943983721Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:15.663866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439426, - "rtt_ms": 1.439426, + "rtt_ns": 2198208, + "rtt_ms": 2.198208, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:33.945084748Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:15.664216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533145, - "rtt_ms": 1.533145, + "rtt_ns": 1165584, + "rtt_ms": 1.165584, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:33.945154077Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:15.664896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507565, - "rtt_ms": 1.507565, + "rtt_ns": 1436417, + "rtt_ms": 1.436417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:33.945175847Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:15.664989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130684, - "rtt_ms": 2.130684, + "rtt_ns": 1570333, + "rtt_ms": 1.570333, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:33.945213347Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:15.66514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462125, - "rtt_ms": 1.462125, + "rtt_ns": 1575334, + "rtt_ms": 1.575334, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:33.945230577Z" + "vertex_from": "33", + "vertex_to": "223", + "timestamp": "2025-11-27T04:03:15.665154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347736, - "rtt_ms": 1.347736, + "rtt_ns": 1600750, + "rtt_ms": 1.60075, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:33.945332527Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:15.66517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575385, - "rtt_ms": 1.575385, + "rtt_ns": 1745459, + "rtt_ms": 1.745459, "checkpoint": 0, "vertex_from": "34", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:33.945345797Z" + "timestamp": "2025-11-27T04:03:15.665612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634365, - "rtt_ms": 1.634365, + "rtt_ns": 1583375, + "rtt_ms": 1.583375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:33.945384277Z" + "vertex_to": "407", + "timestamp": "2025-11-27T04:03:15.6658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557326, - "rtt_ms": 1.557326, + "rtt_ns": 2235916, + "rtt_ms": 2.235916, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "407", - "timestamp": "2025-11-27T01:23:33.945412227Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:15.665988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855814, - "rtt_ms": 1.855814, + "rtt_ns": 2323875, + "rtt_ms": 2.323875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:33.945513016Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:15.666008-08:00" }, { "operation": "add_edge", - "rtt_ns": 905678, - "rtt_ms": 0.905678, + "rtt_ns": 1078000, + "rtt_ms": 1.078, "checkpoint": 0, "vertex_from": "34", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:33.946082605Z" + "timestamp": "2025-11-27T04:03:15.666233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003077, - "rtt_ms": 1.003077, + "rtt_ns": 1425584, + "rtt_ms": 1.425584, "checkpoint": 0, "vertex_from": "34", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:33.946090145Z" + "timestamp": "2025-11-27T04:03:15.666416-08:00" }, { "operation": "add_edge", - "rtt_ns": 905667, - "rtt_ms": 0.905667, + "rtt_ns": 1274166, + "rtt_ms": 1.274166, "checkpoint": 0, "vertex_from": "34", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:33.946120844Z" + "timestamp": "2025-11-27T04:03:15.666445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563326, - "rtt_ms": 1.563326, + "rtt_ns": 1318000, + "rtt_ms": 1.318, "checkpoint": 0, "vertex_from": "34", "vertex_to": "661", - "timestamp": "2025-11-27T01:23:33.946718843Z" + "timestamp": "2025-11-27T04:03:15.666459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537396, - "rtt_ms": 1.537396, + "rtt_ns": 2891750, + "rtt_ms": 2.89175, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "75", - "timestamp": "2025-11-27T01:23:33.946769823Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:15.666479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474265, - "rtt_ms": 1.474265, + "rtt_ns": 1817292, + "rtt_ms": 1.817292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:33.946821292Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:15.666723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508945, - "rtt_ms": 1.508945, + "rtt_ns": 1462958, + "rtt_ms": 1.462958, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:33.946842752Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:03:15.667076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451556, - "rtt_ms": 1.451556, + "rtt_ns": 1281500, + "rtt_ms": 1.2815, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:33.946965702Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:03:15.667517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630045, - "rtt_ms": 1.630045, + "rtt_ns": 1635917, + "rtt_ms": 1.635917, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:33.947016302Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:15.667625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799644, - "rtt_ms": 1.799644, + "rtt_ns": 1789083, + "rtt_ms": 1.789083, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "466", - "timestamp": "2025-11-27T01:23:33.947213551Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:15.667798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576895, - "rtt_ms": 1.576895, + "rtt_ns": 1446292, + "rtt_ms": 1.446292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:33.94766026Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:15.667906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096677, - "rtt_ms": 1.096677, + "rtt_ns": 1577625, + "rtt_ms": 1.577625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:33.947940809Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:15.668057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887484, - "rtt_ms": 1.887484, + "rtt_ns": 1705417, + "rtt_ms": 1.705417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:33.947979179Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:15.668151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270426, - "rtt_ms": 1.270426, + "rtt_ns": 1682917, + "rtt_ms": 1.682917, "checkpoint": 0, "vertex_from": "34", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:33.947990429Z" + "timestamp": "2025-11-27T04:03:15.668406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266246, - "rtt_ms": 1.266246, + "rtt_ns": 2654000, + "rtt_ms": 2.654, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:33.948037229Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:15.668455-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2228375, + "rtt_ms": 2.228375, + "checkpoint": 0, + "vertex_from": "34", + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:15.668646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082477, - "rtt_ms": 1.082477, + "rtt_ns": 2082458, + "rtt_ms": 2.082458, "checkpoint": 0, "vertex_from": "34", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:33.948049519Z" + "timestamp": "2025-11-27T04:03:15.669881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100657, - "rtt_ms": 1.100657, + "rtt_ns": 1515791, + "rtt_ms": 1.515791, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "57", - "timestamp": "2025-11-27T01:23:33.948118179Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:15.669923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374786, - "rtt_ms": 1.374786, + "rtt_ns": 2616667, + "rtt_ms": 2.616667, "checkpoint": 0, "vertex_from": "34", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:33.948197248Z" + "timestamp": "2025-11-27T04:03:15.670134-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095844, - "rtt_ms": 2.095844, + "rtt_ns": 2331583, + "rtt_ms": 2.331583, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:33.948218188Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:03:15.670239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136546, - "rtt_ms": 1.136546, + "rtt_ns": 2101041, + "rtt_ms": 2.101041, "checkpoint": 0, "vertex_from": "34", "vertex_to": "785", - "timestamp": "2025-11-27T01:23:33.948798496Z" + "timestamp": "2025-11-27T04:03:15.670253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585185, - "rtt_ms": 1.585185, + "rtt_ns": 2701750, + "rtt_ms": 2.70175, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "87", - "timestamp": "2025-11-27T01:23:33.948800436Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:15.670328-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063074, - "rtt_ms": 2.063074, + "rtt_ns": 1629875, + "rtt_ms": 1.629875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:33.950005503Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:15.670423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300666, - "rtt_ms": 1.300666, + "rtt_ns": 2380708, + "rtt_ms": 2.380708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:33.950169262Z" + "vertex_to": "87", + "timestamp": "2025-11-27T04:03:15.670439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938405, - "rtt_ms": 1.938405, + "rtt_ns": 3364000, + "rtt_ms": 3.364, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:33.950782011Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:15.67044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931084, - "rtt_ms": 1.931084, + "rtt_ns": 1985375, + "rtt_ms": 1.985375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:33.95087501Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:15.670441-08:00" }, { "operation": "add_edge", - "rtt_ns": 2903541, - "rtt_ms": 2.903541, + "rtt_ns": 988458, + "rtt_ms": 0.988458, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:33.95088549Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:15.671428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016304, - "rtt_ms": 2.016304, + "rtt_ns": 1545750, + "rtt_ms": 1.54575, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:33.95097986Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:15.67147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084514, - "rtt_ms": 2.084514, + "rtt_ns": 1308709, + "rtt_ms": 1.308709, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:33.95098241Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:15.671563-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1243375, + "rtt_ms": 1.243375, + "checkpoint": 0, + "vertex_from": "34", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:15.671571-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041694, - "rtt_ms": 2.041694, + "rtt_ns": 1159292, + "rtt_ms": 1.159292, "checkpoint": 0, "vertex_from": "34", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:33.95101531Z" + "timestamp": "2025-11-27T04:03:15.671583-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147434, - "rtt_ms": 2.147434, + "rtt_ns": 1282375, + "rtt_ms": 1.282375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:33.95107222Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:15.671723-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214524, - "rtt_ms": 2.214524, + "rtt_ns": 1847167, + "rtt_ms": 1.847167, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:33.951099Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:15.671731-08:00" }, { "operation": "add_edge", - "rtt_ns": 981387, - "rtt_ms": 0.981387, + "rtt_ns": 1616250, + "rtt_ms": 1.61625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:33.951152689Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:15.671751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156166, - "rtt_ms": 1.156166, + "rtt_ns": 1566625, + "rtt_ms": 1.566625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:33.951163789Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:15.671806-08:00" }, { "operation": "bfs", - "rtt_ns": 399027085, - "rtt_ms": 399, + "rtt_ns": 386328416, + "rtt_ms": 386, "checkpoint": 2, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", + "398", + "554", + "821", + "562", + "368", + "906", + "187", + "472", + "552", + "261", "462", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "413", - "44", - "212", - "581", - "483", - "200", - "758", - "597", - "715", - "755", - "535", + "230", "288", - "317", - "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "807", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "126", - "1", - "932", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "343", - "859", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", + "64", + "909", + "617", + "813", "386", - "76", - "928", - "253", - "232", - "169", - "284", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "28", - "963", - "892", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "532", - "361", - "665", - "270", - "503", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", + "394", + "56", + "217", "101", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "810", - "362", - "704", - "738", - "798", - "898", - "966", - "543", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "937", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "835", + "396", + "963", + "14", "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "220", - "161", - "217", - "474", - "586", + "932", + "921", + "150", + "542", + "166", + "188", + "271", + "615", + "905", + "83", + "162", + "625", + "945", "452", - "190", - "965", - "557", + "132", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "245", - "703", - "264", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "832", - "128", + "913", + "576", + "116", + "147", "663", - "140", - "167", - "848", - "967", - "890", + "29", + "598", + "473", + "934", + "853", + "915", + "61", + "47", + "145", + "610", + "341", + "175", + "900", + "656", + "791", + "243", "796", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "0", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "603", - "921", - "262", - "775", - "707", - "672", - "1001", - "771", - "326", - "346", - "770", - "90", + "198", + "176", "956", - "328", - "648", - "86", - "184", - "323", - "227", - "904", - "364", - "600", - "211", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "696", + "279", + "79", + "395", + "844", + "227", + "825", + "929", "781", - "22", + "487", + "35", + "648", + "559", + "37", + "870", + "1008", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "174", + "923", "430", - "333", - "324", - "141", - "565", - "448", - "88", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", + "580", + "126", + "440", + "544", + "78", + "706", + "513", + "634", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "410", + "517", "376", - "216", - "554", - "54", - "636", - "213", - "20", + "573", "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "463", - "718", + "810", "453", - "804", - "486", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "577", - "477", - "803", - "62", - "791", + "310", + "34", + "817", + "121", + "41", "26", - "11", - "984", - "139", - "192", - "394", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "0", - "752", - "339", - "676", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "31", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "661", + "596", + "413", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", + "874", + "25", + "307", + "369", + "887", + "807", + "75", + "992", + "355", + "137", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", "1002", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "590", - "273", - "760", - "82", - "60", - "37", - "826", - "148", - "57", - "205", - "860", - "659", - "24", + "976", + "154", "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", + "754", + "592", + "587", + "627", + "322", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "199", + "786", + "606", + "107", + "223", + "244", + "457", "670", - "427", + "32", + "280", + "142", + "268", + "342", "767", - "622", - "740", - "488", - "426", - "158", - "887", - "851", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", "688", - "795", - "818", - "498", - "370", - "460", - "787", - "906", - "756", - "835", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "1008", - "646", - "91", - "905", - "675", - "434", - "404", - "320", + "585", + "568", "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "437", - "813", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", - "902", - "520", - "214", - "746", - "661", - "682", - "29", - "263", - "579", + "115", + "677", + "299", + "323", "651", - "844", - "505", - "398", - "309", - "560", - "589", - "435", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", "164", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "438", - "960", - "744", - "412", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", + "141", + "63", + "210", + "777", + "265", "222", - "301", - "425", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", + "373", + "167", + "139", + "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "182", + "294", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "19", + "566", + "58", "436", - "529", - "541", - "654", - "732", - "187", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "714", + "622", + "385", + "48", + "250", "248", - "915", - "569", - "624", + "73", "6", - "455", - "215", - "16", + "802", + "647", + "814", + "90", + "300", + "400", + "31", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", "793", - "822", - "820", - "396", - "563", - "183", - "308", - "650", - "111", - "156" - ], - "timestamp": "2025-11-27T01:23:36.38494214Z" - }, - { - "operation": "bfs", - "rtt_ns": 376859690, - "rtt_ms": 376, - "checkpoint": 2, - "bfs_start": "1", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", + "449", + "483", + "855", + "281", + "710", "334", - "548", - "78", - "41", - "720", - "228", - "36", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "437", + "77", + "798", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "738", + "356", + "859", + "102", + "317", "96", - "708", - "629", - "613", + "516", + "720", + "910", + "108", + "201", + "247", "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", + "274", + "694", + "613", + "50", + "459", + "16", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", "212", - "581", - "483", - "200", - "758", - "597", - "755", - "535", - "288", - "317", - "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", + "514", + "36", + "157", "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "1", - "932", - "173", - "274", - "369", - "170", + "204", + "352", "122", - "604", - "30", - "179", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", + "328", + "717", + "269", + "981", + "520", + "414", "153", - "286", - "84", - "386", - "76", - "928", - "253", - "232", - "169", - "284", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", + "403", + "267", "291", - "784", + "293", + "840", + "134", + "327", + "994", + "1001", + "865", + "586", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "604", + "324", + "92", + "836", "468", - "532", - "361", - "665", - "270", - "503", - "849", - "794", - "817", + "712", + "715", "18", + "774", + "225", + "806", + "820", + "809", + "902", + "253", + "425", + "306", + "160", + "93", + "151", + "882", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "152", "289", - "465", - "643", - "146", - "911", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "1", + "70", + "155", + "845", + "645", + "988", + "17", + "361", + "477", + "756", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "162", + "231", + "62", + "224", + "466", + "416", + "657", + "966", + "455", + "530", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "370", + "412", + "284", + "876", "896", - "378", - "658", - "98", - "773", - "487", - "419", - "280", + "778", "195", - "934", - "322", - "772", - "530", - "77", - "163", + "681", + "636", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:18.091085-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 332363125, + "rtt_ms": 332, + "checkpoint": 2, + "bfs_start": "1", + "bfs_radius": 10, + "bfs_result": [ + "398", + "554", + "821", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "617", + "813", + "386", + "776", + "394", + "56", + "217", "101", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "810", - "362", - "704", - "798", - "898", - "966", - "543", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "98", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "937", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "835", + "396", + "963", + "14", "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", + "932", + "921", + "150", + "542", + "166", + "188", + "271", + "615", + "905", + "83", + "162", + "625", + "945", "452", - "190", - "965", - "557", + "132", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "426", + "397", + "920", + "273", + "725", + "263", + "438", + "432", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "387", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "703", - "264", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "934", + "853", + "915", + "61", + "47", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "832", - "128", - "140", - "167", - "848", - "967", + "175", + "900", + "656", + "791", + "243", "796", - "582", - "615", - "134", - "843", - "293", - "811", - "626", - "788", - "331", - "157", - "42", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "184", - "323", - "227", - "904", - "364", - "600", - "211", + "198", + "176", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "528", - "660", - "21", - "681", - "349", - "596", - "22", + "292", + "696", + "279", + "79", + "395", + "844", + "227", + "825", + "929", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "174", "430", - "333", - "324", - "141", - "565", - "448", - "88", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", + "773", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", + "580", + "440", + "544", + "78", + "706", + "513", + "634", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "419", "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "692", + "402", + "410", + "517", "376", - "216", - "554", - "54", - "636", - "213", - "20", + "573", "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "718", + "810", "453", - "804", - "486", - "647", - "347", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "388", - "407", - "577", - "477", - "803", - "791", + "310", + "34", + "817", + "121", + "41", "26", - "11", - "984", - "139", - "192", - "394", - "497", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", + "104", "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "673", + "3", + "805", + "755", + "301", + "661", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "169", "105", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", - "1002", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "273", - "760", - "82", - "60", - "37", - "826", - "148", - "57", - "205", - "860", - "659", - "24", - "260", - "432", - "544", - "601", - "653", - "342", - "768", - "670", - "427", - "767", - "622", - "740", - "488", - "426", - "158", + "25", + "307", + "369", "887", - "851", - "688", - "795", + "75", + "992", + "355", + "137", + "331", + "626", "818", - "498", - "370", - "460", - "787", - "906", - "756", - "835", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "750", - "71", - "390", + "148", + "629", + "572", "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "437", - "813", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", - "902", - "520", - "214", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "505", - "398", - "309", - "560", - "589", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "408", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", "628", - "561", - "558", - "438", - "960", - "412", - "229", - "74", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", "754", - "869", - "67", - "749", - "385", - "204", + "592", + "587", + "627", + "322", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "199", + "786", + "606", + "107", + "223", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", + "140", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "112", + "824", + "124", + "852", + "164", + "141", + "63", + "210", + "777", + "265", "222", - "301", - "425", - "269", + "373", + "167", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "346", + "936", + "996", + "19", + "566", + "58", + "436", + "622", + "385", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "855", "281", - "778", - "285", - "155", - "160", - "130", - "193", - "117", - "152", - "616", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", "743", - "549", - "436", - "529", - "541", - "654", - "187", - "271", - "858", - "244", + "812", "662", - "226", - "913", - "816", + "338", + "838", + "749", + "405", + "523", + "558", + "740", + "540", + "437", + "77", + "798", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "356", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "247", + "367", + "274", + "694", + "613", + "50", "459", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "455", - "215", "16", - "793", - "822", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "604", + "324", + "92", + "836", + "468", + "712", + "18", + "774", + "225", + "806", "820", - "396", - "563", - "183", - "308", - "650", - "111", - "156" + "809", + "902", + "253", + "425", + "306", + "160", + "93", + "151", + "882", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "1", + "70", + "155", + "845", + "645", + "17", + "361", + "477", + "756", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "40", + "231", + "224", + "466", + "416", + "657", + "966", + "455", + "530", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:36.762188839Z" + "timestamp": "2025-11-27T04:03:18.423551-08:00" }, { "operation": "bfs", - "rtt_ns": 360020460, - "rtt_ms": 360, + "rtt_ns": 330172000, + "rtt_ms": 330, "checkpoint": 2, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "36", - "96", - "708", - "629", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", - "212", - "581", - "483", - "200", - "758", - "597", - "755", - "535", + "398", + "554", + "821", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", "288", - "317", - "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "87", - "14", - "986", - "496", - "712", + "64", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", + "117", + "758", "241", - "153", - "286", - "84", - "386", - "76", - "928", - "232", - "169", - "284", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "532", - "361", - "665", - "270", - "503", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "162", - "896", - "658", + "358", + "407", + "708", + "86", + "834", + "185", "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", - "101", - "403", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "810", - "362", - "704", - "798", - "898", - "966", - "543", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "937", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "835", + "396", + "963", + "14", "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", + "932", + "921", + "150", + "542", + "166", + "188", + "271", + "615", + "905", + "83", + "162", + "625", + "945", "452", - "190", - "965", - "557", + "132", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "177", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "426", + "397", + "920", + "273", + "725", + "263", + "438", + "432", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "387", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "703", - "264", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "934", + "915", + "61", + "47", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "832", - "128", - "140", - "167", - "848", - "967", + "175", + "900", + "656", + "791", + "243", "796", - "582", - "615", - "134", - "843", - "293", - "811", - "626", - "788", - "331", - "157", - "42", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "184", - "323", - "227", - "904", - "364", - "600", - "211", + "198", + "176", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "528", - "660", - "21", - "681", - "349", - "596", - "22", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", + "292", + "279", + "79", + "395", + "844", + "227", "825", - "372", - "203", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", + "929", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "174", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "773", + "970", + "899", "69", - "944", - "45", - "718", - "453", - "804", - "647", - "347", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", + "534", + "784", + "601", + "856", + "954", "433", - "12", - "779", - "736", - "388", - "407", - "577", - "477", - "803", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "497", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", "580", - "116", - "79", - "868", - "574", - "120", - "345", - "411", - "92", - "181", - "806", + "440", + "544", + "78", + "706", + "513", + "634", + "392", + "205", + "640", + "826", + "408", "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", + "87", + "28", + "545", + "33", + "986", + "419", + "178", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "692", + "402", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "673", + "3", + "805", + "755", + "301", + "661", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "169", "105", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "976", - "348", - "399", - "316", - "617", - "1002", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "273", - "760", - "82", - "60", - "37", - "826", - "148", - "57", - "205", - "860", - "659", - "24", - "260", - "432", - "544", - "601", - "653", - "342", - "768", - "670", - "427", - "767", - "622", - "740", - "488", - "426", - "158", + "25", + "307", + "369", "887", - "851", - "688", - "795", + "75", + "992", + "355", + "137", + "331", + "626", "818", - "498", - "370", - "460", - "787", - "906", - "756", - "835", - "393", - "706", - "47", - "610", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "750", - "71", - "390", + "148", + "629", + "572", "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "437", - "813", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", - "902", - "520", - "214", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "505", - "398", - "309", - "560", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "408", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", "628", - "561", - "558", - "438", - "960", - "412", - "229", - "74", + "10", + "481", + "422", + "603", + "556", + "320", + "337", "754", - "869", - "67", - "749", - "385", - "204", - "222", - "301", - "425", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "187", - "271", - "858", + "592", + "587", + "627", + "322", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "199", + "786", + "107", + "223", "244", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "455", - "16", - "793", - "822", - "820", - "396", - "563", - "308", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", + "140", + "772", + "659", "650", - "111", - "156" - ], - "timestamp": "2025-11-27T01:23:37.123068417Z" - }, - { - "operation": "bfs", - "rtt_ns": 342869720, - "rtt_ms": 342, - "checkpoint": 2, - "bfs_start": "4", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "36", - "96", - "708", - "629", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", + "688", + "585", + "568", + "829", + "115", "677", - "123", - "81", - "121", - "138", - "242", - "44", - "212", - "581", - "483", - "200", - "597", - "535", - "288", - "317", + "299", + "323", + "651", + "868", "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "112", "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", + "852", + "164", + "141", + "63", + "210", "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "842", - "470", - "9", - "38", + "265", + "222", + "373", + "167", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "346", + "936", + "996", + "19", + "566", + "58", + "436", + "622", + "385", + "48", + "250", + "248", "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", + "6", + "802", + "647", "814", - "993", - "968", - "241", - "153", - "286", - "84", - "386", - "76", - "928", - "232", - "169", - "284", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", "602", - "287", - "55", - "866", - "931", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "532", - "361", - "665", - "270", - "503", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "162", - "896", "658", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", - "101", - "403", - "608", - "23", - "107", - "391", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", "338", - "231", - "422", - "810", - "362", - "704", + "838", + "749", + "405", + "523", + "558", + "740", + "540", + "437", + "77", "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "199", + "257", + "179", + "768", + "716", + "97", "609", + "264", + "498", + "482", + "326", + "356", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "247", + "367", + "274", "694", - "332", - "916", - "802", + "613", "50", - "546", - "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", - "452", - "190", - "965", - "557", - "897", - "537", - "518", - "304", - "198", - "873", - "668", - "467", - "256", - "387", + "459", + "16", + "519", + "168", "512", - "257", - "104", - "115", - "344", - "961", - "279", - "936", - "99", - "996", - "360", - "15", - "992", - "34", - "930", - "703", - "264", - "867", - "800", - "841", - "70", - "424", - "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "832", - "128", - "140", - "167", - "848", - "967", - "796", - "582", - "615", - "134", + "451", + "213", + "918", + "480", + "526", + "256", + "965", "843", - "293", - "811", - "626", - "788", + "427", + "713", + "769", + "212", + "514", + "36", "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "66", - "277", - "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", + "8", + "204", + "352", + "122", "328", - "648", - "86", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "937", + "161", + "522", + "100", "184", - "323", - "227", - "904", - "364", - "600", - "211", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "528", - "660", - "21", - "681", - "349", - "596", - "22", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", + "12", + "2", "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "236", - "196", - "484", - "583", - "276", - "358", - "7", + "226", "89", - "305", - "149", "564", - "178", - "177", - "355", - "405", - "825", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", "372", - "203", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "453", - "804", - "647", - "347", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "388", - "407", - "577", - "803", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "580", - "116", - "79", - "868", - "574", - "120", - "345", - "411", + "131", + "15", + "604", + "324", "92", - "181", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "976", - "348", - "316", - "617", - "1002", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "273", - "760", - "82", - "60", - "37", - "826", - "148", - "57", - "205", - "860", - "659", - "24", - "260", - "432", - "544", - "601", - "653", - "342", - "768", - "670", - "427", - "622", - "740", - "488", - "426", - "158", - "887", - "851", - "688", - "818", - "498", - "370", - "460", - "787", - "906", + "616", + "270", + "70", + "155", + "845", + "645", + "17", + "361", + "477", "756", - "835", - "393", - "706", - "47", - "610", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "404", - "320", - "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "642", - "594", - "243", - "330", - "437", - "813", - "176", - "910", - "464", - "523", - "598", - "534", - "175", - "485", - "272", - "902", - "520", - "214", + "518", + "842", "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "505", - "398", - "309", - "560", - "435", - "164", - "65", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "40", + "231", + "224", + "466", + "416", + "657", + "966", + "455", + "530", + "171", + "550", "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "438", - "960", - "412", "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "222", - "301", - "425", - "269", - "281", + "76", + "11", + "594", + "314", + "370", + "412", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "187", - "244", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "455", - "16", - "793", - "820", - "396", - "563", - "308", - "650", - "111", - "156" + "195", + "681", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:37.466355656Z" + "timestamp": "2025-11-27T04:03:18.75383-08:00" }, { "operation": "bfs", - "rtt_ns": 353096591, - "rtt_ms": 353, + "rtt_ns": 311711166, + "rtt_ms": 311, "checkpoint": 2, - "bfs_start": "3", + "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "36", - "96", - "708", - "629", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "44", - "212", - "581", - "483", - "200", - "597", - "535", + "398", + "554", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", "288", - "317", - "133", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "842", - "470", - "9", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", + "64", + "617", + "813", "386", - "76", - "928", - "232", - "169", - "284", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "532", - "361", - "665", - "270", - "503", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "162", - "896", - "658", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", + "394", + "56", + "217", "101", - "403", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "810", - "362", - "704", - "798", - "898", - "966", - "543", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "98", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "937", - "199", - "609", - "694", - "332", - "3", - "916", - "802", - "50", - "546", + "835", + "396", + "963", + "14", "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", + "932", + "921", + "150", + "542", + "166", + "188", + "615", + "905", + "83", + "162", + "625", + "945", "452", - "190", - "965", - "557", + "132", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "448", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "177", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "426", + "397", + "920", + "273", + "725", + "263", + "438", + "432", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "387", - "512", - "257", - "104", - "115", - "344", - "961", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "703", - "264", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "934", + "915", + "61", + "47", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "832", - "128", - "140", - "167", - "848", - "967", + "175", + "900", + "656", + "791", + "243", "796", - "582", - "615", - "134", - "843", - "293", - "811", - "626", - "788", - "331", - "157", - "42", + "428", + "424", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "184", - "323", - "227", - "904", - "364", - "600", - "211", + "198", + "176", "275", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "528", - "660", - "21", - "681", - "349", - "596", - "22", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", + "292", + "279", + "79", + "395", + "844", + "227", "825", - "372", - "203", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", + "929", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "174", + "60", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "773", + "899", "69", - "944", - "45", - "718", - "453", - "804", - "647", - "347", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", + "534", + "784", + "601", + "856", + "954", "433", - "12", - "779", - "736", - "388", - "407", - "577", - "803", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", "580", - "116", - "79", - "868", - "574", - "120", - "345", - "411", - "92", - "181", - "806", + "440", + "544", + "78", + "706", + "513", + "634", + "392", + "205", + "640", + "826", + "408", "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", + "87", + "28", + "545", + "33", + "986", + "419", + "178", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "692", + "402", + "410", + "517", + "376", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "673", + "805", + "301", + "661", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "169", "105", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "976", - "348", - "316", - "617", - "1002", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "273", - "760", - "82", - "60", - "37", - "826", - "148", - "57", - "205", - "860", - "659", - "24", - "260", - "432", - "544", - "601", - "653", - "342", - "768", - "670", - "427", - "622", - "740", - "488", - "426", - "158", + "25", + "307", + "369", "887", - "851", - "688", + "75", + "992", + "355", + "137", + "626", "818", - "498", - "370", - "460", - "787", - "906", - "756", - "835", - "393", - "706", - "47", - "610", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "404", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", "320", + "337", + "754", + "592", + "587", + "627", + "322", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "199", + "786", + "107", + "223", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "246", + "841", + "140", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", + "688", + "585", + "568", "829", - "132", - "143", - "840", - "652", - "194", - "801", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "112", + "124", + "852", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "167", + "139", "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "346", + "936", + "996", + "19", + "566", + "58", + "436", + "622", + "385", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "400", + "547", "144", - "914", - "642", - "594", - "243", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", "330", - "437", - "813", - "176", - "910", - "464", - "314", + "119", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "43", + "138", + "366", + "421", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "749", + "405", "523", - "598", - "534", - "175", - "485", - "272", - "902", + "558", + "740", + "540", + "437", + "77", + "798", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "356", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", "520", - "214", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "937", + "161", + "522", + "100", + "184", + "12", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "604", + "324", + "92", + "836", + "468", + "712", + "18", + "774", + "225", + "806", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "70", + "155", + "845", + "645", + "17", + "361", + "756", + "518", + "842", "746", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "197", + "531", + "704", + "194", + "40", + "231", + "224", + "466", + "416", + "657", + "966", + "455", + "530", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "636", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:19.065646-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 315930458, + "rtt_ms": 315, + "checkpoint": 2, + "bfs_start": "3", + "bfs_radius": 10, + "bfs_result": [ + "398", + "554", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "98", + "538", + "515", + "128", + "46", + "278", + "535", + "837", + "835", + "396", + "963", + "14", + "172", + "932", + "921", + "150", + "542", + "166", + "188", + "615", + "905", + "83", + "162", + "625", + "945", + "452", + "132", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "110", + "193", + "962", + "362", + "363", + "143", + "897", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "177", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "426", + "397", + "920", + "273", + "725", + "263", + "438", + "432", + "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "496", + "866", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "311", + "203", + "202", + "913", + "576", + "116", + "147", + "29", + "598", + "934", + "915", + "61", + "47", + "145", + "610", + "341", + "175", + "900", + "656", + "791", + "243", + "796", + "428", + "424", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", + "401", + "198", + "176", + "275", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", + "701", + "748", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", + "697", + "292", + "279", + "79", + "395", + "844", + "227", + "825", + "929", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "174", + "60", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "773", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", + "580", + "440", + "544", + "78", + "706", + "513", + "634", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "419", + "178", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "692", + "402", + "410", + "517", + "376", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", + "570", + "673", + "3", + "805", + "301", "661", + "596", "682", - "29", - "263", - "579", - "651", - "844", - "505", - "398", - "309", - "560", - "435", - "164", - "65", - "880", + "106", + "709", + "13", + "295", + "993", + "169", + "105", + "170", + "800", + "4", "25", - "456", - "420", - "408", + "307", + "369", + "887", + "75", + "992", + "355", + "137", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", "628", - "561", - "558", - "438", - "960", - "412", - "229", - "74", + "10", + "481", + "422", + "603", + "556", + "320", + "337", "754", - "869", - "67", - "749", - "385", - "204", + "592", + "587", + "627", + "322", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "199", + "786", + "107", + "223", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "246", + "841", + "140", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "112", + "124", + "852", + "164", + "141", + "63", + "210", + "777", + "265", "222", - "301", - "425", - "269", + "167", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "347", + "182", + "294", + "537", + "873", + "49", + "984", + "346", + "936", + "996", + "19", + "566", + "58", + "436", + "622", + "385", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", "281", - "778", - "285", - "155", - "160", - "130", - "193", - "117", - "152", - "616", + "710", + "334", + "43", + "138", + "366", + "421", + "276", + "82", "743", - "549", - "436", - "529", - "541", - "654", - "187", - "244", + "812", "662", - "226", - "913", - "816", + "338", + "838", + "749", + "405", + "523", + "558", + "740", + "540", + "437", + "77", + "798", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "356", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "247", + "367", + "274", + "694", + "613", + "50", "459", - "513", - "39", - "248", - "915", - "569", - "624", - "6", - "455", "16", - "793", - "822", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "937", + "161", + "522", + "100", + "184", + "12", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "604", + "324", + "92", + "836", + "468", + "712", + "18", + "774", + "225", + "806", "820", - "396", - "563", - "308", - "650", - "111", - "156" + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "70", + "155", + "845", + "645", + "17", + "361", + "756", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "40", + "231", + "224", + "466", + "416", + "657", + "966", + "455", + "530", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:37.819819056Z" + "timestamp": "2025-11-27T04:03:19.38169-08:00" }, { "operation": "add_edge", - "rtt_ns": 999347, - "rtt_ms": 0.999347, + "rtt_ns": 1147000, + "rtt_ms": 1.147, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:37.820889722Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:03:19.38287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866035, - "rtt_ms": 1.866035, + "rtt_ns": 1528791, + "rtt_ms": 1.528791, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.82174167Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:19.383253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2699292, - "rtt_ms": 2.699292, + "rtt_ns": 2457792, + "rtt_ms": 2.457792, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:37.822620377Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.384198-08:00" }, { "operation": "add_edge", - "rtt_ns": 2668422, - "rtt_ms": 2.668422, + "rtt_ns": 2487541, + "rtt_ms": 2.487541, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:37.822632037Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:19.38423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2647132, - "rtt_ms": 2.647132, + "rtt_ns": 2538167, + "rtt_ms": 2.538167, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:37.822633947Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:19.384246-08:00" }, { "operation": "add_edge", - "rtt_ns": 2774742, - "rtt_ms": 2.774742, + "rtt_ns": 2799709, + "rtt_ms": 2.799709, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:37.822720607Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.384534-08:00" }, { "operation": "add_edge", - "rtt_ns": 2876021, - "rtt_ms": 2.876021, + "rtt_ns": 3465083, + "rtt_ms": 3.465083, "checkpoint": 0, "vertex_from": "34", "vertex_to": "142", - "timestamp": "2025-11-27T01:23:37.822720657Z" + "timestamp": "2025-11-27T04:03:19.385171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2819162, - "rtt_ms": 2.819162, + "rtt_ns": 3464459, + "rtt_ms": 3.464459, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "37", - "timestamp": "2025-11-27T01:23:37.822723087Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.385189-08:00" }, { "operation": "add_edge", - "rtt_ns": 2824572, - "rtt_ms": 2.824572, + "rtt_ns": 3476667, + "rtt_ms": 3.476667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:37.822730927Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:19.385204-08:00" }, { "operation": "add_edge", - "rtt_ns": 2797502, - "rtt_ms": 2.797502, + "rtt_ns": 2344500, + "rtt_ms": 2.3445, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:37.822748307Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1398906, - "rtt_ms": 1.398906, - "checkpoint": 0, - "vertex_from": "885", - "timestamp": "2025-11-27T01:23:37.824029733Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:19.385217-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312263, - "rtt_ms": 2.312263, + "rtt_ns": 3664791, + "rtt_ms": 3.664791, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:37.824057183Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:19.385398-08:00" }, { "operation": "add_edge", - "rtt_ns": 3172921, - "rtt_ms": 3.172921, + "rtt_ns": 1436292, + "rtt_ms": 1.436292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:37.824065363Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.385667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513016, - "rtt_ms": 1.513016, + "rtt_ns": 1439375, + "rtt_ms": 1.439375, "checkpoint": 0, "vertex_from": "34", "vertex_to": "121", - "timestamp": "2025-11-27T01:23:37.824150143Z" + "timestamp": "2025-11-27T04:03:19.385686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869714, - "rtt_ms": 1.869714, + "rtt_ns": 2438958, + "rtt_ms": 2.438958, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.824619851Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:19.385693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915024, - "rtt_ms": 1.915024, + "rtt_ns": 1162750, + "rtt_ms": 1.16275, "checkpoint": 0, "vertex_from": "34", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:37.824638301Z" + "timestamp": "2025-11-27T04:03:19.385699-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1513875, + "rtt_ms": 1.513875, + "checkpoint": 0, + "vertex_from": "885", + "timestamp": "2025-11-27T04:03:19.385715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965414, - "rtt_ms": 1.965414, + "rtt_ns": 1445667, + "rtt_ms": 1.445667, "checkpoint": 0, "vertex_from": "34", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.824691701Z" + "timestamp": "2025-11-27T04:03:19.386618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971454, - "rtt_ms": 1.971454, + "rtt_ns": 1414584, + "rtt_ms": 1.414584, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:37.824697701Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.386632-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017724, - "rtt_ms": 2.017724, + "rtt_ns": 1454084, + "rtt_ms": 1.454084, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:37.824750971Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:19.386853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155074, - "rtt_ms": 2.155074, + "rtt_ns": 1676750, + "rtt_ms": 1.67675, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:37.824794841Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:19.386882-08:00" }, { "operation": "add_edge", - "rtt_ns": 3336230, - "rtt_ms": 3.33623, + "rtt_ns": 1642708, + "rtt_ms": 1.642708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "885", - "timestamp": "2025-11-27T01:23:37.827367163Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:19.387329-08:00" }, { "operation": "add_edge", - "rtt_ns": 3454350, - "rtt_ms": 3.45435, + "rtt_ns": 2154833, + "rtt_ms": 2.154833, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:37.827528663Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.387345-08:00" }, { "operation": "add_edge", - "rtt_ns": 3475390, - "rtt_ms": 3.47539, + "rtt_ns": 1641334, + "rtt_ms": 1.641334, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:37.827535293Z" + "vertex_to": "885", + "timestamp": "2025-11-27T04:03:19.387356-08:00" }, { "operation": "add_edge", - "rtt_ns": 3393270, - "rtt_ms": 3.39327, + "rtt_ns": 5557625, + "rtt_ms": 5.557625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:37.827545863Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:19.391254-08:00" }, { "operation": "add_edge", - "rtt_ns": 2936211, - "rtt_ms": 2.936211, + "rtt_ns": 5633500, + "rtt_ms": 5.6335, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:37.827635052Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:19.391302-08:00" }, { "operation": "add_edge", - "rtt_ns": 3041671, - "rtt_ms": 3.041671, + "rtt_ns": 5618500, + "rtt_ms": 5.6185, "checkpoint": 0, "vertex_from": "34", "vertex_to": "119", - "timestamp": "2025-11-27T01:23:37.827682162Z" + "timestamp": "2025-11-27T04:03:19.391318-08:00" }, { "operation": "add_edge", - "rtt_ns": 3078381, - "rtt_ms": 3.078381, + "rtt_ns": 5126250, + "rtt_ms": 5.12625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:37.827702602Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:19.391759-08:00" }, { "operation": "add_edge", - "rtt_ns": 2915911, - "rtt_ms": 2.915911, + "rtt_ns": 4890916, + "rtt_ms": 4.890916, "checkpoint": 0, "vertex_from": "34", "vertex_to": "97", - "timestamp": "2025-11-27T01:23:37.827712892Z" + "timestamp": "2025-11-27T04:03:19.391775-08:00" }, { "operation": "add_edge", - "rtt_ns": 3079741, - "rtt_ms": 3.079741, + "rtt_ns": 5536792, + "rtt_ms": 5.536792, "checkpoint": 0, "vertex_from": "34", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:37.827773262Z" + "timestamp": "2025-11-27T04:03:19.392156-08:00" }, { "operation": "add_edge", - "rtt_ns": 3046581, - "rtt_ms": 3.046581, + "rtt_ns": 5529541, + "rtt_ms": 5.529541, "checkpoint": 0, "vertex_from": "34", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:37.827799432Z" + "timestamp": "2025-11-27T04:03:19.392384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338376, - "rtt_ms": 1.338376, + "rtt_ns": 5329125, + "rtt_ms": 5.329125, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:37.828707279Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.392686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151487, - "rtt_ms": 1.151487, + "rtt_ns": 5390833, + "rtt_ms": 5.390833, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:37.828865769Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.392737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409306, - "rtt_ms": 1.409306, + "rtt_ns": 5682416, + "rtt_ms": 5.682416, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "453", - "timestamp": "2025-11-27T01:23:37.828958309Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:19.393013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355276, - "rtt_ms": 1.355276, + "rtt_ns": 1708500, + "rtt_ms": 1.7085, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:37.828992128Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:19.393027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499285, - "rtt_ms": 1.499285, + "rtt_ns": 1738542, + "rtt_ms": 1.738542, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:37.829029008Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:19.393041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349446, - "rtt_ms": 1.349446, + "rtt_ns": 818417, + "rtt_ms": 0.818417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:37.829033458Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:19.393203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528075, - "rtt_ms": 1.528075, + "rtt_ns": 1962042, + "rtt_ms": 1.962042, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:37.829065358Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:03:19.393218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851775, - "rtt_ms": 1.851775, + "rtt_ns": 1453792, + "rtt_ms": 1.453792, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:37.829626127Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:19.39323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852555, - "rtt_ms": 1.852555, + "rtt_ns": 1541417, + "rtt_ms": 1.541417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:37.829652967Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:19.393302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949575, - "rtt_ms": 1.949575, + "rtt_ns": 1198500, + "rtt_ms": 1.1985, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:37.829656407Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:19.393356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546396, - "rtt_ms": 1.546396, + "rtt_ns": 1409625, + "rtt_ms": 1.409625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:37.830581024Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.394147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935415, - "rtt_ms": 1.935415, + "rtt_ns": 1476125, + "rtt_ms": 1.476125, "checkpoint": 0, "vertex_from": "34", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:37.830643894Z" + "timestamp": "2025-11-27T04:03:19.394163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712475, - "rtt_ms": 1.712475, + "rtt_ns": 1419708, + "rtt_ms": 1.419708, "checkpoint": 0, "vertex_from": "34", "vertex_to": "709", - "timestamp": "2025-11-27T01:23:37.830672174Z" + "timestamp": "2025-11-27T04:03:19.394433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684346, - "rtt_ms": 1.684346, + "rtt_ns": 1420333, + "rtt_ms": 1.420333, "checkpoint": 0, "vertex_from": "34", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:37.830677754Z" + "timestamp": "2025-11-27T04:03:19.394449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820345, - "rtt_ms": 1.820345, + "rtt_ns": 1241667, + "rtt_ms": 1.241667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:37.830687514Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.39446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660606, - "rtt_ms": 1.660606, + "rtt_ns": 1430250, + "rtt_ms": 1.43025, "checkpoint": 0, "vertex_from": "34", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:37.830690574Z" + "timestamp": "2025-11-27T04:03:19.394472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650036, - "rtt_ms": 1.650036, + "rtt_ns": 1279750, + "rtt_ms": 1.27975, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.830723284Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.394484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761915, - "rtt_ms": 1.761915, + "rtt_ns": 1350291, + "rtt_ms": 1.350291, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "41", - "timestamp": "2025-11-27T01:23:37.831416662Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:03:19.394581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763985, - "rtt_ms": 1.763985, + "rtt_ns": 1383625, + "rtt_ms": 1.383625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.831421392Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:03:19.394687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823825, - "rtt_ms": 1.823825, + "rtt_ns": 1520292, + "rtt_ms": 1.520292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "60", - "timestamp": "2025-11-27T01:23:37.831452552Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.394877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246366, - "rtt_ms": 1.246366, + "rtt_ns": 1309416, + "rtt_ms": 1.309416, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:37.83192601Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.395458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418096, - "rtt_ms": 1.418096, + "rtt_ns": 1103417, + "rtt_ms": 1.103417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:37.83206301Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:19.395553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489246, - "rtt_ms": 1.489246, + "rtt_ns": 1293833, + "rtt_ms": 1.293833, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:37.83207153Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:19.395728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452446, - "rtt_ms": 1.452446, + "rtt_ns": 1579500, + "rtt_ms": 1.5795, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:37.83212561Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:19.395743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824774, - "rtt_ms": 1.824774, + "rtt_ns": 1272500, + "rtt_ms": 1.2725, "checkpoint": 0, "vertex_from": "34", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:37.832552138Z" + "timestamp": "2025-11-27T04:03:19.395757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309896, - "rtt_ms": 1.309896, + "rtt_ns": 1394708, + "rtt_ms": 1.394708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:37.832733018Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:19.395856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372605, - "rtt_ms": 1.372605, + "rtt_ns": 1290250, + "rtt_ms": 1.29025, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "988", - "timestamp": "2025-11-27T01:23:37.832828127Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:19.395872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227763, - "rtt_ms": 2.227763, + "rtt_ns": 1439250, + "rtt_ms": 1.43925, "checkpoint": 0, "vertex_from": "34", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:37.832921377Z" + "timestamp": "2025-11-27T04:03:19.395912-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253153, - "rtt_ms": 2.253153, + "rtt_ns": 1274958, + "rtt_ms": 1.274958, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:37.832942877Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.395963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562875, - "rtt_ms": 1.562875, + "rtt_ns": 1394583, + "rtt_ms": 1.394583, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:37.832981657Z" + "vertex_to": "988", + "timestamp": "2025-11-27T04:03:19.396274-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1589325, - "rtt_ms": 1.589325, + "operation": "add_vertex", + "rtt_ns": 1225083, + "rtt_ms": 1.225083, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:37.833517165Z" + "vertex_from": "238", + "timestamp": "2025-11-27T04:03:19.396984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514215, - "rtt_ms": 1.514215, + "rtt_ns": 2068375, + "rtt_ms": 2.068375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:37.833641015Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.397623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607255, - "rtt_ms": 1.607255, + "rtt_ns": 2477375, + "rtt_ms": 2.477375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:37.833671325Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:19.397936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610075, - "rtt_ms": 1.610075, + "rtt_ns": 2035041, + "rtt_ms": 2.035041, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:37.833683605Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:19.39795-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1590156, - "rtt_ms": 1.590156, + "operation": "add_edge", + "rtt_ns": 2114125, + "rtt_ms": 2.114125, "checkpoint": 0, - "vertex_from": "238", - "timestamp": "2025-11-27T01:23:37.834146724Z" + "vertex_from": "34", + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:19.397971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366116, - "rtt_ms": 1.366116, + "rtt_ns": 2253667, + "rtt_ms": 2.253667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:37.834195573Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:19.397983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488785, - "rtt_ms": 1.488785, + "rtt_ns": 2251959, + "rtt_ms": 2.251959, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:37.834223203Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:19.397996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332586, - "rtt_ms": 1.332586, + "rtt_ns": 1737417, + "rtt_ms": 1.737417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:37.834277123Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.398013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418436, - "rtt_ms": 1.418436, + "rtt_ns": 2059542, + "rtt_ms": 2.059542, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:37.834341453Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.398023-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207873, - "rtt_ms": 2.207873, + "rtt_ns": 2161084, + "rtt_ms": 2.161084, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:37.83519164Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.398034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923775, - "rtt_ms": 1.923775, + "rtt_ns": 1358083, + "rtt_ms": 1.358083, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:37.83544209Z" + "vertex_to": "238", + "timestamp": "2025-11-27T04:03:19.398343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815255, - "rtt_ms": 1.815255, + "rtt_ns": 1416458, + "rtt_ms": 1.416458, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:37.8354577Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.399041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862724, - "rtt_ms": 1.862724, + "rtt_ns": 1318083, + "rtt_ms": 1.318083, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:37.835548149Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:19.399353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923124, - "rtt_ms": 1.923124, + "rtt_ns": 1368917, + "rtt_ms": 1.368917, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:37.835595769Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.399366-08:00" }, { "operation": "add_edge", - "rtt_ns": 2370493, - "rtt_ms": 2.370493, + "rtt_ns": 1561125, + "rtt_ms": 1.561125, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "238", - "timestamp": "2025-11-27T01:23:37.836517597Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.399533-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393633, - "rtt_ms": 2.393633, + "rtt_ns": 1563042, + "rtt_ms": 1.563042, "checkpoint": 0, "vertex_from": "34", "vertex_to": "177", - "timestamp": "2025-11-27T01:23:37.836591456Z" + "timestamp": "2025-11-27T04:03:19.399547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2389903, - "rtt_ms": 2.389903, + "rtt_ns": 1526333, + "rtt_ms": 1.526333, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:37.836614336Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.39955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2344003, - "rtt_ms": 2.344003, + "rtt_ns": 1627042, + "rtt_ms": 1.627042, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "39", - "timestamp": "2025-11-27T01:23:37.836622156Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:19.399564-08:00" }, { "operation": "add_edge", - "rtt_ns": 2287153, - "rtt_ms": 2.287153, + "rtt_ns": 1551708, + "rtt_ms": 1.551708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:37.836630256Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:03:19.399565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582696, - "rtt_ms": 1.582696, + "rtt_ns": 1685042, + "rtt_ms": 1.685042, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:37.836782836Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.399635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457466, - "rtt_ms": 1.457466, + "rtt_ns": 1334375, + "rtt_ms": 1.334375, "checkpoint": 0, "vertex_from": "34", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:37.836901956Z" + "timestamp": "2025-11-27T04:03:19.399678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362396, - "rtt_ms": 1.362396, + "rtt_ns": 1309875, + "rtt_ms": 1.309875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.836960105Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:19.400352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622865, - "rtt_ms": 1.622865, + "rtt_ns": 1201875, + "rtt_ms": 1.201875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:37.837082215Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:19.400749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538536, - "rtt_ms": 1.538536, + "rtt_ns": 1558708, + "rtt_ms": 1.558708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.837087825Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.400925-08:00" }, { "operation": "add_edge", - "rtt_ns": 933858, - "rtt_ms": 0.933858, + "rtt_ns": 1590042, + "rtt_ms": 1.590042, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:37.837549154Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.400944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009678, - "rtt_ms": 1.009678, + "rtt_ns": 1455500, + "rtt_ms": 1.4555, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:37.837602524Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.400989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043267, - "rtt_ms": 1.043267, + "rtt_ns": 1337375, + "rtt_ms": 1.337375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:37.837668513Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:19.401016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054617, - "rtt_ms": 1.054617, + "rtt_ns": 1500708, + "rtt_ms": 1.500708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:37.837686333Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:19.401052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243866, - "rtt_ms": 1.243866, + "rtt_ns": 1420833, + "rtt_ms": 1.420833, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:37.837762573Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:03:19.401057-08:00" }, { "operation": "add_edge", - "rtt_ns": 933867, - "rtt_ms": 0.933867, + "rtt_ns": 1508583, + "rtt_ms": 1.508583, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:37.837837173Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:19.401073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080817, - "rtt_ms": 1.080817, + "rtt_ns": 1719375, + "rtt_ms": 1.719375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "173", - "timestamp": "2025-11-27T01:23:37.837865053Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:19.401285-08:00" }, { "operation": "add_edge", - "rtt_ns": 976608, - "rtt_ms": 0.976608, + "rtt_ns": 1396625, + "rtt_ms": 1.396625, "checkpoint": 0, "vertex_from": "34", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:37.837938273Z" + "timestamp": "2025-11-27T04:03:19.40175-08:00" }, { "operation": "add_edge", - "rtt_ns": 917057, - "rtt_ms": 0.917057, + "rtt_ns": 1393291, + "rtt_ms": 1.393291, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "287", - "timestamp": "2025-11-27T01:23:37.838007812Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.402146-08:00" }, { "operation": "add_edge", - "rtt_ns": 930137, - "rtt_ms": 0.930137, + "rtt_ns": 1370375, + "rtt_ms": 1.370375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:37.838014192Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.402387-08:00" }, { "operation": "add_edge", - "rtt_ns": 663038, - "rtt_ms": 0.663038, + "rtt_ns": 1230750, + "rtt_ms": 1.23075, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "451", - "timestamp": "2025-11-27T01:23:37.838266962Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:19.402517-08:00" }, { "operation": "add_edge", - "rtt_ns": 737208, - "rtt_ms": 0.737208, + "rtt_ns": 1588292, + "rtt_ms": 1.588292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "628", - "timestamp": "2025-11-27T01:23:37.838288532Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:19.402646-08:00" }, { "operation": "add_edge", - "rtt_ns": 718388, - "rtt_ms": 0.718388, + "rtt_ns": 1738500, + "rtt_ms": 1.7385, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:37.838407081Z" + "vertex_to": "287", + "timestamp": "2025-11-27T04:03:19.402665-08:00" }, { "operation": "add_edge", - "rtt_ns": 668348, - "rtt_ms": 0.668348, + "rtt_ns": 1731291, + "rtt_ms": 1.731291, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:37.838432681Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:19.402786-08:00" }, { "operation": "add_edge", - "rtt_ns": 853908, - "rtt_ms": 0.853908, + "rtt_ns": 1777792, + "rtt_ms": 1.777792, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.838524551Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:19.402852-08:00" }, { "operation": "add_edge", - "rtt_ns": 781728, - "rtt_ms": 0.781728, + "rtt_ns": 1985250, + "rtt_ms": 1.98525, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:37.838620781Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:03:19.402931-08:00" }, { "operation": "add_edge", - "rtt_ns": 786128, - "rtt_ms": 0.786128, + "rtt_ns": 1323084, + "rtt_ms": 1.323084, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:37.838652441Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:03:19.403074-08:00" }, { "operation": "add_edge", - "rtt_ns": 749108, - "rtt_ms": 0.749108, + "rtt_ns": 2097709, + "rtt_ms": 2.097709, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "355", - "timestamp": "2025-11-27T01:23:37.838688631Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:03:19.403088-08:00" }, { "operation": "add_edge", - "rtt_ns": 685899, - "rtt_ms": 0.685899, + "rtt_ns": 1618416, + "rtt_ms": 1.618416, "checkpoint": 0, "vertex_from": "34", "vertex_to": "389", - "timestamp": "2025-11-27T01:23:37.838694891Z" + "timestamp": "2025-11-27T04:03:19.403767-08:00" }, { "operation": "add_edge", - "rtt_ns": 712338, - "rtt_ms": 0.712338, + "rtt_ns": 1437750, + "rtt_ms": 1.43775, "checkpoint": 0, "vertex_from": "34", "vertex_to": "837", - "timestamp": "2025-11-27T01:23:37.83872832Z" + "timestamp": "2025-11-27T04:03:19.403826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168876, - "rtt_ms": 1.168876, + "rtt_ns": 1324875, + "rtt_ms": 1.324875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:37.839459028Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.403991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025467, - "rtt_ms": 1.025467, + "rtt_ns": 1513375, + "rtt_ms": 1.513375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:37.839459698Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:19.404031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192046, - "rtt_ms": 1.192046, + "rtt_ns": 1441875, + "rtt_ms": 1.441875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:37.839460608Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:19.404092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128547, - "rtt_ms": 1.128547, + "rtt_ns": 1367875, + "rtt_ms": 1.367875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:37.839537638Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:19.404154-08:00" }, { "operation": "add_edge", - "rtt_ns": 997607, - "rtt_ms": 0.997607, + "rtt_ns": 1563042, + "rtt_ms": 1.563042, "checkpoint": 0, "vertex_from": "34", "vertex_to": "393", - "timestamp": "2025-11-27T01:23:37.839620628Z" + "timestamp": "2025-11-27T04:03:19.404495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577236, - "rtt_ms": 1.577236, + "rtt_ns": 1655708, + "rtt_ms": 1.655708, "checkpoint": 0, "vertex_from": "34", "vertex_to": "42", - "timestamp": "2025-11-27T01:23:37.840103017Z" + "timestamp": "2025-11-27T04:03:19.40451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497096, - "rtt_ms": 1.497096, + "rtt_ns": 1434291, + "rtt_ms": 1.434291, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:37.840227316Z" + "vertex_to": "435", + "timestamp": "2025-11-27T04:03:19.404523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612925, - "rtt_ms": 1.612925, + "rtt_ns": 1604833, + "rtt_ms": 1.604833, "checkpoint": 0, "vertex_from": "34", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:37.840267146Z" + "timestamp": "2025-11-27T04:03:19.40468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934054, - "rtt_ms": 1.934054, + "rtt_ns": 1427167, + "rtt_ms": 1.427167, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:37.840630995Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:03:19.405254-08:00" }, { "operation": "add_edge", - "rtt_ns": 2348843, - "rtt_ms": 2.348843, + "rtt_ns": 1818625, + "rtt_ms": 1.818625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "435", - "timestamp": "2025-11-27T01:23:37.841039364Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:19.405587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934105, - "rtt_ms": 1.934105, + "rtt_ns": 1880833, + "rtt_ms": 1.880833, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:37.841396063Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.405874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994654, - "rtt_ms": 1.994654, + "rtt_ns": 1925750, + "rtt_ms": 1.92575, "checkpoint": 0, "vertex_from": "34", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:37.841455432Z" + "timestamp": "2025-11-27T04:03:19.405958-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101104, - "rtt_ms": 2.101104, + "rtt_ns": 1533333, + "rtt_ms": 1.533333, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.841562312Z" + "vertex_from": "35", + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.406031-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047004, - "rtt_ms": 2.047004, + "rtt_ns": 1591917, + "rtt_ms": 1.591917, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:37.841586492Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.406103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071397, - "rtt_ms": 1.071397, + "rtt_ns": 1953375, + "rtt_ms": 1.953375, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:37.841703772Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.406108-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131334, - "rtt_ms": 2.131334, + "rtt_ns": 1740208, + "rtt_ms": 1.740208, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:37.841755812Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.406264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879334, - "rtt_ms": 1.879334, + "rtt_ns": 2228750, + "rtt_ms": 2.22875, + "checkpoint": 0, + "vertex_from": "34", + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:19.406322-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1730625, + "rtt_ms": 1.730625, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.841983731Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.406411-08:00" }, { "operation": "add_edge", - "rtt_ns": 2457543, - "rtt_ms": 2.457543, + "rtt_ns": 1474750, + "rtt_ms": 1.47475, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:37.842686219Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.407065-08:00" }, { "operation": "add_edge", - "rtt_ns": 2577202, - "rtt_ms": 2.577202, + "rtt_ns": 1861833, + "rtt_ms": 1.861833, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:37.842845128Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.407117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561105, - "rtt_ms": 1.561105, + "rtt_ns": 1179041, + "rtt_ms": 1.179041, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:37.842959398Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:03:19.407284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551236, - "rtt_ms": 1.551236, + "rtt_ns": 1376416, + "rtt_ms": 1.376416, "checkpoint": 0, "vertex_from": "35", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:37.843007948Z" + "timestamp": "2025-11-27T04:03:19.407337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972534, - "rtt_ms": 1.972534, + "rtt_ns": 1462541, + "rtt_ms": 1.462541, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.843013148Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.407337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524096, - "rtt_ms": 1.524096, + "rtt_ns": 1340833, + "rtt_ms": 1.340833, "checkpoint": 0, "vertex_from": "35", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:37.843088118Z" + "timestamp": "2025-11-27T04:03:19.407373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891394, - "rtt_ms": 1.891394, + "rtt_ns": 1184459, + "rtt_ms": 1.184459, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "36", - "timestamp": "2025-11-27T01:23:37.843479506Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.407597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910744, - "rtt_ms": 1.910744, + "rtt_ns": 1286709, + "rtt_ms": 1.286709, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:37.843615426Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.40761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667635, - "rtt_ms": 1.667635, + "rtt_ns": 1632750, + "rtt_ms": 1.63275, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:37.843652746Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.407742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941644, - "rtt_ms": 1.941644, + "rtt_ns": 1562542, + "rtt_ms": 1.562542, "checkpoint": 0, "vertex_from": "35", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.843700616Z" + "timestamp": "2025-11-27T04:03:19.407827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568105, - "rtt_ms": 1.568105, + "rtt_ns": 1337500, + "rtt_ms": 1.3375, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.844256714Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.408456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490856, - "rtt_ms": 1.490856, + "rtt_ns": 1209333, + "rtt_ms": 1.209333, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.844337534Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.408494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395746, - "rtt_ms": 1.395746, + "rtt_ns": 1635666, + "rtt_ms": 1.635666, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.844356904Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.408702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037734, - "rtt_ms": 2.037734, + "rtt_ns": 1341208, + "rtt_ms": 1.341208, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:37.845127362Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.408715-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160893, - "rtt_ms": 2.160893, + "rtt_ns": 1389083, + "rtt_ms": 1.389083, "checkpoint": 0, "vertex_from": "35", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.845175321Z" + "timestamp": "2025-11-27T04:03:19.408727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697935, - "rtt_ms": 1.697935, + "rtt_ns": 1397166, + "rtt_ms": 1.397166, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:37.845179901Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:19.408736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2183343, - "rtt_ms": 2.183343, + "rtt_ns": 1193834, + "rtt_ms": 1.193834, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:37.845192651Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.408791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492915, - "rtt_ms": 1.492915, + "rtt_ns": 1199292, + "rtt_ms": 1.199292, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.845194821Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.40881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567275, - "rtt_ms": 1.567275, + "rtt_ns": 1160375, + "rtt_ms": 1.160375, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.845221581Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.408903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652555, - "rtt_ms": 1.652555, + "rtt_ns": 1327750, + "rtt_ms": 1.32775, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.845269541Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:19.409155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524626, - "rtt_ms": 1.524626, + "rtt_ns": 1123084, + "rtt_ms": 1.123084, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:37.84578325Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.409859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087636, - "rtt_ms": 1.087636, + "rtt_ns": 1323208, + "rtt_ms": 1.323208, "checkpoint": 0, "vertex_from": "35", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:37.846217118Z" + "timestamp": "2025-11-27T04:03:19.410026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929974, - "rtt_ms": 1.929974, + "rtt_ns": 1481750, + "rtt_ms": 1.48175, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:37.846268488Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.410293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070097, - "rtt_ms": 1.070097, + "rtt_ns": 1404416, + "rtt_ms": 1.404416, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:37.846293678Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:03:19.410308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941144, - "rtt_ms": 1.941144, + "rtt_ns": 1825375, + "rtt_ms": 1.825375, "checkpoint": 0, "vertex_from": "35", "vertex_to": "305", - "timestamp": "2025-11-27T01:23:37.846299118Z" + "timestamp": "2025-11-27T04:03:19.410323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190207, - "rtt_ms": 1.190207, + "rtt_ns": 1544791, + "rtt_ms": 1.544791, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "405", - "timestamp": "2025-11-27T01:23:37.846371748Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:03:19.410337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123367, - "rtt_ms": 1.123367, + "rtt_ns": 1891333, + "rtt_ms": 1.891333, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "826", - "timestamp": "2025-11-27T01:23:37.846394298Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:19.410348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222147, - "rtt_ms": 1.222147, + "rtt_ns": 1634334, + "rtt_ms": 1.634334, "checkpoint": 0, "vertex_from": "35", "vertex_to": "945", - "timestamp": "2025-11-27T01:23:37.846398798Z" + "timestamp": "2025-11-27T04:03:19.41035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265707, - "rtt_ms": 1.265707, + "rtt_ns": 1203916, + "rtt_ms": 1.203916, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "844", - "timestamp": "2025-11-27T01:23:37.846462228Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.410361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672685, - "rtt_ms": 1.672685, + "rtt_ns": 1676500, + "rtt_ms": 1.6765, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:37.846866386Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:03:19.410405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208756, - "rtt_ms": 1.208756, + "rtt_ns": 1517708, + "rtt_ms": 1.517708, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.846992766Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:19.411378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572945, - "rtt_ms": 1.572945, + "rtt_ns": 1219166, + "rtt_ms": 1.219166, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:37.847842613Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.411581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445475, - "rtt_ms": 1.445475, + "rtt_ns": 1264458, + "rtt_ms": 1.264458, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:37.847846363Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:19.411602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484525, - "rtt_ms": 1.484525, + "rtt_ns": 1308959, + "rtt_ms": 1.308959, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:37.847859663Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:19.411618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574065, - "rtt_ms": 1.574065, + "rtt_ns": 1291750, + "rtt_ms": 1.29175, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:37.847876563Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:19.411642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483825, - "rtt_ms": 1.483825, + "rtt_ns": 1685292, + "rtt_ms": 1.685292, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:37.847879573Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:19.411713-08:00" }, { "operation": "add_edge", - "rtt_ns": 888547, - "rtt_ms": 0.888547, + "rtt_ns": 1438125, + "rtt_ms": 1.438125, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.847882193Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.411732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668915, - "rtt_ms": 1.668915, + "rtt_ns": 1625375, + "rtt_ms": 1.625375, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:37.847887473Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.411949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600885, - "rtt_ms": 1.600885, + "rtt_ns": 1594042, + "rtt_ms": 1.594042, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.847895863Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.411999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039847, - "rtt_ms": 1.039847, + "rtt_ns": 1702500, + "rtt_ms": 1.7025, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:37.847907733Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.412051-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356283, - "rtt_ms": 2.356283, + "rtt_ns": 1541041, + "rtt_ms": 1.541041, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:37.848820531Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.41292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439236, - "rtt_ms": 1.439236, + "rtt_ns": 1356791, + "rtt_ms": 1.356791, "checkpoint": 0, "vertex_from": "35", "vertex_to": "344", - "timestamp": "2025-11-27T01:23:37.849287409Z" + "timestamp": "2025-11-27T04:03:19.412939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465826, - "rtt_ms": 1.465826, + "rtt_ns": 1351459, + "rtt_ms": 1.351459, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:37.849310969Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.412954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553616, - "rtt_ms": 1.553616, + "rtt_ns": 1239834, + "rtt_ms": 1.239834, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:37.849451629Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:19.412973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657236, - "rtt_ms": 1.657236, + "rtt_ns": 1271458, + "rtt_ms": 1.271458, "checkpoint": 0, "vertex_from": "35", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:37.849540769Z" + "timestamp": "2025-11-27T04:03:19.412987-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306264, - "rtt_ms": 2.306264, + "rtt_ns": 1591583, + "rtt_ms": 1.591583, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:37.850167237Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:19.413211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2397184, - "rtt_ms": 2.397184, + "rtt_ns": 1599959, + "rtt_ms": 1.599959, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:37.850275677Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:19.413243-08:00" }, { "operation": "add_edge", - "rtt_ns": 2419014, - "rtt_ms": 2.419014, + "rtt_ns": 1407583, + "rtt_ms": 1.407583, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:37.850299517Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:19.413359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2402784, - "rtt_ms": 2.402784, + "rtt_ns": 1347208, + "rtt_ms": 1.347208, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:37.850315457Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:19.413399-08:00" }, { "operation": "add_edge", - "rtt_ns": 2505493, - "rtt_ms": 2.505493, + "rtt_ns": 1694000, + "rtt_ms": 1.694, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:37.850394476Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.413695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733145, - "rtt_ms": 1.733145, + "rtt_ns": 973584, + "rtt_ms": 0.973584, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:37.850556516Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:03:19.414219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090347, - "rtt_ms": 1.090347, + "rtt_ns": 1520584, + "rtt_ms": 1.520584, "checkpoint": 0, "vertex_from": "35", "vertex_to": "337", - "timestamp": "2025-11-27T01:23:37.850632416Z" + "timestamp": "2025-11-27T04:03:19.414494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372967, - "rtt_ms": 1.372967, + "rtt_ns": 2044042, + "rtt_ms": 2.044042, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:37.850661936Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:19.414999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281416, - "rtt_ms": 1.281416, + "rtt_ns": 2084583, + "rtt_ms": 2.084583, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:37.850734745Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.415024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439416, - "rtt_ms": 1.439416, + "rtt_ns": 1679791, + "rtt_ms": 1.679791, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.850752185Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:19.41504-08:00" }, { "operation": "add_edge", - "rtt_ns": 840998, - "rtt_ms": 0.840998, + "rtt_ns": 2068500, + "rtt_ms": 2.0685, "checkpoint": 0, "vertex_from": "35", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:37.851010085Z" + "timestamp": "2025-11-27T04:03:19.415056-08:00" }, { "operation": "add_edge", - "rtt_ns": 750258, - "rtt_ms": 0.750258, + "rtt_ns": 1860875, + "rtt_ms": 1.860875, "checkpoint": 0, "vertex_from": "35", "vertex_to": "616", - "timestamp": "2025-11-27T01:23:37.851027365Z" + "timestamp": "2025-11-27T04:03:19.415072-08:00" }, { "operation": "add_edge", - "rtt_ns": 746337, - "rtt_ms": 0.746337, + "rtt_ns": 2370792, + "rtt_ms": 2.370792, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:37.851063324Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.415292-08:00" }, { "operation": "add_edge", - "rtt_ns": 809097, - "rtt_ms": 0.809097, + "rtt_ns": 1916875, + "rtt_ms": 1.916875, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:37.851111384Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.415615-08:00" }, { "operation": "add_edge", - "rtt_ns": 757698, - "rtt_ms": 0.757698, + "rtt_ns": 2397125, + "rtt_ms": 2.397125, "checkpoint": 0, "vertex_from": "35", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:37.851153824Z" + "timestamp": "2025-11-27T04:03:19.415799-08:00" }, { "operation": "add_edge", - "rtt_ns": 659918, - "rtt_ms": 0.659918, + "rtt_ns": 1756959, + "rtt_ms": 1.756959, "checkpoint": 0, "vertex_from": "35", "vertex_to": "83", - "timestamp": "2025-11-27T01:23:37.851294224Z" - }, - { - "operation": "add_edge", - "rtt_ns": 772818, - "rtt_ms": 0.772818, - "checkpoint": 0, - "vertex_from": "35", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:37.851330764Z" + "timestamp": "2025-11-27T04:03:19.415977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334206, - "rtt_ms": 1.334206, + "rtt_ns": 963208, + "rtt_ms": 0.963208, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.852091401Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:19.416256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959454, - "rtt_ms": 1.959454, + "rtt_ns": 1862208, + "rtt_ms": 1.862208, "checkpoint": 0, "vertex_from": "36", "vertex_to": "453", - "timestamp": "2025-11-27T01:23:37.85262222Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1916995, - "rtt_ms": 1.916995, - "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:37.85265321Z" + "timestamp": "2025-11-27T04:03:19.416357-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088713, - "rtt_ms": 2.088713, + "rtt_ns": 1467958, + "rtt_ms": 1.467958, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:37.853101058Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.416541-08:00" }, { "operation": "add_edge", - "rtt_ns": 2111113, - "rtt_ms": 2.111113, + "rtt_ns": 1554584, + "rtt_ms": 1.554584, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "472", - "timestamp": "2025-11-27T01:23:37.853140188Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.416595-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007194, - "rtt_ms": 2.007194, + "rtt_ns": 1612750, + "rtt_ms": 1.61275, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.853302908Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:19.416613-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172284, - "rtt_ms": 2.172284, + "rtt_ns": 1606917, + "rtt_ms": 1.606917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:37.853327268Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.416632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267087, - "rtt_ms": 1.267087, + "rtt_ns": 1289125, + "rtt_ms": 1.289125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:37.853360328Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.416905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326774, - "rtt_ms": 2.326774, + "rtt_ns": 1926042, + "rtt_ms": 1.926042, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.853391018Z" + "vertex_to": "472", + "timestamp": "2025-11-27T04:03:19.416983-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100793, - "rtt_ms": 2.100793, + "rtt_ns": 1069583, + "rtt_ms": 1.069583, "checkpoint": 0, "vertex_from": "36", "vertex_to": "730", - "timestamp": "2025-11-27T01:23:37.853434067Z" + "timestamp": "2025-11-27T04:03:19.417048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2354803, - "rtt_ms": 2.354803, + "rtt_ns": 1245792, + "rtt_ms": 1.245792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:37.853467257Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.417047-08:00" }, { "operation": "add_edge", - "rtt_ns": 862687, - "rtt_ms": 0.862687, + "rtt_ns": 1206292, + "rtt_ms": 1.206292, "checkpoint": 0, "vertex_from": "36", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.853486187Z" + "timestamp": "2025-11-27T04:03:19.417564-08:00" }, { "operation": "add_edge", - "rtt_ns": 842527, - "rtt_ms": 0.842527, + "rtt_ns": 1331500, + "rtt_ms": 1.3315, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:37.853498757Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.417588-08:00" }, { "operation": "add_edge", - "rtt_ns": 744218, - "rtt_ms": 0.744218, + "rtt_ns": 1415750, + "rtt_ms": 1.41575, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:37.853885636Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.417957-08:00" }, { "operation": "add_edge", - "rtt_ns": 802958, - "rtt_ms": 0.802958, + "rtt_ns": 1447083, + "rtt_ms": 1.447083, "checkpoint": 0, "vertex_from": "36", "vertex_to": "356", - "timestamp": "2025-11-27T01:23:37.853905946Z" + "timestamp": "2025-11-27T04:03:19.418043-08:00" }, { "operation": "add_edge", - "rtt_ns": 659258, - "rtt_ms": 0.659258, + "rtt_ns": 1530459, + "rtt_ms": 1.530459, "checkpoint": 0, "vertex_from": "36", "vertex_to": "278", - "timestamp": "2025-11-27T01:23:37.853963416Z" + "timestamp": "2025-11-27T04:03:19.418163-08:00" }, { "operation": "add_edge", - "rtt_ns": 656048, - "rtt_ms": 0.656048, + "rtt_ns": 1269084, + "rtt_ms": 1.269084, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:37.854048416Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:19.418319-08:00" }, { "operation": "add_edge", - "rtt_ns": 704298, - "rtt_ms": 0.704298, + "rtt_ns": 1403625, + "rtt_ms": 1.403625, "checkpoint": 0, "vertex_from": "36", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:37.854066206Z" + "timestamp": "2025-11-27T04:03:19.418388-08:00" }, { "operation": "add_edge", - "rtt_ns": 749178, - "rtt_ms": 0.749178, + "rtt_ns": 1527792, + "rtt_ms": 1.527792, "checkpoint": 0, "vertex_from": "36", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.854077956Z" + "timestamp": "2025-11-27T04:03:19.418436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061277, - "rtt_ms": 1.061277, + "rtt_ns": 1842541, + "rtt_ms": 1.842541, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:37.854529444Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.418457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087637, - "rtt_ms": 1.087637, + "rtt_ns": 1421833, + "rtt_ms": 1.421833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:37.854576164Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.418471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328986, - "rtt_ms": 1.328986, + "rtt_ns": 1213250, + "rtt_ms": 1.21325, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:37.854764103Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.418778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270956, - "rtt_ms": 1.270956, + "rtt_ns": 1249208, + "rtt_ms": 1.249208, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:37.854772983Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:19.418838-08:00" }, { "operation": "add_edge", - "rtt_ns": 937857, - "rtt_ms": 0.937857, + "rtt_ns": 1430500, + "rtt_ms": 1.4305, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:37.854903553Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.419476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036027, - "rtt_ms": 1.036027, + "rtt_ns": 1554333, + "rtt_ms": 1.554333, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.854943363Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:19.419512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552345, - "rtt_ms": 1.552345, + "rtt_ns": 1576375, + "rtt_ms": 1.576375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:37.855439231Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.419741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465905, - "rtt_ms": 1.465905, + "rtt_ns": 1365334, + "rtt_ms": 1.365334, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:37.855544971Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.419802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492205, - "rtt_ms": 1.492205, + "rtt_ns": 1513833, + "rtt_ms": 1.513833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.855560181Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:19.419835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618955, - "rtt_ms": 1.618955, + "rtt_ns": 1398083, + "rtt_ms": 1.398083, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:37.855668741Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.419856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091547, - "rtt_ms": 1.091547, + "rtt_ns": 1277875, + "rtt_ms": 1.277875, "checkpoint": 0, "vertex_from": "36", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.855669101Z" + "timestamp": "2025-11-27T04:03:19.420057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132677, - "rtt_ms": 1.132677, + "rtt_ns": 1617250, + "rtt_ms": 1.61725, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.85590767Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:19.420089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531436, - "rtt_ms": 1.531436, + "rtt_ns": 1711417, + "rtt_ms": 1.711417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:37.85606331Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:19.420101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329626, - "rtt_ms": 1.329626, + "rtt_ns": 1589750, + "rtt_ms": 1.58975, "checkpoint": 0, "vertex_from": "36", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:37.856094969Z" + "timestamp": "2025-11-27T04:03:19.420429-08:00" }, { "operation": "add_edge", - "rtt_ns": 2403153, - "rtt_ms": 2.403153, + "rtt_ns": 1211250, + "rtt_ms": 1.21125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:37.857309766Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:19.420954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749365, - "rtt_ms": 1.749365, + "rtt_ns": 1485958, + "rtt_ms": 1.485958, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:37.857310726Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:19.421002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2435933, - "rtt_ms": 2.435933, + "rtt_ns": 1603750, + "rtt_ms": 1.60375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:37.857380586Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.421082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752955, - "rtt_ms": 1.752955, + "rtt_ns": 1329667, + "rtt_ms": 1.329667, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:37.857423266Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.421134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991205, - "rtt_ms": 1.991205, + "rtt_ns": 1385541, + "rtt_ms": 1.385541, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:37.857431266Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:19.421243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905184, - "rtt_ms": 1.905184, + "rtt_ns": 1157083, + "rtt_ms": 1.157083, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:37.857576265Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.421259-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029694, - "rtt_ms": 2.029694, + "rtt_ns": 1245667, + "rtt_ms": 1.245667, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:37.857576385Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:19.421304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691005, - "rtt_ms": 1.691005, + "rtt_ns": 1602458, + "rtt_ms": 1.602458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:37.857600165Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.421439-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2247013, - "rtt_ms": 2.247013, + "rtt_ns": 1055125, + "rtt_ms": 1.055125, "checkpoint": 0, "vertex_from": "633", - "timestamp": "2025-11-27T01:23:37.858314943Z" + "timestamp": "2025-11-27T04:03:19.421485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379293, - "rtt_ms": 2.379293, + "rtt_ns": 1498708, + "rtt_ms": 1.498708, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:37.858475522Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.42159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313696, - "rtt_ms": 1.313696, + "rtt_ns": 1380667, + "rtt_ms": 1.380667, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "213", - "timestamp": "2025-11-27T01:23:37.858737822Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:19.422515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474565, - "rtt_ms": 1.474565, + "rtt_ns": 1584416, + "rtt_ms": 1.584416, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:37.858786561Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:19.422539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432355, - "rtt_ms": 1.432355, + "rtt_ns": 1710917, + "rtt_ms": 1.710917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:37.858814831Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.422715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341646, - "rtt_ms": 1.341646, + "rtt_ns": 1473875, + "rtt_ms": 1.473875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:37.858920641Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.422733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515455, - "rtt_ms": 1.515455, + "rtt_ns": 1651875, + "rtt_ms": 1.651875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.858948181Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:19.422735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691585, - "rtt_ms": 1.691585, + "rtt_ns": 1501167, + "rtt_ms": 1.501167, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:37.859004101Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:03:19.422745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461886, - "rtt_ms": 1.461886, + "rtt_ns": 1449792, + "rtt_ms": 1.449792, "checkpoint": 0, "vertex_from": "36", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:37.859040071Z" + "timestamp": "2025-11-27T04:03:19.422754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456276, - "rtt_ms": 1.456276, + "rtt_ns": 1165542, + "rtt_ms": 1.165542, "checkpoint": 0, "vertex_from": "36", "vertex_to": "97", - "timestamp": "2025-11-27T01:23:37.859057791Z" + "timestamp": "2025-11-27T04:03:19.422757-08:00" }, { "operation": "add_edge", - "rtt_ns": 955117, - "rtt_ms": 0.955117, + "rtt_ns": 1276000, + "rtt_ms": 1.276, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:37.859694359Z" + "vertex_to": "633", + "timestamp": "2025-11-27T04:03:19.422762-08:00" }, { "operation": "add_edge", - "rtt_ns": 980977, - "rtt_ms": 0.980977, + "rtt_ns": 1408625, + "rtt_ms": 1.408625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:37.859796928Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.42285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435756, - "rtt_ms": 1.435756, + "rtt_ns": 1285958, + "rtt_ms": 1.285958, "checkpoint": 0, "vertex_from": "36", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:37.859915088Z" + "timestamp": "2025-11-27T04:03:19.423802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656475, - "rtt_ms": 1.656475, + "rtt_ns": 1285500, + "rtt_ms": 1.2855, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "633", - "timestamp": "2025-11-27T01:23:37.859971788Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.423826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728585, - "rtt_ms": 1.728585, + "rtt_ns": 1919292, + "rtt_ms": 1.919292, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:37.860516256Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.424656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652095, - "rtt_ms": 1.652095, + "rtt_ns": 1922166, + "rtt_ms": 1.922166, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:37.860658036Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:19.42468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598725, - "rtt_ms": 1.598725, + "rtt_ns": 1970667, + "rtt_ms": 1.970667, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "101", - "timestamp": "2025-11-27T01:23:37.860658696Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:19.424687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745875, - "rtt_ms": 1.745875, + "rtt_ns": 1958792, + "rtt_ms": 1.958792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:37.860699736Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:03:19.424693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803485, - "rtt_ms": 1.803485, + "rtt_ns": 1950209, + "rtt_ms": 1.950209, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:37.860725916Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.424696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841504, - "rtt_ms": 1.841504, + "rtt_ns": 1950250, + "rtt_ms": 1.95025, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:37.860883575Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:19.424705-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1291097, - "rtt_ms": 1.291097, + "operation": "add_edge", + "rtt_ns": 1951291, + "rtt_ms": 1.951291, "checkpoint": 0, - "vertex_from": "1009", - "timestamp": "2025-11-27T01:23:37.861091795Z" + "vertex_from": "36", + "vertex_to": "101", + "timestamp": "2025-11-27T04:03:19.424714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427726, - "rtt_ms": 1.427726, + "rtt_ns": 1947458, + "rtt_ms": 1.947458, "checkpoint": 0, "vertex_from": "36", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:37.861123845Z" + "timestamp": "2025-11-27T04:03:19.424798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268577, - "rtt_ms": 1.268577, + "rtt_ns": 1445625, + "rtt_ms": 1.445625, "checkpoint": 0, "vertex_from": "36", "vertex_to": "37", - "timestamp": "2025-11-27T01:23:37.861185455Z" + "timestamp": "2025-11-27T04:03:19.425272-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1255626, - "rtt_ms": 1.255626, + "operation": "add_vertex", + "rtt_ns": 1734791, + "rtt_ms": 1.734791, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:37.861228994Z" + "vertex_from": "1009", + "timestamp": "2025-11-27T04:03:19.425538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514096, - "rtt_ms": 1.514096, + "rtt_ns": 1448042, + "rtt_ms": 1.448042, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.862174112Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.426129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657486, - "rtt_ms": 1.657486, + "rtt_ns": 1710417, + "rtt_ms": 1.710417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:37.862175932Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.426408-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026074, - "rtt_ms": 2.026074, + "rtt_ns": 1710625, + "rtt_ms": 1.710625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:37.86268662Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:19.426425-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006504, - "rtt_ms": 2.006504, + "rtt_ns": 1771458, + "rtt_ms": 1.771458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:37.86273549Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:19.426428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067494, - "rtt_ms": 2.067494, + "rtt_ns": 1744834, + "rtt_ms": 1.744834, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:37.8627691Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:19.426441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948834, - "rtt_ms": 1.948834, + "rtt_ns": 1739084, + "rtt_ms": 1.739084, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:37.863135549Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:19.426445-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079334, - "rtt_ms": 2.079334, + "rtt_ns": 1651750, + "rtt_ms": 1.65175, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "1009", - "timestamp": "2025-11-27T01:23:37.863171559Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.42645-08:00" }, { "operation": "add_edge", - "rtt_ns": 2348414, - "rtt_ms": 2.348414, + "rtt_ns": 1772041, + "rtt_ms": 1.772041, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:37.863233409Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.426459-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033715, - "rtt_ms": 2.033715, + "rtt_ns": 1083750, + "rtt_ms": 1.08375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.863264009Z" + "vertex_to": "1009", + "timestamp": "2025-11-27T04:03:19.426622-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155054, - "rtt_ms": 2.155054, + "rtt_ns": 1528416, + "rtt_ms": 1.528416, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.863285789Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.426804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209926, - "rtt_ms": 1.209926, + "rtt_ns": 1423375, + "rtt_ms": 1.423375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:37.863387238Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.427553-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1143334, + "rtt_ms": 1.143334, + "checkpoint": 0, + "vertex_from": "127", + "timestamp": "2025-11-27T04:03:19.427585-08:00" }, { "operation": "add_edge", - "rtt_ns": 753608, - "rtt_ms": 0.753608, + "rtt_ns": 1155708, + "rtt_ms": 1.155708, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.863442498Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.427616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279196, - "rtt_ms": 1.279196, + "rtt_ns": 1340916, + "rtt_ms": 1.340916, "checkpoint": 0, "vertex_from": "36", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:37.863454698Z" + "timestamp": "2025-11-27T04:03:19.427749-08:00" }, { "operation": "add_edge", - "rtt_ns": 749368, - "rtt_ms": 0.749368, + "rtt_ns": 1554791, + "rtt_ms": 1.554791, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:37.863522088Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.427985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023497, - "rtt_ms": 1.023497, + "rtt_ns": 1553792, + "rtt_ms": 1.553792, "checkpoint": 0, "vertex_from": "36", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:37.864160496Z" + "timestamp": "2025-11-27T04:03:19.428005-08:00" }, { "operation": "add_edge", - "rtt_ns": 980307, - "rtt_ms": 0.980307, + "rtt_ns": 1595833, + "rtt_ms": 1.595833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.864245056Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1545266, - "rtt_ms": 1.545266, - "checkpoint": 0, - "vertex_from": "127", - "timestamp": "2025-11-27T01:23:37.864286046Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:19.428021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103797, - "rtt_ms": 1.103797, + "rtt_ns": 1421542, + "rtt_ms": 1.421542, "checkpoint": 0, "vertex_from": "36", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:37.864338476Z" + "timestamp": "2025-11-27T04:03:19.428045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191577, - "rtt_ms": 1.191577, + "rtt_ns": 1693541, + "rtt_ms": 1.693541, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:37.864364276Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:19.428139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234346, - "rtt_ms": 1.234346, + "rtt_ns": 1382416, + "rtt_ms": 1.382416, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:37.864521375Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.428188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599056, - "rtt_ms": 1.599056, + "rtt_ns": 1456042, + "rtt_ms": 1.456042, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:37.865042784Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:19.429074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687165, - "rtt_ms": 1.687165, + "rtt_ns": 1344666, + "rtt_ms": 1.344666, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:37.865075743Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:19.429095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666355, - "rtt_ms": 1.666355, + "rtt_ns": 1628084, + "rtt_ms": 1.628084, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:37.865189573Z" + "vertex_to": "127", + "timestamp": "2025-11-27T04:03:19.429214-08:00" }, { "operation": "add_edge", - "rtt_ns": 972007, - "rtt_ms": 0.972007, + "rtt_ns": 1171709, + "rtt_ms": 1.171709, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:37.865218973Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:19.429312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771115, - "rtt_ms": 1.771115, + "rtt_ns": 1773417, + "rtt_ms": 1.773417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:37.865228853Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:19.429329-08:00" }, { "operation": "add_edge", - "rtt_ns": 925217, - "rtt_ms": 0.925217, + "rtt_ns": 1301833, + "rtt_ms": 1.301833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:37.865265043Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:19.429348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104117, - "rtt_ms": 1.104117, + "rtt_ns": 1536667, + "rtt_ms": 1.536667, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:37.865265813Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.429542-08:00" }, { "operation": "add_edge", - "rtt_ns": 985077, - "rtt_ms": 0.985077, + "rtt_ns": 1542666, + "rtt_ms": 1.542666, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "127", - "timestamp": "2025-11-27T01:23:37.865271453Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:19.429565-08:00" }, { "operation": "add_edge", - "rtt_ns": 944787, - "rtt_ms": 0.944787, + "rtt_ns": 1684375, + "rtt_ms": 1.684375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:37.865468942Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.42967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492075, - "rtt_ms": 1.492075, + "rtt_ns": 1662542, + "rtt_ms": 1.662542, "checkpoint": 0, "vertex_from": "36", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:37.865857871Z" + "timestamp": "2025-11-27T04:03:19.429852-08:00" }, { "operation": "add_edge", - "rtt_ns": 721198, - "rtt_ms": 0.721198, + "rtt_ns": 1234791, + "rtt_ms": 1.234791, "checkpoint": 0, "vertex_from": "36", "vertex_to": "50", - "timestamp": "2025-11-27T01:23:37.865951401Z" + "timestamp": "2025-11-27T04:03:19.430583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020847, - "rtt_ms": 1.020847, + "rtt_ns": 1370000, + "rtt_ms": 1.37, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:37.86621113Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:03:19.4307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176876, - "rtt_ms": 1.176876, + "rtt_ns": 1279083, + "rtt_ms": 1.279083, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:37.86622156Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.43095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228997, - "rtt_ms": 1.228997, + "rtt_ns": 1898000, + "rtt_ms": 1.898, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:37.86630593Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:03:19.430972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347686, - "rtt_ms": 1.347686, + "rtt_ns": 1676084, + "rtt_ms": 1.676084, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:37.866614669Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:19.430988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446126, - "rtt_ms": 1.446126, + "rtt_ns": 1907625, + "rtt_ms": 1.907625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:37.866712319Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:19.431003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561305, - "rtt_ms": 1.561305, + "rtt_ns": 1985792, + "rtt_ms": 1.985792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "611", - "timestamp": "2025-11-27T01:23:37.866782828Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.4312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367046, - "rtt_ms": 1.367046, + "rtt_ns": 1677875, + "rtt_ms": 1.677875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:37.866837268Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.431221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595555, - "rtt_ms": 1.595555, + "rtt_ns": 1711125, + "rtt_ms": 1.711125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:37.866868818Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:19.431276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269616, - "rtt_ms": 1.269616, + "rtt_ns": 1441542, + "rtt_ms": 1.441542, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:37.867128837Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:19.431295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225996, - "rtt_ms": 1.225996, + "rtt_ns": 1410667, + "rtt_ms": 1.410667, "checkpoint": 0, "vertex_from": "36", "vertex_to": "100", - "timestamp": "2025-11-27T01:23:37.867178307Z" + "timestamp": "2025-11-27T04:03:19.432114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654085, - "rtt_ms": 1.654085, + "rtt_ns": 1536833, + "rtt_ms": 1.536833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:37.867876485Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:19.432121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789715, - "rtt_ms": 1.789715, + "rtt_ns": 1371000, + "rtt_ms": 1.371, "checkpoint": 0, "vertex_from": "36", "vertex_to": "45", - "timestamp": "2025-11-27T01:23:37.868001885Z" + "timestamp": "2025-11-27T04:03:19.432322-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1772455, - "rtt_ms": 1.772455, + "rtt_ns": 1389958, + "rtt_ms": 1.389958, "checkpoint": 0, "vertex_from": "252", - "timestamp": "2025-11-27T01:23:37.868081435Z" + "timestamp": "2025-11-27T04:03:19.43238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523105, - "rtt_ms": 1.523105, + "rtt_ns": 1441500, + "rtt_ms": 1.4415, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "43", - "timestamp": "2025-11-27T01:23:37.868236524Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.432415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164014, - "rtt_ms": 2.164014, + "rtt_ns": 1433125, + "rtt_ms": 1.433125, "checkpoint": 0, "vertex_from": "36", "vertex_to": "114", - "timestamp": "2025-11-27T01:23:37.868779983Z" + "timestamp": "2025-11-27T04:03:19.432437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2473293, - "rtt_ms": 2.473293, + "rtt_ns": 1219833, + "rtt_ms": 1.219833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:37.869350011Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:19.432453-08:00" }, { "operation": "add_edge", - "rtt_ns": 2612053, - "rtt_ms": 2.612053, + "rtt_ns": 1337959, + "rtt_ms": 1.337959, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:37.869396601Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:03:19.432539-08:00" }, { "operation": "add_edge", - "rtt_ns": 2280094, - "rtt_ms": 2.280094, + "rtt_ns": 1411458, + "rtt_ms": 1.411458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:37.869411021Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.432707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237404, - "rtt_ms": 2.237404, + "rtt_ns": 1558375, + "rtt_ms": 1.558375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:37.869416861Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:19.432836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470936, - "rtt_ms": 1.470936, + "rtt_ns": 1113542, + "rtt_ms": 1.113542, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:37.869474181Z" + "vertex_to": "252", + "timestamp": "2025-11-27T04:03:19.433494-08:00" }, { "operation": "add_edge", - "rtt_ns": 2644633, - "rtt_ms": 2.644633, + "rtt_ns": 1427959, + "rtt_ms": 1.427959, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:37.869483471Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:19.433551-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1606946, - "rtt_ms": 1.606946, + "operation": "add_vertex", + "rtt_ns": 1335542, + "rtt_ms": 1.335542, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "602", - "timestamp": "2025-11-27T01:23:37.869484671Z" + "vertex_from": "492", + "timestamp": "2025-11-27T04:03:19.433774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630235, - "rtt_ms": 1.630235, + "rtt_ns": 1482750, + "rtt_ms": 1.48275, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "252", - "timestamp": "2025-11-27T01:23:37.86971231Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:03:19.433807-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1477196, - "rtt_ms": 1.477196, + "operation": "add_edge", + "rtt_ns": 1880333, + "rtt_ms": 1.880333, "checkpoint": 0, - "vertex_from": "492", - "timestamp": "2025-11-27T01:23:37.86971681Z" + "vertex_from": "36", + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.433995-08:00" }, { "operation": "add_edge", - "rtt_ns": 948977, - "rtt_ms": 0.948977, + "rtt_ns": 2076875, + "rtt_ms": 2.076875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:37.870433608Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.434617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232746, - "rtt_ms": 1.232746, + "rtt_ns": 2332917, + "rtt_ms": 2.332917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:37.870644797Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.434787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274156, - "rtt_ms": 1.274156, + "rtt_ns": 2425500, + "rtt_ms": 2.4255, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:37.870673267Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:19.434842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211536, - "rtt_ms": 1.211536, + "rtt_ns": 2160625, + "rtt_ms": 2.160625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:37.870686677Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:19.434997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342636, - "rtt_ms": 1.342636, + "rtt_ns": 2309958, + "rtt_ms": 2.309958, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:37.870694107Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:19.435018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282696, - "rtt_ms": 1.282696, + "rtt_ns": 1394167, + "rtt_ms": 1.394167, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "829", - "timestamp": "2025-11-27T01:23:37.870700757Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.43539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242726, - "rtt_ms": 1.242726, + "rtt_ns": 1916833, + "rtt_ms": 1.916833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:37.870729847Z" + "vertex_to": "492", + "timestamp": "2025-11-27T04:03:19.435691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960014, - "rtt_ms": 1.960014, + "rtt_ns": 1109917, + "rtt_ms": 1.109917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:37.870740767Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.435898-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1686055, - "rtt_ms": 1.686055, + "rtt_ns": 1297750, + "rtt_ms": 1.29775, "checkpoint": 0, "vertex_from": "443", - "timestamp": "2025-11-27T01:23:37.871401805Z" + "timestamp": "2025-11-27T04:03:19.435916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714665, - "rtt_ms": 1.714665, + "rtt_ns": 2121000, + "rtt_ms": 2.121, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "492", - "timestamp": "2025-11-27T01:23:37.871432025Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:19.435931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423966, - "rtt_ms": 1.423966, + "rtt_ns": 2454333, + "rtt_ms": 2.454333, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:37.871859164Z" + "vertex_to": "829", + "timestamp": "2025-11-27T04:03:19.43595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644196, - "rtt_ms": 1.644196, + "rtt_ns": 2408500, + "rtt_ms": 2.4085, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:37.872320603Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.435961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756215, - "rtt_ms": 1.756215, + "rtt_ns": 1472583, + "rtt_ms": 1.472583, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.872451332Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:19.436317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782625, - "rtt_ms": 1.782625, + "rtt_ns": 1298250, + "rtt_ms": 1.29825, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:37.872484602Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:19.436317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841115, - "rtt_ms": 1.841115, + "rtt_ns": 1600500, + "rtt_ms": 1.6005, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:37.872487792Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:19.436599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762075, - "rtt_ms": 1.762075, + "rtt_ns": 1425417, + "rtt_ms": 1.425417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:37.872496442Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.436817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772355, - "rtt_ms": 1.772355, + "rtt_ns": 1144792, + "rtt_ms": 1.144792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:37.872514342Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:19.436837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109187, - "rtt_ms": 1.109187, + "rtt_ns": 1252250, + "rtt_ms": 1.25225, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:37.872542412Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.437184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145337, - "rtt_ms": 1.145337, + "rtt_ns": 1418458, + "rtt_ms": 1.418458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "443", - "timestamp": "2025-11-27T01:23:37.872547552Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:19.43738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882115, - "rtt_ms": 1.882115, + "rtt_ns": 1448042, + "rtt_ms": 1.448042, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:37.872571572Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.437399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496705, - "rtt_ms": 1.496705, + "rtt_ns": 1516417, + "rtt_ms": 1.516417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:37.873357429Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:19.437415-08:00" }, { "operation": "add_edge", - "rtt_ns": 855757, - "rtt_ms": 0.855757, + "rtt_ns": 1514125, + "rtt_ms": 1.514125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:37.873399679Z" + "vertex_to": "443", + "timestamp": "2025-11-27T04:03:19.43743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111116, - "rtt_ms": 1.111116, + "rtt_ns": 1281416, + "rtt_ms": 1.281416, "checkpoint": 0, "vertex_from": "36", "vertex_to": "112", - "timestamp": "2025-11-27T01:23:37.873433029Z" + "timestamp": "2025-11-27T04:03:19.437601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292446, - "rtt_ms": 1.292446, + "rtt_ns": 1418917, + "rtt_ms": 1.418917, "checkpoint": 0, "vertex_from": "36", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.873744828Z" + "timestamp": "2025-11-27T04:03:19.437739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316946, - "rtt_ms": 1.316946, + "rtt_ns": 1005833, + "rtt_ms": 1.005833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:37.873806078Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:19.437843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862604, - "rtt_ms": 1.862604, + "rtt_ns": 1465750, + "rtt_ms": 1.46575, "checkpoint": 0, "vertex_from": "36", "vertex_to": "333", - "timestamp": "2025-11-27T01:23:37.874348386Z" + "timestamp": "2025-11-27T04:03:19.438066-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103664, - "rtt_ms": 2.103664, + "rtt_ns": 1321625, + "rtt_ms": 1.321625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:37.874601806Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:19.438139-08:00" }, { "operation": "add_edge", - "rtt_ns": 2162503, - "rtt_ms": 2.162503, + "rtt_ns": 1062083, + "rtt_ms": 1.062083, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:37.874736085Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.438493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2385193, - "rtt_ms": 2.385193, + "rtt_ns": 1799792, + "rtt_ms": 1.799792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:37.874905265Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:03:19.4392-08:00" }, { "operation": "add_edge", - "rtt_ns": 2554882, - "rtt_ms": 2.554882, + "rtt_ns": 1517167, + "rtt_ms": 1.517167, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:37.875104014Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:19.439257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2358653, - "rtt_ms": 2.358653, + "rtt_ns": 1703375, + "rtt_ms": 1.703375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:37.875717642Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:03:19.439305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491753, - "rtt_ms": 2.491753, + "rtt_ns": 1973666, + "rtt_ms": 1.973666, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "236", - "timestamp": "2025-11-27T01:23:37.875892992Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:19.439354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214684, - "rtt_ms": 2.214684, + "rtt_ns": 1974166, + "rtt_ms": 1.974166, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:37.875960442Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:19.439391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2552003, - "rtt_ms": 2.552003, + "rtt_ns": 2214833, + "rtt_ms": 2.214833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:37.875986072Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:19.439401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259273, - "rtt_ms": 2.259273, + "rtt_ns": 1575750, + "rtt_ms": 1.57575, + "checkpoint": 0, + "vertex_from": "36", + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:19.43942-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1712333, + "rtt_ms": 1.712333, "checkpoint": 0, "vertex_from": "36", "vertex_to": "201", - "timestamp": "2025-11-27T01:23:37.876066181Z" + "timestamp": "2025-11-27T04:03:19.439779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786965, - "rtt_ms": 1.786965, + "rtt_ns": 1659792, + "rtt_ms": 1.659792, "checkpoint": 0, "vertex_from": "36", "vertex_to": "337", - "timestamp": "2025-11-27T01:23:37.876136371Z" + "timestamp": "2025-11-27T04:03:19.439799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555655, - "rtt_ms": 1.555655, + "rtt_ns": 1517167, + "rtt_ms": 1.517167, "checkpoint": 0, "vertex_from": "36", "vertex_to": "610", - "timestamp": "2025-11-27T01:23:37.876158671Z" + "timestamp": "2025-11-27T04:03:19.440014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669185, - "rtt_ms": 1.669185, + "rtt_ns": 1459708, + "rtt_ms": 1.459708, "checkpoint": 0, "vertex_from": "36", "vertex_to": "195", - "timestamp": "2025-11-27T01:23:37.876775079Z" + "timestamp": "2025-11-27T04:03:19.440766-08:00" }, { "operation": "add_edge", - "rtt_ns": 995837, - "rtt_ms": 0.995837, + "rtt_ns": 1387125, + "rtt_ms": 1.387125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:37.876890549Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:03:19.44079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364976, - "rtt_ms": 1.364976, + "rtt_ns": 1778750, + "rtt_ms": 1.77875, "checkpoint": 0, "vertex_from": "36", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:37.877083668Z" + "timestamp": "2025-11-27T04:03:19.441134-08:00" }, { "operation": "add_edge", - "rtt_ns": 2371213, - "rtt_ms": 2.371213, + "rtt_ns": 1905833, + "rtt_ms": 1.905833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:37.877109048Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:19.441298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2273693, - "rtt_ms": 2.273693, + "rtt_ns": 1515583, + "rtt_ms": 1.515583, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:37.877182808Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.441316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609045, - "rtt_ms": 1.609045, + "rtt_ns": 1909750, + "rtt_ms": 1.90975, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "38", - "timestamp": "2025-11-27T01:23:37.877570987Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:19.441331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581715, - "rtt_ms": 1.581715, + "rtt_ns": 1329916, + "rtt_ms": 1.329916, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:37.877720226Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.441346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735574, - "rtt_ms": 1.735574, + "rtt_ns": 1579250, + "rtt_ms": 1.57925, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:37.877723086Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:19.441359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666505, - "rtt_ms": 1.666505, + "rtt_ns": 2115458, + "rtt_ms": 2.115458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:37.877735656Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:19.441374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598885, - "rtt_ms": 1.598885, + "rtt_ns": 2287500, + "rtt_ms": 2.2875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:37.877758936Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:19.44149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775175, - "rtt_ms": 1.775175, + "rtt_ns": 1451250, + "rtt_ms": 1.45125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:37.878551954Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:19.442587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662205, - "rtt_ms": 1.662205, + "rtt_ns": 1837125, + "rtt_ms": 1.837125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:37.878553864Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:19.442605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505936, - "rtt_ms": 1.505936, + "rtt_ns": 1866041, + "rtt_ms": 1.866041, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:37.878590714Z" + "vertex_from": "37", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.443226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482336, - "rtt_ms": 1.482336, + "rtt_ns": 2456917, + "rtt_ms": 2.456917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:37.878593864Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:19.443247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514945, - "rtt_ms": 1.514945, + "rtt_ns": 1957542, + "rtt_ms": 1.957542, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:37.879088632Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.443257-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2050384, - "rtt_ms": 2.050384, + "operation": "add_vertex", + "rtt_ns": 1766250, + "rtt_ms": 1.76625, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:37.879234542Z" + "vertex_from": "218", + "timestamp": "2025-11-27T04:03:19.443259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587986, - "rtt_ms": 1.587986, + "rtt_ns": 1946542, + "rtt_ms": 1.946542, "checkpoint": 0, - "vertex_from": "37", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.879314102Z" + "vertex_from": "36", + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:19.443263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610916, - "rtt_ms": 1.610916, + "rtt_ns": 1934000, + "rtt_ms": 1.934, "checkpoint": 0, "vertex_from": "36", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:37.879332952Z" + "timestamp": "2025-11-27T04:03:19.44328-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1580986, - "rtt_ms": 1.580986, + "operation": "add_edge", + "rtt_ns": 2007125, + "rtt_ms": 2.007125, "checkpoint": 0, - "vertex_from": "218", - "timestamp": "2025-11-27T01:23:37.879343282Z" + "vertex_from": "36", + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:19.443339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592695, - "rtt_ms": 1.592695, + "rtt_ns": 2073208, + "rtt_ms": 2.073208, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:37.880148539Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.443447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678555, - "rtt_ms": 1.678555, + "rtt_ns": 1299750, + "rtt_ms": 1.29975, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.880273709Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.443887-08:00" }, { "operation": "add_edge", - "rtt_ns": 2549853, - "rtt_ms": 2.549853, + "rtt_ns": 1620333, + "rtt_ms": 1.620333, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.880286809Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.444226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748795, - "rtt_ms": 1.748795, + "rtt_ns": 1556708, + "rtt_ms": 1.556708, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:37.880302559Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.444821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097507, - "rtt_ms": 1.097507, + "rtt_ns": 1543500, + "rtt_ms": 1.5435, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.880332859Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.444824-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1836764, - "rtt_ms": 1.836764, + "rtt_ns": 1710750, + "rtt_ms": 1.71075, "checkpoint": 0, "vertex_from": "952", - "timestamp": "2025-11-27T01:23:37.880430008Z" + "timestamp": "2025-11-27T04:03:19.44494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127696, - "rtt_ms": 1.127696, + "rtt_ns": 1540000, + "rtt_ms": 1.54, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.880443088Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:19.444988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858775, - "rtt_ms": 1.858775, + "rtt_ns": 1756208, + "rtt_ms": 1.756208, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:37.880949237Z" + "vertex_to": "218", + "timestamp": "2025-11-27T04:03:19.445016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673665, - "rtt_ms": 1.673665, + "rtt_ns": 1871708, + "rtt_ms": 1.871708, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "218", - "timestamp": "2025-11-27T01:23:37.881017317Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.44512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819594, - "rtt_ms": 1.819594, + "rtt_ns": 1896250, + "rtt_ms": 1.89625, + "checkpoint": 0, + "vertex_from": "37", + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:19.445156-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1832709, + "rtt_ms": 1.832709, "checkpoint": 0, "vertex_from": "37", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:37.881153596Z" + "timestamp": "2025-11-27T04:03:19.445174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276374, - "rtt_ms": 2.276374, + "rtt_ns": 1332459, + "rtt_ms": 1.332459, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:37.882426443Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.445221-08:00" }, { "operation": "add_edge", - "rtt_ns": 2248964, - "rtt_ms": 2.248964, + "rtt_ns": 1666750, + "rtt_ms": 1.66675, "checkpoint": 0, "vertex_from": "37", "vertex_to": "738", - "timestamp": "2025-11-27T01:23:37.882536463Z" + "timestamp": "2025-11-27T04:03:19.445893-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331433, - "rtt_ms": 2.331433, + "rtt_ns": 1656875, + "rtt_ms": 1.656875, "checkpoint": 0, "vertex_from": "37", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.882666162Z" + "timestamp": "2025-11-27T04:03:19.446482-08:00" }, { "operation": "add_edge", - "rtt_ns": 3297731, - "rtt_ms": 3.297731, + "rtt_ns": 1805083, + "rtt_ms": 1.805083, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:37.88360165Z" + "vertex_to": "952", + "timestamp": "2025-11-27T04:03:19.446745-08:00" }, { "operation": "add_edge", - "rtt_ns": 3329741, - "rtt_ms": 3.329741, + "rtt_ns": 2151125, + "rtt_ms": 2.151125, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:37.88360458Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.446975-08:00" }, { "operation": "add_edge", - "rtt_ns": 3182122, - "rtt_ms": 3.182122, + "rtt_ns": 1848291, + "rtt_ms": 1.848291, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "952", - "timestamp": "2025-11-27T01:23:37.88361257Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.447024-08:00" }, { "operation": "add_edge", - "rtt_ns": 2475323, - "rtt_ms": 2.475323, + "rtt_ns": 2234125, + "rtt_ms": 2.234125, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:37.883630709Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.447223-08:00" }, { "operation": "add_edge", - "rtt_ns": 3098711, - "rtt_ms": 3.098711, + "rtt_ns": 2228833, + "rtt_ms": 2.228833, "checkpoint": 0, "vertex_from": "37", "vertex_to": "146", - "timestamp": "2025-11-27T01:23:37.884048868Z" + "timestamp": "2025-11-27T04:03:19.447247-08:00" }, { "operation": "add_edge", - "rtt_ns": 3057011, - "rtt_ms": 3.057011, + "rtt_ns": 2140625, + "rtt_ms": 2.140625, "checkpoint": 0, "vertex_from": "37", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.884077048Z" + "timestamp": "2025-11-27T04:03:19.447262-08:00" }, { "operation": "add_edge", - "rtt_ns": 3697010, - "rtt_ms": 3.69701, + "rtt_ns": 2121291, + "rtt_ms": 2.121291, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.884141498Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:19.447279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723765, - "rtt_ms": 1.723765, + "rtt_ns": 1564750, + "rtt_ms": 1.56475, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:37.884151978Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:19.447459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648185, - "rtt_ms": 1.648185, + "rtt_ns": 2253291, + "rtt_ms": 2.253291, "checkpoint": 0, "vertex_from": "37", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:37.884186168Z" + "timestamp": "2025-11-27T04:03:19.447475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542256, - "rtt_ms": 1.542256, + "rtt_ns": 1677625, + "rtt_ms": 1.677625, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:37.884210678Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.448163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398295, - "rtt_ms": 1.398295, + "rtt_ns": 1320000, + "rtt_ms": 1.32, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:37.885012265Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.448347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587595, - "rtt_ms": 1.587595, + "rtt_ns": 1277458, + "rtt_ms": 1.277458, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:37.885190915Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.448525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645125, - "rtt_ms": 1.645125, + "rtt_ns": 1796917, + "rtt_ms": 1.796917, "checkpoint": 0, "vertex_from": "37", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.885251605Z" + "timestamp": "2025-11-27T04:03:19.448544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173437, - "rtt_ms": 1.173437, + "rtt_ns": 1291708, + "rtt_ms": 1.291708, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:37.885251925Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.448572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652696, - "rtt_ms": 1.652696, + "rtt_ns": 1625333, + "rtt_ms": 1.625333, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.885285895Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:19.448602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172496, - "rtt_ms": 1.172496, + "rtt_ns": 1471458, + "rtt_ms": 1.471458, "checkpoint": 0, "vertex_from": "37", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:37.885318474Z" + "timestamp": "2025-11-27T04:03:19.448734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751275, - "rtt_ms": 1.751275, + "rtt_ns": 1528625, + "rtt_ms": 1.528625, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:37.885904763Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:19.448753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737465, - "rtt_ms": 1.737465, + "rtt_ns": 1598916, + "rtt_ms": 1.598916, "checkpoint": 0, "vertex_from": "37", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:37.885924673Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1911065, - "rtt_ms": 1.911065, - "checkpoint": 0, - "vertex_from": "37", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:37.885961263Z" + "timestamp": "2025-11-27T04:03:19.449059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791654, - "rtt_ms": 1.791654, + "rtt_ns": 1677917, + "rtt_ms": 1.677917, "checkpoint": 0, "vertex_from": "37", "vertex_to": "97", - "timestamp": "2025-11-27T01:23:37.886004622Z" + "timestamp": "2025-11-27T04:03:19.449154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455666, - "rtt_ms": 1.455666, + "rtt_ns": 1256583, + "rtt_ms": 1.256583, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:37.8867766Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.449802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546995, - "rtt_ms": 1.546995, + "rtt_ns": 1454166, + "rtt_ms": 1.454166, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.88680137Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:19.449802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552695, - "rtt_ms": 1.552695, + "rtt_ns": 1415791, + "rtt_ms": 1.415791, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:37.88680819Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.45002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532025, - "rtt_ms": 1.532025, + "rtt_ns": 1893542, + "rtt_ms": 1.893542, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.88681996Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:19.450059-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359103, - "rtt_ms": 2.359103, + "rtt_ns": 1540375, + "rtt_ms": 1.540375, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:37.887373908Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.450068-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243643, - "rtt_ms": 2.243643, + "rtt_ns": 1352083, + "rtt_ms": 1.352083, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:37.887443198Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:19.450088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502625, - "rtt_ms": 1.502625, + "rtt_ns": 1364292, + "rtt_ms": 1.364292, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "91", - "timestamp": "2025-11-27T01:23:37.887465088Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.450118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624315, - "rtt_ms": 1.624315, + "rtt_ns": 1558167, + "rtt_ms": 1.558167, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:37.887550678Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.450131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589666, - "rtt_ms": 1.589666, + "rtt_ns": 1239708, + "rtt_ms": 1.239708, "checkpoint": 0, "vertex_from": "37", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:37.887595498Z" + "timestamp": "2025-11-27T04:03:19.450394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689965, - "rtt_ms": 1.689965, + "rtt_ns": 1411084, + "rtt_ms": 1.411084, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:37.887596658Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:03:19.450471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520815, - "rtt_ms": 1.520815, + "rtt_ns": 1084500, + "rtt_ms": 1.0845, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:37.888323985Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:19.451173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641125, - "rtt_ms": 1.641125, + "rtt_ns": 1287458, + "rtt_ms": 1.287458, "checkpoint": 0, "vertex_from": "37", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:37.888463685Z" + "timestamp": "2025-11-27T04:03:19.451347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715075, - "rtt_ms": 1.715075, + "rtt_ns": 1440708, + "rtt_ms": 1.440708, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "760", - "timestamp": "2025-11-27T01:23:37.888494305Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.451462-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137594, - "rtt_ms": 2.137594, + "rtt_ns": 1361000, + "rtt_ms": 1.361, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:37.888947924Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:19.451481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593626, - "rtt_ms": 1.593626, + "rtt_ns": 1434916, + "rtt_ms": 1.434916, "checkpoint": 0, "vertex_from": "37", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:37.888969084Z" + "timestamp": "2025-11-27T04:03:19.451503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660825, - "rtt_ms": 1.660825, + "rtt_ns": 1714167, + "rtt_ms": 1.714167, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:37.889106283Z" + "vertex_to": "760", + "timestamp": "2025-11-27T04:03:19.451519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580675, - "rtt_ms": 1.580675, + "rtt_ns": 1402083, + "rtt_ms": 1.402083, "checkpoint": 0, "vertex_from": "37", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.889133183Z" + "timestamp": "2025-11-27T04:03:19.451534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668585, - "rtt_ms": 1.668585, + "rtt_ns": 1744208, + "rtt_ms": 1.744208, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:37.889135893Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:19.451549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543475, - "rtt_ms": 1.543475, + "rtt_ns": 1398750, + "rtt_ms": 1.39875, "checkpoint": 0, "vertex_from": "37", "vertex_to": "833", - "timestamp": "2025-11-27T01:23:37.889141113Z" + "timestamp": "2025-11-27T04:03:19.451795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591185, - "rtt_ms": 1.591185, + "rtt_ns": 1425125, + "rtt_ms": 1.425125, "checkpoint": 0, "vertex_from": "37", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:37.889190003Z" + "timestamp": "2025-11-27T04:03:19.451897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454116, - "rtt_ms": 1.454116, + "rtt_ns": 1400542, + "rtt_ms": 1.400542, "checkpoint": 0, "vertex_from": "37", "vertex_to": "602", - "timestamp": "2025-11-27T01:23:37.889919501Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1501535, - "rtt_ms": 1.501535, - "checkpoint": 0, - "vertex_from": "37", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:37.88999791Z" + "timestamp": "2025-11-27T04:03:19.452748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843515, - "rtt_ms": 1.843515, + "rtt_ns": 1593708, + "rtt_ms": 1.593708, "checkpoint": 0, "vertex_from": "37", "vertex_to": "912", - "timestamp": "2025-11-27T01:23:37.89017047Z" + "timestamp": "2025-11-27T04:03:19.452768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617985, - "rtt_ms": 1.617985, + "rtt_ns": 1539542, + "rtt_ms": 1.539542, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:37.890589119Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:19.453002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794334, - "rtt_ms": 1.794334, + "rtt_ns": 1482708, + "rtt_ms": 1.482708, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:37.890744108Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:19.453018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857185, - "rtt_ms": 1.857185, + "rtt_ns": 1554125, + "rtt_ms": 1.554125, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:37.890964528Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:19.453036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978294, - "rtt_ms": 1.978294, + "rtt_ns": 1261583, + "rtt_ms": 1.261583, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:37.891112847Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.453057-08:00" }, { "operation": "add_edge", - "rtt_ns": 2700072, - "rtt_ms": 2.700072, + "rtt_ns": 1162459, + "rtt_ms": 1.162459, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:37.891837345Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.45306-08:00" }, { "operation": "add_edge", - "rtt_ns": 2790332, - "rtt_ms": 2.790332, + "rtt_ns": 1557542, + "rtt_ms": 1.557542, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:37.891933295Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.453062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2785342, - "rtt_ms": 2.785342, + "rtt_ns": 1523584, + "rtt_ms": 1.523584, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:37.891977245Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.453073-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118383, - "rtt_ms": 2.118383, + "rtt_ns": 1683000, + "rtt_ms": 1.683, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:37.892039404Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:19.453203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116074, - "rtt_ms": 2.116074, + "rtt_ns": 1443875, + "rtt_ms": 1.443875, "checkpoint": 0, "vertex_from": "37", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:37.892114704Z" + "timestamp": "2025-11-27T04:03:19.454213-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020614, - "rtt_ms": 2.020614, + "rtt_ns": 1235917, + "rtt_ms": 1.235917, "checkpoint": 0, "vertex_from": "37", "vertex_to": "232", - "timestamp": "2025-11-27T01:23:37.892192454Z" + "timestamp": "2025-11-27T04:03:19.454239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468576, - "rtt_ms": 1.468576, + "rtt_ns": 1263500, + "rtt_ms": 1.2635, "checkpoint": 0, - "vertex_from": "37", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:37.892213954Z" + "vertex_from": "38", + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:19.454469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691925, - "rtt_ms": 1.691925, + "rtt_ns": 1737167, + "rtt_ms": 1.737167, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "793", - "timestamp": "2025-11-27T01:23:37.892282274Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:19.454488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315706, - "rtt_ms": 1.315706, + "rtt_ns": 1484125, + "rtt_ms": 1.484125, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:37.892429913Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:03:19.454503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465385, - "rtt_ms": 1.465385, + "rtt_ns": 1467709, + "rtt_ms": 1.467709, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:37.892430923Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:19.454505-08:00" }, { "operation": "add_edge", - "rtt_ns": 697218, - "rtt_ms": 0.697218, + "rtt_ns": 1456458, + "rtt_ms": 1.456458, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:37.892632053Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:19.454519-08:00" }, { "operation": "add_edge", - "rtt_ns": 823808, - "rtt_ms": 0.823808, + "rtt_ns": 1638167, + "rtt_ms": 1.638167, "checkpoint": 0, - "vertex_from": "38", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:37.892664163Z" + "vertex_from": "37", + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:19.454696-08:00" }, { "operation": "add_edge", - "rtt_ns": 826897, - "rtt_ms": 0.826897, + "rtt_ns": 1636292, + "rtt_ms": 1.636292, "checkpoint": 0, - "vertex_from": "38", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:37.892805812Z" + "vertex_from": "37", + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:19.454697-08:00" }, { "operation": "add_edge", - "rtt_ns": 810688, - "rtt_ms": 0.810688, + "rtt_ns": 1637791, + "rtt_ms": 1.637791, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:37.892851212Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.454711-08:00" }, { "operation": "add_edge", - "rtt_ns": 767258, - "rtt_ms": 0.767258, + "rtt_ns": 1522542, + "rtt_ms": 1.522542, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:37.892882862Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.45603-08:00" }, { "operation": "add_edge", - "rtt_ns": 855588, - "rtt_ms": 0.855588, + "rtt_ns": 2133042, + "rtt_ms": 2.133042, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "873", - "timestamp": "2025-11-27T01:23:37.893049662Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:19.456653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387126, - "rtt_ms": 1.387126, + "rtt_ns": 1973959, + "rtt_ms": 1.973959, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:37.89367073Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.456672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666405, - "rtt_ms": 1.666405, + "rtt_ns": 2466625, + "rtt_ms": 2.466625, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:37.893880949Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:19.456681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116977, - "rtt_ms": 1.116977, + "rtt_ns": 2183666, + "rtt_ms": 2.183666, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:37.893924109Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:19.456687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079667, - "rtt_ms": 1.079667, + "rtt_ns": 2209417, + "rtt_ms": 2.209417, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.893963409Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:19.456698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548326, - "rtt_ms": 1.548326, + "rtt_ns": 2361333, + "rtt_ms": 2.361333, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:37.893979059Z" + "vertex_to": "873", + "timestamp": "2025-11-27T04:03:19.456831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322316, - "rtt_ms": 1.322316, + "rtt_ns": 2162166, + "rtt_ms": 2.162166, "checkpoint": 0, "vertex_from": "38", "vertex_to": "73", - "timestamp": "2025-11-27T01:23:37.893987869Z" + "timestamp": "2025-11-27T04:03:19.45686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354576, - "rtt_ms": 1.354576, + "rtt_ns": 2647667, + "rtt_ms": 2.647667, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:37.893987879Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.456887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567706, - "rtt_ms": 1.567706, + "rtt_ns": 2233375, + "rtt_ms": 2.233375, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:37.893999519Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:19.456945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933305, - "rtt_ms": 1.933305, + "rtt_ns": 1441750, + "rtt_ms": 1.44175, "checkpoint": 0, "vertex_from": "38", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:37.894785407Z" + "timestamp": "2025-11-27T04:03:19.457475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778735, - "rtt_ms": 1.778735, + "rtt_ns": 1301042, + "rtt_ms": 1.301042, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:37.894829497Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.457989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378526, - "rtt_ms": 1.378526, + "rtt_ns": 1332459, + "rtt_ms": 1.332459, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:37.895050806Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:19.458006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902855, - "rtt_ms": 1.902855, + "rtt_ns": 1528167, + "rtt_ms": 1.528167, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "51", - "timestamp": "2025-11-27T01:23:37.895828624Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.458183-08:00" }, { "operation": "add_edge", - "rtt_ns": 2008695, - "rtt_ms": 2.008695, + "rtt_ns": 1611834, + "rtt_ms": 1.611834, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.895891054Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:03:19.458311-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044434, - "rtt_ms": 2.044434, + "rtt_ns": 1681458, + "rtt_ms": 1.681458, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.896008783Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.458364-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092524, - "rtt_ms": 2.092524, + "rtt_ns": 1556875, + "rtt_ms": 1.556875, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.896072233Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.458505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2568013, - "rtt_ms": 2.568013, + "rtt_ns": 1721667, + "rtt_ms": 1.721667, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.896558252Z" + "vertex_to": "924", + "timestamp": "2025-11-27T04:03:19.45861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2712972, - "rtt_ms": 2.712972, + "rtt_ns": 1799208, + "rtt_ms": 1.799208, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "924", - "timestamp": "2025-11-27T01:23:37.896703451Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.458631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888414, - "rtt_ms": 1.888414, + "rtt_ns": 1874542, + "rtt_ms": 1.874542, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:37.896719131Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.458735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2734662, - "rtt_ms": 2.734662, + "rtt_ns": 1475542, + "rtt_ms": 1.475542, "checkpoint": 0, "vertex_from": "38", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.896735361Z" + "timestamp": "2025-11-27T04:03:19.458952-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023854, - "rtt_ms": 2.023854, + "rtt_ns": 1223916, + "rtt_ms": 1.223916, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:37.896810431Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.459407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2361153, - "rtt_ms": 2.361153, + "rtt_ns": 1433667, + "rtt_ms": 1.433667, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:37.897413049Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:19.45944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823994, - "rtt_ms": 1.823994, + "rtt_ns": 1647417, + "rtt_ms": 1.647417, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.897654378Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:19.459638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704865, - "rtt_ms": 1.704865, + "rtt_ns": 1435541, + "rtt_ms": 1.435541, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.897715188Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.459747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857354, - "rtt_ms": 1.857354, + "rtt_ns": 1400625, + "rtt_ms": 1.400625, "checkpoint": 0, "vertex_from": "38", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:37.897749328Z" + "timestamp": "2025-11-27T04:03:19.459765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297266, - "rtt_ms": 1.297266, + "rtt_ns": 1634708, + "rtt_ms": 1.634708, "checkpoint": 0, "vertex_from": "38", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:37.897857548Z" + "timestamp": "2025-11-27T04:03:19.460267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836805, - "rtt_ms": 1.836805, + "rtt_ns": 1314666, + "rtt_ms": 1.314666, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:37.897910038Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.460267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227987, - "rtt_ms": 1.227987, + "rtt_ns": 1538542, + "rtt_ms": 1.538542, "checkpoint": 0, "vertex_from": "38", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.897935658Z" + "timestamp": "2025-11-27T04:03:19.460275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219936, - "rtt_ms": 1.219936, + "rtt_ns": 1780875, + "rtt_ms": 1.780875, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.897940137Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.460289-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1683916, + "rtt_ms": 1.683916, + "checkpoint": 0, + "vertex_from": "38", + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:19.460295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285866, - "rtt_ms": 1.285866, + "rtt_ns": 1286667, + "rtt_ms": 1.286667, "checkpoint": 0, "vertex_from": "38", "vertex_to": "216", - "timestamp": "2025-11-27T01:23:37.898024717Z" + "timestamp": "2025-11-27T04:03:19.460695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239246, - "rtt_ms": 1.239246, + "rtt_ns": 1255333, + "rtt_ms": 1.255333, "checkpoint": 0, "vertex_from": "38", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:37.898051647Z" + "timestamp": "2025-11-27T04:03:19.460698-08:00" }, { "operation": "add_edge", - "rtt_ns": 765378, - "rtt_ms": 0.765378, + "rtt_ns": 1302667, + "rtt_ms": 1.302667, "checkpoint": 0, "vertex_from": "38", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:37.898180537Z" + "timestamp": "2025-11-27T04:03:19.460941-08:00" }, { "operation": "add_edge", - "rtt_ns": 713058, - "rtt_ms": 0.713058, + "rtt_ns": 1324417, + "rtt_ms": 1.324417, "checkpoint": 0, "vertex_from": "38", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:37.898368346Z" + "timestamp": "2025-11-27T04:03:19.461072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219476, - "rtt_ms": 1.219476, + "rtt_ns": 1322416, + "rtt_ms": 1.322416, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:37.899079934Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:19.461088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154547, - "rtt_ms": 1.154547, + "rtt_ns": 1189167, + "rtt_ms": 1.189167, "checkpoint": 0, "vertex_from": "38", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.899095844Z" + "timestamp": "2025-11-27T04:03:19.461486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062727, - "rtt_ms": 1.062727, + "rtt_ns": 1466042, + "rtt_ms": 1.466042, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:37.899115494Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:19.461734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129207, - "rtt_ms": 1.129207, + "rtt_ns": 1669041, + "rtt_ms": 1.669041, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:37.899155594Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:03:19.461958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486716, - "rtt_ms": 1.486716, + "rtt_ns": 1708166, + "rtt_ms": 1.708166, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:37.899202824Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:19.461976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320116, - "rtt_ms": 1.320116, + "rtt_ns": 1714084, + "rtt_ms": 1.714084, "checkpoint": 0, "vertex_from": "38", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:37.899231694Z" + "timestamp": "2025-11-27T04:03:19.461991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296436, - "rtt_ms": 1.296436, + "rtt_ns": 1584542, + "rtt_ms": 1.584542, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "43", - "timestamp": "2025-11-27T01:23:37.899233994Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:19.462528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620595, - "rtt_ms": 1.620595, + "rtt_ns": 1784458, + "rtt_ms": 1.784458, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:37.899371213Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.462858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705165, - "rtt_ms": 1.705165, + "rtt_ns": 2177416, + "rtt_ms": 2.177416, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.900074561Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:03:19.462875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940604, - "rtt_ms": 1.940604, + "rtt_ns": 2190667, + "rtt_ms": 2.190667, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:37.900122371Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.46289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353766, - "rtt_ms": 1.353766, + "rtt_ns": 1564791, + "rtt_ms": 1.564791, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:37.90043477Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:19.463051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361696, - "rtt_ms": 1.361696, + "rtt_ns": 1336125, + "rtt_ms": 1.336125, "checkpoint": 0, "vertex_from": "38", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.9004792Z" + "timestamp": "2025-11-27T04:03:19.463071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470946, - "rtt_ms": 1.470946, + "rtt_ns": 2012000, + "rtt_ms": 2.012, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:37.90062761Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.463101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541006, - "rtt_ms": 1.541006, + "rtt_ns": 1720042, + "rtt_ms": 1.720042, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:37.90063782Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:19.463679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273617, - "rtt_ms": 1.273617, + "rtt_ns": 1877583, + "rtt_ms": 1.877583, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:37.900646Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:03:19.463855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448965, - "rtt_ms": 1.448965, + "rtt_ns": 1341708, + "rtt_ms": 1.341708, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:37.900681569Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:19.463872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517985, - "rtt_ms": 1.517985, + "rtt_ns": 2003000, + "rtt_ms": 2.003, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "604", - "timestamp": "2025-11-27T01:23:37.900722149Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.463995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114804, - "rtt_ms": 2.114804, + "rtt_ns": 1143334, + "rtt_ms": 1.143334, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:37.901351768Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:19.464215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443956, - "rtt_ms": 1.443956, + "rtt_ns": 1341750, + "rtt_ms": 1.34175, "checkpoint": 0, "vertex_from": "38", "vertex_to": "424", - "timestamp": "2025-11-27T01:23:37.901567377Z" + "timestamp": "2025-11-27T04:03:19.464233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495526, - "rtt_ms": 1.495526, + "rtt_ns": 1362334, + "rtt_ms": 1.362334, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "54", - "timestamp": "2025-11-27T01:23:37.901571347Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:19.464414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994354, - "rtt_ms": 1.994354, + "rtt_ns": 1629542, + "rtt_ms": 1.629542, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:37.902474634Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:03:19.464505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095724, - "rtt_ms": 2.095724, + "rtt_ns": 1420542, + "rtt_ms": 1.420542, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:37.902531354Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1316486, - "rtt_ms": 1.316486, - "checkpoint": 0, - "vertex_from": "406", - "timestamp": "2025-11-27T01:23:37.902670664Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.464522-08:00" }, { "operation": "add_edge", - "rtt_ns": 2374583, - "rtt_ms": 2.374583, + "rtt_ns": 1697834, + "rtt_ms": 1.697834, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:37.903014173Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.464557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416853, - "rtt_ms": 2.416853, + "rtt_ns": 1481209, + "rtt_ms": 1.481209, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:37.903047083Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.465337-08:00" }, { "operation": "add_edge", - "rtt_ns": 2437824, - "rtt_ms": 2.437824, + "rtt_ns": 1472041, + "rtt_ms": 1.472041, "checkpoint": 0, "vertex_from": "38", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.903120193Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2509113, - "rtt_ms": 2.509113, - "checkpoint": 0, - "vertex_from": "38", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:37.903156043Z" + "timestamp": "2025-11-27T04:03:19.465345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696355, - "rtt_ms": 1.696355, + "rtt_ns": 2005792, + "rtt_ms": 2.005792, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:37.903265682Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:19.465686-08:00" }, { "operation": "add_edge", - "rtt_ns": 2571623, - "rtt_ms": 2.571623, + "rtt_ns": 1708292, + "rtt_ms": 1.708292, "checkpoint": 0, "vertex_from": "38", "vertex_to": "156", - "timestamp": "2025-11-27T01:23:37.903300902Z" + "timestamp": "2025-11-27T04:03:19.465704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850825, - "rtt_ms": 1.850825, + "rtt_ns": 1303250, + "rtt_ms": 1.30325, "checkpoint": 0, "vertex_from": "38", "vertex_to": "104", - "timestamp": "2025-11-27T01:23:37.903423762Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 901108, - "rtt_ms": 0.901108, - "checkpoint": 0, - "vertex_from": "745", - "timestamp": "2025-11-27T01:23:37.903434632Z" + "timestamp": "2025-11-27T04:03:19.465718-08:00" }, { "operation": "add_edge", - "rtt_ns": 965488, - "rtt_ms": 0.965488, + "rtt_ns": 1232000, + "rtt_ms": 1.232, "checkpoint": 0, "vertex_from": "38", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:37.903441892Z" + "timestamp": "2025-11-27T04:03:19.465738-08:00" }, { "operation": "add_edge", - "rtt_ns": 789328, - "rtt_ms": 0.789328, + "rtt_ns": 1545250, + "rtt_ms": 1.54525, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:37.903460382Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.46578-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1648625, + "rtt_ms": 1.648625, + "checkpoint": 0, + "vertex_from": "406", + "timestamp": "2025-11-27T04:03:19.465865-08:00" }, { "operation": "add_edge", - "rtt_ns": 614598, - "rtt_ms": 0.614598, + "rtt_ns": 1502791, + "rtt_ms": 1.502791, "checkpoint": 0, "vertex_from": "38", "vertex_to": "488", - "timestamp": "2025-11-27T01:23:37.903630411Z" + "timestamp": "2025-11-27T04:03:19.466062-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1581417, + "rtt_ms": 1.581417, + "checkpoint": 0, + "vertex_from": "745", + "timestamp": "2025-11-27T04:03:19.466105-08:00" }, { "operation": "add_edge", - "rtt_ns": 630788, - "rtt_ms": 0.630788, + "rtt_ns": 1090916, + "rtt_ms": 1.090916, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:37.903787731Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:19.466795-08:00" }, { "operation": "add_edge", - "rtt_ns": 756718, - "rtt_ms": 0.756718, + "rtt_ns": 1231125, + "rtt_ms": 1.231125, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:37.903804791Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:19.46697-08:00" }, { "operation": "add_edge", - "rtt_ns": 741978, - "rtt_ms": 0.741978, + "rtt_ns": 1802875, + "rtt_ms": 1.802875, "checkpoint": 0, "vertex_from": "39", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:37.903863331Z" + "timestamp": "2025-11-27T04:03:19.467148-08:00" }, { "operation": "add_edge", - "rtt_ns": 606649, - "rtt_ms": 0.606649, + "rtt_ns": 1812000, + "rtt_ms": 1.812, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:37.903873871Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.46715-08:00" }, { "operation": "add_edge", - "rtt_ns": 638658, - "rtt_ms": 0.638658, + "rtt_ns": 1669958, + "rtt_ms": 1.669958, "checkpoint": 0, "vertex_from": "39", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.90394046Z" + "timestamp": "2025-11-27T04:03:19.467389-08:00" }, { "operation": "add_edge", - "rtt_ns": 747638, - "rtt_ms": 0.747638, + "rtt_ns": 1634625, + "rtt_ms": 1.634625, "checkpoint": 0, - "vertex_from": "38", - "vertex_to": "745", - "timestamp": "2025-11-27T01:23:37.90418246Z" + "vertex_from": "39", + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:19.467417-08:00" }, { "operation": "add_edge", - "rtt_ns": 742558, - "rtt_ms": 0.742558, + "rtt_ns": 1372167, + "rtt_ms": 1.372167, "checkpoint": 0, "vertex_from": "39", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.9042057Z" + "timestamp": "2025-11-27T04:03:19.467436-08:00" }, { "operation": "add_edge", - "rtt_ns": 807597, - "rtt_ms": 0.807597, + "rtt_ns": 1785458, + "rtt_ms": 1.785458, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:37.904233289Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:19.467472-08:00" }, { "operation": "add_edge", - "rtt_ns": 791257, - "rtt_ms": 0.791257, + "rtt_ns": 1654250, + "rtt_ms": 1.65425, "checkpoint": 0, - "vertex_from": "39", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:37.904234169Z" + "vertex_from": "38", + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:19.46752-08:00" }, { "operation": "add_edge", - "rtt_ns": 664038, - "rtt_ms": 0.664038, + "rtt_ns": 1517875, + "rtt_ms": 1.517875, "checkpoint": 0, - "vertex_from": "39", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:37.904295329Z" + "vertex_from": "38", + "vertex_to": "745", + "timestamp": "2025-11-27T04:03:19.467623-08:00" }, { "operation": "add_edge", - "rtt_ns": 704987, - "rtt_ms": 0.704987, + "rtt_ns": 1243542, + "rtt_ms": 1.243542, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:37.904569368Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:19.468214-08:00" }, { "operation": "add_edge", - "rtt_ns": 834517, - "rtt_ms": 0.834517, + "rtt_ns": 1595125, + "rtt_ms": 1.595125, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:37.904624228Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:19.468392-08:00" }, { "operation": "add_edge", - "rtt_ns": 699048, - "rtt_ms": 0.699048, + "rtt_ns": 1381750, + "rtt_ms": 1.38175, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:37.904640628Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:19.468531-08:00" }, { "operation": "add_edge", - "rtt_ns": 868597, - "rtt_ms": 0.868597, + "rtt_ns": 1451667, + "rtt_ms": 1.451667, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:37.904674928Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.468974-08:00" }, { "operation": "add_edge", - "rtt_ns": 804667, - "rtt_ms": 0.804667, + "rtt_ns": 1656583, + "rtt_ms": 1.656583, "checkpoint": 0, "vertex_from": "39", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:37.904679618Z" + "timestamp": "2025-11-27T04:03:19.469047-08:00" }, { "operation": "add_edge", - "rtt_ns": 659318, - "rtt_ms": 0.659318, + "rtt_ns": 1659625, + "rtt_ms": 1.659625, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:37.904865848Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.469097-08:00" }, { "operation": "add_edge", - "rtt_ns": 697058, - "rtt_ms": 0.697058, + "rtt_ns": 1993750, + "rtt_ms": 1.99375, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.904880328Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.469146-08:00" }, { "operation": "add_edge", - "rtt_ns": 999027, - "rtt_ms": 0.999027, + "rtt_ns": 1687125, + "rtt_ms": 1.687125, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.905569565Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.46916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357886, - "rtt_ms": 1.357886, + "rtt_ns": 1823209, + "rtt_ms": 1.823209, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:37.905592635Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.469241-08:00" }, { "operation": "add_edge", - "rtt_ns": 932557, - "rtt_ms": 0.932557, + "rtt_ns": 1738583, + "rtt_ms": 1.738583, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:37.905613195Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:19.469363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330966, - "rtt_ms": 1.330966, + "rtt_ns": 1098833, + "rtt_ms": 1.098833, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "755", - "timestamp": "2025-11-27T01:23:37.905627325Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.46963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444486, - "rtt_ms": 1.444486, + "rtt_ns": 1400500, + "rtt_ms": 1.4005, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:37.905679665Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.469793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079997, - "rtt_ms": 1.079997, + "rtt_ns": 1866125, + "rtt_ms": 1.866125, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "40", - "timestamp": "2025-11-27T01:23:37.905721375Z" + "vertex_to": "755", + "timestamp": "2025-11-27T04:03:19.470082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455136, - "rtt_ms": 1.455136, + "rtt_ns": 1433708, + "rtt_ms": 1.433708, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.906080804Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.470532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732255, - "rtt_ms": 1.732255, + "rtt_ns": 1190333, + "rtt_ms": 1.190333, "checkpoint": 0, - "vertex_from": "39", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:37.906408143Z" + "vertex_from": "40", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.470554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702454, - "rtt_ms": 1.702454, + "rtt_ns": 1409083, + "rtt_ms": 1.409083, "checkpoint": 0, "vertex_from": "39", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:37.906583872Z" + "timestamp": "2025-11-27T04:03:19.47057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539386, - "rtt_ms": 1.539386, + "rtt_ns": 1137167, + "rtt_ms": 1.137167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.907140261Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:19.470937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455796, - "rtt_ms": 1.455796, + "rtt_ns": 1780417, + "rtt_ms": 1.780417, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.907178691Z" + "vertex_from": "39", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.471023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590856, - "rtt_ms": 1.590856, + "rtt_ns": 2049000, + "rtt_ms": 2.049, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:37.907206001Z" + "vertex_from": "39", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.471097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150286, - "rtt_ms": 1.150286, + "rtt_ns": 1551208, + "rtt_ms": 1.551208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:37.9072326Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.471182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626325, - "rtt_ms": 1.626325, + "rtt_ns": 2054750, + "rtt_ms": 2.05475, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:37.90725478Z" + "vertex_from": "39", + "vertex_to": "856", + "timestamp": "2025-11-27T04:03:19.471202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708745, - "rtt_ms": 1.708745, + "rtt_ns": 2660209, + "rtt_ms": 2.660209, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.90727996Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:03:19.471637-08:00" }, { "operation": "add_edge", - "rtt_ns": 3021021, - "rtt_ms": 3.021021, + "rtt_ns": 2458875, + "rtt_ms": 2.458875, "checkpoint": 0, - "vertex_from": "39", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:37.907888469Z" + "vertex_from": "40", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.472542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275603, - "rtt_ms": 2.275603, + "rtt_ns": 2009167, + "rtt_ms": 2.009167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:37.907957058Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.472542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637725, - "rtt_ms": 1.637725, + "rtt_ns": 1660625, + "rtt_ms": 1.660625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:37.908047008Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.472599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343536, - "rtt_ms": 1.343536, + "rtt_ns": 2048500, + "rtt_ms": 2.0485, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:37.908486187Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:19.472604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917365, - "rtt_ms": 1.917365, + "rtt_ns": 2033375, + "rtt_ms": 2.033375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.908502697Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:19.472605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342976, - "rtt_ms": 1.342976, + "rtt_ns": 2591834, + "rtt_ms": 2.591834, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:37.908576266Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:19.473776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435795, - "rtt_ms": 1.435795, + "rtt_ns": 2817667, + "rtt_ms": 2.817667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:37.908615756Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.473844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446855, - "rtt_ms": 1.446855, + "rtt_ns": 2706042, + "rtt_ms": 2.706042, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:37.908654056Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.473908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409696, - "rtt_ms": 1.409696, + "rtt_ns": 2862375, + "rtt_ms": 2.862375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:37.908690876Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.473961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460436, - "rtt_ms": 1.460436, + "rtt_ns": 2386708, + "rtt_ms": 2.386708, "checkpoint": 0, "vertex_from": "40", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:37.908716166Z" + "timestamp": "2025-11-27T04:03:19.474025-08:00" }, { "operation": "add_edge", - "rtt_ns": 756218, - "rtt_ms": 0.756218, + "rtt_ns": 2093917, + "rtt_ms": 2.093917, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:37.908806256Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.474695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432286, - "rtt_ms": 1.432286, + "rtt_ns": 2473542, + "rtt_ms": 2.473542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:37.909391044Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:19.475018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519765, - "rtt_ms": 1.519765, + "rtt_ns": 2469458, + "rtt_ms": 2.469458, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:37.909410864Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:19.475075-08:00" }, { "operation": "add_edge", - "rtt_ns": 918467, - "rtt_ms": 0.918467, + "rtt_ns": 1357292, + "rtt_ms": 1.357292, "checkpoint": 0, "vertex_from": "40", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.909422994Z" + "timestamp": "2025-11-27T04:03:19.475137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511916, - "rtt_ms": 1.511916, + "rtt_ns": 2600875, + "rtt_ms": 2.600875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:37.910167252Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.475146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705535, - "rtt_ms": 1.705535, + "rtt_ns": 1207750, + "rtt_ms": 1.20775, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:37.910193442Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:19.47517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503526, - "rtt_ms": 1.503526, + "rtt_ns": 1364458, + "rtt_ms": 1.364458, "checkpoint": 0, "vertex_from": "40", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.910195212Z" + "timestamp": "2025-11-27T04:03:19.475391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390486, - "rtt_ms": 1.390486, + "rtt_ns": 1540292, + "rtt_ms": 1.540292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:37.910198142Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.47545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622826, - "rtt_ms": 1.622826, + "rtt_ns": 1620791, + "rtt_ms": 1.620791, "checkpoint": 0, "vertex_from": "40", "vertex_to": "916", - "timestamp": "2025-11-27T01:23:37.910200652Z" + "timestamp": "2025-11-27T04:03:19.475466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606236, - "rtt_ms": 1.606236, + "rtt_ns": 1492000, + "rtt_ms": 1.492, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:37.910224092Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:19.476189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509516, - "rtt_ms": 1.509516, + "rtt_ns": 1299042, + "rtt_ms": 1.299042, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:37.910226532Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.476319-08:00" }, { "operation": "add_edge", - "rtt_ns": 977617, - "rtt_ms": 0.977617, + "rtt_ns": 1260417, + "rtt_ms": 1.260417, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.910402071Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.476337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692055, - "rtt_ms": 1.692055, + "rtt_ns": 1443084, + "rtt_ms": 1.443084, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:37.911104279Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.476591-08:00" }, { "operation": "add_edge", - "rtt_ns": 956487, - "rtt_ms": 0.956487, + "rtt_ns": 1425625, + "rtt_ms": 1.425625, "checkpoint": 0, "vertex_from": "40", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:37.911124869Z" + "timestamp": "2025-11-27T04:03:19.476597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011427, - "rtt_ms": 1.011427, + "rtt_ns": 1493584, + "rtt_ms": 1.493584, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:37.911208109Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.476632-08:00" }, { "operation": "add_edge", - "rtt_ns": 985347, - "rtt_ms": 0.985347, + "rtt_ns": 1381542, + "rtt_ms": 1.381542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:37.911213389Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.476834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014027, - "rtt_ms": 1.014027, + "rtt_ns": 1495916, + "rtt_ms": 1.495916, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:37.911242189Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:19.476888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104796, - "rtt_ms": 1.104796, + "rtt_ns": 1832166, + "rtt_ms": 1.832166, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:37.911299368Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.4773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118006, - "rtt_ms": 1.118006, + "rtt_ns": 1644167, + "rtt_ms": 1.644167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.911318148Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:19.477982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926784, - "rtt_ms": 1.926784, + "rtt_ns": 1402292, + "rtt_ms": 1.402292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.911319418Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.478039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738514, - "rtt_ms": 1.738514, + "rtt_ns": 1909292, + "rtt_ms": 1.909292, "checkpoint": 0, "vertex_from": "40", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.911940686Z" + "timestamp": "2025-11-27T04:03:19.4781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551665, - "rtt_ms": 1.551665, + "rtt_ns": 1526292, + "rtt_ms": 1.526292, "checkpoint": 0, "vertex_from": "40", "vertex_to": "934", - "timestamp": "2025-11-27T01:23:37.911955816Z" + "timestamp": "2025-11-27T04:03:19.47812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852525, - "rtt_ms": 1.852525, + "rtt_ns": 1823125, + "rtt_ms": 1.823125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:37.912980794Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:03:19.478422-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035204, - "rtt_ms": 2.035204, + "rtt_ns": 1138250, + "rtt_ms": 1.13825, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "286", - "timestamp": "2025-11-27T01:23:37.913141353Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.47844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973924, - "rtt_ms": 1.973924, + "rtt_ns": 1604334, + "rtt_ms": 1.604334, "checkpoint": 0, "vertex_from": "40", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:37.913184093Z" + "timestamp": "2025-11-27T04:03:19.478441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995334, - "rtt_ms": 1.995334, + "rtt_ns": 2139417, + "rtt_ms": 2.139417, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:37.913210493Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.478459-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023834, - "rtt_ms": 2.023834, + "rtt_ns": 1749458, + "rtt_ms": 1.749458, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.913267723Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:19.478639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126524, - "rtt_ms": 2.126524, + "rtt_ns": 1214041, + "rtt_ms": 1.214041, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.913447172Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:19.479335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2170234, - "rtt_ms": 2.170234, + "rtt_ns": 1533084, + "rtt_ms": 1.533084, "checkpoint": 0, "vertex_from": "40", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:37.913471782Z" + "timestamp": "2025-11-27T04:03:19.479518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646256, - "rtt_ms": 1.646256, + "rtt_ns": 1741750, + "rtt_ms": 1.74175, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:37.913588752Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.479843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651306, - "rtt_ms": 1.651306, + "rtt_ns": 1393375, + "rtt_ms": 1.393375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.913608162Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.479854-08:00" }, { "operation": "add_edge", - "rtt_ns": 2961222, - "rtt_ms": 2.961222, + "rtt_ns": 1828959, + "rtt_ms": 1.828959, "checkpoint": 0, "vertex_from": "40", "vertex_to": "543", - "timestamp": "2025-11-27T01:23:37.91428199Z" + "timestamp": "2025-11-27T04:03:19.479869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752715, - "rtt_ms": 1.752715, + "rtt_ns": 1487625, + "rtt_ms": 1.487625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.914895138Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.479911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932074, - "rtt_ms": 1.932074, + "rtt_ns": 1602917, + "rtt_ms": 1.602917, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:37.914914898Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.480045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731625, - "rtt_ms": 1.731625, + "rtt_ns": 1422625, + "rtt_ms": 1.422625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:37.914916988Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.480063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524386, - "rtt_ms": 1.524386, + "rtt_ns": 1643041, + "rtt_ms": 1.643041, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:37.914997738Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.480084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851635, - "rtt_ms": 1.851635, + "rtt_ns": 1440875, + "rtt_ms": 1.440875, "checkpoint": 0, "vertex_from": "40", "vertex_to": "166", - "timestamp": "2025-11-27T01:23:37.915120568Z" + "timestamp": "2025-11-27T04:03:19.480777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926225, - "rtt_ms": 1.926225, + "rtt_ns": 1133166, + "rtt_ms": 1.133166, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:37.915139268Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.481021-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1697795, - "rtt_ms": 1.697795, + "rtt_ns": 1632792, + "rtt_ms": 1.632792, "checkpoint": 0, "vertex_from": "973", - "timestamp": "2025-11-27T01:23:37.915148277Z" + "timestamp": "2025-11-27T04:03:19.481155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561355, - "rtt_ms": 1.561355, + "rtt_ns": 1532208, + "rtt_ms": 1.532208, "checkpoint": 0, "vertex_from": "40", "vertex_to": "408", - "timestamp": "2025-11-27T01:23:37.915151717Z" + "timestamp": "2025-11-27T04:03:19.481387-08:00" }, { "operation": "add_edge", - "rtt_ns": 974377, - "rtt_ms": 0.974377, + "rtt_ns": 1504625, + "rtt_ms": 1.504625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:37.915871205Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.481417-08:00" }, { "operation": "add_edge", - "rtt_ns": 2400253, - "rtt_ms": 2.400253, + "rtt_ns": 1513292, + "rtt_ms": 1.513292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:37.916010285Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.481598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211777, - "rtt_ms": 1.211777, + "rtt_ns": 1612333, + "rtt_ms": 1.612333, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.916130675Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.481658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215347, - "rtt_ms": 1.215347, + "rtt_ns": 1651209, + "rtt_ms": 1.651209, "checkpoint": 0, "vertex_from": "40", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.916131455Z" + "timestamp": "2025-11-27T04:03:19.481715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135297, - "rtt_ms": 1.135297, + "rtt_ns": 1880625, + "rtt_ms": 1.880625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:37.916134635Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.481724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949364, - "rtt_ms": 1.949364, + "rtt_ns": 1725541, + "rtt_ms": 1.725541, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:37.916232514Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:19.482506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807985, - "rtt_ms": 1.807985, + "rtt_ns": 1541375, + "rtt_ms": 1.541375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:37.916961532Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.482565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857545, - "rtt_ms": 1.857545, + "rtt_ns": 1432500, + "rtt_ms": 1.4325, "checkpoint": 0, "vertex_from": "40", "vertex_to": "973", - "timestamp": "2025-11-27T01:23:37.917006222Z" + "timestamp": "2025-11-27T04:03:19.482588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907044, - "rtt_ms": 1.907044, + "rtt_ns": 2252833, + "rtt_ms": 2.252833, "checkpoint": 0, "vertex_from": "40", "vertex_to": "146", - "timestamp": "2025-11-27T01:23:37.917047292Z" + "timestamp": "2025-11-27T04:03:19.483644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957934, - "rtt_ms": 1.957934, + "rtt_ns": 11115458, + "rtt_ms": 11.115458, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:37.917081482Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.483722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249427, - "rtt_ms": 1.249427, + "rtt_ns": 2169541, + "rtt_ms": 2.169541, "checkpoint": 0, "vertex_from": "40", "vertex_to": "63", - "timestamp": "2025-11-27T01:23:37.917122692Z" + "timestamp": "2025-11-27T04:03:19.483769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445096, - "rtt_ms": 1.445096, + "rtt_ns": 2369500, + "rtt_ms": 2.3695, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:37.917458641Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.483787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358256, - "rtt_ms": 1.358256, + "rtt_ns": 2282917, + "rtt_ms": 2.282917, "checkpoint": 0, "vertex_from": "40", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:37.917491191Z" + "timestamp": "2025-11-27T04:03:19.484009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403735, - "rtt_ms": 1.403735, + "rtt_ns": 2635458, + "rtt_ms": 2.635458, "checkpoint": 0, "vertex_from": "40", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:37.91753609Z" + "timestamp": "2025-11-27T04:03:19.484352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442895, - "rtt_ms": 1.442895, + "rtt_ns": 1811292, + "rtt_ms": 1.811292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "151", - "timestamp": "2025-11-27T01:23:37.91757887Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:19.484378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349596, - "rtt_ms": 1.349596, + "rtt_ns": 2765083, + "rtt_ms": 2.765083, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:37.9175838Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:19.484426-08:00" }, { "operation": "add_edge", - "rtt_ns": 782868, - "rtt_ms": 0.782868, + "rtt_ns": 2206583, + "rtt_ms": 2.206583, "checkpoint": 0, "vertex_from": "40", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:37.91774627Z" + "timestamp": "2025-11-27T04:03:19.484796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209186, - "rtt_ms": 1.209186, + "rtt_ns": 2399959, + "rtt_ms": 2.399959, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:37.918291748Z" + "vertex_to": "151", + "timestamp": "2025-11-27T04:03:19.484909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199176, - "rtt_ms": 1.199176, + "rtt_ns": 1726959, + "rtt_ms": 1.726959, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.918322678Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.485373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350526, - "rtt_ms": 1.350526, + "rtt_ns": 1605041, + "rtt_ms": 1.605041, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:37.918400268Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:19.485375-08:00" }, { "operation": "add_edge", - "rtt_ns": 928677, - "rtt_ms": 0.928677, + "rtt_ns": 1611875, + "rtt_ms": 1.611875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:37.918420928Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.485401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440876, - "rtt_ms": 1.440876, + "rtt_ns": 1784042, + "rtt_ms": 1.784042, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.918448178Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.485509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009967, - "rtt_ms": 1.009967, + "rtt_ns": 1663625, + "rtt_ms": 1.663625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:37.918469888Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:19.486044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215017, - "rtt_ms": 1.215017, + "rtt_ns": 2053125, + "rtt_ms": 2.053125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:37.918800367Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:19.486063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887195, - "rtt_ms": 1.887195, + "rtt_ns": 1727375, + "rtt_ms": 1.727375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:37.919424225Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.48608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879125, - "rtt_ms": 1.879125, + "rtt_ns": 1669375, + "rtt_ms": 1.669375, "checkpoint": 0, "vertex_from": "40", "vertex_to": "692", - "timestamp": "2025-11-27T01:23:37.919459065Z" + "timestamp": "2025-11-27T04:03:19.486096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715315, - "rtt_ms": 1.715315, + "rtt_ns": 1316250, + "rtt_ms": 1.31625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:37.919462635Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:19.486115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487805, - "rtt_ms": 1.487805, + "rtt_ns": 1321083, + "rtt_ms": 1.321083, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:37.919889623Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.486231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114594, - "rtt_ms": 2.114594, + "rtt_ns": 1688583, + "rtt_ms": 1.688583, "checkpoint": 0, "vertex_from": "40", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:37.920439222Z" + "timestamp": "2025-11-27T04:03:19.487066-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121074, - "rtt_ms": 2.121074, + "rtt_ns": 1782084, + "rtt_ms": 1.782084, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:37.920570362Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:19.487185-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362333, - "rtt_ms": 2.362333, + "rtt_ns": 1859333, + "rtt_ms": 1.859333, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "459", - "timestamp": "2025-11-27T01:23:37.920833281Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:19.487234-08:00" }, { "operation": "add_edge", - "rtt_ns": 2593403, - "rtt_ms": 2.593403, + "rtt_ns": 1872875, + "rtt_ms": 1.872875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:37.920886501Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:19.487384-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206383, - "rtt_ms": 2.206383, + "rtt_ns": 1362458, + "rtt_ms": 1.362458, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:37.92100879Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:19.487408-08:00" }, { "operation": "add_edge", - "rtt_ns": 2755802, - "rtt_ms": 2.755802, + "rtt_ns": 1314291, + "rtt_ms": 1.314291, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:37.92117815Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.487411-08:00" }, { "operation": "add_edge", - "rtt_ns": 2314583, - "rtt_ms": 2.314583, + "rtt_ns": 1532917, + "rtt_ms": 1.532917, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:37.921740078Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:03:19.487597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2365523, - "rtt_ms": 2.365523, + "rtt_ns": 1586292, + "rtt_ms": 1.586292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:37.921825608Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:19.487667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2404233, - "rtt_ms": 2.404233, + "rtt_ns": 1457834, + "rtt_ms": 1.457834, "checkpoint": 0, "vertex_from": "40", "vertex_to": "52", - "timestamp": "2025-11-27T01:23:37.921867878Z" + "timestamp": "2025-11-27T04:03:19.48769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073005, - "rtt_ms": 2.073005, + "rtt_ns": 1332875, + "rtt_ms": 1.332875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:37.921963958Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.488568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524346, - "rtt_ms": 1.524346, + "rtt_ns": 1403250, + "rtt_ms": 1.40325, "checkpoint": 0, "vertex_from": "40", "vertex_to": "376", - "timestamp": "2025-11-27T01:23:37.921965548Z" + "timestamp": "2025-11-27T04:03:19.488589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760995, - "rtt_ms": 1.760995, + "rtt_ns": 1595208, + "rtt_ms": 1.595208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "44", - "timestamp": "2025-11-27T01:23:37.922595436Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:19.489009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709675, - "rtt_ms": 1.709675, + "rtt_ns": 1648083, + "rtt_ms": 1.648083, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "49", - "timestamp": "2025-11-27T01:23:37.922597076Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:03:19.489033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426286, - "rtt_ms": 1.426286, + "rtt_ns": 1976167, + "rtt_ms": 1.976167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:37.922605716Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.489045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603436, - "rtt_ms": 1.603436, + "rtt_ns": 1400375, + "rtt_ms": 1.400375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:37.922613786Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:19.489092-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101684, - "rtt_ms": 2.101684, + "rtt_ns": 1559375, + "rtt_ms": 1.559375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:37.922673076Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:19.489158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640925, - "rtt_ms": 1.640925, + "rtt_ns": 1771750, + "rtt_ms": 1.77175, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:37.923467813Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:03:19.489181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743165, - "rtt_ms": 1.743165, + "rtt_ns": 1544292, + "rtt_ms": 1.544292, "checkpoint": 0, "vertex_from": "40", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:37.923484253Z" + "timestamp": "2025-11-27T04:03:19.489212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616375, - "rtt_ms": 1.616375, + "rtt_ns": 1504208, + "rtt_ms": 1.504208, "checkpoint": 0, "vertex_from": "40", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:37.923484993Z" + "timestamp": "2025-11-27T04:03:19.490075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608785, - "rtt_ms": 1.608785, + "rtt_ns": 1086000, + "rtt_ms": 1.086, "checkpoint": 0, "vertex_from": "40", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:37.923575863Z" + "timestamp": "2025-11-27T04:03:19.490096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693415, - "rtt_ms": 1.693415, + "rtt_ns": 1805000, + "rtt_ms": 1.805, "checkpoint": 0, "vertex_from": "40", "vertex_to": "913", - "timestamp": "2025-11-27T01:23:37.923658343Z" + "timestamp": "2025-11-27T04:03:19.490396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895634, - "rtt_ms": 1.895634, + "rtt_ns": 1337417, + "rtt_ms": 1.337417, "checkpoint": 0, "vertex_from": "40", "vertex_to": "354", - "timestamp": "2025-11-27T01:23:37.92457018Z" + "timestamp": "2025-11-27T04:03:19.49052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997564, - "rtt_ms": 1.997564, + "rtt_ns": 1520667, + "rtt_ms": 1.520667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "590", - "timestamp": "2025-11-27T01:23:37.92460493Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:03:19.49068-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2078374, - "rtt_ms": 2.078374, + "operation": "add_vertex", + "rtt_ns": 1512750, + "rtt_ms": 1.51275, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:37.92467557Z" + "vertex_from": "728", + "timestamp": "2025-11-27T04:03:19.490732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058964, - "rtt_ms": 2.058964, + "rtt_ns": 1845458, + "rtt_ms": 1.845458, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "837", - "timestamp": "2025-11-27T01:23:37.9246768Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:03:19.49094-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089414, - "rtt_ms": 2.089414, + "rtt_ns": 1962125, + "rtt_ms": 1.962125, "checkpoint": 0, "vertex_from": "40", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:37.92468925Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1733755, - "rtt_ms": 1.733755, - "checkpoint": 0, - "vertex_from": "728", - "timestamp": "2025-11-27T01:23:37.925207218Z" + "timestamp": "2025-11-27T04:03:19.491008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753475, - "rtt_ms": 1.753475, + "rtt_ns": 2278958, + "rtt_ms": 2.278958, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:37.925239608Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.491314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789355, - "rtt_ms": 1.789355, + "rtt_ns": 5857583, + "rtt_ms": 5.857583, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:37.925366278Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.491976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726215, - "rtt_ms": 1.726215, + "rtt_ns": 1479792, + "rtt_ms": 1.479792, "checkpoint": 0, "vertex_from": "40", "vertex_to": "457", - "timestamp": "2025-11-27T01:23:37.925385428Z" + "timestamp": "2025-11-27T04:03:19.492001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922475, - "rtt_ms": 1.922475, + "rtt_ns": 1920833, + "rtt_ms": 1.920833, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:37.925408498Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1419466, - "rtt_ms": 1.419466, - "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:37.926096116Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:19.492017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532756, - "rtt_ms": 1.532756, + "rtt_ns": 1630625, + "rtt_ms": 1.630625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:37.926104576Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.492027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503085, - "rtt_ms": 1.503085, + "rtt_ns": 1969125, + "rtt_ms": 1.969125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:37.926181095Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:19.492045-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1696055, - "rtt_ms": 1.696055, + "rtt_ns": 2219250, + "rtt_ms": 2.21925, "checkpoint": 0, "vertex_from": "985", - "timestamp": "2025-11-27T01:23:37.926303565Z" + "timestamp": "2025-11-27T04:03:19.493161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124497, - "rtt_ms": 1.124497, + "rtt_ns": 2445542, + "rtt_ms": 2.445542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:37.926365125Z" + "vertex_to": "728", + "timestamp": "2025-11-27T04:03:19.493178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163997, - "rtt_ms": 1.163997, + "rtt_ns": 2399875, + "rtt_ms": 2.399875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "728", - "timestamp": "2025-11-27T01:23:37.926371675Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.493409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691255, - "rtt_ms": 1.691255, + "rtt_ns": 2159583, + "rtt_ms": 2.159583, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:37.926382645Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:19.493475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753894, - "rtt_ms": 1.753894, + "rtt_ns": 1801750, + "rtt_ms": 1.80175, "checkpoint": 0, "vertex_from": "40", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:37.927163522Z" + "timestamp": "2025-11-27T04:03:19.493848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815784, - "rtt_ms": 1.815784, + "rtt_ns": 1874792, + "rtt_ms": 1.874792, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:37.927183362Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.493877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793534, - "rtt_ms": 1.793534, + "rtt_ns": 2082834, + "rtt_ms": 2.082834, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:37.927184242Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.49406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300616, - "rtt_ms": 1.300616, + "rtt_ns": 2047667, + "rtt_ms": 2.047667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:37.927407322Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:19.494076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341836, - "rtt_ms": 1.341836, + "rtt_ns": 2236542, + "rtt_ms": 2.236542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:37.927726751Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.494255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438536, - "rtt_ms": 1.438536, + "rtt_ns": 2570166, + "rtt_ms": 2.570166, "checkpoint": 0, "vertex_from": "40", "vertex_to": "985", - "timestamp": "2025-11-27T01:23:37.927742411Z" + "timestamp": "2025-11-27T04:03:19.495732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701365, - "rtt_ms": 1.701365, + "rtt_ns": 2281583, + "rtt_ms": 2.281583, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:37.927798871Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:19.495758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455255, - "rtt_ms": 1.455255, + "rtt_ns": 5083583, + "rtt_ms": 5.083583, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:37.92782367Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:19.495765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451235, - "rtt_ms": 1.451235, + "rtt_ns": 2367334, + "rtt_ms": 2.367334, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:37.92782428Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:19.495778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731865, - "rtt_ms": 1.731865, + "rtt_ns": 2651667, + "rtt_ms": 2.651667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:37.92791478Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:03:19.495833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161377, - "rtt_ms": 1.161377, + "rtt_ns": 1824750, + "rtt_ms": 1.82475, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "217", - "timestamp": "2025-11-27T01:23:37.928346349Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.495902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209067, - "rtt_ms": 1.209067, + "rtt_ns": 2093250, + "rtt_ms": 2.09325, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:37.928394979Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:19.495943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439146, - "rtt_ms": 1.439146, + "rtt_ns": 2081000, + "rtt_ms": 2.081, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:37.928605188Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:19.495959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248076, - "rtt_ms": 1.248076, + "rtt_ns": 2168625, + "rtt_ms": 2.168625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:37.928657358Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:19.496231-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2685625, + "rtt_ms": 2.685625, + "checkpoint": 0, + "vertex_from": "40", + "vertex_to": "217", + "timestamp": "2025-11-27T04:03:19.496941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676245, - "rtt_ms": 1.676245, + "rtt_ns": 1679792, + "rtt_ms": 1.679792, "checkpoint": 0, "vertex_from": "40", "vertex_to": "549", - "timestamp": "2025-11-27T01:23:37.929404496Z" + "timestamp": "2025-11-27T04:03:19.497448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783784, - "rtt_ms": 1.783784, + "rtt_ns": 1691291, + "rtt_ms": 1.691291, "checkpoint": 0, "vertex_from": "40", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:37.929527645Z" + "timestamp": "2025-11-27T04:03:19.49747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142964, - "rtt_ms": 2.142964, + "rtt_ns": 1644792, + "rtt_ms": 1.644792, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:37.929968924Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:03:19.497549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689995, - "rtt_ms": 1.689995, + "rtt_ns": 1919375, + "rtt_ms": 1.919375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:37.930037734Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:19.497653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281214, - "rtt_ms": 2.281214, + "rtt_ns": 1943542, + "rtt_ms": 1.943542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:37.930106754Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.497702-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1809917, + "rtt_ms": 1.809917, + "checkpoint": 0, + "vertex_from": "40", + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:19.498044-08:00" }, { "operation": "add_edge", - "rtt_ns": 2336153, - "rtt_ms": 2.336153, + "rtt_ns": 2358500, + "rtt_ms": 2.3585, "checkpoint": 0, "vertex_from": "40", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:37.930136774Z" + "timestamp": "2025-11-27T04:03:19.498194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340823, - "rtt_ms": 2.340823, + "rtt_ns": 2471959, + "rtt_ms": 2.471959, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "42", - "timestamp": "2025-11-27T01:23:37.930257083Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:03:19.498417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949464, - "rtt_ms": 1.949464, + "rtt_ns": 2031792, + "rtt_ms": 2.031792, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "60", - "timestamp": "2025-11-27T01:23:37.930345433Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:19.499503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811705, - "rtt_ms": 1.811705, + "rtt_ns": 1804500, + "rtt_ms": 1.8045, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:37.930417943Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:03:19.49951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768455, - "rtt_ms": 1.768455, + "rtt_ns": 2083667, + "rtt_ms": 2.083667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:37.930427073Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:19.499738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230236, - "rtt_ms": 1.230236, + "rtt_ns": 2449791, + "rtt_ms": 2.449791, "checkpoint": 0, "vertex_from": "40", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:37.930636032Z" + "timestamp": "2025-11-27T04:03:19.500002-08:00" }, { "operation": "add_edge", - "rtt_ns": 746358, - "rtt_ms": 0.746358, + "rtt_ns": 1823625, + "rtt_ms": 1.823625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "91", - "timestamp": "2025-11-27T01:23:37.930716142Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:19.50002-08:00" }, { "operation": "add_edge", - "rtt_ns": 832227, - "rtt_ms": 0.832227, + "rtt_ns": 1990542, + "rtt_ms": 1.990542, "checkpoint": 0, "vertex_from": "40", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:37.930870541Z" + "timestamp": "2025-11-27T04:03:19.500036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362106, - "rtt_ms": 1.362106, + "rtt_ns": 2630000, + "rtt_ms": 2.63, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:37.930890731Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:19.500079-08:00" }, { "operation": "add_edge", - "rtt_ns": 767647, - "rtt_ms": 0.767647, + "rtt_ns": 1713875, + "rtt_ms": 1.713875, "checkpoint": 0, "vertex_from": "40", "vertex_to": "173", - "timestamp": "2025-11-27T01:23:37.930905191Z" + "timestamp": "2025-11-27T04:03:19.500132-08:00" }, { "operation": "add_edge", - "rtt_ns": 680288, - "rtt_ms": 0.680288, + "rtt_ns": 1333500, + "rtt_ms": 1.3335, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:37.930938261Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:19.500846-08:00" }, { "operation": "add_edge", - "rtt_ns": 853787, - "rtt_ms": 0.853787, + "rtt_ns": 1357459, + "rtt_ms": 1.357459, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:37.930961391Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:19.501394-08:00" }, { "operation": "add_edge", - "rtt_ns": 775497, - "rtt_ms": 0.775497, + "rtt_ns": 1408417, + "rtt_ms": 1.408417, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:37.93119437Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:19.501411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401966, - "rtt_ms": 1.401966, + "rtt_ns": 1923125, + "rtt_ms": 1.923125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:37.931748299Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.501428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194497, - "rtt_ms": 1.194497, + "rtt_ns": 1705500, + "rtt_ms": 1.7055, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "405", - "timestamp": "2025-11-27T01:23:37.931831499Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:19.501445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019247, - "rtt_ms": 1.019247, + "rtt_ns": 1553542, + "rtt_ms": 1.553542, "checkpoint": 0, "vertex_from": "40", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:37.931890448Z" + "timestamp": "2025-11-27T04:03:19.501634-08:00" }, { "operation": "add_edge", - "rtt_ns": 995287, - "rtt_ms": 0.995287, + "rtt_ns": 1630459, + "rtt_ms": 1.630459, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "331", - "timestamp": "2025-11-27T01:23:37.931934678Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:03:19.501651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527185, - "rtt_ms": 1.527185, + "rtt_ns": 1535333, + "rtt_ms": 1.535333, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:37.931956198Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:03:19.501668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083397, - "rtt_ms": 1.083397, + "rtt_ns": 5840875, + "rtt_ms": 5.840875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "358", - "timestamp": "2025-11-27T01:23:37.931989538Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:03:19.501801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172977, - "rtt_ms": 1.172977, + "rtt_ns": 1521167, + "rtt_ms": 1.521167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:37.932065548Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.502933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967834, - "rtt_ms": 1.967834, + "rtt_ns": 1526750, + "rtt_ms": 1.52675, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:37.932684666Z" + "vertex_from": "41", + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.502956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747415, - "rtt_ms": 1.747415, + "rtt_ns": 1590125, + "rtt_ms": 1.590125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:37.932709806Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:03:19.502985-08:00" }, { "operation": "add_edge", - "rtt_ns": 2425394, - "rtt_ms": 2.425394, + "rtt_ns": 1554625, + "rtt_ms": 1.554625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:37.933621544Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.503-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2172375, + "rtt_ms": 2.172375, + "checkpoint": 0, + "vertex_from": "40", + "vertex_to": "358", + "timestamp": "2025-11-27T04:03:19.50302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749165, - "rtt_ms": 1.749165, + "rtt_ns": 1815458, + "rtt_ms": 1.815458, "checkpoint": 0, "vertex_from": "41", "vertex_to": "84", - "timestamp": "2025-11-27T01:23:37.933706823Z" + "timestamp": "2025-11-27T04:03:19.503617-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356144, - "rtt_ms": 2.356144, + "rtt_ns": 1983334, + "rtt_ms": 1.983334, "checkpoint": 0, "vertex_from": "41", "vertex_to": "82", - "timestamp": "2025-11-27T01:23:37.934291482Z" + "timestamp": "2025-11-27T04:03:19.503653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2625572, - "rtt_ms": 2.625572, + "rtt_ns": 2354208, + "rtt_ms": 2.354208, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.934374521Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.503989-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2416803, - "rtt_ms": 2.416803, + "operation": "add_vertex", + "rtt_ns": 1719166, + "rtt_ms": 1.719166, "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:37.934407081Z" + "vertex_from": "59", + "timestamp": "2025-11-27T04:03:19.505341-08:00" }, { "operation": "add_edge", - "rtt_ns": 2543143, - "rtt_ms": 2.543143, + "rtt_ns": 2618000, + "rtt_ms": 2.618, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:37.934434371Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.505639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443753, - "rtt_ms": 2.443753, + "rtt_ns": 2007625, + "rtt_ms": 2.007625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:37.934510171Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.505661-08:00" }, { "operation": "add_edge", - "rtt_ns": 2721762, - "rtt_ms": 2.721762, + "rtt_ns": 2678000, + "rtt_ms": 2.678, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:37.934554171Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.505667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383643, - "rtt_ms": 2.383643, + "rtt_ns": 2008542, + "rtt_ms": 2.008542, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:37.935070299Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.505999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2402313, - "rtt_ms": 2.402313, + "rtt_ns": 3083208, + "rtt_ms": 3.083208, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:37.935114019Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:19.506018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572226, - "rtt_ms": 1.572226, + "rtt_ns": 9081792, + "rtt_ms": 9.081792, "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:37.935201309Z" + "vertex_from": "40", + "vertex_to": "60", + "timestamp": "2025-11-27T04:03:19.506024-08:00" }, { "operation": "add_edge", - "rtt_ns": 904048, - "rtt_ms": 0.904048, + "rtt_ns": 3081292, + "rtt_ms": 3.081292, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:37.935279649Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:03:19.506038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104037, - "rtt_ms": 1.104037, + "rtt_ns": 3066209, + "rtt_ms": 3.066209, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.935398289Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.506067-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1711615, - "rtt_ms": 1.711615, + "operation": "add_edge", + "rtt_ns": 1423209, + "rtt_ms": 1.423209, "checkpoint": 0, - "vertex_from": "59", - "timestamp": "2025-11-27T01:23:37.935424988Z" + "vertex_from": "41", + "vertex_to": "59", + "timestamp": "2025-11-27T04:03:19.506765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006657, - "rtt_ms": 1.006657, + "rtt_ns": 1167167, + "rtt_ms": 1.167167, "checkpoint": 0, "vertex_from": "41", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:37.935441758Z" + "timestamp": "2025-11-27T04:03:19.506829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142777, - "rtt_ms": 1.142777, + "rtt_ns": 1645083, + "rtt_ms": 1.645083, "checkpoint": 0, "vertex_from": "41", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.935550838Z" + "timestamp": "2025-11-27T04:03:19.507285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693325, - "rtt_ms": 1.693325, + "rtt_ns": 1674042, + "rtt_ms": 1.674042, "checkpoint": 0, "vertex_from": "41", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:37.936205056Z" + "timestamp": "2025-11-27T04:03:19.507344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690535, - "rtt_ms": 1.690535, + "rtt_ns": 1690083, + "rtt_ms": 1.690083, "checkpoint": 0, "vertex_from": "41", "vertex_to": "289", - "timestamp": "2025-11-27T01:23:37.936251946Z" + "timestamp": "2025-11-27T04:03:19.50769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147707, - "rtt_ms": 1.147707, + "rtt_ns": 1641208, + "rtt_ms": 1.641208, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:37.936262806Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:19.507711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214977, - "rtt_ms": 1.214977, + "rtt_ns": 1672750, + "rtt_ms": 1.67275, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:37.936286716Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.507711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130147, - "rtt_ms": 1.130147, + "rtt_ns": 1710917, + "rtt_ms": 1.710917, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:37.936332466Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:19.50773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593055, - "rtt_ms": 1.593055, + "rtt_ns": 1748458, + "rtt_ms": 1.748458, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:37.937145383Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.507774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899264, - "rtt_ms": 1.899264, + "rtt_ns": 1607250, + "rtt_ms": 1.60725, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.937306123Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:19.508438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880205, - "rtt_ms": 1.880205, + "rtt_ns": 1688667, + "rtt_ms": 1.688667, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "59", - "timestamp": "2025-11-27T01:23:37.937305973Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.508456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025557, - "rtt_ms": 1.025557, + "rtt_ns": 1542000, + "rtt_ms": 1.542, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:37.937360643Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.50883-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1118227, - "rtt_ms": 1.118227, + "operation": "add_vertex", + "rtt_ns": 1637166, + "rtt_ms": 1.637166, "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:37.937371643Z" + "vertex_from": "667", + "timestamp": "2025-11-27T04:03:19.508984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156606, - "rtt_ms": 1.156606, + "rtt_ns": 1310250, + "rtt_ms": 1.31025, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:37.937444132Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1354426, - "rtt_ms": 1.354426, - "checkpoint": 0, - "vertex_from": "667", - "timestamp": "2025-11-27T01:23:37.937564412Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:19.509002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578115, - "rtt_ms": 1.578115, + "rtt_ns": 1465250, + "rtt_ms": 1.46525, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.937842341Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.509196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2920401, - "rtt_ms": 2.920401, + "rtt_ns": 1847833, + "rtt_ms": 1.847833, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:37.93820213Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.50956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2800272, - "rtt_ms": 2.800272, + "rtt_ns": 1896958, + "rtt_ms": 1.896958, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:37.93824434Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:19.509611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293227, - "rtt_ms": 1.293227, + "rtt_ns": 1844083, + "rtt_ms": 1.844083, "checkpoint": 0, "vertex_from": "41", "vertex_to": "164", - "timestamp": "2025-11-27T01:23:37.93843979Z" + "timestamp": "2025-11-27T04:03:19.50962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344916, - "rtt_ms": 1.344916, + "rtt_ns": 1283834, + "rtt_ms": 1.283834, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:37.938655279Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.510117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408046, - "rtt_ms": 1.408046, + "rtt_ns": 1760208, + "rtt_ms": 1.760208, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:37.938853138Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.5102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512265, - "rtt_ms": 1.512265, + "rtt_ns": 1445333, + "rtt_ms": 1.445333, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:37.938874258Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.510642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579435, - "rtt_ms": 1.579435, + "rtt_ns": 2205917, + "rtt_ms": 2.205917, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.938888648Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:19.510662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454006, - "rtt_ms": 1.454006, + "rtt_ns": 1675750, + "rtt_ms": 1.67575, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "667", - "timestamp": "2025-11-27T01:23:37.939018708Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:19.510679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662185, - "rtt_ms": 1.662185, + "rtt_ns": 1710125, + "rtt_ms": 1.710125, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:37.939035268Z" + "vertex_to": "667", + "timestamp": "2025-11-27T04:03:19.510695-08:00" }, { "operation": "add_edge", - "rtt_ns": 872878, - "rtt_ms": 0.872878, + "rtt_ns": 9252917, + "rtt_ms": 9.252917, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:37.939075868Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.510905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264587, - "rtt_ms": 1.264587, + "rtt_ns": 1383333, + "rtt_ms": 1.383333, "checkpoint": 0, "vertex_from": "41", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:37.939107868Z" + "timestamp": "2025-11-27T04:03:19.510945-08:00" }, { "operation": "add_edge", - "rtt_ns": 691337, - "rtt_ms": 0.691337, + "rtt_ns": 1464000, + "rtt_ms": 1.464, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.939132097Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:19.511076-08:00" }, { "operation": "add_edge", - "rtt_ns": 889847, - "rtt_ms": 0.889847, + "rtt_ns": 1650417, + "rtt_ms": 1.650417, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:37.939135147Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:19.511851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165866, - "rtt_ms": 1.165866, + "rtt_ns": 1753125, + "rtt_ms": 1.753125, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:37.939822205Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.511871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656755, - "rtt_ms": 1.656755, + "rtt_ns": 1511625, + "rtt_ms": 1.511625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:37.940511963Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:19.512458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642095, - "rtt_ms": 1.642095, + "rtt_ns": 1868084, + "rtt_ms": 1.868084, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:37.940517593Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:19.512548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569655, - "rtt_ms": 1.569655, + "rtt_ns": 1861959, + "rtt_ms": 1.861959, "checkpoint": 0, "vertex_from": "41", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:37.940606113Z" + "timestamp": "2025-11-27T04:03:19.512768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891055, - "rtt_ms": 1.891055, + "rtt_ns": 2095792, + "rtt_ms": 2.095792, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:37.940781163Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:19.512792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957105, - "rtt_ms": 1.957105, + "rtt_ns": 1718625, + "rtt_ms": 1.718625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:37.941090182Z" + "vertex_to": "107", + "timestamp": "2025-11-27T04:03:19.512796-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086264, - "rtt_ms": 2.086264, + "rtt_ns": 2164875, + "rtt_ms": 2.164875, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:37.941106702Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:19.512808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039704, - "rtt_ms": 2.039704, + "rtt_ns": 2153334, + "rtt_ms": 2.153334, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:37.941116632Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:19.512817-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017043, - "rtt_ms": 2.017043, + "rtt_ns": 1412625, + "rtt_ms": 1.412625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "107", - "timestamp": "2025-11-27T01:23:37.941125821Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.513265-08:00" }, { "operation": "add_edge", - "rtt_ns": 2278814, - "rtt_ms": 2.278814, + "rtt_ns": 1411292, + "rtt_ms": 1.411292, "checkpoint": 0, "vertex_from": "41", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:37.941414921Z" + "timestamp": "2025-11-27T04:03:19.513283-08:00" }, { "operation": "add_edge", - "rtt_ns": 922558, - "rtt_ms": 0.922558, + "rtt_ns": 1230292, + "rtt_ms": 1.230292, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:37.941437041Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.514023-08:00" }, { "operation": "add_edge", - "rtt_ns": 948797, - "rtt_ms": 0.948797, + "rtt_ns": 1509459, + "rtt_ms": 1.509459, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:37.94146818Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:03:19.51406-08:00" }, { "operation": "add_edge", - "rtt_ns": 947957, - "rtt_ms": 0.947957, + "rtt_ns": 2262083, + "rtt_ms": 2.262083, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:37.9415552Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:19.514723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740385, - "rtt_ms": 1.740385, + "rtt_ns": 1925625, + "rtt_ms": 1.925625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:37.94156448Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:03:19.514745-08:00" }, { "operation": "add_edge", - "rtt_ns": 903777, - "rtt_ms": 0.903777, + "rtt_ns": 1992083, + "rtt_ms": 1.992083, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:37.94168624Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:03:19.514763-08:00" }, { "operation": "add_edge", - "rtt_ns": 875467, - "rtt_ms": 0.875467, + "rtt_ns": 2135625, + "rtt_ms": 2.135625, "checkpoint": 0, "vertex_from": "41", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:37.941967759Z" + "timestamp": "2025-11-27T04:03:19.514944-08:00" }, { "operation": "add_edge", - "rtt_ns": 875937, - "rtt_ms": 0.875937, + "rtt_ns": 1703500, + "rtt_ms": 1.7035, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:37.941984049Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:19.514987-08:00" }, { "operation": "add_edge", - "rtt_ns": 871607, - "rtt_ms": 0.871607, + "rtt_ns": 1858083, + "rtt_ms": 1.858083, "checkpoint": 0, "vertex_from": "41", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.941989539Z" + "timestamp": "2025-11-27T04:03:19.515124-08:00" }, { "operation": "add_edge", - "rtt_ns": 993148, - "rtt_ms": 0.993148, + "rtt_ns": 5522125, + "rtt_ms": 5.522125, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:37.942120039Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.515143-08:00" }, { "operation": "add_edge", - "rtt_ns": 919007, - "rtt_ms": 0.919007, + "rtt_ns": 1524458, + "rtt_ms": 1.524458, "checkpoint": 0, "vertex_from": "41", "vertex_to": "195", - "timestamp": "2025-11-27T01:23:37.942357568Z" + "timestamp": "2025-11-27T04:03:19.515585-08:00" }, { "operation": "add_edge", - "rtt_ns": 985207, - "rtt_ms": 0.985207, + "rtt_ns": 1574708, + "rtt_ms": 1.574708, "checkpoint": 0, "vertex_from": "41", "vertex_to": "42", - "timestamp": "2025-11-27T01:23:37.942401388Z" + "timestamp": "2025-11-27T04:03:19.515599-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1341708, + "rtt_ms": 1.341708, + "checkpoint": 0, + "vertex_from": "42", + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.516486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004677, - "rtt_ms": 1.004677, + "rtt_ns": 2134791, + "rtt_ms": 2.134791, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:37.942474077Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.516899-08:00" }, { "operation": "add_edge", - "rtt_ns": 992497, - "rtt_ms": 0.992497, + "rtt_ns": 2172708, + "rtt_ms": 2.172708, "checkpoint": 0, "vertex_from": "41", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:37.942548507Z" + "timestamp": "2025-11-27T04:03:19.516919-08:00" }, { "operation": "add_edge", - "rtt_ns": 661038, - "rtt_ms": 0.661038, + "rtt_ns": 1944958, + "rtt_ms": 1.944958, + "checkpoint": 0, + "vertex_from": "41", + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.516935-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1797000, + "rtt_ms": 1.797, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:37.942652097Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.517399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109007, - "rtt_ms": 1.109007, + "rtt_ns": 2690042, + "rtt_ms": 2.690042, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.942674847Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:19.517415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028847, - "rtt_ms": 1.028847, + "rtt_ns": 2471375, + "rtt_ms": 2.471375, "checkpoint": 0, "vertex_from": "41", "vertex_to": "70", - "timestamp": "2025-11-27T01:23:37.942715897Z" + "timestamp": "2025-11-27T04:03:19.517417-08:00" }, { "operation": "add_edge", - "rtt_ns": 666668, - "rtt_ms": 0.666668, + "rtt_ns": 2295417, + "rtt_ms": 2.295417, + "checkpoint": 0, + "vertex_from": "41", + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:19.517421-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1871792, + "rtt_ms": 1.871792, "checkpoint": 0, "vertex_from": "42", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:37.942787987Z" + "timestamp": "2025-11-27T04:03:19.517458-08:00" }, { "operation": "add_edge", - "rtt_ns": 836087, - "rtt_ms": 0.836087, + "rtt_ns": 4825708, + "rtt_ms": 4.825708, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:37.942821016Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:19.517622-08:00" }, { "operation": "add_edge", - "rtt_ns": 892757, - "rtt_ms": 0.892757, + "rtt_ns": 1584916, + "rtt_ms": 1.584916, "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.942862336Z" + "vertex_from": "42", + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:19.518521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108916, - "rtt_ms": 1.108916, + "rtt_ns": 2007625, + "rtt_ms": 2.007625, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:37.943517614Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:19.518927-08:00" }, { "operation": "add_edge", - "rtt_ns": 924667, - "rtt_ms": 0.924667, + "rtt_ns": 1524459, + "rtt_ms": 1.524459, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:37.943578954Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:19.51894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120427, - "rtt_ms": 1.120427, + "rtt_ns": 1525750, + "rtt_ms": 1.52575, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:37.943670564Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.518949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004387, - "rtt_ms": 1.004387, + "rtt_ns": 2158875, + "rtt_ms": 2.158875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.943681674Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.51906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223387, - "rtt_ms": 1.223387, + "rtt_ns": 1623833, + "rtt_ms": 1.623833, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.943698884Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:19.519084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520035, - "rtt_ms": 1.520035, + "rtt_ns": 2635709, + "rtt_ms": 2.635709, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:37.943879443Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:19.519125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367696, - "rtt_ms": 1.367696, + "rtt_ns": 1756375, + "rtt_ms": 1.756375, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:37.944231562Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.519156-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1631666, + "rtt_ms": 1.631666, + "checkpoint": 0, + "vertex_from": "42", + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.519255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515305, - "rtt_ms": 1.515305, + "rtt_ns": 1850542, + "rtt_ms": 1.850542, "checkpoint": 0, "vertex_from": "42", "vertex_to": "180", - "timestamp": "2025-11-27T01:23:37.944304892Z" + "timestamp": "2025-11-27T04:03:19.519268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655735, - "rtt_ms": 1.655735, + "rtt_ns": 1178083, + "rtt_ms": 1.178083, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:37.944373292Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:19.520304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564456, - "rtt_ms": 1.564456, + "rtt_ns": 1736833, + "rtt_ms": 1.736833, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:37.944387572Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.520895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111297, - "rtt_ms": 1.111297, + "rtt_ns": 1985291, + "rtt_ms": 1.985291, "checkpoint": 0, "vertex_from": "42", "vertex_to": "49", - "timestamp": "2025-11-27T01:23:37.944782961Z" + "timestamp": "2025-11-27T04:03:19.520914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232546, - "rtt_ms": 1.232546, + "rtt_ns": 1674250, + "rtt_ms": 1.67425, + "checkpoint": 0, + "vertex_from": "42", + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:19.520931-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1996083, + "rtt_ms": 1.996083, "checkpoint": 0, "vertex_from": "42", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:37.94491601Z" + "timestamp": "2025-11-27T04:03:19.520937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216206, - "rtt_ms": 1.216206, + "rtt_ns": 1696834, + "rtt_ms": 1.696834, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:37.94491735Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:19.520966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048827, - "rtt_ms": 1.048827, + "rtt_ns": 2016000, + "rtt_ms": 2.016, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:37.94493005Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:19.520966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464216, - "rtt_ms": 1.464216, + "rtt_ns": 2445750, + "rtt_ms": 2.44575, "checkpoint": 0, "vertex_from": "42", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:37.94504553Z" + "timestamp": "2025-11-27T04:03:19.520969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206447, - "rtt_ms": 1.206447, + "rtt_ns": 1879333, + "rtt_ms": 1.879333, "checkpoint": 0, "vertex_from": "42", "vertex_to": "56", - "timestamp": "2025-11-27T01:23:37.945439669Z" + "timestamp": "2025-11-27T04:03:19.520969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242017, - "rtt_ms": 1.242017, + "rtt_ns": 1941541, + "rtt_ms": 1.941541, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:37.945548279Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.521002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200814, - "rtt_ms": 2.200814, + "rtt_ns": 1143875, + "rtt_ms": 1.143875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.945719998Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.521451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349946, - "rtt_ms": 1.349946, + "rtt_ns": 1615750, + "rtt_ms": 1.61575, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:37.945739318Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:19.522554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383666, - "rtt_ms": 1.383666, + "rtt_ns": 1605417, + "rtt_ms": 1.605417, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.945759248Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.522575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453766, - "rtt_ms": 1.453766, + "rtt_ns": 1796750, + "rtt_ms": 1.79675, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.946371116Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.5228-08:00" }, { "operation": "add_edge", - "rtt_ns": 3080811, - "rtt_ms": 3.080811, + "rtt_ns": 1846042, + "rtt_ms": 1.846042, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:37.947864962Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:19.522817-08:00" }, { "operation": "add_edge", - "rtt_ns": 3062222, - "rtt_ms": 3.062222, + "rtt_ns": 1971125, + "rtt_ms": 1.971125, "checkpoint": 0, "vertex_from": "42", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:37.947980652Z" + "timestamp": "2025-11-27T04:03:19.522867-08:00" }, { "operation": "add_edge", - "rtt_ns": 3122712, - "rtt_ms": 3.122712, + "rtt_ns": 2042750, + "rtt_ms": 2.04275, "checkpoint": 0, "vertex_from": "42", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:37.948054812Z" + "timestamp": "2025-11-27T04:03:19.522958-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395053, - "rtt_ms": 2.395053, + "rtt_ns": 2014709, + "rtt_ms": 2.014709, "checkpoint": 0, "vertex_from": "42", "vertex_to": "164", - "timestamp": "2025-11-27T01:23:37.948117221Z" + "timestamp": "2025-11-27T04:03:19.522984-08:00" }, { "operation": "add_edge", - "rtt_ns": 3064931, - "rtt_ms": 3.064931, + "rtt_ns": 1602541, + "rtt_ms": 1.602541, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:37.948117551Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:19.523055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785755, - "rtt_ms": 1.785755, + "rtt_ns": 2141334, + "rtt_ms": 2.141334, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:37.948160271Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:19.523112-08:00" }, { "operation": "add_edge", - "rtt_ns": 2415943, - "rtt_ms": 2.415943, + "rtt_ns": 3036625, + "rtt_ms": 3.036625, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:37.948176811Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:19.523968-08:00" }, { "operation": "add_edge", - "rtt_ns": 2827862, - "rtt_ms": 2.827862, + "rtt_ns": 2324625, + "rtt_ms": 2.324625, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:37.948270881Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:19.5249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2725392, - "rtt_ms": 2.725392, + "rtt_ns": 2107167, + "rtt_ms": 2.107167, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:37.948274861Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.524975-08:00" }, { "operation": "add_edge", - "rtt_ns": 2542043, - "rtt_ms": 2.542043, + "rtt_ns": 2044750, + "rtt_ms": 2.04475, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:37.948283131Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:19.52503-08:00" }, { "operation": "add_edge", - "rtt_ns": 690938, - "rtt_ms": 0.690938, + "rtt_ns": 2537333, + "rtt_ms": 2.537333, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:37.94856071Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.525339-08:00" }, { "operation": "add_edge", - "rtt_ns": 650508, - "rtt_ms": 0.650508, + "rtt_ns": 2247792, + "rtt_ms": 2.247792, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:37.94863287Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.525363-08:00" }, { "operation": "add_edge", - "rtt_ns": 684347, - "rtt_ms": 0.684347, + "rtt_ns": 2824916, + "rtt_ms": 2.824916, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:37.948740489Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:19.52538-08:00" }, { "operation": "add_edge", - "rtt_ns": 638348, - "rtt_ms": 0.638348, + "rtt_ns": 2578708, + "rtt_ms": 2.578708, "checkpoint": 0, "vertex_from": "42", "vertex_to": "464", - "timestamp": "2025-11-27T01:23:37.948758759Z" - }, - { - "operation": "add_edge", - "rtt_ns": 713038, - "rtt_ms": 0.713038, - "checkpoint": 0, - "vertex_from": "42", - "vertex_to": "468", - "timestamp": "2025-11-27T01:23:37.948891959Z" - }, - { - "operation": "add_edge", - "rtt_ns": 736128, - "rtt_ms": 0.736128, - "checkpoint": 0, - "vertex_from": "42", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.948899339Z" + "timestamp": "2025-11-27T04:03:19.525396-08:00" }, { "operation": "add_edge", - "rtt_ns": 797528, - "rtt_ms": 0.797528, + "rtt_ns": 2355750, + "rtt_ms": 2.35575, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.948917589Z" - }, - { - "operation": "add_edge", - "rtt_ns": 693148, - "rtt_ms": 0.693148, - "checkpoint": 0, - "vertex_from": "42", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.948977929Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.525411-08:00" }, { "operation": "add_edge", - "rtt_ns": 731068, - "rtt_ms": 0.731068, + "rtt_ns": 2481084, + "rtt_ms": 2.481084, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.949007749Z" + "vertex_to": "468", + "timestamp": "2025-11-27T04:03:19.52544-08:00" }, { "operation": "add_edge", - "rtt_ns": 760308, - "rtt_ms": 0.760308, + "rtt_ns": 1592667, + "rtt_ms": 1.592667, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:37.949033619Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.525564-08:00" }, { "operation": "add_edge", - "rtt_ns": 978847, - "rtt_ms": 0.978847, + "rtt_ns": 1543417, + "rtt_ms": 1.543417, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:37.949872186Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.526575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314066, - "rtt_ms": 1.314066, + "rtt_ns": 1703750, + "rtt_ms": 1.70375, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:37.949876286Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:19.526608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244136, - "rtt_ms": 1.244136, + "rtt_ns": 1501667, + "rtt_ms": 1.501667, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:37.949878926Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.526883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136167, - "rtt_ms": 1.136167, + "rtt_ns": 1985750, + "rtt_ms": 1.98575, "checkpoint": 0, "vertex_from": "42", "vertex_to": "706", - "timestamp": "2025-11-27T01:23:37.949879946Z" + "timestamp": "2025-11-27T04:03:19.526962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120727, - "rtt_ms": 1.120727, + "rtt_ns": 1744334, + "rtt_ms": 1.744334, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.949881906Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.527084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004147, - "rtt_ms": 1.004147, + "rtt_ns": 1781708, + "rtt_ms": 1.781708, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.949905636Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.527222-08:00" }, { "operation": "add_edge", - "rtt_ns": 989077, - "rtt_ms": 0.989077, + "rtt_ns": 1938333, + "rtt_ms": 1.938333, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:37.949908616Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.527302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479295, - "rtt_ms": 1.479295, + "rtt_ns": 1990292, + "rtt_ms": 1.990292, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:37.950489154Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.527387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486645, - "rtt_ms": 1.486645, + "rtt_ns": 2003875, + "rtt_ms": 2.003875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:37.950521914Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:19.527569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574935, - "rtt_ms": 1.574935, + "rtt_ns": 2191916, + "rtt_ms": 2.191916, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.950554054Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:19.527604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356616, - "rtt_ms": 1.356616, + "rtt_ns": 1465167, + "rtt_ms": 1.465167, "checkpoint": 0, - "vertex_from": "42", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:37.951231352Z" + "vertex_from": "43", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.528076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381666, - "rtt_ms": 1.381666, + "rtt_ns": 1930583, + "rtt_ms": 1.930583, "checkpoint": 0, "vertex_from": "42", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:37.951260082Z" + "timestamp": "2025-11-27T04:03:19.528506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547545, - "rtt_ms": 1.547545, + "rtt_ns": 1772125, + "rtt_ms": 1.772125, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.951430431Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.528656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581505, - "rtt_ms": 1.581505, + "rtt_ns": 2032750, + "rtt_ms": 2.03275, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.951466191Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:19.528996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861304, - "rtt_ms": 1.861304, + "rtt_ns": 1505875, + "rtt_ms": 1.505875, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:37.95176964Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.529077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415576, - "rtt_ms": 1.415576, + "rtt_ns": 1928417, + "rtt_ms": 1.928417, "checkpoint": 0, "vertex_from": "43", "vertex_to": "452", - "timestamp": "2025-11-27T01:23:37.95190637Z" + "timestamp": "2025-11-27T04:03:19.529231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007174, - "rtt_ms": 2.007174, + "rtt_ns": 1705167, + "rtt_ms": 1.705167, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:37.95192027Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:19.529311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391346, - "rtt_ms": 1.391346, + "rtt_ns": 2317666, + "rtt_ms": 2.317666, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:37.9519464Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:19.529541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429596, - "rtt_ms": 1.429596, + "rtt_ns": 2212458, + "rtt_ms": 2.212458, "checkpoint": 0, "vertex_from": "43", "vertex_to": "153", - "timestamp": "2025-11-27T01:23:37.95195352Z" + "timestamp": "2025-11-27T04:03:19.5296-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077244, - "rtt_ms": 2.077244, + "rtt_ns": 1565500, + "rtt_ms": 1.5655, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:37.95196318Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:19.530877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479396, - "rtt_ms": 1.479396, + "rtt_ns": 1900042, + "rtt_ms": 1.900042, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "279", - "timestamp": "2025-11-27T01:23:37.952741338Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.530899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541346, - "rtt_ms": 1.541346, + "rtt_ns": 1823750, + "rtt_ms": 1.82375, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:37.952773858Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:19.530903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351567, - "rtt_ms": 1.351567, + "rtt_ns": 2413333, + "rtt_ms": 2.413333, "checkpoint": 0, "vertex_from": "43", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:37.952782858Z" + "timestamp": "2025-11-27T04:03:19.53092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016358, - "rtt_ms": 1.016358, + "rtt_ns": 2294709, + "rtt_ms": 2.294709, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.952787328Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.530952-08:00" }, { "operation": "add_edge", - "rtt_ns": 999477, - "rtt_ms": 0.999477, + "rtt_ns": 1443458, + "rtt_ms": 1.443458, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.952920927Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:19.530985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070897, - "rtt_ms": 1.070897, + "rtt_ns": 1860958, + "rtt_ms": 1.860958, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:37.953018177Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.531094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571846, - "rtt_ms": 1.571846, + "rtt_ns": 4110459, + "rtt_ms": 4.110459, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.953040927Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.531195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083037, - "rtt_ms": 1.083037, + "rtt_ns": 3446916, + "rtt_ms": 3.446916, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.953048337Z" + "vertex_to": "279", + "timestamp": "2025-11-27T04:03:19.531524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180247, - "rtt_ms": 1.180247, + "rtt_ns": 2140125, + "rtt_ms": 2.140125, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:37.953135737Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.531741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021114, - "rtt_ms": 2.021114, + "rtt_ns": 1771292, + "rtt_ms": 1.771292, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:37.953931024Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:19.532693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194926, - "rtt_ms": 1.194926, + "rtt_ns": 1626333, + "rtt_ms": 1.626333, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:37.953971524Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:19.532721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243966, - "rtt_ms": 1.243966, + "rtt_ns": 1885292, + "rtt_ms": 1.885292, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.954027804Z" + "vertex_to": "876", + "timestamp": "2025-11-27T04:03:19.532872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379506, - "rtt_ms": 1.379506, + "rtt_ns": 1695667, + "rtt_ms": 1.695667, "checkpoint": 0, - "vertex_from": "43", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:37.954302243Z" + "vertex_from": "44", + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:19.532892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656875, - "rtt_ms": 1.656875, + "rtt_ns": 1954750, + "rtt_ms": 1.95475, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.954400983Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.532909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715475, - "rtt_ms": 1.715475, + "rtt_ns": 2133167, + "rtt_ms": 2.133167, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:37.954507453Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.533012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743295, - "rtt_ms": 1.743295, + "rtt_ns": 2125500, + "rtt_ms": 2.1255, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "876", - "timestamp": "2025-11-27T01:23:37.954763002Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.533031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845775, - "rtt_ms": 1.845775, + "rtt_ns": 1517084, + "rtt_ms": 1.517084, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:37.954895612Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 602239, - "rtt_ms": 0.602239, - "checkpoint": 0, - "vertex_from": "753", - "timestamp": "2025-11-27T01:23:37.954907592Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:19.533042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996474, - "rtt_ms": 1.996474, + "rtt_ns": 2227917, + "rtt_ms": 2.227917, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:37.955039941Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1998304, - "rtt_ms": 1.998304, - "checkpoint": 0, - "vertex_from": "44", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:37.955138281Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.533128-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025125, - "rtt_ms": 2.025125, + "rtt_ns": 2107583, + "rtt_ms": 2.107583, "checkpoint": 0, "vertex_from": "44", "vertex_to": "912", - "timestamp": "2025-11-27T01:23:37.955958559Z" + "timestamp": "2025-11-27T04:03:19.53385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973755, - "rtt_ms": 1.973755, + "rtt_ns": 1283583, + "rtt_ms": 1.283583, "checkpoint": 0, "vertex_from": "44", "vertex_to": "227", - "timestamp": "2025-11-27T01:23:37.956003359Z" + "timestamp": "2025-11-27T04:03:19.534008-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091354, - "rtt_ms": 2.091354, + "rtt_ns": 1647208, + "rtt_ms": 1.647208, "checkpoint": 0, "vertex_from": "44", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:37.956064678Z" + "timestamp": "2025-11-27T04:03:19.534341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574975, - "rtt_ms": 1.574975, + "rtt_ns": 1820250, + "rtt_ms": 1.82025, "checkpoint": 0, "vertex_from": "44", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:37.956084068Z" + "timestamp": "2025-11-27T04:03:19.53473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701895, - "rtt_ms": 1.701895, + "rtt_ns": 1806791, + "rtt_ms": 1.806791, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:37.956104548Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.53485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237206, - "rtt_ms": 1.237206, + "rtt_ns": 2126625, + "rtt_ms": 2.126625, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "753", - "timestamp": "2025-11-27T01:23:37.956145308Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.535159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414616, - "rtt_ms": 1.414616, + "rtt_ns": 1318417, + "rtt_ms": 1.318417, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:37.956179348Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.53517-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2461250, + "rtt_ms": 2.46125, + "checkpoint": 0, + "vertex_from": "753", + "timestamp": "2025-11-27T04:03:19.535336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206777, - "rtt_ms": 1.206777, + "rtt_ns": 2573041, + "rtt_ms": 2.573041, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:37.956346958Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:19.535466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306937, - "rtt_ms": 1.306937, + "rtt_ns": 1120375, + "rtt_ms": 1.120375, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:37.956348898Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:19.535972-08:00" }, { "operation": "add_edge", - "rtt_ns": 834488, - "rtt_ms": 0.834488, + "rtt_ns": 1676916, + "rtt_ms": 1.676916, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:37.956940486Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:19.536019-08:00" }, { "operation": "add_edge", - "rtt_ns": 998847, - "rtt_ms": 0.998847, + "rtt_ns": 2036583, + "rtt_ms": 2.036583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.956959356Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.536045-08:00" }, { "operation": "add_edge", - "rtt_ns": 2069654, - "rtt_ms": 2.069654, + "rtt_ns": 3020500, + "rtt_ms": 3.0205, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:37.956966686Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:19.536149-08:00" }, { "operation": "add_edge", - "rtt_ns": 979767, - "rtt_ms": 0.979767, + "rtt_ns": 3175208, + "rtt_ms": 3.175208, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.956984446Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.536192-08:00" }, { "operation": "add_edge", - "rtt_ns": 837118, - "rtt_ms": 0.837118, + "rtt_ns": 1123500, + "rtt_ms": 1.1235, "checkpoint": 0, "vertex_from": "44", "vertex_to": "595", - "timestamp": "2025-11-27T01:23:37.956984686Z" + "timestamp": "2025-11-27T04:03:19.536285-08:00" }, { "operation": "add_edge", - "rtt_ns": 922318, - "rtt_ms": 0.922318, + "rtt_ns": 1632583, + "rtt_ms": 1.632583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:37.956990026Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.536365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209607, - "rtt_ms": 1.209607, + "rtt_ns": 7980417, + "rtt_ms": 7.980417, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:37.957295625Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:19.544346-08:00" }, { "operation": "add_edge", - "rtt_ns": 855147, - "rtt_ms": 0.855147, + "rtt_ns": 9279417, + "rtt_ms": 9.279417, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:37.957816213Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:19.545252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675165, - "rtt_ms": 1.675165, + "rtt_ns": 9970833, + "rtt_ms": 9.970833, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "182", - "timestamp": "2025-11-27T01:23:37.957855673Z" + "vertex_to": "753", + "timestamp": "2025-11-27T04:03:19.545307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547705, - "rtt_ms": 1.547705, + "rtt_ns": 9907334, + "rtt_ms": 9.907334, "checkpoint": 0, "vertex_from": "44", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:37.957896763Z" + "timestamp": "2025-11-27T04:03:19.545375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578965, - "rtt_ms": 1.578965, + "rtt_ns": 9407083, + "rtt_ms": 9.407083, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:37.957929503Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.545427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077427, - "rtt_ms": 1.077427, + "rtt_ns": 10283625, + "rtt_ms": 10.283625, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:37.958023203Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:03:19.545455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139836, - "rtt_ms": 1.139836, + "rtt_ns": 9358750, + "rtt_ms": 9.35875, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:37.958126792Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:19.545509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653575, - "rtt_ms": 1.653575, + "rtt_ns": 9478250, + "rtt_ms": 9.47825, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "283", - "timestamp": "2025-11-27T01:23:37.958642691Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:19.545524-08:00" }, { "operation": "add_edge", - "rtt_ns": 737208, - "rtt_ms": 0.737208, + "rtt_ns": 9502583, + "rtt_ms": 9.502583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.958669791Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.545697-08:00" }, { "operation": "add_edge", - "rtt_ns": 853738, - "rtt_ms": 0.853738, + "rtt_ns": 9487042, + "rtt_ms": 9.487042, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:37.958672241Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:03:19.545774-08:00" }, { "operation": "add_edge", - "rtt_ns": 817528, - "rtt_ms": 0.817528, + "rtt_ns": 1323208, + "rtt_ms": 1.323208, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:37.958674611Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:19.546788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724374, - "rtt_ms": 1.724374, + "rtt_ns": 1551667, + "rtt_ms": 1.551667, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:37.95871566Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.546805-08:00" }, { "operation": "add_edge", - "rtt_ns": 848957, - "rtt_ms": 0.848957, + "rtt_ns": 1508375, + "rtt_ms": 1.508375, "checkpoint": 0, "vertex_from": "44", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.95874661Z" + "timestamp": "2025-11-27T04:03:19.546884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597575, - "rtt_ms": 1.597575, + "rtt_ns": 1386875, + "rtt_ms": 1.386875, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.95889426Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.546897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945144, - "rtt_ms": 1.945144, + "rtt_ns": 2721667, + "rtt_ms": 2.721667, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:37.95891306Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.547069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533906, - "rtt_ms": 1.533906, + "rtt_ns": 1407625, + "rtt_ms": 1.407625, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:37.959661668Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.547113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031526, - "rtt_ms": 1.031526, + "rtt_ns": 1602583, + "rtt_ms": 1.602583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:37.959705247Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.547127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037926, - "rtt_ms": 1.037926, + "rtt_ns": 1967500, + "rtt_ms": 1.9675, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:37.959709627Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:19.547276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685994, - "rtt_ms": 1.685994, + "rtt_ns": 1952667, + "rtt_ms": 1.952667, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:37.959712217Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.547381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058286, - "rtt_ms": 1.058286, + "rtt_ns": 1093000, + "rtt_ms": 1.093, "checkpoint": 0, "vertex_from": "44", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:37.959734377Z" + "timestamp": "2025-11-27T04:03:19.547883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118456, - "rtt_ms": 1.118456, + "rtt_ns": 2116708, + "rtt_ms": 2.116708, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:37.959762367Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:19.547892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031217, - "rtt_ms": 1.031217, + "rtt_ns": 1119083, + "rtt_ms": 1.119083, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:37.959779007Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.547924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210007, - "rtt_ms": 1.210007, + "rtt_ns": 1202209, + "rtt_ms": 1.202209, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:37.959927287Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:19.548087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300746, - "rtt_ms": 1.300746, + "rtt_ns": 1262042, + "rtt_ms": 1.262042, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.960197336Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.548391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826174, - "rtt_ms": 1.826174, + "rtt_ns": 1444667, + "rtt_ms": 1.444667, "checkpoint": 0, "vertex_from": "44", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:37.960741134Z" + "timestamp": "2025-11-27T04:03:19.548516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077007, - "rtt_ms": 1.077007, + "rtt_ns": 1687125, + "rtt_ms": 1.687125, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:37.960788304Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.548585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158816, - "rtt_ms": 1.158816, + "rtt_ns": 1554167, + "rtt_ms": 1.554167, "checkpoint": 0, "vertex_from": "44", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.960822924Z" + "timestamp": "2025-11-27T04:03:19.548668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199677, - "rtt_ms": 1.199677, + "rtt_ns": 1298000, + "rtt_ms": 1.298, "checkpoint": 0, "vertex_from": "44", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:37.960913944Z" + "timestamp": "2025-11-27T04:03:19.548681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193107, - "rtt_ms": 1.193107, + "rtt_ns": 1124458, + "rtt_ms": 1.124458, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:37.960929874Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.549806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006727, - "rtt_ms": 1.006727, + "rtt_ns": 1937750, + "rtt_ms": 1.93775, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.960936194Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.549822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175267, - "rtt_ms": 1.175267, + "rtt_ns": 1373709, + "rtt_ms": 1.373709, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:37.960955344Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:19.549891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287027, - "rtt_ms": 1.287027, + "rtt_ns": 1356917, + "rtt_ms": 1.356917, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.960994634Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:03:19.549943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293396, - "rtt_ms": 1.293396, + "rtt_ns": 1920000, + "rtt_ms": 1.92, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.961057573Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.550009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450426, - "rtt_ms": 1.450426, + "rtt_ns": 2756667, + "rtt_ms": 2.756667, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:37.961649492Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.550034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184707, - "rtt_ms": 1.184707, + "rtt_ns": 1434500, + "rtt_ms": 1.4345, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:37.961974711Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.550104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172547, - "rtt_ms": 1.172547, + "rtt_ns": 1723250, + "rtt_ms": 1.72325, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:37.961996761Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.550115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014674, - "rtt_ms": 2.014674, + "rtt_ns": 2253958, + "rtt_ms": 2.253958, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:37.962757048Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.550147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933464, - "rtt_ms": 1.933464, + "rtt_ns": 2385583, + "rtt_ms": 2.385583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:37.962864608Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:19.550312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981944, - "rtt_ms": 1.981944, + "rtt_ns": 1341459, + "rtt_ms": 1.341459, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.962939078Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.551149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115873, - "rtt_ms": 2.115873, + "rtt_ns": 1265167, + "rtt_ms": 1.265167, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.963053757Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.551209-08:00" }, { "operation": "add_edge", - "rtt_ns": 2502843, - "rtt_ms": 2.502843, + "rtt_ns": 1702291, + "rtt_ms": 1.702291, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:37.963561626Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.551525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2677142, - "rtt_ms": 2.677142, + "rtt_ns": 1437250, + "rtt_ms": 1.43725, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.963593586Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:19.551542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2693162, - "rtt_ms": 2.693162, + "rtt_ns": 1409458, + "rtt_ms": 1.409458, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.963690376Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:19.551558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456666, - "rtt_ms": 1.456666, + "rtt_ns": 1532542, + "rtt_ms": 1.532542, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "51", - "timestamp": "2025-11-27T01:23:37.964397674Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:19.551569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2831351, - "rtt_ms": 2.831351, + "rtt_ns": 1701375, + "rtt_ms": 1.701375, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:37.964482143Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.551593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752265, - "rtt_ms": 1.752265, + "rtt_ns": 1313167, + "rtt_ms": 1.313167, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:37.964512563Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.551626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2532652, - "rtt_ms": 2.532652, + "rtt_ns": 1616708, + "rtt_ms": 1.616708, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:37.964531943Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:19.551626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2586812, - "rtt_ms": 2.586812, + "rtt_ns": 1581709, + "rtt_ms": 1.581709, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:37.964563353Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.551697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708145, - "rtt_ms": 1.708145, + "rtt_ns": 1378791, + "rtt_ms": 1.378791, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.964582773Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.552589-08:00" }, { "operation": "add_edge", - "rtt_ns": 922937, - "rtt_ms": 0.922937, + "rtt_ns": 1515709, + "rtt_ms": 1.515709, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:37.964615263Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:03:19.552667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564206, - "rtt_ms": 1.564206, + "rtt_ns": 1350291, + "rtt_ms": 1.350291, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:37.964619323Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:19.552909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072307, - "rtt_ms": 1.072307, + "rtt_ns": 1226792, + "rtt_ms": 1.226792, "checkpoint": 0, - "vertex_from": "44", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:37.964635053Z" + "vertex_from": "45", + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:19.552925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072507, - "rtt_ms": 1.072507, + "rtt_ns": 1398333, + "rtt_ms": 1.398333, "checkpoint": 0, "vertex_from": "44", "vertex_to": "389", - "timestamp": "2025-11-27T01:23:37.964668263Z" + "timestamp": "2025-11-27T04:03:19.552941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028887, - "rtt_ms": 1.028887, + "rtt_ns": 1510959, + "rtt_ms": 1.510959, "checkpoint": 0, "vertex_from": "45", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:37.96551377Z" + "timestamp": "2025-11-27T04:03:19.553105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147187, - "rtt_ms": 1.147187, + "rtt_ns": 1551083, + "rtt_ms": 1.551083, "checkpoint": 0, - "vertex_from": "45", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:37.96566138Z" + "vertex_from": "44", + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:19.553121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165277, - "rtt_ms": 1.165277, + "rtt_ns": 1605125, + "rtt_ms": 1.605125, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:37.96574978Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1756565, - "rtt_ms": 1.756565, - "checkpoint": 0, - "vertex_from": "44", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:37.966155749Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:19.553232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624206, - "rtt_ms": 1.624206, + "rtt_ns": 1716000, + "rtt_ms": 1.716, "checkpoint": 0, - "vertex_from": "45", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:37.966160309Z" + "vertex_from": "44", + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:19.553242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676405, - "rtt_ms": 1.676405, + "rtt_ns": 1635459, + "rtt_ms": 1.635459, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:37.966295228Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:19.553262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677825, - "rtt_ms": 1.677825, + "rtt_ns": 1339084, + "rtt_ms": 1.339084, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.966314278Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.553934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669235, - "rtt_ms": 1.669235, + "rtt_ns": 1754041, + "rtt_ms": 1.754041, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "362", - "timestamp": "2025-11-27T01:23:37.966339058Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:19.554422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778935, - "rtt_ms": 1.778935, + "rtt_ns": 1496167, + "rtt_ms": 1.496167, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:37.966344338Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:03:19.554438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749835, - "rtt_ms": 1.749835, + "rtt_ns": 1734792, + "rtt_ms": 1.734792, "checkpoint": 0, "vertex_from": "45", "vertex_to": "449", - "timestamp": "2025-11-27T01:23:37.966371958Z" + "timestamp": "2025-11-27T04:03:19.554644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467526, - "rtt_ms": 1.467526, + "rtt_ns": 1786083, + "rtt_ms": 1.786083, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.967130826Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.554712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723466, - "rtt_ms": 1.723466, + "rtt_ns": 1758083, + "rtt_ms": 1.758083, "checkpoint": 0, "vertex_from": "45", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:37.967239346Z" + "timestamp": "2025-11-27T04:03:19.554864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143936, - "rtt_ms": 1.143936, + "rtt_ns": 1738916, + "rtt_ms": 1.738916, "checkpoint": 0, "vertex_from": "45", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:37.967307155Z" + "timestamp": "2025-11-27T04:03:19.555002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605875, - "rtt_ms": 1.605875, + "rtt_ns": 1415042, + "rtt_ms": 1.415042, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:37.967356755Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.555351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537016, - "rtt_ms": 1.537016, + "rtt_ns": 2248917, + "rtt_ms": 2.248917, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:37.967878034Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.555371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785575, - "rtt_ms": 1.785575, + "rtt_ns": 2135875, + "rtt_ms": 2.135875, "checkpoint": 0, "vertex_from": "45", "vertex_to": "150", - "timestamp": "2025-11-27T01:23:37.967943024Z" + "timestamp": "2025-11-27T04:03:19.55538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634306, - "rtt_ms": 1.634306, + "rtt_ns": 2220167, + "rtt_ms": 2.220167, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:37.967980424Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.555455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742835, - "rtt_ms": 1.742835, + "rtt_ns": 983083, + "rtt_ms": 0.983083, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.968040673Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.555696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683325, - "rtt_ms": 1.683325, + "rtt_ns": 1099666, + "rtt_ms": 1.099666, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:37.968056633Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:03:19.555745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756125, - "rtt_ms": 1.756125, + "rtt_ns": 1447125, + "rtt_ms": 1.447125, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:37.968072223Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.555886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734405, - "rtt_ms": 1.734405, + "rtt_ns": 1568292, + "rtt_ms": 1.568292, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "75", - "timestamp": "2025-11-27T01:23:37.96904443Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:19.555991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805324, - "rtt_ms": 1.805324, + "rtt_ns": 1028500, + "rtt_ms": 1.0285, "checkpoint": 0, "vertex_from": "45", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.9690455Z" + "timestamp": "2025-11-27T04:03:19.556032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964024, - "rtt_ms": 1.964024, + "rtt_ns": 1472291, + "rtt_ms": 1.472291, "checkpoint": 0, "vertex_from": "45", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:37.96909687Z" + "timestamp": "2025-11-27T04:03:19.556339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186316, - "rtt_ms": 1.186316, + "rtt_ns": 1255375, + "rtt_ms": 1.255375, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.96913053Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.556627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777415, - "rtt_ms": 1.777415, + "rtt_ns": 1395292, + "rtt_ms": 1.395292, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:37.96913533Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.556853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099457, - "rtt_ms": 1.099457, + "rtt_ns": 1536625, + "rtt_ms": 1.536625, "checkpoint": 0, - "vertex_from": "46", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:37.96914171Z" + "vertex_from": "45", + "vertex_to": "75", + "timestamp": "2025-11-27T04:03:19.556889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170386, - "rtt_ms": 1.170386, + "rtt_ns": 1839750, + "rtt_ms": 1.83975, "checkpoint": 0, "vertex_from": "46", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:37.96915218Z" + "timestamp": "2025-11-27T04:03:19.557537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455575, - "rtt_ms": 1.455575, + "rtt_ns": 2218166, + "rtt_ms": 2.218166, "checkpoint": 0, "vertex_from": "45", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:37.969335519Z" + "timestamp": "2025-11-27T04:03:19.5576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697565, - "rtt_ms": 1.697565, + "rtt_ns": 1875167, + "rtt_ms": 1.875167, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:37.969771568Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:19.557621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741455, - "rtt_ms": 1.741455, + "rtt_ns": 1819541, + "rtt_ms": 1.819541, "checkpoint": 0, "vertex_from": "46", "vertex_to": "88", - "timestamp": "2025-11-27T01:23:37.969799638Z" + "timestamp": "2025-11-27T04:03:19.557706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282867, - "rtt_ms": 1.282867, + "rtt_ns": 1806750, + "rtt_ms": 1.80675, "checkpoint": 0, "vertex_from": "46", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:37.970328997Z" + "timestamp": "2025-11-27T04:03:19.557839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435076, - "rtt_ms": 1.435076, + "rtt_ns": 1948416, + "rtt_ms": 1.948416, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:37.970481936Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.55794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397866, - "rtt_ms": 1.397866, + "rtt_ns": 1603250, + "rtt_ms": 1.60325, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:37.970534396Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:19.557945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468406, - "rtt_ms": 1.468406, + "rtt_ns": 1365875, + "rtt_ms": 1.365875, "checkpoint": 0, "vertex_from": "46", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.970566746Z" + "timestamp": "2025-11-27T04:03:19.557994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527045, - "rtt_ms": 1.527045, + "rtt_ns": 1149333, + "rtt_ms": 1.149333, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.970669635Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.558004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203823, - "rtt_ms": 2.203823, + "rtt_ns": 1426958, + "rtt_ms": 1.426958, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:37.971358023Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.558317-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126964, - "rtt_ms": 2.126964, + "rtt_ns": 1499458, + "rtt_ms": 1.499458, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:37.971464743Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:19.559101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732345, - "rtt_ms": 1.732345, + "rtt_ns": 1272292, + "rtt_ms": 1.272292, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.971505073Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.559112-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416813, - "rtt_ms": 2.416813, + "rtt_ns": 1171625, + "rtt_ms": 1.171625, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:37.971549583Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:19.559117-08:00" }, { "operation": "add_edge", - "rtt_ns": 2345143, - "rtt_ms": 2.345143, + "rtt_ns": 1496875, + "rtt_ms": 1.496875, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:37.972145821Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.559119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878954, - "rtt_ms": 1.878954, + "rtt_ns": 1169459, + "rtt_ms": 1.169459, "checkpoint": 0, "vertex_from": "46", "vertex_to": "568", - "timestamp": "2025-11-27T01:23:37.97241457Z" + "timestamp": "2025-11-27T04:03:19.559164-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086874, - "rtt_ms": 2.086874, + "rtt_ns": 1697709, + "rtt_ms": 1.697709, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "48", - "timestamp": "2025-11-27T01:23:37.97241704Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.559236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939304, - "rtt_ms": 1.939304, + "rtt_ns": 1611000, + "rtt_ms": 1.611, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:37.9724224Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.559319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911714, - "rtt_ms": 1.911714, + "rtt_ns": 1329708, + "rtt_ms": 1.329708, "checkpoint": 0, "vertex_from": "46", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.97248274Z" + "timestamp": "2025-11-27T04:03:19.559335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162307, - "rtt_ms": 1.162307, + "rtt_ns": 1480875, + "rtt_ms": 1.480875, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:37.97252185Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:03:19.559421-08:00" }, { "operation": "add_edge", - "rtt_ns": 2687353, - "rtt_ms": 2.687353, + "rtt_ns": 1310458, + "rtt_ms": 1.310458, "checkpoint": 0, "vertex_from": "46", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:37.973359358Z" + "timestamp": "2025-11-27T04:03:19.559629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896065, - "rtt_ms": 1.896065, + "rtt_ns": 997458, + "rtt_ms": 0.997458, "checkpoint": 0, - "vertex_from": "46", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:37.973361848Z" + "vertex_from": "47", + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.560419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980094, - "rtt_ms": 1.980094, + "rtt_ns": 1399083, + "rtt_ms": 1.399083, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:37.973488627Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.560636-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004524, - "rtt_ms": 2.004524, + "rtt_ns": 1487625, + "rtt_ms": 1.487625, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.973555887Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.560654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463446, - "rtt_ms": 1.463446, + "rtt_ns": 1434375, + "rtt_ms": 1.434375, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.973611977Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:19.560755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236657, - "rtt_ms": 1.236657, + "rtt_ns": 1430375, + "rtt_ms": 1.430375, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:37.973655777Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:19.560767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274777, - "rtt_ms": 1.274777, + "rtt_ns": 1153125, + "rtt_ms": 1.153125, "checkpoint": 0, - "vertex_from": "46", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.973692277Z" + "vertex_from": "47", + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:19.560783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346607, - "rtt_ms": 1.346607, + "rtt_ns": 1687666, + "rtt_ms": 1.687666, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:37.973772217Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.560806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312457, - "rtt_ms": 1.312457, + "rtt_ns": 1764916, + "rtt_ms": 1.764916, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:37.973797827Z" + "vertex_from": "46", + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:19.560866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290066, - "rtt_ms": 1.290066, + "rtt_ns": 1787417, + "rtt_ms": 1.787417, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:37.973813366Z" + "vertex_from": "46", + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:19.560901-08:00" }, { "operation": "add_edge", - "rtt_ns": 793788, - "rtt_ms": 0.793788, + "rtt_ns": 1801167, + "rtt_ms": 1.801167, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:37.974158806Z" + "vertex_from": "46", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.560921-08:00" }, { "operation": "add_vertex", - "rtt_ns": 908487, - "rtt_ms": 0.908487, + "rtt_ns": 1240417, + "rtt_ms": 1.240417, "checkpoint": 0, "vertex_from": "691", - "timestamp": "2025-11-27T01:23:37.974271775Z" + "timestamp": "2025-11-27T04:03:19.561661-08:00" }, { "operation": "add_edge", - "rtt_ns": 731858, - "rtt_ms": 0.731858, + "rtt_ns": 1243000, + "rtt_ms": 1.243, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.974289395Z" + "vertex_from": "48", + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.562145-08:00" }, { "operation": "add_edge", - "rtt_ns": 805858, - "rtt_ms": 0.805858, + "rtt_ns": 1295666, + "rtt_ms": 1.295666, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:37.974297445Z" + "vertex_from": "48", + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:19.562163-08:00" }, { "operation": "add_edge", - "rtt_ns": 807788, - "rtt_ms": 0.807788, + "rtt_ns": 1371458, + "rtt_ms": 1.371458, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.974465405Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:19.562178-08:00" }, { "operation": "add_edge", - "rtt_ns": 777528, - "rtt_ms": 0.777528, + "rtt_ns": 1527042, + "rtt_ms": 1.527042, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:37.974471295Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.562182-08:00" }, { "operation": "add_edge", - "rtt_ns": 858908, - "rtt_ms": 0.858908, + "rtt_ns": 1378792, + "rtt_ms": 1.378792, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:37.974472385Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.562199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292856, - "rtt_ms": 1.292856, + "rtt_ns": 1566500, + "rtt_ms": 1.5665, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:37.975092983Z" + "vertex_from": "47", + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.562203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048227, - "rtt_ms": 1.048227, + "rtt_ns": 1579542, + "rtt_ms": 1.579542, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:37.975208873Z" + "vertex_from": "47", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.562363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472215, - "rtt_ms": 1.472215, + "rtt_ns": 1648500, + "rtt_ms": 1.6485, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:37.975245922Z" + "vertex_from": "47", + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:19.562417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482866, - "rtt_ms": 1.482866, + "rtt_ns": 1552416, + "rtt_ms": 1.552416, "checkpoint": 0, "vertex_from": "48", "vertex_to": "285", - "timestamp": "2025-11-27T01:23:37.975298392Z" + "timestamp": "2025-11-27T04:03:19.562476-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1578250, + "rtt_ms": 1.57825, + "checkpoint": 0, + "vertex_from": "47", + "vertex_to": "691", + "timestamp": "2025-11-27T04:03:19.56324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709885, - "rtt_ms": 1.709885, + "rtt_ns": 1433625, + "rtt_ms": 1.433625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:37.97600975Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:19.563797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837735, - "rtt_ms": 1.837735, + "rtt_ns": 1623542, + "rtt_ms": 1.623542, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "691", - "timestamp": "2025-11-27T01:23:37.97611012Z" + "vertex_from": "48", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.563828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845725, - "rtt_ms": 1.845725, + "rtt_ns": 1890666, + "rtt_ms": 1.890666, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:37.97613728Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:19.564037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683735, - "rtt_ms": 1.683735, + "rtt_ns": 2166500, + "rtt_ms": 2.1665, "checkpoint": 0, "vertex_from": "48", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:37.97615047Z" + "timestamp": "2025-11-27T04:03:19.564351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525315, - "rtt_ms": 1.525315, + "rtt_ns": 1520417, + "rtt_ms": 1.520417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:37.976735518Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.564761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714405, - "rtt_ms": 1.714405, + "rtt_ns": 2616834, + "rtt_ms": 2.616834, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:37.976808708Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:19.56478-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386443, - "rtt_ms": 2.386443, + "rtt_ns": 2370834, + "rtt_ms": 2.370834, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:37.976860188Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:19.564788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643326, - "rtt_ms": 1.643326, + "rtt_ns": 2319292, + "rtt_ms": 2.319292, "checkpoint": 0, "vertex_from": "48", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:37.976890918Z" + "timestamp": "2025-11-27T04:03:19.564797-08:00" }, { "operation": "add_edge", - "rtt_ns": 920028, - "rtt_ms": 0.920028, + "rtt_ns": 2635625, + "rtt_ms": 2.635625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:37.976933018Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.564814-08:00" }, { "operation": "add_edge", - "rtt_ns": 2981821, - "rtt_ms": 2.981821, + "rtt_ns": 2632042, + "rtt_ms": 2.632042, "checkpoint": 0, "vertex_from": "48", "vertex_to": "84", - "timestamp": "2025-11-27T01:23:37.977455666Z" + "timestamp": "2025-11-27T04:03:19.564832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404756, - "rtt_ms": 1.404756, + "rtt_ns": 1020458, + "rtt_ms": 1.020458, + "checkpoint": 0, + "vertex_from": "48", + "vertex_to": "985", + "timestamp": "2025-11-27T04:03:19.564851-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1397334, + "rtt_ms": 1.397334, "checkpoint": 0, "vertex_from": "48", "vertex_to": "535", - "timestamp": "2025-11-27T01:23:37.977543676Z" + "timestamp": "2025-11-27T04:03:19.565435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471583, - "rtt_ms": 2.471583, + "rtt_ns": 1656583, + "rtt_ms": 1.656583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:37.977770825Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.565455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791264, - "rtt_ms": 1.791264, + "rtt_ns": 1415625, + "rtt_ms": 1.415625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:37.977945394Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:19.566231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862624, - "rtt_ms": 1.862624, + "rtt_ns": 1479125, + "rtt_ms": 1.479125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "985", - "timestamp": "2025-11-27T01:23:37.977974764Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:19.566261-08:00" }, { "operation": "add_edge", - "rtt_ns": 2439913, - "rtt_ms": 2.439913, + "rtt_ns": 1452500, + "rtt_ms": 1.4525, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "103", - "timestamp": "2025-11-27T01:23:37.979177921Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.566285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571225, - "rtt_ms": 1.571225, + "rtt_ns": 1750917, + "rtt_ms": 1.750917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:37.97934377Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:19.566549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2551852, - "rtt_ms": 2.551852, + "rtt_ns": 1808667, + "rtt_ms": 1.808667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:37.97936157Z" + "vertex_to": "103", + "timestamp": "2025-11-27T04:03:19.566571-08:00" }, { "operation": "add_edge", - "rtt_ns": 2499162, - "rtt_ms": 2.499162, + "rtt_ns": 1736917, + "rtt_ms": 1.736917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:37.9793936Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:19.56659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505686, - "rtt_ms": 1.505686, + "rtt_ns": 1206917, + "rtt_ms": 1.206917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:37.97945194Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:19.566643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2600812, - "rtt_ms": 2.600812, + "rtt_ns": 1892792, + "rtt_ms": 1.892792, "checkpoint": 0, "vertex_from": "48", "vertex_to": "432", - "timestamp": "2025-11-27T01:23:37.97946393Z" + "timestamp": "2025-11-27T04:03:19.566683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922084, - "rtt_ms": 1.922084, + "rtt_ns": 1339666, + "rtt_ms": 1.339666, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:37.97946736Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.566795-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016154, - "rtt_ms": 2.016154, + "rtt_ns": 2458666, + "rtt_ms": 2.458666, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:37.97947274Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.56681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2538742, - "rtt_ms": 2.538742, + "rtt_ns": 1340417, + "rtt_ms": 1.340417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:37.97947319Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.567604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508766, - "rtt_ms": 1.508766, + "rtt_ns": 1495792, + "rtt_ms": 1.495792, "checkpoint": 0, "vertex_from": "48", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:37.97948639Z" + "timestamp": "2025-11-27T04:03:19.567728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233486, - "rtt_ms": 1.233486, + "rtt_ns": 1214459, + "rtt_ms": 1.214459, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:37.980412847Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.567899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168967, - "rtt_ms": 1.168967, + "rtt_ns": 1744959, + "rtt_ms": 1.744959, "checkpoint": 0, "vertex_from": "48", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:37.980513767Z" + "timestamp": "2025-11-27T04:03:19.568032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286826, - "rtt_ms": 1.286826, + "rtt_ns": 1566542, + "rtt_ms": 1.566542, "checkpoint": 0, "vertex_from": "48", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:37.980651406Z" + "timestamp": "2025-11-27T04:03:19.568118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819575, - "rtt_ms": 1.819575, + "rtt_ns": 1547166, + "rtt_ms": 1.547166, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:37.981214225Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.568138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769095, - "rtt_ms": 1.769095, + "rtt_ns": 1499125, + "rtt_ms": 1.499125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:37.981244485Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:19.568143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776165, - "rtt_ms": 1.776165, + "rtt_ns": 1455208, + "rtt_ms": 1.455208, "checkpoint": 0, "vertex_from": "48", "vertex_to": "361", - "timestamp": "2025-11-27T01:23:37.981252805Z" + "timestamp": "2025-11-27T04:03:19.568266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763815, - "rtt_ms": 1.763815, + "rtt_ns": 1710666, + "rtt_ms": 1.710666, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:37.981254155Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:19.568282-08:00" }, { "operation": "add_edge", - "rtt_ns": 837338, - "rtt_ms": 0.837338, + "rtt_ns": 1602000, + "rtt_ms": 1.602, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:37.981253065Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.568398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808205, - "rtt_ms": 1.808205, + "rtt_ns": 1156292, + "rtt_ms": 1.156292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:37.981278375Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:03:19.568885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825705, - "rtt_ms": 1.825705, + "rtt_ns": 1344333, + "rtt_ms": 1.344333, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:37.981291275Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.568949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862504, - "rtt_ms": 1.862504, + "rtt_ns": 1312000, + "rtt_ms": 1.312, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:37.981315534Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:19.56943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147607, - "rtt_ms": 1.147607, + "rtt_ns": 1546042, + "rtt_ms": 1.546042, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:37.981800083Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.569446-08:00" }, { "operation": "add_edge", - "rtt_ns": 813687, - "rtt_ms": 0.813687, + "rtt_ns": 1177500, + "rtt_ms": 1.1775, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:37.982059572Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:19.569461-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1678245, - "rtt_ms": 1.678245, + "operation": "add_vertex", + "rtt_ns": 1459042, + "rtt_ms": 1.459042, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:37.982193292Z" + "vertex_from": "630", + "timestamp": "2025-11-27T04:03:19.569605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355396, - "rtt_ms": 1.355396, + "rtt_ns": 1724000, + "rtt_ms": 1.724, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:37.982571901Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.569863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403695, - "rtt_ms": 1.403695, + "rtt_ns": 1595709, + "rtt_ms": 1.595709, "checkpoint": 0, "vertex_from": "48", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:37.98268362Z" + "timestamp": "2025-11-27T04:03:19.569994-08:00" }, { "operation": "add_edge", - "rtt_ns": 969707, - "rtt_ms": 0.969707, + "rtt_ns": 1977291, + "rtt_ms": 1.977291, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:37.98277169Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.57001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513235, - "rtt_ms": 1.513235, + "rtt_ns": 1327917, + "rtt_ms": 1.327917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:37.98277274Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:19.570278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482095, - "rtt_ms": 1.482095, + "rtt_ns": 1409833, + "rtt_ms": 1.409833, "checkpoint": 0, "vertex_from": "48", "vertex_to": "153", - "timestamp": "2025-11-27T01:23:37.9827749Z" + "timestamp": "2025-11-27T04:03:19.570295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539265, - "rtt_ms": 1.539265, + "rtt_ns": 1234125, + "rtt_ms": 1.234125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:37.98279507Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:19.570696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489246, - "rtt_ms": 1.489246, + "rtt_ns": 1293667, + "rtt_ms": 1.293667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:37.98280588Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1588275, - "rtt_ms": 1.588275, - "checkpoint": 0, - "vertex_from": "630", - "timestamp": "2025-11-27T01:23:37.98284623Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.570725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004747, - "rtt_ms": 1.004747, + "rtt_ns": 940375, + "rtt_ms": 0.940375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:37.983065919Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.570806-08:00" }, { "operation": "add_edge", - "rtt_ns": 746817, - "rtt_ms": 0.746817, + "rtt_ns": 1381292, + "rtt_ms": 1.381292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:37.983320398Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.570828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127706, - "rtt_ms": 1.127706, + "rtt_ns": 1313042, + "rtt_ms": 1.313042, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:37.983322478Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:03:19.570918-08:00" }, { "operation": "add_edge", - "rtt_ns": 699268, - "rtt_ms": 0.699268, + "rtt_ns": 1240209, + "rtt_ms": 1.240209, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:37.983384528Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.571251-08:00" }, { "operation": "add_edge", - "rtt_ns": 749548, - "rtt_ms": 0.749548, + "rtt_ns": 1155166, + "rtt_ms": 1.155166, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:37.983547628Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:19.571451-08:00" }, { "operation": "add_edge", - "rtt_ns": 788208, - "rtt_ms": 0.788208, + "rtt_ns": 1542833, + "rtt_ms": 1.542833, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:37.983563198Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:19.571539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136657, - "rtt_ms": 1.136657, + "rtt_ns": 3338083, + "rtt_ms": 3.338083, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:37.983909427Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:19.571605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460706, - "rtt_ms": 1.460706, + "rtt_ns": 1364375, + "rtt_ms": 1.364375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:37.984238316Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:19.571644-08:00" }, { "operation": "add_edge", - "rtt_ns": 991228, - "rtt_ms": 0.991228, + "rtt_ns": 1060792, + "rtt_ms": 1.060792, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:37.984315126Z" + "vertex_to": "122", + "timestamp": "2025-11-27T04:03:19.571905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302426, - "rtt_ms": 1.302426, + "rtt_ns": 1405541, + "rtt_ms": 1.405541, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "122", - "timestamp": "2025-11-27T01:23:37.984370505Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:19.572102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588835, - "rtt_ms": 1.588835, + "rtt_ns": 1568292, + "rtt_ms": 1.568292, "checkpoint": 0, "vertex_from": "48", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:37.984396605Z" + "timestamp": "2025-11-27T04:03:19.572294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164064, - "rtt_ms": 2.164064, + "rtt_ns": 1483084, + "rtt_ms": 1.483084, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "630", - "timestamp": "2025-11-27T01:23:37.985010624Z" + "vertex_to": "175", + "timestamp": "2025-11-27T04:03:19.572312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619335, - "rtt_ms": 1.619335, + "rtt_ns": 1453791, + "rtt_ms": 1.453791, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:37.985184033Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.572373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667345, - "rtt_ms": 1.667345, + "rtt_ns": 1498208, + "rtt_ms": 1.498208, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:37.985217003Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.57275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886915, - "rtt_ms": 1.886915, + "rtt_ns": 1314542, + "rtt_ms": 1.314542, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:37.985273583Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:19.572766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971175, - "rtt_ms": 1.971175, + "rtt_ns": 2034708, + "rtt_ms": 2.034708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "175", - "timestamp": "2025-11-27T01:23:37.985293043Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.573641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652845, - "rtt_ms": 1.652845, + "rtt_ns": 2117417, + "rtt_ms": 2.117417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:37.985564882Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:19.573658-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020005, - "rtt_ms": 2.020005, + "rtt_ns": 1766542, + "rtt_ms": 1.766542, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:37.98641866Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:03:19.573672-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303353, - "rtt_ms": 2.303353, + "rtt_ns": 1118334, + "rtt_ms": 1.118334, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:37.986544999Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:19.573869-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533113, - "rtt_ms": 2.533113, + "rtt_ns": 1568541, + "rtt_ms": 1.568541, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:37.986905698Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:19.573942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2773092, - "rtt_ms": 2.773092, + "rtt_ns": 1667334, + "rtt_ms": 1.667334, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "355", - "timestamp": "2025-11-27T01:23:37.987089728Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.573962-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207923, - "rtt_ms": 2.207923, + "rtt_ns": 1680334, + "rtt_ms": 1.680334, "checkpoint": 0, "vertex_from": "48", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:37.987220267Z" + "timestamp": "2025-11-27T04:03:19.573993-08:00" }, { "operation": "add_edge", - "rtt_ns": 2564173, - "rtt_ms": 2.564173, + "rtt_ns": 1974292, + "rtt_ms": 1.974292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:37.987750316Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.574077-08:00" }, { "operation": "add_edge", - "rtt_ns": 2625103, - "rtt_ms": 2.625103, + "rtt_ns": 2633042, + "rtt_ms": 2.633042, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:37.987843246Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.574278-08:00" }, { "operation": "add_edge", - "rtt_ns": 2604743, - "rtt_ms": 2.604743, + "rtt_ns": 1603417, + "rtt_ms": 1.603417, "checkpoint": 0, "vertex_from": "48", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:37.987879416Z" + "timestamp": "2025-11-27T04:03:19.574371-08:00" }, { "operation": "add_edge", - "rtt_ns": 2378983, - "rtt_ms": 2.378983, + "rtt_ns": 1410833, + "rtt_ms": 1.410833, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:37.987945045Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:19.575053-08:00" }, { "operation": "add_edge", - "rtt_ns": 3024961, - "rtt_ms": 3.024961, + "rtt_ns": 1467916, + "rtt_ms": 1.467916, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:37.988320744Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.575127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043474, - "rtt_ms": 2.043474, + "rtt_ns": 1456416, + "rtt_ms": 1.456416, "checkpoint": 0, "vertex_from": "48", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:37.988463444Z" + "timestamp": "2025-11-27T04:03:19.575129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943825, - "rtt_ms": 1.943825, + "rtt_ns": 1278083, + "rtt_ms": 1.278083, "checkpoint": 0, "vertex_from": "48", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:37.988491544Z" + "timestamp": "2025-11-27T04:03:19.575148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272317, - "rtt_ms": 1.272317, + "rtt_ns": 1214583, + "rtt_ms": 1.214583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:37.988494114Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:03:19.575158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414806, - "rtt_ms": 1.414806, + "rtt_ns": 1228875, + "rtt_ms": 1.228875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:37.988507164Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:19.575308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683785, - "rtt_ms": 1.683785, + "rtt_ns": 1448209, + "rtt_ms": 1.448209, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:37.988590583Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:19.575444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469106, - "rtt_ms": 1.469106, + "rtt_ns": 1505666, + "rtt_ms": 1.505666, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:37.989220872Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:19.575468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304176, - "rtt_ms": 1.304176, + "rtt_ns": 1104958, + "rtt_ms": 1.104958, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:37.989250401Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:19.575477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298666, - "rtt_ms": 1.298666, + "rtt_ns": 1346167, + "rtt_ms": 1.346167, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "50", - "timestamp": "2025-11-27T01:23:37.98979382Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:19.575626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041754, - "rtt_ms": 2.041754, + "rtt_ns": 1268667, + "rtt_ms": 1.268667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:37.98988641Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.5764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470845, - "rtt_ms": 1.470845, + "rtt_ns": 1119375, + "rtt_ms": 1.119375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:37.989935739Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:19.576428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681605, - "rtt_ms": 1.681605, + "rtt_ns": 1581375, + "rtt_ms": 1.581375, "checkpoint": 0, "vertex_from": "48", "vertex_to": "901", - "timestamp": "2025-11-27T01:23:37.990003569Z" + "timestamp": "2025-11-27T04:03:19.576709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447176, - "rtt_ms": 1.447176, + "rtt_ns": 1258667, + "rtt_ms": 1.258667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:37.990038979Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.576729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214663, - "rtt_ms": 2.214663, + "rtt_ns": 1587333, + "rtt_ms": 1.587333, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:37.990095259Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:03:19.576746-08:00" }, { "operation": "add_edge", - "rtt_ns": 920087, - "rtt_ms": 0.920087, + "rtt_ns": 1316000, + "rtt_ms": 1.316, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:37.990143579Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.576761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706885, - "rtt_ms": 1.706885, + "rtt_ns": 1721917, + "rtt_ms": 1.721917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "74", - "timestamp": "2025-11-27T01:23:37.990199149Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:19.576778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697095, - "rtt_ms": 1.697095, + "rtt_ns": 1319583, + "rtt_ms": 1.319583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:37.990206229Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:19.576798-08:00" }, { "operation": "add_edge", - "rtt_ns": 954058, - "rtt_ms": 0.954058, + "rtt_ns": 1658208, + "rtt_ms": 1.658208, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:37.990207419Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:03:19.576807-08:00" }, { "operation": "add_edge", - "rtt_ns": 830337, - "rtt_ms": 0.830337, + "rtt_ns": 1365416, + "rtt_ms": 1.365416, "checkpoint": 0, "vertex_from": "48", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:37.990625297Z" + "timestamp": "2025-11-27T04:03:19.576993-08:00" }, { "operation": "add_edge", - "rtt_ns": 760328, - "rtt_ms": 0.760328, + "rtt_ns": 1325208, + "rtt_ms": 1.325208, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:37.990697207Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.577728-08:00" }, { "operation": "add_edge", - "rtt_ns": 723098, - "rtt_ms": 0.723098, + "rtt_ns": 1063875, + "rtt_ms": 1.063875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:37.990727727Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.577825-08:00" }, { "operation": "add_edge", - "rtt_ns": 847067, - "rtt_ms": 0.847067, + "rtt_ns": 1256292, + "rtt_ms": 1.256292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:37.990734707Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:19.577986-08:00" }, { "operation": "add_edge", - "rtt_ns": 748828, - "rtt_ms": 0.748828, + "rtt_ns": 1225917, + "rtt_ms": 1.225917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:37.990789187Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:19.578004-08:00" }, { "operation": "add_edge", - "rtt_ns": 710658, - "rtt_ms": 0.710658, + "rtt_ns": 1427125, + "rtt_ms": 1.427125, "checkpoint": 0, "vertex_from": "48", "vertex_to": "922", - "timestamp": "2025-11-27T01:23:37.990808027Z" + "timestamp": "2025-11-27T04:03:19.578174-08:00" }, { "operation": "add_edge", - "rtt_ns": 729828, - "rtt_ms": 0.729828, + "rtt_ns": 1763334, + "rtt_ms": 1.763334, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:37.990874837Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:19.578193-08:00" }, { "operation": "add_edge", - "rtt_ns": 725117, - "rtt_ms": 0.725117, + "rtt_ns": 1406291, + "rtt_ms": 1.406291, "checkpoint": 0, "vertex_from": "48", "vertex_to": "393", - "timestamp": "2025-11-27T01:23:37.990933946Z" + "timestamp": "2025-11-27T04:03:19.578214-08:00" }, { "operation": "add_edge", - "rtt_ns": 784257, - "rtt_ms": 0.784257, + "rtt_ns": 1424916, + "rtt_ms": 1.424916, "checkpoint": 0, "vertex_from": "48", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:37.990991846Z" + "timestamp": "2025-11-27T04:03:19.578223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431435, - "rtt_ms": 1.431435, + "rtt_ns": 1623000, + "rtt_ms": 1.623, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:37.991632304Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:19.578333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097737, - "rtt_ms": 1.097737, + "rtt_ns": 1446833, + "rtt_ms": 1.446833, "checkpoint": 0, "vertex_from": "48", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:37.991724414Z" + "timestamp": "2025-11-27T04:03:19.57844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069007, - "rtt_ms": 1.069007, + "rtt_ns": 1391125, + "rtt_ms": 1.391125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:37.991767604Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.579378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688445, - "rtt_ms": 1.688445, + "rtt_ns": 1064208, + "rtt_ms": 1.064208, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:37.992417232Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:19.579398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735195, - "rtt_ms": 1.735195, + "rtt_ns": 1484583, + "rtt_ms": 1.484583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:37.992473232Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.579489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683055, - "rtt_ms": 1.683055, + "rtt_ns": 1979125, + "rtt_ms": 1.979125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:37.992475852Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:19.579805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589476, - "rtt_ms": 1.589476, + "rtt_ns": 2086417, + "rtt_ms": 2.086417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:37.992524382Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:19.579815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681105, - "rtt_ms": 1.681105, + "rtt_ns": 1660792, + "rtt_ms": 1.660792, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:37.992557542Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:19.580102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569546, - "rtt_ms": 1.569546, + "rtt_ns": 1924041, + "rtt_ms": 1.924041, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:37.992562432Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:19.580117-08:00" }, { "operation": "add_edge", - "rtt_ns": 2734692, - "rtt_ms": 2.734692, + "rtt_ns": 2262750, + "rtt_ms": 2.26275, "checkpoint": 0, "vertex_from": "48", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:37.993544209Z" + "timestamp": "2025-11-27T04:03:19.580438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828865, - "rtt_ms": 1.828865, + "rtt_ns": 2229667, + "rtt_ms": 2.229667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:37.993554209Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:19.580454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933765, - "rtt_ms": 1.933765, + "rtt_ns": 2346083, + "rtt_ms": 2.346083, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:37.993567029Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.580561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800365, - "rtt_ms": 1.800365, + "rtt_ns": 1672208, + "rtt_ms": 1.672208, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:37.993569109Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:19.581162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055267, - "rtt_ms": 1.055267, + "rtt_ns": 1781042, + "rtt_ms": 1.781042, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:37.993580429Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:19.58118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121626, - "rtt_ms": 1.121626, + "rtt_ns": 1529375, + "rtt_ms": 1.529375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:37.993596008Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:19.581632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268166, - "rtt_ms": 1.268166, + "rtt_ns": 1834458, + "rtt_ms": 1.834458, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:37.993686538Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.58165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857654, - "rtt_ms": 1.857654, + "rtt_ns": 1260875, + "rtt_ms": 1.260875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:37.994336166Z" + "vertex_to": "923", + "timestamp": "2025-11-27T04:03:19.581825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778724, - "rtt_ms": 1.778724, + "rtt_ns": 2550167, + "rtt_ms": 2.550167, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:37.994337906Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:19.581929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778824, - "rtt_ms": 1.778824, + "rtt_ns": 1560125, + "rtt_ms": 1.560125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:37.994342206Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:19.581999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281183, - "rtt_ms": 2.281183, + "rtt_ns": 1937334, + "rtt_ms": 1.937334, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:37.995851492Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:19.582056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2310814, - "rtt_ms": 2.310814, + "rtt_ns": 2314583, + "rtt_ms": 2.314583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:37.995907462Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.582121-08:00" }, { "operation": "add_edge", - "rtt_ns": 2499562, - "rtt_ms": 2.499562, + "rtt_ns": 1686667, + "rtt_ms": 1.686667, "checkpoint": 0, "vertex_from": "48", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:37.996054651Z" + "timestamp": "2025-11-27T04:03:19.582141-08:00" }, { "operation": "add_edge", - "rtt_ns": 3587469, - "rtt_ms": 3.587469, + "rtt_ns": 1511417, + "rtt_ms": 1.511417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:37.997172358Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.582675-08:00" }, { "operation": "add_edge", - "rtt_ns": 3681239, - "rtt_ms": 3.681239, + "rtt_ns": 1799875, + "rtt_ms": 1.799875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:37.997227948Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:19.582981-08:00" }, { "operation": "add_edge", - "rtt_ns": 3612970, - "rtt_ms": 3.61297, + "rtt_ns": 953417, + "rtt_ms": 0.953417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:37.997300848Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:19.583011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2972862, - "rtt_ms": 2.972862, + "rtt_ns": 1291292, + "rtt_ms": 1.291292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:37.997312148Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.583292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280447, - "rtt_ms": 1.280447, + "rtt_ns": 1717458, + "rtt_ms": 1.717458, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "238", - "timestamp": "2025-11-27T01:23:37.997337138Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:19.583649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430636, - "rtt_ms": 1.430636, + "rtt_ns": 1882125, + "rtt_ms": 1.882125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "666", - "timestamp": "2025-11-27T01:23:37.997339488Z" + "vertex_to": "231", + "timestamp": "2025-11-27T04:03:19.583709-08:00" }, { "operation": "add_edge", - "rtt_ns": 3004022, - "rtt_ms": 3.004022, + "rtt_ns": 2529917, + "rtt_ms": 2.529917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:37.997347258Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:19.584181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519066, - "rtt_ms": 1.519066, + "rtt_ns": 1853417, + "rtt_ms": 1.853417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:37.997372478Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:19.584529-08:00" }, { "operation": "add_edge", - "rtt_ns": 3035752, - "rtt_ms": 3.035752, + "rtt_ns": 2405791, + "rtt_ms": 2.405791, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "231", - "timestamp": "2025-11-27T01:23:37.997373678Z" + "vertex_to": "238", + "timestamp": "2025-11-27T04:03:19.584548-08:00" }, { "operation": "add_edge", - "rtt_ns": 3850628, - "rtt_ms": 3.850628, + "rtt_ns": 2976791, + "rtt_ms": 2.976791, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "923", - "timestamp": "2025-11-27T01:23:37.997419407Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:19.58461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089107, - "rtt_ms": 1.089107, + "rtt_ns": 2621750, + "rtt_ms": 2.62175, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:37.998262785Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:03:19.584744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095807, - "rtt_ms": 1.095807, + "rtt_ns": 1469958, + "rtt_ms": 1.469958, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:37.998444365Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:19.584763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657205, - "rtt_ms": 1.657205, + "rtt_ns": 1797375, + "rtt_ms": 1.797375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:37.998959723Z" + "vertex_to": "279", + "timestamp": "2025-11-27T04:03:19.584779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747795, - "rtt_ms": 1.747795, + "rtt_ns": 1782708, + "rtt_ms": 1.782708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "279", - "timestamp": "2025-11-27T01:23:37.998977173Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.584794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621165, - "rtt_ms": 1.621165, + "rtt_ns": 1014708, + "rtt_ms": 1.014708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:37.998995233Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:19.585197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585366, - "rtt_ms": 1.585366, + "rtt_ns": 1734667, + "rtt_ms": 1.734667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:37.999005943Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:19.585445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715475, - "rtt_ms": 1.715475, + "rtt_ns": 1977209, + "rtt_ms": 1.977209, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:37.999028523Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:19.585629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690635, - "rtt_ms": 1.690635, + "rtt_ns": 1536916, + "rtt_ms": 1.536916, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:37.999028573Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:19.586086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689615, - "rtt_ms": 1.689615, + "rtt_ns": 1612375, + "rtt_ms": 1.612375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:37.999030503Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:19.586143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682255, - "rtt_ms": 1.682255, + "rtt_ns": 1565166, + "rtt_ms": 1.565166, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:37.999057283Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:19.586178-08:00" }, { "operation": "add_edge", - "rtt_ns": 872588, - "rtt_ms": 0.872588, + "rtt_ns": 1413209, + "rtt_ms": 1.413209, "checkpoint": 0, "vertex_from": "48", "vertex_to": "179", - "timestamp": "2025-11-27T01:23:37.999851601Z" + "timestamp": "2025-11-27T04:03:19.586209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407826, - "rtt_ms": 1.407826, + "rtt_ns": 1510792, + "rtt_ms": 1.510792, "checkpoint": 0, "vertex_from": "48", "vertex_to": "123", - "timestamp": "2025-11-27T01:23:37.999854571Z" + "timestamp": "2025-11-27T04:03:19.586274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623265, - "rtt_ms": 1.623265, + "rtt_ns": 1511667, + "rtt_ms": 1.511667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "851", - "timestamp": "2025-11-27T01:23:37.9998877Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.586292-08:00" }, { "operation": "add_edge", - "rtt_ns": 968567, - "rtt_ms": 0.968567, + "rtt_ns": 1613584, + "rtt_ms": 1.613584, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:37.99993017Z" + "vertex_to": "851", + "timestamp": "2025-11-27T04:03:19.586359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499026, - "rtt_ms": 1.499026, + "rtt_ns": 1684500, + "rtt_ms": 1.6845, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:38.000530369Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:19.586882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488905, - "rtt_ms": 1.488905, + "rtt_ns": 1441917, + "rtt_ms": 1.441917, "checkpoint": 0, - "vertex_from": "49", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.000550608Z" + "vertex_from": "48", + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:19.586888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534115, - "rtt_ms": 1.534115, + "rtt_ns": 1590334, + "rtt_ms": 1.590334, "checkpoint": 0, "vertex_from": "48", "vertex_to": "56", - "timestamp": "2025-11-27T01:23:38.000564188Z" + "timestamp": "2025-11-27T04:03:19.58722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571345, - "rtt_ms": 1.571345, + "rtt_ns": 1002875, + "rtt_ms": 1.002875, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:38.000568868Z" + "vertex_from": "49", + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:19.587295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552745, - "rtt_ms": 1.552745, + "rtt_ns": 1286833, + "rtt_ms": 1.286833, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:38.000584888Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.587466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597535, - "rtt_ms": 1.597535, + "rtt_ns": 1601750, + "rtt_ms": 1.60175, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:38.000605148Z" + "vertex_from": "49", + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:19.587747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175326, - "rtt_ms": 1.175326, + "rtt_ns": 1558458, + "rtt_ms": 1.558458, "checkpoint": 0, "vertex_from": "49", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.001028927Z" + "timestamp": "2025-11-27T04:03:19.587769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573026, - "rtt_ms": 1.573026, + "rtt_ns": 1501500, + "rtt_ms": 1.5015, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "52", - "timestamp": "2025-11-27T01:23:38.001504156Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:19.587777-08:00" }, { "operation": "add_edge", - "rtt_ns": 928778, - "rtt_ms": 0.928778, + "rtt_ns": 1426458, + "rtt_ms": 1.426458, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.001537906Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:03:19.587786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728374, - "rtt_ms": 1.728374, + "rtt_ns": 1713917, + "rtt_ms": 1.713917, "checkpoint": 0, - "vertex_from": "49", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:38.001584495Z" + "vertex_from": "48", + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:19.587803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080227, - "rtt_ms": 1.080227, + "rtt_ns": 1141666, + "rtt_ms": 1.141666, "checkpoint": 0, "vertex_from": "49", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.001632285Z" + "timestamp": "2025-11-27T04:03:19.588031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066257, - "rtt_ms": 1.066257, + "rtt_ns": 1424791, + "rtt_ms": 1.424791, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.001652035Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.588308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112797, - "rtt_ms": 1.112797, + "rtt_ns": 1328333, + "rtt_ms": 1.328333, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.001677975Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.588626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112907, - "rtt_ms": 1.112907, + "rtt_ns": 1570834, + "rtt_ms": 1.570834, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.001683925Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.588792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338516, - "rtt_ms": 1.338516, + "rtt_ns": 1280834, + "rtt_ms": 1.280834, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.001870365Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.589029-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004944, - "rtt_ms": 2.004944, + "rtt_ns": 1580750, + "rtt_ms": 1.58075, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:38.001893554Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.589048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095986, - "rtt_ms": 1.095986, + "rtt_ns": 1496500, + "rtt_ms": 1.4965, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:38.002601202Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.589284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018037, - "rtt_ms": 1.018037, + "rtt_ns": 1583375, + "rtt_ms": 1.583375, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.002604002Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.589353-08:00" }, { "operation": "add_edge", - "rtt_ns": 991707, - "rtt_ms": 0.991707, + "rtt_ns": 1402417, + "rtt_ms": 1.402417, "checkpoint": 0, "vertex_from": "49", "vertex_to": "104", - "timestamp": "2025-11-27T01:23:38.002626172Z" + "timestamp": "2025-11-27T04:03:19.589435-08:00" }, { "operation": "add_edge", - "rtt_ns": 947347, - "rtt_ms": 0.947347, + "rtt_ns": 1647166, + "rtt_ms": 1.647166, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.002626902Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.589451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118486, - "rtt_ms": 1.118486, + "rtt_ns": 1686417, + "rtt_ms": 1.686417, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:38.002659782Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:19.589466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689985, - "rtt_ms": 1.689985, + "rtt_ns": 1142791, + "rtt_ms": 1.142791, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:38.002720462Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.589769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188997, - "rtt_ms": 1.188997, + "rtt_ns": 1751458, + "rtt_ms": 1.751458, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:38.002874262Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:19.59006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321856, - "rtt_ms": 1.321856, + "rtt_ns": 1283875, + "rtt_ms": 1.283875, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:38.002975601Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:19.590076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295406, - "rtt_ms": 1.295406, + "rtt_ns": 1470167, + "rtt_ms": 1.470167, "checkpoint": 0, "vertex_from": "49", "vertex_to": "816", - "timestamp": "2025-11-27T01:23:38.003167401Z" + "timestamp": "2025-11-27T04:03:19.5905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273287, - "rtt_ms": 1.273287, + "rtt_ns": 1561083, + "rtt_ms": 1.561083, "checkpoint": 0, "vertex_from": "49", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:38.003168491Z" + "timestamp": "2025-11-27T04:03:19.59061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371476, - "rtt_ms": 1.371476, + "rtt_ns": 1676042, + "rtt_ms": 1.676042, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:38.003976698Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:19.590961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879925, - "rtt_ms": 1.879925, + "rtt_ns": 1528166, + "rtt_ms": 1.528166, "checkpoint": 0, "vertex_from": "49", "vertex_to": "562", - "timestamp": "2025-11-27T01:23:38.004509507Z" + "timestamp": "2025-11-27T04:03:19.59098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859875, - "rtt_ms": 1.859875, + "rtt_ns": 1561042, + "rtt_ms": 1.561042, "checkpoint": 0, "vertex_from": "49", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.004521797Z" + "timestamp": "2025-11-27T04:03:19.591027-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375443, - "rtt_ms": 2.375443, + "rtt_ns": 1390959, + "rtt_ms": 1.390959, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:38.005004855Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.591161-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471433, - "rtt_ms": 2.471433, + "rtt_ns": 1827041, + "rtt_ms": 1.827041, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:38.005074025Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.591181-08:00" }, { "operation": "add_edge", - "rtt_ns": 2411103, - "rtt_ms": 2.411103, + "rtt_ns": 1779292, + "rtt_ms": 1.779292, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.005133345Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:19.591215-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217214, - "rtt_ms": 2.217214, + "rtt_ns": 1184250, + "rtt_ms": 1.18425, "checkpoint": 0, "vertex_from": "49", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.005194065Z" + "timestamp": "2025-11-27T04:03:19.591261-08:00" }, { "operation": "add_edge", - "rtt_ns": 2409923, - "rtt_ms": 2.409923, + "rtt_ns": 1219000, + "rtt_ms": 1.219, "checkpoint": 0, "vertex_from": "49", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.005285785Z" + "timestamp": "2025-11-27T04:03:19.59128-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152424, - "rtt_ms": 2.152424, + "rtt_ns": 1190708, + "rtt_ms": 1.190708, "checkpoint": 0, "vertex_from": "49", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.005321595Z" + "timestamp": "2025-11-27T04:03:19.591692-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238003, - "rtt_ms": 2.238003, + "rtt_ns": 1384417, + "rtt_ms": 1.384417, "checkpoint": 0, "vertex_from": "49", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:38.005407854Z" + "timestamp": "2025-11-27T04:03:19.591995-08:00" }, { "operation": "add_edge", - "rtt_ns": 968737, - "rtt_ms": 0.968737, + "rtt_ns": 1288750, + "rtt_ms": 1.28875, "checkpoint": 0, "vertex_from": "49", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.005479604Z" + "timestamp": "2025-11-27T04:03:19.59227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544086, - "rtt_ms": 1.544086, + "rtt_ns": 1362833, + "rtt_ms": 1.362833, "checkpoint": 0, "vertex_from": "49", "vertex_to": "394", - "timestamp": "2025-11-27T01:23:38.005522964Z" + "timestamp": "2025-11-27T04:03:19.592326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036607, - "rtt_ms": 1.036607, + "rtt_ns": 1311250, + "rtt_ms": 1.31125, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.005560584Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.592493-08:00" }, { "operation": "add_edge", - "rtt_ns": 881528, - "rtt_ms": 0.881528, + "rtt_ns": 1517709, + "rtt_ms": 1.517709, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:38.005887743Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.592546-08:00" }, { "operation": "add_edge", - "rtt_ns": 862048, - "rtt_ms": 0.862048, + "rtt_ns": 1362708, + "rtt_ms": 1.362708, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:38.005997183Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:03:19.592625-08:00" }, { "operation": "add_edge", - "rtt_ns": 936288, - "rtt_ms": 0.936288, + "rtt_ns": 1425333, + "rtt_ms": 1.425333, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:38.006011763Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:19.592641-08:00" }, { "operation": "add_edge", - "rtt_ns": 832828, - "rtt_ms": 0.832828, + "rtt_ns": 1481917, + "rtt_ms": 1.481917, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "842", - "timestamp": "2025-11-27T01:23:38.006029583Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:19.592644-08:00" }, { "operation": "add_edge", - "rtt_ns": 807187, - "rtt_ms": 0.807187, + "rtt_ns": 1447208, + "rtt_ms": 1.447208, "checkpoint": 0, "vertex_from": "49", "vertex_to": "124", - "timestamp": "2025-11-27T01:23:38.006094222Z" + "timestamp": "2025-11-27T04:03:19.592728-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1332166, + "rtt_ms": 1.332166, + "checkpoint": 0, + "vertex_from": "442", + "timestamp": "2025-11-27T04:03:19.593027-08:00" }, { "operation": "add_edge", - "rtt_ns": 703218, - "rtt_ms": 0.703218, + "rtt_ns": 1413625, + "rtt_ms": 1.413625, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.006112022Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:19.593685-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 894837, - "rtt_ms": 0.894837, + "operation": "add_edge", + "rtt_ns": 1728875, + "rtt_ms": 1.728875, "checkpoint": 0, - "vertex_from": "442", - "timestamp": "2025-11-27T01:23:38.006218842Z" + "vertex_from": "49", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.593726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052477, - "rtt_ms": 1.052477, + "rtt_ns": 1322083, + "rtt_ms": 1.322083, "checkpoint": 0, "vertex_from": "49", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.006614421Z" + "timestamp": "2025-11-27T04:03:19.593817-08:00" }, { "operation": "add_edge", - "rtt_ns": 910957, - "rtt_ms": 0.910957, + "rtt_ns": 1540000, + "rtt_ms": 1.54, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:38.00679999Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:19.593868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383386, - "rtt_ms": 1.383386, + "rtt_ns": 1337208, + "rtt_ms": 1.337208, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:38.00690862Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.593884-08:00" }, { "operation": "add_edge", - "rtt_ns": 931477, - "rtt_ms": 0.931477, + "rtt_ns": 1174584, + "rtt_ms": 1.174584, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:38.00693021Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:19.593904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464826, - "rtt_ms": 1.464826, + "rtt_ns": 1274583, + "rtt_ms": 1.274583, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:38.00694558Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:19.593919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481395, - "rtt_ms": 1.481395, + "rtt_ns": 1444291, + "rtt_ms": 1.444291, "checkpoint": 0, "vertex_from": "49", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.007494368Z" + "timestamp": "2025-11-27T04:03:19.594087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491615, - "rtt_ms": 1.491615, + "rtt_ns": 1584291, + "rtt_ms": 1.584291, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:38.007524218Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.59421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749395, - "rtt_ms": 1.749395, + "rtt_ns": 1426708, + "rtt_ms": 1.426708, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:38.007863177Z" + "vertex_to": "442", + "timestamp": "2025-11-27T04:03:19.594454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733125, - "rtt_ms": 1.733125, + "rtt_ns": 1265375, + "rtt_ms": 1.265375, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "442", - "timestamp": "2025-11-27T01:23:38.007952197Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.595134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350576, - "rtt_ms": 1.350576, + "rtt_ns": 1231875, + "rtt_ms": 1.231875, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:38.007966147Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:19.595151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072514, - "rtt_ms": 2.072514, + "rtt_ns": 1553750, + "rtt_ms": 1.55375, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:38.008169016Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.595372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223496, - "rtt_ms": 1.223496, + "rtt_ns": 1667250, + "rtt_ms": 1.66725, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:38.008171246Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:19.595396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385946, - "rtt_ms": 1.385946, + "rtt_ns": 1713917, + "rtt_ms": 1.713917, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:38.008187326Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:19.5954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318436, - "rtt_ms": 1.318436, + "rtt_ns": 1514208, + "rtt_ms": 1.514208, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.008228576Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.595419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318216, - "rtt_ms": 1.318216, + "rtt_ns": 1538500, + "rtt_ms": 1.5385, "checkpoint": 0, "vertex_from": "49", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:38.008249796Z" + "timestamp": "2025-11-27T04:03:19.595424-08:00" }, { "operation": "add_edge", - "rtt_ns": 804028, - "rtt_ms": 0.804028, + "rtt_ns": 1226333, + "rtt_ms": 1.226333, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:38.008299186Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.595437-08:00" }, { "operation": "add_edge", - "rtt_ns": 801788, - "rtt_ms": 0.801788, + "rtt_ns": 1497708, + "rtt_ms": 1.497708, "checkpoint": 0, "vertex_from": "49", "vertex_to": "590", - "timestamp": "2025-11-27T01:23:38.008328316Z" + "timestamp": "2025-11-27T04:03:19.595587-08:00" }, { "operation": "add_edge", - "rtt_ns": 677438, - "rtt_ms": 0.677438, + "rtt_ns": 1617834, + "rtt_ms": 1.617834, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:38.008542495Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:19.596072-08:00" }, { "operation": "add_edge", - "rtt_ns": 802318, - "rtt_ms": 0.802318, + "rtt_ns": 1159042, + "rtt_ms": 1.159042, "checkpoint": 0, - "vertex_from": "49", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:38.008755795Z" + "vertex_from": "50", + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.596747-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 672298, - "rtt_ms": 0.672298, + "operation": "add_edge", + "rtt_ns": 1392500, + "rtt_ms": 1.3925, "checkpoint": 0, - "vertex_from": "409", - "timestamp": "2025-11-27T01:23:38.008846464Z" + "vertex_from": "50", + "vertex_to": "56", + "timestamp": "2025-11-27T04:03:19.596767-08:00" }, { "operation": "add_edge", - "rtt_ns": 892537, - "rtt_ms": 0.892537, + "rtt_ns": 1463292, + "rtt_ms": 1.463292, "checkpoint": 0, - "vertex_from": "49", + "vertex_from": "50", "vertex_to": "145", - "timestamp": "2025-11-27T01:23:38.008860234Z" + "timestamp": "2025-11-27T04:03:19.596901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245537, - "rtt_ms": 1.245537, + "rtt_ns": 1702125, + "rtt_ms": 1.702125, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "56", - "timestamp": "2025-11-27T01:23:38.009418493Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:19.597104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026477, - "rtt_ms": 1.026477, + "rtt_ns": 1725083, + "rtt_ms": 1.725083, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:38.009570172Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.597121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356366, - "rtt_ms": 1.356366, + "rtt_ns": 1722584, + "rtt_ms": 1.722584, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:38.009585972Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.597142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375356, - "rtt_ms": 1.375356, + "rtt_ns": 2043583, + "rtt_ms": 2.043583, "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:38.009626512Z" + "vertex_from": "49", + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.597181-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1360536, - "rtt_ms": 1.360536, + "rtt_ns": 1822375, + "rtt_ms": 1.822375, "checkpoint": 0, "vertex_from": "995", - "timestamp": "2025-11-27T01:23:38.009663322Z" + "timestamp": "2025-11-27T04:03:19.597248-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2116750, + "rtt_ms": 2.11675, + "checkpoint": 0, + "vertex_from": "409", + "timestamp": "2025-11-27T04:03:19.59727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360296, - "rtt_ms": 1.360296, + "rtt_ns": 1814166, + "rtt_ms": 1.814166, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:38.009690042Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:19.597887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530926, - "rtt_ms": 1.530926, + "rtt_ns": 1249959, + "rtt_ms": 1.249959, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.009720582Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.598152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586526, - "rtt_ms": 1.586526, + "rtt_ns": 1402375, + "rtt_ms": 1.402375, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:38.01044801Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.59817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715615, - "rtt_ms": 1.715615, + "rtt_ns": 1240416, + "rtt_ms": 1.240416, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:38.01047237Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.598423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677435, - "rtt_ms": 1.677435, + "rtt_ns": 1349792, + "rtt_ms": 1.349792, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "409", - "timestamp": "2025-11-27T01:23:38.010524359Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.598472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431176, - "rtt_ms": 1.431176, + "rtt_ns": 1737083, + "rtt_ms": 1.737083, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.011018438Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.598485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304336, - "rtt_ms": 1.304336, + "rtt_ns": 1412083, + "rtt_ms": 1.412083, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.011027178Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.598516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469936, - "rtt_ms": 1.469936, + "rtt_ns": 1610541, + "rtt_ms": 1.610541, "checkpoint": 0, "vertex_from": "50", "vertex_to": "97", - "timestamp": "2025-11-27T01:23:38.011160958Z" + "timestamp": "2025-11-27T04:03:19.598753-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149044, - "rtt_ms": 2.149044, + "rtt_ns": 1522042, + "rtt_ms": 1.522042, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.011721326Z" + "vertex_to": "995", + "timestamp": "2025-11-27T04:03:19.598771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395485, - "rtt_ms": 1.395485, + "rtt_ns": 1537083, + "rtt_ms": 1.537083, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:38.011870785Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:03:19.598807-08:00" }, { "operation": "add_edge", - "rtt_ns": 2490892, - "rtt_ms": 2.490892, + "rtt_ns": 1033084, + "rtt_ms": 1.033084, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.011913475Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:19.599204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397616, - "rtt_ms": 1.397616, + "rtt_ns": 1339625, + "rtt_ms": 1.339625, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:38.011923875Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:19.599493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312293, - "rtt_ms": 2.312293, + "rtt_ns": 1637667, + "rtt_ms": 1.637667, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.011940395Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:19.599526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516315, - "rtt_ms": 1.516315, + "rtt_ns": 1477750, + "rtt_ms": 1.47775, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:38.011966855Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.599995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2946111, - "rtt_ms": 2.946111, + "rtt_ns": 1526500, + "rtt_ms": 1.5265, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "995", - "timestamp": "2025-11-27T01:23:38.012609943Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:19.600014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619765, - "rtt_ms": 1.619765, + "rtt_ns": 1198833, + "rtt_ms": 1.198833, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:38.012648743Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:03:19.600403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588045, - "rtt_ms": 1.588045, + "rtt_ns": 1654083, + "rtt_ms": 1.654083, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:38.012750613Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.600426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033057, - "rtt_ms": 1.033057, + "rtt_ns": 1685917, + "rtt_ms": 1.685917, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.012757443Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.60044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738005, - "rtt_ms": 1.738005, + "rtt_ns": 1972792, + "rtt_ms": 1.972792, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.012758433Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:19.600446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894475, - "rtt_ms": 1.894475, + "rtt_ns": 1641292, + "rtt_ms": 1.641292, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.01376675Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:19.600449-08:00" }, { "operation": "add_edge", - "rtt_ns": 2554623, - "rtt_ms": 2.554623, + "rtt_ns": 964917, + "rtt_ms": 0.964917, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "213", - "timestamp": "2025-11-27T01:23:38.014497028Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:19.600458-08:00" }, { "operation": "add_edge", - "rtt_ns": 3019381, - "rtt_ms": 3.019381, + "rtt_ns": 2062583, + "rtt_ms": 2.062583, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:38.014945216Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.600488-08:00" }, { "operation": "add_edge", - "rtt_ns": 3141811, - "rtt_ms": 3.141811, + "rtt_ns": 1603625, + "rtt_ms": 1.603625, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.015056606Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.601131-08:00" }, { "operation": "add_edge", - "rtt_ns": 3148871, - "rtt_ms": 3.148871, + "rtt_ns": 1526042, + "rtt_ms": 1.526042, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:38.015117666Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:19.601967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2519363, - "rtt_ms": 2.519363, + "rtt_ns": 1566875, + "rtt_ms": 1.566875, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:38.015169566Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:19.602014-08:00" }, { "operation": "add_edge", - "rtt_ns": 2625932, - "rtt_ms": 2.625932, + "rtt_ns": 2039791, + "rtt_ms": 2.039791, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.015238325Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:19.602036-08:00" }, { "operation": "add_edge", - "rtt_ns": 2536022, - "rtt_ms": 2.536022, + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:38.015294945Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:19.602038-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613482, - "rtt_ms": 2.613482, + "rtt_ns": 2033042, + "rtt_ms": 2.033042, "checkpoint": 0, "vertex_from": "50", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:38.015366065Z" + "timestamp": "2025-11-27T04:03:19.602048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2623522, - "rtt_ms": 2.623522, + "rtt_ns": 1276084, + "rtt_ms": 1.276084, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:38.015384705Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.602408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637675, - "rtt_ms": 1.637675, + "rtt_ns": 2025833, + "rtt_ms": 2.025833, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:38.015406935Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:19.60243-08:00" }, { "operation": "add_edge", - "rtt_ns": 959177, - "rtt_ms": 0.959177, + "rtt_ns": 1978625, + "rtt_ms": 1.978625, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:38.015457585Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.602438-08:00" }, { "operation": "add_edge", - "rtt_ns": 882308, - "rtt_ms": 0.882308, + "rtt_ns": 2063625, + "rtt_ms": 2.063625, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:38.015828824Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:19.60249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096217, - "rtt_ms": 1.096217, + "rtt_ns": 2088375, + "rtt_ms": 2.088375, "checkpoint": 0, "vertex_from": "50", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.016216193Z" + "timestamp": "2025-11-27T04:03:19.602579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032047, - "rtt_ms": 1.032047, + "rtt_ns": 1295291, + "rtt_ms": 1.295291, "checkpoint": 0, "vertex_from": "50", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:38.016401012Z" + "timestamp": "2025-11-27T04:03:19.603332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135826, - "rtt_ms": 1.135826, + "rtt_ns": 1424375, + "rtt_ms": 1.424375, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:38.016595291Z" + "vertex_to": "231", + "timestamp": "2025-11-27T04:03:19.603464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299116, - "rtt_ms": 1.299116, + "rtt_ns": 1785750, + "rtt_ms": 1.78575, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:38.016595621Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.603835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198466, - "rtt_ms": 1.198466, + "rtt_ns": 1257791, + "rtt_ms": 1.257791, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.016607821Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.603855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463935, - "rtt_ms": 1.463935, + "rtt_ns": 1901500, + "rtt_ms": 1.9015, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:38.016634621Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:19.603871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380746, - "rtt_ms": 1.380746, + "rtt_ns": 1515250, + "rtt_ms": 1.51525, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "231", - "timestamp": "2025-11-27T01:23:38.016768161Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:19.603924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555646, - "rtt_ms": 1.555646, + "rtt_ns": 1926792, + "rtt_ms": 1.926792, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:38.016795361Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.603942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2181804, - "rtt_ms": 2.181804, + "rtt_ns": 1530833, + "rtt_ms": 1.530833, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:38.01723933Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:19.603962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553455, - "rtt_ms": 1.553455, + "rtt_ns": 1488583, + "rtt_ms": 1.488583, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:38.017384129Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.603981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297786, - "rtt_ms": 1.297786, + "rtt_ns": 1557542, + "rtt_ms": 1.557542, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.017699848Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.603996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312467, - "rtt_ms": 1.312467, + "rtt_ns": 1129541, + "rtt_ms": 1.129541, "checkpoint": 0, "vertex_from": "50", "vertex_to": "115", - "timestamp": "2025-11-27T01:23:38.017924088Z" + "timestamp": "2025-11-27T04:03:19.604607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813245, - "rtt_ms": 1.813245, + "rtt_ns": 1499083, + "rtt_ms": 1.499083, "checkpoint": 0, "vertex_from": "50", "vertex_to": "422", - "timestamp": "2025-11-27T01:23:38.018410656Z" + "timestamp": "2025-11-27T04:03:19.604832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890295, - "rtt_ms": 1.890295, + "rtt_ns": 1509583, + "rtt_ms": 1.509583, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:38.018487156Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:03:19.605434-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1921095, - "rtt_ms": 1.921095, + "operation": "add_edge", + "rtt_ns": 1584583, + "rtt_ms": 1.584583, "checkpoint": 0, - "vertex_from": "377", - "timestamp": "2025-11-27T01:23:38.018558256Z" + "vertex_from": "50", + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:19.605456-08:00" }, { "operation": "add_edge", - "rtt_ns": 905158, - "rtt_ms": 0.905158, + "rtt_ns": 1508250, + "rtt_ms": 1.50825, "checkpoint": 0, "vertex_from": "51", "vertex_to": "232", - "timestamp": "2025-11-27T01:23:38.018606936Z" + "timestamp": "2025-11-27T04:03:19.605471-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1844185, - "rtt_ms": 1.844185, + "operation": "add_vertex", + "rtt_ns": 1654750, + "rtt_ms": 1.65475, "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.018617806Z" + "vertex_from": "377", + "timestamp": "2025-11-27T04:03:19.605492-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441213, - "rtt_ms": 2.441213, + "rtt_ns": 1770291, + "rtt_ms": 1.770291, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.018658826Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.605626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291177, - "rtt_ms": 1.291177, + "rtt_ns": 1766875, + "rtt_ms": 1.766875, "checkpoint": 0, "vertex_from": "50", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.018676566Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1454386, - "rtt_ms": 1.454386, - "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "395", - "timestamp": "2025-11-27T01:23:38.018695456Z" + "timestamp": "2025-11-27T04:03:19.60571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921385, - "rtt_ms": 1.921385, + "rtt_ns": 1904041, + "rtt_ms": 1.904041, "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:38.018719506Z" + "vertex_from": "51", + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.605885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476716, - "rtt_ms": 1.476716, + "rtt_ns": 1949583, + "rtt_ms": 1.949583, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.019401964Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:19.605946-08:00" }, { "operation": "add_edge", - "rtt_ns": 928567, - "rtt_ms": 0.928567, + "rtt_ns": 1291833, + "rtt_ms": 1.291833, "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "377", - "timestamp": "2025-11-27T01:23:38.019487213Z" + "vertex_from": "51", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.606127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151407, - "rtt_ms": 1.151407, + "rtt_ns": 1955792, + "rtt_ms": 1.955792, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:38.019563773Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:19.606564-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091824, - "rtt_ms": 2.091824, + "rtt_ns": 1201292, + "rtt_ms": 1.201292, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.02058099Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:19.607088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1982554, - "rtt_ms": 1.982554, + "rtt_ns": 1612416, + "rtt_ms": 1.612416, "checkpoint": 0, - "vertex_from": "51", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.02059068Z" + "vertex_from": "50", + "vertex_to": "377", + "timestamp": "2025-11-27T04:03:19.607105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259363, - "rtt_ms": 2.259363, + "rtt_ns": 1662792, + "rtt_ms": 1.662792, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.020979929Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.60729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2445582, - "rtt_ms": 2.445582, + "rtt_ns": 1889125, + "rtt_ms": 1.889125, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.021144008Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.607346-08:00" }, { "operation": "add_edge", - "rtt_ns": 3085351, - "rtt_ms": 3.085351, + "rtt_ns": 1933166, + "rtt_ms": 1.933166, "checkpoint": 0, "vertex_from": "51", "vertex_to": "848", - "timestamp": "2025-11-27T01:23:38.021705407Z" + "timestamp": "2025-11-27T04:03:19.607368-08:00" }, { "operation": "add_edge", - "rtt_ns": 3138031, - "rtt_ms": 3.138031, + "rtt_ns": 1251167, + "rtt_ms": 1.251167, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.021797647Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.60738-08:00" }, { "operation": "add_edge", - "rtt_ns": 3121980, - "rtt_ms": 3.12198, + "rtt_ns": 1939083, + "rtt_ms": 1.939083, "checkpoint": 0, "vertex_from": "51", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:38.021799396Z" + "timestamp": "2025-11-27T04:03:19.607411-08:00" }, { "operation": "add_edge", - "rtt_ns": 2410713, - "rtt_ms": 2.410713, + "rtt_ns": 1511833, + "rtt_ms": 1.511833, "checkpoint": 0, "vertex_from": "51", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.021898726Z" + "timestamp": "2025-11-27T04:03:19.60746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527602, - "rtt_ms": 2.527602, + "rtt_ns": 1765500, + "rtt_ms": 1.7655, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:38.021930986Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.607476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2413803, - "rtt_ms": 2.413803, + "rtt_ns": 1454000, + "rtt_ms": 1.454, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.021979636Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:03:19.608018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831715, - "rtt_ms": 1.831715, + "rtt_ns": 1272250, + "rtt_ms": 1.27225, "checkpoint": 0, "vertex_from": "51", "vertex_to": "556", - "timestamp": "2025-11-27T01:23:38.022426565Z" + "timestamp": "2025-11-27T04:03:19.608361-08:00" }, { "operation": "add_edge", - "rtt_ns": 843437, - "rtt_ms": 0.843437, + "rtt_ns": 1419708, + "rtt_ms": 1.419708, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.022550024Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:19.608525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995314, - "rtt_ms": 1.995314, + "rtt_ns": 1460500, + "rtt_ms": 1.4605, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "65", - "timestamp": "2025-11-27T01:23:38.022580014Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:03:19.60883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619865, - "rtt_ms": 1.619865, + "rtt_ns": 1371208, + "rtt_ms": 1.371208, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:38.022602674Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.608848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549956, - "rtt_ms": 1.549956, + "rtt_ns": 1518583, + "rtt_ms": 1.518583, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:38.022695214Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.608865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492995, - "rtt_ms": 1.492995, + "rtt_ns": 1584166, + "rtt_ms": 1.584166, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:38.023473641Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:19.608875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591445, - "rtt_ms": 1.591445, + "rtt_ns": 1500875, + "rtt_ms": 1.500875, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:38.023491441Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.608881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696665, - "rtt_ms": 1.696665, + "rtt_ns": 1496333, + "rtt_ms": 1.496333, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.023498861Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.608908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586415, - "rtt_ms": 1.586415, + "rtt_ns": 1553167, + "rtt_ms": 1.553167, "checkpoint": 0, "vertex_from": "51", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:38.023518621Z" + "timestamp": "2025-11-27T04:03:19.609014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097016, - "rtt_ms": 1.097016, + "rtt_ns": 1337167, + "rtt_ms": 1.337167, "checkpoint": 0, "vertex_from": "51", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.023525271Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1747595, - "rtt_ms": 1.747595, - "checkpoint": 0, - "vertex_from": "51", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:38.023547881Z" + "timestamp": "2025-11-27T04:03:19.609357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385516, - "rtt_ms": 1.385516, + "rtt_ns": 1375959, + "rtt_ms": 1.375959, "checkpoint": 0, "vertex_from": "51", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.02393719Z" + "timestamp": "2025-11-27T04:03:19.609737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465826, - "rtt_ms": 1.465826, + "rtt_ns": 1360583, + "rtt_ms": 1.360583, "checkpoint": 0, - "vertex_from": "51", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.02404675Z" + "vertex_from": "52", + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:19.610269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961334, - "rtt_ms": 1.961334, + "rtt_ns": 1450167, + "rtt_ms": 1.450167, "checkpoint": 0, "vertex_from": "52", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.024657318Z" + "timestamp": "2025-11-27T04:03:19.610299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250117, - "rtt_ms": 1.250117, + "rtt_ns": 1435917, + "rtt_ms": 1.435917, "checkpoint": 0, "vertex_from": "52", "vertex_to": "466", - "timestamp": "2025-11-27T01:23:38.024743318Z" + "timestamp": "2025-11-27T04:03:19.610314-08:00" }, { "operation": "add_edge", - "rtt_ns": 2166004, - "rtt_ms": 2.166004, - "checkpoint": 0, - "vertex_from": "52", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:38.024769778Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1245217, - "rtt_ms": 1.245217, - "checkpoint": 0, - "vertex_from": "52", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:38.024774468Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1336407, - "rtt_ms": 1.336407, + "rtt_ns": 1448583, + "rtt_ms": 1.448583, "checkpoint": 0, "vertex_from": "52", "vertex_to": "456", - "timestamp": "2025-11-27T01:23:38.024813478Z" + "timestamp": "2025-11-27T04:03:19.610315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319167, - "rtt_ms": 1.319167, + "rtt_ns": 1448459, + "rtt_ms": 1.448459, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.024868318Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.610331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372927, - "rtt_ms": 1.372927, + "rtt_ns": 1805583, + "rtt_ms": 1.805583, "checkpoint": 0, - "vertex_from": "52", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.024873838Z" + "vertex_from": "51", + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.610331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375346, - "rtt_ms": 1.375346, + "rtt_ns": 1582875, + "rtt_ms": 1.582875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:38.024896967Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.610598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626705, - "rtt_ms": 1.626705, + "rtt_ns": 1781042, + "rtt_ms": 1.781042, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.025674275Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:19.610612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847815, - "rtt_ms": 1.847815, + "rtt_ns": 1037667, + "rtt_ms": 1.037667, "checkpoint": 0, "vertex_from": "52", "vertex_to": "204", - "timestamp": "2025-11-27T01:23:38.025786285Z" + "timestamp": "2025-11-27T04:03:19.610777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183917, - "rtt_ms": 1.183917, + "rtt_ns": 1603292, + "rtt_ms": 1.603292, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.025843575Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.610962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298896, - "rtt_ms": 1.298896, + "rtt_ns": 1292042, + "rtt_ms": 1.292042, "checkpoint": 0, "vertex_from": "52", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:38.026075514Z" + "timestamp": "2025-11-27T04:03:19.611624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2958641, - "rtt_ms": 2.958641, + "rtt_ns": 1375000, + "rtt_ms": 1.375, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:38.027774159Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:03:19.61169-08:00" }, { "operation": "add_edge", - "rtt_ns": 3542370, - "rtt_ms": 3.54237, + "rtt_ns": 1395875, + "rtt_ms": 1.395875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.028313448Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:19.611728-08:00" }, { "operation": "add_edge", - "rtt_ns": 3611490, - "rtt_ms": 3.61149, + "rtt_ns": 1468125, + "rtt_ms": 1.468125, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:38.028356398Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.611768-08:00" }, { "operation": "add_edge", - "rtt_ns": 3514900, - "rtt_ms": 3.5149, + "rtt_ns": 1559375, + "rtt_ms": 1.559375, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.028385408Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.611829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2765512, - "rtt_ms": 2.765512, + "rtt_ns": 1296959, + "rtt_ms": 1.296959, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.028442517Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.61191-08:00" }, { "operation": "add_edge", - "rtt_ns": 3567829, - "rtt_ms": 3.567829, + "rtt_ns": 1831375, + "rtt_ms": 1.831375, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:38.028442797Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.612147-08:00" }, { "operation": "add_edge", - "rtt_ns": 3331740, - "rtt_ms": 3.33174, + "rtt_ns": 1587833, + "rtt_ms": 1.587833, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:38.029119145Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.612188-08:00" }, { "operation": "add_edge", - "rtt_ns": 3328220, - "rtt_ms": 3.32822, + "rtt_ns": 1278125, + "rtt_ms": 1.278125, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.029173495Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.612241-08:00" }, { "operation": "add_edge", - "rtt_ns": 4282778, - "rtt_ms": 4.282778, + "rtt_ns": 1697416, + "rtt_ms": 1.697416, "checkpoint": 0, "vertex_from": "52", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.029183245Z" + "timestamp": "2025-11-27T04:03:19.612476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520916, - "rtt_ms": 1.520916, + "rtt_ns": 1298000, + "rtt_ms": 1.298, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.029297565Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:19.613027-08:00" }, { "operation": "add_edge", - "rtt_ns": 3240581, - "rtt_ms": 3.240581, + "rtt_ns": 1352500, + "rtt_ms": 1.3525, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:38.029317185Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.613044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491715, - "rtt_ms": 1.491715, + "rtt_ns": 1474292, + "rtt_ms": 1.474292, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.029878273Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.613243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757655, - "rtt_ms": 1.757655, + "rtt_ns": 1352209, + "rtt_ms": 1.352209, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.030072713Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:19.613263-08:00" }, { "operation": "add_edge", - "rtt_ns": 915647, - "rtt_ms": 0.915647, + "rtt_ns": 1448083, + "rtt_ms": 1.448083, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "94", - "timestamp": "2025-11-27T01:23:38.030100702Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.613278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679035, - "rtt_ms": 1.679035, + "rtt_ns": 1845458, + "rtt_ms": 1.845458, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.030124802Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:19.613475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794234, - "rtt_ms": 1.794234, + "rtt_ns": 1251708, + "rtt_ms": 1.251708, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:38.030151732Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.613493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168567, - "rtt_ms": 1.168567, + "rtt_ns": 1508750, + "rtt_ms": 1.50875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:38.030343952Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.613657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155654, - "rtt_ms": 2.155654, + "rtt_ns": 1532833, + "rtt_ms": 1.532833, "checkpoint": 0, "vertex_from": "52", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.030601521Z" + "timestamp": "2025-11-27T04:03:19.613722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420046, - "rtt_ms": 1.420046, + "rtt_ns": 1445458, + "rtt_ms": 1.445458, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:38.030718671Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.613922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611156, - "rtt_ms": 1.611156, + "rtt_ns": 1780208, + "rtt_ms": 1.780208, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.030734151Z" + "vertex_to": "94", + "timestamp": "2025-11-27T04:03:19.614825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474745, - "rtt_ms": 1.474745, + "rtt_ns": 1832875, + "rtt_ms": 1.832875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:38.03079291Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.615112-08:00" }, { "operation": "add_edge", - "rtt_ns": 988837, - "rtt_ms": 0.988837, + "rtt_ns": 2208500, + "rtt_ms": 2.2085, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:38.03086866Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.615237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201107, - "rtt_ms": 1.201107, + "rtt_ns": 1822334, + "rtt_ms": 1.822334, "checkpoint": 0, "vertex_from": "52", "vertex_to": "267", - "timestamp": "2025-11-27T01:23:38.031302889Z" + "timestamp": "2025-11-27T04:03:19.615316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219287, - "rtt_ms": 1.219287, + "rtt_ns": 2223833, + "rtt_ms": 2.223833, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.031372209Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.615468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309576, - "rtt_ms": 1.309576, + "rtt_ns": 1544791, + "rtt_ms": 1.544791, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:38.031383549Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.615469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451336, - "rtt_ms": 1.451336, + "rtt_ns": 1766500, + "rtt_ms": 1.7665, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:38.031576978Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.61549-08:00" }, { "operation": "add_edge", - "rtt_ns": 896107, - "rtt_ms": 0.896107, + "rtt_ns": 1870375, + "rtt_ms": 1.870375, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:38.031616208Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.615529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347616, - "rtt_ms": 1.347616, + "rtt_ns": 2283500, + "rtt_ms": 2.2835, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.031693668Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:19.615547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092107, - "rtt_ms": 1.092107, + "rtt_ns": 2260875, + "rtt_ms": 2.260875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.031695698Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:19.615737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709924, - "rtt_ms": 1.709924, + "rtt_ns": 1104417, + "rtt_ms": 1.104417, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:38.032445895Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.615932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086146, - "rtt_ms": 1.086146, + "rtt_ns": 1092667, + "rtt_ms": 1.092667, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:38.032459725Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.616206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172806, - "rtt_ms": 1.172806, + "rtt_ns": 1281750, + "rtt_ms": 1.28175, "checkpoint": 0, "vertex_from": "52", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:38.032477785Z" + "timestamp": "2025-11-27T04:03:19.616751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743145, - "rtt_ms": 1.743145, + "rtt_ns": 1548000, + "rtt_ms": 1.548, "checkpoint": 0, "vertex_from": "52", "vertex_to": "389", - "timestamp": "2025-11-27T01:23:38.032538045Z" + "timestamp": "2025-11-27T04:03:19.616865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710365, - "rtt_ms": 1.710365, + "rtt_ns": 1288083, + "rtt_ms": 1.288083, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.032580625Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.617026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669495, - "rtt_ms": 1.669495, + "rtt_ns": 1511125, + "rtt_ms": 1.511125, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:38.033367203Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:19.617041-08:00" }, { "operation": "add_edge", - "rtt_ns": 914828, - "rtt_ms": 0.914828, + "rtt_ns": 1818875, + "rtt_ms": 1.818875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:38.033375823Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.617057-08:00" }, { "operation": "add_edge", - "rtt_ns": 963718, - "rtt_ms": 0.963718, + "rtt_ns": 1618792, + "rtt_ms": 1.618792, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:38.033411523Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.617088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825004, - "rtt_ms": 1.825004, + "rtt_ns": 1556958, + "rtt_ms": 1.556958, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.033442642Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.617105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809804, - "rtt_ms": 1.809804, + "rtt_ns": 1760250, + "rtt_ms": 1.76025, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.033505972Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:19.617251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127687, - "rtt_ms": 1.127687, + "rtt_ns": 1458917, + "rtt_ms": 1.458917, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.033607212Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.617392-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222343, - "rtt_ms": 2.222343, + "rtt_ns": 1484708, + "rtt_ms": 1.484708, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:38.033607632Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:19.617692-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032734, - "rtt_ms": 2.032734, + "rtt_ns": 1069458, + "rtt_ms": 1.069458, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:38.033611252Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:19.617936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451726, - "rtt_ms": 1.451726, + "rtt_ns": 1260333, + "rtt_ms": 1.260333, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.033991431Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:19.618015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467196, - "rtt_ms": 1.467196, + "rtt_ns": 1383750, + "rtt_ms": 1.38375, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.034049481Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.618426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104846, - "rtt_ms": 1.104846, + "rtt_ns": 1430625, + "rtt_ms": 1.430625, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.034519849Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.618489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584045, - "rtt_ms": 1.584045, + "rtt_ns": 1587791, + "rtt_ms": 1.587791, "checkpoint": 0, "vertex_from": "52", "vertex_to": "131", - "timestamp": "2025-11-27T01:23:38.034961428Z" + "timestamp": "2025-11-27T04:03:19.618693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108117, - "rtt_ms": 1.108117, + "rtt_ns": 1459125, + "rtt_ms": 1.459125, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.035100818Z" + "vertex_from": "52", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.618712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506375, - "rtt_ms": 1.506375, + "rtt_ns": 1336000, + "rtt_ms": 1.336, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.035120457Z" + "vertex_from": "52", + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:19.618729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694035, - "rtt_ms": 1.694035, + "rtt_ns": 1718583, + "rtt_ms": 1.718583, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:38.035137997Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.618745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171626, - "rtt_ms": 1.171626, + "rtt_ns": 1762459, + "rtt_ms": 1.762459, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:38.035223117Z" + "vertex_from": "52", + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.618851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735015, - "rtt_ms": 1.735015, + "rtt_ns": 1213625, + "rtt_ms": 1.213625, "checkpoint": 0, "vertex_from": "52", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:38.035242787Z" + "timestamp": "2025-11-27T04:03:19.618907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663305, - "rtt_ms": 1.663305, + "rtt_ns": 1429625, + "rtt_ms": 1.429625, "checkpoint": 0, "vertex_from": "53", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:38.035273607Z" + "timestamp": "2025-11-27T04:03:19.619447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673995, - "rtt_ms": 1.673995, + "rtt_ns": 1526750, + "rtt_ms": 1.52675, "checkpoint": 0, "vertex_from": "52", "vertex_to": "90", - "timestamp": "2025-11-27T01:23:38.035284127Z" + "timestamp": "2025-11-27T04:03:19.619463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945724, - "rtt_ms": 1.945724, + "rtt_ns": 1268833, + "rtt_ms": 1.268833, "checkpoint": 0, - "vertex_from": "52", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.035319587Z" + "vertex_from": "53", + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.619695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551185, - "rtt_ms": 1.551185, + "rtt_ns": 1226917, + "rtt_ms": 1.226917, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:38.036514473Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.619718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455546, - "rtt_ms": 1.455546, + "rtt_ns": 1219709, + "rtt_ms": 1.219709, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:38.036579353Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:19.619933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592886, - "rtt_ms": 1.592886, + "rtt_ns": 1259250, + "rtt_ms": 1.25925, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:38.036732063Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.620005-08:00" }, { "operation": "add_edge", - "rtt_ns": 3056231, - "rtt_ms": 3.056231, + "rtt_ns": 1314959, + "rtt_ms": 1.314959, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:38.03757804Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.620009-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574682, - "rtt_ms": 2.574682, + "rtt_ns": 1307583, + "rtt_ms": 1.307583, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.03767691Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:19.620037-08:00" }, { "operation": "add_edge", - "rtt_ns": 2547033, - "rtt_ms": 2.547033, + "rtt_ns": 1363792, + "rtt_ms": 1.363792, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.03777142Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:19.620272-08:00" }, { "operation": "add_edge", - "rtt_ns": 2503163, - "rtt_ms": 2.503163, + "rtt_ns": 1630791, + "rtt_ms": 1.630791, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:38.03777799Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.620482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2463463, - "rtt_ms": 2.463463, + "rtt_ns": 1512375, + "rtt_ms": 1.512375, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.03778411Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.62096-08:00" }, { "operation": "add_edge", - "rtt_ns": 2631913, - "rtt_ms": 2.631913, + "rtt_ns": 1570458, + "rtt_ms": 1.570458, "checkpoint": 0, "vertex_from": "53", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:38.03787792Z" + "timestamp": "2025-11-27T04:03:19.621035-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1199292, + "rtt_ms": 1.199292, + "checkpoint": 0, + "vertex_from": "53", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.621135-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2637073, - "rtt_ms": 2.637073, + "rtt_ns": 1434292, + "rtt_ms": 1.434292, "checkpoint": 0, "vertex_from": "857", - "timestamp": "2025-11-27T01:23:38.037925089Z" + "timestamp": "2025-11-27T04:03:19.621153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470236, - "rtt_ms": 1.470236, + "rtt_ns": 1351416, + "rtt_ms": 1.351416, "checkpoint": 0, "vertex_from": "53", "vertex_to": "645", - "timestamp": "2025-11-27T01:23:38.037988089Z" + "timestamp": "2025-11-27T04:03:19.621358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284096, - "rtt_ms": 1.284096, + "rtt_ns": 1676916, + "rtt_ms": 1.676916, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.038017949Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:19.621373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904905, - "rtt_ms": 1.904905, + "rtt_ns": 1478500, + "rtt_ms": 1.4785, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.038485648Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.621517-08:00" }, { "operation": "add_edge", - "rtt_ns": 812448, - "rtt_ms": 0.812448, + "rtt_ns": 1634542, + "rtt_ms": 1.634542, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:38.038598988Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.62165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028098, - "rtt_ms": 1.028098, + "rtt_ns": 1568083, + "rtt_ms": 1.568083, "checkpoint": 0, "vertex_from": "53", "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.038608238Z" + "timestamp": "2025-11-27T04:03:19.621841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157417, - "rtt_ms": 1.157417, + "rtt_ns": 1525167, + "rtt_ms": 1.525167, "checkpoint": 0, "vertex_from": "53", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.038835757Z" + "timestamp": "2025-11-27T04:03:19.622008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074637, - "rtt_ms": 1.074637, + "rtt_ns": 1480542, + "rtt_ms": 1.480542, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.038848587Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.622617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459816, - "rtt_ms": 1.459816, + "rtt_ns": 1675625, + "rtt_ms": 1.675625, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "857", - "timestamp": "2025-11-27T01:23:38.039385405Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.622636-08:00" }, { "operation": "add_edge", - "rtt_ns": 894167, - "rtt_ms": 0.894167, + "rtt_ns": 1530916, + "rtt_ms": 1.530916, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:38.039494425Z" + "vertex_to": "857", + "timestamp": "2025-11-27T04:03:19.622685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524706, - "rtt_ms": 1.524706, + "rtt_ns": 1410167, + "rtt_ms": 1.410167, "checkpoint": 0, "vertex_from": "53", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.039515095Z" + "timestamp": "2025-11-27T04:03:19.622784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519256, - "rtt_ms": 1.519256, + "rtt_ns": 1757750, + "rtt_ms": 1.75775, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.039539255Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:19.622795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775745, - "rtt_ms": 1.775745, + "rtt_ns": 1436167, + "rtt_ms": 1.436167, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:38.039557485Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:03:19.622795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703745, - "rtt_ms": 1.703745, + "rtt_ns": 1356208, + "rtt_ms": 1.356208, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:38.039583565Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.622875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107867, - "rtt_ms": 1.107867, + "rtt_ns": 1314416, + "rtt_ms": 1.314416, "checkpoint": 0, "vertex_from": "53", "vertex_to": "150", - "timestamp": "2025-11-27T01:23:38.039595675Z" + "timestamp": "2025-11-27T04:03:19.622965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533246, - "rtt_ms": 1.533246, + "rtt_ns": 1718167, + "rtt_ms": 1.718167, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:38.040370393Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:19.62356-08:00" }, { "operation": "add_edge", - "rtt_ns": 932967, - "rtt_ms": 0.932967, + "rtt_ns": 1579542, + "rtt_ms": 1.579542, "checkpoint": 0, - "vertex_from": "54", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.040429102Z" + "vertex_from": "53", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.623589-08:00" }, { "operation": "add_edge", - "rtt_ns": 920727, - "rtt_ms": 0.920727, + "rtt_ns": 1263416, + "rtt_ms": 1.263416, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:38.040437922Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.62414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059627, - "rtt_ms": 1.059627, + "rtt_ns": 1538458, + "rtt_ms": 1.538458, "checkpoint": 0, - "vertex_from": "54", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:38.040446672Z" + "vertex_from": "53", + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:19.624156-08:00" }, { "operation": "add_edge", - "rtt_ns": 947507, - "rtt_ms": 0.947507, + "rtt_ns": 1725125, + "rtt_ms": 1.725125, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.040507752Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:19.624362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682305, - "rtt_ms": 1.682305, + "rtt_ns": 1685583, + "rtt_ms": 1.685583, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:38.040534382Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.624373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938414, - "rtt_ms": 1.938414, + "rtt_ns": 1006083, + "rtt_ms": 1.006083, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.040548672Z" + "vertex_from": "54", + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:19.624567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619865, - "rtt_ms": 1.619865, + "rtt_ns": 1787000, + "rtt_ms": 1.787, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:38.04120524Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:03:19.624583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689725, - "rtt_ms": 1.689725, + "rtt_ns": 1809667, + "rtt_ms": 1.809667, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:38.04128685Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.624595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748175, - "rtt_ms": 1.748175, + "rtt_ns": 1800083, + "rtt_ms": 1.800083, "checkpoint": 0, "vertex_from": "54", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.04128888Z" + "timestamp": "2025-11-27T04:03:19.624596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162047, - "rtt_ms": 1.162047, + "rtt_ns": 1634125, + "rtt_ms": 1.634125, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:38.041592459Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:19.6246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224497, - "rtt_ms": 1.224497, + "rtt_ns": 1205375, + "rtt_ms": 1.205375, "checkpoint": 0, "vertex_from": "54", "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.041665019Z" + "timestamp": "2025-11-27T04:03:19.625362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247507, - "rtt_ms": 1.247507, + "rtt_ns": 1269750, + "rtt_ms": 1.26975, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.041695429Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.625411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328616, - "rtt_ms": 1.328616, + "rtt_ns": 1276667, + "rtt_ms": 1.276667, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:38.041702019Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.625651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235936, - "rtt_ms": 1.235936, + "rtt_ns": 2136709, + "rtt_ms": 2.136709, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.041773868Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:19.625728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289086, - "rtt_ms": 1.289086, + "rtt_ns": 1141000, + "rtt_ms": 1.141, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:38.041798468Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:19.625742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273206, - "rtt_ms": 1.273206, + "rtt_ns": 1177625, + "rtt_ms": 1.177625, "checkpoint": 0, "vertex_from": "54", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:38.041823378Z" + "timestamp": "2025-11-27T04:03:19.625762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074187, - "rtt_ms": 1.074187, + "rtt_ns": 1446708, + "rtt_ms": 1.446708, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.042361977Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.62581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233926, - "rtt_ms": 1.233926, + "rtt_ns": 1231375, + "rtt_ms": 1.231375, "checkpoint": 0, "vertex_from": "54", "vertex_to": "408", - "timestamp": "2025-11-27T01:23:38.042442156Z" + "timestamp": "2025-11-27T04:03:19.625827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201026, - "rtt_ms": 1.201026, + "rtt_ns": 1275792, + "rtt_ms": 1.275792, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:38.042491486Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.625843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557235, - "rtt_ms": 1.557235, + "rtt_ns": 1470917, + "rtt_ms": 1.470917, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.043257224Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.626068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555825, - "rtt_ms": 1.555825, + "rtt_ns": 1221834, + "rtt_ms": 1.221834, "checkpoint": 0, - "vertex_from": "55", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.043259344Z" + "vertex_from": "54", + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.626875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628925, - "rtt_ms": 1.628925, + "rtt_ns": 1587000, + "rtt_ms": 1.587, "checkpoint": 0, "vertex_from": "54", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.043295874Z" + "timestamp": "2025-11-27T04:03:19.626998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500636, - "rtt_ms": 1.500636, - "checkpoint": 0, - "vertex_from": "55", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.043300414Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1707695, - "rtt_ms": 1.707695, + "rtt_ns": 1676750, + "rtt_ms": 1.67675, "checkpoint": 0, "vertex_from": "54", "vertex_to": "293", - "timestamp": "2025-11-27T01:23:38.043301614Z" + "timestamp": "2025-11-27T04:03:19.62704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569466, - "rtt_ms": 1.569466, + "rtt_ns": 1340125, + "rtt_ms": 1.340125, "checkpoint": 0, "vertex_from": "55", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.043344654Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.627184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061846, - "rtt_ms": 1.061846, + "rtt_ns": 1749667, + "rtt_ms": 1.749667, "checkpoint": 0, "vertex_from": "55", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:38.043424783Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.627493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111907, - "rtt_ms": 1.111907, + "rtt_ns": 2146791, + "rtt_ms": 2.146791, "checkpoint": 0, - "vertex_from": "56", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.044372861Z" + "vertex_from": "55", + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.627877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159846, - "rtt_ms": 1.159846, + "rtt_ns": 2083416, + "rtt_ms": 2.083416, "checkpoint": 0, - "vertex_from": "56", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.04446268Z" + "vertex_from": "55", + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:19.627894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983674, - "rtt_ms": 1.983674, + "rtt_ns": 1836916, + "rtt_ms": 1.836916, "checkpoint": 0, "vertex_from": "56", "vertex_to": "310", - "timestamp": "2025-11-27T01:23:38.04447673Z" + "timestamp": "2025-11-27T04:03:19.627906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222656, - "rtt_ms": 1.222656, + "rtt_ns": 2150917, + "rtt_ms": 2.150917, "checkpoint": 0, - "vertex_from": "56", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:38.04452407Z" + "vertex_from": "55", + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.627914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083184, - "rtt_ms": 2.083184, + "rtt_ns": 2149917, + "rtt_ms": 2.149917, "checkpoint": 0, "vertex_from": "55", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.0445274Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:19.627978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200776, - "rtt_ms": 1.200776, + "rtt_ns": 1418541, + "rtt_ms": 1.418541, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:38.04454625Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.628418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155337, - "rtt_ms": 1.155337, + "rtt_ns": 1613333, + "rtt_ms": 1.613333, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "283", - "timestamp": "2025-11-27T01:23:38.04458084Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.62849-08:00" }, { "operation": "add_edge", - "rtt_ns": 2772072, - "rtt_ms": 2.772072, + "rtt_ns": 1585542, + "rtt_ms": 1.585542, "checkpoint": 0, - "vertex_from": "55", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:38.0445964Z" + "vertex_from": "56", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.628771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343466, - "rtt_ms": 1.343466, + "rtt_ns": 1746708, + "rtt_ms": 1.746708, "checkpoint": 0, "vertex_from": "56", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.04464088Z" + "timestamp": "2025-11-27T04:03:19.62879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407466, - "rtt_ms": 1.407466, + "rtt_ns": 1437125, + "rtt_ms": 1.437125, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.04466581Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:19.629416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072137, - "rtt_ms": 1.072137, + "rtt_ns": 1519709, + "rtt_ms": 1.519709, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.045446768Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:19.629435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305537, - "rtt_ms": 1.305537, + "rtt_ns": 1543458, + "rtt_ms": 1.543458, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:38.045771757Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.629452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304677, - "rtt_ms": 1.304677, + "rtt_ns": 991375, + "rtt_ms": 0.991375, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:38.045782797Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:19.629483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361746, - "rtt_ms": 1.361746, + "rtt_ns": 1645542, + "rtt_ms": 1.645542, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.045887316Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.629523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421656, - "rtt_ms": 1.421656, + "rtt_ns": 1629500, + "rtt_ms": 1.6295, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:38.045973146Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:03:19.629524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406286, - "rtt_ms": 1.406286, + "rtt_ns": 2144625, + "rtt_ms": 2.144625, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:38.046048986Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.629638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425256, - "rtt_ms": 1.425256, + "rtt_ns": 1307375, + "rtt_ms": 1.307375, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:38.046091996Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.629726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531826, - "rtt_ms": 1.531826, + "rtt_ns": 1162208, + "rtt_ms": 1.162208, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:38.046113966Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:19.629934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608836, - "rtt_ms": 1.608836, + "rtt_ns": 1297250, + "rtt_ms": 1.29725, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:38.046137706Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:19.630088-08:00" }, { "operation": "add_edge", - "rtt_ns": 699338, - "rtt_ms": 0.699338, + "rtt_ns": 1125167, + "rtt_ms": 1.125167, "checkpoint": 0, "vertex_from": "56", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:38.046147246Z" + "timestamp": "2025-11-27T04:03:19.630609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006084, - "rtt_ms": 2.006084, + "rtt_ns": 1276375, + "rtt_ms": 1.276375, "checkpoint": 0, "vertex_from": "56", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.046603984Z" + "timestamp": "2025-11-27T04:03:19.630694-08:00" }, { "operation": "add_edge", - "rtt_ns": 939447, - "rtt_ms": 0.939447, + "rtt_ns": 1269542, + "rtt_ms": 1.269542, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:38.046713864Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.631-08:00" }, { "operation": "add_edge", - "rtt_ns": 829858, - "rtt_ms": 0.829858, + "rtt_ns": 1572958, + "rtt_ms": 1.572958, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.046718214Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:19.631026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024767, - "rtt_ms": 1.024767, + "rtt_ns": 1511583, + "rtt_ms": 1.511583, "checkpoint": 0, "vertex_from": "56", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.046808894Z" + "timestamp": "2025-11-27T04:03:19.631037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488526, - "rtt_ms": 1.488526, + "rtt_ns": 1612584, + "rtt_ms": 1.612584, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.047538902Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:19.631048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064434, - "rtt_ms": 2.064434, + "rtt_ns": 1425333, + "rtt_ms": 1.425333, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:38.04803867Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.631066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1999264, - "rtt_ms": 1.999264, + "rtt_ns": 1553584, + "rtt_ms": 1.553584, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:38.04809195Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:19.631077-08:00" }, { "operation": "add_edge", - "rtt_ns": 3016231, - "rtt_ms": 3.016231, + "rtt_ns": 1388500, + "rtt_ms": 1.3885, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.049130897Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.631323-08:00" }, { "operation": "add_edge", - "rtt_ns": 3050651, - "rtt_ms": 3.050651, + "rtt_ns": 1266958, + "rtt_ms": 1.266958, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "458", - "timestamp": "2025-11-27T01:23:38.049199537Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:19.631356-08:00" }, { "operation": "add_edge", - "rtt_ns": 2707333, - "rtt_ms": 2.707333, + "rtt_ns": 955875, + "rtt_ms": 0.955875, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.049311837Z" + "vertex_to": "458", + "timestamp": "2025-11-27T04:03:19.631957-08:00" }, { "operation": "add_edge", - "rtt_ns": 3259630, - "rtt_ms": 3.25963, + "rtt_ns": 1574750, + "rtt_ms": 1.57475, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:38.049398536Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.632185-08:00" }, { "operation": "add_edge", - "rtt_ns": 2742322, - "rtt_ms": 2.742322, + "rtt_ns": 1508458, + "rtt_ms": 1.508458, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:38.049461836Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:19.632204-08:00" }, { "operation": "add_edge", - "rtt_ns": 2655832, - "rtt_ms": 2.655832, + "rtt_ns": 1323542, + "rtt_ms": 1.323542, "checkpoint": 0, "vertex_from": "56", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.049466366Z" + "timestamp": "2025-11-27T04:03:19.632391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2846782, - "rtt_ms": 2.846782, + "rtt_ns": 1361208, + "rtt_ms": 1.361208, "checkpoint": 0, "vertex_from": "56", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:38.049561886Z" + "timestamp": "2025-11-27T04:03:19.632399-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083174, - "rtt_ms": 2.083174, + "rtt_ns": 1552000, + "rtt_ms": 1.552, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.049625076Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:19.632601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611986, - "rtt_ms": 1.611986, + "rtt_ns": 1730334, + "rtt_ms": 1.730334, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:38.049652106Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.63281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662845, - "rtt_ms": 1.662845, + "rtt_ns": 1863791, + "rtt_ms": 1.863791, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.049755465Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.63289-08:00" }, { "operation": "add_edge", - "rtt_ns": 756728, - "rtt_ms": 0.756728, + "rtt_ns": 1569125, + "rtt_ms": 1.569125, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.049888995Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.632894-08:00" }, { "operation": "add_edge", - "rtt_ns": 713398, - "rtt_ms": 0.713398, + "rtt_ns": 1582458, + "rtt_ms": 1.582458, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.049914535Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.632939-08:00" }, { "operation": "add_edge", - "rtt_ns": 707487, - "rtt_ms": 0.707487, + "rtt_ns": 1198458, + "rtt_ms": 1.198458, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:38.050020454Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.633156-08:00" }, { "operation": "add_edge", - "rtt_ns": 766728, - "rtt_ms": 0.766728, + "rtt_ns": 967458, + "rtt_ms": 0.967458, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:38.050166434Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:03:19.633172-08:00" }, { "operation": "add_edge", - "rtt_ns": 819568, - "rtt_ms": 0.819568, + "rtt_ns": 1282459, + "rtt_ms": 1.282459, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.050282304Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.633468-08:00" }, { "operation": "add_edge", - "rtt_ns": 835558, - "rtt_ms": 0.835558, + "rtt_ns": 1607208, + "rtt_ms": 1.607208, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:38.050303674Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.634007-08:00" }, { "operation": "add_edge", - "rtt_ns": 746478, - "rtt_ms": 0.746478, + "rtt_ns": 1427792, + "rtt_ms": 1.427792, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.050309284Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.63403-08:00" }, { "operation": "add_edge", - "rtt_ns": 697647, - "rtt_ms": 0.697647, + "rtt_ns": 1654750, + "rtt_ms": 1.65475, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:38.050350603Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:19.634046-08:00" }, { "operation": "add_edge", - "rtt_ns": 759047, - "rtt_ms": 0.759047, + "rtt_ns": 1536375, + "rtt_ms": 1.536375, "checkpoint": 0, "vertex_from": "56", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.050385963Z" + "timestamp": "2025-11-27T04:03:19.634429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392796, - "rtt_ms": 1.392796, + "rtt_ns": 1595084, + "rtt_ms": 1.595084, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:38.051149571Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:19.634491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203257, - "rtt_ms": 1.203257, + "rtt_ns": 1560041, + "rtt_ms": 1.560041, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.051224931Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:19.634733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101737, - "rtt_ms": 1.101737, + "rtt_ns": 1849333, + "rtt_ms": 1.849333, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "188", - "timestamp": "2025-11-27T01:23:38.051269621Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:19.63479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391536, - "rtt_ms": 1.391536, + "rtt_ns": 1929000, + "rtt_ms": 1.929, "checkpoint": 0, "vertex_from": "56", "vertex_to": "841", - "timestamp": "2025-11-27T01:23:38.051281891Z" + "timestamp": "2025-11-27T04:03:19.635086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819314, - "rtt_ms": 1.819314, + "rtt_ns": 2304208, + "rtt_ms": 2.304208, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:38.051735499Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.635117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642945, - "rtt_ms": 1.642945, + "rtt_ns": 1979625, + "rtt_ms": 1.979625, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.051926569Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.635448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603596, - "rtt_ms": 1.603596, + "rtt_ns": 1455792, + "rtt_ms": 1.455792, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.051956769Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:03:19.635465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604086, - "rtt_ms": 1.604086, + "rtt_ns": 1904208, + "rtt_ms": 1.904208, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:38.051990969Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.635951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684365, - "rtt_ms": 1.684365, + "rtt_ns": 1389708, + "rtt_ms": 1.389708, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:38.051994889Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:19.636125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690515, - "rtt_ms": 1.690515, + "rtt_ns": 2113875, + "rtt_ms": 2.113875, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:38.052001309Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.636145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241006, - "rtt_ms": 1.241006, + "rtt_ns": 1954583, + "rtt_ms": 1.954583, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:38.052467577Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:19.636386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882744, - "rtt_ms": 1.882744, + "rtt_ns": 1614334, + "rtt_ms": 1.614334, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:38.053155205Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:19.636405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197266, - "rtt_ms": 1.197266, + "rtt_ns": 1209167, + "rtt_ms": 1.209167, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:38.053155485Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.636675-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001354, - "rtt_ms": 2.001354, + "rtt_ns": 1574709, + "rtt_ms": 1.574709, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:38.053155245Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1422936, - "rtt_ms": 1.422936, - "checkpoint": 0, - "vertex_from": "57", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.053160035Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:19.636692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249586, - "rtt_ms": 1.249586, + "rtt_ns": 2215875, + "rtt_ms": 2.215875, "checkpoint": 0, - "vertex_from": "57", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:38.053178305Z" + "vertex_from": "56", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.636708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259546, - "rtt_ms": 1.259546, + "rtt_ns": 1395375, + "rtt_ms": 1.395375, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:38.053262165Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.636845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319326, - "rtt_ms": 1.319326, + "rtt_ns": 2099208, + "rtt_ms": 2.099208, "checkpoint": 0, - "vertex_from": "57", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.053311455Z" + "vertex_from": "56", + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:19.637187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931984, - "rtt_ms": 1.931984, + "rtt_ns": 992042, + "rtt_ms": 0.992042, "checkpoint": 0, "vertex_from": "57", "vertex_to": "616", - "timestamp": "2025-11-27T01:23:38.053928533Z" + "timestamp": "2025-11-27T04:03:19.637379-08:00" }, { "operation": "add_edge", - "rtt_ns": 2646782, - "rtt_ms": 2.646782, + "rtt_ns": 1590084, + "rtt_ms": 1.590084, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.053929913Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.637716-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231033, - "rtt_ms": 2.231033, + "rtt_ns": 1772208, + "rtt_ms": 1.772208, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:38.055495548Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.637725-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071704, - "rtt_ms": 2.071704, + "rtt_ns": 1588459, + "rtt_ms": 1.588459, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:38.056003477Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.637734-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187583, - "rtt_ms": 2.187583, + "rtt_ns": 1466125, + "rtt_ms": 1.466125, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:38.056117336Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:19.638175-08:00" }, { "operation": "add_edge", - "rtt_ns": 3026561, - "rtt_ms": 3.026561, + "rtt_ns": 1501083, + "rtt_ms": 1.501083, "checkpoint": 0, "vertex_from": "57", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.056183896Z" + "timestamp": "2025-11-27T04:03:19.638194-08:00" }, { "operation": "add_edge", - "rtt_ns": 3044001, - "rtt_ms": 3.044001, + "rtt_ns": 1025625, + "rtt_ms": 1.025625, "checkpoint": 0, "vertex_from": "57", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.056205836Z" + "timestamp": "2025-11-27T04:03:19.638213-08:00" }, { "operation": "add_edge", - "rtt_ns": 3746039, - "rtt_ms": 3.746039, + "rtt_ns": 1557209, + "rtt_ms": 1.557209, "checkpoint": 0, "vertex_from": "57", "vertex_to": "834", - "timestamp": "2025-11-27T01:23:38.056214896Z" + "timestamp": "2025-11-27T04:03:19.638233-08:00" }, { "operation": "add_edge", - "rtt_ns": 3492230, - "rtt_ms": 3.49223, + "rtt_ns": 1590125, + "rtt_ms": 1.590125, "checkpoint": 0, "vertex_from": "57", "vertex_to": "104", - "timestamp": "2025-11-27T01:23:38.056652445Z" + "timestamp": "2025-11-27T04:03:19.638436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342886, - "rtt_ms": 1.342886, + "rtt_ns": 2067375, + "rtt_ms": 2.067375, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:38.056842424Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:19.638474-08:00" }, { "operation": "add_edge", - "rtt_ns": 3683119, - "rtt_ms": 3.683119, + "rtt_ns": 1561584, + "rtt_ms": 1.561584, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.056865504Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:19.639287-08:00" }, { "operation": "add_edge", - "rtt_ns": 3663899, - "rtt_ms": 3.663899, + "rtt_ns": 1648417, + "rtt_ms": 1.648417, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:38.056977394Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.639365-08:00" }, { "operation": "add_edge", - "rtt_ns": 3844029, - "rtt_ms": 3.844029, + "rtt_ns": 1813750, + "rtt_ms": 1.81375, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:38.057001904Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:19.639548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621825, - "rtt_ms": 1.621825, + "rtt_ns": 1370875, + "rtt_ms": 1.370875, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.057626572Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:19.639566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528646, - "rtt_ms": 1.528646, + "rtt_ns": 2204042, + "rtt_ms": 2.204042, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:38.057715822Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.639584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530296, - "rtt_ms": 1.530296, + "rtt_ns": 1410792, + "rtt_ms": 1.410792, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "85", - "timestamp": "2025-11-27T01:23:38.057737332Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.639625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521476, - "rtt_ms": 1.521476, + "rtt_ns": 1408083, + "rtt_ms": 1.408083, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.057738072Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:03:19.639642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699376, - "rtt_ms": 1.699376, + "rtt_ns": 1497750, + "rtt_ms": 1.49775, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:38.057817972Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:19.639936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180777, - "rtt_ms": 1.180777, + "rtt_ns": 1478166, + "rtt_ms": 1.478166, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:38.057834812Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:03:19.639953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199387, - "rtt_ms": 1.199387, + "rtt_ns": 1865000, + "rtt_ms": 1.865, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:38.058043431Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:19.640043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971084, - "rtt_ms": 1.971084, + "rtt_ns": 1191584, + "rtt_ms": 1.191584, "checkpoint": 0, - "vertex_from": "58", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:38.058975108Z" + "vertex_from": "57", + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:19.64056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282796, - "rtt_ms": 1.282796, + "rtt_ns": 1513584, + "rtt_ms": 1.513584, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:38.059021518Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:19.641156-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210014, - "rtt_ms": 2.210014, + "rtt_ns": 1587541, + "rtt_ms": 1.587541, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.059079568Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.641172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489526, - "rtt_ms": 1.489526, + "rtt_ns": 1899458, + "rtt_ms": 1.899458, "checkpoint": 0, - "vertex_from": "58", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:38.059117158Z" + "vertex_from": "57", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.641188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400826, - "rtt_ms": 1.400826, + "rtt_ns": 1601792, + "rtt_ms": 1.601792, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "570", - "timestamp": "2025-11-27T01:23:38.059118038Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:19.641228-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155644, - "rtt_ms": 2.155644, + "rtt_ns": 1694250, + "rtt_ms": 1.69425, "checkpoint": 0, - "vertex_from": "58", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.059134908Z" + "vertex_from": "57", + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:19.641244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320416, - "rtt_ms": 1.320416, + "rtt_ns": 1304875, + "rtt_ms": 1.304875, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:38.059139918Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:19.641259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408716, - "rtt_ms": 1.408716, + "rtt_ns": 1706000, + "rtt_ms": 1.706, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.059147978Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.641273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324627, - "rtt_ms": 1.324627, + "rtt_ns": 1464958, + "rtt_ms": 1.464958, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:38.059161228Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.641509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574406, - "rtt_ms": 1.574406, + "rtt_ns": 1739292, + "rtt_ms": 1.739292, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:38.059618837Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:03:19.641677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422326, - "rtt_ms": 1.422326, + "rtt_ns": 1048000, + "rtt_ms": 1.048, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:38.060398614Z" + "vertex_to": "372", + "timestamp": "2025-11-27T04:03:19.642322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407276, - "rtt_ms": 1.407276, + "rtt_ns": 1780708, + "rtt_ms": 1.780708, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "372", - "timestamp": "2025-11-27T01:23:38.060527724Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:19.642343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441966, - "rtt_ms": 1.441966, + "rtt_ns": 1391167, + "rtt_ms": 1.391167, "checkpoint": 0, - "vertex_from": "59", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:38.060591834Z" + "vertex_from": "58", + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:19.64258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997904, - "rtt_ms": 1.997904, + "rtt_ns": 1335625, + "rtt_ms": 1.335625, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.061020352Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.642595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917674, - "rtt_ms": 1.917674, + "rtt_ns": 1136000, + "rtt_ms": 1.136, "checkpoint": 0, "vertex_from": "58", "vertex_to": "406", - "timestamp": "2025-11-27T01:23:38.061059002Z" + "timestamp": "2025-11-27T04:03:19.642814-08:00" }, { "operation": "add_edge", - "rtt_ns": 2015534, - "rtt_ms": 2.015534, + "rtt_ns": 1624958, + "rtt_ms": 1.624958, "checkpoint": 0, "vertex_from": "58", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.061096772Z" + "timestamp": "2025-11-27T04:03:19.64287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994044, - "rtt_ms": 1.994044, + "rtt_ns": 1719916, + "rtt_ms": 1.719916, "checkpoint": 0, - "vertex_from": "59", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.061157582Z" + "vertex_from": "58", + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:19.642877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160054, - "rtt_ms": 2.160054, + "rtt_ns": 1664292, + "rtt_ms": 1.664292, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.061278132Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.642893-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1831333, + "rtt_ms": 1.831333, + "checkpoint": 0, + "vertex_from": "58", + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.643004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188963, - "rtt_ms": 2.188963, + "rtt_ns": 1523792, + "rtt_ms": 1.523792, "checkpoint": 0, "vertex_from": "58", "vertex_to": "101", - "timestamp": "2025-11-27T01:23:38.061325161Z" + "timestamp": "2025-11-27T04:03:19.643034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706944, - "rtt_ms": 1.706944, + "rtt_ns": 1128000, + "rtt_ms": 1.128, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.061326871Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:19.643724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805914, - "rtt_ms": 1.805914, + "rtt_ns": 1600709, + "rtt_ms": 1.600709, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.062399158Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.643944-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141584, - "rtt_ms": 2.141584, + "rtt_ns": 1638458, + "rtt_ms": 1.638458, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:38.062542328Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.643961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437966, - "rtt_ms": 1.437966, + "rtt_ns": 1369833, + "rtt_ms": 1.369833, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.062596888Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:03:19.644184-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328383, - "rtt_ms": 2.328383, + "rtt_ns": 1449417, + "rtt_ms": 1.449417, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "457", - "timestamp": "2025-11-27T01:23:38.062857327Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.644323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820705, - "rtt_ms": 1.820705, + "rtt_ns": 1793417, + "rtt_ms": 1.793417, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:38.062881767Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.644374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786815, - "rtt_ms": 1.786815, + "rtt_ns": 1375084, + "rtt_ms": 1.375084, "checkpoint": 0, "vertex_from": "59", "vertex_to": "198", - "timestamp": "2025-11-27T01:23:38.062884767Z" + "timestamp": "2025-11-27T04:03:19.64438-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495593, - "rtt_ms": 2.495593, + "rtt_ns": 1521041, + "rtt_ms": 1.521041, + "checkpoint": 0, + "vertex_from": "59", + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:19.644415-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1533708, + "rtt_ms": 1.533708, "checkpoint": 0, "vertex_from": "59", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.063517275Z" + "timestamp": "2025-11-27T04:03:19.644416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274554, - "rtt_ms": 2.274554, + "rtt_ns": 1592875, + "rtt_ms": 1.592875, "checkpoint": 0, - "vertex_from": "60", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:38.063601125Z" + "vertex_from": "59", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.644629-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321793, - "rtt_ms": 2.321793, + "rtt_ns": 1607958, + "rtt_ms": 1.607958, "checkpoint": 0, "vertex_from": "60", "vertex_to": "900", - "timestamp": "2025-11-27T01:23:38.063602025Z" + "timestamp": "2025-11-27T04:03:19.645335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284744, - "rtt_ms": 2.284744, + "rtt_ns": 1541708, + "rtt_ms": 1.541708, "checkpoint": 0, "vertex_from": "60", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:38.063612595Z" + "timestamp": "2025-11-27T04:03:19.645504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200926, - "rtt_ms": 1.200926, + "rtt_ns": 1563625, + "rtt_ms": 1.563625, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:38.063744594Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.645509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404786, - "rtt_ms": 1.404786, + "rtt_ns": 1381500, + "rtt_ms": 1.3815, "checkpoint": 0, "vertex_from": "60", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.063806124Z" + "timestamp": "2025-11-27T04:03:19.645567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356016, - "rtt_ms": 1.356016, + "rtt_ns": 1249708, + "rtt_ms": 1.249708, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:38.063954014Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.645666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168656, - "rtt_ms": 1.168656, + "rtt_ns": 1284916, + "rtt_ms": 1.284916, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:38.064051703Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.645667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208206, - "rtt_ms": 1.208206, + "rtt_ns": 1074583, + "rtt_ms": 1.074583, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.064066153Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:19.645705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189566, - "rtt_ms": 1.189566, + "rtt_ns": 1484125, + "rtt_ms": 1.484125, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.064076653Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.645809-08:00" }, { "operation": "add_edge", - "rtt_ns": 652098, - "rtt_ms": 0.652098, + "rtt_ns": 1915500, + "rtt_ms": 1.9155, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:38.064170533Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:19.646292-08:00" }, { "operation": "add_edge", - "rtt_ns": 788677, - "rtt_ms": 0.788677, + "rtt_ns": 1958542, + "rtt_ms": 1.958542, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.064402642Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:19.646375-08:00" }, { "operation": "add_edge", - "rtt_ns": 814907, - "rtt_ms": 0.814907, + "rtt_ns": 1586458, + "rtt_ms": 1.586458, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:38.064417552Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:19.647155-08:00" }, { "operation": "add_edge", - "rtt_ns": 931087, - "rtt_ms": 0.931087, + "rtt_ns": 1630417, + "rtt_ms": 1.630417, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "64", - "timestamp": "2025-11-27T01:23:38.064534272Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:19.647298-08:00" }, { "operation": "add_edge", - "rtt_ns": 858508, - "rtt_ms": 0.858508, + "rtt_ns": 1528708, + "rtt_ms": 1.528708, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:38.064604342Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.647339-08:00" }, { "operation": "add_edge", - "rtt_ns": 655788, - "rtt_ms": 0.655788, + "rtt_ns": 1691958, + "rtt_ms": 1.691958, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:38.064611172Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:19.647359-08:00" }, { "operation": "add_edge", - "rtt_ns": 841298, - "rtt_ms": 0.841298, + "rtt_ns": 1848125, + "rtt_ms": 1.848125, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:38.064648532Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.647359-08:00" }, { "operation": "add_edge", - "rtt_ns": 768338, - "rtt_ms": 0.768338, + "rtt_ns": 1670042, + "rtt_ms": 1.670042, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:38.064835621Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.647377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063347, - "rtt_ms": 1.063347, + "rtt_ns": 2056209, + "rtt_ms": 2.056209, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "970", - "timestamp": "2025-11-27T01:23:38.06523534Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:19.647392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338777, - "rtt_ms": 1.338777, + "rtt_ns": 1948583, + "rtt_ms": 1.948583, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:38.06541689Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:03:19.647455-08:00" }, { "operation": "add_edge", - "rtt_ns": 885028, - "rtt_ms": 0.885028, + "rtt_ns": 1522333, + "rtt_ms": 1.522333, "checkpoint": 0, - "vertex_from": "62", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.06542069Z" + "vertex_from": "60", + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.647816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389096, - "rtt_ms": 1.389096, + "rtt_ns": 1603000, + "rtt_ms": 1.603, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.065442409Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:03:19.647979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131827, - "rtt_ms": 1.131827, + "rtt_ns": 1350667, + "rtt_ms": 1.350667, "checkpoint": 0, "vertex_from": "61", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.065536339Z" + "timestamp": "2025-11-27T04:03:19.648507-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1230750, + "rtt_ms": 1.23075, + "checkpoint": 0, + "vertex_from": "62", + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:19.648608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213557, - "rtt_ms": 1.213557, + "rtt_ns": 1450917, + "rtt_ms": 1.450917, "checkpoint": 0, "vertex_from": "61", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.065632329Z" + "timestamp": "2025-11-27T04:03:19.648752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107767, - "rtt_ms": 1.107767, + "rtt_ns": 1413250, + "rtt_ms": 1.41325, "checkpoint": 0, "vertex_from": "62", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.065712899Z" + "timestamp": "2025-11-27T04:03:19.648773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111487, - "rtt_ms": 1.111487, + "rtt_ns": 1450875, + "rtt_ms": 1.450875, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.065723909Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:19.648908-08:00" }, { "operation": "add_edge", - "rtt_ns": 980877, - "rtt_ms": 0.980877, + "rtt_ns": 1565166, + "rtt_ms": 1.565166, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:38.065817588Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.648926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216886, - "rtt_ms": 1.216886, + "rtt_ns": 1123750, + "rtt_ms": 1.12375, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.065866788Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.648941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164657, - "rtt_ms": 1.164657, + "rtt_ns": 1696084, + "rtt_ms": 1.696084, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:38.066402007Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.649036-08:00" }, { "operation": "add_edge", - "rtt_ns": 973508, - "rtt_ms": 0.973508, + "rtt_ns": 1656416, + "rtt_ms": 1.656416, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:38.066416837Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:19.64905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901534, - "rtt_ms": 1.901534, + "rtt_ns": 1450667, + "rtt_ms": 1.450667, "checkpoint": 0, "vertex_from": "62", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.067323104Z" + "timestamp": "2025-11-27T04:03:19.649431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816445, - "rtt_ms": 1.816445, + "rtt_ns": 1395458, + "rtt_ms": 1.395458, "checkpoint": 0, "vertex_from": "63", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.067450814Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:19.650006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066417, - "rtt_ms": 1.066417, + "rtt_ns": 1564792, + "rtt_ms": 1.564792, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:38.067469494Z" + "vertex_from": "62", + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:19.650074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637106, - "rtt_ms": 1.637106, + "rtt_ns": 1332584, + "rtt_ms": 1.332584, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "295", - "timestamp": "2025-11-27T01:23:38.067504974Z" + "vertex_from": "63", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.650085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147057, - "rtt_ms": 1.147057, + "rtt_ns": 1430166, + "rtt_ms": 1.430166, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.067565374Z" + "vertex_from": "63", + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.650204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911314, - "rtt_ms": 1.911314, + "rtt_ns": 1351833, + "rtt_ms": 1.351833, "checkpoint": 0, - "vertex_from": "63", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:38.067625223Z" + "vertex_from": "64", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.65026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224983, - "rtt_ms": 2.224983, + "rtt_ns": 1299292, + "rtt_ms": 1.299292, "checkpoint": 0, - "vertex_from": "62", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.067642813Z" + "vertex_from": "64", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.65035-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222664, - "rtt_ms": 2.222664, + "rtt_ns": 1537209, + "rtt_ms": 1.537209, "checkpoint": 0, - "vertex_from": "63", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:38.067760463Z" + "vertex_from": "64", + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:19.650574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972045, - "rtt_ms": 1.972045, + "rtt_ns": 1647500, + "rtt_ms": 1.6475, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:38.067790583Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:03:19.650589-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077764, - "rtt_ms": 2.077764, + "rtt_ns": 1162958, + "rtt_ms": 1.162958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.067802503Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:19.650595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226407, - "rtt_ms": 1.226407, + "rtt_ns": 1702958, + "rtt_ms": 1.702958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:38.068550601Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:19.65063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411416, - "rtt_ms": 1.411416, + "rtt_ns": 1381791, + "rtt_ms": 1.381791, "checkpoint": 0, "vertex_from": "64", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:38.06886341Z" + "timestamp": "2025-11-27T04:03:19.65139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404966, - "rtt_ms": 1.404966, + "rtt_ns": 1096417, + "rtt_ms": 1.096417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:38.06887619Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.651447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375986, - "rtt_ms": 1.375986, + "rtt_ns": 1672875, + "rtt_ms": 1.672875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.069002339Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:19.651748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939334, - "rtt_ms": 1.939334, + "rtt_ns": 1562000, + "rtt_ms": 1.562, "checkpoint": 0, "vertex_from": "64", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.069505628Z" + "timestamp": "2025-11-27T04:03:19.651767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187173, - "rtt_ms": 2.187173, + "rtt_ns": 1696708, + "rtt_ms": 1.696708, "checkpoint": 0, "vertex_from": "64", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.069692727Z" + "timestamp": "2025-11-27T04:03:19.651783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362763, - "rtt_ms": 2.362763, + "rtt_ns": 1560666, + "rtt_ms": 1.560666, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.070006556Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.651822-08:00" }, { "operation": "add_edge", - "rtt_ns": 2437353, - "rtt_ms": 2.437353, + "rtt_ns": 1328709, + "rtt_ms": 1.328709, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:38.070240696Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:19.651959-08:00" }, { "operation": "add_edge", - "rtt_ns": 3223670, - "rtt_ms": 3.22367, + "rtt_ns": 1422083, + "rtt_ms": 1.422083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.070985203Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:19.652018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2556582, - "rtt_ms": 2.556582, + "rtt_ns": 1464916, + "rtt_ms": 1.464916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:38.071108353Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.65204-08:00" }, { "operation": "add_edge", - "rtt_ns": 3341650, - "rtt_ms": 3.34165, + "rtt_ns": 1474458, + "rtt_ms": 1.474458, "checkpoint": 0, "vertex_from": "64", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:38.071133173Z" + "timestamp": "2025-11-27T04:03:19.652064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326813, - "rtt_ms": 2.326813, + "rtt_ns": 1333250, + "rtt_ms": 1.33325, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.071195293Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:19.652781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2342423, - "rtt_ms": 2.342423, + "rtt_ns": 1463000, + "rtt_ms": 1.463, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:38.071220123Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.652854-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219784, - "rtt_ms": 2.219784, + "rtt_ns": 1284750, + "rtt_ms": 1.28475, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.071223463Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.653053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906074, - "rtt_ms": 1.906074, + "rtt_ns": 1279000, + "rtt_ms": 1.279, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.071413552Z" + "vertex_to": "427", + "timestamp": "2025-11-27T04:03:19.653102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801725, - "rtt_ms": 1.801725, + "rtt_ns": 1380083, + "rtt_ms": 1.380083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:38.071495572Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.653401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500896, - "rtt_ms": 1.500896, + "rtt_ns": 1634083, + "rtt_ms": 1.634083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "427", - "timestamp": "2025-11-27T01:23:38.071509082Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:19.653418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870084, - "rtt_ms": 1.870084, + "rtt_ns": 1392083, + "rtt_ms": 1.392083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.07211306Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:19.653433-08:00" }, { "operation": "add_edge", - "rtt_ns": 950217, - "rtt_ms": 0.950217, + "rtt_ns": 1492292, + "rtt_ms": 1.492292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:38.07214694Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.653452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094866, - "rtt_ms": 1.094866, + "rtt_ns": 1717209, + "rtt_ms": 1.717209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:38.072320329Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.653467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284686, - "rtt_ms": 1.284686, + "rtt_ns": 1658958, + "rtt_ms": 1.658958, "checkpoint": 0, "vertex_from": "64", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.072420739Z" + "timestamp": "2025-11-27T04:03:19.653724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757555, - "rtt_ms": 1.757555, + "rtt_ns": 1310583, + "rtt_ms": 1.310583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:38.072867318Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:19.654364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909015, - "rtt_ms": 1.909015, + "rtt_ns": 1627500, + "rtt_ms": 1.6275, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.072896188Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.654411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813034, - "rtt_ms": 1.813034, + "rtt_ns": 1138041, + "rtt_ms": 1.138041, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:38.073034027Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.654591-08:00" }, { "operation": "add_edge", - "rtt_ns": 2117744, - "rtt_ms": 2.117744, + "rtt_ns": 1777958, + "rtt_ms": 1.777958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:38.073532776Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.654633-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098344, - "rtt_ms": 2.098344, + "rtt_ns": 1253792, + "rtt_ms": 1.253792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:38.073594836Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:03:19.654721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282376, - "rtt_ms": 1.282376, + "rtt_ns": 1042750, + "rtt_ms": 1.04275, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:38.073604365Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:19.654769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484575, - "rtt_ms": 1.484575, + "rtt_ns": 1367292, + "rtt_ms": 1.367292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.073632365Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:19.654769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266076, - "rtt_ms": 1.266076, + "rtt_ns": 1677917, + "rtt_ms": 1.677917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:38.073688045Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:19.654782-08:00" }, { "operation": "add_edge", - "rtt_ns": 838297, - "rtt_ms": 0.838297, + "rtt_ns": 1417583, + "rtt_ms": 1.417583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:38.073706765Z" + "vertex_to": "364", + "timestamp": "2025-11-27T04:03:19.654851-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233303, - "rtt_ms": 2.233303, + "rtt_ns": 1458167, + "rtt_ms": 1.458167, "checkpoint": 0, "vertex_from": "64", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.073743135Z" + "timestamp": "2025-11-27T04:03:19.654877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2332003, - "rtt_ms": 2.332003, + "rtt_ns": 1171583, + "rtt_ms": 1.171583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "364", - "timestamp": "2025-11-27T01:23:38.074447123Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.655765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496406, - "rtt_ms": 1.496406, + "rtt_ns": 1155708, + "rtt_ms": 1.155708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:38.074531333Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:19.65579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670395, - "rtt_ms": 1.670395, + "rtt_ns": 1423875, + "rtt_ms": 1.423875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:38.074567393Z" + "timestamp": "2025-11-27T04:03:19.655836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586296, - "rtt_ms": 1.586296, + "rtt_ns": 1162334, + "rtt_ms": 1.162334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:38.075191851Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:19.65604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601196, - "rtt_ms": 1.601196, + "rtt_ns": 1691334, + "rtt_ms": 1.691334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:38.075234631Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:19.656057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494836, - "rtt_ms": 1.494836, + "rtt_ns": 1505417, + "rtt_ms": 1.505417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:38.075238621Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:19.656288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567406, - "rtt_ms": 1.567406, + "rtt_ns": 1632209, + "rtt_ms": 1.632209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:38.075256721Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:19.656354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564406, - "rtt_ms": 1.564406, + "rtt_ns": 1556583, + "rtt_ms": 1.556583, "checkpoint": 0, "vertex_from": "64", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.075272741Z" + "timestamp": "2025-11-27T04:03:19.656409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679605, - "rtt_ms": 1.679605, + "rtt_ns": 1638542, + "rtt_ms": 1.638542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:38.075275591Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:19.65641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754874, - "rtt_ms": 1.754874, + "rtt_ns": 1641708, + "rtt_ms": 1.641708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:38.07528944Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.656412-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102724, - "rtt_ms": 2.102724, + "rtt_ns": 1265917, + "rtt_ms": 1.265917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:38.076635127Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:19.657103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395726, - "rtt_ms": 1.395726, + "rtt_ns": 1355708, + "rtt_ms": 1.355708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.076635137Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:19.657122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451056, - "rtt_ms": 1.451056, + "rtt_ns": 1522875, + "rtt_ms": 1.522875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "405", - "timestamp": "2025-11-27T01:23:38.076644217Z" + "timestamp": "2025-11-27T04:03:19.657564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409256, - "rtt_ms": 1.409256, + "rtt_ns": 1823750, + "rtt_ms": 1.82375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:38.076645117Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:19.657622-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210564, - "rtt_ms": 2.210564, + "rtt_ns": 1514958, + "rtt_ms": 1.514958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:38.076659017Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:19.657925-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092984, - "rtt_ms": 2.092984, + "rtt_ns": 1652458, + "rtt_ms": 1.652458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:38.076661767Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.657943-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1388086, - "rtt_ms": 1.388086, + "rtt_ns": 1605125, + "rtt_ms": 1.605125, "checkpoint": 0, "vertex_from": "206", - "timestamp": "2025-11-27T01:23:38.076662527Z" + "timestamp": "2025-11-27T04:03:19.657962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514595, - "rtt_ms": 1.514595, + "rtt_ns": 1565625, + "rtt_ms": 1.565625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:38.076788796Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.657977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529186, - "rtt_ms": 1.529186, + "rtt_ns": 1936750, + "rtt_ms": 1.93675, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.076805676Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.657995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528116, - "rtt_ms": 1.528116, + "rtt_ns": 2376833, + "rtt_ms": 2.376833, "checkpoint": 0, "vertex_from": "64", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:38.076820436Z" + "timestamp": "2025-11-27T04:03:19.65879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047417, - "rtt_ms": 1.047417, + "rtt_ns": 2106375, + "rtt_ms": 2.106375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "93", - "timestamp": "2025-11-27T01:23:38.077686064Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:19.659229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062227, - "rtt_ms": 1.062227, + "rtt_ns": 1593958, + "rtt_ms": 1.593958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:38.077710904Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.65952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083667, - "rtt_ms": 1.083667, + "rtt_ns": 1757291, + "rtt_ms": 1.757291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:38.077729554Z" + "vertex_to": "206", + "timestamp": "2025-11-27T04:03:19.659719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461106, - "rtt_ms": 1.461106, + "rtt_ns": 2111875, + "rtt_ms": 2.111875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:38.078099353Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.659736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598295, - "rtt_ms": 1.598295, + "rtt_ns": 1796125, + "rtt_ms": 1.796125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "841", - "timestamp": "2025-11-27T01:23:38.078265842Z" + "timestamp": "2025-11-27T04:03:19.65974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503576, - "rtt_ms": 1.503576, + "rtt_ns": 2188083, + "rtt_ms": 2.188083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.078311212Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:19.659753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794295, - "rtt_ms": 1.794295, + "rtt_ns": 2651084, + "rtt_ms": 2.651084, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:38.078458522Z" + "vertex_to": "93", + "timestamp": "2025-11-27T04:03:19.659755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996254, - "rtt_ms": 1.996254, + "rtt_ns": 1780459, + "rtt_ms": 1.780459, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "206", - "timestamp": "2025-11-27T01:23:38.078660321Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.659759-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1775750, + "rtt_ms": 1.77575, + "checkpoint": 0, + "vertex_from": "64", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.659771-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098304, - "rtt_ms": 2.098304, + "rtt_ns": 1006875, + "rtt_ms": 1.006875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "65", - "timestamp": "2025-11-27T01:23:38.07892157Z" + "timestamp": "2025-11-27T04:03:19.659798-08:00" }, { "operation": "add_edge", - "rtt_ns": 2299194, - "rtt_ms": 2.299194, + "rtt_ns": 1256667, + "rtt_ms": 1.256667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.07909263Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.660486-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121044, - "rtt_ms": 2.121044, + "rtt_ns": 1245083, + "rtt_ms": 1.245083, "checkpoint": 0, "vertex_from": "64", "vertex_to": "308", - "timestamp": "2025-11-27T01:23:38.079851838Z" + "timestamp": "2025-11-27T04:03:19.660965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208063, - "rtt_ms": 2.208063, + "rtt_ns": 1484292, + "rtt_ms": 1.484292, "checkpoint": 0, "vertex_from": "64", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:38.079921477Z" + "timestamp": "2025-11-27T04:03:19.661006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832524, - "rtt_ms": 1.832524, + "rtt_ns": 1399666, + "rtt_ms": 1.399666, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:38.079933517Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:03:19.661154-08:00" }, { "operation": "add_edge", - "rtt_ns": 2341033, - "rtt_ms": 2.341033, + "rtt_ns": 1423334, + "rtt_ms": 1.423334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:38.080029667Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:19.66116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747295, - "rtt_ms": 1.747295, + "rtt_ns": 1369292, + "rtt_ms": 1.369292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:38.080060767Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.661168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680765, - "rtt_ms": 1.680765, + "rtt_ns": 1681333, + "rtt_ms": 1.681333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "314", - "timestamp": "2025-11-27T01:23:38.080140647Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:19.661443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903095, - "rtt_ms": 1.903095, + "rtt_ns": 1754875, + "rtt_ms": 1.754875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:38.080170027Z" + "timestamp": "2025-11-27T04:03:19.661496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616335, - "rtt_ms": 1.616335, + "rtt_ns": 1776916, + "rtt_ms": 1.776916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:38.080278166Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:19.661549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366476, - "rtt_ms": 1.366476, + "rtt_ns": 1947334, + "rtt_ms": 1.947334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:38.080288896Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:03:19.661703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223916, - "rtt_ms": 1.223916, + "rtt_ns": 1231125, + "rtt_ms": 1.231125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.080318396Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:19.661718-08:00" }, { "operation": "add_edge", - "rtt_ns": 658548, - "rtt_ms": 0.658548, + "rtt_ns": 1055416, + "rtt_ms": 1.055416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:38.080512426Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.662226-08:00" }, { "operation": "add_edge", - "rtt_ns": 757788, - "rtt_ms": 0.757788, + "rtt_ns": 1316916, + "rtt_ms": 1.316916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:38.080693375Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:03:19.662284-08:00" }, { "operation": "add_edge", - "rtt_ns": 717878, - "rtt_ms": 0.717878, + "rtt_ns": 1469000, + "rtt_ms": 1.469, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "867", - "timestamp": "2025-11-27T01:23:38.080749405Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:19.662476-08:00" }, { "operation": "add_edge", - "rtt_ns": 909768, - "rtt_ms": 0.909768, + "rtt_ns": 1331958, + "rtt_ms": 1.331958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "66", - "timestamp": "2025-11-27T01:23:38.080832465Z" + "vertex_to": "933", + "timestamp": "2025-11-27T04:03:19.662493-08:00" }, { "operation": "add_edge", - "rtt_ns": 874557, - "rtt_ms": 0.874557, + "rtt_ns": 1441584, + "rtt_ms": 1.441584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "933", - "timestamp": "2025-11-27T01:23:38.080936684Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:03:19.662596-08:00" }, { "operation": "add_edge", - "rtt_ns": 840457, - "rtt_ms": 0.840457, + "rtt_ns": 992416, + "rtt_ms": 0.992416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:38.080981964Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:19.662696-08:00" }, { "operation": "add_edge", - "rtt_ns": 869217, - "rtt_ms": 0.869217, + "rtt_ns": 1165542, + "rtt_ms": 1.165542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "407", - "timestamp": "2025-11-27T01:23:38.081040044Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:19.662715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019257, - "rtt_ms": 1.019257, + "rtt_ns": 1357708, + "rtt_ms": 1.357708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:38.081714702Z" + "vertex_to": "407", + "timestamp": "2025-11-27T04:03:19.662801-08:00" }, { "operation": "add_edge", - "rtt_ns": 968637, - "rtt_ms": 0.968637, + "rtt_ns": 1385208, + "rtt_ms": 1.385208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:38.081719452Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:19.662882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209596, - "rtt_ms": 1.209596, + "rtt_ns": 1355875, + "rtt_ms": 1.355875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "164", - "timestamp": "2025-11-27T01:23:38.081723122Z" + "timestamp": "2025-11-27T04:03:19.663075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490086, - "rtt_ms": 1.490086, + "rtt_ns": 1545166, + "rtt_ms": 1.545166, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:38.081769322Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:19.663773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515306, - "rtt_ms": 1.515306, + "rtt_ns": 1337833, + "rtt_ms": 1.337833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:38.081805462Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.663832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509076, - "rtt_ms": 1.509076, + "rtt_ns": 1309042, + "rtt_ms": 1.309042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:38.081828342Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.664006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596725, - "rtt_ms": 1.596725, + "rtt_ns": 1221417, + "rtt_ms": 1.221417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:38.08243024Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:19.664025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648405, - "rtt_ms": 1.648405, + "rtt_ns": 1157916, + "rtt_ms": 1.157916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.082586139Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:19.664041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568655, - "rtt_ms": 1.568655, + "rtt_ns": 1578291, + "rtt_ms": 1.578291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:38.082609609Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:19.664055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705155, - "rtt_ms": 1.705155, + "rtt_ns": 1472208, + "rtt_ms": 1.472208, "checkpoint": 0, "vertex_from": "64", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:38.082688359Z" + "timestamp": "2025-11-27T04:03:19.66407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126457, - "rtt_ms": 1.126457, + "rtt_ns": 1799292, + "rtt_ms": 1.799292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:38.082847479Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:19.664085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153667, - "rtt_ms": 1.153667, + "rtt_ns": 1519375, + "rtt_ms": 1.519375, "checkpoint": 0, "vertex_from": "64", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:38.082869369Z" + "timestamp": "2025-11-27T04:03:19.664236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273806, - "rtt_ms": 1.273806, + "rtt_ns": 1172875, + "rtt_ms": 1.172875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:38.083045008Z" + "timestamp": "2025-11-27T04:03:19.664248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324796, - "rtt_ms": 1.324796, + "rtt_ns": 1069625, + "rtt_ms": 1.069625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:38.083131048Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.665095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393816, - "rtt_ms": 1.393816, + "rtt_ns": 1060125, + "rtt_ms": 1.060125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:38.083223378Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:19.66513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512815, - "rtt_ms": 1.512815, + "rtt_ns": 1572125, + "rtt_ms": 1.572125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:38.083237227Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.665405-08:00" }, { "operation": "add_edge", - "rtt_ns": 661778, - "rtt_ms": 0.661778, + "rtt_ns": 1196500, + "rtt_ms": 1.1965, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:38.083272487Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.665433-08:00" }, { "operation": "add_edge", - "rtt_ns": 867027, - "rtt_ms": 0.867027, + "rtt_ns": 1191875, + "rtt_ms": 1.191875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.083298437Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:03:19.665441-08:00" }, { "operation": "add_edge", - "rtt_ns": 667258, - "rtt_ms": 0.667258, + "rtt_ns": 1407792, + "rtt_ms": 1.407792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:38.083356637Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:19.66545-08:00" }, { "operation": "add_edge", - "rtt_ns": 800288, - "rtt_ms": 0.800288, + "rtt_ns": 1444833, + "rtt_ms": 1.444833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:38.083387437Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.665452-08:00" }, { "operation": "add_edge", - "rtt_ns": 564478, - "rtt_ms": 0.564478, + "rtt_ns": 1371417, + "rtt_ms": 1.371417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:38.083412907Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:19.665457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219936, - "rtt_ms": 1.219936, + "rtt_ns": 1413250, + "rtt_ms": 1.41325, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:38.084090265Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:19.665469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094017, - "rtt_ms": 1.094017, + "rtt_ns": 1693875, + "rtt_ms": 1.693875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.084140045Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.66547-08:00" }, { "operation": "add_edge", - "rtt_ns": 953638, - "rtt_ms": 0.953638, + "rtt_ns": 1106292, + "rtt_ms": 1.106292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:38.084227465Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:19.666579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004077, - "rtt_ms": 1.004077, + "rtt_ns": 1518917, + "rtt_ms": 1.518917, "checkpoint": 0, "vertex_from": "64", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:38.084228525Z" + "timestamp": "2025-11-27T04:03:19.666615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215546, - "rtt_ms": 1.215546, + "rtt_ns": 1445416, + "rtt_ms": 1.445416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:38.084347974Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:19.666853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224397, - "rtt_ms": 1.224397, + "rtt_ns": 1739667, + "rtt_ms": 1.739667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:38.084523734Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:19.666871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699466, - "rtt_ms": 1.699466, + "rtt_ns": 1432708, + "rtt_ms": 1.432708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:38.084937683Z" + "vertex_to": "411", + "timestamp": "2025-11-27T04:03:19.666885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616825, - "rtt_ms": 1.616825, + "rtt_ns": 1463208, + "rtt_ms": 1.463208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "666", - "timestamp": "2025-11-27T01:23:38.085005412Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.666905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836625, - "rtt_ms": 1.836625, + "rtt_ns": 1463417, + "rtt_ms": 1.463417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.085194162Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:03:19.666921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792305, - "rtt_ms": 1.792305, + "rtt_ns": 1495500, + "rtt_ms": 1.4955, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "411", - "timestamp": "2025-11-27T01:23:38.085206412Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:19.666929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543845, - "rtt_ms": 1.543845, + "rtt_ns": 1654625, + "rtt_ms": 1.654625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.086069039Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:03:19.667105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340273, - "rtt_ms": 2.340273, + "rtt_ns": 1681375, + "rtt_ms": 1.681375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:38.086569898Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:19.667151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2523753, - "rtt_ms": 2.523753, + "rtt_ns": 1336042, + "rtt_ms": 1.336042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "425", - "timestamp": "2025-11-27T01:23:38.086615338Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:19.667916-08:00" }, { "operation": "add_edge", - "rtt_ns": 2457113, - "rtt_ms": 2.457113, + "rtt_ns": 1143125, + "rtt_ms": 1.143125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:38.086685728Z" + "vertex_to": "691", + "timestamp": "2025-11-27T04:03:19.668077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494826, - "rtt_ms": 1.494826, + "rtt_ns": 1215584, + "rtt_ms": 1.215584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "504", - "timestamp": "2025-11-27T01:23:38.086702268Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:19.668087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777395, - "rtt_ms": 1.777395, + "rtt_ns": 1474500, + "rtt_ms": 1.4745, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:38.086716338Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.66809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2373984, - "rtt_ms": 2.373984, + "rtt_ns": 1415625, + "rtt_ms": 1.415625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.086723948Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:03:19.66827-08:00" }, { "operation": "add_edge", - "rtt_ns": 2591413, - "rtt_ms": 2.591413, + "rtt_ns": 1354750, + "rtt_ms": 1.35475, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:38.086732328Z" + "vertex_to": "504", + "timestamp": "2025-11-27T04:03:19.668277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733446, - "rtt_ms": 1.733446, + "rtt_ns": 1409583, + "rtt_ms": 1.409583, "checkpoint": 0, "vertex_from": "64", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.086740008Z" + "timestamp": "2025-11-27T04:03:19.668296-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063474, - "rtt_ms": 2.063474, + "rtt_ns": 1214000, + "rtt_ms": 1.214, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "636", - "timestamp": "2025-11-27T01:23:38.087259266Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:19.66832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331027, - "rtt_ms": 1.331027, + "rtt_ns": 1186166, + "rtt_ms": 1.186166, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "691", - "timestamp": "2025-11-27T01:23:38.087402056Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.668338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345306, - "rtt_ms": 1.345306, + "rtt_ns": 1446083, + "rtt_ms": 1.446083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:38.087916354Z" + "vertex_to": "636", + "timestamp": "2025-11-27T04:03:19.668351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312196, - "rtt_ms": 1.312196, + "rtt_ns": 1377458, + "rtt_ms": 1.377458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.087998784Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.669468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326316, - "rtt_ms": 1.326316, + "rtt_ns": 1406750, + "rtt_ms": 1.40675, "checkpoint": 0, "vertex_from": "64", "vertex_to": "805", - "timestamp": "2025-11-27T01:23:38.088029934Z" + "timestamp": "2025-11-27T04:03:19.669485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354046, - "rtt_ms": 1.354046, + "rtt_ns": 1834708, + "rtt_ms": 1.834708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.088095124Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:19.670105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479296, - "rtt_ms": 1.479296, + "rtt_ns": 1782000, + "rtt_ms": 1.782, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:38.088095604Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:19.670121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972404, - "rtt_ms": 1.972404, + "rtt_ns": 2049000, + "rtt_ms": 2.049, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:38.088705882Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:03:19.670136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014494, - "rtt_ms": 2.014494, + "rtt_ns": 2234875, + "rtt_ms": 2.234875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.088739572Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.670152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503646, - "rtt_ms": 1.503646, + "rtt_ns": 1996125, + "rtt_ms": 1.996125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "277", - "timestamp": "2025-11-27T01:23:38.088763762Z" + "timestamp": "2025-11-27T04:03:19.670292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451745, - "rtt_ms": 1.451745, + "rtt_ns": 1943833, + "rtt_ms": 1.943833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:38.088854801Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.670296-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222543, - "rtt_ms": 2.222543, + "rtt_ns": 2036375, + "rtt_ms": 2.036375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "75", - "timestamp": "2025-11-27T01:23:38.088939901Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.670314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551516, - "rtt_ms": 1.551516, + "rtt_ns": 1991792, + "rtt_ms": 1.991792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:38.08946872Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:19.670315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590375, - "rtt_ms": 1.590375, + "rtt_ns": 1313792, + "rtt_ms": 1.313792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:38.089590099Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:19.6708-08:00" }, { "operation": "add_edge", - "rtt_ns": 863907, - "rtt_ms": 0.863907, + "rtt_ns": 1584000, + "rtt_ms": 1.584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:38.089628589Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.671053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550875, - "rtt_ms": 1.550875, + "rtt_ns": 1182958, + "rtt_ms": 1.182958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:38.089647089Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:19.67132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563565, - "rtt_ms": 1.563565, + "rtt_ns": 1215334, + "rtt_ms": 1.215334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "458", - "timestamp": "2025-11-27T01:23:38.089660229Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:03:19.671337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648705, - "rtt_ms": 1.648705, + "rtt_ns": 1437833, + "rtt_ms": 1.437833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.089679569Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.67159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251406, - "rtt_ms": 1.251406, + "rtt_ns": 1502167, + "rtt_ms": 1.502167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "182", - "timestamp": "2025-11-27T01:23:38.089959118Z" + "vertex_to": "458", + "timestamp": "2025-11-27T04:03:19.671609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404926, - "rtt_ms": 1.404926, + "rtt_ns": 1689417, + "rtt_ms": 1.689417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "73", - "timestamp": "2025-11-27T01:23:38.090345837Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:03:19.672005-08:00" }, { "operation": "add_edge", - "rtt_ns": 865198, - "rtt_ms": 0.865198, + "rtt_ns": 1723167, + "rtt_ms": 1.723167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:38.090494767Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:03:19.67202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689305, - "rtt_ms": 1.689305, + "rtt_ns": 1741250, + "rtt_ms": 1.74125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "562", - "timestamp": "2025-11-27T01:23:38.090545106Z" + "timestamp": "2025-11-27T04:03:19.672034-08:00" }, { "operation": "add_edge", - "rtt_ns": 910437, - "rtt_ms": 0.910437, + "rtt_ns": 1248583, + "rtt_ms": 1.248583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:38.090558486Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:19.672049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130626, - "rtt_ms": 1.130626, + "rtt_ns": 1736041, + "rtt_ms": 1.736041, "checkpoint": 0, "vertex_from": "64", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.090600466Z" + "timestamp": "2025-11-27T04:03:19.672051-08:00" }, { "operation": "add_edge", - "rtt_ns": 993357, - "rtt_ms": 0.993357, + "rtt_ns": 1289125, + "rtt_ms": 1.289125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "275", - "timestamp": "2025-11-27T01:23:38.090675336Z" + "timestamp": "2025-11-27T04:03:19.672627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030677, - "rtt_ms": 1.030677, + "rtt_ns": 1317625, + "rtt_ms": 1.317625, "checkpoint": 0, "vertex_from": "64", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.090691956Z" + "timestamp": "2025-11-27T04:03:19.672639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106917, - "rtt_ms": 1.106917, + "rtt_ns": 1874292, + "rtt_ms": 1.874292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:38.090697896Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.672928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972084, - "rtt_ms": 1.972084, + "rtt_ns": 903166, + "rtt_ms": 0.903166, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:38.090712336Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:19.672955-08:00" }, { "operation": "add_edge", - "rtt_ns": 929777, - "rtt_ms": 0.929777, + "rtt_ns": 1552459, + "rtt_ms": 1.552459, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.091425544Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.673162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096107, - "rtt_ms": 1.096107, + "rtt_ns": 1190167, + "rtt_ms": 1.190167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:38.091443064Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.673196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505556, - "rtt_ms": 1.505556, + "rtt_ns": 1622666, + "rtt_ms": 1.622666, "checkpoint": 0, "vertex_from": "64", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:38.091465544Z" + "timestamp": "2025-11-27T04:03:19.673214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164237, - "rtt_ms": 1.164237, + "rtt_ns": 1457333, + "rtt_ms": 1.457333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:38.091766003Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:03:19.673492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195256, - "rtt_ms": 1.195256, + "rtt_ns": 1450917, + "rtt_ms": 1.450917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:38.091888312Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:19.673501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129334, - "rtt_ms": 2.129334, + "rtt_ns": 1499459, + "rtt_ms": 1.499459, "checkpoint": 0, "vertex_from": "64", "vertex_to": "97", - "timestamp": "2025-11-27T01:23:38.09267538Z" + "timestamp": "2025-11-27T04:03:19.67352-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125614, - "rtt_ms": 2.125614, + "rtt_ns": 1311333, + "rtt_ms": 1.311333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:38.09280217Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.673951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320673, - "rtt_ms": 2.320673, + "rtt_ns": 1324750, + "rtt_ms": 1.32475, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "76", - "timestamp": "2025-11-27T01:23:38.092880209Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:19.673953-08:00" }, { "operation": "add_edge", - "rtt_ns": 2891091, - "rtt_ms": 2.891091, + "rtt_ns": 1424625, + "rtt_ms": 1.424625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.093589777Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:19.674356-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172163, - "rtt_ms": 2.172163, + "rtt_ns": 1209500, + "rtt_ms": 1.2095, "checkpoint": 0, "vertex_from": "64", "vertex_to": "657", - "timestamp": "2025-11-27T01:23:38.093616757Z" + "timestamp": "2025-11-27T04:03:19.674372-08:00" }, { "operation": "add_edge", - "rtt_ns": 2945591, - "rtt_ms": 2.945591, + "rtt_ns": 1525542, + "rtt_ms": 1.525542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:38.093658917Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.674481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801245, - "rtt_ms": 1.801245, + "rtt_ns": 1424333, + "rtt_ms": 1.424333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:38.093691067Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:03:19.674639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316083, - "rtt_ms": 2.316083, + "rtt_ns": 1294958, + "rtt_ms": 1.294958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.093747057Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:19.674816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996254, - "rtt_ms": 1.996254, + "rtt_ns": 1338875, + "rtt_ms": 1.338875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "409", - "timestamp": "2025-11-27T01:23:38.093763297Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.674832-08:00" }, { "operation": "add_edge", - "rtt_ns": 2324043, - "rtt_ms": 2.324043, + "rtt_ns": 1651042, + "rtt_ms": 1.651042, "checkpoint": 0, "vertex_from": "64", "vertex_to": "824", - "timestamp": "2025-11-27T01:23:38.093790977Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1590615, - "rtt_ms": 1.590615, - "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:38.094394185Z" + "timestamp": "2025-11-27T04:03:19.674848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749085, - "rtt_ms": 1.749085, + "rtt_ns": 1562291, + "rtt_ms": 1.562291, "checkpoint": 0, "vertex_from": "64", "vertex_to": "165", - "timestamp": "2025-11-27T01:23:38.094425605Z" + "timestamp": "2025-11-27T04:03:19.675066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618826, - "rtt_ms": 1.618826, + "rtt_ns": 1385542, + "rtt_ms": 1.385542, "checkpoint": 0, "vertex_from": "64", "vertex_to": "387", - "timestamp": "2025-11-27T01:23:38.094500945Z" + "timestamp": "2025-11-27T04:03:19.675339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574426, - "rtt_ms": 1.574426, + "rtt_ns": 1543875, + "rtt_ms": 1.543875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "133", - "timestamp": "2025-11-27T01:23:38.095165593Z" + "timestamp": "2025-11-27T04:03:19.675499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496516, - "rtt_ms": 1.496516, + "rtt_ns": 1282958, + "rtt_ms": 1.282958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:38.095188773Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:19.67564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536085, - "rtt_ms": 1.536085, + "rtt_ns": 1282792, + "rtt_ms": 1.282792, "checkpoint": 0, "vertex_from": "64", "vertex_to": "202", - "timestamp": "2025-11-27T01:23:38.095196132Z" + "timestamp": "2025-11-27T04:03:19.675656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577945, - "rtt_ms": 1.577945, + "rtt_ns": 921250, + "rtt_ms": 0.92125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:38.095196152Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:19.67577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464675, - "rtt_ms": 1.464675, + "rtt_ns": 1349084, + "rtt_ms": 1.349084, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:38.095212932Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:19.675831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081637, - "rtt_ms": 1.081637, + "rtt_ns": 1584000, + "rtt_ms": 1.584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "286", - "timestamp": "2025-11-27T01:23:38.095508052Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:19.676224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745935, - "rtt_ms": 1.745935, + "rtt_ns": 1415500, + "rtt_ms": 1.4155, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:38.095510752Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:19.676248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722125, - "rtt_ms": 1.722125, + "rtt_ns": 1439875, + "rtt_ms": 1.439875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:38.095514882Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:19.676257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420106, - "rtt_ms": 1.420106, + "rtt_ns": 1206625, + "rtt_ms": 1.206625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:38.095816001Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:03:19.676273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340336, - "rtt_ms": 1.340336, + "rtt_ns": 1274875, + "rtt_ms": 1.274875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.095843811Z" + "vertex_to": "341", + "timestamp": "2025-11-27T04:03:19.676932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213446, - "rtt_ms": 1.213446, + "rtt_ns": 1467875, + "rtt_ms": 1.467875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "922", - "timestamp": "2025-11-27T01:23:38.096380039Z" + "timestamp": "2025-11-27T04:03:19.67697-08:00" }, { "operation": "add_edge", - "rtt_ns": 905347, - "rtt_ms": 0.905347, + "rtt_ns": 1645458, + "rtt_ms": 1.645458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:38.096418189Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.676985-08:00" }, { "operation": "add_edge", - "rtt_ns": 927637, - "rtt_ms": 0.927637, + "rtt_ns": 1358000, + "rtt_ms": 1.358, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:38.096437569Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:19.676999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262867, - "rtt_ms": 1.262867, + "rtt_ns": 1471708, + "rtt_ms": 1.471708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "684", - "timestamp": "2025-11-27T01:23:38.096478819Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.677242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000957, - "rtt_ms": 1.000957, + "rtt_ns": 1429417, + "rtt_ms": 1.429417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:38.096517629Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:03:19.677263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456385, - "rtt_ms": 1.456385, + "rtt_ns": 1174042, + "rtt_ms": 1.174042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:38.096646018Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:19.677423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548686, - "rtt_ms": 1.548686, + "rtt_ns": 1357208, + "rtt_ms": 1.357208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:38.096747148Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:19.677631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663496, - "rtt_ms": 1.663496, + "rtt_ns": 1470209, + "rtt_ms": 1.470209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "341", - "timestamp": "2025-11-27T01:23:38.096861438Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:19.677695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573495, - "rtt_ms": 1.573495, + "rtt_ns": 1460334, + "rtt_ms": 1.460334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:38.097390516Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:03:19.677718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091397, - "rtt_ms": 1.091397, + "rtt_ns": 1577416, + "rtt_ms": 1.577416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:38.097510996Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:19.678512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047287, - "rtt_ms": 1.047287, + "rtt_ns": 1286584, + "rtt_ms": 1.286584, "checkpoint": 0, "vertex_from": "64", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:38.097527256Z" + "timestamp": "2025-11-27T04:03:19.67853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726365, - "rtt_ms": 1.726365, + "rtt_ns": 1475708, + "rtt_ms": 1.475708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:38.097571046Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:19.67874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527126, - "rtt_ms": 1.527126, + "rtt_ns": 1774667, + "rtt_ms": 1.774667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "188", - "timestamp": "2025-11-27T01:23:38.097908335Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:19.678761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483636, - "rtt_ms": 1.483636, + "rtt_ns": 1776208, + "rtt_ms": 1.776208, "checkpoint": 0, "vertex_from": "64", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:38.097922955Z" + "timestamp": "2025-11-27T04:03:19.678777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437156, - "rtt_ms": 1.437156, + "rtt_ns": 1808500, + "rtt_ms": 1.8085, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:38.097955585Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:03:19.67878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327947, - "rtt_ms": 1.327947, + "rtt_ns": 1360167, + "rtt_ms": 1.360167, "checkpoint": 0, "vertex_from": "64", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:38.097975655Z" + "timestamp": "2025-11-27T04:03:19.678784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229627, - "rtt_ms": 1.229627, + "rtt_ns": 1181167, + "rtt_ms": 1.181167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:38.097977835Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.6789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277496, - "rtt_ms": 1.277496, + "rtt_ns": 1286416, + "rtt_ms": 1.286416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:38.098139994Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.678918-08:00" }, { "operation": "add_edge", - "rtt_ns": 806528, - "rtt_ms": 0.806528, + "rtt_ns": 1348458, + "rtt_ms": 1.348458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.098198074Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:19.679045-08:00" }, { "operation": "add_edge", - "rtt_ns": 752698, - "rtt_ms": 0.752698, + "rtt_ns": 961042, + "rtt_ms": 0.961042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:38.098282004Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:19.679746-08:00" }, { "operation": "add_edge", - "rtt_ns": 783648, - "rtt_ms": 0.783648, + "rtt_ns": 1544083, + "rtt_ms": 1.544083, "checkpoint": 0, "vertex_from": "64", "vertex_to": "112", - "timestamp": "2025-11-27T01:23:38.098295704Z" + "timestamp": "2025-11-27T04:03:19.680057-08:00" }, { "operation": "add_edge", - "rtt_ns": 746208, - "rtt_ms": 0.746208, + "rtt_ns": 1296750, + "rtt_ms": 1.29675, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "849", - "timestamp": "2025-11-27T01:23:38.098318344Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:19.680058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889264, - "rtt_ms": 1.889264, + "rtt_ns": 1293792, + "rtt_ms": 1.293792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:38.099798619Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:19.680075-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006144, - "rtt_ms": 2.006144, + "rtt_ns": 1361166, + "rtt_ms": 1.361166, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:38.099930139Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:03:19.680103-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140254, - "rtt_ms": 2.140254, + "rtt_ns": 1286917, + "rtt_ms": 1.286917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.100118879Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:03:19.680206-08:00" }, { "operation": "add_edge", - "rtt_ns": 2628732, - "rtt_ms": 2.628732, + "rtt_ns": 1433208, + "rtt_ms": 1.433208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:38.100585247Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:19.680211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386333, - "rtt_ms": 2.386333, + "rtt_ns": 1696792, + "rtt_ms": 1.696792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:38.100669677Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:19.680227-08:00" }, { "operation": "add_edge", - "rtt_ns": 2552593, - "rtt_ms": 2.552593, + "rtt_ns": 1419167, + "rtt_ms": 1.419167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "302", - "timestamp": "2025-11-27T01:23:38.100695087Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.68032-08:00" }, { "operation": "add_edge", - "rtt_ns": 2414593, - "rtt_ms": 2.414593, + "rtt_ns": 1210375, + "rtt_ms": 1.210375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.100711567Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:03:19.680256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2852041, - "rtt_ms": 2.852041, + "rtt_ns": 1589375, + "rtt_ms": 1.589375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:38.100828586Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:19.681336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2562822, - "rtt_ms": 2.562822, + "rtt_ns": 1593291, + "rtt_ms": 1.593291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:38.100882476Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:19.681699-08:00" }, { "operation": "add_vertex", - "rtt_ns": 786907, - "rtt_ms": 0.786907, + "rtt_ns": 1510291, + "rtt_ms": 1.510291, "checkpoint": 0, "vertex_from": "972", - "timestamp": "2025-11-27T01:23:38.100909116Z" + "timestamp": "2025-11-27T04:03:19.681719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2738042, - "rtt_ms": 2.738042, + "rtt_ns": 1862000, + "rtt_ms": 1.862, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:38.100937396Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:03:19.682074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064907, - "rtt_ms": 1.064907, + "rtt_ns": 2014041, + "rtt_ms": 2.014041, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:38.100995986Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:19.68209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235427, - "rtt_ms": 1.235427, + "rtt_ns": 2111958, + "rtt_ms": 2.111958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:38.101035666Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:19.682171-08:00" }, { "operation": "add_edge", - "rtt_ns": 535719, - "rtt_ms": 0.535719, + "rtt_ns": 2356417, + "rtt_ms": 2.356417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "78", - "timestamp": "2025-11-27T01:23:38.101121846Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:19.68269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096387, - "rtt_ms": 1.096387, + "rtt_ns": 2673250, + "rtt_ms": 2.67325, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:38.102744281Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.682731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161417, - "rtt_ms": 1.161417, + "rtt_ns": 2411459, + "rtt_ms": 2.411459, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:38.102783141Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:19.68274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262806, - "rtt_ms": 1.262806, + "rtt_ns": 1414875, + "rtt_ms": 1.414875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:38.10295097Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:19.682752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594365, - "rtt_ms": 1.594365, + "rtt_ns": 2410792, + "rtt_ms": 2.410792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:38.103222409Z" + "vertex_to": "245", + "timestamp": "2025-11-27T04:03:19.682758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610815, - "rtt_ms": 1.610815, + "rtt_ns": 1871416, + "rtt_ms": 1.871416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "245", - "timestamp": "2025-11-27T01:23:38.103247499Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:19.683572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614955, - "rtt_ms": 1.614955, + "rtt_ns": 1602584, + "rtt_ms": 1.602584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:38.103259099Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.683693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612045, - "rtt_ms": 1.612045, + "rtt_ns": 1681458, + "rtt_ms": 1.681458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:38.103283209Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:19.683854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621035, - "rtt_ms": 1.621035, + "rtt_ns": 1143833, + "rtt_ms": 1.143833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:38.103291909Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:19.683876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828844, - "rtt_ms": 1.828844, + "rtt_ns": 2173166, + "rtt_ms": 2.173166, "checkpoint": 0, "vertex_from": "64", "vertex_to": "972", - "timestamp": "2025-11-27T01:23:38.103486268Z" + "timestamp": "2025-11-27T04:03:19.683892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808144, - "rtt_ms": 1.808144, + "rtt_ns": 2086292, + "rtt_ms": 2.086292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:38.103512898Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:19.684161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050937, - "rtt_ms": 1.050937, + "rtt_ns": 1454625, + "rtt_ms": 1.454625, "checkpoint": 0, "vertex_from": "64", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.104004007Z" + "timestamp": "2025-11-27T04:03:19.684344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290676, - "rtt_ms": 1.290676, + "rtt_ns": 1368125, + "rtt_ms": 1.368125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:38.104037307Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:19.684358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276476, - "rtt_ms": 1.276476, + "rtt_ns": 1684750, + "rtt_ms": 1.68475, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:38.104569875Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.684375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440896, - "rtt_ms": 1.440896, + "rtt_ns": 1669042, + "rtt_ms": 1.669042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:38.104702185Z" + "vertex_to": "910", + "timestamp": "2025-11-27T04:03:19.684429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571426, - "rtt_ms": 1.571426, + "rtt_ns": 989083, + "rtt_ms": 0.989083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:38.104795115Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:03:19.684683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318817, - "rtt_ms": 1.318817, + "rtt_ns": 1421458, + "rtt_ms": 1.421458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:38.104807165Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:19.684994-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089194, - "rtt_ms": 2.089194, + "rtt_ns": 1389250, + "rtt_ms": 1.38925, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "910", - "timestamp": "2025-11-27T01:23:38.104878295Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:19.685266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736205, - "rtt_ms": 1.736205, + "rtt_ns": 1586334, + "rtt_ms": 1.586334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:38.104986414Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:19.685441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488326, - "rtt_ms": 1.488326, + "rtt_ns": 1248916, + "rtt_ms": 1.248916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "738", - "timestamp": "2025-11-27T01:23:38.105003124Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.685608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762705, - "rtt_ms": 1.762705, + "rtt_ns": 1734209, + "rtt_ms": 1.734209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:38.105047554Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:03:19.685627-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1206817, - "rtt_ms": 1.206817, + "operation": "add_edge", + "rtt_ns": 1462500, + "rtt_ms": 1.4625, "checkpoint": 0, - "vertex_from": "555", - "timestamp": "2025-11-27T01:23:38.105214064Z" + "vertex_from": "64", + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:19.685893-08:00" }, { "operation": "add_edge", - "rtt_ns": 937917, - "rtt_ms": 0.937917, + "rtt_ns": 1877375, + "rtt_ms": 1.877375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:38.105818662Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:03:19.68604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268237, - "rtt_ms": 1.268237, + "rtt_ns": 1684125, + "rtt_ms": 1.684125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "233", - "timestamp": "2025-11-27T01:23:38.105839742Z" + "timestamp": "2025-11-27T04:03:19.68606-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1150357, - "rtt_ms": 1.150357, + "operation": "add_vertex", + "rtt_ns": 1753250, + "rtt_ms": 1.75325, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:38.105855402Z" + "vertex_from": "555", + "timestamp": "2025-11-27T04:03:19.6861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060327, - "rtt_ms": 1.060327, + "rtt_ns": 1608125, + "rtt_ms": 1.608125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "83", - "timestamp": "2025-11-27T01:23:38.105869582Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:03:19.686293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838295, - "rtt_ms": 1.838295, + "rtt_ns": 1505167, + "rtt_ms": 1.505167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.105877832Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:03:19.686501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730885, - "rtt_ms": 1.730885, + "rtt_ns": 1252167, + "rtt_ms": 1.252167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:38.106735989Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:19.686519-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 955187, - "rtt_ms": 0.955187, + "operation": "add_edge", + "rtt_ns": 1674708, + "rtt_ms": 1.674708, "checkpoint": 0, - "vertex_from": "839", - "timestamp": "2025-11-27T01:23:38.106776569Z" + "vertex_from": "64", + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:19.687116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593635, - "rtt_ms": 1.593635, + "rtt_ns": 1529167, + "rtt_ms": 1.529167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "555", - "timestamp": "2025-11-27T01:23:38.106808029Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:19.687138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766345, - "rtt_ms": 1.766345, + "rtt_ns": 1593375, + "rtt_ms": 1.593375, "checkpoint": 0, "vertex_from": "64", "vertex_to": "718", - "timestamp": "2025-11-27T01:23:38.106815559Z" + "timestamp": "2025-11-27T04:03:19.687221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845175, - "rtt_ms": 1.845175, + "rtt_ns": 1467792, + "rtt_ms": 1.467792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:38.106833319Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:03:19.687529-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131244, - "rtt_ms": 2.131244, + "rtt_ns": 1545083, + "rtt_ms": 1.545083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "101", - "timestamp": "2025-11-27T01:23:38.106927759Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:19.687586-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1140597, - "rtt_ms": 1.140597, + "operation": "add_vertex", + "rtt_ns": 1762291, + "rtt_ms": 1.762291, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "89", - "timestamp": "2025-11-27T01:23:38.106997269Z" + "vertex_from": "839", + "timestamp": "2025-11-27T04:03:19.68766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500756, - "rtt_ms": 1.500756, + "rtt_ns": 1794792, + "rtt_ms": 1.794792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:38.107342388Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:03:19.687895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513406, - "rtt_ms": 1.513406, + "rtt_ns": 1617125, + "rtt_ms": 1.617125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:38.107383918Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1657755, - "rtt_ms": 1.657755, - "checkpoint": 0, - "vertex_from": "539", - "timestamp": "2025-11-27T01:23:38.107538877Z" + "timestamp": "2025-11-27T04:03:19.687911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945624, - "rtt_ms": 1.945624, + "rtt_ns": 1536542, + "rtt_ms": 1.536542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:38.108874763Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:19.688058-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2184524, - "rtt_ms": 2.184524, + "operation": "add_vertex", + "rtt_ns": 1667458, + "rtt_ms": 1.667458, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "839", - "timestamp": "2025-11-27T01:23:38.108961373Z" + "vertex_from": "539", + "timestamp": "2025-11-27T04:03:19.688169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196564, - "rtt_ms": 2.196564, + "rtt_ns": 1212625, + "rtt_ms": 1.212625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:38.109031603Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.688352-08:00" }, { "operation": "add_edge", - "rtt_ns": 2308983, - "rtt_ms": 2.308983, + "rtt_ns": 1467042, + "rtt_ms": 1.467042, "checkpoint": 0, "vertex_from": "64", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:38.109118042Z" + "timestamp": "2025-11-27T04:03:19.688584-08:00" }, { "operation": "add_edge", - "rtt_ns": 3214811, - "rtt_ms": 3.214811, + "rtt_ns": 1405000, + "rtt_ms": 1.405, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:38.10995263Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:19.688627-08:00" }, { "operation": "add_edge", - "rtt_ns": 3022651, - "rtt_ms": 3.022651, + "rtt_ns": 1211666, + "rtt_ms": 1.211666, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:38.11002128Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:19.689108-08:00" }, { "operation": "add_edge", - "rtt_ns": 2652482, - "rtt_ms": 2.652482, + "rtt_ns": 1640625, + "rtt_ms": 1.640625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "248", - "timestamp": "2025-11-27T01:23:38.11003728Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:19.689172-08:00" }, { "operation": "add_edge", - "rtt_ns": 3634439, - "rtt_ms": 3.634439, + "rtt_ns": 1814125, + "rtt_ms": 1.814125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:38.110451208Z" + "vertex_to": "839", + "timestamp": "2025-11-27T04:03:19.689474-08:00" }, { "operation": "add_edge", - "rtt_ns": 3128660, - "rtt_ms": 3.12866, + "rtt_ns": 2127208, + "rtt_ms": 2.127208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:38.110472258Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:03:19.689715-08:00" }, { "operation": "add_edge", - "rtt_ns": 2994861, - "rtt_ms": 2.994861, + "rtt_ns": 2208000, + "rtt_ms": 2.208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "539", - "timestamp": "2025-11-27T01:23:38.110534138Z" + "vertex_to": "248", + "timestamp": "2025-11-27T04:03:19.69012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659665, - "rtt_ms": 1.659665, + "rtt_ns": 1590208, + "rtt_ms": 1.590208, "checkpoint": 0, "vertex_from": "64", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:38.110692928Z" + "timestamp": "2025-11-27T04:03:19.690175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830455, - "rtt_ms": 1.830455, + "rtt_ns": 2164500, + "rtt_ms": 2.1645, "checkpoint": 0, "vertex_from": "64", "vertex_to": "564", - "timestamp": "2025-11-27T01:23:38.110708008Z" + "timestamp": "2025-11-27T04:03:19.690224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755825, - "rtt_ms": 1.755825, + "rtt_ns": 2082667, + "rtt_ms": 2.082667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:38.110718438Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:03:19.690252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624676, - "rtt_ms": 1.624676, + "rtt_ns": 1918167, + "rtt_ms": 1.918167, "checkpoint": 0, "vertex_from": "64", "vertex_to": "464", - "timestamp": "2025-11-27T01:23:38.110744288Z" + "timestamp": "2025-11-27T04:03:19.690546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612005, - "rtt_ms": 1.612005, + "rtt_ns": 2216208, + "rtt_ms": 2.216208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:38.111566265Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:03:19.690569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559015, - "rtt_ms": 1.559015, + "rtt_ns": 2271500, + "rtt_ms": 2.2715, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:38.111597825Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:19.691383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633955, - "rtt_ms": 1.633955, + "rtt_ns": 1683417, + "rtt_ms": 1.683417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:38.111657845Z" + "vertex_to": "703", + "timestamp": "2025-11-27T04:03:19.6914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157837, - "rtt_ms": 1.157837, + "rtt_ns": 1187375, + "rtt_ms": 1.187375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:38.111693215Z" + "vertex_to": "890", + "timestamp": "2025-11-27T04:03:19.691735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233557, - "rtt_ms": 1.233557, + "rtt_ns": 1632833, + "rtt_ms": 1.632833, "checkpoint": 0, "vertex_from": "64", "vertex_to": "327", - "timestamp": "2025-11-27T01:23:38.111707775Z" + "timestamp": "2025-11-27T04:03:19.691755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262177, - "rtt_ms": 1.262177, + "rtt_ns": 2297041, + "rtt_ms": 2.297041, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "703", - "timestamp": "2025-11-27T01:23:38.111714995Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:19.691772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009757, - "rtt_ms": 1.009757, + "rtt_ns": 1555375, + "rtt_ms": 1.555375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "890", - "timestamp": "2025-11-27T01:23:38.111729545Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:19.691781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044717, - "rtt_ms": 1.044717, + "rtt_ns": 2613708, + "rtt_ms": 2.613708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:38.111741025Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:19.691788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142416, - "rtt_ms": 1.142416, + "rtt_ns": 1521625, + "rtt_ms": 1.521625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:38.111852024Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:19.692091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670015, - "rtt_ms": 1.670015, + "rtt_ns": 1855708, + "rtt_ms": 1.855708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:38.112417693Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:19.692109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220006, - "rtt_ms": 1.220006, + "rtt_ns": 1948500, + "rtt_ms": 1.9485, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:38.112820951Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:19.692125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305816, - "rtt_ms": 1.305816, + "rtt_ns": 1733958, + "rtt_ms": 1.733958, "checkpoint": 0, "vertex_from": "64", "vertex_to": "114", - "timestamp": "2025-11-27T01:23:38.112875761Z" + "timestamp": "2025-11-27T04:03:19.693118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391386, - "rtt_ms": 1.391386, + "rtt_ns": 1352000, + "rtt_ms": 1.352, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:38.113050931Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:19.693136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345136, - "rtt_ms": 1.345136, + "rtt_ns": 1506458, + "rtt_ms": 1.506458, "checkpoint": 0, "vertex_from": "64", "vertex_to": "228", - "timestamp": "2025-11-27T01:23:38.113054771Z" + "timestamp": "2025-11-27T04:03:19.69328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625845, - "rtt_ms": 1.625845, + "rtt_ns": 1540916, + "rtt_ms": 1.540916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:38.113480469Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:19.693297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927094, - "rtt_ms": 1.927094, + "rtt_ns": 1910208, + "rtt_ms": 1.910208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:38.113643499Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:19.693311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245966, - "rtt_ms": 1.245966, + "rtt_ns": 1594375, + "rtt_ms": 1.594375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.113665209Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:19.69333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974554, - "rtt_ms": 1.974554, + "rtt_ns": 1557584, + "rtt_ms": 1.557584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:38.113669829Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:19.693346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977514, - "rtt_ms": 1.977514, + "rtt_ns": 1599458, + "rtt_ms": 1.599458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "590", - "timestamp": "2025-11-27T01:23:38.113720849Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:19.693709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077283, - "rtt_ms": 2.077283, + "rtt_ns": 1679917, + "rtt_ms": 1.679917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:38.113807778Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:03:19.693773-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1599486, - "rtt_ms": 1.599486, + "operation": "add_edge", + "rtt_ns": 1754333, + "rtt_ms": 1.754333, "checkpoint": 0, - "vertex_from": "125", - "timestamp": "2025-11-27T01:23:38.114424727Z" + "vertex_from": "64", + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.69388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433495, - "rtt_ms": 1.433495, + "rtt_ns": 1466792, + "rtt_ms": 1.466792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:38.114485816Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:19.694604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606065, - "rtt_ms": 1.606065, + "rtt_ns": 1349125, + "rtt_ms": 1.349125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:38.114489426Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:19.69463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019767, - "rtt_ms": 1.019767, + "rtt_ns": 1548917, + "rtt_ms": 1.548917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "880", - "timestamp": "2025-11-27T01:23:38.114501696Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.694896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471595, - "rtt_ms": 1.471595, + "rtt_ns": 1663584, + "rtt_ms": 1.663584, "checkpoint": 0, "vertex_from": "64", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:38.114528126Z" + "timestamp": "2025-11-27T04:03:19.694961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629715, - "rtt_ms": 1.629715, + "rtt_ns": 1656833, + "rtt_ms": 1.656833, "checkpoint": 0, "vertex_from": "64", "vertex_to": "269", - "timestamp": "2025-11-27T01:23:38.115274864Z" + "timestamp": "2025-11-27T04:03:19.694988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718095, - "rtt_ms": 1.718095, + "rtt_ns": 1694333, + "rtt_ms": 1.694333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:38.115386034Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:03:19.695006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576956, - "rtt_ms": 1.576956, + "rtt_ns": 1382292, + "rtt_ms": 1.382292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:38.115386294Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:19.695092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735275, - "rtt_ms": 1.735275, + "rtt_ns": 1220250, + "rtt_ms": 1.22025, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:38.115406834Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:19.695102-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2274500, + "rtt_ms": 2.2745, + "checkpoint": 0, + "vertex_from": "125", + "timestamp": "2025-11-27T04:03:19.695394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811694, - "rtt_ms": 1.811694, + "rtt_ns": 2215375, + "rtt_ms": 2.215375, "checkpoint": 0, "vertex_from": "64", "vertex_to": "121", - "timestamp": "2025-11-27T01:23:38.115534743Z" + "timestamp": "2025-11-27T04:03:19.695991-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2085375, + "rtt_ms": 2.085375, + "checkpoint": 0, + "vertex_from": "686", + "timestamp": "2025-11-27T04:03:19.697048-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1616166, - "rtt_ms": 1.616166, + "rtt_ns": 2524291, + "rtt_ms": 2.524291, "checkpoint": 0, "vertex_from": "862", - "timestamp": "2025-11-27T01:23:38.116104892Z" + "timestamp": "2025-11-27T04:03:19.697131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622256, - "rtt_ms": 1.622256, + "rtt_ns": 2248750, + "rtt_ms": 2.24875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "674", - "timestamp": "2025-11-27T01:23:38.116125562Z" + "timestamp": "2025-11-27T04:03:19.697145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656975, - "rtt_ms": 1.656975, + "rtt_ns": 2521416, + "rtt_ms": 2.521416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "876", - "timestamp": "2025-11-27T01:23:38.116148141Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:19.697624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725894, - "rtt_ms": 1.725894, + "rtt_ns": 3011042, + "rtt_ms": 3.011042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "125", - "timestamp": "2025-11-27T01:23:38.116151111Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1631685, - "rtt_ms": 1.631685, - "checkpoint": 0, - "vertex_from": "686", - "timestamp": "2025-11-27T01:23:38.116166711Z" + "vertex_to": "876", + "timestamp": "2025-11-27T04:03:19.697642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237314, - "rtt_ms": 2.237314, + "rtt_ns": 2656208, + "rtt_ms": 2.656208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "359", - "timestamp": "2025-11-27T01:23:38.117514468Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:19.697663-08:00" }, { "operation": "add_edge", - "rtt_ns": 2157334, - "rtt_ms": 2.157334, + "rtt_ns": 2674125, + "rtt_ms": 2.674125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "820", - "timestamp": "2025-11-27T01:23:38.117546988Z" + "timestamp": "2025-11-27T04:03:19.697767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261843, - "rtt_ms": 2.261843, + "rtt_ns": 1843917, + "rtt_ms": 1.843917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:38.117650117Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:03:19.697838-08:00" }, { "operation": "add_edge", - "rtt_ns": 2465393, - "rtt_ms": 2.465393, + "rtt_ns": 2852125, + "rtt_ms": 2.852125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:38.117873827Z" + "vertex_to": "359", + "timestamp": "2025-11-27T04:03:19.697841-08:00" }, { "operation": "add_edge", - "rtt_ns": 3023492, - "rtt_ms": 3.023492, + "rtt_ns": 2463000, + "rtt_ms": 2.463, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "485", - "timestamp": "2025-11-27T01:23:38.118560055Z" + "vertex_to": "125", + "timestamp": "2025-11-27T04:03:19.697857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2426414, - "rtt_ms": 2.426414, + "rtt_ns": 1196583, + "rtt_ms": 1.196583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:38.118579945Z" + "vertex_to": "686", + "timestamp": "2025-11-27T04:03:19.698245-08:00" }, { "operation": "add_edge", - "rtt_ns": 710898, - "rtt_ms": 0.710898, + "rtt_ns": 1201042, + "rtt_ms": 1.201042, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:38.118585985Z" + "vertex_from": "64", + "vertex_to": "862", + "timestamp": "2025-11-27T04:03:19.698332-08:00" }, { "operation": "add_edge", - "rtt_ns": 953208, - "rtt_ms": 0.953208, + "rtt_ns": 1339208, + "rtt_ms": 1.339208, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.118605735Z" + "vertex_from": "64", + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:19.698486-08:00" }, { "operation": "add_edge", - "rtt_ns": 2462154, - "rtt_ms": 2.462154, + "rtt_ns": 1419292, + "rtt_ms": 1.419292, "checkpoint": 0, "vertex_from": "64", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.118612285Z" + "timestamp": "2025-11-27T04:03:19.699044-08:00" }, { "operation": "add_edge", - "rtt_ns": 2493383, - "rtt_ms": 2.493383, + "rtt_ns": 1205083, + "rtt_ms": 1.205083, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:38.118621805Z" + "vertex_from": "65", + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:19.699063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2502903, - "rtt_ms": 2.502903, + "rtt_ns": 1401875, + "rtt_ms": 1.401875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "686", - "timestamp": "2025-11-27T01:23:38.118670534Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:03:19.699066-08:00" }, { "operation": "add_edge", - "rtt_ns": 2589262, - "rtt_ms": 2.589262, + "rtt_ns": 1302417, + "rtt_ms": 1.302417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "862", - "timestamp": "2025-11-27T01:23:38.118695144Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:19.699073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317316, - "rtt_ms": 1.317316, + "rtt_ns": 1246959, + "rtt_ms": 1.246959, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "573", - "timestamp": "2025-11-27T01:23:38.118833814Z" + "vertex_from": "65", + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:19.699089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341576, - "rtt_ms": 1.341576, + "rtt_ns": 1503125, + "rtt_ms": 1.503125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:38.118891034Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:19.699146-08:00" }, { "operation": "add_edge", - "rtt_ns": 942097, - "rtt_ms": 0.942097, + "rtt_ns": 1707916, + "rtt_ms": 1.707916, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:38.119523672Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.699548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014077, - "rtt_ms": 1.014077, + "rtt_ns": 1172209, + "rtt_ms": 1.172209, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:38.119637912Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:19.699659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135096, - "rtt_ms": 1.135096, + "rtt_ns": 1603833, + "rtt_ms": 1.603833, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.119748921Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:19.69985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188826, - "rtt_ms": 1.188826, + "rtt_ns": 1575709, + "rtt_ms": 1.575709, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:38.119751361Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:19.699909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214706, - "rtt_ms": 1.214706, + "rtt_ns": 1286292, + "rtt_ms": 1.286292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:38.119801801Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:19.700378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516716, - "rtt_ms": 1.516716, + "rtt_ns": 1498208, + "rtt_ms": 1.498208, "checkpoint": 0, "vertex_from": "65", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.12021304Z" + "timestamp": "2025-11-27T04:03:19.700574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567386, - "rtt_ms": 1.567386, + "rtt_ns": 1528792, + "rtt_ms": 1.528792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.12023944Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.700593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633505, - "rtt_ms": 1.633505, + "rtt_ns": 1684875, + "rtt_ms": 1.684875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:38.12024066Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.70073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588575, - "rtt_ms": 1.588575, + "rtt_ns": 1368000, + "rtt_ms": 1.368, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:38.120424029Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:19.700918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574875, - "rtt_ms": 1.574875, + "rtt_ns": 1786459, + "rtt_ms": 1.786459, "checkpoint": 0, "vertex_from": "65", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.120467299Z" + "timestamp": "2025-11-27T04:03:19.700933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097877, - "rtt_ms": 1.097877, + "rtt_ns": 1275625, + "rtt_ms": 1.275625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:38.120622899Z" + "vertex_to": "686", + "timestamp": "2025-11-27T04:03:19.700935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098867, - "rtt_ms": 1.098867, + "rtt_ns": 1887583, + "rtt_ms": 1.887583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:38.120851398Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.700954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197537, - "rtt_ms": 1.197537, + "rtt_ns": 1283875, + "rtt_ms": 1.283875, "checkpoint": 0, "vertex_from": "65", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:38.120947968Z" + "timestamp": "2025-11-27T04:03:19.701136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973254, - "rtt_ms": 1.973254, + "rtt_ns": 1241167, + "rtt_ms": 1.241167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "686", - "timestamp": "2025-11-27T01:23:38.121612516Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1937224, - "rtt_ms": 1.937224, - "checkpoint": 0, - "vertex_from": "500", - "timestamp": "2025-11-27T01:23:38.121742855Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:19.701151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687585, - "rtt_ms": 1.687585, + "rtt_ns": 1004916, + "rtt_ms": 1.004916, "checkpoint": 0, "vertex_from": "65", "vertex_to": "108", - "timestamp": "2025-11-27T01:23:38.121902035Z" + "timestamp": "2025-11-27T04:03:19.701579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019964, - "rtt_ms": 2.019964, + "rtt_ns": 1316208, + "rtt_ms": 1.316208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:38.122445873Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.702047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241053, - "rtt_ms": 2.241053, + "rtt_ns": 1470542, + "rtt_ms": 1.470542, "checkpoint": 0, "vertex_from": "65", "vertex_to": "872", - "timestamp": "2025-11-27T01:23:38.122481673Z" + "timestamp": "2025-11-27T04:03:19.702064-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1888764, - "rtt_ms": 1.888764, + "operation": "add_vertex", + "rtt_ns": 1703417, + "rtt_ms": 1.703417, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.122512713Z" + "vertex_from": "500", + "timestamp": "2025-11-27T04:03:19.702084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284613, - "rtt_ms": 2.284613, + "rtt_ns": 1355333, + "rtt_ms": 1.355333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.122527253Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.702291-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130934, - "rtt_ms": 2.130934, + "rtt_ns": 1375125, + "rtt_ms": 1.375125, "checkpoint": 0, "vertex_from": "65", "vertex_to": "66", - "timestamp": "2025-11-27T01:23:38.122599383Z" + "timestamp": "2025-11-27T04:03:19.702309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2300643, - "rtt_ms": 2.300643, + "rtt_ns": 1369084, + "rtt_ms": 1.369084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:38.123250141Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:19.702324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2502103, - "rtt_ms": 2.502103, + "rtt_ns": 1340708, + "rtt_ms": 1.340708, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:38.123355211Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.702493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747055, - "rtt_ms": 1.747055, + "rtt_ns": 1799750, + "rtt_ms": 1.79975, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.123361151Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:19.702719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633526, - "rtt_ms": 1.633526, + "rtt_ns": 1601542, + "rtt_ms": 1.601542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "500", - "timestamp": "2025-11-27T01:23:38.123376821Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.702738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242877, - "rtt_ms": 1.242877, + "rtt_ns": 1743208, + "rtt_ms": 1.743208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.12369009Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.703324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806285, - "rtt_ms": 1.806285, + "rtt_ns": 1254625, + "rtt_ms": 1.254625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.12371041Z" + "vertex_to": "500", + "timestamp": "2025-11-27T04:03:19.703339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363726, - "rtt_ms": 1.363726, + "rtt_ns": 1426625, + "rtt_ms": 1.426625, "checkpoint": 0, "vertex_from": "65", "vertex_to": "485", - "timestamp": "2025-11-27T01:23:38.123846359Z" + "timestamp": "2025-11-27T04:03:19.703492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367296, - "rtt_ms": 1.367296, + "rtt_ns": 1204083, + "rtt_ms": 1.204083, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:38.123896139Z" + "vertex_to": "93", + "timestamp": "2025-11-27T04:03:19.703529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414556, - "rtt_ms": 1.414556, + "rtt_ns": 1375042, + "rtt_ms": 1.375042, "checkpoint": 0, "vertex_from": "65", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:38.123928429Z" + "timestamp": "2025-11-27T04:03:19.703667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331506, - "rtt_ms": 1.331506, + "rtt_ns": 1638167, + "rtt_ms": 1.638167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "93", - "timestamp": "2025-11-27T01:23:38.123932639Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.703686-08:00" }, { "operation": "add_edge", - "rtt_ns": 864297, - "rtt_ms": 0.864297, + "rtt_ns": 1411917, + "rtt_ms": 1.411917, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.124115918Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:19.703722-08:00" }, { "operation": "add_edge", - "rtt_ns": 795157, - "rtt_ms": 0.795157, + "rtt_ns": 1420500, + "rtt_ms": 1.4205, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:38.124151938Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.703917-08:00" }, { "operation": "add_edge", - "rtt_ns": 811457, - "rtt_ms": 0.811457, + "rtt_ns": 1284791, + "rtt_ms": 1.284791, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "357", - "timestamp": "2025-11-27T01:23:38.124190528Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:19.704023-08:00" }, { "operation": "add_edge", - "rtt_ns": 832457, - "rtt_ms": 0.832457, + "rtt_ns": 1479875, + "rtt_ms": 1.479875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:38.124195878Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.7042-08:00" }, { "operation": "add_edge", - "rtt_ns": 949687, - "rtt_ms": 0.949687, + "rtt_ns": 1328375, + "rtt_ms": 1.328375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:38.124883676Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:03:19.704858-08:00" }, { "operation": "add_edge", - "rtt_ns": 800838, - "rtt_ms": 0.800838, + "rtt_ns": 1547916, + "rtt_ms": 1.547916, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:38.124954006Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:19.704888-08:00" }, { "operation": "add_edge", - "rtt_ns": 890488, - "rtt_ms": 0.890488, + "rtt_ns": 1199334, + "rtt_ms": 1.199334, "checkpoint": 0, "vertex_from": "65", "vertex_to": "269", - "timestamp": "2025-11-27T01:23:38.125008036Z" + "timestamp": "2025-11-27T04:03:19.705117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139477, - "rtt_ms": 1.139477, + "rtt_ns": 1829291, + "rtt_ms": 1.829291, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:38.125069726Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:03:19.705154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446146, - "rtt_ms": 1.446146, + "rtt_ns": 1443750, + "rtt_ms": 1.44375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:38.125137926Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.705167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303177, - "rtt_ms": 1.303177, + "rtt_ns": 1676583, + "rtt_ms": 1.676583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "569", - "timestamp": "2025-11-27T01:23:38.125150946Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:19.70517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268296, - "rtt_ms": 1.268296, + "rtt_ns": 1485875, + "rtt_ms": 1.485875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "466", - "timestamp": "2025-11-27T01:23:38.125165875Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:19.705173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001857, - "rtt_ms": 1.001857, + "rtt_ns": 1570541, + "rtt_ms": 1.570541, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.125199165Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:03:19.705239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589435, - "rtt_ms": 1.589435, + "rtt_ns": 1354209, + "rtt_ms": 1.354209, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:38.125301345Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:19.705378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666996, - "rtt_ms": 1.666996, + "rtt_ns": 1633500, + "rtt_ms": 1.6335, "checkpoint": 0, "vertex_from": "65", "vertex_to": "866", - "timestamp": "2025-11-27T01:23:38.125863304Z" + "timestamp": "2025-11-27T04:03:19.705837-08:00" }, { "operation": "add_vertex", - "rtt_ns": 977888, - "rtt_ms": 0.977888, + "rtt_ns": 1283875, + "rtt_ms": 1.283875, "checkpoint": 0, "vertex_from": "607", - "timestamp": "2025-11-27T01:23:38.125863774Z" + "timestamp": "2025-11-27T04:03:19.706177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107997, - "rtt_ms": 1.107997, + "rtt_ns": 1115625, + "rtt_ms": 1.115625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:38.126117453Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:19.706234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158947, - "rtt_ms": 1.158947, + "rtt_ns": 1984292, + "rtt_ms": 1.984292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:38.126229523Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.706844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183966, - "rtt_ms": 1.183966, + "rtt_ns": 1494084, + "rtt_ms": 1.494084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:38.126323412Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:19.706874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843615, - "rtt_ms": 1.843615, + "rtt_ns": 2038292, + "rtt_ms": 2.038292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:38.126798511Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.707213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646575, - "rtt_ms": 1.646575, + "rtt_ns": 2078584, + "rtt_ms": 2.078584, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.12694956Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:19.707235-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1822504, - "rtt_ms": 1.822504, + "operation": "add_vertex", + "rtt_ns": 2012333, + "rtt_ms": 2.012333, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.12697439Z" + "vertex_from": "234", + "timestamp": "2025-11-27T04:03:19.707253-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 903767, - "rtt_ms": 0.903767, + "operation": "add_edge", + "rtt_ns": 1213500, + "rtt_ms": 1.2135, "checkpoint": 0, - "vertex_from": "249", - "timestamp": "2025-11-27T01:23:38.12702427Z" + "vertex_from": "65", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.707448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161856, - "rtt_ms": 1.161856, + "rtt_ns": 2358500, + "rtt_ms": 2.3585, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "607", - "timestamp": "2025-11-27T01:23:38.12702626Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.707526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839935, - "rtt_ms": 1.839935, + "rtt_ns": 1357333, + "rtt_ms": 1.357333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:38.12704004Z" + "vertex_to": "607", + "timestamp": "2025-11-27T04:03:19.707535-08:00" }, { "operation": "add_edge", - "rtt_ns": 824157, - "rtt_ms": 0.824157, + "rtt_ns": 1705292, + "rtt_ms": 1.705292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.12705472Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.707544-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1945995, - "rtt_ms": 1.945995, + "operation": "add_edge", + "rtt_ns": 2377125, + "rtt_ms": 2.377125, "checkpoint": 0, - "vertex_from": "234", - "timestamp": "2025-11-27T01:23:38.12711505Z" + "vertex_from": "65", + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.707547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280586, - "rtt_ms": 1.280586, + "rtt_ns": 1265708, + "rtt_ms": 1.265708, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.1271462Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.708143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622416, - "rtt_ms": 1.622416, + "rtt_ns": 1186583, + "rtt_ms": 1.186583, "checkpoint": 0, "vertex_from": "65", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.127946868Z" + "timestamp": "2025-11-27T04:03:19.708401-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1148397, - "rtt_ms": 1.148397, + "operation": "add_vertex", + "rtt_ns": 1591291, + "rtt_ms": 1.591291, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:38.127947908Z" + "vertex_from": "249", + "timestamp": "2025-11-27T04:03:19.708438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307627, - "rtt_ms": 1.307627, + "rtt_ns": 1285250, + "rtt_ms": 1.28525, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.128283607Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.708521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362486, - "rtt_ms": 1.362486, + "rtt_ns": 1379584, + "rtt_ms": 1.379584, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "249", - "timestamp": "2025-11-27T01:23:38.128387316Z" + "vertex_to": "234", + "timestamp": "2025-11-27T04:03:19.708633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388276, - "rtt_ms": 1.388276, + "rtt_ns": 1310209, + "rtt_ms": 1.310209, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:38.128417006Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:19.708855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402066, - "rtt_ms": 1.402066, + "rtt_ns": 1317459, + "rtt_ms": 1.317459, "checkpoint": 0, "vertex_from": "65", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.128458216Z" + "timestamp": "2025-11-27T04:03:19.708867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331986, - "rtt_ms": 1.331986, + "rtt_ns": 1462041, + "rtt_ms": 1.462041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:38.128481156Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:19.708911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639486, - "rtt_ms": 1.639486, + "rtt_ns": 1682041, + "rtt_ms": 1.682041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:38.128590556Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.709218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789455, - "rtt_ms": 1.789455, + "rtt_ns": 1754334, + "rtt_ms": 1.754334, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "234", - "timestamp": "2025-11-27T01:23:38.128905145Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.709281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880075, - "rtt_ms": 1.880075, + "rtt_ns": 1430000, + "rtt_ms": 1.43, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:38.128921605Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:19.709574-08:00" }, { "operation": "add_edge", - "rtt_ns": 946217, - "rtt_ms": 0.946217, + "rtt_ns": 1154459, + "rtt_ms": 1.154459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:38.129231534Z" + "vertex_to": "249", + "timestamp": "2025-11-27T04:03:19.709593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284736, - "rtt_ms": 1.284736, + "rtt_ns": 1456375, + "rtt_ms": 1.456375, "checkpoint": 0, "vertex_from": "65", "vertex_to": "526", - "timestamp": "2025-11-27T01:23:38.129232974Z" + "timestamp": "2025-11-27T04:03:19.709858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292166, - "rtt_ms": 1.292166, + "rtt_ns": 1351041, + "rtt_ms": 1.351041, "checkpoint": 0, "vertex_from": "65", "vertex_to": "112", - "timestamp": "2025-11-27T01:23:38.129241084Z" + "timestamp": "2025-11-27T04:03:19.709874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438506, - "rtt_ms": 1.438506, + "rtt_ns": 1242708, + "rtt_ms": 1.242708, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.129827312Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.710155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512246, - "rtt_ms": 1.512246, + "rtt_ns": 1538416, + "rtt_ms": 1.538416, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.129930592Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:19.710172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462346, - "rtt_ms": 1.462346, + "rtt_ns": 1454625, + "rtt_ms": 1.454625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:38.129945572Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.710311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385806, - "rtt_ms": 1.385806, + "rtt_ns": 1575250, + "rtt_ms": 1.57525, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:38.129978212Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.710444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087957, - "rtt_ms": 1.087957, + "rtt_ns": 1496000, + "rtt_ms": 1.496, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.129994042Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:03:19.710716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595555, - "rtt_ms": 1.595555, + "rtt_ns": 1550542, + "rtt_ms": 1.550542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.130054721Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:19.710833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407326, - "rtt_ms": 1.407326, + "rtt_ns": 1592208, + "rtt_ms": 1.592208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.130330711Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.711168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155366, - "rtt_ms": 1.155366, + "rtt_ns": 1606042, + "rtt_ms": 1.606042, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.13039785Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.7112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876684, - "rtt_ms": 1.876684, + "rtt_ns": 1547167, + "rtt_ms": 1.547167, "checkpoint": 0, "vertex_from": "65", "vertex_to": "165", - "timestamp": "2025-11-27T01:23:38.131111178Z" + "timestamp": "2025-11-27T04:03:19.711422-08:00" }, { "operation": "add_edge", - "rtt_ns": 2610012, - "rtt_ms": 2.610012, + "rtt_ns": 1581292, + "rtt_ms": 1.581292, "checkpoint": 0, "vertex_from": "65", "vertex_to": "833", - "timestamp": "2025-11-27T01:23:38.131843136Z" + "timestamp": "2025-11-27T04:03:19.711441-08:00" }, { "operation": "add_edge", - "rtt_ns": 2015534, - "rtt_ms": 2.015534, + "rtt_ns": 1354834, + "rtt_ms": 1.354834, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.131962576Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:19.711667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088003, - "rtt_ms": 2.088003, + "rtt_ns": 1526250, + "rtt_ms": 1.52625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.132020025Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.711682-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077063, - "rtt_ms": 2.077063, + "rtt_ns": 1616583, + "rtt_ms": 1.616583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:38.132056575Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:19.71179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277793, - "rtt_ms": 2.277793, + "rtt_ns": 1179125, + "rtt_ms": 1.179125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:38.132106895Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.712013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081804, - "rtt_ms": 2.081804, + "rtt_ns": 1715959, + "rtt_ms": 1.715959, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.132137965Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.712163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175044, - "rtt_ms": 2.175044, + "rtt_ns": 1640000, + "rtt_ms": 1.64, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.132574174Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:19.712357-08:00" }, { "operation": "add_edge", - "rtt_ns": 2672762, - "rtt_ms": 2.672762, + "rtt_ns": 1137417, + "rtt_ms": 1.137417, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.132667734Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.712579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588485, - "rtt_ms": 1.588485, + "rtt_ns": 1395917, + "rtt_ms": 1.395917, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.132700983Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:19.712597-08:00" }, { "operation": "add_edge", - "rtt_ns": 874027, - "rtt_ms": 0.874027, + "rtt_ns": 1681291, + "rtt_ms": 1.681291, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:38.132718363Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.712851-08:00" }, { "operation": "add_edge", - "rtt_ns": 2650542, - "rtt_ms": 2.650542, + "rtt_ns": 1485666, + "rtt_ms": 1.485666, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:38.132982993Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.712909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556445, - "rtt_ms": 1.556445, + "rtt_ns": 1352625, + "rtt_ms": 1.352625, "checkpoint": 0, "vertex_from": "65", "vertex_to": "291", - "timestamp": "2025-11-27T01:23:38.133520561Z" + "timestamp": "2025-11-27T04:03:19.713035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054626, - "rtt_ms": 1.054626, + "rtt_ns": 1353375, + "rtt_ms": 1.353375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:38.1337236Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.713145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711995, - "rtt_ms": 1.711995, + "rtt_ns": 1519583, + "rtt_ms": 1.519583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.13377115Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:19.713188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631405, - "rtt_ms": 1.631405, + "rtt_ns": 1295792, + "rtt_ms": 1.295792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.13377162Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.71331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754125, - "rtt_ms": 1.754125, + "rtt_ns": 1215084, + "rtt_ms": 1.215084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:38.13377515Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.713574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098967, - "rtt_ms": 1.098967, + "rtt_ns": 1594417, + "rtt_ms": 1.594417, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:38.13380328Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:19.713775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243516, - "rtt_ms": 1.243516, + "rtt_ns": 1430250, + "rtt_ms": 1.43025, "checkpoint": 0, "vertex_from": "65", "vertex_to": "568", - "timestamp": "2025-11-27T01:23:38.13381935Z" + "timestamp": "2025-11-27T04:03:19.71401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743905, - "rtt_ms": 1.743905, + "rtt_ns": 1479958, + "rtt_ms": 1.479958, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:38.13385252Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.714078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282687, - "rtt_ms": 1.282687, + "rtt_ns": 1445750, + "rtt_ms": 1.44575, "checkpoint": 0, "vertex_from": "65", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:38.13400222Z" + "timestamp": "2025-11-27T04:03:19.714356-08:00" }, { "operation": "add_edge", - "rtt_ns": 887318, - "rtt_ms": 0.887318, + "rtt_ns": 1518458, + "rtt_ms": 1.518458, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.134612658Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:19.714371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152967, - "rtt_ms": 1.152967, + "rtt_ns": 1359292, + "rtt_ms": 1.359292, "checkpoint": 0, "vertex_from": "65", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.134675338Z" + "timestamp": "2025-11-27T04:03:19.714506-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1330709, + "rtt_ms": 1.330709, + "checkpoint": 0, + "vertex_from": "65", + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.71452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734754, - "rtt_ms": 1.734754, + "rtt_ns": 1499083, + "rtt_ms": 1.499083, "checkpoint": 0, "vertex_from": "65", "vertex_to": "147", - "timestamp": "2025-11-27T01:23:38.134719397Z" + "timestamp": "2025-11-27T04:03:19.714536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636065, - "rtt_ms": 1.636065, + "rtt_ns": 1370541, + "rtt_ms": 1.370541, "checkpoint": 0, "vertex_from": "65", "vertex_to": "209", - "timestamp": "2025-11-27T01:23:38.135408805Z" + "timestamp": "2025-11-27T04:03:19.714682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672385, - "rtt_ms": 1.672385, + "rtt_ns": 1515459, + "rtt_ms": 1.515459, "checkpoint": 0, "vertex_from": "65", "vertex_to": "76", - "timestamp": "2025-11-27T01:23:38.135445575Z" + "timestamp": "2025-11-27T04:03:19.71509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669995, - "rtt_ms": 1.669995, + "rtt_ns": 1428916, + "rtt_ms": 1.428916, "checkpoint": 0, "vertex_from": "65", "vertex_to": "856", - "timestamp": "2025-11-27T01:23:38.135446895Z" + "timestamp": "2025-11-27T04:03:19.715207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642755, - "rtt_ms": 1.642755, + "rtt_ns": 1488000, + "rtt_ms": 1.488, "checkpoint": 0, "vertex_from": "65", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:38.135463475Z" + "timestamp": "2025-11-27T04:03:19.715567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668825, - "rtt_ms": 1.668825, + "rtt_ns": 1607166, + "rtt_ms": 1.607166, "checkpoint": 0, "vertex_from": "65", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:38.135473325Z" + "timestamp": "2025-11-27T04:03:19.715619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657875, - "rtt_ms": 1.657875, + "rtt_ns": 1266292, + "rtt_ms": 1.266292, "checkpoint": 0, "vertex_from": "65", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:38.135511365Z" + "timestamp": "2025-11-27T04:03:19.715623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706784, - "rtt_ms": 1.706784, + "rtt_ns": 1422709, + "rtt_ms": 1.422709, "checkpoint": 0, "vertex_from": "65", "vertex_to": "94", - "timestamp": "2025-11-27T01:23:38.135710534Z" + "timestamp": "2025-11-27T04:03:19.715795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229706, - "rtt_ms": 1.229706, + "rtt_ns": 1346458, + "rtt_ms": 1.346458, "checkpoint": 0, "vertex_from": "65", "vertex_to": "666", - "timestamp": "2025-11-27T01:23:38.135843974Z" + "timestamp": "2025-11-27T04:03:19.715853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351366, - "rtt_ms": 1.351366, + "rtt_ns": 1468875, + "rtt_ms": 1.468875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:38.136072103Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:03:19.716154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442705, - "rtt_ms": 1.442705, + "rtt_ns": 1681875, + "rtt_ms": 1.681875, "checkpoint": 0, "vertex_from": "65", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:38.136120763Z" + "timestamp": "2025-11-27T04:03:19.716203-08:00" }, { "operation": "add_edge", - "rtt_ns": 801788, - "rtt_ms": 0.801788, + "rtt_ns": 1719625, + "rtt_ms": 1.719625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "718", - "timestamp": "2025-11-27T01:23:38.136211823Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:19.716257-08:00" }, { "operation": "add_edge", - "rtt_ns": 867588, - "rtt_ms": 0.867588, + "rtt_ns": 1532083, + "rtt_ms": 1.532083, "checkpoint": 0, "vertex_from": "65", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:38.136315993Z" + "timestamp": "2025-11-27T04:03:19.716741-08:00" }, { "operation": "add_edge", - "rtt_ns": 952897, - "rtt_ms": 0.952897, + "rtt_ns": 1945708, + "rtt_ms": 1.945708, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:38.136418972Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:19.717037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073647, - "rtt_ms": 1.073647, + "rtt_ns": 1769541, + "rtt_ms": 1.769541, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:38.136520472Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:19.717389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106437, - "rtt_ms": 1.106437, + "rtt_ns": 1550292, + "rtt_ms": 1.550292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:38.136587402Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:19.717405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565606, - "rtt_ms": 1.565606, + "rtt_ns": 1907833, + "rtt_ms": 1.907833, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:38.137078191Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:19.717476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053537, - "rtt_ms": 1.053537, + "rtt_ns": 1961250, + "rtt_ms": 1.96125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:38.13717714Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.717758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365626, - "rtt_ms": 1.365626, + "rtt_ns": 1783834, + "rtt_ms": 1.783834, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:38.13721181Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:03:19.718042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187597, - "rtt_ms": 1.187597, + "rtt_ns": 1855542, + "rtt_ms": 1.855542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:38.13726146Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:19.718061-08:00" }, { "operation": "add_edge", - "rtt_ns": 946987, - "rtt_ms": 0.946987, + "rtt_ns": 2456208, + "rtt_ms": 2.456208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:38.13726421Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.718081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617626, - "rtt_ms": 1.617626, + "rtt_ns": 1412833, + "rtt_ms": 1.412833, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.13733102Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.718451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670375, - "rtt_ms": 1.670375, + "rtt_ns": 1121333, + "rtt_ms": 1.121333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "110", - "timestamp": "2025-11-27T01:23:38.137883898Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:19.718599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538196, - "rtt_ms": 1.538196, + "rtt_ns": 2487208, + "rtt_ms": 2.487208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:38.137958308Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:19.718642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388396, - "rtt_ms": 1.388396, + "rtt_ns": 1236125, + "rtt_ms": 1.236125, "checkpoint": 0, "vertex_from": "65", "vertex_to": "135", - "timestamp": "2025-11-27T01:23:38.137977958Z" + "timestamp": "2025-11-27T04:03:19.718642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559976, - "rtt_ms": 1.559976, + "rtt_ns": 1919458, + "rtt_ms": 1.919458, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:38.138081988Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:19.718661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088947, - "rtt_ms": 1.088947, + "rtt_ns": 1327500, + "rtt_ms": 1.3275, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:38.138168828Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.718718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624326, - "rtt_ms": 1.624326, + "rtt_ns": 1389416, + "rtt_ms": 1.389416, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:38.138837486Z" + "vertex_to": "214", + "timestamp": "2025-11-27T04:03:19.719148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616596, - "rtt_ms": 1.616596, + "rtt_ns": 1094250, + "rtt_ms": 1.09425, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:38.138880026Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:19.719547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570316, - "rtt_ms": 1.570316, + "rtt_ns": 1591041, + "rtt_ms": 1.591041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:38.138902696Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:19.719653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114187, - "rtt_ms": 1.114187, + "rtt_ns": 1623917, + "rtt_ms": 1.623917, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "370", - "timestamp": "2025-11-27T01:23:38.138999375Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:19.719667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830235, - "rtt_ms": 1.830235, + "rtt_ns": 1648750, + "rtt_ms": 1.64875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "214", - "timestamp": "2025-11-27T01:23:38.139008615Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:19.719731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054117, - "rtt_ms": 1.054117, + "rtt_ns": 1163500, + "rtt_ms": 1.1635, "checkpoint": 0, "vertex_from": "65", "vertex_to": "73", - "timestamp": "2025-11-27T01:23:38.139033655Z" + "timestamp": "2025-11-27T04:03:19.719807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611056, - "rtt_ms": 1.611056, + "rtt_ns": 1562500, + "rtt_ms": 1.5625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:38.139570354Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:03:19.720164-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364203, - "rtt_ms": 2.364203, + "rtt_ns": 1448167, + "rtt_ms": 1.448167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:38.139630223Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:19.720167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626265, - "rtt_ms": 1.626265, + "rtt_ns": 1700333, + "rtt_ms": 1.700333, "checkpoint": 0, "vertex_from": "65", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:38.139709453Z" + "timestamp": "2025-11-27T04:03:19.720364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610925, - "rtt_ms": 1.610925, + "rtt_ns": 1888875, + "rtt_ms": 1.888875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:38.139780883Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:19.720532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453065, - "rtt_ms": 1.453065, + "rtt_ns": 1420083, + "rtt_ms": 1.420083, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:38.140334171Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:19.720571-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165963, - "rtt_ms": 2.165963, + "rtt_ns": 1216459, + "rtt_ms": 1.216459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:38.141004839Z" + "vertex_to": "888", + "timestamp": "2025-11-27T04:03:19.720948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984354, - "rtt_ms": 1.984354, + "rtt_ns": 1314542, + "rtt_ms": 1.314542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "69", - "timestamp": "2025-11-27T01:23:38.141018949Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:19.720968-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025804, - "rtt_ms": 2.025804, + "rtt_ns": 1309375, + "rtt_ms": 1.309375, "checkpoint": 0, "vertex_from": "65", "vertex_to": "539", - "timestamp": "2025-11-27T01:23:38.141026219Z" + "timestamp": "2025-11-27T04:03:19.720979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093464, - "rtt_ms": 2.093464, + "rtt_ns": 1628417, + "rtt_ms": 1.628417, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "888", - "timestamp": "2025-11-27T01:23:38.141103399Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.721177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532945, - "rtt_ms": 1.532945, + "rtt_ns": 1526666, + "rtt_ms": 1.526666, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:38.141104509Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:03:19.721335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570086, - "rtt_ms": 1.570086, + "rtt_ns": 1184417, + "rtt_ms": 1.184417, "checkpoint": 0, "vertex_from": "65", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:38.141200969Z" + "timestamp": "2025-11-27T04:03:19.721352-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392523, - "rtt_ms": 2.392523, + "rtt_ns": 1551500, + "rtt_ms": 1.5515, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:38.141296309Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:19.721717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714195, - "rtt_ms": 1.714195, + "rtt_ns": 1587583, + "rtt_ms": 1.587583, "checkpoint": 0, "vertex_from": "65", "vertex_to": "74", - "timestamp": "2025-11-27T01:23:38.141424798Z" + "timestamp": "2025-11-27T04:03:19.721952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799815, - "rtt_ms": 1.799815, + "rtt_ns": 1596625, + "rtt_ms": 1.596625, "checkpoint": 0, "vertex_from": "65", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:38.141582818Z" + "timestamp": "2025-11-27T04:03:19.722131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785345, - "rtt_ms": 1.785345, + "rtt_ns": 1578875, + "rtt_ms": 1.578875, "checkpoint": 0, "vertex_from": "65", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:38.142121466Z" + "timestamp": "2025-11-27T04:03:19.722151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701705, - "rtt_ms": 1.701705, - "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "187", - "timestamp": "2025-11-27T01:23:38.142711954Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1730955, - "rtt_ms": 1.730955, + "rtt_ns": 1522083, + "rtt_ms": 1.522083, "checkpoint": 0, "vertex_from": "65", "vertex_to": "150", - "timestamp": "2025-11-27T01:23:38.142751414Z" + "timestamp": "2025-11-27T04:03:19.722491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745645, - "rtt_ms": 1.745645, + "rtt_ns": 1318250, + "rtt_ms": 1.31825, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:38.142773144Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:19.722496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670005, - "rtt_ms": 1.670005, + "rtt_ns": 1770875, + "rtt_ms": 1.770875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "472", - "timestamp": "2025-11-27T01:23:38.142776094Z" + "vertex_to": "187", + "timestamp": "2025-11-27T04:03:19.72272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628215, - "rtt_ms": 1.628215, + "rtt_ns": 1769041, + "rtt_ms": 1.769041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:38.142830534Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.722749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743075, - "rtt_ms": 1.743075, + "rtt_ns": 1605375, + "rtt_ms": 1.605375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:38.142848654Z" + "vertex_to": "472", + "timestamp": "2025-11-27T04:03:19.722942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607775, - "rtt_ms": 1.607775, + "rtt_ns": 1384333, + "rtt_ms": 1.384333, "checkpoint": 0, "vertex_from": "65", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:38.142907524Z" + "timestamp": "2025-11-27T04:03:19.723103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554395, - "rtt_ms": 1.554395, + "rtt_ns": 1918125, + "rtt_ms": 1.918125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.142980833Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:19.723271-08:00" }, { "operation": "add_edge", - "rtt_ns": 884837, - "rtt_ms": 0.884837, + "rtt_ns": 1269209, + "rtt_ms": 1.269209, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "171", - "timestamp": "2025-11-27T01:23:38.143007583Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.723403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491825, - "rtt_ms": 1.491825, + "rtt_ns": 1487416, + "rtt_ms": 1.487416, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.143075953Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.72344-08:00" }, { "operation": "add_edge", - "rtt_ns": 793758, - "rtt_ms": 0.793758, + "rtt_ns": 1515500, + "rtt_ms": 1.5155, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:38.143568392Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:19.724007-08:00" }, { "operation": "add_edge", - "rtt_ns": 922687, - "rtt_ms": 0.922687, + "rtt_ns": 1277208, + "rtt_ms": 1.277208, "checkpoint": 0, "vertex_from": "65", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:38.143700111Z" + "timestamp": "2025-11-27T04:03:19.724028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104977, - "rtt_ms": 1.104977, + "rtt_ns": 1600750, + "rtt_ms": 1.60075, "checkpoint": 0, "vertex_from": "65", "vertex_to": "78", - "timestamp": "2025-11-27T01:23:38.143857841Z" + "timestamp": "2025-11-27T04:03:19.724098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174527, - "rtt_ms": 1.174527, + "rtt_ns": 1961459, + "rtt_ms": 1.961459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:38.143888111Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:03:19.724114-08:00" }, { "operation": "add_edge", - "rtt_ns": 934318, - "rtt_ms": 0.934318, + "rtt_ns": 1339459, + "rtt_ms": 1.339459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:38.143917111Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.724282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087007, - "rtt_ms": 1.087007, + "rtt_ns": 1664959, + "rtt_ms": 1.664959, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:38.143937011Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:19.724386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377286, - "rtt_ms": 1.377286, + "rtt_ns": 1319208, + "rtt_ms": 1.319208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:38.144454299Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:19.724424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623025, - "rtt_ms": 1.623025, + "rtt_ns": 1437000, + "rtt_ms": 1.437, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:38.144455259Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:19.72471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560475, - "rtt_ms": 1.560475, + "rtt_ns": 1323959, + "rtt_ms": 1.323959, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:38.144468949Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.724766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476786, - "rtt_ms": 1.476786, + "rtt_ns": 1629208, + "rtt_ms": 1.629208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.144485669Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.725034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202416, - "rtt_ms": 1.202416, + "rtt_ns": 1315500, + "rtt_ms": 1.3155, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:38.145140877Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:19.725345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358226, - "rtt_ms": 1.358226, + "rtt_ns": 1399041, + "rtt_ms": 1.399041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.145217237Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:19.725407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691635, - "rtt_ms": 1.691635, + "rtt_ns": 1444084, + "rtt_ms": 1.444084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:38.145261467Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.725542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589696, - "rtt_ms": 1.589696, + "rtt_ns": 1278542, + "rtt_ms": 1.278542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:38.145291167Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:19.725561-08:00" }, { "operation": "add_edge", - "rtt_ns": 845298, - "rtt_ms": 0.845298, + "rtt_ns": 1680292, + "rtt_ms": 1.680292, "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.145332397Z" + "vertex_from": "65", + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.725795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443306, - "rtt_ms": 1.443306, + "rtt_ns": 1160041, + "rtt_ms": 1.160041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:38.145361007Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:19.725871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478606, - "rtt_ms": 1.478606, + "rtt_ns": 1492917, + "rtt_ms": 1.492917, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:38.145935725Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:19.72588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693015, - "rtt_ms": 1.693015, + "rtt_ns": 1454792, + "rtt_ms": 1.454792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:38.146163274Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:19.72588-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316213, - "rtt_ms": 2.316213, + "rtt_ns": 1178333, + "rtt_ms": 1.178333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:38.146205574Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:19.725945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766025, - "rtt_ms": 1.766025, + "rtt_ns": 1463250, + "rtt_ms": 1.46325, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:38.146221694Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:19.726498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106727, - "rtt_ms": 1.106727, + "rtt_ns": 1473417, + "rtt_ms": 1.473417, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "976", - "timestamp": "2025-11-27T01:23:38.146249814Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.726819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562256, - "rtt_ms": 1.562256, + "rtt_ns": 1473333, + "rtt_ms": 1.473333, "checkpoint": 0, "vertex_from": "66", "vertex_to": "484", - "timestamp": "2025-11-27T01:23:38.146780663Z" + "timestamp": "2025-11-27T04:03:19.727016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592495, - "rtt_ms": 1.592495, + "rtt_ns": 1490875, + "rtt_ms": 1.490875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:38.146926012Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.727053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647455, - "rtt_ms": 1.647455, + "rtt_ns": 1713125, + "rtt_ms": 1.713125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:38.146939352Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:03:19.727121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795545, - "rtt_ms": 1.795545, + "rtt_ns": 1321125, + "rtt_ms": 1.321125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.147157552Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.727267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177457, - "rtt_ms": 1.177457, + "rtt_ns": 1408875, + "rtt_ms": 1.408875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.147428331Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.72729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636216, - "rtt_ms": 1.636216, + "rtt_ns": 1535083, + "rtt_ms": 1.535083, "checkpoint": 0, "vertex_from": "66", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:38.147572781Z" + "timestamp": "2025-11-27T04:03:19.727417-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315173, - "rtt_ms": 2.315173, + "rtt_ns": 1562250, + "rtt_ms": 1.56225, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.14757777Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:19.727434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360946, - "rtt_ms": 1.360946, + "rtt_ns": 1653875, + "rtt_ms": 1.653875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:38.14758369Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:19.727451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429696, - "rtt_ms": 1.429696, + "rtt_ns": 1467458, + "rtt_ms": 1.467458, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.14759401Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:19.727967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426586, - "rtt_ms": 1.426586, + "rtt_ns": 1188208, + "rtt_ms": 1.188208, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:38.14763328Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:19.728008-08:00" }, { "operation": "add_edge", - "rtt_ns": 837828, - "rtt_ms": 0.837828, + "rtt_ns": 1167042, + "rtt_ms": 1.167042, "checkpoint": 0, "vertex_from": "66", "vertex_to": "68", - "timestamp": "2025-11-27T01:23:38.14776573Z" + "timestamp": "2025-11-27T04:03:19.728289-08:00" }, { "operation": "add_edge", - "rtt_ns": 826537, - "rtt_ms": 0.826537, + "rtt_ns": 1288291, + "rtt_ms": 1.288291, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.147985149Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.728307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741555, - "rtt_ms": 1.741555, + "rtt_ns": 1557542, + "rtt_ms": 1.557542, "checkpoint": 0, "vertex_from": "66", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.148523088Z" + "timestamp": "2025-11-27T04:03:19.728612-08:00" }, { "operation": "add_edge", - "rtt_ns": 968838, - "rtt_ms": 0.968838, + "rtt_ns": 1360542, + "rtt_ms": 1.360542, + "checkpoint": 0, + "vertex_from": "66", + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.728628-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1193250, + "rtt_ms": 1.19325, "checkpoint": 0, "vertex_from": "66", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.148548738Z" + "timestamp": "2025-11-27T04:03:19.728645-08:00" }, { "operation": "add_edge", - "rtt_ns": 971378, - "rtt_ms": 0.971378, + "rtt_ns": 1575750, + "rtt_ms": 1.57575, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:38.148566878Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.728866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641886, - "rtt_ms": 1.641886, + "rtt_ns": 1681917, + "rtt_ms": 1.681917, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:38.148582508Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.7291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089067, - "rtt_ms": 1.089067, + "rtt_ns": 1686083, + "rtt_ms": 1.686083, "checkpoint": 0, "vertex_from": "66", "vertex_to": "736", - "timestamp": "2025-11-27T01:23:38.148663317Z" + "timestamp": "2025-11-27T04:03:19.729121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122197, - "rtt_ms": 1.122197, + "rtt_ns": 1374791, + "rtt_ms": 1.374791, "checkpoint": 0, "vertex_from": "66", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:38.148707047Z" + "timestamp": "2025-11-27T04:03:19.729344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116967, - "rtt_ms": 1.116967, + "rtt_ns": 1373542, + "rtt_ms": 1.373542, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.148751857Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.729383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371046, - "rtt_ms": 1.371046, + "rtt_ns": 1344500, + "rtt_ms": 1.3445, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.148800187Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.729634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135867, - "rtt_ms": 1.135867, + "rtt_ns": 1433333, + "rtt_ms": 1.433333, "checkpoint": 0, "vertex_from": "66", "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.148902567Z" + "timestamp": "2025-11-27T04:03:19.729741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047457, - "rtt_ms": 1.047457, + "rtt_ns": 1177416, + "rtt_ms": 1.177416, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:38.149033776Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:03:19.729824-08:00" }, { "operation": "add_vertex", - "rtt_ns": 990027, - "rtt_ms": 0.990027, + "rtt_ns": 1235834, + "rtt_ms": 1.235834, "checkpoint": 0, "vertex_from": "571", - "timestamp": "2025-11-27T01:23:38.149515465Z" + "timestamp": "2025-11-27T04:03:19.729865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297666, - "rtt_ms": 1.297666, + "rtt_ns": 1287625, + "rtt_ms": 1.287625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:38.149881394Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1452445, - "rtt_ms": 1.452445, - "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:38.150003053Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:19.7299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348286, - "rtt_ms": 1.348286, + "rtt_ns": 1300042, + "rtt_ms": 1.300042, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.150101363Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:19.730422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520556, - "rtt_ms": 1.520556, + "rtt_ns": 1408709, + "rtt_ms": 1.408709, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:38.150228843Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:19.730511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610905, - "rtt_ms": 1.610905, + "rtt_ns": 1818417, + "rtt_ms": 1.818417, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:38.150275632Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.730687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505675, - "rtt_ms": 1.505675, + "rtt_ns": 1069208, + "rtt_ms": 1.069208, "checkpoint": 0, "vertex_from": "66", "vertex_to": "785", - "timestamp": "2025-11-27T01:23:38.150307762Z" + "timestamp": "2025-11-27T04:03:19.730705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880584, - "rtt_ms": 1.880584, + "rtt_ns": 1468875, + "rtt_ms": 1.468875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.150449032Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.730853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463006, - "rtt_ms": 1.463006, + "rtt_ns": 1682500, + "rtt_ms": 1.6825, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:38.150498052Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.731028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618015, - "rtt_ms": 1.618015, + "rtt_ns": 1424042, + "rtt_ms": 1.424042, "checkpoint": 0, "vertex_from": "66", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.150522062Z" + "timestamp": "2025-11-27T04:03:19.731166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052657, - "rtt_ms": 1.052657, + "rtt_ns": 1423292, + "rtt_ms": 1.423292, "checkpoint": 0, "vertex_from": "66", "vertex_to": "571", - "timestamp": "2025-11-27T01:23:38.150568512Z" + "timestamp": "2025-11-27T04:03:19.731289-08:00" }, { "operation": "add_edge", - "rtt_ns": 789907, - "rtt_ms": 0.789907, + "rtt_ns": 1371208, + "rtt_ms": 1.371208, "checkpoint": 0, "vertex_from": "66", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:38.150672671Z" + "timestamp": "2025-11-27T04:03:19.731296-08:00" }, { "operation": "add_edge", - "rtt_ns": 713128, - "rtt_ms": 0.713128, + "rtt_ns": 1530750, + "rtt_ms": 1.53075, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:38.150717391Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:19.731357-08:00" }, { "operation": "add_edge", - "rtt_ns": 636898, - "rtt_ms": 0.636898, + "rtt_ns": 976167, + "rtt_ms": 0.976167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.150739511Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.731682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466246, - "rtt_ms": 1.466246, + "rtt_ns": 1209708, + "rtt_ms": 1.209708, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.151743428Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.731723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487566, - "rtt_ms": 1.487566, + "rtt_ns": 1226292, + "rtt_ms": 1.226292, "checkpoint": 0, "vertex_from": "66", "vertex_to": "152", - "timestamp": "2025-11-27T01:23:38.151796518Z" + "timestamp": "2025-11-27T04:03:19.732081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619645, - "rtt_ms": 1.619645, + "rtt_ns": 1677167, + "rtt_ms": 1.677167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.151850038Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.7321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570825, - "rtt_ms": 1.570825, + "rtt_ns": 1563125, + "rtt_ms": 1.563125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.152021647Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.732251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710995, - "rtt_ms": 1.710995, + "rtt_ns": 1553750, + "rtt_ms": 1.55375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:38.152235487Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.732583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756155, - "rtt_ms": 1.756155, + "rtt_ns": 1485459, + "rtt_ms": 1.485459, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.152255637Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.732784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347483, - "rtt_ms": 2.347483, + "rtt_ns": 1466292, + "rtt_ms": 1.466292, "checkpoint": 0, "vertex_from": "66", "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.153021254Z" + "timestamp": "2025-11-27T04:03:19.732825-08:00" }, { "operation": "add_edge", - "rtt_ns": 2559472, - "rtt_ms": 2.559472, + "rtt_ns": 1753709, + "rtt_ms": 1.753709, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:38.153128954Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.732921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441613, - "rtt_ms": 2.441613, + "rtt_ns": 1682417, + "rtt_ms": 1.682417, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.153160014Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:19.732981-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539162, - "rtt_ms": 2.539162, + "rtt_ns": 1424375, + "rtt_ms": 1.424375, "checkpoint": 0, "vertex_from": "66", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:38.153279623Z" + "timestamp": "2025-11-27T04:03:19.733148-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035944, - "rtt_ms": 2.035944, + "rtt_ns": 1481708, + "rtt_ms": 1.481708, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.153834012Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:19.733165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618405, - "rtt_ms": 1.618405, + "rtt_ns": 1241625, + "rtt_ms": 1.241625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "965", - "timestamp": "2025-11-27T01:23:38.153875592Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:19.733493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023934, - "rtt_ms": 2.023934, + "rtt_ns": 1520083, + "rtt_ms": 1.520083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:38.153876372Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.733621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652255, - "rtt_ms": 1.652255, + "rtt_ns": 1685375, + "rtt_ms": 1.685375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "244", - "timestamp": "2025-11-27T01:23:38.153889922Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:03:19.733767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880835, - "rtt_ms": 1.880835, + "rtt_ns": 1384458, + "rtt_ms": 1.384458, "checkpoint": 0, "vertex_from": "66", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:38.153903642Z" + "timestamp": "2025-11-27T04:03:19.733968-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173884, - "rtt_ms": 2.173884, + "rtt_ns": 1369000, + "rtt_ms": 1.369, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "685", - "timestamp": "2025-11-27T01:23:38.153923702Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:03:19.734195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269356, - "rtt_ms": 1.269356, + "rtt_ns": 1327833, + "rtt_ms": 1.327833, "checkpoint": 0, "vertex_from": "66", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:38.15439984Z" + "timestamp": "2025-11-27T04:03:19.73431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682505, - "rtt_ms": 1.682505, + "rtt_ns": 1505791, + "rtt_ms": 1.505791, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:38.154843749Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.734429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914035, - "rtt_ms": 1.914035, + "rtt_ns": 1761500, + "rtt_ms": 1.7615, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.154938389Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:03:19.734546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094776, - "rtt_ms": 1.094776, + "rtt_ns": 1589042, + "rtt_ms": 1.589042, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:38.154972878Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:19.734738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240206, - "rtt_ms": 1.240206, + "rtt_ns": 1324625, + "rtt_ms": 1.324625, "checkpoint": 0, "vertex_from": "66", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.155075358Z" + "timestamp": "2025-11-27T04:03:19.734819-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1948915, - "rtt_ms": 1.948915, + "rtt_ns": 1710667, + "rtt_ms": 1.710667, "checkpoint": 0, "vertex_from": "475", - "timestamp": "2025-11-27T01:23:38.155234478Z" + "timestamp": "2025-11-27T04:03:19.734878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327266, - "rtt_ms": 1.327266, + "rtt_ns": 1174666, + "rtt_ms": 1.174666, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.155253178Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.734943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376296, - "rtt_ms": 1.376296, + "rtt_ns": 1447875, + "rtt_ms": 1.447875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.155253188Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:19.735416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486145, - "rtt_ms": 1.486145, + "rtt_ns": 1536459, + "rtt_ms": 1.536459, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:38.155377987Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:19.735848-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010274, - "rtt_ms": 2.010274, + "rtt_ns": 2241958, + "rtt_ms": 2.241958, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.155915976Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.735866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747485, - "rtt_ms": 1.747485, + "rtt_ns": 1721584, + "rtt_ms": 1.721584, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:38.156149525Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.736269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479885, - "rtt_ms": 1.479885, + "rtt_ns": 1599125, + "rtt_ms": 1.599125, "checkpoint": 0, "vertex_from": "66", "vertex_to": "356", - "timestamp": "2025-11-27T01:23:38.156419484Z" + "timestamp": "2025-11-27T04:03:19.73634-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1916500, + "rtt_ms": 1.9165, + "checkpoint": 0, + "vertex_from": "66", + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.736346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545786, - "rtt_ms": 1.545786, + "rtt_ns": 1679750, + "rtt_ms": 1.67975, "checkpoint": 0, "vertex_from": "66", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.156520124Z" + "timestamp": "2025-11-27T04:03:19.736499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778175, - "rtt_ms": 1.778175, + "rtt_ns": 1691417, + "rtt_ms": 1.691417, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:38.156624024Z" + "vertex_to": "475", + "timestamp": "2025-11-27T04:03:19.73657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554296, - "rtt_ms": 1.554296, + "rtt_ns": 2382416, + "rtt_ms": 2.382416, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:38.156630824Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.736579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399296, - "rtt_ms": 1.399296, + "rtt_ns": 1788333, + "rtt_ms": 1.788333, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:38.156655044Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:19.736732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443505, - "rtt_ms": 1.443505, + "rtt_ns": 1881375, + "rtt_ms": 1.881375, "checkpoint": 0, "vertex_from": "66", "vertex_to": "904", - "timestamp": "2025-11-27T01:23:38.156698563Z" + "timestamp": "2025-11-27T04:03:19.737299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324596, - "rtt_ms": 1.324596, + "rtt_ns": 1467167, + "rtt_ms": 1.467167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:38.156703553Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:19.737316-08:00" }, { "operation": "add_edge", - "rtt_ns": 812187, - "rtt_ms": 0.812187, + "rtt_ns": 1465209, + "rtt_ms": 1.465209, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:38.156729403Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:19.737332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104684, - "rtt_ms": 2.104684, + "rtt_ns": 1434667, + "rtt_ms": 1.434667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "475", - "timestamp": "2025-11-27T01:23:38.157339592Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:19.737705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301656, - "rtt_ms": 1.301656, + "rtt_ns": 1143583, + "rtt_ms": 1.143583, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:38.157452661Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.737724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068567, - "rtt_ms": 1.068567, + "rtt_ns": 1169125, + "rtt_ms": 1.169125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.157489271Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:19.73774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208767, - "rtt_ms": 1.208767, + "rtt_ns": 1256459, + "rtt_ms": 1.256459, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.15791403Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.737759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824795, - "rtt_ms": 1.824795, + "rtt_ns": 1454167, + "rtt_ms": 1.454167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:38.158450239Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:19.737795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064117, - "rtt_ms": 1.064117, + "rtt_ns": 1540083, + "rtt_ms": 1.540083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.158518138Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.737887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205676, - "rtt_ms": 1.205676, + "rtt_ns": 1269792, + "rtt_ms": 1.269792, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:38.158548198Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:19.738003-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033334, - "rtt_ms": 2.033334, + "rtt_ns": 1223375, + "rtt_ms": 1.223375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:38.158554548Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.738558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085507, - "rtt_ms": 1.085507, + "rtt_ns": 1448000, + "rtt_ms": 1.448, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:38.158576008Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.738747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848175, - "rtt_ms": 1.848175, + "rtt_ns": 1488250, + "rtt_ms": 1.48825, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.158582688Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.738806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889215, - "rtt_ms": 1.889215, + "rtt_ns": 1376541, + "rtt_ms": 1.376541, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:38.158590288Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.739101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959974, - "rtt_ms": 1.959974, + "rtt_ns": 1377083, + "rtt_ms": 1.377083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:38.158594578Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:19.739118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938004, - "rtt_ms": 1.938004, + "rtt_ns": 1422584, + "rtt_ms": 1.422584, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:38.158595038Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:19.739129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624865, - "rtt_ms": 1.624865, + "rtt_ns": 1573166, + "rtt_ms": 1.573166, "checkpoint": 0, "vertex_from": "66", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.159540735Z" + "timestamp": "2025-11-27T04:03:19.739332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109806, - "rtt_ms": 1.109806, + "rtt_ns": 1552958, + "rtt_ms": 1.552958, "checkpoint": 0, "vertex_from": "66", "vertex_to": "620", - "timestamp": "2025-11-27T01:23:38.159561725Z" + "timestamp": "2025-11-27T04:03:19.73935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022797, - "rtt_ms": 1.022797, + "rtt_ns": 1400708, + "rtt_ms": 1.400708, "checkpoint": 0, "vertex_from": "66", "vertex_to": "201", - "timestamp": "2025-11-27T01:23:38.159572955Z" + "timestamp": "2025-11-27T04:03:19.739405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408446, - "rtt_ms": 1.408446, + "rtt_ns": 1581083, + "rtt_ms": 1.581083, "checkpoint": 0, "vertex_from": "66", "vertex_to": "848", - "timestamp": "2025-11-27T01:23:38.159927744Z" + "timestamp": "2025-11-27T04:03:19.73947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442256, - "rtt_ms": 1.442256, + "rtt_ns": 1402042, + "rtt_ms": 1.402042, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:38.160035274Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.73996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501966, - "rtt_ms": 1.501966, + "rtt_ns": 1205458, + "rtt_ms": 1.205458, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:38.160058074Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:03:19.740012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495016, - "rtt_ms": 1.495016, + "rtt_ns": 1682792, + "rtt_ms": 1.682792, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "171", - "timestamp": "2025-11-27T01:23:38.160079044Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:19.740431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566436, - "rtt_ms": 1.566436, + "rtt_ns": 1546917, + "rtt_ms": 1.546917, "checkpoint": 0, "vertex_from": "66", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.160163674Z" + "timestamp": "2025-11-27T04:03:19.740666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631586, - "rtt_ms": 1.631586, + "rtt_ns": 1666875, + "rtt_ms": 1.666875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:38.160209824Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:19.740798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663575, - "rtt_ms": 1.663575, + "rtt_ns": 1483583, + "rtt_ms": 1.483583, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:38.160261853Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.740817-08:00" }, { "operation": "add_edge", - "rtt_ns": 2673992, - "rtt_ms": 2.673992, + "rtt_ns": 1412375, + "rtt_ms": 1.412375, "checkpoint": 0, "vertex_from": "66", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.162251877Z" + "timestamp": "2025-11-27T04:03:19.740818-08:00" }, { "operation": "add_edge", - "rtt_ns": 2762032, - "rtt_ms": 2.762032, + "rtt_ns": 1483292, + "rtt_ms": 1.483292, "checkpoint": 0, "vertex_from": "66", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:38.162326077Z" + "timestamp": "2025-11-27T04:03:19.740834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2818232, - "rtt_ms": 2.818232, + "rtt_ns": 1581458, + "rtt_ms": 1.581458, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.162365547Z" + "vertex_to": "183", + "timestamp": "2025-11-27T04:03:19.741052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2440913, - "rtt_ms": 2.440913, + "rtt_ns": 1967042, + "rtt_ms": 1.967042, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "183", - "timestamp": "2025-11-27T01:23:38.162370337Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:19.741069-08:00" }, { "operation": "add_edge", - "rtt_ns": 2324933, - "rtt_ms": 2.324933, + "rtt_ns": 1071334, + "rtt_ms": 1.071334, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:38.162406117Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:19.741085-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491533, - "rtt_ms": 2.491533, + "rtt_ns": 1578000, + "rtt_ms": 1.578, "checkpoint": 0, "vertex_from": "66", "vertex_to": "308", - "timestamp": "2025-11-27T01:23:38.162529047Z" + "timestamp": "2025-11-27T04:03:19.741541-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527692, - "rtt_ms": 2.527692, + "rtt_ns": 1144167, + "rtt_ms": 1.144167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:38.162587416Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:03:19.741962-08:00" }, { "operation": "add_edge", - "rtt_ns": 2868171, - "rtt_ms": 2.868171, + "rtt_ns": 1561458, + "rtt_ms": 1.561458, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:38.163079635Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:19.741994-08:00" }, { "operation": "add_edge", - "rtt_ns": 880798, - "rtt_ms": 0.880798, + "rtt_ns": 1432292, + "rtt_ms": 1.432292, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.163209825Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:19.742251-08:00" }, { "operation": "add_edge", - "rtt_ns": 3089820, - "rtt_ms": 3.08982, + "rtt_ns": 1490917, + "rtt_ms": 1.490917, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.163256994Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:19.74229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022437, - "rtt_ms": 1.022437, + "rtt_ns": 1474208, + "rtt_ms": 1.474208, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:38.163275884Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.742309-08:00" }, { "operation": "add_edge", - "rtt_ns": 3053141, - "rtt_ms": 3.053141, + "rtt_ns": 1340000, + "rtt_ms": 1.34, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "121", - "timestamp": "2025-11-27T01:23:38.163316794Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:19.74241-08:00" }, { "operation": "add_edge", - "rtt_ns": 964747, - "rtt_ms": 0.964747, + "rtt_ns": 1356417, + "rtt_ms": 1.356417, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:38.163336364Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:19.742442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010387, - "rtt_ms": 1.010387, + "rtt_ns": 1411667, + "rtt_ms": 1.411667, "checkpoint": 0, "vertex_from": "66", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.163376894Z" + "timestamp": "2025-11-27T04:03:19.742464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636435, - "rtt_ms": 1.636435, + "rtt_ns": 1802917, + "rtt_ms": 1.802917, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:38.164044122Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.74247-08:00" }, { "operation": "add_edge", - "rtt_ns": 911087, - "rtt_ms": 0.911087, + "rtt_ns": 1173208, + "rtt_ms": 1.173208, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:38.164122292Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:19.74317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551476, - "rtt_ms": 1.551476, + "rtt_ns": 1507416, + "rtt_ms": 1.507416, "checkpoint": 0, "vertex_from": "66", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.164139712Z" + "timestamp": "2025-11-27T04:03:19.743471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621965, - "rtt_ms": 1.621965, + "rtt_ns": 1943542, + "rtt_ms": 1.943542, "checkpoint": 0, "vertex_from": "66", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:38.164152222Z" + "timestamp": "2025-11-27T04:03:19.743486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404536, - "rtt_ms": 1.404536, + "rtt_ns": 1097583, + "rtt_ms": 1.097583, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:38.164485301Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:19.743508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362536, - "rtt_ms": 1.362536, + "rtt_ns": 1435625, + "rtt_ms": 1.435625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:38.16468016Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:19.743688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336276, - "rtt_ms": 1.336276, + "rtt_ns": 1520083, + "rtt_ms": 1.520083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:38.16471443Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:19.743811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781225, - "rtt_ms": 1.781225, + "rtt_ns": 1519875, + "rtt_ms": 1.519875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:38.165119779Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:19.743829-08:00" }, { "operation": "add_edge", - "rtt_ns": 849378, - "rtt_ms": 0.849378, + "rtt_ns": 1375875, + "rtt_ms": 1.375875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:38.165335729Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:19.743846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138634, - "rtt_ms": 2.138634, + "rtt_ns": 1447250, + "rtt_ms": 1.44725, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:38.165396948Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:19.743897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268146, - "rtt_ms": 1.268146, + "rtt_ns": 1514167, + "rtt_ms": 1.514167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:38.165421488Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:19.743979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299276, - "rtt_ms": 1.299276, + "rtt_ns": 1671708, + "rtt_ms": 1.671708, "checkpoint": 0, "vertex_from": "66", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:38.165422678Z" + "timestamp": "2025-11-27T04:03:19.744843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386456, - "rtt_ms": 1.386456, + "rtt_ns": 1514750, + "rtt_ms": 1.51475, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:38.165432138Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.745024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308826, - "rtt_ms": 1.308826, + "rtt_ns": 1390417, + "rtt_ms": 1.390417, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "543", - "timestamp": "2025-11-27T01:23:38.165450168Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:19.745202-08:00" }, { "operation": "add_edge", - "rtt_ns": 2329124, - "rtt_ms": 2.329124, + "rtt_ns": 1531375, + "rtt_ms": 1.531375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:38.165606768Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:19.74522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219267, - "rtt_ms": 1.219267, + "rtt_ns": 1942500, + "rtt_ms": 1.9425, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:38.166340126Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:19.74543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654796, - "rtt_ms": 1.654796, + "rtt_ns": 1962292, + "rtt_ms": 1.962292, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:38.166370116Z" + "vertex_to": "543", + "timestamp": "2025-11-27T04:03:19.745435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823335, - "rtt_ms": 1.823335, + "rtt_ns": 1695958, + "rtt_ms": 1.695958, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:38.166504755Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:19.745676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207577, - "rtt_ms": 1.207577, + "rtt_ns": 2066167, + "rtt_ms": 2.066167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:38.166659965Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:19.745964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876585, - "rtt_ms": 1.876585, + "rtt_ns": 2264375, + "rtt_ms": 2.264375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:38.167299313Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:19.746111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900324, - "rtt_ms": 1.900324, + "rtt_ns": 2299125, + "rtt_ms": 2.299125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:38.167510562Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:03:19.746129-08:00" }, { "operation": "add_edge", - "rtt_ns": 2127504, - "rtt_ms": 2.127504, + "rtt_ns": 1553667, + "rtt_ms": 1.553667, "checkpoint": 0, "vertex_from": "66", "vertex_to": "898", - "timestamp": "2025-11-27T01:23:38.167551602Z" + "timestamp": "2025-11-27T04:03:19.746397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188514, - "rtt_ms": 2.188514, + "rtt_ns": 1212416, + "rtt_ms": 1.212416, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:38.167586692Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.746415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2263573, - "rtt_ms": 2.263573, + "rtt_ns": 752917, + "rtt_ms": 0.752917, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:38.167600152Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:19.74643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185494, - "rtt_ms": 2.185494, + "rtt_ns": 1105750, + "rtt_ms": 1.10575, + "checkpoint": 0, + "vertex_from": "66", + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:19.746542-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1533708, + "rtt_ms": 1.533708, "checkpoint": 0, "vertex_from": "66", "vertex_to": "326", - "timestamp": "2025-11-27T01:23:38.167619112Z" + "timestamp": "2025-11-27T04:03:19.746559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247396, - "rtt_ms": 1.247396, + "rtt_ns": 1352334, + "rtt_ms": 1.352334, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:38.167619652Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:19.746574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305056, - "rtt_ms": 1.305056, + "rtt_ns": 1304875, + "rtt_ms": 1.304875, "checkpoint": 0, "vertex_from": "66", "vertex_to": "706", - "timestamp": "2025-11-27T01:23:38.167647762Z" + "timestamp": "2025-11-27T04:03:19.746736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144237, - "rtt_ms": 1.144237, + "rtt_ns": 903084, + "rtt_ms": 0.903084, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:38.167651322Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:19.747302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553475, - "rtt_ms": 1.553475, + "rtt_ns": 906334, + "rtt_ms": 0.906334, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:38.16821547Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:19.747337-08:00" }, { "operation": "add_edge", - "rtt_ns": 943747, - "rtt_ms": 0.943747, + "rtt_ns": 1331375, + "rtt_ms": 1.331375, "checkpoint": 0, "vertex_from": "66", "vertex_to": "209", - "timestamp": "2025-11-27T01:23:38.168246Z" + "timestamp": "2025-11-27T04:03:19.747444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192347, - "rtt_ms": 1.192347, + "rtt_ns": 1544459, + "rtt_ms": 1.544459, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:38.168704999Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:19.747509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837675, - "rtt_ms": 1.837675, + "rtt_ns": 1351750, + "rtt_ms": 1.35175, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "314", - "timestamp": "2025-11-27T01:23:38.169486647Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.747768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893705, - "rtt_ms": 1.893705, + "rtt_ns": 1470375, + "rtt_ms": 1.470375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:38.169497097Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.748209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295616, - "rtt_ms": 1.295616, + "rtt_ns": 2345167, + "rtt_ms": 2.345167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:38.169513186Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:19.748475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935204, - "rtt_ms": 1.935204, + "rtt_ns": 2659667, + "rtt_ms": 2.659667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.169523216Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.749219-08:00" }, { "operation": "add_edge", - "rtt_ns": 818897, - "rtt_ms": 0.818897, + "rtt_ns": 1799167, + "rtt_ms": 1.799167, "checkpoint": 0, "vertex_from": "66", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.169525526Z" + "timestamp": "2025-11-27T04:03:19.749244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988474, - "rtt_ms": 1.988474, + "rtt_ns": 2387375, + "rtt_ms": 2.387375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:38.169541576Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:03:19.749726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922754, - "rtt_ms": 1.922754, + "rtt_ns": 2234958, + "rtt_ms": 2.234958, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:38.169543206Z" + "vertex_to": "490", + "timestamp": "2025-11-27T04:03:19.749745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990304, - "rtt_ms": 1.990304, + "rtt_ns": 1992333, + "rtt_ms": 1.992333, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:38.169643246Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:19.749761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040394, - "rtt_ms": 2.040394, + "rtt_ns": 3201834, + "rtt_ms": 3.201834, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:38.169662386Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:03:19.749776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529826, - "rtt_ms": 1.529826, + "rtt_ns": 2487333, + "rtt_ms": 2.487333, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "333", - "timestamp": "2025-11-27T01:23:38.169776746Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:19.749792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2537713, - "rtt_ms": 2.537713, + "rtt_ns": 1596750, + "rtt_ms": 1.59675, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:38.172082089Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:03:19.749807-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579243, - "rtt_ms": 2.579243, + "rtt_ns": 3277209, + "rtt_ms": 3.277209, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:38.172122549Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:19.749821-08:00" }, { "operation": "add_edge", - "rtt_ns": 2486733, - "rtt_ms": 2.486733, + "rtt_ns": 1575875, + "rtt_ms": 1.575875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:38.172150439Z" + "vertex_to": "732", + "timestamp": "2025-11-27T04:03:19.750052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2666642, - "rtt_ms": 2.666642, + "rtt_ns": 2002667, + "rtt_ms": 2.002667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:38.172166009Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.751223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2694412, - "rtt_ms": 2.694412, + "rtt_ns": 1977458, + "rtt_ms": 1.977458, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "490", - "timestamp": "2025-11-27T01:23:38.172182659Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:19.751223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567092, - "rtt_ms": 2.567092, + "rtt_ns": 1600500, + "rtt_ms": 1.6005, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:38.172218168Z" + "vertex_to": "690", + "timestamp": "2025-11-27T04:03:19.751377-08:00" }, { "operation": "add_edge", - "rtt_ns": 3183911, - "rtt_ms": 3.183911, + "rtt_ns": 1650292, + "rtt_ms": 1.650292, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "684", - "timestamp": "2025-11-27T01:23:38.172699157Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:19.751397-08:00" }, { "operation": "add_edge", - "rtt_ns": 3202831, - "rtt_ms": 3.202831, + "rtt_ns": 1621833, + "rtt_ms": 1.621833, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.172729797Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:03:19.751414-08:00" }, { "operation": "add_edge", - "rtt_ns": 3225411, - "rtt_ms": 3.225411, + "rtt_ns": 1609750, + "rtt_ms": 1.60975, "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "732", - "timestamp": "2025-11-27T01:23:38.172751027Z" + "vertex_from": "67", + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:19.751431-08:00" }, { "operation": "add_edge", - "rtt_ns": 3248880, - "rtt_ms": 3.24888, + "rtt_ns": 1706708, + "rtt_ms": 1.706708, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "690", - "timestamp": "2025-11-27T01:23:38.173027416Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:19.751435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288437, - "rtt_ms": 1.288437, + "rtt_ns": 1447000, + "rtt_ms": 1.447, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.173507995Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1424156, - "rtt_ms": 1.424156, - "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "67", - "timestamp": "2025-11-27T01:23:38.173508295Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:19.7515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416975, - "rtt_ms": 1.416975, + "rtt_ns": 1762042, + "rtt_ms": 1.762042, "checkpoint": 0, "vertex_from": "67", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:38.173540484Z" + "timestamp": "2025-11-27T04:03:19.75157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446375, - "rtt_ms": 1.446375, + "rtt_ns": 1858708, + "rtt_ms": 1.858708, "checkpoint": 0, - "vertex_from": "67", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:38.173614844Z" + "vertex_from": "66", + "vertex_to": "794", + "timestamp": "2025-11-27T04:03:19.75162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508015, - "rtt_ms": 1.508015, + "rtt_ns": 1262625, + "rtt_ms": 1.262625, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:38.173659564Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.752489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480316, - "rtt_ms": 1.480316, + "rtt_ns": 1191042, + "rtt_ms": 1.191042, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.173665754Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.752589-08:00" }, { "operation": "add_edge", - "rtt_ns": 863558, - "rtt_ms": 0.863558, + "rtt_ns": 1230958, + "rtt_ms": 1.230958, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.174405672Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:19.75261-08:00" }, { "operation": "add_edge", - "rtt_ns": 924017, - "rtt_ms": 0.924017, + "rtt_ns": 1507167, + "rtt_ms": 1.507167, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.174433452Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.752733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734675, - "rtt_ms": 1.734675, + "rtt_ns": 1312959, + "rtt_ms": 1.312959, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:38.174435662Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.752749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756865, - "rtt_ms": 1.756865, + "rtt_ns": 1349709, + "rtt_ms": 1.349709, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.174487372Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.752765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743095, - "rtt_ms": 1.743095, + "rtt_ns": 1444041, + "rtt_ms": 1.444041, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.174494812Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.752877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042966, - "rtt_ms": 1.042966, + "rtt_ns": 1306791, + "rtt_ms": 1.306791, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.174552871Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.752878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540545, - "rtt_ms": 1.540545, + "rtt_ns": 1405459, + "rtt_ms": 1.405459, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.174571181Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.752906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473476, - "rtt_ms": 1.473476, + "rtt_ns": 1345208, + "rtt_ms": 1.345208, "checkpoint": 0, "vertex_from": "67", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.17508993Z" + "timestamp": "2025-11-27T04:03:19.752967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582765, - "rtt_ms": 1.582765, + "rtt_ns": 1358375, + "rtt_ms": 1.358375, "checkpoint": 0, "vertex_from": "67", "vertex_to": "594", - "timestamp": "2025-11-27T01:23:38.175243579Z" + "timestamp": "2025-11-27T04:03:19.75385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595195, - "rtt_ms": 1.595195, + "rtt_ns": 1275750, + "rtt_ms": 1.27575, "checkpoint": 0, "vertex_from": "67", "vertex_to": "100", - "timestamp": "2025-11-27T01:23:38.175262879Z" + "timestamp": "2025-11-27T04:03:19.753865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099647, - "rtt_ms": 1.099647, + "rtt_ns": 1280250, + "rtt_ms": 1.28025, "checkpoint": 0, "vertex_from": "67", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:38.175506729Z" + "timestamp": "2025-11-27T04:03:19.753891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384906, - "rtt_ms": 1.384906, + "rtt_ns": 1851750, + "rtt_ms": 1.85175, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "713", - "timestamp": "2025-11-27T01:23:38.175873928Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:03:19.754731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318206, - "rtt_ms": 1.318206, + "rtt_ns": 1841334, + "rtt_ms": 1.841334, "checkpoint": 0, "vertex_from": "67", "vertex_to": "946", - "timestamp": "2025-11-27T01:23:38.175891057Z" + "timestamp": "2025-11-27T04:03:19.754748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496475, - "rtt_ms": 1.496475, + "rtt_ns": 2046833, + "rtt_ms": 2.046833, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:38.175933427Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:19.75478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420456, - "rtt_ms": 1.420456, + "rtt_ns": 1830041, + "rtt_ms": 1.830041, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "70", - "timestamp": "2025-11-27T01:23:38.175975137Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:03:19.754798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522385, - "rtt_ms": 1.522385, + "rtt_ns": 2037250, + "rtt_ms": 2.03725, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:38.176018237Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:03:19.754802-08:00" }, { "operation": "add_edge", - "rtt_ns": 979077, - "rtt_ms": 0.979077, + "rtt_ns": 2064083, + "rtt_ms": 2.064083, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "555", - "timestamp": "2025-11-27T01:23:38.176070457Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:19.754813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649935, - "rtt_ms": 1.649935, + "rtt_ns": 2086416, + "rtt_ms": 2.086416, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:38.176085337Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:19.754966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490226, - "rtt_ms": 1.490226, + "rtt_ns": 1742417, + "rtt_ms": 1.742417, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:38.176735585Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.755635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600906, - "rtt_ms": 1.600906, + "rtt_ns": 1884708, + "rtt_ms": 1.884708, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "314", - "timestamp": "2025-11-27T01:23:38.176865305Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.755736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408036, - "rtt_ms": 1.408036, + "rtt_ns": 1939208, + "rtt_ms": 1.939208, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.176916245Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:03:19.755805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006937, - "rtt_ms": 1.006937, + "rtt_ns": 1146083, + "rtt_ms": 1.146083, "checkpoint": 0, "vertex_from": "67", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:38.176983694Z" + "timestamp": "2025-11-27T04:03:19.755945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576286, - "rtt_ms": 1.576286, + "rtt_ns": 998417, + "rtt_ms": 0.998417, "checkpoint": 0, "vertex_from": "67", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.177663153Z" + "timestamp": "2025-11-27T04:03:19.755965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742325, - "rtt_ms": 1.742325, + "rtt_ns": 1421583, + "rtt_ms": 1.421583, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:38.177761322Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.756153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903404, - "rtt_ms": 1.903404, + "rtt_ns": 1390792, + "rtt_ms": 1.390792, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.177779062Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:19.756194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889145, - "rtt_ms": 1.889145, + "rtt_ns": 1448834, + "rtt_ms": 1.448834, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.177781602Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.75623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053227, - "rtt_ms": 1.053227, + "rtt_ns": 1540459, + "rtt_ms": 1.540459, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.177789792Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.75629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886905, - "rtt_ms": 1.886905, + "rtt_ns": 1507833, + "rtt_ms": 1.507833, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.177821572Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:03:19.756322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751775, - "rtt_ms": 1.751775, + "rtt_ns": 1114625, + "rtt_ms": 1.114625, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:38.177823592Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:19.756922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761015, - "rtt_ms": 1.761015, + "rtt_ns": 1561041, + "rtt_ms": 1.561041, "checkpoint": 0, "vertex_from": "67", "vertex_to": "164", - "timestamp": "2025-11-27T01:23:38.17862713Z" + "timestamp": "2025-11-27T04:03:19.757299-08:00" }, { "operation": "add_edge", - "rtt_ns": 2205293, - "rtt_ms": 2.205293, + "rtt_ns": 1678542, + "rtt_ms": 1.678542, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:38.179122758Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.757316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543405, - "rtt_ms": 1.543405, + "rtt_ns": 1472542, + "rtt_ms": 1.472542, "checkpoint": 0, "vertex_from": "67", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:38.179207908Z" + "timestamp": "2025-11-27T04:03:19.757439-08:00" }, { "operation": "add_edge", - "rtt_ns": 3434181, - "rtt_ms": 3.434181, + "rtt_ns": 1554083, + "rtt_ms": 1.554083, "checkpoint": 0, "vertex_from": "67", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.180419165Z" + "timestamp": "2025-11-27T04:03:19.7575-08:00" }, { "operation": "add_edge", - "rtt_ns": 2736982, - "rtt_ms": 2.736982, + "rtt_ns": 1264709, + "rtt_ms": 1.264709, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:38.180528234Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.757588-08:00" }, { "operation": "add_edge", - "rtt_ns": 2772832, - "rtt_ms": 2.772832, + "rtt_ns": 1609125, + "rtt_ms": 1.609125, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:38.180555604Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:19.757763-08:00" }, { "operation": "add_edge", - "rtt_ns": 2817902, - "rtt_ms": 2.817902, + "rtt_ns": 1807541, + "rtt_ms": 1.807541, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:38.180580444Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.758003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482526, - "rtt_ms": 1.482526, + "rtt_ns": 1786667, + "rtt_ms": 1.786667, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "108", - "timestamp": "2025-11-27T01:23:38.180606794Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:19.758018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019724, - "rtt_ms": 2.019724, + "rtt_ns": 1741125, + "rtt_ms": 1.741125, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:38.180648304Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.758033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2868792, - "rtt_ms": 2.868792, + "rtt_ns": 1421041, + "rtt_ms": 1.421041, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.180649544Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.758344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454276, - "rtt_ms": 1.454276, + "rtt_ns": 1201125, + "rtt_ms": 1.201125, + "checkpoint": 0, + "vertex_from": "67", + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:19.758791-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1367042, + "rtt_ms": 1.367042, "checkpoint": 0, "vertex_from": "67", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:38.180663394Z" + "timestamp": "2025-11-27T04:03:19.758808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2850892, - "rtt_ms": 2.850892, + "rtt_ns": 1654542, + "rtt_ms": 1.654542, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.180673784Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:19.758954-08:00" }, { "operation": "add_edge", - "rtt_ns": 2872622, - "rtt_ms": 2.872622, + "rtt_ns": 1568584, + "rtt_ms": 1.568584, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.180697324Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.75907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068277, - "rtt_ms": 1.068277, + "rtt_ns": 1762916, + "rtt_ms": 1.762916, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:38.181597571Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:03:19.75908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194677, - "rtt_ms": 1.194677, + "rtt_ns": 1345167, + "rtt_ms": 1.345167, "checkpoint": 0, "vertex_from": "67", "vertex_to": "305", - "timestamp": "2025-11-27T01:23:38.181751111Z" + "timestamp": "2025-11-27T04:03:19.759109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073857, - "rtt_ms": 1.073857, + "rtt_ns": 1124250, + "rtt_ms": 1.12425, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:38.181772381Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.759128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553415, - "rtt_ms": 1.553415, + "rtt_ns": 1098375, + "rtt_ms": 1.098375, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:38.182161559Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:19.759132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581065, - "rtt_ms": 1.581065, + "rtt_ns": 1187708, + "rtt_ms": 1.187708, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.182162289Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:19.759206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741314, - "rtt_ms": 1.741314, + "rtt_ns": 1655750, + "rtt_ms": 1.65575, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:38.182162609Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.760001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601315, - "rtt_ms": 1.601315, + "rtt_ns": 1343541, + "rtt_ms": 1.343541, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.182251629Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:19.760299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650005, - "rtt_ms": 1.650005, + "rtt_ns": 1529708, + "rtt_ms": 1.529708, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:38.182299439Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:19.760339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674215, - "rtt_ms": 1.674215, + "rtt_ns": 1433125, + "rtt_ms": 1.433125, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.182339229Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:19.760562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703805, - "rtt_ms": 1.703805, + "rtt_ns": 1469292, + "rtt_ms": 1.469292, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:38.182378709Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:03:19.76058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526036, - "rtt_ms": 1.526036, + "rtt_ns": 1549792, + "rtt_ms": 1.549792, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.183125557Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:19.76063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053527, - "rtt_ms": 1.053527, + "rtt_ns": 1458042, + "rtt_ms": 1.458042, "checkpoint": 0, "vertex_from": "67", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:38.183217356Z" + "timestamp": "2025-11-27T04:03:19.760666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125477, - "rtt_ms": 1.125477, + "rtt_ns": 1926000, + "rtt_ms": 1.926, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:38.183289226Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.760718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648975, - "rtt_ms": 1.648975, + "rtt_ns": 1741041, + "rtt_ms": 1.741041, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "179", - "timestamp": "2025-11-27T01:23:38.183422906Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.760811-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038564, - "rtt_ms": 2.038564, + "rtt_ns": 1696041, + "rtt_ms": 1.696041, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:38.183790925Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:19.76083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605445, - "rtt_ms": 1.605445, + "rtt_ns": 1723792, + "rtt_ms": 1.723792, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:38.183946124Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.761726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677975, - "rtt_ms": 1.677975, + "rtt_ns": 1528667, + "rtt_ms": 1.528667, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.183978514Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:19.762159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848595, - "rtt_ms": 1.848595, + "rtt_ns": 1879792, + "rtt_ms": 1.879792, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:38.184013004Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:19.762184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829205, - "rtt_ms": 1.829205, + "rtt_ns": 1861375, + "rtt_ms": 1.861375, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:38.184082394Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:19.762202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707885, - "rtt_ms": 1.707885, + "rtt_ns": 1657833, + "rtt_ms": 1.657833, "checkpoint": 0, "vertex_from": "67", "vertex_to": "71", - "timestamp": "2025-11-27T01:23:38.184087694Z" + "timestamp": "2025-11-27T04:03:19.762221-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1255806, - "rtt_ms": 1.255806, + "rtt_ns": 1823291, + "rtt_ms": 1.823291, "checkpoint": 0, "vertex_from": "431", - "timestamp": "2025-11-27T01:23:38.184384553Z" + "timestamp": "2025-11-27T04:03:19.762404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559576, - "rtt_ms": 1.559576, + "rtt_ns": 1834666, + "rtt_ms": 1.834666, "checkpoint": 0, - "vertex_from": "67", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:38.184778052Z" + "vertex_from": "68", + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.762647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432316, - "rtt_ms": 1.432316, + "rtt_ns": 1979875, + "rtt_ms": 1.979875, "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:38.184857242Z" + "vertex_from": "67", + "vertex_to": "453", + "timestamp": "2025-11-27T04:03:19.762647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126186, - "rtt_ms": 1.126186, + "rtt_ns": 1954292, + "rtt_ms": 1.954292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.184918991Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:19.762673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012067, - "rtt_ms": 1.012067, + "rtt_ns": 2064833, + "rtt_ms": 2.064833, "checkpoint": 0, "vertex_from": "68", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.184961921Z" + "timestamp": "2025-11-27T04:03:19.762896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007907, - "rtt_ms": 1.007907, + "rtt_ns": 1623583, + "rtt_ms": 1.623583, "checkpoint": 0, "vertex_from": "68", "vertex_to": "105", - "timestamp": "2025-11-27T01:23:38.184989751Z" + "timestamp": "2025-11-27T04:03:19.763352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702315, - "rtt_ms": 1.702315, + "rtt_ns": 1516500, + "rtt_ms": 1.5165, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "453", - "timestamp": "2025-11-27T01:23:38.184992631Z" - }, - { - "operation": "add_edge", - "rtt_ns": 923677, - "rtt_ms": 0.923677, - "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.185012801Z" + "vertex_to": "431", + "timestamp": "2025-11-27T04:03:19.763921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020237, - "rtt_ms": 1.020237, + "rtt_ns": 1874417, + "rtt_ms": 1.874417, "checkpoint": 0, "vertex_from": "68", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:38.185034951Z" + "timestamp": "2025-11-27T04:03:19.764035-08:00" }, { "operation": "add_edge", - "rtt_ns": 966597, - "rtt_ms": 0.966597, + "rtt_ns": 1851416, + "rtt_ms": 1.851416, "checkpoint": 0, "vertex_from": "68", "vertex_to": "166", - "timestamp": "2025-11-27T01:23:38.185050461Z" - }, - { - "operation": "add_edge", - "rtt_ns": 704458, - "rtt_ms": 0.704458, - "checkpoint": 0, - "vertex_from": "67", - "vertex_to": "431", - "timestamp": "2025-11-27T01:23:38.185089351Z" + "timestamp": "2025-11-27T04:03:19.764037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026217, - "rtt_ms": 1.026217, + "rtt_ns": 2142500, + "rtt_ms": 2.1425, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.185805509Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.764345-08:00" }, { "operation": "add_edge", - "rtt_ns": 994697, - "rtt_ms": 0.994697, + "rtt_ns": 1698541, + "rtt_ms": 1.698541, "checkpoint": 0, "vertex_from": "68", "vertex_to": "156", - "timestamp": "2025-11-27T01:23:38.185853479Z" + "timestamp": "2025-11-27T04:03:19.764348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741645, - "rtt_ms": 1.741645, + "rtt_ns": 1713541, + "rtt_ms": 1.713541, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.186704816Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:19.764363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830665, - "rtt_ms": 1.830665, + "rtt_ns": 2399791, + "rtt_ms": 2.399791, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:38.186750886Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.764621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977295, - "rtt_ms": 1.977295, + "rtt_ns": 1738375, + "rtt_ms": 1.738375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:38.186991266Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:19.764636-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109614, - "rtt_ms": 2.109614, + "rtt_ns": 1978750, + "rtt_ms": 1.97875, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.187103905Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.764653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176944, - "rtt_ms": 2.176944, + "rtt_ns": 1292625, + "rtt_ms": 1.292625, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:38.187213745Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.765215-08:00" }, { "operation": "add_edge", - "rtt_ns": 2266064, - "rtt_ms": 2.266064, + "rtt_ns": 1198791, + "rtt_ms": 1.198791, "checkpoint": 0, "vertex_from": "68", "vertex_to": "201", - "timestamp": "2025-11-27T01:23:38.187317875Z" + "timestamp": "2025-11-27T04:03:19.765237-08:00" }, { "operation": "add_edge", - "rtt_ns": 2538523, - "rtt_ms": 2.538523, + "rtt_ns": 1900250, + "rtt_ms": 1.90025, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:38.187531644Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.765254-08:00" }, { "operation": "add_edge", - "rtt_ns": 2678032, - "rtt_ms": 2.678032, + "rtt_ns": 1622042, + "rtt_ms": 1.622042, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:38.187769753Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.76566-08:00" }, { "operation": "add_edge", - "rtt_ns": 2619332, - "rtt_ms": 2.619332, + "rtt_ns": 1312416, + "rtt_ms": 1.312416, "checkpoint": 0, "vertex_from": "68", "vertex_to": "113", - "timestamp": "2025-11-27T01:23:38.188427531Z" + "timestamp": "2025-11-27T04:03:19.765662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2637952, - "rtt_ms": 2.637952, + "rtt_ns": 1677208, + "rtt_ms": 1.677208, "checkpoint": 0, "vertex_from": "68", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:38.188492501Z" + "timestamp": "2025-11-27T04:03:19.766041-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1868250, + "rtt_ms": 1.86825, + "checkpoint": 0, + "vertex_from": "68", + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.766214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823345, - "rtt_ms": 1.823345, + "rtt_ns": 1739208, + "rtt_ms": 1.739208, "checkpoint": 0, "vertex_from": "68", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.188529861Z" + "timestamp": "2025-11-27T04:03:19.766361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571415, - "rtt_ms": 1.571415, + "rtt_ns": 1879875, + "rtt_ms": 1.879875, "checkpoint": 0, "vertex_from": "68", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.188563491Z" + "timestamp": "2025-11-27T04:03:19.766533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823075, - "rtt_ms": 1.823075, + "rtt_ns": 2021208, + "rtt_ms": 2.021208, "checkpoint": 0, "vertex_from": "68", "vertex_to": "206", - "timestamp": "2025-11-27T01:23:38.188575251Z" + "timestamp": "2025-11-27T04:03:19.766659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508286, - "rtt_ms": 1.508286, + "rtt_ns": 1797750, + "rtt_ms": 1.79775, "checkpoint": 0, "vertex_from": "68", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:38.188723521Z" + "timestamp": "2025-11-27T04:03:19.767035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654315, - "rtt_ms": 1.654315, + "rtt_ns": 1834375, + "rtt_ms": 1.834375, "checkpoint": 0, "vertex_from": "68", "vertex_to": "674", - "timestamp": "2025-11-27T01:23:38.18876054Z" + "timestamp": "2025-11-27T04:03:19.76705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008807, - "rtt_ms": 1.008807, + "rtt_ns": 1928666, + "rtt_ms": 1.928666, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:38.18877968Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.767184-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1202542, + "rtt_ms": 1.202542, + "checkpoint": 0, + "vertex_from": "68", + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:19.767418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268906, - "rtt_ms": 1.268906, + "rtt_ns": 1825000, + "rtt_ms": 1.825, "checkpoint": 0, "vertex_from": "68", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.18880153Z" + "timestamp": "2025-11-27T04:03:19.767488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511545, - "rtt_ms": 1.511545, + "rtt_ns": 1372291, + "rtt_ms": 1.372291, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.18883074Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.767735-08:00" }, { "operation": "add_edge", - "rtt_ns": 671288, - "rtt_ms": 0.671288, + "rtt_ns": 2087334, + "rtt_ms": 2.087334, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:38.189164989Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:19.767751-08:00" }, { "operation": "add_edge", - "rtt_ns": 771628, - "rtt_ms": 0.771628, + "rtt_ns": 1722917, + "rtt_ms": 1.722917, "checkpoint": 0, "vertex_from": "68", "vertex_to": "131", - "timestamp": "2025-11-27T01:23:38.189200599Z" + "timestamp": "2025-11-27T04:03:19.767766-08:00" }, { "operation": "add_edge", - "rtt_ns": 709698, - "rtt_ms": 0.709698, + "rtt_ns": 1785292, + "rtt_ms": 1.785292, "checkpoint": 0, "vertex_from": "68", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:38.189274229Z" + "timestamp": "2025-11-27T04:03:19.768319-08:00" }, { "operation": "add_edge", - "rtt_ns": 749378, - "rtt_ms": 0.749378, + "rtt_ns": 1678083, + "rtt_ms": 1.678083, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.189280759Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.768337-08:00" }, { "operation": "add_edge", - "rtt_ns": 712158, - "rtt_ms": 0.712158, + "rtt_ns": 1543500, + "rtt_ms": 1.5435, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.189288519Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.768595-08:00" }, { "operation": "add_edge", - "rtt_ns": 712877, - "rtt_ms": 0.712877, + "rtt_ns": 1568458, + "rtt_ms": 1.568458, "checkpoint": 0, "vertex_from": "68", "vertex_to": "411", - "timestamp": "2025-11-27T01:23:38.189438128Z" + "timestamp": "2025-11-27T04:03:19.768605-08:00" }, { "operation": "add_edge", - "rtt_ns": 716868, - "rtt_ms": 0.716868, + "rtt_ns": 1423875, + "rtt_ms": 1.423875, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.189480988Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:19.76861-08:00" }, { "operation": "add_edge", - "rtt_ns": 744158, - "rtt_ms": 0.744158, + "rtt_ns": 1199875, + "rtt_ms": 1.199875, + "checkpoint": 0, + "vertex_from": "68", + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:19.768967-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1841125, + "rtt_ms": 1.841125, "checkpoint": 0, "vertex_from": "68", "vertex_to": "406", - "timestamp": "2025-11-27T01:23:38.189546918Z" + "timestamp": "2025-11-27T04:03:19.76926-08:00" }, { "operation": "add_edge", - "rtt_ns": 732268, - "rtt_ms": 0.732268, + "rtt_ns": 1788333, + "rtt_ms": 1.788333, "checkpoint": 0, "vertex_from": "68", "vertex_to": "140", - "timestamp": "2025-11-27T01:23:38.189564888Z" + "timestamp": "2025-11-27T04:03:19.769278-08:00" }, { "operation": "add_edge", - "rtt_ns": 858478, - "rtt_ms": 0.858478, + "rtt_ns": 1304500, + "rtt_ms": 1.3045, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:38.189639178Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:19.769643-08:00" }, { "operation": "add_edge", - "rtt_ns": 718288, - "rtt_ms": 0.718288, + "rtt_ns": 2002584, + "rtt_ms": 2.002584, "checkpoint": 0, "vertex_from": "68", "vertex_to": "123", - "timestamp": "2025-11-27T01:23:38.189885737Z" + "timestamp": "2025-11-27T04:03:19.769738-08:00" }, { "operation": "add_edge", - "rtt_ns": 699618, - "rtt_ms": 0.699618, + "rtt_ns": 2044708, + "rtt_ms": 2.044708, "checkpoint": 0, "vertex_from": "68", "vertex_to": "650", - "timestamp": "2025-11-27T01:23:38.189901497Z" + "timestamp": "2025-11-27T04:03:19.769796-08:00" }, { "operation": "add_edge", - "rtt_ns": 665838, - "rtt_ms": 0.665838, + "rtt_ns": 1522250, + "rtt_ms": 1.52225, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:38.189956437Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:19.769843-08:00" }, { "operation": "add_edge", - "rtt_ns": 704918, - "rtt_ms": 0.704918, + "rtt_ns": 1403750, + "rtt_ms": 1.40375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:38.189980407Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:19.769999-08:00" }, { "operation": "add_edge", - "rtt_ns": 813307, - "rtt_ms": 0.813307, + "rtt_ns": 1545792, + "rtt_ms": 1.545792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:38.190095216Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.770157-08:00" }, { "operation": "add_edge", - "rtt_ns": 646598, - "rtt_ms": 0.646598, + "rtt_ns": 1584959, + "rtt_ms": 1.584959, "checkpoint": 0, "vertex_from": "68", "vertex_to": "353", - "timestamp": "2025-11-27T01:23:38.190129526Z" + "timestamp": "2025-11-27T04:03:19.770191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094627, - "rtt_ms": 1.094627, + "rtt_ns": 1249834, + "rtt_ms": 1.249834, "checkpoint": 0, "vertex_from": "68", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.190660745Z" + "timestamp": "2025-11-27T04:03:19.770218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237457, - "rtt_ms": 1.237457, + "rtt_ns": 1195417, + "rtt_ms": 1.195417, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:38.190677055Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.770457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179017, - "rtt_ms": 1.179017, + "rtt_ns": 1244291, + "rtt_ms": 1.244291, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.190726725Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:19.770523-08:00" }, { "operation": "add_edge", - "rtt_ns": 957387, - "rtt_ms": 0.957387, + "rtt_ns": 1173583, + "rtt_ms": 1.173583, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.190860524Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.771174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239386, - "rtt_ms": 1.239386, + "rtt_ns": 1588209, + "rtt_ms": 1.588209, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.190879864Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.771232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730065, - "rtt_ms": 1.730065, + "rtt_ns": 1486459, + "rtt_ms": 1.486459, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:38.191618322Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.771284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523516, - "rtt_ms": 1.523516, + "rtt_ns": 1625167, + "rtt_ms": 1.625167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.191655142Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:19.771471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689945, - "rtt_ms": 1.689945, + "rtt_ns": 1745583, + "rtt_ms": 1.745583, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.191671712Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.771485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733975, - "rtt_ms": 1.733975, + "rtt_ns": 1299875, + "rtt_ms": 1.299875, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:38.191692402Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.771492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269626, - "rtt_ms": 1.269626, + "rtt_ns": 1122333, + "rtt_ms": 1.122333, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.191933271Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.771647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940935, - "rtt_ms": 1.940935, + "rtt_ns": 1506208, + "rtt_ms": 1.506208, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:38.192037031Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.771665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313176, - "rtt_ms": 1.313176, + "rtt_ns": 1460250, + "rtt_ms": 1.46025, "checkpoint": 0, "vertex_from": "68", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:38.192042631Z" + "timestamp": "2025-11-27T04:03:19.77168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407156, - "rtt_ms": 1.407156, + "rtt_ns": 1594791, + "rtt_ms": 1.594791, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.192086401Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.772052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270466, - "rtt_ms": 1.270466, + "rtt_ns": 1588541, + "rtt_ms": 1.588541, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.19215151Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.772764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323106, - "rtt_ms": 1.323106, + "rtt_ns": 1493333, + "rtt_ms": 1.493333, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.19218566Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:19.772778-08:00" }, { "operation": "add_edge", - "rtt_ns": 637948, - "rtt_ms": 0.637948, + "rtt_ns": 1293792, + "rtt_ms": 1.293792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.19225821Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.772781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540485, - "rtt_ms": 1.540485, + "rtt_ns": 1323667, + "rtt_ms": 1.323667, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:38.193222047Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.772795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634115, - "rtt_ms": 1.634115, + "rtt_ns": 1697167, + "rtt_ms": 1.697167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.193327507Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:03:19.773378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689405, - "rtt_ms": 1.689405, + "rtt_ns": 2208084, + "rtt_ms": 2.208084, "checkpoint": 0, "vertex_from": "68", "vertex_to": "905", - "timestamp": "2025-11-27T01:23:38.193346147Z" + "timestamp": "2025-11-27T04:03:19.773442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550975, - "rtt_ms": 1.550975, + "rtt_ns": 2036334, + "rtt_ms": 2.036334, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.193485876Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:19.77353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520355, - "rtt_ms": 1.520355, + "rtt_ns": 1918167, + "rtt_ms": 1.918167, "checkpoint": 0, "vertex_from": "68", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:38.193609996Z" + "timestamp": "2025-11-27T04:03:19.773584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600835, - "rtt_ms": 1.600835, + "rtt_ns": 1775292, + "rtt_ms": 1.775292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:38.193638656Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:19.773828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2529042, - "rtt_ms": 2.529042, + "rtt_ns": 2191750, + "rtt_ms": 2.19175, "checkpoint": 0, "vertex_from": "68", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:38.194573423Z" + "timestamp": "2025-11-27T04:03:19.77384-08:00" }, { "operation": "add_edge", - "rtt_ns": 2465553, - "rtt_ms": 2.465553, + "rtt_ns": 1324584, + "rtt_ms": 1.324584, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:38.194618733Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.774104-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464663, - "rtt_ms": 2.464663, + "rtt_ns": 1355583, + "rtt_ms": 1.355583, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:38.194652193Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:19.774152-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449443, - "rtt_ms": 2.449443, + "rtt_ns": 2031875, + "rtt_ms": 2.031875, "checkpoint": 0, "vertex_from": "68", "vertex_to": "282", - "timestamp": "2025-11-27T01:23:38.194708823Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1526646, - "rtt_ms": 1.526646, - "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:38.194750553Z" + "timestamp": "2025-11-27T04:03:19.774798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517605, - "rtt_ms": 1.517605, + "rtt_ns": 2031333, + "rtt_ms": 2.031333, "checkpoint": 0, "vertex_from": "68", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:38.194846942Z" + "timestamp": "2025-11-27T04:03:19.774813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563505, - "rtt_ms": 1.563505, + "rtt_ns": 1497959, + "rtt_ms": 1.497959, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:38.194911022Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.775029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487006, - "rtt_ms": 1.487006, + "rtt_ns": 1663834, + "rtt_ms": 1.663834, "checkpoint": 0, "vertex_from": "68", "vertex_to": "412", - "timestamp": "2025-11-27T01:23:38.194975192Z" + "timestamp": "2025-11-27T04:03:19.775045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346656, - "rtt_ms": 1.346656, + "rtt_ns": 1631250, + "rtt_ms": 1.63125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.194986172Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.775217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421026, - "rtt_ms": 1.421026, + "rtt_ns": 1775750, + "rtt_ms": 1.77575, "checkpoint": 0, "vertex_from": "68", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:38.195032242Z" + "timestamp": "2025-11-27T04:03:19.775219-08:00" }, { "operation": "add_edge", - "rtt_ns": 529589, - "rtt_ms": 0.529589, + "rtt_ns": 1394917, + "rtt_ms": 1.394917, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.195104612Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.775236-08:00" }, { "operation": "add_edge", - "rtt_ns": 625948, - "rtt_ms": 0.625948, + "rtt_ns": 1405875, + "rtt_ms": 1.405875, "checkpoint": 0, "vertex_from": "68", "vertex_to": "76", - "timestamp": "2025-11-27T01:23:38.195245851Z" + "timestamp": "2025-11-27T04:03:19.775236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033747, - "rtt_ms": 1.033747, + "rtt_ns": 1242250, + "rtt_ms": 1.24225, "checkpoint": 0, "vertex_from": "68", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:38.19574393Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1128707, - "rtt_ms": 1.128707, - "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:38.19578642Z" + "timestamp": "2025-11-27T04:03:19.775347-08:00" }, { "operation": "add_edge", - "rtt_ns": 969777, - "rtt_ms": 0.969777, + "rtt_ns": 1251750, + "rtt_ms": 1.25175, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.195818319Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:03:19.775404-08:00" }, { "operation": "add_edge", - "rtt_ns": 850907, - "rtt_ms": 0.850907, + "rtt_ns": 1435750, + "rtt_ms": 1.43575, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:38.195827889Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.77625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150326, - "rtt_ms": 1.150326, + "rtt_ns": 1501250, + "rtt_ms": 1.50125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:38.195902329Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:19.7763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549445, - "rtt_ms": 1.549445, + "rtt_ns": 1476375, + "rtt_ms": 1.476375, "checkpoint": 0, "vertex_from": "68", "vertex_to": "152", - "timestamp": "2025-11-27T01:23:38.196536657Z" + "timestamp": "2025-11-27T04:03:19.776522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726545, - "rtt_ms": 1.726545, + "rtt_ns": 1324292, + "rtt_ms": 1.324292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.196638817Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.776544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643755, - "rtt_ms": 1.643755, + "rtt_ns": 1352958, + "rtt_ms": 1.352958, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:38.196677717Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:19.776589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590095, - "rtt_ms": 1.590095, + "rtt_ns": 1259292, + "rtt_ms": 1.259292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.196695667Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:19.776665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720335, - "rtt_ms": 1.720335, + "rtt_ns": 1650208, + "rtt_ms": 1.650208, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:38.196967276Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.77668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454506, - "rtt_ms": 1.454506, + "rtt_ns": 1350250, + "rtt_ms": 1.35025, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:38.197199446Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:19.776699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373136, - "rtt_ms": 1.373136, + "rtt_ns": 1494167, + "rtt_ms": 1.494167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:38.197276155Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:19.776714-08:00" }, { "operation": "add_edge", - "rtt_ns": 777888, - "rtt_ms": 0.777888, + "rtt_ns": 1560541, + "rtt_ms": 1.560541, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:38.197315475Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:19.776797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508266, - "rtt_ms": 1.508266, + "rtt_ns": 1249250, + "rtt_ms": 1.24925, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:38.197332285Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:19.777551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554405, - "rtt_ms": 1.554405, + "rtt_ns": 1392125, + "rtt_ms": 1.392125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:38.197341685Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:19.777643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239687, - "rtt_ms": 1.239687, + "rtt_ns": 1171833, + "rtt_ms": 1.171833, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.197918334Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:19.777872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104255, - "rtt_ms": 2.104255, + "rtt_ns": 1373416, + "rtt_ms": 1.373416, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:38.197933934Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:03:19.777918-08:00" }, { "operation": "add_edge", - "rtt_ns": 969417, - "rtt_ms": 0.969417, + "rtt_ns": 1405375, + "rtt_ms": 1.405375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:38.197937893Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.777928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293296, - "rtt_ms": 1.293296, + "rtt_ns": 1226208, + "rtt_ms": 1.226208, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:38.197989773Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.77794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499386, - "rtt_ms": 1.499386, + "rtt_ns": 1278834, + "rtt_ms": 1.278834, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "754", - "timestamp": "2025-11-27T01:23:38.198138823Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:19.777945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460335, - "rtt_ms": 1.460335, + "rtt_ns": 1435875, + "rtt_ms": 1.435875, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:38.198660421Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:19.778117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484556, - "rtt_ms": 1.484556, + "rtt_ns": 1343000, + "rtt_ms": 1.343, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.198761361Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:03:19.778141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442096, - "rtt_ms": 1.442096, + "rtt_ns": 1554916, + "rtt_ms": 1.554916, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:38.198784401Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.778145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487066, - "rtt_ms": 1.487066, + "rtt_ns": 1253000, + "rtt_ms": 1.253, "checkpoint": 0, "vertex_from": "68", "vertex_to": "70", - "timestamp": "2025-11-27T01:23:38.198820101Z" + "timestamp": "2025-11-27T04:03:19.778805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571186, - "rtt_ms": 1.571186, + "rtt_ns": 1363750, + "rtt_ms": 1.36375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "121", - "timestamp": "2025-11-27T01:23:38.198887141Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:19.779007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544206, - "rtt_ms": 1.544206, + "rtt_ns": 1400166, + "rtt_ms": 1.400166, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:38.199683689Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:19.779342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783964, - "rtt_ms": 1.783964, + "rtt_ns": 1582000, + "rtt_ms": 1.582, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:38.199718358Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:19.779527-08:00" }, { "operation": "add_edge", - "rtt_ns": 962947, - "rtt_ms": 0.962947, + "rtt_ns": 1613792, + "rtt_ms": 1.613792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:38.199747818Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.779543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129177, - "rtt_ms": 1.129177, + "rtt_ns": 1644000, + "rtt_ms": 1.644, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "454", - "timestamp": "2025-11-27T01:23:38.199790438Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:19.779563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854155, - "rtt_ms": 1.854155, + "rtt_ns": 1432417, + "rtt_ms": 1.432417, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:38.199844608Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:19.779578-08:00" }, { "operation": "add_edge", - "rtt_ns": 2476713, - "rtt_ms": 2.476713, + "rtt_ns": 1556292, + "rtt_ms": 1.556292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.200415616Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:03:19.779674-08:00" }, { "operation": "add_edge", - "rtt_ns": 2513452, - "rtt_ms": 2.513452, + "rtt_ns": 1817459, + "rtt_ms": 1.817459, "checkpoint": 0, "vertex_from": "68", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:38.200432556Z" + "timestamp": "2025-11-27T04:03:19.779692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772185, - "rtt_ms": 1.772185, + "rtt_ns": 1554125, + "rtt_ms": 1.554125, "checkpoint": 0, "vertex_from": "68", "vertex_to": "661", - "timestamp": "2025-11-27T01:23:38.200534206Z" + "timestamp": "2025-11-27T04:03:19.779696-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209444, - "rtt_ms": 2.209444, + "rtt_ns": 930708, + "rtt_ms": 0.930708, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "311", - "timestamp": "2025-11-27T01:23:38.201030575Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:19.779939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156224, - "rtt_ms": 2.156224, + "rtt_ns": 1243416, + "rtt_ms": 1.243416, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:38.201044175Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:03:19.78005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066604, - "rtt_ms": 2.066604, + "rtt_ns": 1228291, + "rtt_ms": 1.228291, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.201912122Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:19.780772-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355663, - "rtt_ms": 2.355663, + "rtt_ns": 1258875, + "rtt_ms": 1.258875, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:38.202041022Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.780787-08:00" }, { "operation": "add_edge", - "rtt_ns": 2339844, - "rtt_ms": 2.339844, + "rtt_ns": 1494625, + "rtt_ms": 1.494625, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:38.202059112Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.781074-08:00" }, { "operation": "add_edge", - "rtt_ns": 2332713, - "rtt_ms": 2.332713, + "rtt_ns": 1540208, + "rtt_ms": 1.540208, "checkpoint": 0, "vertex_from": "68", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:38.202124201Z" + "timestamp": "2025-11-27T04:03:19.781105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381203, - "rtt_ms": 2.381203, + "rtt_ns": 1767208, + "rtt_ms": 1.767208, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:38.202130261Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:19.781112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731515, - "rtt_ms": 1.731515, + "rtt_ns": 1420500, + "rtt_ms": 1.4205, "checkpoint": 0, "vertex_from": "68", "vertex_to": "899", - "timestamp": "2025-11-27T01:23:38.202165491Z" + "timestamp": "2025-11-27T04:03:19.781113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763615, - "rtt_ms": 1.763615, + "rtt_ns": 1453625, + "rtt_ms": 1.453625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "664", - "timestamp": "2025-11-27T01:23:38.202180631Z" + "timestamp": "2025-11-27T04:03:19.781129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723145, - "rtt_ms": 1.723145, + "rtt_ns": 1502833, + "rtt_ms": 1.502833, "checkpoint": 0, "vertex_from": "68", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:38.202258241Z" + "timestamp": "2025-11-27T04:03:19.781201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253586, - "rtt_ms": 1.253586, + "rtt_ns": 1209625, + "rtt_ms": 1.209625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:38.202298731Z" + "timestamp": "2025-11-27T04:03:19.78126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299296, - "rtt_ms": 1.299296, + "rtt_ns": 1516250, + "rtt_ms": 1.51625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.202331641Z" + "timestamp": "2025-11-27T04:03:19.781456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127347, - "rtt_ms": 1.127347, + "rtt_ns": 1085750, + "rtt_ms": 1.08575, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:38.203041929Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:19.78216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041026, - "rtt_ms": 1.041026, + "rtt_ns": 1494458, + "rtt_ms": 1.494458, "checkpoint": 0, "vertex_from": "68", "vertex_to": "362", - "timestamp": "2025-11-27T01:23:38.203087288Z" + "timestamp": "2025-11-27T04:03:19.782283-08:00" }, { "operation": "add_edge", - "rtt_ns": 934097, - "rtt_ms": 0.934097, + "rtt_ns": 1615833, + "rtt_ms": 1.615833, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:38.203101578Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:19.78239-08:00" }, { "operation": "add_edge", - "rtt_ns": 934187, - "rtt_ms": 0.934187, + "rtt_ns": 1376417, + "rtt_ms": 1.376417, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:38.203115918Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.782483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003927, - "rtt_ms": 1.003927, + "rtt_ns": 1385667, + "rtt_ms": 1.385667, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:38.203130638Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:19.7825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130826, - "rtt_ms": 1.130826, + "rtt_ns": 1488000, + "rtt_ms": 1.488, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:38.203191678Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:19.782619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146707, - "rtt_ms": 1.146707, + "rtt_ns": 1553375, + "rtt_ms": 1.553375, "checkpoint": 0, "vertex_from": "68", "vertex_to": "232", - "timestamp": "2025-11-27T01:23:38.203278118Z" + "timestamp": "2025-11-27T04:03:19.782666-08:00" }, { "operation": "add_edge", - "rtt_ns": 995927, - "rtt_ms": 0.995927, + "rtt_ns": 1464167, + "rtt_ms": 1.464167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:38.203296688Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:19.782667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640215, - "rtt_ms": 1.640215, + "rtt_ns": 1386625, + "rtt_ms": 1.386625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "914", - "timestamp": "2025-11-27T01:23:38.203973696Z" + "timestamp": "2025-11-27T04:03:19.782845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729715, - "rtt_ms": 1.729715, + "rtt_ns": 1588042, + "rtt_ms": 1.588042, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:38.203991306Z" - }, - { - "operation": "add_edge", - "rtt_ns": 939697, - "rtt_ms": 0.939697, - "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:38.204914513Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:19.78285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787775, - "rtt_ms": 1.787775, + "rtt_ns": 992709, + "rtt_ms": 0.992709, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "701", - "timestamp": "2025-11-27T01:23:38.204980433Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:19.783384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973884, - "rtt_ms": 1.973884, + "rtt_ns": 1423416, + "rtt_ms": 1.423416, "checkpoint": 0, "vertex_from": "68", "vertex_to": "826", - "timestamp": "2025-11-27T01:23:38.205017333Z" + "timestamp": "2025-11-27T04:03:19.783585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000635, - "rtt_ms": 2.000635, + "rtt_ns": 1335458, + "rtt_ms": 1.335458, "checkpoint": 0, "vertex_from": "68", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.205090253Z" + "timestamp": "2025-11-27T04:03:19.783621-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038825, - "rtt_ms": 2.038825, + "rtt_ns": 1182167, + "rtt_ms": 1.182167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:38.205141493Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:19.783851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858615, - "rtt_ms": 1.858615, + "rtt_ns": 1387958, + "rtt_ms": 1.387958, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:38.205157223Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:19.783872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027155, - "rtt_ms": 2.027155, + "rtt_ns": 1375416, + "rtt_ms": 1.375416, "checkpoint": 0, "vertex_from": "68", "vertex_to": "102", - "timestamp": "2025-11-27T01:23:38.205159293Z" + "timestamp": "2025-11-27T04:03:19.783876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911264, - "rtt_ms": 1.911264, + "rtt_ns": 1234292, + "rtt_ms": 1.234292, "checkpoint": 0, "vertex_from": "68", "vertex_to": "864", - "timestamp": "2025-11-27T01:23:38.205190632Z" + "timestamp": "2025-11-27T04:03:19.783902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2202994, - "rtt_ms": 2.202994, + "rtt_ns": 1358500, + "rtt_ms": 1.3585, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:38.205322022Z" + "vertex_to": "701", + "timestamp": "2025-11-27T04:03:19.783978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366846, - "rtt_ms": 1.366846, + "rtt_ns": 1262500, + "rtt_ms": 1.2625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "69", - "timestamp": "2025-11-27T01:23:38.205359712Z" + "timestamp": "2025-11-27T04:03:19.784113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071657, - "rtt_ms": 1.071657, + "rtt_ns": 1280750, + "rtt_ms": 1.28075, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:38.20598745Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:19.784126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164917, - "rtt_ms": 1.164917, + "rtt_ns": 1263083, + "rtt_ms": 1.263083, "checkpoint": 0, "vertex_from": "68", "vertex_to": "519", - "timestamp": "2025-11-27T01:23:38.20618343Z" + "timestamp": "2025-11-27T04:03:19.784885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395056, - "rtt_ms": 1.395056, + "rtt_ns": 1308791, + "rtt_ms": 1.308791, "checkpoint": 0, "vertex_from": "68", "vertex_to": "225", - "timestamp": "2025-11-27T01:23:38.206377659Z" + "timestamp": "2025-11-27T04:03:19.784896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285297, - "rtt_ms": 1.285297, + "rtt_ns": 1268125, + "rtt_ms": 1.268125, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:38.206476949Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.785141-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1829875, + "rtt_ms": 1.829875, + "checkpoint": 0, + "vertex_from": "68", + "vertex_to": "779", + "timestamp": "2025-11-27T04:03:19.785214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401256, - "rtt_ms": 1.401256, + "rtt_ns": 1336958, + "rtt_ms": 1.336958, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.206492559Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.785215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176627, - "rtt_ms": 1.176627, + "rtt_ns": 1365708, + "rtt_ms": 1.365708, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.206499659Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.785218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415806, - "rtt_ms": 1.415806, + "rtt_ns": 1238250, + "rtt_ms": 1.23825, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.206576559Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.785352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457325, - "rtt_ms": 1.457325, + "rtt_ns": 1475958, + "rtt_ms": 1.475958, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:38.206600108Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.785456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316566, - "rtt_ms": 1.316566, + "rtt_ns": 1391333, + "rtt_ms": 1.391333, "checkpoint": 0, "vertex_from": "69", "vertex_to": "450", - "timestamp": "2025-11-27T01:23:38.206677338Z" + "timestamp": "2025-11-27T04:03:19.785518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034247, - "rtt_ms": 1.034247, + "rtt_ns": 1615000, + "rtt_ms": 1.615, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.207023587Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.785518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992184, - "rtt_ms": 1.992184, + "rtt_ns": 1607708, + "rtt_ms": 1.607708, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.207150447Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.786495-08:00" }, { "operation": "add_edge", - "rtt_ns": 876698, - "rtt_ms": 0.876698, + "rtt_ns": 1616083, + "rtt_ms": 1.616083, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.207255567Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:19.786513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414826, - "rtt_ms": 1.414826, + "rtt_ns": 1702125, + "rtt_ms": 1.702125, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:38.207599576Z" + "vertex_to": "414", + "timestamp": "2025-11-27T04:03:19.786918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146587, - "rtt_ms": 1.146587, + "rtt_ns": 1477167, + "rtt_ms": 1.477167, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.207646986Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:19.786935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594495, - "rtt_ms": 1.594495, + "rtt_ns": 1841750, + "rtt_ms": 1.84175, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "414", - "timestamp": "2025-11-27T01:23:38.208072334Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:19.787194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648055, - "rtt_ms": 1.648055, + "rtt_ns": 2072000, + "rtt_ms": 2.072, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:38.208142234Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.787215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572936, - "rtt_ms": 1.572936, + "rtt_ns": 1845459, + "rtt_ms": 1.845459, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.208254614Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:19.787366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924285, - "rtt_ms": 1.924285, + "rtt_ns": 1913417, + "rtt_ms": 1.913417, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:38.208525383Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.787433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569746, - "rtt_ms": 1.569746, + "rtt_ns": 2409166, + "rtt_ms": 2.409166, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:38.208595243Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.787629-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027834, - "rtt_ms": 2.027834, + "rtt_ns": 2430959, + "rtt_ms": 2.430959, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:38.208607083Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:19.787647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582495, - "rtt_ms": 1.582495, + "rtt_ns": 1637875, + "rtt_ms": 1.637875, "checkpoint": 0, "vertex_from": "69", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.208839532Z" + "timestamp": "2025-11-27T04:03:19.788152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871194, - "rtt_ms": 1.871194, + "rtt_ns": 1670958, + "rtt_ms": 1.670958, "checkpoint": 0, "vertex_from": "69", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.209023751Z" + "timestamp": "2025-11-27T04:03:19.788167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526845, - "rtt_ms": 1.526845, + "rtt_ns": 1490042, + "rtt_ms": 1.490042, "checkpoint": 0, "vertex_from": "69", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:38.209129621Z" + "timestamp": "2025-11-27T04:03:19.788408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659745, - "rtt_ms": 1.659745, + "rtt_ns": 1516167, + "rtt_ms": 1.516167, "checkpoint": 0, "vertex_from": "69", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:38.209307981Z" + "timestamp": "2025-11-27T04:03:19.788453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240706, - "rtt_ms": 1.240706, + "rtt_ns": 1338291, + "rtt_ms": 1.338291, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.20938449Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:19.788705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864785, - "rtt_ms": 1.864785, + "rtt_ns": 1524291, + "rtt_ms": 1.524291, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "71", - "timestamp": "2025-11-27T01:23:38.209939479Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.78874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729215, - "rtt_ms": 1.729215, + "rtt_ns": 1664333, + "rtt_ms": 1.664333, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:38.209985799Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:03:19.78886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470545, - "rtt_ms": 1.470545, + "rtt_ns": 1444125, + "rtt_ms": 1.444125, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.210067528Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:19.788878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570055, - "rtt_ms": 1.570055, + "rtt_ns": 1361208, + "rtt_ms": 1.361208, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:38.210099378Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.789009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493365, - "rtt_ms": 1.493365, + "rtt_ns": 1406542, + "rtt_ms": 1.406542, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:38.210103708Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.789036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295336, - "rtt_ms": 1.295336, + "rtt_ns": 1180959, + "rtt_ms": 1.180959, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:38.210136638Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:19.789591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305577, - "rtt_ms": 1.305577, + "rtt_ns": 1452416, + "rtt_ms": 1.452416, "checkpoint": 0, "vertex_from": "69", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:38.210330618Z" + "timestamp": "2025-11-27T04:03:19.789622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262746, - "rtt_ms": 1.262746, + "rtt_ns": 1494458, + "rtt_ms": 1.494458, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:38.210393807Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:19.789647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094536, - "rtt_ms": 1.094536, + "rtt_ns": 1162500, + "rtt_ms": 1.1625, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.210403617Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.789903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061177, - "rtt_ms": 1.061177, + "rtt_ns": 1200042, + "rtt_ms": 1.200042, "checkpoint": 0, "vertex_from": "69", "vertex_to": "786", - "timestamp": "2025-11-27T01:23:38.210446717Z" + "timestamp": "2025-11-27T04:03:19.78992-08:00" }, { "operation": "add_edge", - "rtt_ns": 562108, - "rtt_ms": 0.562108, + "rtt_ns": 1481542, + "rtt_ms": 1.481542, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:38.210548827Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.789937-08:00" }, { "operation": "add_edge", - "rtt_ns": 761487, - "rtt_ms": 0.761487, + "rtt_ns": 1419750, + "rtt_ms": 1.41975, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.210702016Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:19.79028-08:00" }, { "operation": "add_edge", - "rtt_ns": 661768, - "rtt_ms": 0.661768, + "rtt_ns": 1261042, + "rtt_ms": 1.261042, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:38.210730346Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:19.790298-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 597538, - "rtt_ms": 0.597538, + "operation": "add_edge", + "rtt_ns": 1424541, + "rtt_ms": 1.424541, "checkpoint": 0, - "vertex_from": "846", - "timestamp": "2025-11-27T01:23:38.210736916Z" + "vertex_from": "69", + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:19.790304-08:00" }, { "operation": "add_edge", - "rtt_ns": 683938, - "rtt_ms": 0.683938, + "rtt_ns": 1563000, + "rtt_ms": 1.563, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:38.210789426Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:19.790576-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1247000, + "rtt_ms": 1.247, + "checkpoint": 0, + "vertex_from": "846", + "timestamp": "2025-11-27T04:03:19.79084-08:00" }, { "operation": "add_edge", - "rtt_ns": 724258, - "rtt_ms": 0.724258, + "rtt_ns": 964792, + "rtt_ms": 0.964792, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:38.210825956Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.790903-08:00" }, { "operation": "add_edge", - "rtt_ns": 655118, - "rtt_ms": 0.655118, + "rtt_ns": 1659000, + "rtt_ms": 1.659, "checkpoint": 0, "vertex_from": "69", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:38.211049605Z" + "timestamp": "2025-11-27T04:03:19.791308-08:00" }, { "operation": "add_edge", - "rtt_ns": 759987, - "rtt_ms": 0.759987, + "rtt_ns": 1719250, + "rtt_ms": 1.71925, "checkpoint": 0, "vertex_from": "69", "vertex_to": "105", - "timestamp": "2025-11-27T01:23:38.211092845Z" + "timestamp": "2025-11-27T04:03:19.791342-08:00" }, { "operation": "add_edge", - "rtt_ns": 774288, - "rtt_ms": 0.774288, + "rtt_ns": 1629583, + "rtt_ms": 1.629583, "checkpoint": 0, "vertex_from": "69", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.211179055Z" + "timestamp": "2025-11-27T04:03:19.791534-08:00" }, { "operation": "add_edge", - "rtt_ns": 745698, - "rtt_ms": 0.745698, + "rtt_ns": 1712708, + "rtt_ms": 1.712708, "checkpoint": 0, "vertex_from": "69", "vertex_to": "148", - "timestamp": "2025-11-27T01:23:38.211193845Z" + "timestamp": "2025-11-27T04:03:19.791633-08:00" }, { "operation": "add_edge", - "rtt_ns": 661788, - "rtt_ms": 0.661788, + "rtt_ns": 1202792, + "rtt_ms": 1.202792, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:38.211211745Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:19.79178-08:00" }, { "operation": "add_edge", - "rtt_ns": 515099, - "rtt_ms": 0.515099, + "rtt_ns": 1519500, + "rtt_ms": 1.5195, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.211218435Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:19.791825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100937, - "rtt_ms": 1.100937, + "rtt_ns": 1598791, + "rtt_ms": 1.598791, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:38.211891933Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.791897-08:00" }, { "operation": "add_edge", - "rtt_ns": 846388, - "rtt_ms": 0.846388, + "rtt_ns": 1181375, + "rtt_ms": 1.181375, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.211940473Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.792087-08:00" }, { "operation": "add_edge", - "rtt_ns": 902928, - "rtt_ms": 0.902928, + "rtt_ns": 1844417, + "rtt_ms": 1.844417, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.211953773Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:19.792126-08:00" }, { "operation": "add_edge", - "rtt_ns": 751058, - "rtt_ms": 0.751058, + "rtt_ns": 1535084, + "rtt_ms": 1.535084, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:38.211971193Z" + "vertex_to": "846", + "timestamp": "2025-11-27T04:03:19.792376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244477, - "rtt_ms": 1.244477, + "rtt_ns": 1359708, + "rtt_ms": 1.359708, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.211976213Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.792669-08:00" }, { "operation": "add_edge", - "rtt_ns": 814198, - "rtt_ms": 0.814198, + "rtt_ns": 1157000, + "rtt_ms": 1.157, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:38.211995863Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.792692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239776, - "rtt_ms": 1.239776, + "rtt_ns": 1570250, + "rtt_ms": 1.57025, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:38.212069282Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:19.792915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373606, - "rtt_ms": 1.373606, + "rtt_ns": 1495125, + "rtt_ms": 1.495125, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "846", - "timestamp": "2025-11-27T01:23:38.212111212Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:03:19.793129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635265, - "rtt_ms": 1.635265, + "rtt_ns": 1289666, + "rtt_ms": 1.289666, "checkpoint": 0, - "vertex_from": "69", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.21283062Z" + "vertex_from": "70", + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.793188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633145, - "rtt_ms": 1.633145, + "rtt_ns": 1419208, + "rtt_ms": 1.419208, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "81", - "timestamp": "2025-11-27T01:23:38.21284647Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.793246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074096, - "rtt_ms": 1.074096, + "rtt_ns": 1502875, + "rtt_ms": 1.502875, "checkpoint": 0, - "vertex_from": "70", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:38.213072949Z" + "vertex_from": "69", + "vertex_to": "598", + "timestamp": "2025-11-27T04:03:19.793285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147846, - "rtt_ms": 1.147846, + "rtt_ns": 1245125, + "rtt_ms": 1.245125, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:38.213089469Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.793622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337116, - "rtt_ms": 1.337116, + "rtt_ns": 1511792, + "rtt_ms": 1.511792, "checkpoint": 0, - "vertex_from": "69", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:38.213232179Z" + "vertex_from": "70", + "vertex_to": "135", + "timestamp": "2025-11-27T04:03:19.793639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282036, - "rtt_ms": 1.282036, + "rtt_ns": 1564875, + "rtt_ms": 1.564875, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "135", - "timestamp": "2025-11-27T01:23:38.213255289Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:19.793654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153147, - "rtt_ms": 1.153147, + "rtt_ns": 1143542, + "rtt_ms": 1.143542, "checkpoint": 0, "vertex_from": "70", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.213265649Z" + "timestamp": "2025-11-27T04:03:19.794061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328076, - "rtt_ms": 1.328076, + "rtt_ns": 1847375, + "rtt_ms": 1.847375, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:38.213283499Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.79454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236787, - "rtt_ms": 1.236787, + "rtt_ns": 1883958, + "rtt_ms": 1.883958, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.213307479Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:19.794554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354316, - "rtt_ms": 1.354316, + "rtt_ns": 1096833, + "rtt_ms": 1.096833, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.213331919Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:19.794751-08:00" }, { "operation": "add_edge", - "rtt_ns": 871558, - "rtt_ms": 0.871558, + "rtt_ns": 1623000, + "rtt_ms": 1.623, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:38.213945647Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.794812-08:00" }, { "operation": "add_edge", - "rtt_ns": 723708, - "rtt_ms": 0.723708, + "rtt_ns": 1290625, + "rtt_ms": 1.290625, "checkpoint": 0, "vertex_from": "70", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.213980217Z" + "timestamp": "2025-11-27T04:03:19.794931-08:00" }, { "operation": "add_edge", - "rtt_ns": 799377, - "rtt_ms": 0.799377, + "rtt_ns": 1372666, + "rtt_ms": 1.372666, "checkpoint": 0, "vertex_from": "70", "vertex_to": "91", - "timestamp": "2025-11-27T01:23:38.214032906Z" + "timestamp": "2025-11-27T04:03:19.794996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054237, - "rtt_ms": 1.054237, + "rtt_ns": 1716375, + "rtt_ms": 1.716375, "checkpoint": 0, "vertex_from": "70", "vertex_to": "146", - "timestamp": "2025-11-27T01:23:38.214144816Z" + "timestamp": "2025-11-27T04:03:19.795003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358476, - "rtt_ms": 1.358476, + "rtt_ns": 1890500, + "rtt_ms": 1.8905, "checkpoint": 0, "vertex_from": "70", "vertex_to": "194", - "timestamp": "2025-11-27T01:23:38.214190546Z" + "timestamp": "2025-11-27T04:03:19.795022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395596, - "rtt_ms": 1.395596, + "rtt_ns": 2010833, + "rtt_ms": 2.010833, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.214243536Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:19.795258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692745, - "rtt_ms": 1.692745, + "rtt_ns": 1610625, + "rtt_ms": 1.610625, "checkpoint": 0, "vertex_from": "70", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:38.214977314Z" + "timestamp": "2025-11-27T04:03:19.795672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046117, - "rtt_ms": 1.046117, + "rtt_ns": 1364833, + "rtt_ms": 1.364833, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:38.214993504Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:19.795907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673185, - "rtt_ms": 1.673185, + "rtt_ns": 1111875, + "rtt_ms": 1.111875, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.215006964Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:19.795926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701105, - "rtt_ms": 1.701105, + "rtt_ns": 1180333, + "rtt_ms": 1.180333, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:38.215009624Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:19.795932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037487, - "rtt_ms": 1.037487, + "rtt_ns": 1162708, + "rtt_ms": 1.162708, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:38.215019044Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:03:19.796185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802994, - "rtt_ms": 1.802994, + "rtt_ns": 1645250, + "rtt_ms": 1.64525, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:38.215070523Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.7962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050677, - "rtt_ms": 1.050677, + "rtt_ns": 1592583, + "rtt_ms": 1.592583, "checkpoint": 0, "vertex_from": "70", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:38.215085523Z" + "timestamp": "2025-11-27T04:03:19.796525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115774, - "rtt_ms": 2.115774, + "rtt_ns": 1266708, + "rtt_ms": 1.266708, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.21630741Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:19.796527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340323, - "rtt_ms": 2.340323, + "rtt_ns": 1561959, + "rtt_ms": 1.561959, "checkpoint": 0, "vertex_from": "70", "vertex_to": "305", - "timestamp": "2025-11-27T01:23:38.216486309Z" + "timestamp": "2025-11-27T04:03:19.796559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453646, - "rtt_ms": 1.453646, + "rtt_ns": 1651833, + "rtt_ms": 1.651833, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.216540219Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:19.796656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631835, - "rtt_ms": 1.631835, + "rtt_ns": 1038833, + "rtt_ms": 1.038833, "checkpoint": 0, "vertex_from": "70", "vertex_to": "643", - "timestamp": "2025-11-27T01:23:38.216642789Z" + "timestamp": "2025-11-27T04:03:19.796966-08:00" }, { "operation": "add_edge", - "rtt_ns": 2914361, - "rtt_ms": 2.914361, + "rtt_ns": 1139459, + "rtt_ms": 1.139459, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "72", - "timestamp": "2025-11-27T01:23:38.217158327Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.797048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250053, - "rtt_ms": 2.250053, + "rtt_ns": 2031750, + "rtt_ms": 2.03175, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.217244787Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.797965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207014, - "rtt_ms": 2.207014, + "rtt_ns": 1811291, + "rtt_ms": 1.811291, "checkpoint": 0, "vertex_from": "70", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.217278577Z" + "timestamp": "2025-11-27T04:03:19.797997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2296533, - "rtt_ms": 2.296533, + "rtt_ns": 1518500, + "rtt_ms": 1.5185, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.217316677Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2337653, - "rtt_ms": 2.337653, - "checkpoint": 0, - "vertex_from": "70", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.217345747Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:19.798176-08:00" }, { "operation": "add_edge", - "rtt_ns": 2367833, - "rtt_ms": 2.367833, + "rtt_ns": 2539584, + "rtt_ms": 2.539584, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:38.217346477Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.798214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360256, - "rtt_ms": 1.360256, + "rtt_ns": 2213792, + "rtt_ms": 2.213792, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.217669456Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.798415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142877, - "rtt_ms": 1.142877, + "rtt_ns": 1877708, + "rtt_ms": 1.877708, "checkpoint": 0, "vertex_from": "70", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.217684046Z" + "timestamp": "2025-11-27T04:03:19.798439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127537, - "rtt_ms": 1.127537, + "rtt_ns": 1932292, + "rtt_ms": 1.932292, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:38.217772536Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:19.798461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302007, - "rtt_ms": 1.302007, + "rtt_ns": 1965625, + "rtt_ms": 1.965625, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:38.217789556Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.798491-08:00" }, { "operation": "add_edge", - "rtt_ns": 945538, - "rtt_ms": 0.945538, + "rtt_ns": 1829542, + "rtt_ms": 1.829542, "checkpoint": 0, "vertex_from": "70", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.218104955Z" + "timestamp": "2025-11-27T04:03:19.798796-08:00" }, { "operation": "add_edge", - "rtt_ns": 899508, - "rtt_ms": 0.899508, + "rtt_ns": 1765541, + "rtt_ms": 1.765541, "checkpoint": 0, "vertex_from": "70", "vertex_to": "201", - "timestamp": "2025-11-27T01:23:38.218145565Z" + "timestamp": "2025-11-27T04:03:19.798814-08:00" }, { "operation": "add_edge", - "rtt_ns": 903267, - "rtt_ms": 0.903267, + "rtt_ns": 1138083, + "rtt_ms": 1.138083, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.218574273Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:19.799315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273316, - "rtt_ms": 1.273316, + "rtt_ns": 1366709, + "rtt_ms": 1.366709, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:38.218621973Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.799333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274266, - "rtt_ms": 1.274266, + "rtt_ns": 1236125, + "rtt_ms": 1.236125, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.218623703Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.799652-08:00" }, { "operation": "add_edge", - "rtt_ns": 959707, - "rtt_ms": 0.959707, + "rtt_ns": 1308792, + "rtt_ms": 1.308792, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.218645433Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.800106-08:00" }, { "operation": "add_edge", - "rtt_ns": 875657, - "rtt_ms": 0.875657, + "rtt_ns": 1658167, + "rtt_ms": 1.658167, "checkpoint": 0, "vertex_from": "70", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:38.218654663Z" + "timestamp": "2025-11-27T04:03:19.80012-08:00" }, { "operation": "add_edge", - "rtt_ns": 892177, - "rtt_ms": 0.892177, + "rtt_ns": 1687459, + "rtt_ms": 1.687459, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.218683683Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.800127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375506, - "rtt_ms": 1.375506, + "rtt_ns": 1922041, + "rtt_ms": 1.922041, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:38.218693793Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.800139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741395, - "rtt_ms": 1.741395, + "rtt_ns": 2144125, + "rtt_ms": 2.144125, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.219021002Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:19.800142-08:00" }, { "operation": "add_edge", - "rtt_ns": 949657, - "rtt_ms": 0.949657, + "rtt_ns": 1361042, + "rtt_ms": 1.361042, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.219056472Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1309166, - "rtt_ms": 1.309166, - "checkpoint": 0, - "vertex_from": "71", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.220006779Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1063427, - "rtt_ms": 1.063427, - "checkpoint": 0, - "vertex_from": "71", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:38.220087849Z" + "vertex_to": "490", + "timestamp": "2025-11-27T04:03:19.800176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990634, - "rtt_ms": 1.990634, + "rtt_ns": 1687042, + "rtt_ms": 1.687042, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "490", - "timestamp": "2025-11-27T01:23:38.220137709Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:19.80018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089267, - "rtt_ms": 1.089267, + "rtt_ns": 1315417, + "rtt_ms": 1.315417, "checkpoint": 0, - "vertex_from": "71", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.220148769Z" + "vertex_from": "70", + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:19.800649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663596, - "rtt_ms": 1.663596, + "rtt_ns": 1549542, + "rtt_ms": 1.549542, "checkpoint": 0, "vertex_from": "70", "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.220247169Z" + "timestamp": "2025-11-27T04:03:19.800865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564176, - "rtt_ms": 1.564176, + "rtt_ns": 1520709, + "rtt_ms": 1.520709, "checkpoint": 0, "vertex_from": "71", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:38.220249759Z" + "timestamp": "2025-11-27T04:03:19.80165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639436, - "rtt_ms": 1.639436, + "rtt_ns": 1548083, + "rtt_ms": 1.548083, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.220287619Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.801669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636406, - "rtt_ms": 1.636406, + "rtt_ns": 1820583, + "rtt_ms": 1.820583, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:38.220294889Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.801929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675496, - "rtt_ms": 1.675496, + "rtt_ns": 1810000, + "rtt_ms": 1.81, "checkpoint": 0, - "vertex_from": "70", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:38.220304109Z" + "vertex_from": "71", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.801949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682025, - "rtt_ms": 1.682025, + "rtt_ns": 2316667, + "rtt_ms": 2.316667, "checkpoint": 0, "vertex_from": "70", "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.220311968Z" + "timestamp": "2025-11-27T04:03:19.80197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162306, - "rtt_ms": 1.162306, + "rtt_ns": 1830750, + "rtt_ms": 1.83075, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:38.221313815Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.801975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342696, - "rtt_ms": 1.342696, + "rtt_ns": 1796667, + "rtt_ms": 1.796667, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.221432015Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.801979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584566, - "rtt_ms": 1.584566, + "rtt_ns": 2083291, + "rtt_ms": 2.083291, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.221594715Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.80226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475516, - "rtt_ms": 1.475516, + "rtt_ns": 1426917, + "rtt_ms": 1.426917, "checkpoint": 0, "vertex_from": "71", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:38.221618675Z" + "timestamp": "2025-11-27T04:03:19.802293-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1715959, + "rtt_ms": 1.715959, + "checkpoint": 0, + "vertex_from": "71", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.802366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448545, - "rtt_ms": 1.448545, + "rtt_ns": 1217791, + "rtt_ms": 1.217791, "checkpoint": 0, "vertex_from": "71", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:38.221745224Z" + "timestamp": "2025-11-27T04:03:19.803189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448896, - "rtt_ms": 1.448896, + "rtt_ns": 1254458, + "rtt_ms": 1.254458, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.221754454Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:19.803204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643535, - "rtt_ms": 1.643535, + "rtt_ns": 1434833, + "rtt_ms": 1.434833, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:38.221893894Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:03:19.803365-08:00" }, { "operation": "add_edge", - "rtt_ns": 959387, - "rtt_ms": 0.959387, + "rtt_ns": 1735500, + "rtt_ms": 1.7355, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:38.222392582Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.803715-08:00" }, { "operation": "add_edge", - "rtt_ns": 851197, - "rtt_ms": 0.851197, + "rtt_ns": 1757333, + "rtt_ms": 1.757333, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:38.222447042Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.803733-08:00" }, { "operation": "add_edge", - "rtt_ns": 2168204, - "rtt_ms": 2.168204, + "rtt_ns": 2245542, + "rtt_ms": 2.245542, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:38.222482672Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:19.803896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233327, - "rtt_ms": 1.233327, + "rtt_ns": 2242834, + "rtt_ms": 2.242834, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.222549222Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:19.803913-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274743, - "rtt_ms": 2.274743, + "rtt_ns": 1561041, + "rtt_ms": 1.561041, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.222563942Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:19.803928-08:00" }, { "operation": "add_edge", - "rtt_ns": 2409092, - "rtt_ms": 2.409092, + "rtt_ns": 1782959, + "rtt_ms": 1.782959, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "90", - "timestamp": "2025-11-27T01:23:38.222661031Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:19.804079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581595, - "rtt_ms": 1.581595, + "rtt_ns": 1833375, + "rtt_ms": 1.833375, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.223337639Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:19.804094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622735, - "rtt_ms": 1.622735, + "rtt_ns": 1241917, + "rtt_ms": 1.241917, "checkpoint": 0, "vertex_from": "71", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:38.223369119Z" + "timestamp": "2025-11-27T04:03:19.804447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481725, - "rtt_ms": 1.481725, + "rtt_ns": 1100250, + "rtt_ms": 1.10025, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:38.223376939Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.804467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865604, - "rtt_ms": 1.865604, + "rtt_ns": 1666375, + "rtt_ms": 1.666375, "checkpoint": 0, "vertex_from": "71", "vertex_to": "540", - "timestamp": "2025-11-27T01:23:38.223488619Z" + "timestamp": "2025-11-27T04:03:19.804856-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1262209, + "rtt_ms": 1.262209, + "checkpoint": 0, + "vertex_from": "71", + "vertex_to": "472", + "timestamp": "2025-11-27T04:03:19.804996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217616, - "rtt_ms": 1.217616, + "rtt_ns": 1330125, + "rtt_ms": 1.330125, "checkpoint": 0, "vertex_from": "72", "vertex_to": "180", - "timestamp": "2025-11-27T01:23:38.223768628Z" + "timestamp": "2025-11-27T04:03:19.805259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503706, - "rtt_ms": 1.503706, + "rtt_ns": 1559041, + "rtt_ms": 1.559041, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "472", - "timestamp": "2025-11-27T01:23:38.223899258Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:19.805275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452886, - "rtt_ms": 1.452886, + "rtt_ns": 1713916, + "rtt_ms": 1.713916, "checkpoint": 0, "vertex_from": "71", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:38.223901538Z" + "timestamp": "2025-11-27T04:03:19.805611-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1984833, + "rtt_ms": 1.984833, + "checkpoint": 0, + "vertex_from": "72", + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:19.805899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404406, - "rtt_ms": 1.404406, + "rtt_ns": 1834834, + "rtt_ms": 1.834834, "checkpoint": 0, "vertex_from": "72", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:38.223971878Z" + "timestamp": "2025-11-27T04:03:19.805915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515426, - "rtt_ms": 1.515426, + "rtt_ns": 1001083, + "rtt_ms": 1.001083, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:38.224000278Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:19.805998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993955, - "rtt_ms": 1.993955, + "rtt_ns": 1966500, + "rtt_ms": 1.9665, "checkpoint": 0, "vertex_from": "72", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.224656566Z" + "timestamp": "2025-11-27T04:03:19.806061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415636, - "rtt_ms": 1.415636, + "rtt_ns": 1621458, + "rtt_ms": 1.621458, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:38.224905755Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:03:19.806089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539016, - "rtt_ms": 1.539016, + "rtt_ns": 1708584, + "rtt_ms": 1.708584, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "709", - "timestamp": "2025-11-27T01:23:38.224909355Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.806156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140237, - "rtt_ms": 1.140237, + "rtt_ns": 1203000, + "rtt_ms": 1.203, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:38.224911235Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:19.806479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877545, - "rtt_ms": 1.877545, + "rtt_ns": 1848708, + "rtt_ms": 1.848708, "checkpoint": 0, "vertex_from": "72", "vertex_to": "565", - "timestamp": "2025-11-27T01:23:38.225255924Z" + "timestamp": "2025-11-27T04:03:19.806706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959525, - "rtt_ms": 1.959525, + "rtt_ns": 1619958, + "rtt_ms": 1.619958, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.225298584Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:19.80688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562555, - "rtt_ms": 1.562555, + "rtt_ns": 1048291, + "rtt_ms": 1.048291, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:38.225465943Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.807111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515515, - "rtt_ms": 1.515515, + "rtt_ns": 1227042, + "rtt_ms": 1.227042, "checkpoint": 0, "vertex_from": "72", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:38.225488933Z" + "timestamp": "2025-11-27T04:03:19.807126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591775, - "rtt_ms": 1.591775, + "rtt_ns": 1341167, + "rtt_ms": 1.341167, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:38.225492813Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:19.807257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279806, - "rtt_ms": 1.279806, + "rtt_ns": 1269042, + "rtt_ms": 1.269042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.226187671Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:19.80736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224223, - "rtt_ms": 2.224223, + "rtt_ns": 1804959, + "rtt_ms": 1.804959, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:38.226225501Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:19.807417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028177, - "rtt_ms": 1.028177, + "rtt_ns": 1435250, + "rtt_ms": 1.43525, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:38.226328171Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:19.807436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438406, - "rtt_ms": 1.438406, + "rtt_ns": 1526791, + "rtt_ms": 1.526791, "checkpoint": 0, "vertex_from": "72", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.226352111Z" + "timestamp": "2025-11-27T04:03:19.807684-08:00" }, { "operation": "add_edge", - "rtt_ns": 910648, - "rtt_ms": 0.910648, + "rtt_ns": 1940041, + "rtt_ms": 1.940041, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:38.226377801Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.808421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484716, - "rtt_ms": 1.484716, + "rtt_ns": 1702750, + "rtt_ms": 1.70275, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.226396191Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:19.808814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230547, - "rtt_ms": 1.230547, + "rtt_ns": 2022042, + "rtt_ms": 2.022042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.226487681Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:19.808903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844425, - "rtt_ms": 1.844425, + "rtt_ns": 1662250, + "rtt_ms": 1.66225, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:38.226504651Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:19.80892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380336, - "rtt_ms": 1.380336, + "rtt_ns": 2451709, + "rtt_ms": 2.451709, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:38.226871239Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:19.809159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404086, - "rtt_ms": 1.404086, + "rtt_ns": 2047541, + "rtt_ms": 2.047541, "checkpoint": 0, "vertex_from": "72", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:38.226899179Z" + "timestamp": "2025-11-27T04:03:19.809175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768194, - "rtt_ms": 1.768194, + "rtt_ns": 1784875, + "rtt_ms": 1.784875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:38.228258145Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.809203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956134, - "rtt_ms": 1.956134, + "rtt_ns": 1964834, + "rtt_ms": 1.964834, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:38.228311365Z" + "vertex_to": "407", + "timestamp": "2025-11-27T04:03:19.809327-08:00" }, { "operation": "add_edge", - "rtt_ns": 2550853, - "rtt_ms": 2.550853, + "rtt_ns": 1733125, + "rtt_ms": 1.733125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:38.228741344Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.809418-08:00" }, { "operation": "add_edge", - "rtt_ns": 3240571, - "rtt_ms": 3.240571, + "rtt_ns": 1719000, + "rtt_ms": 1.719, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "407", - "timestamp": "2025-11-27T01:23:38.229467992Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.810142-08:00" }, { "operation": "add_edge", - "rtt_ns": 3160021, - "rtt_ms": 3.160021, + "rtt_ns": 1220375, + "rtt_ms": 1.220375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.229559532Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:19.810427-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1626667, + "rtt_ms": 1.626667, + "checkpoint": 0, + "vertex_from": "72", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.810444-08:00" }, { "operation": "add_edge", - "rtt_ns": 3099860, - "rtt_ms": 3.09986, + "rtt_ns": 1609500, + "rtt_ms": 1.6095, "checkpoint": 0, "vertex_from": "72", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:38.229607421Z" + "timestamp": "2025-11-27T04:03:19.810514-08:00" }, { "operation": "add_edge", - "rtt_ns": 2744872, - "rtt_ms": 2.744872, + "rtt_ns": 3112917, + "rtt_ms": 3.112917, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:38.229617411Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:19.81055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382576, - "rtt_ms": 1.382576, + "rtt_ns": 1469875, + "rtt_ms": 1.469875, "checkpoint": 0, "vertex_from": "72", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:38.229642441Z" + "timestamp": "2025-11-27T04:03:19.810645-08:00" }, { "operation": "add_edge", - "rtt_ns": 3265990, - "rtt_ms": 3.26599, + "rtt_ns": 1506708, + "rtt_ms": 1.506708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.229645581Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:19.810666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2768702, - "rtt_ms": 2.768702, + "rtt_ns": 1748125, + "rtt_ms": 1.748125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:38.229669111Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:19.810669-08:00" }, { "operation": "add_edge", - "rtt_ns": 3338440, - "rtt_ms": 3.33844, + "rtt_ns": 1463708, + "rtt_ms": 1.463708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.229669291Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.810883-08:00" }, { "operation": "add_edge", - "rtt_ns": 981707, - "rtt_ms": 0.981707, + "rtt_ns": 1581125, + "rtt_ms": 1.581125, "checkpoint": 0, "vertex_from": "72", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:38.229724751Z" + "timestamp": "2025-11-27T04:03:19.810909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451036, - "rtt_ms": 1.451036, + "rtt_ns": 1179584, + "rtt_ms": 1.179584, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:38.229763721Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.811607-08:00" }, { "operation": "add_edge", - "rtt_ns": 978427, - "rtt_ms": 0.978427, + "rtt_ns": 1290333, + "rtt_ms": 1.290333, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.230448879Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:19.811807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037497, - "rtt_ms": 1.037497, + "rtt_ns": 1225584, + "rtt_ms": 1.225584, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.230656298Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:19.811874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145316, - "rtt_ms": 1.145316, + "rtt_ns": 1435875, + "rtt_ms": 1.435875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "461", - "timestamp": "2025-11-27T01:23:38.230706198Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.811881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517476, - "rtt_ms": 1.517476, + "rtt_ns": 1343042, + "rtt_ms": 1.343042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:38.231190557Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:03:19.811894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548116, - "rtt_ms": 1.548116, + "rtt_ns": 2082917, + "rtt_ms": 2.082917, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:38.231192397Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:03:19.812227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506516, - "rtt_ms": 1.506516, + "rtt_ns": 1750542, + "rtt_ms": 1.750542, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:38.231234987Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:19.812418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533425, - "rtt_ms": 1.533425, + "rtt_ns": 1547292, + "rtt_ms": 1.547292, "checkpoint": 0, "vertex_from": "72", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.231299426Z" + "timestamp": "2025-11-27T04:03:19.812431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650075, - "rtt_ms": 1.650075, + "rtt_ns": 1862292, + "rtt_ms": 1.862292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:38.231323746Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:19.812532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719665, - "rtt_ms": 1.719665, + "rtt_ns": 1641292, + "rtt_ms": 1.641292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.231328326Z" + "vertex_to": "271", + "timestamp": "2025-11-27T04:03:19.812552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691985, - "rtt_ms": 1.691985, + "rtt_ns": 1173208, + "rtt_ms": 1.173208, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "307", - "timestamp": "2025-11-27T01:23:38.231339326Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:19.812781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240266, - "rtt_ms": 1.240266, + "rtt_ns": 1312208, + "rtt_ms": 1.312208, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "271", - "timestamp": "2025-11-27T01:23:38.231692215Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:19.813194-08:00" }, { "operation": "add_edge", - "rtt_ns": 818177, - "rtt_ms": 0.818177, + "rtt_ns": 1594625, + "rtt_ms": 1.594625, "checkpoint": 0, "vertex_from": "72", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:38.232010174Z" + "timestamp": "2025-11-27T04:03:19.81347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333396, - "rtt_ms": 1.333396, + "rtt_ns": 1591750, + "rtt_ms": 1.59175, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.232041984Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:19.813487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386886, - "rtt_ms": 1.386886, + "rtt_ns": 1695292, + "rtt_ms": 1.695292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:38.232044824Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.813504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260157, - "rtt_ms": 1.260157, + "rtt_ns": 1508208, + "rtt_ms": 1.508208, "checkpoint": 0, "vertex_from": "72", "vertex_to": "76", - "timestamp": "2025-11-27T01:23:38.232564523Z" + "timestamp": "2025-11-27T04:03:19.813736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334976, - "rtt_ms": 1.334976, + "rtt_ns": 1320833, + "rtt_ms": 1.320833, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:38.232660352Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:19.813753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386546, - "rtt_ms": 1.386546, + "rtt_ns": 1486625, + "rtt_ms": 1.486625, "checkpoint": 0, "vertex_from": "72", "vertex_to": "105", - "timestamp": "2025-11-27T01:23:38.232728402Z" + "timestamp": "2025-11-27T04:03:19.814019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408746, - "rtt_ms": 1.408746, + "rtt_ns": 1604833, + "rtt_ms": 1.604833, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:38.232738322Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:19.814025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609635, - "rtt_ms": 1.609635, + "rtt_ns": 1301708, + "rtt_ms": 1.301708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:38.232846712Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:19.814084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193237, - "rtt_ms": 1.193237, + "rtt_ns": 1803541, + "rtt_ms": 1.803541, "checkpoint": 0, "vertex_from": "72", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:38.232887422Z" + "timestamp": "2025-11-27T04:03:19.814356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756874, - "rtt_ms": 1.756874, + "rtt_ns": 1250708, + "rtt_ms": 1.250708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:38.232950541Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:19.814756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076137, - "rtt_ms": 1.076137, + "rtt_ns": 1343042, + "rtt_ms": 1.343042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:38.233738359Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:19.814814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695895, - "rtt_ms": 1.695895, + "rtt_ns": 1854375, + "rtt_ms": 1.854375, "checkpoint": 0, "vertex_from": "72", "vertex_to": "74", - "timestamp": "2025-11-27T01:23:38.233739239Z" + "timestamp": "2025-11-27T04:03:19.815049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753465, - "rtt_ms": 1.753465, + "rtt_ns": 1306958, + "rtt_ms": 1.306958, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:38.233765209Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:19.815061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242956, - "rtt_ms": 1.242956, + "rtt_ns": 1550750, + "rtt_ms": 1.55075, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:38.233808649Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.815287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049914, - "rtt_ms": 2.049914, + "rtt_ns": 1822792, + "rtt_ms": 1.822792, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:38.234096658Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:19.81531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259496, - "rtt_ms": 1.259496, + "rtt_ns": 1491209, + "rtt_ms": 1.491209, "checkpoint": 0, "vertex_from": "72", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:38.234147958Z" + "timestamp": "2025-11-27T04:03:19.815517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528006, - "rtt_ms": 1.528006, - "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:38.234267828Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1452205, - "rtt_ms": 1.452205, + "rtt_ns": 1518584, + "rtt_ms": 1.518584, "checkpoint": 0, "vertex_from": "72", "vertex_to": "197", - "timestamp": "2025-11-27T01:23:38.234300107Z" + "timestamp": "2025-11-27T04:03:19.815538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596935, - "rtt_ms": 1.596935, + "rtt_ns": 1199125, + "rtt_ms": 1.199125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.234327347Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:19.815556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402436, - "rtt_ms": 1.402436, + "rtt_ns": 1487000, + "rtt_ms": 1.487, "checkpoint": 0, "vertex_from": "72", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:38.234354587Z" + "timestamp": "2025-11-27T04:03:19.815571-08:00" }, { "operation": "add_edge", - "rtt_ns": 733118, - "rtt_ms": 0.733118, + "rtt_ns": 1155541, + "rtt_ms": 1.155541, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:38.234473287Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:03:19.81597-08:00" }, { "operation": "add_edge", - "rtt_ns": 933727, - "rtt_ms": 0.933727, + "rtt_ns": 1420041, + "rtt_ms": 1.420041, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:38.235032065Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:19.816176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311206, - "rtt_ms": 1.311206, + "rtt_ns": 1483833, + "rtt_ms": 1.483833, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "485", - "timestamp": "2025-11-27T01:23:38.235078165Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:19.816548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356866, - "rtt_ms": 1.356866, + "rtt_ns": 1346333, + "rtt_ms": 1.346333, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:38.235167705Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.816634-08:00" }, { "operation": "add_edge", - "rtt_ns": 917517, - "rtt_ms": 0.917517, + "rtt_ns": 1576667, + "rtt_ms": 1.576667, "checkpoint": 0, "vertex_from": "72", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.235186745Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1452186, - "rtt_ms": 1.452186, - "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:38.235192845Z" + "timestamp": "2025-11-27T04:03:19.816894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059387, - "rtt_ms": 1.059387, + "rtt_ns": 1859750, + "rtt_ms": 1.85975, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.235209235Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:19.816909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633566, - "rtt_ms": 1.633566, + "rtt_ns": 1486708, + "rtt_ms": 1.486708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:38.235934773Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:19.817025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763335, - "rtt_ms": 1.763335, + "rtt_ns": 1467000, + "rtt_ms": 1.467, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:38.236092192Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:19.817039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838225, - "rtt_ms": 1.838225, + "rtt_ns": 1514000, + "rtt_ms": 1.514, "checkpoint": 0, "vertex_from": "72", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.236195892Z" + "timestamp": "2025-11-27T04:03:19.81707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2494233, - "rtt_ms": 2.494233, + "rtt_ns": 1562125, + "rtt_ms": 1.562125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:38.237573898Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:19.81708-08:00" }, { "operation": "add_edge", - "rtt_ns": 3104701, - "rtt_ms": 3.104701, + "rtt_ns": 1350458, + "rtt_ms": 1.350458, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:38.237579498Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.817321-08:00" }, { "operation": "add_edge", - "rtt_ns": 2571653, - "rtt_ms": 2.571653, + "rtt_ns": 1011000, + "rtt_ms": 1.011, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.237604778Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:19.817559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696825, - "rtt_ms": 1.696825, + "rtt_ns": 1770708, + "rtt_ms": 1.770708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.237632988Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:19.817948-08:00" }, { "operation": "add_edge", - "rtt_ns": 2511403, - "rtt_ms": 2.511403, + "rtt_ns": 1421292, + "rtt_ms": 1.421292, "checkpoint": 0, "vertex_from": "72", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:38.237699948Z" + "timestamp": "2025-11-27T04:03:19.818057-08:00" }, { "operation": "add_edge", - "rtt_ns": 2502503, - "rtt_ms": 2.502503, + "rtt_ns": 1321166, + "rtt_ms": 1.321166, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:38.237713558Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:03:19.818403-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627642, - "rtt_ms": 2.627642, + "rtt_ns": 1526291, + "rtt_ms": 1.526291, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:38.237797507Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:19.818421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623175, - "rtt_ms": 1.623175, + "rtt_ns": 1594250, + "rtt_ms": 1.59425, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.237820747Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.81862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732875, - "rtt_ms": 1.732875, + "rtt_ns": 1729583, + "rtt_ms": 1.729583, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:38.237828177Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:19.81864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2691442, - "rtt_ms": 2.691442, + "rtt_ns": 1582625, + "rtt_ms": 1.582625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:38.237886217Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.818656-08:00" }, { "operation": "add_edge", - "rtt_ns": 978437, - "rtt_ms": 0.978437, + "rtt_ns": 1348750, + "rtt_ms": 1.34875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "241", - "timestamp": "2025-11-27T01:23:38.238553965Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:19.818671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052807, - "rtt_ms": 1.052807, + "rtt_ns": 1759125, + "rtt_ms": 1.759125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:38.238659235Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:19.818799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061447, - "rtt_ms": 1.061447, + "rtt_ns": 1141959, + "rtt_ms": 1.141959, "checkpoint": 0, "vertex_from": "72", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.238695725Z" + "timestamp": "2025-11-27T04:03:19.81909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581386, - "rtt_ms": 1.581386, + "rtt_ns": 1552583, + "rtt_ms": 1.552583, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:38.239162284Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:19.819113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482716, - "rtt_ms": 1.482716, + "rtt_ns": 1212958, + "rtt_ms": 1.212958, "checkpoint": 0, "vertex_from": "72", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:38.239184894Z" + "timestamp": "2025-11-27T04:03:19.81927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432596, - "rtt_ms": 1.432596, + "rtt_ns": 1572666, + "rtt_ms": 1.572666, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.239320133Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:19.820213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525886, - "rtt_ms": 1.525886, + "rtt_ns": 1827375, + "rtt_ms": 1.827375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:38.239355423Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:19.820231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591606, - "rtt_ms": 1.591606, + "rtt_ns": 1661625, + "rtt_ms": 1.661625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "972", - "timestamp": "2025-11-27T01:23:38.239391343Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:19.820333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690465, - "rtt_ms": 1.690465, + "rtt_ns": 1589042, + "rtt_ms": 1.589042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:38.239408533Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:03:19.820389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700966, - "rtt_ms": 1.700966, + "rtt_ns": 1785333, + "rtt_ms": 1.785333, "checkpoint": 0, "vertex_from": "72", "vertex_to": "334", - "timestamp": "2025-11-27T01:23:38.239523173Z" + "timestamp": "2025-11-27T04:03:19.820406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096757, - "rtt_ms": 1.096757, + "rtt_ns": 1717875, + "rtt_ms": 1.717875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:38.239652192Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:19.820834-08:00" }, { "operation": "add_edge", - "rtt_ns": 841817, - "rtt_ms": 0.841817, + "rtt_ns": 2435333, + "rtt_ms": 2.435333, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:38.240028991Z" + "vertex_to": "972", + "timestamp": "2025-11-27T04:03:19.820857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406696, - "rtt_ms": 1.406696, + "rtt_ns": 2204084, + "rtt_ms": 2.204084, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.240105201Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.82086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471446, - "rtt_ms": 1.471446, + "rtt_ns": 1598791, + "rtt_ms": 1.598791, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "817", - "timestamp": "2025-11-27T01:23:38.240132361Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:19.82087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235706, - "rtt_ms": 1.235706, + "rtt_ns": 2011250, + "rtt_ms": 2.01125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:38.240592529Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.821103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202176, - "rtt_ms": 1.202176, + "rtt_ns": 1213666, + "rtt_ms": 1.213666, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:38.240726509Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.82155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211997, - "rtt_ms": 1.211997, + "rtt_ns": 1181500, + "rtt_ms": 1.1815, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.240865659Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:19.821571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516595, - "rtt_ms": 1.516595, + "rtt_ns": 1172000, + "rtt_ms": 1.172, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.240908958Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.821579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528435, - "rtt_ms": 1.528435, + "rtt_ns": 1583959, + "rtt_ms": 1.583959, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:38.240938528Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:19.821798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808004, - "rtt_ms": 1.808004, + "rtt_ns": 1587584, + "rtt_ms": 1.587584, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:38.240971878Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:19.821819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654745, - "rtt_ms": 1.654745, + "rtt_ns": 1308292, + "rtt_ms": 1.308292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:38.240976258Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.822414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562605, - "rtt_ms": 1.562605, + "rtt_ns": 1543292, + "rtt_ms": 1.543292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:38.241671676Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.822415-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1730305, - "rtt_ms": 1.730305, + "rtt_ns": 1597375, + "rtt_ms": 1.597375, "checkpoint": 0, "vertex_from": "723", - "timestamp": "2025-11-27T01:23:38.241763256Z" + "timestamp": "2025-11-27T04:03:19.822456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189187, - "rtt_ms": 1.189187, + "rtt_ns": 1636125, + "rtt_ms": 1.636125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.241783106Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:19.822472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060927, - "rtt_ms": 1.060927, + "rtt_ns": 1619542, + "rtt_ms": 1.619542, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:38.241789576Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:19.822481-08:00" }, { "operation": "add_edge", - "rtt_ns": 928657, - "rtt_ms": 0.928657, + "rtt_ns": 1244250, + "rtt_ms": 1.24425, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "434", - "timestamp": "2025-11-27T01:23:38.241795746Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.822825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667305, - "rtt_ms": 1.667305, + "rtt_ns": 1023167, + "rtt_ms": 1.023167, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:38.241802466Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:19.822843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225967, - "rtt_ms": 1.225967, + "rtt_ns": 1210917, + "rtt_ms": 1.210917, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.242136115Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:19.82301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171297, - "rtt_ms": 1.171297, + "rtt_ns": 1565583, + "rtt_ms": 1.565583, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.242150695Z" + "vertex_to": "434", + "timestamp": "2025-11-27T04:03:19.823138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326676, - "rtt_ms": 1.326676, + "rtt_ns": 1605875, + "rtt_ms": 1.605875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:38.242300054Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:19.823156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392996, - "rtt_ms": 1.392996, + "rtt_ns": 1603500, + "rtt_ms": 1.6035, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:38.242332944Z" + "vertex_to": "723", + "timestamp": "2025-11-27T04:03:19.82406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645115, - "rtt_ms": 1.645115, + "rtt_ns": 1608125, + "rtt_ms": 1.608125, "checkpoint": 0, "vertex_from": "72", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:38.243429321Z" + "timestamp": "2025-11-27T04:03:19.824082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694605, - "rtt_ms": 1.694605, + "rtt_ns": 1641291, + "rtt_ms": 1.641291, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "723", - "timestamp": "2025-11-27T01:23:38.243458451Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:03:19.824123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660375, - "rtt_ms": 1.660375, + "rtt_ns": 1320166, + "rtt_ms": 1.320166, "checkpoint": 0, "vertex_from": "72", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:38.243459461Z" + "timestamp": "2025-11-27T04:03:19.824146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837145, - "rtt_ms": 1.837145, + "rtt_ns": 1328958, + "rtt_ms": 1.328958, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:38.243510681Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:19.824173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774464, - "rtt_ms": 1.774464, + "rtt_ns": 1778875, + "rtt_ms": 1.778875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:38.24357816Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:19.824196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875484, - "rtt_ms": 1.875484, + "rtt_ns": 1822667, + "rtt_ms": 1.822667, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "77", - "timestamp": "2025-11-27T01:23:38.24366699Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.824239-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194153, - "rtt_ms": 2.194153, + "rtt_ns": 1315875, + "rtt_ms": 1.315875, "checkpoint": 0, "vertex_from": "72", "vertex_to": "665", - "timestamp": "2025-11-27T01:23:38.244346408Z" + "timestamp": "2025-11-27T04:03:19.824455-08:00" }, { "operation": "add_edge", - "rtt_ns": 2075134, - "rtt_ms": 2.075134, + "rtt_ns": 1319875, + "rtt_ms": 1.319875, "checkpoint": 0, "vertex_from": "72", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:38.244377378Z" + "timestamp": "2025-11-27T04:03:19.824477-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048834, - "rtt_ms": 2.048834, + "rtt_ns": 1504292, + "rtt_ms": 1.504292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:38.244384908Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:19.824519-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251373, - "rtt_ms": 2.251373, + "rtt_ns": 1623000, + "rtt_ms": 1.623, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:38.244389258Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:19.825684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264126, - "rtt_ms": 1.264126, + "rtt_ns": 1558958, + "rtt_ms": 1.558958, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "909", - "timestamp": "2025-11-27T01:23:38.244725977Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:19.825685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690066, - "rtt_ms": 1.690066, + "rtt_ns": 1223750, + "rtt_ms": 1.22375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "937", - "timestamp": "2025-11-27T01:23:38.245269986Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:19.825703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867654, - "rtt_ms": 1.867654, + "rtt_ns": 1528667, + "rtt_ms": 1.528667, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:38.245379315Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:03:19.82577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039764, - "rtt_ms": 2.039764, + "rtt_ns": 1687167, + "rtt_ms": 1.687167, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:38.245499615Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:19.82577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122864, - "rtt_ms": 2.122864, + "rtt_ns": 1591292, + "rtt_ms": 1.591292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:38.245553515Z" + "vertex_to": "937", + "timestamp": "2025-11-27T04:03:19.825789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943195, - "rtt_ms": 1.943195, + "rtt_ns": 1362750, + "rtt_ms": 1.36275, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "244", - "timestamp": "2025-11-27T01:23:38.245612095Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:19.825884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346196, - "rtt_ms": 1.346196, + "rtt_ns": 1442917, + "rtt_ms": 1.442917, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:38.245724914Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:19.825899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437406, - "rtt_ms": 1.437406, + "rtt_ns": 1761042, + "rtt_ms": 1.761042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:38.245785684Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:19.825935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144737, - "rtt_ms": 1.144737, + "rtt_ns": 1816125, + "rtt_ms": 1.816125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:38.245879354Z" + "vertex_to": "909", + "timestamp": "2025-11-27T04:03:19.825964-08:00" }, { "operation": "add_vertex", - "rtt_ns": 637469, - "rtt_ms": 0.637469, + "rtt_ns": 1296084, + "rtt_ms": 1.296084, "checkpoint": 0, - "vertex_from": "605", - "timestamp": "2025-11-27T01:23:38.246021294Z" + "vertex_from": "371", + "timestamp": "2025-11-27T04:03:19.827182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653086, - "rtt_ms": 1.653086, + "rtt_ns": 1430708, + "rtt_ms": 1.430708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:38.246041184Z" + "vertex_to": "103", + "timestamp": "2025-11-27T04:03:19.827221-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305044, - "rtt_ms": 2.305044, + "rtt_ns": 1605375, + "rtt_ms": 1.605375, "checkpoint": 0, "vertex_from": "72", "vertex_to": "664", - "timestamp": "2025-11-27T01:23:38.246696042Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1145497, - "rtt_ms": 1.145497, - "checkpoint": 0, - "vertex_from": "371", - "timestamp": "2025-11-27T01:23:38.246761982Z" + "timestamp": "2025-11-27T04:03:19.827291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523585, - "rtt_ms": 1.523585, + "rtt_ns": 1844459, + "rtt_ms": 1.844459, "checkpoint": 0, "vertex_from": "72", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:38.246796311Z" + "timestamp": "2025-11-27T04:03:19.827548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904475, - "rtt_ms": 1.904475, + "rtt_ns": 1870167, + "rtt_ms": 1.870167, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "103", - "timestamp": "2025-11-27T01:23:38.24745966Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:19.827556-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006234, - "rtt_ms": 2.006234, + "rtt_ns": 1703542, + "rtt_ms": 1.703542, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:38.247508039Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:19.827603-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1843292, + "rtt_ms": 1.843292, + "checkpoint": 0, + "vertex_from": "605", + "timestamp": "2025-11-27T04:03:19.827614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872695, - "rtt_ms": 1.872695, + "rtt_ns": 1895208, + "rtt_ms": 1.895208, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:38.247599219Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:19.827666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739145, - "rtt_ms": 1.739145, + "rtt_ns": 1837417, + "rtt_ms": 1.837417, "checkpoint": 0, "vertex_from": "73", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:38.247620399Z" + "timestamp": "2025-11-27T04:03:19.827802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837615, - "rtt_ms": 1.837615, + "rtt_ns": 2446083, + "rtt_ms": 2.446083, "checkpoint": 0, "vertex_from": "72", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:38.247624539Z" + "timestamp": "2025-11-27T04:03:19.828383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664995, - "rtt_ms": 1.664995, + "rtt_ns": 1271459, + "rtt_ms": 1.271459, "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "605", - "timestamp": "2025-11-27T01:23:38.247686979Z" + "vertex_from": "73", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:19.828564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714635, - "rtt_ms": 1.714635, + "rtt_ns": 1790666, + "rtt_ms": 1.790666, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:38.247757299Z" + "vertex_from": "72", + "vertex_to": "371", + "timestamp": "2025-11-27T04:03:19.828973-08:00" }, { "operation": "add_edge", - "rtt_ns": 964497, - "rtt_ms": 0.964497, + "rtt_ns": 1188959, + "rtt_ms": 1.188959, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.248425337Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.828992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802295, - "rtt_ms": 1.802295, + "rtt_ns": 1406292, + "rtt_ms": 1.406292, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:38.248500307Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:19.829011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795094, - "rtt_ms": 1.795094, + "rtt_ns": 1423250, + "rtt_ms": 1.42325, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "371", - "timestamp": "2025-11-27T01:23:38.248557656Z" + "vertex_to": "605", + "timestamp": "2025-11-27T04:03:19.829038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866345, - "rtt_ms": 1.866345, + "rtt_ns": 1863084, + "rtt_ms": 1.863084, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:38.248663696Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:19.829085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189197, - "rtt_ms": 1.189197, + "rtt_ns": 1421375, + "rtt_ms": 1.421375, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:38.248698326Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:19.829089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163487, - "rtt_ms": 1.163487, + "rtt_ns": 1597167, + "rtt_ms": 1.597167, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.248784966Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:19.829147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302266, - "rtt_ms": 1.302266, + "rtt_ns": 1645333, + "rtt_ms": 1.645333, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.248927965Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.829203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589305, - "rtt_ms": 1.589305, + "rtt_ns": 1567875, + "rtt_ms": 1.567875, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:38.249278684Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.829953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656245, - "rtt_ms": 1.656245, + "rtt_ns": 1580417, + "rtt_ms": 1.580417, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.249414824Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:19.830146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909385, - "rtt_ms": 1.909385, + "rtt_ns": 1258583, + "rtt_ms": 1.258583, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:38.249510114Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:19.830348-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1200216, - "rtt_ms": 1.200216, + "operation": "add_vertex", + "rtt_ns": 1395250, + "rtt_ms": 1.39525, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:38.249701473Z" + "vertex_from": "207", + "timestamp": "2025-11-27T04:03:19.830389-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1315736, - "rtt_ms": 1.315736, + "operation": "add_edge", + "rtt_ns": 1389208, + "rtt_ms": 1.389208, "checkpoint": 0, - "vertex_from": "207", - "timestamp": "2025-11-27T01:23:38.249744383Z" + "vertex_from": "73", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:19.830401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259077, - "rtt_ms": 1.259077, + "rtt_ns": 1559208, + "rtt_ms": 1.559208, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:38.249817703Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.830533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190366, - "rtt_ms": 1.190366, + "rtt_ns": 1466500, + "rtt_ms": 1.4665, "checkpoint": 0, "vertex_from": "73", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:38.249855592Z" + "timestamp": "2025-11-27T04:03:19.830552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310066, - "rtt_ms": 1.310066, + "rtt_ns": 1542958, + "rtt_ms": 1.542958, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.250009732Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:19.830582-08:00" }, { "operation": "add_edge", - "rtt_ns": 855357, - "rtt_ms": 0.855357, + "rtt_ns": 1506167, + "rtt_ms": 1.506167, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "207", - "timestamp": "2025-11-27T01:23:38.25060024Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.830656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105646, - "rtt_ms": 1.105646, + "rtt_ns": 1006708, + "rtt_ms": 1.006708, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:38.25061715Z" + "vertex_to": "122", + "timestamp": "2025-11-27T04:03:19.83159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885124, - "rtt_ms": 1.885124, + "rtt_ns": 1365875, + "rtt_ms": 1.365875, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.25067133Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:19.831716-08:00" }, { "operation": "add_edge", - "rtt_ns": 855537, - "rtt_ms": 0.855537, + "rtt_ns": 2170958, + "rtt_ms": 2.170958, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "98", - "timestamp": "2025-11-27T01:23:38.25067432Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:19.832126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330236, - "rtt_ms": 1.330236, + "rtt_ns": 1486375, + "rtt_ms": 1.486375, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:38.25074632Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:19.832143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826495, - "rtt_ms": 1.826495, + "rtt_ns": 2009791, + "rtt_ms": 2.009791, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:38.25075616Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:19.832158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073637, - "rtt_ms": 1.073637, + "rtt_ns": 1633208, + "rtt_ms": 1.633208, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:38.25077651Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:03:19.832168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560976, - "rtt_ms": 1.560976, + "rtt_ns": 1784625, + "rtt_ms": 1.784625, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:38.25084074Z" + "vertex_to": "207", + "timestamp": "2025-11-27T04:03:19.832174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620056, - "rtt_ms": 1.620056, + "rtt_ns": 1629625, + "rtt_ms": 1.629625, "checkpoint": 0, "vertex_from": "73", "vertex_to": "396", - "timestamp": "2025-11-27T01:23:38.251477588Z" + "timestamp": "2025-11-27T04:03:19.832182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554175, - "rtt_ms": 1.554175, + "rtt_ns": 2985666, + "rtt_ms": 2.985666, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "122", - "timestamp": "2025-11-27T01:23:38.251564977Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:19.83219-08:00" }, { "operation": "add_edge", - "rtt_ns": 987467, - "rtt_ms": 0.987467, + "rtt_ns": 2703250, + "rtt_ms": 2.70325, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:38.251606137Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:19.833106-08:00" }, { "operation": "add_edge", - "rtt_ns": 979657, - "rtt_ms": 0.979657, + "rtt_ns": 1466708, + "rtt_ms": 1.466708, "checkpoint": 0, "vertex_from": "73", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:38.251652217Z" + "timestamp": "2025-11-27T04:03:19.833185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293276, - "rtt_ms": 1.293276, + "rtt_ns": 1619792, + "rtt_ms": 1.619792, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:38.251969306Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:19.833211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220146, - "rtt_ms": 1.220146, + "rtt_ns": 1224583, + "rtt_ms": 1.224583, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:38.251998176Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:19.833408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228076, - "rtt_ms": 1.228076, + "rtt_ns": 1328208, + "rtt_ms": 1.328208, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:38.252070186Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:19.833497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470306, - "rtt_ms": 1.470306, + "rtt_ns": 1503750, + "rtt_ms": 1.50375, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:38.252071706Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:19.833631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536945, - "rtt_ms": 1.536945, + "rtt_ns": 1595583, + "rtt_ms": 1.595583, "checkpoint": 0, "vertex_from": "73", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:38.252294735Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 699698, - "rtt_ms": 0.699698, - "checkpoint": 0, - "vertex_from": "679", - "timestamp": "2025-11-27T01:23:38.252307695Z" + "timestamp": "2025-11-27T04:03:19.833754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590025, - "rtt_ms": 1.590025, + "rtt_ns": 1612459, + "rtt_ms": 1.612459, "checkpoint": 0, "vertex_from": "73", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:38.252339915Z" + "timestamp": "2025-11-27T04:03:19.833756-08:00" }, { "operation": "add_edge", - "rtt_ns": 923557, - "rtt_ms": 0.923557, + "rtt_ns": 1595291, + "rtt_ms": 1.595291, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:38.252402545Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:19.83377-08:00" }, { "operation": "add_edge", - "rtt_ns": 881278, - "rtt_ms": 0.881278, + "rtt_ns": 1603833, + "rtt_ms": 1.603833, "checkpoint": 0, "vertex_from": "73", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:38.252447335Z" + "timestamp": "2025-11-27T04:03:19.833794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412636, - "rtt_ms": 1.412636, + "rtt_ns": 1144667, + "rtt_ms": 1.144667, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.253065703Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:19.834553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385166, - "rtt_ms": 1.385166, + "rtt_ns": 1390500, + "rtt_ms": 1.3905, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "433", - "timestamp": "2025-11-27T01:23:38.253355792Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.834576-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2157104, - "rtt_ms": 2.157104, + "operation": "add_vertex", + "rtt_ns": 1484291, + "rtt_ms": 1.484291, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:38.25415683Z" + "vertex_from": "679", + "timestamp": "2025-11-27T04:03:19.834593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106407, - "rtt_ms": 1.106407, + "rtt_ns": 1100917, + "rtt_ms": 1.100917, "checkpoint": 0, - "vertex_from": "74", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:38.25417452Z" + "vertex_from": "73", + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:19.834858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241946, - "rtt_ms": 1.241946, + "rtt_ns": 1423083, + "rtt_ms": 1.423083, "checkpoint": 0, - "vertex_from": "74", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:38.254600358Z" + "vertex_from": "73", + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:19.834921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2729552, - "rtt_ms": 2.729552, + "rtt_ns": 1320542, + "rtt_ms": 1.320542, "checkpoint": 0, "vertex_from": "73", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:38.254802828Z" + "timestamp": "2025-11-27T04:03:19.834952-08:00" }, { "operation": "add_edge", - "rtt_ns": 2792302, - "rtt_ms": 2.792302, + "rtt_ns": 1948375, + "rtt_ms": 1.948375, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:38.254863828Z" - }, - { - "operation": "add_edge", - "rtt_ns": 806677, - "rtt_ms": 0.806677, - "checkpoint": 0, - "vertex_from": "74", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:38.254965697Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:03:19.83516-08:00" }, { "operation": "add_edge", - "rtt_ns": 792967, - "rtt_ms": 0.792967, + "rtt_ns": 1284542, + "rtt_ms": 1.284542, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:38.254968847Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:19.835862-08:00" }, { "operation": "add_edge", - "rtt_ns": 2684452, - "rtt_ms": 2.684452, + "rtt_ns": 2257625, + "rtt_ms": 2.257625, "checkpoint": 0, "vertex_from": "73", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:38.254980967Z" + "timestamp": "2025-11-27T04:03:19.836013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2687422, - "rtt_ms": 2.687422, + "rtt_ns": 2378500, + "rtt_ms": 2.3785, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "679", - "timestamp": "2025-11-27T01:23:38.254995687Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:19.836174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2632232, - "rtt_ms": 2.632232, + "rtt_ns": 1286333, + "rtt_ms": 1.286333, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.255035857Z" + "vertex_from": "74", + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:19.836208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2628002, - "rtt_ms": 2.628002, + "rtt_ns": 1681917, + "rtt_ms": 1.681917, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:38.255076497Z" + "vertex_from": "74", + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:19.836236-08:00" }, { "operation": "add_edge", - "rtt_ns": 2757782, - "rtt_ms": 2.757782, + "rtt_ns": 2551542, + "rtt_ms": 2.551542, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.255098917Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.836323-08:00" }, { "operation": "add_edge", - "rtt_ns": 932687, - "rtt_ms": 0.932687, + "rtt_ns": 1178708, + "rtt_ms": 1.178708, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:38.255899564Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:19.836339-08:00" }, { "operation": "add_edge", - "rtt_ns": 933997, - "rtt_ms": 0.933997, + "rtt_ns": 1402583, + "rtt_ms": 1.402583, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:38.255916964Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:19.836355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093756, - "rtt_ms": 1.093756, + "rtt_ns": 1778292, + "rtt_ms": 1.778292, "checkpoint": 0, - "vertex_from": "74", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:38.255958574Z" + "vertex_from": "73", + "vertex_to": "679", + "timestamp": "2025-11-27T04:03:19.836371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376006, - "rtt_ms": 1.376006, + "rtt_ns": 1611875, + "rtt_ms": 1.611875, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:38.255978764Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:19.83647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785775, - "rtt_ms": 1.785775, + "rtt_ns": 1507833, + "rtt_ms": 1.507833, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:38.256592063Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:19.837521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728315, - "rtt_ms": 1.728315, + "rtt_ns": 1364417, + "rtt_ms": 1.364417, "checkpoint": 0, "vertex_from": "74", "vertex_to": "338", - "timestamp": "2025-11-27T01:23:38.256699662Z" + "timestamp": "2025-11-27T04:03:19.837541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716755, - "rtt_ms": 1.716755, + "rtt_ns": 1697875, + "rtt_ms": 1.697875, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:38.256755932Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:19.83756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785105, - "rtt_ms": 1.785105, + "rtt_ns": 1251833, + "rtt_ms": 1.251833, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:38.256782622Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:19.837723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684005, - "rtt_ms": 1.684005, + "rtt_ns": 1532167, + "rtt_ms": 1.532167, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:38.256784572Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:19.837741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776705, - "rtt_ms": 1.776705, + "rtt_ns": 1419833, + "rtt_ms": 1.419833, "checkpoint": 0, "vertex_from": "74", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:38.256854922Z" + "timestamp": "2025-11-27T04:03:19.83776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414696, - "rtt_ms": 1.414696, + "rtt_ns": 1524666, + "rtt_ms": 1.524666, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:38.25731589Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:19.837762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449066, - "rtt_ms": 1.449066, + "rtt_ns": 1468709, + "rtt_ms": 1.468709, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:38.25736711Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:19.837792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407056, - "rtt_ms": 1.407056, + "rtt_ns": 1427583, + "rtt_ms": 1.427583, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:38.25738754Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:19.8378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453436, - "rtt_ms": 1.453436, + "rtt_ns": 1807042, + "rtt_ms": 1.807042, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:38.25741395Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:19.838163-08:00" }, { "operation": "add_edge", - "rtt_ns": 745858, - "rtt_ms": 0.745858, + "rtt_ns": 1406875, + "rtt_ms": 1.406875, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:38.25744758Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:19.838968-08:00" }, { "operation": "add_edge", - "rtt_ns": 726998, - "rtt_ms": 0.726998, + "rtt_ns": 1444584, + "rtt_ms": 1.444584, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:38.25748489Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:19.838986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278616, - "rtt_ms": 1.278616, + "rtt_ns": 1498458, + "rtt_ms": 1.498458, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:38.257872239Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:19.839264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037967, - "rtt_ms": 1.037967, + "rtt_ns": 1560375, + "rtt_ms": 1.560375, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:38.257896889Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:19.839302-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1153916, + "rtt_ms": 1.153916, + "checkpoint": 0, + "vertex_from": "74", + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:19.839318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233897, - "rtt_ms": 1.233897, + "rtt_ns": 1605500, + "rtt_ms": 1.6055, "checkpoint": 0, "vertex_from": "74", "vertex_to": "525", - "timestamp": "2025-11-27T01:23:38.258018449Z" + "timestamp": "2025-11-27T04:03:19.839366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339376, - "rtt_ms": 1.339376, + "rtt_ns": 1856208, + "rtt_ms": 1.856208, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:38.258125268Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:19.839378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718966, - "rtt_ms": 1.718966, + "rtt_ns": 1689084, + "rtt_ms": 1.689084, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:38.259036986Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:19.839413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672536, - "rtt_ms": 1.672536, + "rtt_ns": 1255208, + "rtt_ms": 1.255208, "checkpoint": 0, "vertex_from": "74", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:38.259061456Z" + "timestamp": "2025-11-27T04:03:19.840225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233734, - "rtt_ms": 2.233734, + "rtt_ns": 2499416, + "rtt_ms": 2.499416, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:38.259649384Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:19.840301-08:00" }, { "operation": "add_edge", - "rtt_ns": 2300164, - "rtt_ms": 2.300164, + "rtt_ns": 1546417, + "rtt_ms": 1.546417, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:38.259749424Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:19.840534-08:00" }, { "operation": "add_edge", - "rtt_ns": 2490393, - "rtt_ms": 2.490393, + "rtt_ns": 1247083, + "rtt_ms": 1.247083, "checkpoint": 0, "vertex_from": "74", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:38.259976713Z" + "timestamp": "2025-11-27T04:03:19.84055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2478052, - "rtt_ms": 2.478052, + "rtt_ns": 1286791, + "rtt_ms": 1.286791, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:38.260498711Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:19.840552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2659942, - "rtt_ms": 2.659942, + "rtt_ns": 2776083, + "rtt_ms": 2.776083, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:38.260558391Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:19.840569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2725892, - "rtt_ms": 2.725892, + "rtt_ns": 1270375, + "rtt_ms": 1.270375, "checkpoint": 0, "vertex_from": "74", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:38.260600021Z" + "timestamp": "2025-11-27T04:03:19.84059-08:00" }, { "operation": "add_edge", - "rtt_ns": 3269921, - "rtt_ms": 3.269921, + "rtt_ns": 1212084, + "rtt_ms": 1.212084, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:38.260638721Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:19.840591-08:00" }, { "operation": "add_edge", - "rtt_ns": 2544773, - "rtt_ms": 2.544773, + "rtt_ns": 1325625, + "rtt_ms": 1.325625, "checkpoint": 0, "vertex_from": "74", "vertex_to": "138", - "timestamp": "2025-11-27T01:23:38.260671361Z" + "timestamp": "2025-11-27T04:03:19.840739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697105, - "rtt_ms": 1.697105, + "rtt_ns": 1385584, + "rtt_ms": 1.385584, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:38.260760621Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:19.840753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791514, - "rtt_ms": 1.791514, + "rtt_ns": 1276500, + "rtt_ms": 1.2765, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:38.26083093Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:19.841811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302746, - "rtt_ms": 1.302746, + "rtt_ns": 1416625, + "rtt_ms": 1.416625, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:38.26095489Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:03:19.842007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022317, - "rtt_ms": 1.022317, + "rtt_ns": 1524583, + "rtt_ms": 1.524583, "checkpoint": 0, "vertex_from": "74", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:38.26100108Z" + "timestamp": "2025-11-27T04:03:19.842077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250356, - "rtt_ms": 1.250356, + "rtt_ns": 1638958, + "rtt_ms": 1.638958, "checkpoint": 0, "vertex_from": "74", "vertex_to": "679", - "timestamp": "2025-11-27T01:23:38.26100308Z" + "timestamp": "2025-11-27T04:03:19.84219-08:00" }, { "operation": "add_edge", - "rtt_ns": 789958, - "rtt_ms": 0.789958, + "rtt_ns": 1499541, + "rtt_ms": 1.499541, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:38.261290269Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:19.842239-08:00" }, { "operation": "add_edge", - "rtt_ns": 796948, - "rtt_ms": 0.796948, + "rtt_ns": 2033334, + "rtt_ms": 2.033334, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "80", - "timestamp": "2025-11-27T01:23:38.261356649Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:19.842335-08:00" }, { "operation": "add_edge", - "rtt_ns": 795608, - "rtt_ms": 0.795608, + "rtt_ns": 1750541, + "rtt_ms": 1.750541, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:38.261435569Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:03:19.842342-08:00" }, { "operation": "add_edge", - "rtt_ns": 887997, - "rtt_ms": 0.887997, + "rtt_ns": 1709333, + "rtt_ms": 1.709333, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:38.261489858Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:19.842463-08:00" }, { "operation": "add_edge", - "rtt_ns": 829377, - "rtt_ms": 0.829377, + "rtt_ns": 1899500, + "rtt_ms": 1.8995, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:38.261502328Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:19.84247-08:00" }, { "operation": "add_edge", - "rtt_ns": 801687, - "rtt_ms": 0.801687, + "rtt_ns": 2268208, + "rtt_ms": 2.268208, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:38.261563798Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:19.842494-08:00" }, { "operation": "add_edge", - "rtt_ns": 768708, - "rtt_ms": 0.768708, + "rtt_ns": 1282333, + "rtt_ms": 1.282333, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:38.261601068Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:19.843473-08:00" }, { "operation": "add_edge", - "rtt_ns": 615338, - "rtt_ms": 0.615338, + "rtt_ns": 1401500, + "rtt_ms": 1.4015, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:38.261619368Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:19.843481-08:00" }, { "operation": "add_edge", - "rtt_ns": 668058, - "rtt_ms": 0.668058, + "rtt_ns": 1675209, + "rtt_ms": 1.675209, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:38.261624428Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:19.843487-08:00" }, { "operation": "add_edge", - "rtt_ns": 627638, - "rtt_ms": 0.627638, + "rtt_ns": 1645834, + "rtt_ms": 1.645834, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:38.261630078Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:19.843886-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1914833, + "rtt_ms": 1.914833, + "checkpoint": 0, + "vertex_from": "74", + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:19.843923-08:00" }, { "operation": "bfs", - "rtt_ns": 417675556, - "rtt_ms": 417, + "rtt_ns": 20531103166, + "rtt_ms": 20531, "checkpoint": 3, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "462", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "413", - "44", - "212", - "581", - "483", - "985", - "200", - "758", - "597", - "715", - "755", - "535", - "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "807", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "126", - "1", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "343", - "859", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", - "386", - "125", - "76", - "928", - "253", - "232", - "169", - "284", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "892", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", + "249", + "398", + "554", + "821", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "462", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", "101", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "220", - "161", - "217", - "474", - "586", + "932", + "921", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "245", - "703", - "264", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", + "913", + "576", + "116", + "147", "663", - "140", - "167", - "848", - "967", - "890", + "29", + "598", + "667", + "473", + "934", + "853", + "915", + "61", + "47", + "145", + "610", + "341", + "175", + "630", + "900", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "0", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "1001", - "771", - "326", - "346", - "770", - "90", + "198", + "952", + "176", "956", - "328", - "648", - "86", - "431", - "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", - "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", + "292", + "696", + "279", + "885", + "79", + "395", + "844", + "227", "825", - "372", - "203", - "504", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", + "929", + "781", + "487", + "35", + "648", + "559", + "37", + "870", + "1008", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "59", + "174", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "103", + "773", + "970", + "899", "69", - "944", - "45", - "463", - "718", - "453", - "804", - "486", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", + "534", + "784", + "601", + "856", + "954", "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", + "580", + "126", + "839", + "440", + "544", + "78", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "333", + "364", + "861", "577", - "477", - "803", - "62", - "252", - "791", - "26", - "11", - "984", - "139", "192", - "394", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "0", - "752", - "339", - "676", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "31", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "661", + "596", + "413", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "669", + "874", + "25", + "307", + "369", + "887", + "807", + "75", + "992", + "355", + "137", + "973", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", "976", - "348", - "399", - "316", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", + "754", + "592", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", + "107", + "223", "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", + "244", + "457", "670", - "427", + "32", + "280", + "142", + "268", + "342", "767", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "475", + "485", "688", - "795", - "818", - "498", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "1008", - "646", - "91", - "905", - "675", - "434", - "404", - "320", + "585", + "568", "829", - "132", - "143", - "840", - "652", - "194", - "801", - "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", - "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", + "115", + "677", + "299", + "323", "651", - "844", - "505", - "398", - "309", - "560", - "589", - "435", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", + "431", "164", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", "744", - "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "222", - "301", - "425", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "714", + "622", + "385", + "686", + "48", + "250", "248", - "915", - "569", - "624", - "238", + "73", "6", - "455", - "215", - "16", + "802", + "647", + "814", + "90", + "300", + "400", + "31", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", "793", - "822", - "820", - "396", - "563", - "183", - "308", - "650", - "111", - "156" - ], - "timestamp": "2025-11-27T01:23:40.715060247Z" - }, - { - "operation": "bfs", - "rtt_ns": 402888789, - "rtt_ms": 402, - "checkpoint": 3, - "bfs_start": "1", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", + "449", + "483", + "855", + "281", + "710", "334", - "548", - "78", - "41", - "720", - "228", - "988", - "36", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "738", + "571", + "356", + "859", + "691", + "102", + "317", "96", - "708", - "629", - "633", - "613", + "516", + "720", + "910", + "108", + "201", + "127", + "247", "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", "212", - "581", - "483", - "985", - "200", - "758", - "597", - "755", - "535", - "288", - "317", - "133", - "667", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "1001", + "865", + "586", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "87", - "14", - "986", - "496", + "604", + "857", + "324", + "92", + "836", + "468", "712", - "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", + "715", + "18", + "774", "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", + "806", + "820", + "809", + "902", + "253", + "425", + "306", + "160", "93", - "900", - "118", - "981", + "151", + "882", + "723", + "149", + "668", "695", - "306", - "1", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", - "386", - "125", - "76", - "928", - "253", - "232", - "169", - "284", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", + "611", + "236", + "683", + "961", "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "794", - "817", - "18", + "152", "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", - "101", - "403", - "696", - "608", - "23", - "107", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "1", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", + "756", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", "391", - "338", - "231", - "422", - "810", - "571", - "362", + "718", + "197", + "531", "704", - "738", - "798", - "898", + "194", + "728", + "40", + "231", + "62", + "224", + "679", + "466", + "416", + "657", "966", - "543", + "455", + "530", + "1009", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "409", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "636", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:42.408687-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 368325333, + "rtt_ms": 368, + "checkpoint": 3, + "bfs_start": "1", + "bfs_radius": 10, + "bfs_result": [ + "249", + "398", + "554", + "821", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", + "932", + "921", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", + "732", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "245", - "703", - "264", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "667", + "934", + "853", + "915", + "61", + "47", + "145", + "610", "341", - "375", + "175", + "630", + "900", + "656", + "791", + "243", + "796", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", + "401", + "198", + "952", + "176", + "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", + "701", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", + "697", + "292", + "696", + "279", + "885", + "79", "395", - "774", - "899", - "268", + "844", + "227", + "825", + "929", + "781", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", "129", - "421", + "24", + "484", + "59", + "174", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", + "570", + "673", + "3", + "805", + "755", + "301", + "661", + "596", + "682", + "106", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", + "800", + "4", + "25", + "307", + "369", + "887", + "75", + "992", + "355", + "137", + "973", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", + "754", + "592", "587", - "514", - "127", - "832", - "128", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", + "606", + "107", + "223", + "972", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", "140", - "167", - "848", - "967", - "890", - "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "401", - "451", - "920", + "475", + "485", + "688", "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "431", - "184", + "568", + "829", + "115", + "677", + "299", "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", + "651", + "868", + "133", + "91", "21", - "681", - "349", - "596", - "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", + "66", + "181", + "624", + "574", + "760", "72", - "389", - "457", - "490", - "792", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", + "347", + "443", + "182", "294", - "69", - "944", - "45", - "718", - "453", - "804", - "486", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", + "814", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", "388", - "407", - "846", - "577", - "477", - "803", + "156", + "330", + "119", "252", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "497", - "673", - "400", + "664", + "779", + "85", + "42", + "938", + "793", "449", - "861", + "483", + "855", + "281", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", + "865", + "586", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", "92", - "181", - "723", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "253", + "425", + "306", + "160", + "93", + "151", + "882", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "653", - "342", - "768", - "670", - "427", - "767", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "795", - "818", - "498", - "370", - "460", - "787", - "906", + "616", + "270", + "1", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "505", - "398", - "309", - "560", - "589", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", - "744", + "370", "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "222", - "301", - "425", - "269", - "281", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "248", - "915", - "569", - "624", - "238", - "6", - "455", - "215", - "16", - "793", - "822", - "820", - "396", - "563", - "183", - "308", - "650", - "111", - "156" + "195", + "681", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:41.118340435Z" + "timestamp": "2025-11-27T04:03:42.777129-08:00" }, { "operation": "bfs", - "rtt_ns": 389965467, - "rtt_ms": 389, + "rtt_ns": 364796333, + "rtt_ms": 364, "checkpoint": 3, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", - "212", - "581", - "483", - "985", - "200", + "249", + "398", + "554", + "821", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", + "117", "758", - "597", - "755", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "278", "535", - "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", + "837", + "234", + "835", + "396", + "963", + "14", + "172", + "932", + "921", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "83", + "162", + "625", + "238", + "945", + "452", + "132", + "218", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", + "897", + "474", + "111", "240", "730", - "234", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", - "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", - "38", - "73", + "803", + "325", + "908", + "177", + "732", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "500", + "426", "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", - "386", - "125", - "76", - "928", - "232", - "169", - "284", - "602", - "287", - "55", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "504", + "496", "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", - "313", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", + "202", + "913", + "576", + "116", + "147", + "29", + "598", + "667", + "934", + "915", + "61", + "47", "145", - "480", + "610", + "341", + "175", + "630", + "900", + "656", + "791", + "243", + "796", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", "808", - "135", - "533", - "299", - "614", - "540", - "640", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "794", - "817", - "18", - "289", - "465", - "643", + "860", "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", "790", - "384", - "265", - "553", - "32", - "769", + "593", + "401", + "198", + "952", + "176", + "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", + "701", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", + "697", + "292", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", + "781", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", "59", - "162", - "896", - "658", - "888", - "98", + "174", + "923", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "103", "773", - "487", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", - "101", - "403", + "178", + "654", + "65", + "333", + "364", + "861", + "577", + "192", "608", - "23", - "107", - "391", - "338", - "231", - "422", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "3", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", "573", - "916", - "802", - "50", - "546", - "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", - "452", - "190", - "965", - "839", - "557", - "897", - "537", - "518", - "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", - "99", - "996", - "360", - "15", - "992", + "454", + "810", + "453", + "310", "34", - "930", - "245", - "703", - "264", - "2", - "867", + "817", + "121", + "41", + "26", + "104", + "570", + "673", + "3", + "805", + "755", + "301", + "661", + "596", + "682", + "106", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", "800", - "841", - "70", - "424", - "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", + "4", + "25", + "307", + "369", + "887", + "75", + "992", + "355", + "137", + "973", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", "587", - "514", - "127", - "832", - "128", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", + "107", + "223", + "972", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", "140", - "167", - "848", - "967", - "890", - "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "401", - "451", - "920", + "475", + "485", + "688", "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "431", - "184", + "568", + "829", + "115", + "677", + "299", "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", + "651", + "868", + "133", + "91", "21", - "681", - "349", - "596", - "781", - "22", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", + "66", + "181", + "624", + "574", + "760", "72", - "389", - "457", - "490", - "792", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", + "347", + "443", + "182", "294", - "69", - "944", - "45", - "718", - "453", - "804", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", + "814", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", "388", - "407", - "846", - "577", - "477", - "803", + "156", + "330", + "119", "252", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "497", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", + "664", + "779", + "85", + "42", "938", - "527", - "786", - "752", - "339", - "676", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", "92", - "181", - "723", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "976", - "348", - "399", - "316", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "653", - "342", - "768", - "670", - "427", - "767", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "795", - "818", - "498", - "370", - "460", - "787", - "906", + "616", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "505", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "636", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:43.142034-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 355508625, + "rtt_ms": 355, + "checkpoint": 3, + "bfs_start": "4", + "bfs_radius": 10, + "bfs_result": [ + "249", "398", - "309", - "560", - "589", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", + "554", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "278", + "535", + "837", + "234", + "835", + "396", + "963", + "14", + "172", + "932", + "921", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "83", + "162", + "625", + "238", + "945", + "452", + "132", "218", - "438", - "960", - "744", - "412", - "443", - "229", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "461", + "448", + "277", + "788", "74", - "754", - "869", - "67", - "749", - "385", - "204", - "222", - "301", - "425", - "269", - "281", - "778", - "285", - "155", - "160", - "130", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", + "962", + "362", + "363", + "143", + "897", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", + "202", "913", - "816", - "459", - "513", - "39", - "248", + "576", + "116", + "147", + "29", + "598", + "667", + "934", "915", + "61", + "47", + "145", + "610", + "341", + "175", + "630", + "900", + "656", + "791", + "243", + "796", + "428", + "424", + "464", + "354", "569", - "624", - "238", - "6", - "455", - "16", - "793", - "822", - "820", - "396", - "563", - "183", - "308", - "650", - "111", - "156" - ], - "timestamp": "2025-11-27T01:23:41.508728241Z" - }, - { - "operation": "bfs", - "rtt_ns": 382988018, - "rtt_ms": 382, - "checkpoint": 3, - "bfs_start": "4", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", + "979", + "940", + "977", + "808", + "528", + "549", "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", + "401", + "198", + "952", + "176", + "275", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", + "701", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "44", - "212", - "581", - "483", - "985", - "200", + "867", + "914", + "697", + "292", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", + "781", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", + "129", + "24", + "484", + "59", "174", + "923", + "60", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", + "190", + "460", + "721", "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", + "967", + "5", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", + "954", + "433", + "450", + "158", + "329", + "286", "312", - "246", + "553", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", + "570", + "673", + "805", + "755", + "301", + "661", + "596", + "682", + "106", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", + "800", + "4", + "25", "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "377", - "173", - "274", "369", - "170", - "122", - "604", - "30", - "179", + "887", + "75", + "992", + "355", + "137", "973", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "343", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", + "587", "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", - "386", - "125", - "76", - "928", - "232", - "169", - "284", - "602", + "322", + "377", "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", + "964", + "804", + "282", + "186", "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", + "633", + "199", + "786", + "107", + "223", + "972", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "475", + "485", + "688", + "585", "568", - "552", - "790", - "384", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", "265", - "553", - "32", - "769", - "59", - "162", - "896", + "222", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", - "101", - "403", - "608", - "23", - "107", - "391", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "366", + "421", + "276", + "82", + "743", + "812", + "662", "338", - "231", - "422", - "810", - "571", - "362", - "704", - "738", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "540", + "605", + "437", + "77", "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "728", - "199", + "846", + "257", + "179", + "768", + "716", + "97", "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "247", + "367", + "274", "694", - "332", - "573", - "916", - "802", + "613", "50", - "546", - "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", - "452", - "190", - "965", - "839", - "557", - "897", - "537", - "518", - "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", + "459", + "16", + "442", + "519", + "168", "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", - "99", - "996", - "360", - "15", - "992", - "34", - "930", - "245", - "703", - "264", - "867", - "800", - "841", - "70", - "424", - "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", - "796", - "539", - "582", - "615", - "134", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", + "427", + "713", + "769", + "212", + "514", + "36", "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", + "8", + "204", + "352", + "122", "328", - "648", - "86", - "431", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "937", + "161", + "522", + "100", "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", - "781", - "22", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", + "12", "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", + "226", "89", - "305", - "149", "564", - "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "718", - "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "388", - "407", - "846", - "577", - "803", - "252", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", "92", - "181", - "723", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "976", - "348", - "316", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "653", - "342", - "768", - "670", - "427", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "818", - "498", - "370", - "460", - "787", - "906", + "616", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "505", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "636", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:43.497654-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 1498328292, + "rtt_ms": 1498, + "checkpoint": 3, + "bfs_start": "3", + "bfs_radius": 10, + "bfs_result": [ + "249", "398", - "309", - "560", - "589", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", + "554", + "562", + "368", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "278", + "535", + "837", + "234", + "835", + "396", + "963", + "14", + "172", + "932", + "921", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "83", + "162", + "625", + "238", + "945", + "452", + "132", "218", - "438", - "960", - "744", - "412", - "443", - "229", + "595", + "339", + "387", + "22", + "9", + "770", + "435", + "752", + "461", + "448", + "750", + "277", + "788", "74", - "754", - "869", - "67", - "749", - "385", - "204", - "222", - "301", - "425", - "269", - "281", - "778", - "285", - "155", - "160", - "130", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", + "962", + "362", + "363", + "143", + "897", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", "732", - "187", - "555", - "857", - "271", - "244", - "909", - "662", - "226", + "578", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", + "202", "913", + "576", + "116", + "147", + "29", + "598", + "667", + "934", + "915", + "61", + "47", + "145", + "610", + "341", + "175", + "630", + "900", + "656", + "791", + "243", + "796", + "428", + "424", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", + "401", + "198", + "952", + "176", + "275", + "614", + "232", + "579", + "560", "816", - "459", - "513", - "39", - "248", - "915", - "569", - "624", - "238", - "6", - "455", - "16", - "793", - "820", - "396", - "563", + "120", + "849", + "283", + "582", + "701", + "748", "183", - "308", - "650", - "111", - "156" - ], - "timestamp": "2025-11-27T01:23:41.892105288Z" - }, - { - "operation": "bfs", - "rtt_ns": 381315484, - "rtt_ms": 381, - "checkpoint": 3, - "bfs_start": "3", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "163", + "563", + "30", + "536", + "960", + "505", + "503", "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "44", - "212", - "581", - "483", - "985", - "200", + "867", + "914", + "697", + "292", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", + "781", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "652", + "848", + "27", + "707", + "911", + "71", "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", + "129", + "24", + "484", + "59", "174", + "923", + "60", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "87", - "14", - "986", - "496", - "712", - "644", - "782", - "592", + "190", + "460", + "721", "872", - "725", - "35", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", + "967", + "5", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", + "954", + "433", + "450", + "158", + "329", + "286", "312", - "246", + "553", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", + "570", + "673", + "3", + "805", + "755", + "301", + "661", + "596", + "682", + "106", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", + "800", + "4", + "25", "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "377", - "173", - "274", "369", - "170", - "122", - "604", - "30", - "179", + "887", + "75", + "992", + "355", + "137", "973", - "842", - "470", - "970", - "9", - "38", - "73", - "397", - "343", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", + "587", "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", - "386", - "125", - "76", - "928", - "232", - "169", - "284", - "602", + "322", + "377", "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", + "964", + "804", + "282", + "186", "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", + "633", + "199", + "786", + "107", + "223", + "972", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "52", + "475", + "485", + "688", + "585", "568", - "552", - "790", - "384", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", "265", - "553", - "32", - "769", - "59", - "162", - "896", + "222", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "77", - "163", - "101", - "403", - "608", - "23", - "107", - "391", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "366", + "421", + "276", + "82", + "743", + "812", + "662", "338", - "231", - "422", - "810", - "571", - "362", - "704", - "738", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "540", + "605", + "437", + "77", "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "728", - "199", + "846", + "257", + "179", + "768", + "716", + "97", "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "247", + "367", + "274", "694", - "332", - "3", - "573", - "916", - "802", + "613", "50", - "546", - "172", - "247", - "748", - "450", - "366", - "290", - "259", - "531", - "250", - "46", - "870", - "161", - "217", - "474", - "586", - "452", - "190", - "965", - "839", - "557", - "897", - "537", - "518", - "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", + "459", + "16", + "442", + "519", + "168", "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", - "99", - "996", - "360", - "15", - "992", - "34", - "930", - "245", - "703", - "264", - "867", - "800", - "841", - "70", - "424", - "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", - "796", - "539", - "582", - "615", - "134", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", + "427", + "713", + "769", + "212", + "514", + "36", "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", + "8", + "204", + "352", + "122", "328", - "648", - "86", - "431", + "717", + "269", + "981", + "520", + "414", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "937", + "161", + "522", + "100", "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", - "781", - "22", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", + "12", "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", + "226", "89", - "305", - "149", "564", - "178", - "177", - "355", - "405", - "825", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", "372", - "203", - "504", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "718", - "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "388", - "407", - "846", - "577", - "803", - "252", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", + "131", + "15", + "492", + "604", + "857", + "324", "92", - "181", - "723", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "976", - "348", - "316", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "653", - "342", - "768", - "670", - "427", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "818", - "498", - "370", - "460", - "787", - "906", + "616", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "505", - "398", - "309", - "560", - "589", - "435", - "164", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", - "744", + "370", "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "222", - "301", - "425", - "269", - "281", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "248", - "915", - "569", - "624", - "238", - "6", - "455", - "16", - "793", - "822", - "820", - "396", - "563", - "183", - "308", - "650", - "111", - "156" + "195", + "681", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:42.2738653Z" + "timestamp": "2025-11-27T04:03:44.996096-08:00" }, { "operation": "add_edge", - "rtt_ns": 3063541, - "rtt_ms": 3.063541, + "rtt_ns": 1247000, + "rtt_ms": 1.247, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.276962671Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:44.9974-08:00" }, { "operation": "add_edge", - "rtt_ns": 3141541, - "rtt_ms": 3.141541, + "rtt_ns": 1351416, + "rtt_ms": 1.351416, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.277111131Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:44.997458-08:00" }, { "operation": "add_edge", - "rtt_ns": 4190178, - "rtt_ms": 4.190178, + "rtt_ns": 1473625, + "rtt_ms": 1.473625, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:42.278190138Z" + "vertex_to": "683", + "timestamp": "2025-11-27T04:03:44.997612-08:00" }, { "operation": "add_edge", - "rtt_ns": 4251398, - "rtt_ms": 4.251398, + "rtt_ns": 1521625, + "rtt_ms": 1.521625, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.278233848Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:44.99763-08:00" }, { "operation": "add_edge", - "rtt_ns": 4274338, - "rtt_ms": 4.274338, + "rtt_ns": 1490958, + "rtt_ms": 1.490958, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.278259428Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:44.997642-08:00" }, { "operation": "add_edge", - "rtt_ns": 4401907, - "rtt_ms": 4.401907, + "rtt_ns": 1508333, + "rtt_ms": 1.508333, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.278350907Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:44.997646-08:00" }, { "operation": "add_edge", - "rtt_ns": 4416817, - "rtt_ms": 4.416817, + "rtt_ns": 1531750, + "rtt_ms": 1.53175, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "683", - "timestamp": "2025-11-27T01:23:42.278405987Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:44.997692-08:00" }, { "operation": "add_edge", - "rtt_ns": 4448117, - "rtt_ms": 4.448117, + "rtt_ns": 1601666, + "rtt_ms": 1.601666, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:42.278413747Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:44.997738-08:00" }, { "operation": "add_edge", - "rtt_ns": 4558447, - "rtt_ms": 4.558447, + "rtt_ns": 1633458, + "rtt_ms": 1.633458, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.278522267Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:44.997762-08:00" }, { "operation": "add_edge", - "rtt_ns": 4635367, - "rtt_ms": 4.635367, + "rtt_ns": 1613458, + "rtt_ms": 1.613458, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:42.278556057Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:44.997777-08:00" }, { "operation": "add_edge", - "rtt_ns": 2342233, - "rtt_ms": 2.342233, + "rtt_ns": 1247750, + "rtt_ms": 1.24775, "checkpoint": 0, - "vertex_from": "74", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.279455584Z" + "vertex_from": "75", + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:44.998861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2600973, - "rtt_ms": 2.600973, + "rtt_ns": 1460208, + "rtt_ms": 1.460208, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.279567944Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:44.99892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435156, - "rtt_ms": 1.435156, + "rtt_ns": 1299208, + "rtt_ms": 1.299208, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:42.279628244Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:44.998948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426166, - "rtt_ms": 1.426166, + "rtt_ns": 1625250, + "rtt_ms": 1.62525, "checkpoint": 0, - "vertex_from": "75", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:42.279661194Z" + "vertex_from": "74", + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:44.999028-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048814, - "rtt_ms": 2.048814, + "rtt_ns": 1481125, + "rtt_ms": 1.481125, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:42.280459101Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:44.999124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241813, - "rtt_ms": 2.241813, + "rtt_ns": 1375250, + "rtt_ms": 1.37525, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.280503901Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:44.999137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994044, - "rtt_ms": 1.994044, + "rtt_ns": 1464458, + "rtt_ms": 1.464458, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.280518101Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:44.999158-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191934, - "rtt_ms": 2.191934, + "rtt_ns": 1422166, + "rtt_ms": 1.422166, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.280544981Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:44.999162-08:00" }, { "operation": "add_edge", - "rtt_ns": 2535013, - "rtt_ms": 2.535013, + "rtt_ns": 1550167, + "rtt_ms": 1.550167, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.2809504Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:44.999181-08:00" }, { "operation": "add_edge", - "rtt_ns": 2461503, - "rtt_ms": 2.461503, + "rtt_ns": 1509834, + "rtt_ms": 1.509834, "checkpoint": 0, "vertex_from": "75", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.28102017Z" + "timestamp": "2025-11-27T04:03:44.999294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649415, - "rtt_ms": 1.649415, + "rtt_ns": 1050083, + "rtt_ms": 1.050083, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:42.281107169Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.00008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693865, - "rtt_ms": 1.693865, + "rtt_ns": 1303458, + "rtt_ms": 1.303458, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.281264189Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.000252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665745, - "rtt_ms": 1.665745, + "rtt_ns": 1343125, + "rtt_ms": 1.343125, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.281327919Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.000266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2292153, - "rtt_ms": 2.292153, + "rtt_ns": 1466584, + "rtt_ms": 1.466584, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.281922027Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:45.000328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520096, - "rtt_ms": 1.520096, + "rtt_ns": 1271291, + "rtt_ms": 1.271291, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.282025197Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:45.000453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538896, - "rtt_ms": 1.538896, + "rtt_ns": 1331250, + "rtt_ms": 1.33125, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.282059267Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.000494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168886, - "rtt_ms": 1.168886, + "rtt_ns": 1395083, + "rtt_ms": 1.395083, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:42.282121186Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.000533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694035, - "rtt_ms": 1.694035, + "rtt_ns": 1434041, + "rtt_ms": 1.434041, "checkpoint": 0, "vertex_from": "75", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.282155906Z" + "timestamp": "2025-11-27T04:03:45.000559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704885, - "rtt_ms": 1.704885, + "rtt_ns": 1285542, + "rtt_ms": 1.285542, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.282251676Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:45.000582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413225, - "rtt_ms": 1.413225, + "rtt_ns": 1552000, + "rtt_ms": 1.552, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:42.282434775Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:45.000711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899655, - "rtt_ms": 1.899655, + "rtt_ns": 1542500, + "rtt_ms": 1.5425, "checkpoint": 0, "vertex_from": "75", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.283008684Z" + "timestamp": "2025-11-27T04:03:45.001623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869664, - "rtt_ms": 1.869664, + "rtt_ns": 1396917, + "rtt_ms": 1.396917, "checkpoint": 0, "vertex_from": "75", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.283198703Z" + "timestamp": "2025-11-27T04:03:45.001663-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1388625, + "rtt_ms": 1.388625, + "checkpoint": 0, + "vertex_from": "76", + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:45.001719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940304, - "rtt_ms": 1.940304, + "rtt_ns": 1636167, + "rtt_ms": 1.636167, "checkpoint": 0, "vertex_from": "75", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.283205633Z" + "timestamp": "2025-11-27T04:03:45.001889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321496, - "rtt_ms": 1.321496, + "rtt_ns": 1573250, + "rtt_ms": 1.57325, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:42.283246513Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:45.002027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186536, - "rtt_ms": 1.186536, + "rtt_ns": 1539583, + "rtt_ms": 1.539583, "checkpoint": 0, "vertex_from": "76", "vertex_to": "139", - "timestamp": "2025-11-27T01:23:42.283247673Z" + "timestamp": "2025-11-27T04:03:45.002034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251466, - "rtt_ms": 1.251466, + "rtt_ns": 1559208, + "rtt_ms": 1.559208, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:42.283278543Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.002093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171677, - "rtt_ms": 1.171677, + "rtt_ns": 1395458, + "rtt_ms": 1.395458, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.283294883Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:45.002107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303456, - "rtt_ms": 1.303456, + "rtt_ns": 1672167, + "rtt_ms": 1.672167, "checkpoint": 0, "vertex_from": "76", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.283460832Z" + "timestamp": "2025-11-27T04:03:45.002232-08:00" }, { "operation": "add_edge", - "rtt_ns": 939457, - "rtt_ms": 0.939457, + "rtt_ns": 1851583, + "rtt_ms": 1.851583, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:42.28413915Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:03:45.002434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983974, - "rtt_ms": 1.983974, + "rtt_ns": 1811791, + "rtt_ms": 1.811791, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "82", - "timestamp": "2025-11-27T01:23:42.28423644Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.003533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901475, - "rtt_ms": 1.901475, + "rtt_ns": 1923917, + "rtt_ms": 1.923917, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:42.28433805Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.003549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787094, - "rtt_ms": 1.787094, + "rtt_ns": 1896000, + "rtt_ms": 1.896, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.284796798Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:45.00356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586745, - "rtt_ms": 1.586745, + "rtt_ns": 1528000, + "rtt_ms": 1.528, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.284835528Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:45.003761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784705, - "rtt_ms": 1.784705, + "rtt_ns": 1884458, + "rtt_ms": 1.884458, "checkpoint": 0, "vertex_from": "76", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.285034138Z" + "timestamp": "2025-11-27T04:03:45.003774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740695, - "rtt_ms": 1.740695, + "rtt_ns": 1793250, + "rtt_ms": 1.79325, "checkpoint": 0, "vertex_from": "76", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.285036998Z" + "timestamp": "2025-11-27T04:03:45.003887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838215, - "rtt_ms": 1.838215, + "rtt_ns": 2256791, + "rtt_ms": 2.256791, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.285046748Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:45.004364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772575, - "rtt_ms": 1.772575, + "rtt_ns": 1992000, + "rtt_ms": 1.992, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.285052828Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:45.004431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647485, - "rtt_ms": 1.647485, + "rtt_ns": 2437209, + "rtt_ms": 2.437209, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:42.285109707Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.004465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742135, - "rtt_ms": 1.742135, + "rtt_ns": 2437042, + "rtt_ms": 2.437042, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:42.285883445Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:45.004472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047427, - "rtt_ms": 1.047427, + "rtt_ns": 1264084, + "rtt_ms": 1.264084, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:42.285884285Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.004814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641625, - "rtt_ms": 1.641625, + "rtt_ns": 1056041, + "rtt_ms": 1.056041, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:42.285981965Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:03:45.004831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205087, - "rtt_ms": 1.205087, + "rtt_ns": 1600000, + "rtt_ms": 1.6, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.286002905Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:45.005137-08:00" }, { "operation": "add_edge", - "rtt_ns": 985067, - "rtt_ms": 0.985067, + "rtt_ns": 1587708, + "rtt_ms": 1.587708, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.286038745Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:45.005149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874224, - "rtt_ms": 1.874224, + "rtt_ns": 1402250, + "rtt_ms": 1.40225, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:42.286111924Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:45.005165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621875, - "rtt_ms": 1.621875, + "rtt_ns": 1284167, + "rtt_ms": 1.284167, "checkpoint": 0, "vertex_from": "76", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.286670843Z" + "timestamp": "2025-11-27T04:03:45.005172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672505, - "rtt_ms": 1.672505, + "rtt_ns": 1419042, + "rtt_ms": 1.419042, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:42.286708003Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.005886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700075, - "rtt_ms": 1.700075, + "rtt_ns": 1560833, + "rtt_ms": 1.560833, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "805", - "timestamp": "2025-11-27T01:23:42.286738553Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.005928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651226, - "rtt_ms": 1.651226, + "rtt_ns": 1700375, + "rtt_ms": 1.700375, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.286765123Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.006173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126677, - "rtt_ms": 1.126677, + "rtt_ns": 1373875, + "rtt_ms": 1.373875, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.287012912Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.006189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303606, - "rtt_ms": 1.303606, + "rtt_ns": 1837000, + "rtt_ms": 1.837, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.287190541Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1127037, - "rtt_ms": 1.127037, - "checkpoint": 0, - "vertex_from": "698", - "timestamp": "2025-11-27T01:23:42.287241881Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.006269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251586, - "rtt_ms": 1.251586, + "rtt_ns": 1555458, + "rtt_ms": 1.555458, "checkpoint": 0, "vertex_from": "76", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.287255681Z" + "timestamp": "2025-11-27T04:03:45.006387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232526, - "rtt_ms": 1.232526, + "rtt_ns": 1845083, + "rtt_ms": 1.845083, "checkpoint": 0, "vertex_from": "76", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.287272581Z" + "timestamp": "2025-11-27T04:03:45.006984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306206, - "rtt_ms": 1.306206, + "rtt_ns": 1832875, + "rtt_ms": 1.832875, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.287289491Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:45.007006-08:00" }, { "operation": "add_edge", - "rtt_ns": 647338, - "rtt_ms": 0.647338, + "rtt_ns": 1855709, + "rtt_ms": 1.855709, "checkpoint": 0, "vertex_from": "76", "vertex_to": "646", - "timestamp": "2025-11-27T01:23:42.287319821Z" + "timestamp": "2025-11-27T04:03:45.007021-08:00" }, { - "operation": "add_edge", - "rtt_ns": 872427, - "rtt_ms": 0.872427, + "operation": "add_vertex", + "rtt_ns": 1963917, + "rtt_ms": 1.963917, "checkpoint": 0, - "vertex_from": "76", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:42.287887629Z" + "vertex_from": "698", + "timestamp": "2025-11-27T04:03:45.007115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237147, - "rtt_ms": 1.237147, + "rtt_ns": 1240792, + "rtt_ms": 1.240792, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.288007789Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:03:45.007416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321056, - "rtt_ms": 1.321056, + "rtt_ns": 1035375, + "rtt_ms": 1.035375, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:42.288060569Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:03:45.007424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353986, - "rtt_ms": 1.353986, + "rtt_ns": 1769375, + "rtt_ms": 1.769375, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:42.288063429Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:45.007657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618396, - "rtt_ms": 1.618396, + "rtt_ns": 1483292, + "rtt_ms": 1.483292, "checkpoint": 0, "vertex_from": "76", "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.288810327Z" + "timestamp": "2025-11-27T04:03:45.007673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658005, - "rtt_ms": 1.658005, + "rtt_ns": 2026667, + "rtt_ms": 2.026667, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "698", - "timestamp": "2025-11-27T01:23:42.288900376Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.007955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650975, - "rtt_ms": 1.650975, + "rtt_ns": 1702542, + "rtt_ms": 1.702542, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "844", - "timestamp": "2025-11-27T01:23:42.288926156Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:45.007973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628095, - "rtt_ms": 1.628095, + "rtt_ns": 1165750, + "rtt_ms": 1.16575, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.288949116Z" + "vertex_to": "698", + "timestamp": "2025-11-27T04:03:45.008281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691635, - "rtt_ms": 1.691635, + "rtt_ns": 1341250, + "rtt_ms": 1.34125, "checkpoint": 0, "vertex_from": "76", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.288982126Z" + "timestamp": "2025-11-27T04:03:45.008328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363606, - "rtt_ms": 1.363606, + "rtt_ns": 1644000, + "rtt_ms": 1.644, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.289252265Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.008652-08:00" }, { - "operation": "add_edge", - "rtt_ns": 823668, - "rtt_ms": 0.823668, + "operation": "add_vertex", + "rtt_ns": 1283375, + "rtt_ms": 1.283375, "checkpoint": 0, - "vertex_from": "77", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:42.289750634Z" + "vertex_from": "444", + "timestamp": "2025-11-27T04:03:45.008704-08:00" }, { "operation": "add_edge", - "rtt_ns": 961107, - "rtt_ms": 0.961107, + "rtt_ns": 1720125, + "rtt_ms": 1.720125, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "718", - "timestamp": "2025-11-27T01:23:42.289772304Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.008742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710565, - "rtt_ms": 1.710565, + "rtt_ns": 1551542, + "rtt_ms": 1.551542, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.289774864Z" - }, - { - "operation": "add_edge", - "rtt_ns": 894918, - "rtt_ms": 0.894918, - "checkpoint": 0, - "vertex_from": "77", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.289796594Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:45.008977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794785, - "rtt_ms": 1.794785, + "rtt_ns": 1363416, + "rtt_ms": 1.363416, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:42.289856154Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.009022-08:00" }, { "operation": "add_edge", - "rtt_ns": 2617353, - "rtt_ms": 2.617353, + "rtt_ns": 1387250, + "rtt_ms": 1.38725, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.289874294Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:03:45.009061-08:00" }, { "operation": "add_edge", - "rtt_ns": 903008, - "rtt_ms": 0.903008, + "rtt_ns": 1263750, + "rtt_ms": 1.26375, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.289887394Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.00922-08:00" }, { "operation": "add_edge", - "rtt_ns": 937168, - "rtt_ms": 0.937168, + "rtt_ns": 1288459, + "rtt_ms": 1.288459, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.289887584Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2028944, - "rtt_ms": 2.028944, - "checkpoint": 0, - "vertex_from": "444", - "timestamp": "2025-11-27T01:23:42.290041423Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:45.009263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251847, - "rtt_ms": 1.251847, + "rtt_ns": 1499875, + "rtt_ms": 1.499875, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:42.290505782Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.00983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049147, - "rtt_ms": 1.049147, + "rtt_ns": 1633834, + "rtt_ms": 1.633834, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:42.290801861Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.009917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170107, - "rtt_ms": 1.170107, + "rtt_ns": 1105875, + "rtt_ms": 1.105875, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.290944341Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.010168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171867, - "rtt_ms": 1.171867, + "rtt_ns": 1440084, + "rtt_ms": 1.440084, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:42.290947641Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:45.010184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054217, - "rtt_ms": 1.054217, + "rtt_ns": 1695750, + "rtt_ms": 1.69575, "checkpoint": 0, "vertex_from": "76", "vertex_to": "444", - "timestamp": "2025-11-27T01:23:42.29109604Z" + "timestamp": "2025-11-27T04:03:45.0104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262136, - "rtt_ms": 1.262136, + "rtt_ns": 1487042, + "rtt_ms": 1.487042, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.2911375Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.010465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341436, - "rtt_ms": 1.341436, + "rtt_ns": 1828375, + "rtt_ms": 1.828375, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.29114Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:45.010482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264286, - "rtt_ms": 1.264286, + "rtt_ns": 1642333, + "rtt_ms": 1.642333, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.2911532Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:45.010665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315326, - "rtt_ms": 1.315326, + "rtt_ns": 1545000, + "rtt_ms": 1.545, "checkpoint": 0, "vertex_from": "77", "vertex_to": "112", - "timestamp": "2025-11-27T01:23:42.29117276Z" + "timestamp": "2025-11-27T04:03:45.010767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764025, - "rtt_ms": 1.764025, + "rtt_ns": 1549041, + "rtt_ms": 1.549041, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.291652739Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.010814-08:00" }, { "operation": "add_edge", - "rtt_ns": 805097, - "rtt_ms": 0.805097, + "rtt_ns": 1397541, + "rtt_ms": 1.397541, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:42.291754038Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:45.011316-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1532208, + "rtt_ms": 1.532208, + "checkpoint": 0, + "vertex_from": "77", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.011363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417106, - "rtt_ms": 1.417106, + "rtt_ns": 1418625, + "rtt_ms": 1.418625, "checkpoint": 0, "vertex_from": "77", "vertex_to": "342", - "timestamp": "2025-11-27T01:23:42.291924208Z" + "timestamp": "2025-11-27T04:03:45.011588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138487, - "rtt_ms": 1.138487, + "rtt_ns": 1448833, + "rtt_ms": 1.448833, "checkpoint": 0, "vertex_from": "77", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.291944308Z" + "timestamp": "2025-11-27T04:03:45.011634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012177, - "rtt_ms": 1.012177, + "rtt_ns": 2162166, + "rtt_ms": 2.162166, "checkpoint": 0, "vertex_from": "77", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.291957738Z" + "timestamp": "2025-11-27T04:03:45.012564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568356, - "rtt_ms": 1.568356, + "rtt_ns": 2114709, + "rtt_ms": 2.114709, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:42.292666626Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:45.012581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537946, - "rtt_ms": 1.537946, + "rtt_ns": 1964125, + "rtt_ms": 1.964125, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.292691596Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.012631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030247, - "rtt_ms": 1.030247, + "rtt_ns": 2162709, + "rtt_ms": 2.162709, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.292693656Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:45.012646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576645, - "rtt_ms": 1.576645, + "rtt_ns": 1287125, + "rtt_ms": 1.287125, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:42.292717945Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.012652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543585, - "rtt_ms": 1.543585, + "rtt_ns": 1520917, + "rtt_ms": 1.520917, "checkpoint": 0, "vertex_from": "77", "vertex_to": "81", - "timestamp": "2025-11-27T01:23:42.292717945Z" + "timestamp": "2025-11-27T04:03:45.012839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584895, - "rtt_ms": 1.584895, + "rtt_ns": 2083166, + "rtt_ms": 2.083166, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.292723355Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:45.012853-08:00" }, { "operation": "add_edge", - "rtt_ns": 803707, - "rtt_ms": 0.803707, + "rtt_ns": 1927834, + "rtt_ms": 1.927834, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.292728975Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.013518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184737, - "rtt_ms": 1.184737, + "rtt_ns": 2745500, + "rtt_ms": 2.7455, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.292940675Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.013561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035597, - "rtt_ms": 1.035597, + "rtt_ns": 1928583, + "rtt_ms": 1.928583, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.292980985Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.013563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643645, - "rtt_ms": 1.643645, + "rtt_ns": 987542, + "rtt_ms": 0.987542, "checkpoint": 0, - "vertex_from": "77", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.293603813Z" + "vertex_from": "78", + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:45.013828-08:00" }, { "operation": "add_edge", - "rtt_ns": 958257, - "rtt_ms": 0.958257, + "rtt_ns": 1389209, + "rtt_ms": 1.389209, "checkpoint": 0, - "vertex_from": "77", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:42.293626823Z" + "vertex_from": "78", + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.014042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014717, - "rtt_ms": 1.014717, + "rtt_ns": 1473542, + "rtt_ms": 1.473542, "checkpoint": 0, - "vertex_from": "78", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:42.293739682Z" + "vertex_from": "77", + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.014055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080656, - "rtt_ms": 1.080656, + "rtt_ns": 1479667, + "rtt_ms": 1.479667, "checkpoint": 0, "vertex_from": "77", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.293773592Z" + "timestamp": "2025-11-27T04:03:45.014126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080657, - "rtt_ms": 1.080657, + "rtt_ns": 1781375, + "rtt_ms": 1.781375, "checkpoint": 0, - "vertex_from": "78", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.293799982Z" + "vertex_from": "77", + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:45.014415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110656, - "rtt_ms": 1.110656, + "rtt_ns": 1863167, + "rtt_ms": 1.863167, "checkpoint": 0, - "vertex_from": "78", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.293805902Z" + "vertex_from": "77", + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.014428-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1733905, - "rtt_ms": 1.733905, + "rtt_ns": 1586958, + "rtt_ms": 1.586958, "checkpoint": 0, "vertex_from": "884", - "timestamp": "2025-11-27T01:23:42.2944546Z" + "timestamp": "2025-11-27T04:03:45.014441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617495, - "rtt_ms": 1.617495, - "checkpoint": 0, - "vertex_from": "78", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:42.29455973Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1639115, - "rtt_ms": 1.639115, + "rtt_ns": 832000, + "rtt_ms": 0.832, "checkpoint": 0, "vertex_from": "78", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.29462108Z" + "timestamp": "2025-11-27T04:03:45.014661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891595, - "rtt_ms": 1.891595, + "rtt_ns": 1386458, + "rtt_ms": 1.386458, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.29462211Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:45.014907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978704, - "rtt_ms": 1.978704, + "rtt_ns": 1711875, + "rtt_ms": 1.711875, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.295606717Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:45.015277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929695, - "rtt_ms": 1.929695, + "rtt_ns": 1727666, + "rtt_ms": 1.727666, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.295670987Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.015289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2407953, - "rtt_ms": 2.407953, + "rtt_ns": 1639958, + "rtt_ms": 1.639958, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.296013236Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.015696-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331743, - "rtt_ms": 2.331743, + "rtt_ns": 1596833, + "rtt_ms": 1.596833, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.296106405Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.015724-08:00" }, { "operation": "add_edge", - "rtt_ns": 2361523, - "rtt_ms": 2.361523, + "rtt_ns": 1594583, + "rtt_ms": 1.594583, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.296168365Z" + "vertex_to": "884", + "timestamp": "2025-11-27T04:03:45.016036-08:00" }, { "operation": "add_edge", - "rtt_ns": 651868, - "rtt_ms": 0.651868, + "rtt_ns": 1672000, + "rtt_ms": 1.672, "checkpoint": 0, - "vertex_from": "79", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.296824433Z" + "vertex_from": "78", + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.0161-08:00" }, { "operation": "add_edge", - "rtt_ns": 3112721, - "rtt_ms": 3.112721, + "rtt_ns": 1707417, + "rtt_ms": 1.707417, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.296913483Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:45.016123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2486093, - "rtt_ms": 2.486093, + "rtt_ns": 1477083, + "rtt_ms": 1.477083, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "884", - "timestamp": "2025-11-27T01:23:42.296940953Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.016138-08:00" }, { "operation": "add_edge", - "rtt_ns": 2424863, - "rtt_ms": 2.424863, + "rtt_ns": 1243875, + "rtt_ms": 1.243875, "checkpoint": 0, "vertex_from": "78", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.296985843Z" + "timestamp": "2025-11-27T04:03:45.016152-08:00" }, { "operation": "add_edge", - "rtt_ns": 2424883, - "rtt_ms": 2.424883, + "rtt_ns": 2114625, + "rtt_ms": 2.114625, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.297048093Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.016157-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032884, - "rtt_ms": 2.032884, + "rtt_ns": 1205334, + "rtt_ms": 1.205334, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.297641281Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.016496-08:00" }, { "operation": "add_edge", - "rtt_ns": 3117541, - "rtt_ms": 3.117541, + "rtt_ns": 1313500, + "rtt_ms": 1.3135, "checkpoint": 0, "vertex_from": "78", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.297739521Z" + "timestamp": "2025-11-27T04:03:45.016591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752146, - "rtt_ms": 1.752146, + "rtt_ns": 1603541, + "rtt_ms": 1.603541, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:42.297861021Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:45.01733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868484, - "rtt_ms": 1.868484, + "rtt_ns": 1644958, + "rtt_ms": 1.644958, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.29788252Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.017344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065047, - "rtt_ms": 1.065047, + "rtt_ns": 1205916, + "rtt_ms": 1.205916, "checkpoint": 0, "vertex_from": "79", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:42.29789109Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.017358-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231193, - "rtt_ms": 2.231193, + "rtt_ns": 1317708, + "rtt_ms": 1.317708, "checkpoint": 0, - "vertex_from": "78", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:42.29791431Z" + "vertex_from": "79", + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:45.017457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032307, - "rtt_ms": 1.032307, + "rtt_ns": 1345750, + "rtt_ms": 1.34575, "checkpoint": 0, "vertex_from": "79", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.29794722Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.01747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725425, - "rtt_ms": 1.725425, + "rtt_ns": 1355416, + "rtt_ms": 1.355416, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.298774878Z" + "vertex_from": "79", + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.017515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811965, - "rtt_ms": 1.811965, + "rtt_ns": 1322875, + "rtt_ms": 1.322875, "checkpoint": 0, "vertex_from": "79", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.298798558Z" + "timestamp": "2025-11-27T04:03:45.017819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892685, - "rtt_ms": 1.892685, + "rtt_ns": 1813917, + "rtt_ms": 1.813917, "checkpoint": 0, - "vertex_from": "79", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.298834308Z" + "vertex_from": "78", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.017851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201556, - "rtt_ms": 1.201556, + "rtt_ns": 1519333, + "rtt_ms": 1.519333, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:42.298942727Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.018112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235096, - "rtt_ms": 1.235096, + "rtt_ns": 2213541, + "rtt_ms": 2.213541, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.299097487Z" + "vertex_from": "78", + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:45.018316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458876, - "rtt_ms": 1.458876, + "rtt_ns": 1812958, + "rtt_ms": 1.812958, "checkpoint": 0, "vertex_from": "80", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.299102347Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1333597, - "rtt_ms": 1.333597, - "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.299225737Z" + "timestamp": "2025-11-27T04:03:45.019145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965015, - "rtt_ms": 1.965015, + "rtt_ns": 1812750, + "rtt_ms": 1.81275, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.299848735Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.019172-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054685, - "rtt_ms": 2.054685, + "rtt_ns": 1672167, + "rtt_ms": 1.672167, "checkpoint": 0, "vertex_from": "80", "vertex_to": "401", - "timestamp": "2025-11-27T01:23:42.299970025Z" + "timestamp": "2025-11-27T04:03:45.019189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047497, - "rtt_ms": 1.047497, + "rtt_ns": 1917250, + "rtt_ms": 1.91725, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "286", - "timestamp": "2025-11-27T01:23:42.299991334Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:45.019262-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052824, - "rtt_ms": 2.052824, + "rtt_ns": 1413334, + "rtt_ms": 1.413334, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:42.300001644Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:45.019265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174666, - "rtt_ms": 1.174666, + "rtt_ns": 1808875, + "rtt_ms": 1.808875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.300010004Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.01928-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1328666, - "rtt_ms": 1.328666, + "rtt_ns": 1168000, + "rtt_ms": 1.168, "checkpoint": 0, "vertex_from": "567", - "timestamp": "2025-11-27T01:23:42.300129174Z" + "timestamp": "2025-11-27T04:03:45.019281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381796, - "rtt_ms": 1.381796, + "rtt_ns": 1602500, + "rtt_ms": 1.6025, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:42.300159014Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:45.019423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571395, - "rtt_ms": 1.571395, + "rtt_ns": 2060208, + "rtt_ms": 2.060208, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:42.300798162Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.019519-08:00" }, { "operation": "add_edge", - "rtt_ns": 945917, - "rtt_ms": 0.945917, + "rtt_ns": 1455250, + "rtt_ms": 1.45525, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "370", - "timestamp": "2025-11-27T01:23:42.300804752Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.019772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701845, - "rtt_ms": 1.701845, + "rtt_ns": 1113125, + "rtt_ms": 1.113125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.300805882Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:03:45.02038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976814, - "rtt_ms": 1.976814, + "rtt_ns": 1235000, + "rtt_ms": 1.235, "checkpoint": 0, "vertex_from": "80", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.301075441Z" + "timestamp": "2025-11-27T04:03:45.020408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216277, - "rtt_ms": 1.216277, + "rtt_ns": 1230042, + "rtt_ms": 1.230042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:42.301227871Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.020422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760294, - "rtt_ms": 1.760294, + "rtt_ns": 1391958, + "rtt_ms": 1.391958, "checkpoint": 0, "vertex_from": "80", "vertex_to": "464", - "timestamp": "2025-11-27T01:23:42.301732429Z" + "timestamp": "2025-11-27T04:03:45.020674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865905, - "rtt_ms": 1.865905, + "rtt_ns": 1491667, + "rtt_ms": 1.491667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.301858189Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:45.020756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988314, - "rtt_ms": 1.988314, + "rtt_ns": 1620458, + "rtt_ms": 1.620458, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "567", - "timestamp": "2025-11-27T01:23:42.302117828Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:03:45.020769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2046324, - "rtt_ms": 2.046324, + "rtt_ns": 1131917, + "rtt_ms": 1.131917, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:42.302210198Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:45.020905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2552533, - "rtt_ms": 2.552533, + "rtt_ns": 1406333, + "rtt_ms": 1.406333, "checkpoint": 0, "vertex_from": "80", "vertex_to": "207", - "timestamp": "2025-11-27T01:23:42.302555537Z" + "timestamp": "2025-11-27T04:03:45.020926-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1615833, + "rtt_ms": 1.615833, + "checkpoint": 0, + "vertex_from": "80", + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.02104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868484, - "rtt_ms": 1.868484, + "rtt_ns": 1766166, + "rtt_ms": 1.766166, + "checkpoint": 0, + "vertex_from": "80", + "vertex_to": "567", + "timestamp": "2025-11-27T04:03:45.021048-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1417667, + "rtt_ms": 1.417667, "checkpoint": 0, "vertex_from": "80", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.302667976Z" + "timestamp": "2025-11-27T04:03:45.021826-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072054, - "rtt_ms": 2.072054, + "rtt_ns": 1424333, + "rtt_ms": 1.424333, "checkpoint": 0, "vertex_from": "80", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.302878296Z" + "timestamp": "2025-11-27T04:03:45.021847-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1478083, + "rtt_ms": 1.478083, + "checkpoint": 0, + "vertex_from": "80", + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:45.021859-08:00" }, { "operation": "add_edge", - "rtt_ns": 2865142, - "rtt_ms": 2.865142, + "rtt_ns": 1351375, + "rtt_ms": 1.351375, "checkpoint": 0, "vertex_from": "80", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.303671664Z" + "timestamp": "2025-11-27T04:03:45.022026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2649882, - "rtt_ms": 2.649882, + "rtt_ns": 1284583, + "rtt_ms": 1.284583, "checkpoint": 0, "vertex_from": "80", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.303726403Z" + "timestamp": "2025-11-27T04:03:45.022041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2576682, - "rtt_ms": 2.576682, + "rtt_ns": 1446250, + "rtt_ms": 1.44625, "checkpoint": 0, "vertex_from": "80", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.303805373Z" + "timestamp": "2025-11-27T04:03:45.022216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160114, - "rtt_ms": 2.160114, + "rtt_ns": 1320500, + "rtt_ms": 1.3205, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "86", - "timestamp": "2025-11-27T01:23:42.303893543Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:45.022247-08:00" }, { "operation": "add_edge", - "rtt_ns": 2085814, - "rtt_ms": 2.085814, + "rtt_ns": 1305917, + "rtt_ms": 1.305917, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:42.303945453Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:45.022355-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1504625, + "rtt_ms": 1.504625, + "checkpoint": 0, + "vertex_from": "80", + "vertex_to": "86", + "timestamp": "2025-11-27T04:03:45.022411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925684, - "rtt_ms": 1.925684, + "rtt_ns": 1515667, + "rtt_ms": 1.515667, "checkpoint": 0, "vertex_from": "80", "vertex_to": "904", - "timestamp": "2025-11-27T01:23:42.304044742Z" + "timestamp": "2025-11-27T04:03:45.022557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284413, - "rtt_ms": 2.284413, + "rtt_ns": 1398375, + "rtt_ms": 1.398375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.304495781Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.023226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882175, - "rtt_ms": 1.882175, + "rtt_ns": 1247667, + "rtt_ms": 1.247667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:42.304551441Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:45.023274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735395, - "rtt_ms": 1.735395, + "rtt_ns": 1755541, + "rtt_ms": 1.755541, "checkpoint": 0, "vertex_from": "80", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:42.304614651Z" + "timestamp": "2025-11-27T04:03:45.023616-08:00" }, { "operation": "add_edge", - "rtt_ns": 949268, - "rtt_ms": 0.949268, + "rtt_ns": 1417042, + "rtt_ms": 1.417042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:42.304630201Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:45.023636-08:00" }, { "operation": "add_edge", - "rtt_ns": 913398, - "rtt_ms": 0.913398, + "rtt_ns": 1638250, + "rtt_ms": 1.63825, "checkpoint": 0, "vertex_from": "80", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:42.304640831Z" + "timestamp": "2025-11-27T04:03:45.023681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000877, - "rtt_ms": 1.000877, + "rtt_ns": 1912292, + "rtt_ms": 1.912292, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:42.30480732Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:45.02376-08:00" }, { "operation": "add_edge", - "rtt_ns": 912677, - "rtt_ms": 0.912677, + "rtt_ns": 1566584, + "rtt_ms": 1.566584, "checkpoint": 0, "vertex_from": "80", "vertex_to": "212", - "timestamp": "2025-11-27T01:23:42.30480732Z" + "timestamp": "2025-11-27T04:03:45.023815-08:00" }, { "operation": "add_edge", - "rtt_ns": 2260013, - "rtt_ms": 2.260013, + "rtt_ns": 1510209, + "rtt_ms": 1.510209, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.30481631Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:45.023867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602055, - "rtt_ms": 1.602055, + "rtt_ns": 1717959, + "rtt_ms": 1.717959, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:42.305548278Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:45.02413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344686, - "rtt_ms": 1.344686, + "rtt_ns": 1584792, + "rtt_ms": 1.584792, "checkpoint": 0, "vertex_from": "80", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.305841617Z" + "timestamp": "2025-11-27T04:03:45.024142-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1857405, - "rtt_ms": 1.857405, + "operation": "add_vertex", + "rtt_ns": 1171250, + "rtt_ms": 1.17125, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.305903227Z" + "vertex_from": "799", + "timestamp": "2025-11-27T04:03:45.024933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299846, - "rtt_ms": 1.299846, + "rtt_ns": 2176750, + "rtt_ms": 2.17675, "checkpoint": 0, "vertex_from": "80", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.305915607Z" + "timestamp": "2025-11-27T04:03:45.025452-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1305376, - "rtt_ms": 1.305376, + "operation": "add_edge", + "rtt_ns": 1901458, + "rtt_ms": 1.901458, "checkpoint": 0, - "vertex_from": "989", - "timestamp": "2025-11-27T01:23:42.305949327Z" + "vertex_from": "80", + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.02552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397066, - "rtt_ms": 1.397066, + "rtt_ns": 2303667, + "rtt_ms": 2.303667, "checkpoint": 0, "vertex_from": "80", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.305949727Z" + "timestamp": "2025-11-27T04:03:45.02553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289127, - "rtt_ms": 1.289127, + "rtt_ns": 1753750, + "rtt_ms": 1.75375, "checkpoint": 0, "vertex_from": "80", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.306106747Z" + "timestamp": "2025-11-27T04:03:45.02557-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1356507, - "rtt_ms": 1.356507, + "operation": "add_edge", + "rtt_ns": 1935791, + "rtt_ms": 1.935791, "checkpoint": 0, - "vertex_from": "799", - "timestamp": "2025-11-27T01:23:42.306167347Z" + "vertex_from": "80", + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:45.025618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386206, - "rtt_ms": 1.386206, + "rtt_ns": 1855166, + "rtt_ms": 1.855166, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:42.306194936Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:03:45.025723-08:00" }, { "operation": "add_edge", - "rtt_ns": 645718, - "rtt_ms": 0.645718, + "rtt_ns": 1663958, + "rtt_ms": 1.663958, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "625", - "timestamp": "2025-11-27T01:23:42.306195896Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:45.025795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597385, - "rtt_ms": 1.597385, + "rtt_ns": 1672459, + "rtt_ms": 1.672459, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.306228396Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:45.025816-08:00" }, { "operation": "add_vertex", - "rtt_ns": 889718, - "rtt_ms": 0.889718, + "rtt_ns": 2189708, + "rtt_ms": 2.189708, "checkpoint": 0, - "vertex_from": "742", - "timestamp": "2025-11-27T01:23:42.306841335Z" + "vertex_from": "989", + "timestamp": "2025-11-27T04:03:45.025827-08:00" }, { "operation": "add_edge", - "rtt_ns": 960228, - "rtt_ms": 0.960228, + "rtt_ns": 1014917, + "rtt_ms": 1.014917, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:42.306865395Z" + "vertex_to": "799", + "timestamp": "2025-11-27T04:03:45.025948-08:00" }, { "operation": "add_edge", - "rtt_ns": 949178, - "rtt_ms": 0.949178, + "rtt_ns": 1203208, + "rtt_ms": 1.203208, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.306865975Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.026775-08:00" }, { "operation": "add_edge", - "rtt_ns": 976757, - "rtt_ms": 0.976757, + "rtt_ns": 1062958, + "rtt_ms": 1.062958, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "989", - "timestamp": "2025-11-27T01:23:42.306926334Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:45.026788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112187, - "rtt_ms": 1.112187, + "rtt_ns": 1531875, + "rtt_ms": 1.531875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:42.306954694Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.027064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582326, - "rtt_ms": 1.582326, + "rtt_ns": 1629125, + "rtt_ms": 1.629125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.307779842Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:45.027084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718835, - "rtt_ms": 1.718835, + "rtt_ns": 1269667, + "rtt_ms": 1.269667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.307826942Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.027219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681695, - "rtt_ms": 1.681695, + "rtt_ns": 1601042, + "rtt_ms": 1.601042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "799", - "timestamp": "2025-11-27T01:23:42.307849622Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:45.027221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679386, - "rtt_ms": 1.679386, + "rtt_ns": 1414333, + "rtt_ms": 1.414333, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:42.307876412Z" + "vertex_to": "989", + "timestamp": "2025-11-27T04:03:45.027242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366546, - "rtt_ms": 1.366546, + "rtt_ns": 1468041, + "rtt_ms": 1.468041, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.30832245Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:45.027284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882394, - "rtt_ms": 1.882394, + "rtt_ns": 1567834, + "rtt_ms": 1.567834, "checkpoint": 0, "vertex_from": "80", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.308750629Z" + "timestamp": "2025-11-27T04:03:45.027364-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1909209, + "rtt_ms": 1.909209, + "checkpoint": 0, + "vertex_from": "742", + "timestamp": "2025-11-27T04:03:45.027432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2564063, - "rtt_ms": 2.564063, + "rtt_ns": 1273166, + "rtt_ms": 1.273166, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.308793439Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.028049-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056874, - "rtt_ms": 2.056874, + "rtt_ns": 1405583, + "rtt_ms": 1.405583, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:42.308925279Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:45.028196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111947, - "rtt_ms": 1.111947, + "rtt_ns": 1369667, + "rtt_ms": 1.369667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.308939939Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:45.028455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174336, - "rtt_ms": 1.174336, + "rtt_ns": 1277459, + "rtt_ms": 1.277459, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:42.309025448Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:03:45.028497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156654, - "rtt_ms": 2.156654, + "rtt_ns": 1424541, + "rtt_ms": 1.424541, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.309083808Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:45.028646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350116, - "rtt_ms": 1.350116, + "rtt_ns": 1728375, + "rtt_ms": 1.728375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:42.309131568Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.028794-08:00" }, { "operation": "add_edge", - "rtt_ns": 2344763, - "rtt_ms": 2.344763, + "rtt_ns": 1596042, + "rtt_ms": 1.596042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "742", - "timestamp": "2025-11-27T01:23:42.309186498Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:03:45.028961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310236, - "rtt_ms": 1.310236, + "rtt_ns": 1747375, + "rtt_ms": 1.747375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "940", - "timestamp": "2025-11-27T01:23:42.309187718Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.02899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558926, - "rtt_ms": 1.558926, + "rtt_ns": 1713458, + "rtt_ms": 1.713458, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:42.309882246Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.029001-08:00" }, { "operation": "add_edge", - "rtt_ns": 992067, - "rtt_ms": 0.992067, + "rtt_ns": 1587333, + "rtt_ms": 1.587333, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.309933336Z" + "vertex_to": "742", + "timestamp": "2025-11-27T04:03:45.02902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162446, - "rtt_ms": 1.162446, + "rtt_ns": 1128583, + "rtt_ms": 1.128583, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.309956995Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:45.029327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239396, - "rtt_ms": 1.239396, + "rtt_ns": 1423209, + "rtt_ms": 1.423209, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "149", - "timestamp": "2025-11-27T01:23:42.310165625Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.029474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148436, - "rtt_ms": 1.148436, + "rtt_ns": 1215583, + "rtt_ms": 1.215583, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.310335874Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:45.029714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642995, - "rtt_ms": 1.642995, + "rtt_ns": 1316750, + "rtt_ms": 1.31675, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.310395274Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:45.029773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431576, - "rtt_ms": 1.431576, + "rtt_ns": 1403542, + "rtt_ms": 1.403542, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:42.310458024Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.030051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334166, - "rtt_ms": 1.334166, + "rtt_ns": 1704292, + "rtt_ms": 1.704292, "checkpoint": 0, "vertex_from": "80", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.310522964Z" + "timestamp": "2025-11-27T04:03:45.030499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437056, - "rtt_ms": 1.437056, + "rtt_ns": 1548541, + "rtt_ms": 1.548541, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:42.310523434Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:45.030512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431896, - "rtt_ms": 1.431896, + "rtt_ns": 1559167, + "rtt_ms": 1.559167, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:42.310564404Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:03:45.030887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094437, - "rtt_ms": 1.094437, + "rtt_ns": 1903459, + "rtt_ms": 1.903459, "checkpoint": 0, "vertex_from": "80", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.311052592Z" + "timestamp": "2025-11-27T04:03:45.030905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413555, - "rtt_ms": 1.413555, + "rtt_ns": 1898625, + "rtt_ms": 1.898625, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:42.311297021Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:45.03092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365015, - "rtt_ms": 1.365015, + "rtt_ns": 1943542, + "rtt_ms": 1.943542, "checkpoint": 0, "vertex_from": "80", "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.311299651Z" + "timestamp": "2025-11-27T04:03:45.030935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245736, - "rtt_ms": 1.245736, + "rtt_ns": 1474375, + "rtt_ms": 1.474375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:42.311412191Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:45.03095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215597, - "rtt_ms": 1.215597, + "rtt_ns": 1430042, + "rtt_ms": 1.430042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:42.311553151Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:45.031146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705695, - "rtt_ms": 1.705695, + "rtt_ns": 1400958, + "rtt_ms": 1.400958, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.312164529Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:03:45.031192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008208, - "rtt_ms": 1.008208, + "rtt_ns": 1468667, + "rtt_ms": 1.468667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:42.312308709Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:45.03152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788145, - "rtt_ms": 1.788145, + "rtt_ns": 1117041, + "rtt_ms": 1.117041, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:42.312312629Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:45.032005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760085, - "rtt_ms": 1.760085, + "rtt_ns": 1652167, + "rtt_ms": 1.652167, "checkpoint": 0, "vertex_from": "80", "vertex_to": "709", - "timestamp": "2025-11-27T01:23:42.312325619Z" + "timestamp": "2025-11-27T04:03:45.032154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811774, - "rtt_ms": 1.811774, + "rtt_ns": 1265375, + "rtt_ms": 1.265375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "99", - "timestamp": "2025-11-27T01:23:42.312336078Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:45.032171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305166, - "rtt_ms": 1.305166, + "rtt_ns": 1455666, + "rtt_ms": 1.455666, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:42.312360288Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.032391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022294, - "rtt_ms": 2.022294, + "rtt_ns": 1493250, + "rtt_ms": 1.49325, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.312418618Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:45.032414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166897, - "rtt_ms": 1.166897, + "rtt_ns": 1920000, + "rtt_ms": 1.92, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:42.312465148Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:45.032433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2045824, - "rtt_ms": 2.045824, + "rtt_ns": 1480708, + "rtt_ms": 1.480708, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:42.313458965Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.032675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684465, - "rtt_ms": 1.684465, + "rtt_ns": 1568208, + "rtt_ms": 1.568208, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.313850134Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.032715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651605, - "rtt_ms": 1.651605, + "rtt_ns": 1835917, + "rtt_ms": 1.835917, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.313965564Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.032787-08:00" }, { "operation": "add_edge", - "rtt_ns": 2551943, - "rtt_ms": 2.551943, + "rtt_ns": 1396709, + "rtt_ms": 1.396709, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.314106344Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:03:45.032918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527553, - "rtt_ms": 2.527553, + "rtt_ns": 1385500, + "rtt_ms": 1.3855, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:42.314864641Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.033541-08:00" }, { "operation": "add_edge", - "rtt_ns": 2512663, - "rtt_ms": 2.512663, + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "88", - "timestamp": "2025-11-27T01:23:42.314933031Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:45.033593-08:00" }, { "operation": "add_edge", - "rtt_ns": 2668992, - "rtt_ms": 2.668992, + "rtt_ns": 1598875, + "rtt_ms": 1.598875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "481", - "timestamp": "2025-11-27T01:23:42.314996531Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:03:45.033771-08:00" }, { "operation": "add_edge", - "rtt_ns": 2571573, - "rtt_ms": 2.571573, + "rtt_ns": 1394416, + "rtt_ms": 1.394416, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "713", - "timestamp": "2025-11-27T01:23:42.315038051Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:45.033809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2723533, - "rtt_ms": 2.723533, + "rtt_ns": 1711375, + "rtt_ms": 1.711375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.315084891Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.034145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2882721, - "rtt_ms": 2.882721, + "rtt_ns": 1413042, + "rtt_ms": 1.413042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.31519239Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:45.034205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754095, - "rtt_ms": 1.754095, + "rtt_ns": 1886125, + "rtt_ms": 1.886125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:42.31521461Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:03:45.034278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480146, - "rtt_ms": 1.480146, + "rtt_ns": 1621084, + "rtt_ms": 1.621084, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.31533152Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.034297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269606, - "rtt_ms": 1.269606, + "rtt_ns": 1500792, + "rtt_ms": 1.500792, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:42.31537733Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:03:45.03442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424766, - "rtt_ms": 1.424766, + "rtt_ns": 1719292, + "rtt_ms": 1.719292, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.3153916Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:45.034435-08:00" }, { "operation": "add_edge", - "rtt_ns": 746908, - "rtt_ms": 0.746908, + "rtt_ns": 994583, + "rtt_ms": 0.994583, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.315612709Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.034805-08:00" }, { "operation": "add_edge", - "rtt_ns": 632218, - "rtt_ms": 0.632218, + "rtt_ns": 1046500, + "rtt_ms": 1.0465, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.315671339Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:45.03482-08:00" }, { "operation": "add_edge", - "rtt_ns": 820278, - "rtt_ms": 0.820278, + "rtt_ns": 1602459, + "rtt_ms": 1.602459, "checkpoint": 0, "vertex_from": "80", "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.315817769Z" + "timestamp": "2025-11-27T04:03:45.035144-08:00" }, { "operation": "add_edge", - "rtt_ns": 947448, - "rtt_ms": 0.947448, + "rtt_ns": 1558417, + "rtt_ms": 1.558417, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "91", - "timestamp": "2025-11-27T01:23:42.315881529Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.035152-08:00" }, { "operation": "add_edge", - "rtt_ns": 856997, - "rtt_ms": 0.856997, + "rtt_ns": 944333, + "rtt_ms": 0.944333, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:42.315942728Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.035365-08:00" }, { "operation": "add_edge", - "rtt_ns": 755198, - "rtt_ms": 0.755198, + "rtt_ns": 1320875, + "rtt_ms": 1.320875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.315971378Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:03:45.0356-08:00" }, { "operation": "add_edge", - "rtt_ns": 795198, - "rtt_ms": 0.795198, + "rtt_ns": 1454125, + "rtt_ms": 1.454125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.315988618Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:45.03566-08:00" }, { "operation": "add_edge", - "rtt_ns": 721858, - "rtt_ms": 0.721858, + "rtt_ns": 1680625, + "rtt_ms": 1.680625, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:42.316054308Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:45.036833-08:00" }, { "operation": "add_edge", - "rtt_ns": 716128, - "rtt_ms": 0.716128, + "rtt_ns": 2417917, + "rtt_ms": 2.417917, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:42.316108688Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.036853-08:00" }, { "operation": "add_edge", - "rtt_ns": 747788, - "rtt_ms": 0.747788, + "rtt_ns": 2729458, + "rtt_ms": 2.729458, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:42.316126238Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.036877-08:00" }, { "operation": "add_edge", - "rtt_ns": 943277, - "rtt_ms": 0.943277, + "rtt_ns": 2611208, + "rtt_ms": 2.611208, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.316825736Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:45.036909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090636, - "rtt_ms": 1.090636, + "rtt_ns": 2567208, + "rtt_ms": 2.567208, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.316909125Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:45.037388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011337, - "rtt_ms": 1.011337, + "rtt_ns": 2303667, + "rtt_ms": 2.303667, "checkpoint": 0, "vertex_from": "80", "vertex_to": "82", - "timestamp": "2025-11-27T01:23:42.316954775Z" + "timestamp": "2025-11-27T04:03:45.037448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303356, - "rtt_ms": 1.303356, + "rtt_ns": 2694791, + "rtt_ms": 2.694791, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.316975515Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.037501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519936, - "rtt_ms": 1.519936, + "rtt_ns": 2050417, + "rtt_ms": 2.050417, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.317133615Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:03:45.037653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659715, - "rtt_ms": 1.659715, + "rtt_ns": 2471125, + "rtt_ms": 2.471125, "checkpoint": 0, "vertex_from": "80", "vertex_to": "173", - "timestamp": "2025-11-27T01:23:42.317649433Z" + "timestamp": "2025-11-27T04:03:45.037837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664455, - "rtt_ms": 1.664455, + "rtt_ns": 2208125, + "rtt_ms": 2.208125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "485", - "timestamp": "2025-11-27T01:23:42.317719883Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:45.03787-08:00" }, { "operation": "add_edge", - "rtt_ns": 944277, - "rtt_ms": 0.944277, + "rtt_ns": 1162625, + "rtt_ms": 1.162625, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.317771603Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.038665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680155, - "rtt_ms": 1.680155, + "rtt_ns": 1885667, + "rtt_ms": 1.885667, "checkpoint": 0, "vertex_from": "80", "vertex_to": "338", - "timestamp": "2025-11-27T01:23:42.317807643Z" + "timestamp": "2025-11-27T04:03:45.038721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701085, - "rtt_ms": 1.701085, + "rtt_ns": 1305625, + "rtt_ms": 1.305625, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:42.317810883Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:45.03896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858925, - "rtt_ms": 1.858925, + "rtt_ns": 1587000, + "rtt_ms": 1.587, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:42.317831903Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:03:45.038977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375436, - "rtt_ms": 1.375436, + "rtt_ns": 2081583, + "rtt_ms": 2.081583, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:42.318352311Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:45.038994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527236, - "rtt_ms": 1.527236, + "rtt_ns": 2209208, + "rtt_ms": 2.209208, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.318437801Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:45.039063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343766, - "rtt_ms": 1.343766, + "rtt_ns": 2457666, + "rtt_ms": 2.457666, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:42.318478551Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:45.039335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596396, - "rtt_ms": 1.596396, + "rtt_ns": 1902417, + "rtt_ms": 1.902417, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:42.318552821Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:45.039352-08:00" }, { - "operation": "add_edge", - "rtt_ns": 872007, - "rtt_ms": 0.872007, + "operation": "add_vertex", + "rtt_ns": 1580084, + "rtt_ms": 1.580084, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:42.31859296Z" + "vertex_from": "489", + "timestamp": "2025-11-27T04:03:45.039418-08:00" }, { "operation": "add_edge", - "rtt_ns": 995837, - "rtt_ms": 0.995837, + "rtt_ns": 1869833, + "rtt_ms": 1.869833, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.31864769Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:45.039741-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1037197, - "rtt_ms": 1.037197, + "operation": "add_edge", + "rtt_ns": 1261667, + "rtt_ms": 1.261667, "checkpoint": 0, - "vertex_from": "489", - "timestamp": "2025-11-27T01:23:42.31881062Z" + "vertex_from": "80", + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:45.040598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590365, - "rtt_ms": 1.590365, + "rtt_ns": 1625958, + "rtt_ms": 1.625958, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.319402488Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:45.040621-08:00" }, { "operation": "add_edge", - "rtt_ns": 937107, - "rtt_ms": 0.937107, + "rtt_ns": 1654791, + "rtt_ms": 1.654791, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:42.319417068Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:03:45.040633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645685, - "rtt_ms": 1.645685, + "rtt_ns": 1572958, + "rtt_ms": 1.572958, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:42.319455248Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.040637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633625, - "rtt_ms": 1.633625, + "rtt_ns": 1932375, + "rtt_ms": 1.932375, "checkpoint": 0, "vertex_from": "80", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.319466538Z" + "timestamp": "2025-11-27T04:03:45.040654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034527, - "rtt_ms": 1.034527, + "rtt_ns": 2004208, + "rtt_ms": 2.004208, "checkpoint": 0, - "vertex_from": "81", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.319683587Z" + "vertex_from": "80", + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.040671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164177, - "rtt_ms": 1.164177, + "rtt_ns": 1971916, + "rtt_ms": 1.971916, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:42.319758147Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:45.040933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346416, - "rtt_ms": 1.346416, + "rtt_ns": 1532542, + "rtt_ms": 1.532542, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "188", - "timestamp": "2025-11-27T01:23:42.319785927Z" + "vertex_to": "489", + "timestamp": "2025-11-27T04:03:45.040951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436976, - "rtt_ms": 1.436976, + "rtt_ns": 1471250, + "rtt_ms": 1.47125, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:42.319791357Z" + "vertex_from": "81", + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.041213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278616, - "rtt_ms": 1.278616, + "rtt_ns": 1875000, + "rtt_ms": 1.875, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.319832617Z" + "vertex_from": "81", + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.041228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172446, - "rtt_ms": 1.172446, + "rtt_ns": 1143292, + "rtt_ms": 1.143292, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "489", - "timestamp": "2025-11-27T01:23:42.319983416Z" + "vertex_from": "81", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.042078-08:00" }, { "operation": "add_edge", - "rtt_ns": 755468, - "rtt_ms": 0.755468, + "rtt_ns": 1429375, + "rtt_ms": 1.429375, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.320159506Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:45.042101-08:00" }, { "operation": "add_edge", - "rtt_ns": 718938, - "rtt_ms": 0.718938, + "rtt_ns": 1338625, + "rtt_ms": 1.338625, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.320175816Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.042568-08:00" }, { "operation": "add_edge", - "rtt_ns": 787358, - "rtt_ms": 0.787358, + "rtt_ns": 1794917, + "rtt_ms": 1.794917, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.320205246Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.042747-08:00" }, { "operation": "add_edge", - "rtt_ns": 777638, - "rtt_ms": 0.777638, + "rtt_ns": 2127959, + "rtt_ms": 2.127959, "checkpoint": 0, "vertex_from": "81", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.320244766Z" + "timestamp": "2025-11-27T04:03:45.042765-08:00" }, { "operation": "add_edge", - "rtt_ns": 562039, - "rtt_ms": 0.562039, + "rtt_ns": 2142833, + "rtt_ms": 2.142833, "checkpoint": 0, "vertex_from": "81", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.320248256Z" + "timestamp": "2025-11-27T04:03:45.042781-08:00" }, { "operation": "add_edge", - "rtt_ns": 613658, - "rtt_ms": 0.613658, + "rtt_ns": 2141542, + "rtt_ms": 2.141542, "checkpoint": 0, "vertex_from": "81", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.320372985Z" + "timestamp": "2025-11-27T04:03:45.042797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031447, - "rtt_ms": 1.031447, + "rtt_ns": 2201834, + "rtt_ms": 2.201834, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.320865334Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.042802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085777, - "rtt_ms": 1.085777, + "rtt_ns": 2184792, + "rtt_ms": 2.184792, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.320878054Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.042807-08:00" }, { "operation": "add_edge", - "rtt_ns": 974078, - "rtt_ms": 0.974078, + "rtt_ns": 1602208, + "rtt_ms": 1.602208, "checkpoint": 0, "vertex_from": "81", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.320958344Z" + "timestamp": "2025-11-27T04:03:45.042816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206056, - "rtt_ms": 1.206056, + "rtt_ns": 1662625, + "rtt_ms": 1.662625, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:42.320993673Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.043765-08:00" }, { "operation": "add_edge", - "rtt_ns": 867197, - "rtt_ms": 0.867197, + "rtt_ns": 989375, + "rtt_ms": 0.989375, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.321028033Z" + "vertex_to": "686", + "timestamp": "2025-11-27T04:03:45.043792-08:00" }, { "operation": "add_edge", - "rtt_ns": 824757, - "rtt_ms": 0.824757, + "rtt_ns": 1905208, + "rtt_ms": 1.905208, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:42.321074213Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:45.043984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432066, - "rtt_ms": 1.432066, + "rtt_ns": 1294000, + "rtt_ms": 1.294, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:42.321609212Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:45.044077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386976, - "rtt_ms": 1.386976, + "rtt_ns": 1377875, + "rtt_ms": 1.377875, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:42.321632802Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:45.044126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447406, - "rtt_ms": 1.447406, + "rtt_ns": 1345250, + "rtt_ms": 1.34525, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.321653402Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.044143-08:00" }, { "operation": "add_edge", - "rtt_ns": 889887, - "rtt_ms": 0.889887, + "rtt_ns": 1571334, + "rtt_ms": 1.571334, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.322543859Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:45.044337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655296, - "rtt_ms": 1.655296, + "rtt_ns": 1784584, + "rtt_ms": 1.784584, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.322651339Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:45.044354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825735, - "rtt_ms": 1.825735, + "rtt_ns": 1600125, + "rtt_ms": 1.600125, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:42.322696649Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.044417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845425, - "rtt_ms": 1.845425, + "rtt_ns": 1613625, + "rtt_ms": 1.613625, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.322724849Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.044421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123017, - "rtt_ms": 1.123017, + "rtt_ns": 1159542, + "rtt_ms": 1.159542, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.322733149Z" + "vertex_to": "107", + "timestamp": "2025-11-27T04:03:45.045145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2360154, - "rtt_ms": 2.360154, + "rtt_ns": 1475584, + "rtt_ms": 1.475584, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.322733979Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:45.045241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812785, - "rtt_ms": 1.812785, + "rtt_ns": 1569250, + "rtt_ms": 1.56925, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "686", - "timestamp": "2025-11-27T01:23:42.322772519Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.045362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710315, - "rtt_ms": 1.710315, + "rtt_ns": 1326791, + "rtt_ms": 1.326791, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.322785818Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:45.045454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185126, - "rtt_ms": 1.185126, + "rtt_ns": 1506000, + "rtt_ms": 1.506, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "107", - "timestamp": "2025-11-27T01:23:42.322818708Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.045651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286854, - "rtt_ms": 2.286854, + "rtt_ns": 1576834, + "rtt_ms": 1.576834, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.323316307Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.045656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073977, - "rtt_ms": 1.073977, + "rtt_ns": 1324375, + "rtt_ms": 1.324375, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:42.323619096Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.045679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997584, - "rtt_ms": 1.997584, + "rtt_ns": 1384750, + "rtt_ms": 1.38475, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.324771063Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.045722-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087894, - "rtt_ms": 2.087894, + "rtt_ns": 1414250, + "rtt_ms": 1.41425, "checkpoint": 0, "vertex_from": "81", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.324821943Z" + "timestamp": "2025-11-27T04:03:45.045832-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059594, - "rtt_ms": 2.059594, + "rtt_ns": 1482291, + "rtt_ms": 1.482291, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:42.324846232Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.045906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629545, - "rtt_ms": 1.629545, + "rtt_ns": 1335541, + "rtt_ms": 1.335541, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.324946752Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:45.046578-08:00" }, { "operation": "add_edge", - "rtt_ns": 2630972, - "rtt_ms": 2.630972, + "rtt_ns": 1448792, + "rtt_ms": 1.448792, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.325365931Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.046595-08:00" }, { "operation": "add_edge", - "rtt_ns": 2671752, - "rtt_ms": 2.671752, + "rtt_ns": 1244917, + "rtt_ms": 1.244917, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.325397741Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:45.046609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843125, - "rtt_ms": 1.843125, + "rtt_ns": 1436083, + "rtt_ms": 1.436083, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:42.325463151Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.046892-08:00" }, { "operation": "add_edge", - "rtt_ns": 2829072, - "rtt_ms": 2.829072, + "rtt_ns": 1188333, + "rtt_ms": 1.188333, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.325481961Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.046912-08:00" }, { "operation": "add_edge", - "rtt_ns": 2709522, - "rtt_ms": 2.709522, + "rtt_ns": 1746375, + "rtt_ms": 1.746375, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.32552905Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.047426-08:00" }, { "operation": "add_edge", - "rtt_ns": 2892711, - "rtt_ms": 2.892711, + "rtt_ns": 1796292, + "rtt_ms": 1.796292, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.32559015Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:45.047448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498485, - "rtt_ms": 1.498485, + "rtt_ns": 1622042, + "rtt_ms": 1.622042, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:42.326271428Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:45.047455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335136, - "rtt_ms": 1.335136, + "rtt_ns": 1548417, + "rtt_ms": 1.548417, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:42.326284218Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:45.047456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453946, - "rtt_ms": 1.453946, + "rtt_ns": 1807458, + "rtt_ms": 1.807458, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.326301228Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:45.047465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482045, - "rtt_ms": 1.482045, + "rtt_ns": 1590292, + "rtt_ms": 1.590292, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.326304888Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:45.04817-08:00" }, { "operation": "add_edge", - "rtt_ns": 936127, - "rtt_ms": 0.936127, + "rtt_ns": 1573833, + "rtt_ms": 1.573833, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:42.326334868Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:45.048184-08:00" }, { "operation": "add_edge", - "rtt_ns": 996407, - "rtt_ms": 0.996407, + "rtt_ns": 1358333, + "rtt_ms": 1.358333, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:42.326363898Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:45.048273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436535, - "rtt_ms": 1.436535, + "rtt_ns": 1689750, + "rtt_ms": 1.68975, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:42.326919756Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:45.048285-08:00" }, { "operation": "add_edge", - "rtt_ns": 800548, - "rtt_ms": 0.800548, + "rtt_ns": 1382000, + "rtt_ms": 1.382, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "155", - "timestamp": "2025-11-27T01:23:42.327073376Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:03:45.048289-08:00" }, { "operation": "add_edge", - "rtt_ns": 839178, - "rtt_ms": 0.839178, + "rtt_ns": 1284333, + "rtt_ms": 1.284333, "checkpoint": 0, "vertex_from": "81", "vertex_to": "118", - "timestamp": "2025-11-27T01:23:42.327124456Z" + "timestamp": "2025-11-27T04:03:45.048733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572196, - "rtt_ms": 1.572196, + "rtt_ns": 1670792, + "rtt_ms": 1.670792, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:42.327163026Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.049127-08:00" }, { "operation": "add_edge", - "rtt_ns": 860258, - "rtt_ms": 0.860258, + "rtt_ns": 1763333, + "rtt_ms": 1.763333, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:42.327166176Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.049229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781094, - "rtt_ms": 1.781094, + "rtt_ns": 1842042, + "rtt_ms": 1.842042, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:42.327245165Z" + "vertex_to": "155", + "timestamp": "2025-11-27T04:03:45.049269-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1729495, - "rtt_ms": 1.729495, + "operation": "add_vertex", + "rtt_ns": 1186000, + "rtt_ms": 1.186, "checkpoint": 0, - "vertex_from": "81", - "vertex_to": "850", - "timestamp": "2025-11-27T01:23:42.327259645Z" + "vertex_from": "819", + "timestamp": "2025-11-27T04:03:45.049476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458666, - "rtt_ms": 1.458666, + "rtt_ns": 2032750, + "rtt_ms": 2.03275, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.327760774Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:03:45.049492-08:00" }, { "operation": "add_edge", - "rtt_ns": 938958, - "rtt_ms": 0.938958, + "rtt_ns": 1238458, + "rtt_ms": 1.238458, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.327860744Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.049512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559815, - "rtt_ms": 1.559815, + "rtt_ns": 1372000, + "rtt_ms": 1.372, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.327895713Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:45.049543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560435, - "rtt_ms": 1.560435, + "rtt_ns": 1551500, + "rtt_ms": 1.5515, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:42.327925263Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.049736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077397, - "rtt_ms": 1.077397, + "rtt_ns": 1724209, + "rtt_ms": 1.724209, "checkpoint": 0, "vertex_from": "81", "vertex_to": "912", - "timestamp": "2025-11-27T01:23:42.328202683Z" + "timestamp": "2025-11-27T04:03:45.05001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220786, - "rtt_ms": 1.220786, + "rtt_ns": 1303500, + "rtt_ms": 1.3035, "checkpoint": 0, "vertex_from": "82", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.328387722Z" + "timestamp": "2025-11-27T04:03:45.050039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325106, - "rtt_ms": 1.325106, + "rtt_ns": 1142417, + "rtt_ms": 1.142417, "checkpoint": 0, - "vertex_from": "81", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.328399632Z" + "vertex_from": "82", + "vertex_to": "84", + "timestamp": "2025-11-27T04:03:45.050414-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1287106, - "rtt_ms": 1.287106, + "operation": "add_edge", + "rtt_ns": 1302375, + "rtt_ms": 1.302375, "checkpoint": 0, - "vertex_from": "819", - "timestamp": "2025-11-27T01:23:42.328451632Z" + "vertex_from": "82", + "vertex_to": "483", + "timestamp": "2025-11-27T04:03:45.05043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272037, - "rtt_ms": 1.272037, + "rtt_ns": 1400375, + "rtt_ms": 1.400375, "checkpoint": 0, "vertex_from": "82", "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.328533222Z" + "timestamp": "2025-11-27T04:03:45.050631-08:00" }, { "operation": "add_edge", - "rtt_ns": 794348, - "rtt_ms": 0.794348, + "rtt_ns": 1410583, + "rtt_ms": 1.410583, "checkpoint": 0, - "vertex_from": "82", - "vertex_to": "84", - "timestamp": "2025-11-27T01:23:42.328555842Z" + "vertex_from": "81", + "vertex_to": "819", + "timestamp": "2025-11-27T04:03:45.050887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329797, - "rtt_ms": 1.329797, + "rtt_ns": 1271625, + "rtt_ms": 1.271625, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "483", - "timestamp": "2025-11-27T01:23:42.328576292Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.051009-08:00" }, { "operation": "add_edge", - "rtt_ns": 842997, - "rtt_ms": 0.842997, + "rtt_ns": 1534791, + "rtt_ms": 1.534791, "checkpoint": 0, "vertex_from": "82", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.328705341Z" + "timestamp": "2025-11-27T04:03:45.051028-08:00" }, { "operation": "add_edge", - "rtt_ns": 791318, - "rtt_ms": 0.791318, + "rtt_ns": 1497583, + "rtt_ms": 1.497583, "checkpoint": 0, "vertex_from": "82", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:42.328717631Z" + "timestamp": "2025-11-27T04:03:45.051043-08:00" }, { "operation": "add_edge", - "rtt_ns": 581878, - "rtt_ms": 0.581878, + "rtt_ns": 1752500, + "rtt_ms": 1.7525, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.328785201Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:45.051265-08:00" }, { "operation": "add_edge", - "rtt_ns": 924948, - "rtt_ms": 0.924948, + "rtt_ns": 937083, + "rtt_ms": 0.937083, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:42.328821851Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:45.051368-08:00" }, { "operation": "add_edge", - "rtt_ns": 620018, - "rtt_ms": 0.620018, + "rtt_ns": 983208, + "rtt_ms": 0.983208, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.32900952Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.051399-08:00" }, { "operation": "add_edge", - "rtt_ns": 647928, - "rtt_ms": 0.647928, + "rtt_ns": 1427458, + "rtt_ms": 1.427458, "checkpoint": 0, "vertex_from": "82", "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.32904811Z" + "timestamp": "2025-11-27T04:03:45.051468-08:00" }, { "operation": "add_edge", - "rtt_ns": 616298, - "rtt_ms": 0.616298, + "rtt_ns": 1727500, + "rtt_ms": 1.7275, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:42.3291729Z" - }, - { - "operation": "add_edge", - "rtt_ns": 756328, - "rtt_ms": 0.756328, - "checkpoint": 0, - "vertex_from": "81", - "vertex_to": "819", - "timestamp": "2025-11-27T01:23:42.32920818Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.05174-08:00" }, { "operation": "add_edge", - "rtt_ns": 660048, - "rtt_ms": 0.660048, + "rtt_ns": 1408292, + "rtt_ms": 1.408292, "checkpoint": 0, "vertex_from": "82", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.32923715Z" - }, - { - "operation": "add_edge", - "rtt_ns": 751688, - "rtt_ms": 0.751688, - "checkpoint": 0, - "vertex_from": "82", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.3292859Z" + "timestamp": "2025-11-27T04:03:45.05204-08:00" }, { "operation": "add_edge", - "rtt_ns": 634628, - "rtt_ms": 0.634628, + "rtt_ns": 1187250, + "rtt_ms": 1.18725, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.329340529Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.052216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129557, - "rtt_ms": 1.129557, + "rtt_ns": 1389833, + "rtt_ms": 1.389833, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.329916988Z" + "vertex_to": "223", + "timestamp": "2025-11-27T04:03:45.0524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129777, - "rtt_ms": 1.129777, + "rtt_ns": 1603709, + "rtt_ms": 1.603709, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:42.329952528Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.052492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328866, - "rtt_ms": 1.328866, + "rtt_ns": 1520583, + "rtt_ms": 1.520583, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "223", - "timestamp": "2025-11-27T01:23:42.330047797Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.052786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055957, - "rtt_ms": 1.055957, + "rtt_ns": 1517250, + "rtt_ms": 1.51725, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.330066177Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.052917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039367, - "rtt_ms": 1.039367, + "rtt_ns": 1894333, + "rtt_ms": 1.894333, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.330088157Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:45.052938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343596, - "rtt_ms": 1.343596, + "rtt_ns": 1513875, + "rtt_ms": 1.513875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.330518006Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.052983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463946, - "rtt_ms": 1.463946, + "rtt_ns": 1706792, + "rtt_ms": 1.706792, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.330672996Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.053078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520535, - "rtt_ms": 1.520535, + "rtt_ns": 1398792, + "rtt_ms": 1.398792, "checkpoint": 0, "vertex_from": "82", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.330759105Z" + "timestamp": "2025-11-27T04:03:45.05314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485675, - "rtt_ms": 1.485675, + "rtt_ns": 1088708, + "rtt_ms": 1.088708, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:42.330772465Z" + "vertex_to": "993", + "timestamp": "2025-11-27T04:03:45.053489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451846, - "rtt_ms": 1.451846, + "rtt_ns": 1327875, + "rtt_ms": 1.327875, "checkpoint": 0, "vertex_from": "82", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.330793265Z" + "timestamp": "2025-11-27T04:03:45.053545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103617, - "rtt_ms": 1.103617, + "rtt_ns": 1509000, + "rtt_ms": 1.509, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "993", - "timestamp": "2025-11-27T01:23:42.331022485Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:45.05355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147177, - "rtt_ms": 1.147177, + "rtt_ns": 1038667, + "rtt_ms": 1.038667, "checkpoint": 0, "vertex_from": "82", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.331195604Z" + "timestamp": "2025-11-27T04:03:45.053826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127577, - "rtt_ms": 1.127577, + "rtt_ns": 981750, + "rtt_ms": 0.98175, "checkpoint": 0, "vertex_from": "82", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.331216474Z" + "timestamp": "2025-11-27T04:03:45.05392-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055694, - "rtt_ms": 2.055694, + "rtt_ns": 1105042, + "rtt_ms": 1.105042, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.332008882Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:45.054185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964485, - "rtt_ms": 1.964485, + "rtt_ns": 1412875, + "rtt_ms": 1.412875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "846", - "timestamp": "2025-11-27T01:23:42.332031852Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:45.054398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744775, - "rtt_ms": 1.744775, + "rtt_ns": 1505750, + "rtt_ms": 1.50575, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "723", - "timestamp": "2025-11-27T01:23:42.33250528Z" + "vertex_to": "846", + "timestamp": "2025-11-27T04:03:45.054424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737785, - "rtt_ms": 1.737785, + "rtt_ns": 1832875, + "rtt_ms": 1.832875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.33253197Z" + "vertex_to": "723", + "timestamp": "2025-11-27T04:03:45.054975-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1808545, - "rtt_ms": 1.808545, + "rtt_ns": 1766833, + "rtt_ms": 1.766833, "checkpoint": 0, "vertex_from": "621", - "timestamp": "2025-11-27T01:23:42.33258433Z" + "timestamp": "2025-11-27T04:03:45.055258-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140494, - "rtt_ms": 2.140494, + "rtt_ns": 2781417, + "rtt_ms": 2.781417, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:42.33265947Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.055274-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021964, - "rtt_ms": 2.021964, + "rtt_ns": 1794833, + "rtt_ms": 1.794833, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:42.33269583Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.055346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701215, - "rtt_ms": 1.701215, + "rtt_ns": 2097166, + "rtt_ms": 2.097166, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.33272453Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.055645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967594, - "rtt_ms": 1.967594, + "rtt_ns": 1819792, + "rtt_ms": 1.819792, "checkpoint": 0, "vertex_from": "82", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.333163978Z" + "timestamp": "2025-11-27T04:03:45.055648-08:00" }, { "operation": "add_edge", - "rtt_ns": 2501113, - "rtt_ms": 2.501113, + "rtt_ns": 1239083, + "rtt_ms": 1.239083, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.333718577Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:03:45.055665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807414, - "rtt_ms": 1.807414, + "rtt_ns": 1556541, + "rtt_ms": 1.556541, "checkpoint": 0, "vertex_from": "82", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.333816926Z" + "timestamp": "2025-11-27T04:03:45.055742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928914, - "rtt_ms": 1.928914, + "rtt_ns": 1442958, + "rtt_ms": 1.442958, "checkpoint": 0, "vertex_from": "82", "vertex_to": "612", - "timestamp": "2025-11-27T01:23:42.333961626Z" + "timestamp": "2025-11-27T04:03:45.055842-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1952000, + "rtt_ms": 1.952, + "checkpoint": 0, + "vertex_from": "82", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.055873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520216, - "rtt_ms": 1.520216, + "rtt_ns": 1451833, + "rtt_ms": 1.451833, "checkpoint": 0, "vertex_from": "82", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.334053316Z" + "timestamp": "2025-11-27T04:03:45.056429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387736, - "rtt_ms": 1.387736, + "rtt_ns": 1254917, + "rtt_ms": 1.254917, "checkpoint": 0, "vertex_from": "82", "vertex_to": "212", - "timestamp": "2025-11-27T01:23:42.334084686Z" + "timestamp": "2025-11-27T04:03:45.056602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609826, - "rtt_ms": 1.609826, + "rtt_ns": 1412625, + "rtt_ms": 1.412625, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:42.334116656Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:03:45.056671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573485, - "rtt_ms": 1.573485, + "rtt_ns": 1642916, + "rtt_ms": 1.642916, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "621", - "timestamp": "2025-11-27T01:23:42.334158315Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.056918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143507, - "rtt_ms": 1.143507, + "rtt_ns": 1256625, + "rtt_ms": 1.256625, "checkpoint": 0, "vertex_from": "82", "vertex_to": "588", - "timestamp": "2025-11-27T01:23:42.334961403Z" + "timestamp": "2025-11-27T04:03:45.057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264756, - "rtt_ms": 1.264756, + "rtt_ns": 1232500, + "rtt_ms": 1.2325, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.334984273Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.057113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283433, - "rtt_ms": 2.283433, + "rtt_ns": 1462541, + "rtt_ms": 1.462541, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.335009243Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:45.057128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890145, - "rtt_ms": 1.890145, + "rtt_ns": 1516500, + "rtt_ms": 1.5165, "checkpoint": 0, "vertex_from": "82", "vertex_to": "932", - "timestamp": "2025-11-27T01:23:42.335055483Z" + "timestamp": "2025-11-27T04:03:45.057165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2394533, - "rtt_ms": 2.394533, + "rtt_ns": 1369334, + "rtt_ms": 1.369334, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.335055593Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.057212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584575, - "rtt_ms": 1.584575, + "rtt_ns": 1649750, + "rtt_ms": 1.64975, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.335702201Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.057295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670195, - "rtt_ms": 1.670195, + "rtt_ns": 1645834, + "rtt_ms": 1.645834, "checkpoint": 0, "vertex_from": "82", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.335755771Z" + "timestamp": "2025-11-27T04:03:45.058076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798395, - "rtt_ms": 1.798395, + "rtt_ns": 2272209, + "rtt_ms": 2.272209, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.335761161Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.058876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707045, - "rtt_ms": 1.707045, + "rtt_ns": 1891750, + "rtt_ms": 1.89175, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.335761371Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:45.058893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336396, - "rtt_ms": 1.336396, + "rtt_ns": 1988625, + "rtt_ms": 1.988625, "checkpoint": 0, "vertex_from": "82", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.336299379Z" + "timestamp": "2025-11-27T04:03:45.058907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361166, - "rtt_ms": 1.361166, + "rtt_ns": 1737542, + "rtt_ms": 1.737542, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.336371239Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:45.058951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360576, - "rtt_ms": 1.360576, + "rtt_ns": 1840583, + "rtt_ms": 1.840583, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.336417689Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.058955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522155, - "rtt_ms": 1.522155, + "rtt_ns": 2364834, + "rtt_ms": 2.364834, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:42.336508068Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:45.059037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276366, - "rtt_ms": 1.276366, + "rtt_ns": 1929417, + "rtt_ms": 1.929417, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.336979787Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.059059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229166, - "rtt_ms": 1.229166, + "rtt_ns": 1958208, + "rtt_ms": 1.958208, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.336992367Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.059124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2832672, - "rtt_ms": 2.832672, + "rtt_ns": 2263167, + "rtt_ms": 2.263167, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:42.336993297Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:45.059561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335226, - "rtt_ms": 1.335226, + "rtt_ns": 1264542, + "rtt_ms": 1.264542, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:42.337092247Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.06039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478805, - "rtt_ms": 1.478805, + "rtt_ns": 1533000, + "rtt_ms": 1.533, "checkpoint": 0, "vertex_from": "82", "vertex_to": "833", - "timestamp": "2025-11-27T01:23:42.337243256Z" + "timestamp": "2025-11-27T04:03:45.06041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224803, - "rtt_ms": 2.224803, + "rtt_ns": 1670583, + "rtt_ms": 1.670583, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.337282896Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.060579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109127, - "rtt_ms": 1.109127, + "rtt_ns": 1706084, + "rtt_ms": 1.706084, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.337409466Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.060744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674775, - "rtt_ms": 1.674775, + "rtt_ns": 1808417, + "rtt_ms": 1.808417, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:42.338183673Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:03:45.060762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221606, - "rtt_ms": 1.221606, + "rtt_ns": 2801125, + "rtt_ms": 2.801125, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.338202023Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.060878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840484, - "rtt_ms": 1.840484, + "rtt_ns": 1886791, + "rtt_ms": 1.886791, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.338212633Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:45.060947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795904, - "rtt_ms": 1.795904, + "rtt_ns": 2008542, + "rtt_ms": 2.008542, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "115", - "timestamp": "2025-11-27T01:23:42.338214453Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:45.060965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226706, - "rtt_ms": 1.226706, + "rtt_ns": 2187875, + "rtt_ms": 2.187875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.338221333Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.061082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493115, - "rtt_ms": 1.493115, + "rtt_ns": 1565333, + "rtt_ms": 1.565333, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:42.338487242Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.061127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2046224, - "rtt_ms": 2.046224, + "rtt_ns": 1593708, + "rtt_ms": 1.593708, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.339139441Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.061985-08:00" }, { "operation": "add_edge", - "rtt_ns": 942687, - "rtt_ms": 0.942687, + "rtt_ns": 1594250, + "rtt_ms": 1.59425, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.33916481Z" + "vertex_from": "82", + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.062005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938164, - "rtt_ms": 1.938164, + "rtt_ns": 1442875, + "rtt_ms": 1.442875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.33918237Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:45.062022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026047, - "rtt_ms": 1.026047, + "rtt_ns": 1161708, + "rtt_ms": 1.161708, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.33921151Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:45.06204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107587, - "rtt_ms": 1.107587, + "rtt_ns": 1284917, + "rtt_ms": 1.284917, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.33932319Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.062048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056604, - "rtt_ms": 2.056604, + "rtt_ns": 1108625, + "rtt_ms": 1.108625, "checkpoint": 0, - "vertex_from": "82", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.33934037Z" + "vertex_from": "83", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.062191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137517, - "rtt_ms": 1.137517, + "rtt_ns": 1493667, + "rtt_ms": 1.493667, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.33934041Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.062239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940984, - "rtt_ms": 1.940984, + "rtt_ns": 1210042, + "rtt_ms": 1.210042, "checkpoint": 0, - "vertex_from": "82", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:42.33935157Z" + "vertex_from": "83", + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:45.062338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240717, - "rtt_ms": 1.240717, + "rtt_ns": 1440167, + "rtt_ms": 1.440167, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:42.33945604Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.062388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618456, - "rtt_ms": 1.618456, + "rtt_ns": 1429667, + "rtt_ms": 1.429667, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.340106438Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.062396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324986, - "rtt_ms": 1.324986, + "rtt_ns": 917750, + "rtt_ms": 0.91775, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:42.340465197Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.062903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313697, - "rtt_ms": 1.313697, + "rtt_ns": 1583125, + "rtt_ms": 1.583125, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.340479837Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.063589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447356, - "rtt_ms": 1.447356, + "rtt_ns": 1380708, + "rtt_ms": 1.380708, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.340631996Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:45.063771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392906, - "rtt_ms": 1.392906, + "rtt_ns": 1580875, + "rtt_ms": 1.580875, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.340735476Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:03:45.063978-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1657833, + "rtt_ms": 1.657833, + "checkpoint": 0, + "vertex_from": "83", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.063998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408356, - "rtt_ms": 1.408356, + "rtt_ns": 1983875, + "rtt_ms": 1.983875, "checkpoint": 0, "vertex_from": "83", "vertex_to": "330", - "timestamp": "2025-11-27T01:23:42.340749566Z" + "timestamp": "2025-11-27T04:03:45.064033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606076, - "rtt_ms": 1.606076, + "rtt_ns": 2070375, + "rtt_ms": 2.070375, "checkpoint": 0, "vertex_from": "83", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.340818276Z" + "timestamp": "2025-11-27T04:03:45.064094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505976, - "rtt_ms": 1.505976, + "rtt_ns": 1894084, + "rtt_ms": 1.894084, "checkpoint": 0, "vertex_from": "83", "vertex_to": "812", - "timestamp": "2025-11-27T01:23:42.340859106Z" + "timestamp": "2025-11-27T04:03:45.064134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594315, - "rtt_ms": 1.594315, + "rtt_ns": 2099583, + "rtt_ms": 2.099583, "checkpoint": 0, "vertex_from": "83", "vertex_to": "279", - "timestamp": "2025-11-27T01:23:42.340918955Z" + "timestamp": "2025-11-27T04:03:45.064141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009307, - "rtt_ms": 1.009307, + "rtt_ns": 2007334, + "rtt_ms": 2.007334, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:42.341475354Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.064199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009947, - "rtt_ms": 1.009947, + "rtt_ns": 1524792, + "rtt_ms": 1.524792, "checkpoint": 0, "vertex_from": "83", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.341490884Z" + "timestamp": "2025-11-27T04:03:45.064429-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1401066, - "rtt_ms": 1.401066, + "operation": "add_vertex", + "rtt_ns": 1091166, + "rtt_ms": 1.091166, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:42.341508474Z" + "vertex_from": "637", + "timestamp": "2025-11-27T04:03:45.065071-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052424, - "rtt_ms": 2.052424, + "rtt_ns": 1515000, + "rtt_ms": 1.515, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.341509204Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.065287-08:00" }, { "operation": "add_edge", - "rtt_ns": 936118, - "rtt_ms": 0.936118, + "rtt_ns": 1162875, + "rtt_ms": 1.162875, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.341569224Z" + "vertex_from": "84", + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:45.065306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461786, - "rtt_ms": 1.461786, + "rtt_ns": 1260333, + "rtt_ms": 1.260333, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.342198072Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.065355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517305, - "rtt_ms": 1.517305, + "rtt_ns": 1196375, + "rtt_ms": 1.196375, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.342377281Z" + "vertex_from": "84", + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.065397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571055, - "rtt_ms": 1.571055, + "rtt_ns": 1395917, + "rtt_ms": 1.395917, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:42.342390721Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1662705, - "rtt_ms": 1.662705, - "checkpoint": 0, - "vertex_from": "637", - "timestamp": "2025-11-27T01:23:42.342414271Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.06543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126747, - "rtt_ms": 1.126747, + "rtt_ns": 1857625, + "rtt_ms": 1.857625, "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:42.342618761Z" + "vertex_from": "83", + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:45.065449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265766, - "rtt_ms": 1.265766, + "rtt_ns": 1650250, + "rtt_ms": 1.65025, "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.34277537Z" + "vertex_from": "83", + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:45.065649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276416, - "rtt_ms": 1.276416, + "rtt_ns": 968584, + "rtt_ms": 0.968584, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:42.3427864Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:03:45.066257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1952675, - "rtt_ms": 1.952675, + "rtt_ns": 2241292, + "rtt_ms": 2.241292, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.34287231Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:45.066376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303866, - "rtt_ms": 1.303866, + "rtt_ns": 1321667, + "rtt_ms": 1.321667, "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "121", - "timestamp": "2025-11-27T01:23:42.34287486Z" + "vertex_from": "83", + "vertex_to": "637", + "timestamp": "2025-11-27T04:03:45.066392-08:00" }, { "operation": "add_edge", - "rtt_ns": 736058, - "rtt_ms": 0.736058, + "rtt_ns": 2083042, + "rtt_ms": 2.083042, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.3429354Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1471256, - "rtt_ms": 1.471256, - "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:42.34294796Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:45.066514-08:00" }, { "operation": "add_edge", - "rtt_ns": 733498, - "rtt_ms": 0.733498, + "rtt_ns": 1312583, + "rtt_ms": 1.312583, "checkpoint": 0, "vertex_from": "84", "vertex_to": "912", - "timestamp": "2025-11-27T01:23:42.343112579Z" + "timestamp": "2025-11-27T04:03:45.066669-08:00" }, { "operation": "add_edge", - "rtt_ns": 745528, - "rtt_ms": 0.745528, + "rtt_ns": 1289875, + "rtt_ms": 1.289875, "checkpoint": 0, "vertex_from": "84", "vertex_to": "105", - "timestamp": "2025-11-27T01:23:42.343137489Z" + "timestamp": "2025-11-27T04:03:45.066688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522836, - "rtt_ms": 1.522836, + "rtt_ns": 1385167, + "rtt_ms": 1.385167, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "637", - "timestamp": "2025-11-27T01:23:42.343937557Z" + "vertex_from": "84", + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.066692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446646, - "rtt_ms": 1.446646, + "rtt_ns": 1335417, + "rtt_ms": 1.335417, "checkpoint": 0, "vertex_from": "84", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.344066317Z" + "timestamp": "2025-11-27T04:03:45.066766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768125, - "rtt_ms": 1.768125, + "rtt_ns": 1385209, + "rtt_ms": 1.385209, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.344641495Z" + "vertex_to": "559", + "timestamp": "2025-11-27T04:03:45.066835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547556, - "rtt_ms": 1.547556, + "rtt_ns": 2129250, + "rtt_ms": 2.12925, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:42.344660825Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.068646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717605, - "rtt_ms": 1.717605, + "rtt_ns": 2288459, + "rtt_ms": 2.288459, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.344666695Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:03:45.068665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876265, - "rtt_ms": 1.876265, + "rtt_ns": 2287958, + "rtt_ms": 2.287958, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "114", - "timestamp": "2025-11-27T01:23:42.344753355Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:45.068681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051854, - "rtt_ms": 2.051854, + "rtt_ns": 3049667, + "rtt_ms": 3.049667, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "559", - "timestamp": "2025-11-27T01:23:42.344828094Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.0687-08:00" }, { "operation": "add_edge", - "rtt_ns": 2476293, - "rtt_ms": 2.476293, + "rtt_ns": 1867708, + "rtt_ms": 1.867708, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:42.345412783Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:45.068703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2679562, - "rtt_ms": 2.679562, + "rtt_ns": 1974750, + "rtt_ms": 1.97475, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.345466652Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.068742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347763, - "rtt_ms": 2.347763, + "rtt_ns": 2501250, + "rtt_ms": 2.50125, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:42.345486172Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.068759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828864, - "rtt_ms": 1.828864, + "rtt_ns": 2087500, + "rtt_ms": 2.0875, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.345768291Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:45.068776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746294, - "rtt_ms": 1.746294, + "rtt_ns": 2107875, + "rtt_ms": 2.107875, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.345813351Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:45.068778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186206, - "rtt_ms": 1.186206, + "rtt_ns": 2129750, + "rtt_ms": 2.12975, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.345853821Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.068824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245096, - "rtt_ms": 1.245096, + "rtt_ns": 1318750, + "rtt_ms": 1.31875, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.345909541Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:45.070064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267806, - "rtt_ms": 1.267806, + "rtt_ns": 1417208, + "rtt_ms": 1.417208, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:42.345910111Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:03:45.070178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234446, - "rtt_ms": 1.234446, + "rtt_ns": 1758292, + "rtt_ms": 1.758292, "checkpoint": 0, "vertex_from": "84", "vertex_to": "643", - "timestamp": "2025-11-27T01:23:42.345989581Z" + "timestamp": "2025-11-27T04:03:45.07044-08:00" }, { "operation": "add_edge", - "rtt_ns": 656048, - "rtt_ms": 0.656048, + "rtt_ns": 1672334, + "rtt_ms": 1.672334, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.346070841Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:45.070497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287236, - "rtt_ms": 1.287236, + "rtt_ns": 1912084, + "rtt_ms": 1.912084, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.34611632Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.070616-08:00" }, { "operation": "add_edge", - "rtt_ns": 823768, - "rtt_ms": 0.823768, + "rtt_ns": 1939209, + "rtt_ms": 1.939209, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:42.34629149Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.07064-08:00" }, { "operation": "add_edge", - "rtt_ns": 817828, - "rtt_ms": 0.817828, + "rtt_ns": 2002042, + "rtt_ms": 2.002042, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "120", - "timestamp": "2025-11-27T01:23:42.34630496Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.070668-08:00" }, { "operation": "add_edge", - "rtt_ns": 627008, - "rtt_ms": 0.627008, + "rtt_ns": 2076541, + "rtt_ms": 2.076541, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:42.346441309Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.070723-08:00" }, { "operation": "add_edge", - "rtt_ns": 767558, - "rtt_ms": 0.767558, + "rtt_ns": 2034750, + "rtt_ms": 2.03475, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.346536709Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:45.070813-08:00" }, { "operation": "add_edge", - "rtt_ns": 833888, - "rtt_ms": 0.833888, + "rtt_ns": 2049541, + "rtt_ms": 2.049541, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:42.346688539Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.070826-08:00" }, { "operation": "add_edge", - "rtt_ns": 806667, - "rtt_ms": 0.806667, + "rtt_ns": 1458042, + "rtt_ms": 1.458042, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:42.346797278Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.071523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347796, - "rtt_ms": 1.347796, + "rtt_ns": 1465250, + "rtt_ms": 1.46525, "checkpoint": 0, "vertex_from": "84", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:42.347258967Z" + "timestamp": "2025-11-27T04:03:45.071646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249586, - "rtt_ms": 1.249586, + "rtt_ns": 1348416, + "rtt_ms": 1.348416, "checkpoint": 0, "vertex_from": "84", "vertex_to": "449", - "timestamp": "2025-11-27T01:23:42.347321357Z" + "timestamp": "2025-11-27T04:03:45.071846-08:00" }, { "operation": "add_edge", - "rtt_ns": 947248, - "rtt_ms": 0.947248, + "rtt_ns": 1423000, + "rtt_ms": 1.423, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:42.347389537Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:45.071865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537025, - "rtt_ms": 1.537025, + "rtt_ns": 1396083, + "rtt_ms": 1.396083, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.347447276Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:03:45.072037-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1344506, - "rtt_ms": 1.344506, + "operation": "add_edge", + "rtt_ns": 1821875, + "rtt_ms": 1.821875, "checkpoint": 0, - "vertex_from": "239", - "timestamp": "2025-11-27T01:23:42.347467566Z" + "vertex_from": "84", + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:45.072546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183436, - "rtt_ms": 1.183436, + "rtt_ns": 1862959, + "rtt_ms": 1.862959, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "425", - "timestamp": "2025-11-27T01:23:42.347476336Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.072677-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1193196, - "rtt_ms": 1.193196, + "operation": "add_vertex", + "rtt_ns": 2120625, + "rtt_ms": 2.120625, "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.347499116Z" + "vertex_from": "239", + "timestamp": "2025-11-27T04:03:45.072742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209797, - "rtt_ms": 1.209797, + "rtt_ns": 2245167, + "rtt_ms": 2.245167, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.347748876Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.072916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539895, - "rtt_ms": 1.539895, + "rtt_ns": 1087583, + "rtt_ms": 1.087583, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.348229594Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.072935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536926, - "rtt_ms": 1.536926, + "rtt_ns": 1428584, + "rtt_ms": 1.428584, "checkpoint": 0, "vertex_from": "84", "vertex_to": "713", - "timestamp": "2025-11-27T01:23:42.348335174Z" + "timestamp": "2025-11-27T04:03:45.072953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088447, - "rtt_ms": 1.088447, + "rtt_ns": 1101834, + "rtt_ms": 1.101834, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.348356404Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.072969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043497, - "rtt_ms": 1.043497, + "rtt_ns": 2157042, + "rtt_ms": 2.157042, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.348366814Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:45.072984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223107, - "rtt_ms": 1.223107, + "rtt_ns": 1210084, + "rtt_ms": 1.210084, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "239", - "timestamp": "2025-11-27T01:23:42.348691303Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:45.073248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208067, - "rtt_ms": 1.208067, + "rtt_ns": 1576750, + "rtt_ms": 1.57675, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:42.348708643Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.074124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504905, - "rtt_ms": 1.504905, + "rtt_ns": 1399833, + "rtt_ms": 1.399833, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.348895252Z" + "vertex_to": "239", + "timestamp": "2025-11-27T04:03:45.074142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106517, - "rtt_ms": 1.106517, + "rtt_ns": 1276000, + "rtt_ms": 1.276, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:42.349442961Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:03:45.074193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148287, - "rtt_ms": 1.148287, + "rtt_ns": 1258875, + "rtt_ms": 1.258875, "checkpoint": 0, "vertex_from": "84", "vertex_to": "780", - "timestamp": "2025-11-27T01:23:42.349516551Z" + "timestamp": "2025-11-27T04:03:45.074244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329217, - "rtt_ms": 1.329217, + "rtt_ns": 1295542, + "rtt_ms": 1.295542, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:42.349560271Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.074266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179734, - "rtt_ms": 2.179734, + "rtt_ns": 1743084, + "rtt_ms": 1.743084, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.34965705Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:45.074422-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210714, - "rtt_ms": 2.210714, + "rtt_ns": 2959833, + "rtt_ms": 2.959833, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.34965929Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.074606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970484, - "rtt_ms": 1.970484, + "rtt_ns": 1378791, + "rtt_ms": 1.378791, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "775", - "timestamp": "2025-11-27T01:23:42.34972123Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:45.074627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368136, - "rtt_ms": 1.368136, + "rtt_ns": 1677333, + "rtt_ms": 1.677333, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.34972581Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:45.074631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783865, - "rtt_ms": 1.783865, + "rtt_ns": 1817333, + "rtt_ms": 1.817333, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.350476358Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:45.074753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599716, - "rtt_ms": 1.599716, + "rtt_ns": 1321250, + "rtt_ms": 1.32125, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:42.350496008Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:45.075446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793995, - "rtt_ms": 1.793995, + "rtt_ns": 1473625, + "rtt_ms": 1.473625, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.350505018Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:45.075616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851895, - "rtt_ms": 1.851895, + "rtt_ns": 1390667, + "rtt_ms": 1.390667, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.351295606Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:03:45.075636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772625, - "rtt_ms": 1.772625, + "rtt_ns": 1611000, + "rtt_ms": 1.611, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.351430935Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.075878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732425, - "rtt_ms": 1.732425, + "rtt_ns": 1498584, + "rtt_ms": 1.498584, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.351455895Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.075922-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023094, - "rtt_ms": 2.023094, + "rtt_ns": 1364667, + "rtt_ms": 1.364667, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "106", - "timestamp": "2025-11-27T01:23:42.351540825Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:45.075972-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093594, - "rtt_ms": 2.093594, + "rtt_ns": 1771542, + "rtt_ms": 1.771542, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.351655345Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.075972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222197, - "rtt_ms": 1.222197, + "rtt_ns": 1292833, + "rtt_ms": 1.292833, "checkpoint": 0, "vertex_from": "85", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.351701645Z" + "timestamp": "2025-11-27T04:03:45.076047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044244, - "rtt_ms": 2.044244, + "rtt_ns": 1443792, + "rtt_ms": 1.443792, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:42.351705444Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.076076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993914, - "rtt_ms": 1.993914, + "rtt_ns": 1503291, + "rtt_ms": 1.503291, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.351721084Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.076131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218116, - "rtt_ms": 1.218116, + "rtt_ns": 1016542, + "rtt_ms": 1.016542, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.351724994Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.076466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885374, - "rtt_ms": 1.885374, + "rtt_ns": 1437750, + "rtt_ms": 1.43775, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.352383022Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.077074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409146, - "rtt_ms": 1.409146, + "rtt_ns": 1534125, + "rtt_ms": 1.534125, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.352707282Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.077152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451486, - "rtt_ms": 1.451486, + "rtt_ns": 1866083, + "rtt_ms": 1.866083, "checkpoint": 0, "vertex_from": "85", "vertex_to": "689", - "timestamp": "2025-11-27T01:23:42.352910061Z" + "timestamp": "2025-11-27T04:03:45.07779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495996, - "rtt_ms": 1.495996, + "rtt_ns": 1843417, + "rtt_ms": 1.843417, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.352928191Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:45.077976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281206, - "rtt_ms": 1.281206, + "rtt_ns": 1986708, + "rtt_ms": 1.986708, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:42.352939211Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.078063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325746, - "rtt_ms": 1.325746, + "rtt_ns": 2097834, + "rtt_ms": 2.097834, "checkpoint": 0, "vertex_from": "85", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.353028531Z" + "timestamp": "2025-11-27T04:03:45.078147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537145, - "rtt_ms": 1.537145, + "rtt_ns": 2317125, + "rtt_ms": 2.317125, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.35307961Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.078197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857865, - "rtt_ms": 1.857865, + "rtt_ns": 2244917, + "rtt_ms": 2.244917, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.353566389Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.078218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930115, - "rtt_ms": 1.930115, + "rtt_ns": 1753333, + "rtt_ms": 1.753333, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:42.353652649Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:45.078221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039047, - "rtt_ms": 1.039047, + "rtt_ns": 2260083, + "rtt_ms": 2.260083, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.353748188Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:45.078233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396076, - "rtt_ms": 1.396076, + "rtt_ns": 1823291, + "rtt_ms": 1.823291, "checkpoint": 0, "vertex_from": "85", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:42.353788818Z" + "timestamp": "2025-11-27T04:03:45.078899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2689432, - "rtt_ms": 2.689432, + "rtt_ns": 1904792, + "rtt_ms": 1.904792, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:42.354416026Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.079059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557935, - "rtt_ms": 1.557935, + "rtt_ns": 1527959, + "rtt_ms": 1.527959, "checkpoint": 0, - "vertex_from": "85", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.354469656Z" + "vertex_from": "86", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.079506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568305, - "rtt_ms": 1.568305, + "rtt_ns": 1997875, + "rtt_ms": 1.997875, "checkpoint": 0, - "vertex_from": "86", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.354503406Z" + "vertex_from": "85", + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:45.07979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438066, - "rtt_ms": 1.438066, + "rtt_ns": 1814583, + "rtt_ms": 1.814583, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:42.354519086Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:45.080048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598205, - "rtt_ms": 1.598205, + "rtt_ns": 1007417, + "rtt_ms": 1.007417, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.354538976Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:45.080067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635195, - "rtt_ms": 1.635195, + "rtt_ns": 1925041, + "rtt_ms": 1.925041, "checkpoint": 0, "vertex_from": "86", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.354665006Z" + "timestamp": "2025-11-27T04:03:45.080073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226216, - "rtt_ms": 1.226216, + "rtt_ns": 1279291, + "rtt_ms": 1.279291, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.354795685Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:03:45.080179-08:00" }, { "operation": "add_edge", - "rtt_ns": 837988, - "rtt_ms": 0.837988, + "rtt_ns": 1994875, + "rtt_ms": 1.994875, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:42.355255454Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:45.080192-08:00" }, { "operation": "add_edge", - "rtt_ns": 854598, - "rtt_ms": 0.854598, + "rtt_ns": 2004708, + "rtt_ms": 2.004708, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.355325444Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:45.080226-08:00" }, { "operation": "add_edge", - "rtt_ns": 878627, - "rtt_ms": 0.878627, + "rtt_ns": 2167958, + "rtt_ms": 2.167958, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "409", - "timestamp": "2025-11-27T01:23:42.355399093Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.080232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802364, - "rtt_ms": 1.802364, + "rtt_ns": 2114333, + "rtt_ms": 2.114333, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.355456753Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.080333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819435, - "rtt_ms": 1.819435, + "rtt_ns": 1116334, + "rtt_ms": 1.116334, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:42.355568833Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:45.081184-08:00" }, { "operation": "add_edge", - "rtt_ns": 2821852, - "rtt_ms": 2.821852, + "rtt_ns": 1180708, + "rtt_ms": 1.180708, "checkpoint": 0, - "vertex_from": "86", - "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.35661158Z" + "vertex_from": "87", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.081516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180584, - "rtt_ms": 2.180584, + "rtt_ns": 1382875, + "rtt_ms": 1.382875, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.35668598Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:45.081576-08:00" }, { "operation": "add_edge", - "rtt_ns": 2167094, - "rtt_ms": 2.167094, + "rtt_ns": 1801250, + "rtt_ms": 1.80125, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.35670698Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.081592-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158913, - "rtt_ms": 2.158913, + "rtt_ns": 1558917, + "rtt_ms": 1.558917, "checkpoint": 0, "vertex_from": "86", "vertex_to": "547", - "timestamp": "2025-11-27T01:23:42.356825149Z" + "timestamp": "2025-11-27T04:03:45.081632-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091094, - "rtt_ms": 2.091094, + "rtt_ns": 1458125, + "rtt_ms": 1.458125, "checkpoint": 0, "vertex_from": "86", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.357417348Z" + "timestamp": "2025-11-27T04:03:45.081685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176864, - "rtt_ms": 2.176864, + "rtt_ns": 1509500, + "rtt_ms": 1.5095, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.357433098Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.081691-08:00" }, { "operation": "add_edge", - "rtt_ns": 2644823, - "rtt_ms": 2.644823, + "rtt_ns": 2215417, + "rtt_ms": 2.215417, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.357441618Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.081722-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141574, - "rtt_ms": 2.141574, + "rtt_ns": 1713208, + "rtt_ms": 1.713208, "checkpoint": 0, - "vertex_from": "87", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.357600347Z" + "vertex_from": "86", + "vertex_to": "409", + "timestamp": "2025-11-27T04:03:45.081762-08:00" }, { "operation": "add_edge", - "rtt_ns": 2438584, - "rtt_ms": 2.438584, + "rtt_ns": 1564166, + "rtt_ms": 1.564166, "checkpoint": 0, "vertex_from": "86", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:42.357839947Z" + "timestamp": "2025-11-27T04:03:45.081797-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379423, - "rtt_ms": 2.379423, + "rtt_ns": 1076166, + "rtt_ms": 1.076166, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.357949666Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.082768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500726, - "rtt_ms": 1.500726, + "rtt_ns": 1253250, + "rtt_ms": 1.25325, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.358113036Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.08283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309857, - "rtt_ms": 1.309857, + "rtt_ns": 1341375, + "rtt_ms": 1.341375, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "316", - "timestamp": "2025-11-27T01:23:42.358137996Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:45.082935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563945, - "rtt_ms": 1.563945, + "rtt_ns": 1776041, + "rtt_ms": 1.776041, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:42.358272755Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.082961-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1183959, + "rtt_ms": 1.183959, + "checkpoint": 0, + "vertex_from": "88", + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.082982-08:00" }, { "operation": "add_edge", - "rtt_ns": 885357, - "rtt_ms": 0.885357, + "rtt_ns": 1366000, + "rtt_ms": 1.366, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:42.358304605Z" + "vertex_to": "316", + "timestamp": "2025-11-27T04:03:45.082999-08:00" }, { "operation": "add_edge", - "rtt_ns": 912757, - "rtt_ms": 0.912757, + "rtt_ns": 1557417, + "rtt_ms": 1.557417, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:42.358355735Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:45.083074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026727, - "rtt_ms": 1.026727, + "rtt_ns": 1327917, + "rtt_ms": 1.327917, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.358460715Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.083091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797805, - "rtt_ms": 1.797805, + "rtt_ns": 1459417, + "rtt_ms": 1.459417, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.358484965Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:45.083147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507806, - "rtt_ms": 1.507806, + "rtt_ns": 1435417, + "rtt_ms": 1.435417, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.359110923Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:45.083158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658405, - "rtt_ms": 1.658405, + "rtt_ns": 1974125, + "rtt_ms": 1.974125, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.359500942Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.084806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679546, - "rtt_ms": 1.679546, + "rtt_ns": 1761666, + "rtt_ms": 1.761666, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.359954721Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.084836-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025095, - "rtt_ms": 2.025095, + "rtt_ns": 1862917, + "rtt_ms": 1.862917, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.359976431Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:03:45.084846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846085, - "rtt_ms": 1.846085, + "rtt_ns": 1919250, + "rtt_ms": 1.91925, "checkpoint": 0, "vertex_from": "88", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.359985111Z" + "timestamp": "2025-11-27T04:03:45.084855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889444, - "rtt_ms": 1.889444, + "rtt_ns": 1703792, + "rtt_ms": 1.703792, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.3600043Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.084862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745425, - "rtt_ms": 1.745425, + "rtt_ns": 1914042, + "rtt_ms": 1.914042, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "91", - "timestamp": "2025-11-27T01:23:42.3600512Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:45.084876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718135, - "rtt_ms": 1.718135, + "rtt_ns": 1940417, + "rtt_ms": 1.940417, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.36007504Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.085032-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359433, - "rtt_ms": 2.359433, + "rtt_ns": 2349416, + "rtt_ms": 2.349416, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.360821818Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.085122-08:00" }, { "operation": "add_edge", - "rtt_ns": 2339703, - "rtt_ms": 2.339703, + "rtt_ns": 2177709, + "rtt_ms": 2.177709, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:42.362295634Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:45.085178-08:00" }, { "operation": "add_edge", - "rtt_ns": 3639839, - "rtt_ms": 3.639839, + "rtt_ns": 2045708, + "rtt_ms": 2.045708, "checkpoint": 0, "vertex_from": "88", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.362752312Z" + "timestamp": "2025-11-27T04:03:45.085194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2744352, - "rtt_ms": 2.744352, + "rtt_ns": 1446292, + "rtt_ms": 1.446292, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.362820602Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.086302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035364, - "rtt_ms": 2.035364, + "rtt_ns": 1252292, + "rtt_ms": 1.252292, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.362858722Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:45.086448-08:00" }, { "operation": "add_edge", - "rtt_ns": 2887641, - "rtt_ms": 2.887641, + "rtt_ns": 1612833, + "rtt_ms": 1.612833, "checkpoint": 0, "vertex_from": "88", "vertex_to": "677", - "timestamp": "2025-11-27T01:23:42.362873932Z" + "timestamp": "2025-11-27T04:03:45.086459-08:00" }, { "operation": "add_edge", - "rtt_ns": 2856642, - "rtt_ms": 2.856642, + "rtt_ns": 1714167, + "rtt_ms": 1.714167, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "190", - "timestamp": "2025-11-27T01:23:42.362909812Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.086591-08:00" }, { "operation": "add_edge", - "rtt_ns": 3488630, - "rtt_ms": 3.48863, + "rtt_ns": 1558792, + "rtt_ms": 1.558792, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.362991552Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.086592-08:00" }, { "operation": "add_edge", - "rtt_ns": 4572776, - "rtt_ms": 4.572776, + "rtt_ns": 1744500, + "rtt_ms": 1.7445, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.363060181Z" + "vertex_to": "190", + "timestamp": "2025-11-27T04:03:45.086608-08:00" }, { "operation": "add_edge", - "rtt_ns": 3055511, - "rtt_ms": 3.055511, + "rtt_ns": 1804834, + "rtt_ms": 1.804834, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.363062951Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:45.086612-08:00" }, { "operation": "add_edge", - "rtt_ns": 3225800, - "rtt_ms": 3.2258, + "rtt_ns": 1850625, + "rtt_ms": 1.850625, "checkpoint": 0, "vertex_from": "88", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:42.363203851Z" + "timestamp": "2025-11-27T04:03:45.086687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586035, - "rtt_ms": 1.586035, + "rtt_ns": 1541917, + "rtt_ms": 1.541917, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.363887699Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.086721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163587, - "rtt_ms": 1.163587, + "rtt_ns": 1715458, + "rtt_ms": 1.715458, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.363917139Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.086839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337986, - "rtt_ms": 1.337986, + "rtt_ns": 1313834, + "rtt_ms": 1.313834, "checkpoint": 0, "vertex_from": "88", "vertex_to": "773", - "timestamp": "2025-11-27T01:23:42.364250498Z" + "timestamp": "2025-11-27T04:03:45.087774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543346, - "rtt_ms": 1.543346, + "rtt_ns": 1565417, + "rtt_ms": 1.565417, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.364364908Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:03:45.087868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516985, - "rtt_ms": 1.516985, + "rtt_ns": 1434416, + "rtt_ms": 1.434416, "checkpoint": 0, "vertex_from": "88", "vertex_to": "98", - "timestamp": "2025-11-27T01:23:42.364395107Z" + "timestamp": "2025-11-27T04:03:45.087883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622425, - "rtt_ms": 1.622425, + "rtt_ns": 1195417, + "rtt_ms": 1.195417, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "630", - "timestamp": "2025-11-27T01:23:42.364481947Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.087884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517845, - "rtt_ms": 1.517845, + "rtt_ns": 1316209, + "rtt_ms": 1.316209, "checkpoint": 0, "vertex_from": "88", "vertex_to": "426", - "timestamp": "2025-11-27T01:23:42.364510747Z" + "timestamp": "2025-11-27T04:03:45.087908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515236, - "rtt_ms": 1.515236, + "rtt_ns": 1377416, + "rtt_ms": 1.377416, "checkpoint": 0, "vertex_from": "88", "vertex_to": "908", - "timestamp": "2025-11-27T01:23:42.364576447Z" + "timestamp": "2025-11-27T04:03:45.08797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584306, - "rtt_ms": 1.584306, + "rtt_ns": 1446583, + "rtt_ms": 1.446583, "checkpoint": 0, "vertex_from": "88", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.364648017Z" + "timestamp": "2025-11-27T04:03:45.088058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519316, - "rtt_ms": 1.519316, + "rtt_ns": 1672125, + "rtt_ms": 1.672125, "checkpoint": 0, "vertex_from": "88", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.364724067Z" + "timestamp": "2025-11-27T04:03:45.088285-08:00" }, { "operation": "add_edge", - "rtt_ns": 885767, - "rtt_ms": 0.885767, + "rtt_ns": 1585250, + "rtt_ms": 1.58525, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.364774736Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.088425-08:00" }, { "operation": "add_edge", - "rtt_ns": 575258, - "rtt_ms": 0.575258, + "rtt_ns": 1813292, + "rtt_ms": 1.813292, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.364827126Z" + "vertex_to": "187", + "timestamp": "2025-11-27T04:03:45.088535-08:00" }, { "operation": "add_edge", - "rtt_ns": 935277, - "rtt_ms": 0.935277, + "rtt_ns": 994542, + "rtt_ms": 0.994542, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "187", - "timestamp": "2025-11-27T01:23:42.364853856Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:03:45.089281-08:00" }, { "operation": "add_edge", - "rtt_ns": 672409, - "rtt_ms": 0.672409, + "rtt_ns": 1430083, + "rtt_ms": 1.430083, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.365068526Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:45.089339-08:00" }, { "operation": "add_edge", - "rtt_ns": 713218, - "rtt_ms": 0.713218, + "rtt_ns": 1508042, + "rtt_ms": 1.508042, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.365079136Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.089567-08:00" }, { "operation": "add_edge", - "rtt_ns": 775068, - "rtt_ms": 0.775068, + "rtt_ns": 1713750, + "rtt_ms": 1.71375, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:42.365286775Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.089584-08:00" }, { "operation": "add_edge", - "rtt_ns": 803748, - "rtt_ms": 0.803748, + "rtt_ns": 1717750, + "rtt_ms": 1.71775, "checkpoint": 0, "vertex_from": "88", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.365286855Z" + "timestamp": "2025-11-27T04:03:45.089602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149277, - "rtt_ms": 1.149277, + "rtt_ns": 1914458, + "rtt_ms": 1.914458, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.365726794Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.089691-08:00" }, { - "operation": "add_edge", - "rtt_ns": 704508, - "rtt_ms": 0.704508, + "operation": "add_vertex", + "rtt_ns": 1302000, + "rtt_ms": 1.302, "checkpoint": 0, - "vertex_from": "88", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.365785034Z" + "vertex_from": "699", + "timestamp": "2025-11-27T04:03:45.089728-08:00" }, { "operation": "add_edge", - "rtt_ns": 960537, - "rtt_ms": 0.960537, + "rtt_ns": 1855792, + "rtt_ms": 1.855792, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.365815373Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:45.089741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276196, - "rtt_ms": 1.276196, + "rtt_ns": 1855333, + "rtt_ms": 1.855333, "checkpoint": 0, "vertex_from": "88", "vertex_to": "898", - "timestamp": "2025-11-27T01:23:42.365926353Z" + "timestamp": "2025-11-27T04:03:45.089827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263456, - "rtt_ms": 1.263456, + "rtt_ns": 1698958, + "rtt_ms": 1.698958, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.365988513Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:45.090982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379617, - "rtt_ms": 1.379617, + "rtt_ns": 1336541, + "rtt_ms": 1.336541, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "302", - "timestamp": "2025-11-27T01:23:42.366155583Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1336277, - "rtt_ms": 1.336277, - "checkpoint": 0, - "vertex_from": "699", - "timestamp": "2025-11-27T01:23:42.366165033Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.09108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550755, - "rtt_ms": 1.550755, + "rtt_ns": 1492375, + "rtt_ms": 1.492375, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:42.366624341Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:45.091095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535776, - "rtt_ms": 1.535776, + "rtt_ns": 2593166, + "rtt_ms": 2.593166, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.366823861Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.091131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061118, - "rtt_ms": 1.061118, + "rtt_ns": 1811375, + "rtt_ms": 1.811375, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.366877381Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.091152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186346, - "rtt_ms": 1.186346, + "rtt_ns": 1598958, + "rtt_ms": 1.598958, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.3669727Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.091167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514905, - "rtt_ms": 1.514905, + "rtt_ns": 1452916, + "rtt_ms": 1.452916, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.367242949Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1180946, - "rtt_ms": 1.180946, - "checkpoint": 0, - "vertex_from": "89", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.367338219Z" + "vertex_to": "699", + "timestamp": "2025-11-27T04:03:45.091181-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073964, - "rtt_ms": 2.073964, + "rtt_ns": 1608375, + "rtt_ms": 1.608375, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.367362759Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.0913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466336, - "rtt_ms": 1.466336, + "rtt_ns": 1514458, + "rtt_ms": 1.514458, "checkpoint": 0, "vertex_from": "88", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.367393549Z" + "timestamp": "2025-11-27T04:03:45.091343-08:00" }, { "operation": "add_edge", - "rtt_ns": 795318, - "rtt_ms": 0.795318, + "rtt_ns": 1847834, + "rtt_ms": 1.847834, "checkpoint": 0, - "vertex_from": "89", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.367420329Z" + "vertex_from": "88", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.091433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289646, - "rtt_ms": 1.289646, + "rtt_ns": 1244917, + "rtt_ms": 1.244917, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "699", - "timestamp": "2025-11-27T01:23:42.367454859Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.092228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472566, - "rtt_ms": 1.472566, + "rtt_ns": 1258417, + "rtt_ms": 1.258417, "checkpoint": 0, - "vertex_from": "88", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.367461579Z" + "vertex_from": "89", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.092354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176106, - "rtt_ms": 1.176106, + "rtt_ns": 1320292, + "rtt_ms": 1.320292, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.368000587Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.092473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129077, - "rtt_ms": 1.129077, + "rtt_ns": 1219083, + "rtt_ms": 1.219083, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:42.368102897Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.092523-08:00" }, { "operation": "add_edge", - "rtt_ns": 894398, - "rtt_ms": 0.894398, + "rtt_ns": 1157541, + "rtt_ms": 1.157541, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.368233077Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:45.092592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384336, - "rtt_ms": 1.384336, + "rtt_ns": 1529000, + "rtt_ms": 1.529, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.368262457Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.09261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165037, - "rtt_ms": 1.165037, + "rtt_ns": 1468292, + "rtt_ms": 1.468292, "checkpoint": 0, "vertex_from": "89", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.368408736Z" + "timestamp": "2025-11-27T04:03:45.09265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490585, - "rtt_ms": 1.490585, + "rtt_ns": 1547792, + "rtt_ms": 1.547792, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:42.368946254Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.092679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631635, - "rtt_ms": 1.631635, + "rtt_ns": 1049041, + "rtt_ms": 1.049041, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:42.369027014Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:45.093659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628915, - "rtt_ms": 1.628915, + "rtt_ns": 1067542, + "rtt_ms": 1.067542, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:42.369049854Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:45.093748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724865, - "rtt_ms": 1.724865, + "rtt_ns": 1368125, + "rtt_ms": 1.368125, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.369088074Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.093892-08:00" }, { "operation": "add_edge", - "rtt_ns": 986177, - "rtt_ms": 0.986177, + "rtt_ns": 2742750, + "rtt_ms": 2.74275, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.369089724Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:03:45.09391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648485, - "rtt_ms": 1.648485, + "rtt_ns": 1452791, + "rtt_ms": 1.452791, "checkpoint": 0, "vertex_from": "89", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.369110844Z" + "timestamp": "2025-11-27T04:03:45.093927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606255, - "rtt_ms": 1.606255, + "rtt_ns": 1336083, + "rtt_ms": 1.336083, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:42.369839902Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.093929-08:00" }, { "operation": "add_edge", - "rtt_ns": 896508, - "rtt_ms": 0.896508, + "rtt_ns": 1745291, + "rtt_ms": 1.745291, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.369843772Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:45.093976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589905, - "rtt_ms": 1.589905, + "rtt_ns": 1621125, + "rtt_ms": 1.621125, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.369854492Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:45.093976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553795, - "rtt_ms": 1.553795, + "rtt_ns": 2748917, + "rtt_ms": 2.748917, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:42.369963401Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.094094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965374, - "rtt_ms": 1.965374, + "rtt_ns": 1462792, + "rtt_ms": 1.462792, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.369966791Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.094115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016017, - "rtt_ms": 1.016017, + "rtt_ns": 1265292, + "rtt_ms": 1.265292, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.370044361Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.095176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008717, - "rtt_ms": 1.008717, + "rtt_ns": 1303042, + "rtt_ms": 1.303042, "checkpoint": 0, "vertex_from": "89", "vertex_to": "96", - "timestamp": "2025-11-27T01:23:42.370059341Z" + "timestamp": "2025-11-27T04:03:45.095196-08:00" }, { "operation": "add_edge", - "rtt_ns": 996067, - "rtt_ms": 0.996067, + "rtt_ns": 1553792, + "rtt_ms": 1.553792, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.370084731Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.095214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580505, - "rtt_ms": 1.580505, + "rtt_ns": 1484208, + "rtt_ms": 1.484208, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.370692069Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.095233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647805, - "rtt_ms": 1.647805, + "rtt_ns": 1506000, + "rtt_ms": 1.506, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.370738689Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:45.095484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238266, - "rtt_ms": 1.238266, + "rtt_ns": 1618667, + "rtt_ms": 1.618667, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:42.371079138Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.095546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170207, - "rtt_ms": 1.170207, + "rtt_ns": 1467250, + "rtt_ms": 1.46725, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.371137968Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.095562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327626, - "rtt_ms": 1.327626, + "rtt_ns": 1526958, + "rtt_ms": 1.526958, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.371172428Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:45.095643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255247, - "rtt_ms": 1.255247, + "rtt_ns": 1878666, + "rtt_ms": 1.878666, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:42.371220148Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.095856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413926, - "rtt_ms": 1.413926, + "rtt_ns": 1082375, + "rtt_ms": 1.082375, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.371271608Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.096297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291636, - "rtt_ms": 1.291636, + "rtt_ns": 1304458, + "rtt_ms": 1.304458, "checkpoint": 0, "vertex_from": "90", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.371336787Z" + "timestamp": "2025-11-27T04:03:45.096501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271416, - "rtt_ms": 1.271416, + "rtt_ns": 1340875, + "rtt_ms": 1.340875, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:42.371357037Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.096518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320026, - "rtt_ms": 1.320026, + "rtt_ns": 1331667, + "rtt_ms": 1.331667, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.371380607Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.096894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058707, - "rtt_ms": 1.058707, + "rtt_ns": 1266459, + "rtt_ms": 1.266459, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.371798286Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.096912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204617, - "rtt_ms": 1.204617, + "rtt_ns": 1427000, + "rtt_ms": 1.427, "checkpoint": 0, "vertex_from": "90", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.371897476Z" + "timestamp": "2025-11-27T04:03:45.096912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938604, - "rtt_ms": 1.938604, + "rtt_ns": 1695666, + "rtt_ms": 1.695666, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:42.373159682Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:45.096929-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076164, - "rtt_ms": 2.076164, + "rtt_ns": 1388167, + "rtt_ms": 1.388167, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:42.373249922Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1456686, - "rtt_ms": 1.456686, - "checkpoint": 0, - "vertex_from": "91", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.373256302Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.096935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382996, - "rtt_ms": 1.382996, + "rtt_ns": 3472708, + "rtt_ms": 3.472708, "checkpoint": 0, - "vertex_from": "91", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.373281252Z" + "vertex_from": "89", + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:45.097402-08:00" }, { "operation": "add_edge", - "rtt_ns": 2234244, - "rtt_ms": 2.234244, + "rtt_ns": 1609958, + "rtt_ms": 1.609958, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.373314142Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:45.097467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249314, - "rtt_ms": 2.249314, + "rtt_ns": 1545291, + "rtt_ms": 1.545291, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.373388602Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:45.097844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2509732, - "rtt_ms": 2.509732, + "rtt_ns": 1625417, + "rtt_ms": 1.625417, "checkpoint": 0, "vertex_from": "90", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.3737825Z" + "timestamp": "2025-11-27T04:03:45.098128-08:00" }, { "operation": "add_edge", - "rtt_ns": 2450483, - "rtt_ms": 2.450483, + "rtt_ns": 1251041, + "rtt_ms": 1.251041, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.37378831Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.098146-08:00" }, { "operation": "add_edge", - "rtt_ns": 2460103, - "rtt_ms": 2.460103, + "rtt_ns": 1770500, + "rtt_ms": 1.7705, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.37381797Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.09829-08:00" }, { "operation": "add_edge", - "rtt_ns": 718398, - "rtt_ms": 0.718398, + "rtt_ns": 1223416, + "rtt_ms": 1.223416, "checkpoint": 0, - "vertex_from": "91", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.37388038Z" + "vertex_from": "92", + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.099355-08:00" }, { "operation": "add_edge", - "rtt_ns": 2718133, - "rtt_ms": 2.718133, + "rtt_ns": 1908541, + "rtt_ms": 1.908541, "checkpoint": 0, - "vertex_from": "90", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.37409959Z" + "vertex_from": "92", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.099376-08:00" }, { "operation": "add_edge", - "rtt_ns": 860828, - "rtt_ms": 0.860828, + "rtt_ns": 2461750, + "rtt_ms": 2.46175, "checkpoint": 0, "vertex_from": "91", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:42.37411271Z" - }, - { - "operation": "add_edge", - "rtt_ns": 877097, - "rtt_ms": 0.877097, - "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.374159549Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.099391-08:00" }, { "operation": "add_edge", - "rtt_ns": 855237, - "rtt_ms": 0.855237, + "rtt_ns": 1416709, + "rtt_ms": 1.416709, "checkpoint": 0, "vertex_from": "92", "vertex_to": "156", - "timestamp": "2025-11-27T01:23:42.374244879Z" + "timestamp": "2025-11-27T04:03:45.099564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069947, - "rtt_ms": 1.069947, + "rtt_ns": 2671292, + "rtt_ms": 2.671292, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.374327559Z" + "vertex_from": "91", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.099584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015547, - "rtt_ms": 1.015547, + "rtt_ns": 1743417, + "rtt_ms": 1.743417, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.374330289Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.099588-08:00" }, { "operation": "add_edge", - "rtt_ns": 814058, - "rtt_ms": 0.814058, + "rtt_ns": 2688583, + "rtt_ms": 2.688583, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.374695508Z" + "vertex_from": "91", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.099624-08:00" }, { "operation": "add_edge", - "rtt_ns": 926208, - "rtt_ms": 0.926208, + "rtt_ns": 2272250, + "rtt_ms": 2.27225, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.374715848Z" + "vertex_from": "91", + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:45.099676-08:00" }, { "operation": "add_edge", - "rtt_ns": 945788, - "rtt_ms": 0.945788, + "rtt_ns": 2890917, + "rtt_ms": 2.890917, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.374729948Z" + "vertex_from": "90", + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:45.099804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426816, - "rtt_ms": 1.426816, + "rtt_ns": 1638042, + "rtt_ms": 1.638042, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.375246106Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:45.100994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270087, - "rtt_ms": 1.270087, + "rtt_ns": 1405750, + "rtt_ms": 1.40575, "checkpoint": 0, "vertex_from": "92", "vertex_to": "158", - "timestamp": "2025-11-27T01:23:42.375430816Z" + "timestamp": "2025-11-27T04:03:45.100997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122057, - "rtt_ms": 1.122057, + "rtt_ns": 2710084, + "rtt_ms": 2.710084, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.375450766Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.101001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121857, - "rtt_ms": 1.121857, + "rtt_ns": 1619167, + "rtt_ms": 1.619167, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:42.375452956Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:45.101011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374336, - "rtt_ms": 1.374336, + "rtt_ns": 1513458, + "rtt_ms": 1.513458, "checkpoint": 0, "vertex_from": "92", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.375475936Z" + "timestamp": "2025-11-27T04:03:45.101078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371346, - "rtt_ms": 1.371346, + "rtt_ns": 1518125, + "rtt_ms": 1.518125, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.375484946Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:45.101143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360756, - "rtt_ms": 1.360756, + "rtt_ns": 1768042, + "rtt_ms": 1.768042, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:42.375606475Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.101145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954054, - "rtt_ms": 1.954054, + "rtt_ns": 1641667, + "rtt_ms": 1.641667, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.376650852Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.101318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1953694, - "rtt_ms": 1.953694, + "rtt_ns": 1527208, + "rtt_ms": 1.527208, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "287", - "timestamp": "2025-11-27T01:23:42.376671402Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:45.101334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201876, - "rtt_ms": 1.201876, + "rtt_ns": 1822375, + "rtt_ms": 1.822375, "checkpoint": 0, - "vertex_from": "93", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:42.376679072Z" + "vertex_from": "92", + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.101408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1953884, - "rtt_ms": 1.953884, + "rtt_ns": 1181292, + "rtt_ms": 1.181292, "checkpoint": 0, "vertex_from": "92", "vertex_to": "898", - "timestamp": "2025-11-27T01:23:42.376684852Z" + "timestamp": "2025-11-27T04:03:45.102185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460086, - "rtt_ms": 1.460086, + "rtt_ns": 1189041, + "rtt_ms": 1.189041, "checkpoint": 0, "vertex_from": "92", "vertex_to": "281", - "timestamp": "2025-11-27T01:23:42.376707272Z" + "timestamp": "2025-11-27T04:03:45.102201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351876, - "rtt_ms": 1.351876, + "rtt_ns": 1397542, + "rtt_ms": 1.397542, "checkpoint": 0, - "vertex_from": "93", - "vertex_to": "426", - "timestamp": "2025-11-27T01:23:42.376959151Z" + "vertex_from": "92", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.102542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592845, - "rtt_ms": 1.592845, + "rtt_ns": 1481792, + "rtt_ms": 1.481792, "checkpoint": 0, - "vertex_from": "93", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.377078871Z" + "vertex_from": "92", + "vertex_to": "405", + "timestamp": "2025-11-27T04:03:45.102562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696615, - "rtt_ms": 1.696615, + "rtt_ns": 1437500, + "rtt_ms": 1.4375, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.377149081Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:45.102584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786735, - "rtt_ms": 1.786735, + "rtt_ns": 1929292, + "rtt_ms": 1.929292, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "405", - "timestamp": "2025-11-27T01:23:42.377218501Z" + "vertex_from": "93", + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:45.103248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793094, - "rtt_ms": 1.793094, + "rtt_ns": 1853875, + "rtt_ms": 1.853875, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:42.37724705Z" + "vertex_from": "93", + "vertex_to": "426", + "timestamp": "2025-11-27T04:03:45.103264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137717, - "rtt_ms": 1.137717, + "rtt_ns": 2237042, + "rtt_ms": 2.237042, "checkpoint": 0, - "vertex_from": "94", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:42.377790449Z" + "vertex_from": "93", + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:45.103573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165967, - "rtt_ms": 1.165967, + "rtt_ns": 2812458, + "rtt_ms": 2.812458, "checkpoint": 0, - "vertex_from": "94", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.377846519Z" + "vertex_from": "92", + "vertex_to": "287", + "timestamp": "2025-11-27T04:03:45.10381-08:00" }, { "operation": "add_edge", - "rtt_ns": 958797, - "rtt_ms": 0.958797, + "rtt_ns": 2907750, + "rtt_ms": 2.90775, "checkpoint": 0, - "vertex_from": "94", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.377918888Z" + "vertex_from": "92", + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:45.103902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261926, - "rtt_ms": 1.261926, + "rtt_ns": 1778750, + "rtt_ms": 1.77875, "checkpoint": 0, "vertex_from": "94", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.377934728Z" + "timestamp": "2025-11-27T04:03:45.103981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239996, - "rtt_ms": 1.239996, + "rtt_ns": 1953584, + "rtt_ms": 1.953584, "checkpoint": 0, "vertex_from": "94", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.377947978Z" + "timestamp": "2025-11-27T04:03:45.104538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302366, - "rtt_ms": 1.302366, + "rtt_ns": 1992875, + "rtt_ms": 1.992875, "checkpoint": 0, "vertex_from": "94", "vertex_to": "928", - "timestamp": "2025-11-27T01:23:42.377988108Z" + "timestamp": "2025-11-27T04:03:45.104556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385746, - "rtt_ms": 1.385746, + "rtt_ns": 2028333, + "rtt_ms": 2.028333, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.378633886Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.104571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563875, - "rtt_ms": 1.563875, + "rtt_ns": 2401208, + "rtt_ms": 2.401208, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.378714526Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:45.104587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759294, - "rtt_ms": 1.759294, + "rtt_ns": 1168333, + "rtt_ms": 1.168333, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.378979715Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.104742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958084, - "rtt_ms": 1.958084, + "rtt_ns": 1156292, + "rtt_ms": 1.156292, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.379038545Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.105059-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1283946, - "rtt_ms": 1.283946, + "operation": "add_edge", + "rtt_ns": 1146625, + "rtt_ms": 1.146625, "checkpoint": 0, - "vertex_from": "95", - "timestamp": "2025-11-27T01:23:42.379280744Z" + "vertex_from": "94", + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:45.105128-08:00" }, { "operation": "add_edge", - "rtt_ns": 687918, - "rtt_ms": 0.687918, + "rtt_ns": 2022625, + "rtt_ms": 2.022625, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.379323684Z" + "vertex_from": "94", + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.105287-08:00" }, { "operation": "add_edge", - "rtt_ns": 952887, - "rtt_ms": 0.952887, + "rtt_ns": 1492084, + "rtt_ms": 1.492084, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.379668953Z" + "vertex_from": "94", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.105303-08:00" }, { "operation": "add_edge", - "rtt_ns": 724248, - "rtt_ms": 0.724248, + "rtt_ns": 2115500, + "rtt_ms": 2.1155, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.379710013Z" + "vertex_from": "94", + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.105365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791865, - "rtt_ms": 1.791865, + "rtt_ns": 1334417, + "rtt_ms": 1.334417, "checkpoint": 0, "vertex_from": "94", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.379711813Z" + "timestamp": "2025-11-27T04:03:45.105891-08:00" }, { "operation": "add_edge", - "rtt_ns": 757698, - "rtt_ms": 0.757698, + "rtt_ns": 1856584, + "rtt_ms": 1.856584, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.379798213Z" + "vertex_from": "94", + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.106396-08:00" }, { - "operation": "add_edge", - "rtt_ns": 827538, - "rtt_ms": 0.827538, + "operation": "add_vertex", + "rtt_ns": 1663959, + "rtt_ms": 1.663959, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.380156642Z" + "vertex_from": "95", + "timestamp": "2025-11-27T04:03:45.106409-08:00" }, { "operation": "add_vertex", - "rtt_ns": 896148, - "rtt_ms": 0.896148, + "rtt_ns": 1843167, + "rtt_ms": 1.843167, "checkpoint": 0, - "vertex_from": "429", - "timestamp": "2025-11-27T01:23:42.380179272Z" + "vertex_from": "95", + "timestamp": "2025-11-27T04:03:45.106415-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1827584, + "rtt_ms": 1.827584, + "checkpoint": 0, + "vertex_from": "95", + "timestamp": "2025-11-27T04:03:45.106415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2353993, - "rtt_ms": 2.353993, + "rtt_ns": 1685459, + "rtt_ms": 1.685459, "checkpoint": 0, - "vertex_from": "94", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.380201552Z" + "vertex_from": "96", + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:45.107577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2418243, - "rtt_ms": 2.418243, + "rtt_ns": 2299542, + "rtt_ms": 2.299542, "checkpoint": 0, - "vertex_from": "94", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:42.380210202Z" + "vertex_from": "96", + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.107588-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2333033, - "rtt_ms": 2.333033, + "operation": "add_edge", + "rtt_ns": 2535542, + "rtt_ms": 2.535542, "checkpoint": 0, - "vertex_from": "95", - "timestamp": "2025-11-27T01:23:42.380270831Z" + "vertex_from": "96", + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.107596-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2327293, - "rtt_ms": 2.327293, + "operation": "add_edge", + "rtt_ns": 1193375, + "rtt_ms": 1.193375, "checkpoint": 0, "vertex_from": "95", - "timestamp": "2025-11-27T01:23:42.380277461Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.107609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245506, - "rtt_ms": 1.245506, + "rtt_ns": 1216625, + "rtt_ms": 1.216625, "checkpoint": 0, "vertex_from": "96", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.380957949Z" + "timestamp": "2025-11-27T04:03:45.107613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324966, - "rtt_ms": 1.324966, + "rtt_ns": 2878833, + "rtt_ms": 2.878833, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.381124959Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.108008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882854, - "rtt_ms": 1.882854, + "rtt_ns": 1671334, + "rtt_ms": 1.671334, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.381596977Z" + "vertex_from": "95", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.108087-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1541865, - "rtt_ms": 1.541865, + "operation": "add_vertex", + "rtt_ns": 2439625, + "rtt_ms": 2.439625, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.381747487Z" + "vertex_from": "429", + "timestamp": "2025-11-27T04:03:45.108852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495186, - "rtt_ms": 1.495186, + "rtt_ns": 3499041, + "rtt_ms": 3.499041, "checkpoint": 0, - "vertex_from": "95", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.381767187Z" + "vertex_from": "96", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.108865-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102104, - "rtt_ms": 2.102104, + "rtt_ns": 3777917, + "rtt_ms": 3.777917, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.381774667Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:45.109082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613565, - "rtt_ms": 1.613565, + "rtt_ns": 1266375, + "rtt_ms": 1.266375, "checkpoint": 0, - "vertex_from": "95", - "vertex_to": "429", - "timestamp": "2025-11-27T01:23:42.381793357Z" + "vertex_from": "96", + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.109275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636155, - "rtt_ms": 1.636155, + "rtt_ns": 1815834, + "rtt_ms": 1.815834, "checkpoint": 0, "vertex_from": "96", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.381793937Z" + "timestamp": "2025-11-27T04:03:45.109413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648105, - "rtt_ms": 1.648105, + "rtt_ns": 1550750, + "rtt_ms": 1.55075, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.381861127Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:03:45.109639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591906, - "rtt_ms": 1.591906, + "rtt_ns": 2052625, + "rtt_ms": 2.052625, "checkpoint": 0, - "vertex_from": "95", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.381869757Z" + "vertex_from": "96", + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.109642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152057, - "rtt_ms": 1.152057, + "rtt_ns": 2071792, + "rtt_ms": 2.071792, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.382112256Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:45.10965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160087, - "rtt_ms": 1.160087, + "rtt_ns": 2069291, + "rtt_ms": 2.069291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.382758784Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:45.109679-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025834, - "rtt_ms": 2.025834, + "rtt_ns": 2324667, + "rtt_ms": 2.324667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:42.383154033Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.109939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486966, - "rtt_ms": 1.486966, + "rtt_ns": 1477875, + "rtt_ms": 1.477875, "checkpoint": 0, "vertex_from": "96", "vertex_to": "206", - "timestamp": "2025-11-27T01:23:42.383236493Z" + "timestamp": "2025-11-27T04:03:45.110561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482475, - "rtt_ms": 1.482475, + "rtt_ns": 1173709, + "rtt_ms": 1.173709, "checkpoint": 0, "vertex_from": "96", "vertex_to": "278", - "timestamp": "2025-11-27T01:23:42.383258792Z" + "timestamp": "2025-11-27T04:03:45.110587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512705, - "rtt_ms": 1.512705, + "rtt_ns": 1855208, + "rtt_ms": 1.855208, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.383308802Z" + "vertex_from": "95", + "vertex_to": "429", + "timestamp": "2025-11-27T04:03:45.110708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628245, - "rtt_ms": 1.628245, + "rtt_ns": 1853709, + "rtt_ms": 1.853709, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "112", - "timestamp": "2025-11-27T01:23:42.383396932Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.110719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843244, - "rtt_ms": 1.843244, + "rtt_ns": 1851917, + "rtt_ms": 1.851917, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "167", - "timestamp": "2025-11-27T01:23:42.383705831Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:45.111496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958084, - "rtt_ms": 1.958084, + "rtt_ns": 1866584, + "rtt_ms": 1.866584, "checkpoint": 0, "vertex_from": "96", "vertex_to": "360", - "timestamp": "2025-11-27T01:23:42.383753841Z" + "timestamp": "2025-11-27T04:03:45.111509-08:00" }, { "operation": "add_edge", - "rtt_ns": 2558512, - "rtt_ms": 2.558512, + "rtt_ns": 1928167, + "rtt_ms": 1.928167, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:42.384430139Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:03:45.11158-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395943, - "rtt_ms": 2.395943, + "rtt_ns": 1941625, + "rtt_ms": 1.941625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.384509259Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:45.111622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779745, - "rtt_ms": 1.779745, + "rtt_ns": 2398959, + "rtt_ms": 2.398959, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:42.384539789Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:03:45.111675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199307, - "rtt_ms": 1.199307, + "rtt_ns": 1828125, + "rtt_ms": 1.828125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.384599049Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.111768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391626, - "rtt_ms": 1.391626, + "rtt_ns": 1367417, + "rtt_ms": 1.367417, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "331", - "timestamp": "2025-11-27T01:23:42.384630599Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:45.112088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410726, - "rtt_ms": 1.410726, + "rtt_ns": 1637291, + "rtt_ms": 1.637291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:42.384673668Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:03:45.112346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553565, - "rtt_ms": 1.553565, + "rtt_ns": 1953666, + "rtt_ms": 1.953666, "checkpoint": 0, "vertex_from": "96", "vertex_to": "944", - "timestamp": "2025-11-27T01:23:42.384711118Z" + "timestamp": "2025-11-27T04:03:45.112542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021137, - "rtt_ms": 1.021137, + "rtt_ns": 1662042, + "rtt_ms": 1.662042, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.384776748Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.113243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085887, - "rtt_ms": 1.085887, + "rtt_ns": 1587167, + "rtt_ms": 1.587167, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.384793288Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.113263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486626, - "rtt_ms": 1.486626, + "rtt_ns": 1782417, + "rtt_ms": 1.782417, "checkpoint": 0, "vertex_from": "96", "vertex_to": "284", - "timestamp": "2025-11-27T01:23:42.384797608Z" + "timestamp": "2025-11-27T04:03:45.113279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056777, - "rtt_ms": 1.056777, + "rtt_ns": 971792, + "rtt_ms": 0.971792, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.385488106Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:45.113516-08:00" }, { "operation": "add_edge", - "rtt_ns": 941618, - "rtt_ms": 0.941618, + "rtt_ns": 1430583, + "rtt_ms": 1.430583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:42.385617506Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.113521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122427, - "rtt_ms": 1.122427, + "rtt_ns": 1234833, + "rtt_ms": 1.234833, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.385663256Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.113582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102147, - "rtt_ms": 1.102147, + "rtt_ns": 1933667, + "rtt_ms": 1.933667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.385702276Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:45.113702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193447, - "rtt_ms": 1.193447, + "rtt_ns": 2090334, + "rtt_ms": 2.090334, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:42.385704846Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.113713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152007, - "rtt_ms": 1.152007, + "rtt_ns": 3154167, + "rtt_ms": 3.154167, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:42.385864775Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:45.113716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127557, - "rtt_ms": 1.127557, + "rtt_ns": 2225917, + "rtt_ms": 2.225917, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.385926695Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.113735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294116, - "rtt_ms": 1.294116, + "rtt_ns": 1040500, + "rtt_ms": 1.0405, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:42.385928975Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:45.114321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614326, - "rtt_ms": 1.614326, + "rtt_ns": 1296958, + "rtt_ms": 1.296958, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.386392714Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:45.114561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635376, - "rtt_ms": 1.635376, + "rtt_ns": 1354542, + "rtt_ms": 1.354542, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.386430884Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:45.114598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411976, - "rtt_ms": 1.411976, + "rtt_ns": 1049417, + "rtt_ms": 1.049417, "checkpoint": 0, "vertex_from": "96", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.386901752Z" + "timestamp": "2025-11-27T04:03:45.114632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716005, - "rtt_ms": 1.716005, + "rtt_ns": 1144834, + "rtt_ms": 1.144834, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.387336601Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.114662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664365, - "rtt_ms": 1.664365, + "rtt_ns": 1277250, + "rtt_ms": 1.27725, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.387368661Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.114799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004827, - "rtt_ms": 1.004827, + "rtt_ns": 1200667, + "rtt_ms": 1.200667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.387398651Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.1158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577586, - "rtt_ms": 1.577586, + "rtt_ns": 2146541, + "rtt_ms": 2.146541, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.387505451Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:45.115852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849734, - "rtt_ms": 1.849734, + "rtt_ns": 2196208, + "rtt_ms": 2.196208, "checkpoint": 0, "vertex_from": "96", "vertex_to": "402", - "timestamp": "2025-11-27T01:23:42.38751457Z" + "timestamp": "2025-11-27T04:03:45.11591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808584, - "rtt_ms": 1.808584, + "rtt_ns": 2241209, + "rtt_ms": 2.241209, "checkpoint": 0, "vertex_from": "96", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.38751491Z" + "timestamp": "2025-11-27T04:03:45.115977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589315, - "rtt_ms": 1.589315, + "rtt_ns": 1451041, + "rtt_ms": 1.451041, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.38751971Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.116084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090496, - "rtt_ms": 1.090496, + "rtt_ns": 1461125, + "rtt_ms": 1.461125, "checkpoint": 0, "vertex_from": "96", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.38752301Z" + "timestamp": "2025-11-27T04:03:45.116124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693125, - "rtt_ms": 1.693125, + "rtt_ns": 1709291, + "rtt_ms": 1.709291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "101", - "timestamp": "2025-11-27T01:23:42.38755903Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.116271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269847, - "rtt_ms": 1.269847, + "rtt_ns": 2687583, + "rtt_ms": 2.687583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:42.388173389Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.116406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095426, - "rtt_ms": 1.095426, + "rtt_ns": 2182666, + "rtt_ms": 2.182666, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:42.388602447Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:03:45.116504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264926, - "rtt_ms": 1.264926, + "rtt_ns": 2059209, + "rtt_ms": 2.059209, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:42.388603507Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:45.116859-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1423084, + "rtt_ms": 1.423084, + "checkpoint": 0, + "vertex_from": "96", + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:45.117508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261546, - "rtt_ms": 1.261546, + "rtt_ns": 1827958, + "rtt_ms": 1.827958, "checkpoint": 0, "vertex_from": "96", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:42.388631557Z" + "timestamp": "2025-11-27T04:03:45.117681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168307, - "rtt_ms": 1.168307, + "rtt_ns": 1799709, + "rtt_ms": 1.799709, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.388685147Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:03:45.11771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172077, - "rtt_ms": 1.172077, + "rtt_ns": 1756041, + "rtt_ms": 1.756041, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.388688757Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:45.117734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270137, - "rtt_ms": 1.270137, + "rtt_ns": 1987458, + "rtt_ms": 1.987458, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:42.388791377Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:45.117788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300757, - "rtt_ms": 1.300757, + "rtt_ns": 1770000, + "rtt_ms": 1.77, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.388860417Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:45.117895-08:00" }, { "operation": "add_edge", - "rtt_ns": 721028, - "rtt_ms": 0.721028, + "rtt_ns": 1499291, + "rtt_ms": 1.499291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.389407125Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.117909-08:00" }, { "operation": "add_edge", - "rtt_ns": 818608, - "rtt_ms": 0.818608, + "rtt_ns": 1408625, + "rtt_ms": 1.408625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.389451375Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.117914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344186, - "rtt_ms": 1.344186, + "rtt_ns": 1706875, + "rtt_ms": 1.706875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "104", - "timestamp": "2025-11-27T01:23:42.389518875Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:45.117978-08:00" }, { "operation": "add_edge", - "rtt_ns": 934137, - "rtt_ms": 0.934137, + "rtt_ns": 1031958, + "rtt_ms": 1.031958, "checkpoint": 0, "vertex_from": "96", "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.389539504Z" + "timestamp": "2025-11-27T04:03:45.118714-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019774, - "rtt_ms": 2.019774, + "rtt_ns": 1142125, + "rtt_ms": 1.142125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.389544674Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.118877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2154873, - "rtt_ms": 2.154873, + "rtt_ns": 2141000, + "rtt_ms": 2.141, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:42.389554934Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.119852-08:00" }, { "operation": "add_edge", - "rtt_ns": 953817, - "rtt_ms": 0.953817, + "rtt_ns": 3034750, + "rtt_ms": 3.03475, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.389558654Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:03:45.119896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366136, - "rtt_ms": 1.366136, + "rtt_ns": 2098583, + "rtt_ms": 2.098583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.390227892Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:45.120014-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2540125, + "rtt_ms": 2.540125, + "checkpoint": 0, + "vertex_from": "96", + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:45.120049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436295, - "rtt_ms": 1.436295, + "rtt_ns": 2266041, + "rtt_ms": 2.266041, "checkpoint": 0, "vertex_from": "96", "vertex_to": "369", - "timestamp": "2025-11-27T01:23:42.390228842Z" + "timestamp": "2025-11-27T04:03:45.120163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558125, - "rtt_ms": 1.558125, + "rtt_ns": 2244917, + "rtt_ms": 2.244917, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:42.390248442Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:03:45.120224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022627, - "rtt_ms": 1.022627, + "rtt_ns": 2451750, + "rtt_ms": 2.45175, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:42.390430812Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:45.120241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102036, - "rtt_ms": 1.102036, + "rtt_ns": 2429792, + "rtt_ms": 2.429792, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "171", - "timestamp": "2025-11-27T01:23:42.390554581Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.12034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087776, - "rtt_ms": 1.087776, + "rtt_ns": 2215500, + "rtt_ms": 2.2155, "checkpoint": 0, "vertex_from": "96", "vertex_to": "736", - "timestamp": "2025-11-27T01:23:42.390608261Z" + "timestamp": "2025-11-27T04:03:45.120932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064757, - "rtt_ms": 1.064757, + "rtt_ns": 1301250, + "rtt_ms": 1.30125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.390624591Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.121155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743655, - "rtt_ms": 1.743655, + "rtt_ns": 2364583, + "rtt_ms": 2.364583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.391290809Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:45.121242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831585, - "rtt_ms": 1.831585, + "rtt_ns": 1373250, + "rtt_ms": 1.37325, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:42.391388169Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:45.121388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185164, - "rtt_ms": 2.185164, + "rtt_ns": 1552084, + "rtt_ms": 1.552084, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:42.391725758Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:45.121449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638376, - "rtt_ms": 1.638376, + "rtt_ns": 1286250, + "rtt_ms": 1.28625, "checkpoint": 0, "vertex_from": "96", "vertex_to": "902", - "timestamp": "2025-11-27T01:23:42.391869278Z" + "timestamp": "2025-11-27T04:03:45.12145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712575, - "rtt_ms": 1.712575, + "rtt_ns": 1442458, + "rtt_ms": 1.442458, "checkpoint": 0, "vertex_from": "96", "vertex_to": "153", - "timestamp": "2025-11-27T01:23:42.391941617Z" + "timestamp": "2025-11-27T04:03:45.121493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528855, - "rtt_ms": 1.528855, + "rtt_ns": 1727083, + "rtt_ms": 1.727083, "checkpoint": 0, "vertex_from": "96", "vertex_to": "275", - "timestamp": "2025-11-27T01:23:42.391960607Z" + "timestamp": "2025-11-27T04:03:45.121968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716505, - "rtt_ms": 1.716505, + "rtt_ns": 1952333, + "rtt_ms": 1.952333, "checkpoint": 0, "vertex_from": "96", "vertex_to": "595", - "timestamp": "2025-11-27T01:23:42.391966337Z" + "timestamp": "2025-11-27T04:03:45.122177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404576, - "rtt_ms": 1.404576, + "rtt_ns": 2184417, + "rtt_ms": 2.184417, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.392013797Z" + "vertex_to": "728", + "timestamp": "2025-11-27T04:03:45.122525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887665, - "rtt_ms": 1.887665, + "rtt_ns": 1603916, + "rtt_ms": 1.603916, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:42.392513476Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.122537-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059034, - "rtt_ms": 2.059034, + "rtt_ns": 1389708, + "rtt_ms": 1.389708, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "728", - "timestamp": "2025-11-27T01:23:42.392615125Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.122633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422186, - "rtt_ms": 1.422186, + "rtt_ns": 1661750, + "rtt_ms": 1.66175, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "105", - "timestamp": "2025-11-27T01:23:42.392811795Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:45.122819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573096, - "rtt_ms": 1.573096, + "rtt_ns": 1562333, + "rtt_ms": 1.562333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.392867035Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.123057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186817, - "rtt_ms": 1.186817, + "rtt_ns": 1680625, + "rtt_ms": 1.680625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:42.392913795Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:03:45.123071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153946, - "rtt_ms": 1.153946, + "rtt_ns": 1749500, + "rtt_ms": 1.7495, "checkpoint": 0, "vertex_from": "96", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.393024374Z" + "timestamp": "2025-11-27T04:03:45.123202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105267, - "rtt_ms": 1.105267, + "rtt_ns": 1975583, + "rtt_ms": 1.975583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.393120714Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:45.123426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218477, - "rtt_ms": 1.218477, + "rtt_ns": 1726583, + "rtt_ms": 1.726583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.393160964Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:45.123696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273517, - "rtt_ms": 1.273517, + "rtt_ns": 1546000, + "rtt_ms": 1.546, "checkpoint": 0, "vertex_from": "96", "vertex_to": "163", - "timestamp": "2025-11-27T01:23:42.393241384Z" + "timestamp": "2025-11-27T04:03:45.123724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387686, - "rtt_ms": 1.387686, + "rtt_ns": 1295750, + "rtt_ms": 1.29575, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:42.393349603Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.123821-08:00" }, { "operation": "add_edge", - "rtt_ns": 864557, - "rtt_ms": 0.864557, + "rtt_ns": 1689000, + "rtt_ms": 1.689, "checkpoint": 0, "vertex_from": "96", "vertex_to": "714", - "timestamp": "2025-11-27T01:23:42.393379093Z" + "timestamp": "2025-11-27T04:03:45.124227-08:00" }, { "operation": "add_edge", - "rtt_ns": 786218, - "rtt_ms": 0.786218, + "rtt_ns": 1299459, + "rtt_ms": 1.299459, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:42.393403053Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:03:45.124357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070077, - "rtt_ms": 1.070077, + "rtt_ns": 1518791, + "rtt_ms": 1.518791, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:42.393883282Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:45.124722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187316, - "rtt_ms": 1.187316, + "rtt_ns": 1676500, + "rtt_ms": 1.6765, "checkpoint": 0, "vertex_from": "96", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.394101961Z" + "timestamp": "2025-11-27T04:03:45.124755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316646, - "rtt_ms": 1.316646, + "rtt_ns": 1248584, + "rtt_ms": 1.248584, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "173", - "timestamp": "2025-11-27T01:23:42.394185091Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:45.124973-08:00" }, { "operation": "add_edge", - "rtt_ns": 853948, - "rtt_ms": 0.853948, + "rtt_ns": 893417, + "rtt_ms": 0.893417, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "97", - "timestamp": "2025-11-27T01:23:42.394204641Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.125121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090667, - "rtt_ms": 1.090667, + "rtt_ns": 1731583, + "rtt_ms": 1.731583, "checkpoint": 0, "vertex_from": "96", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.394212861Z" + "timestamp": "2025-11-27T04:03:45.125158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001187, - "rtt_ms": 1.001187, + "rtt_ns": 2534583, + "rtt_ms": 2.534583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:42.394243731Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:45.125168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148647, - "rtt_ms": 1.148647, + "rtt_ns": 1507708, + "rtt_ms": 1.507708, "checkpoint": 0, "vertex_from": "96", "vertex_to": "134", - "timestamp": "2025-11-27T01:23:42.394310931Z" + "timestamp": "2025-11-27T04:03:45.125204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298707, - "rtt_ms": 1.298707, + "rtt_ns": 2670333, + "rtt_ms": 2.670333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:42.394324461Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:45.125492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541006, - "rtt_ms": 1.541006, + "rtt_ns": 2148500, + "rtt_ms": 2.1485, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:42.394945419Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:03:45.125971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585736, - "rtt_ms": 1.585736, + "rtt_ns": 1285083, + "rtt_ms": 1.285083, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.394965669Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:45.126041-08:00" }, { "operation": "add_edge", - "rtt_ns": 933978, - "rtt_ms": 0.933978, + "rtt_ns": 1979833, + "rtt_ms": 1.979833, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.395037609Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:45.126338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219906, - "rtt_ms": 1.219906, + "rtt_ns": 1420834, + "rtt_ms": 1.420834, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.395105058Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.126397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216026, - "rtt_ms": 1.216026, + "rtt_ns": 1749291, + "rtt_ms": 1.749291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.395462557Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.126472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447696, - "rtt_ms": 1.447696, + "rtt_ns": 1381709, + "rtt_ms": 1.381709, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.395662387Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:45.126587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378426, - "rtt_ms": 1.378426, + "rtt_ns": 1485250, + "rtt_ms": 1.48525, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.395706437Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.126644-08:00" }, { "operation": "add_edge", - "rtt_ns": 874867, - "rtt_ms": 0.874867, + "rtt_ns": 1576084, + "rtt_ms": 1.576084, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "459", - "timestamp": "2025-11-27T01:23:42.395842086Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:45.126698-08:00" }, { "operation": "add_edge", - "rtt_ns": 936817, - "rtt_ms": 0.936817, + "rtt_ns": 1535667, + "rtt_ms": 1.535667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:42.395884326Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.126705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157976, - "rtt_ms": 1.157976, + "rtt_ns": 1314416, + "rtt_ms": 1.314416, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.396197905Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.126809-08:00" }, { "operation": "add_edge", - "rtt_ns": 976348, - "rtt_ms": 0.976348, + "rtt_ns": 1552792, + "rtt_ms": 1.552792, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.396440865Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:45.127525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250094, - "rtt_ms": 2.250094, + "rtt_ns": 1531125, + "rtt_ms": 1.531125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:42.396457125Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:03:45.127573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155844, - "rtt_ms": 2.155844, + "rtt_ns": 1784583, + "rtt_ms": 1.784583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:42.396468525Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.128125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405446, - "rtt_ms": 1.405446, + "rtt_ns": 1423459, + "rtt_ms": 1.423459, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.396512414Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:03:45.12813-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507453, - "rtt_ms": 2.507453, + "rtt_ns": 1573709, + "rtt_ms": 1.573709, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.396694704Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:45.128163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533995, - "rtt_ms": 1.533995, + "rtt_ns": 1695709, + "rtt_ms": 1.695709, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:42.397198582Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.128169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534095, - "rtt_ms": 1.534095, + "rtt_ns": 1362125, + "rtt_ms": 1.362125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "139", - "timestamp": "2025-11-27T01:23:42.397241632Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.128173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391786, - "rtt_ms": 1.391786, + "rtt_ns": 1812334, + "rtt_ms": 1.812334, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:42.397277292Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.12821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457756, - "rtt_ms": 1.457756, + "rtt_ns": 1626334, + "rtt_ms": 1.626334, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:42.397302342Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:03:45.128272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440036, - "rtt_ms": 1.440036, + "rtt_ns": 1588291, + "rtt_ms": 1.588291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:42.39813661Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:45.128287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789414, - "rtt_ms": 1.789414, + "rtt_ns": 1666500, + "rtt_ms": 1.6665, "checkpoint": 0, "vertex_from": "96", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.398232559Z" + "timestamp": "2025-11-27T04:03:45.129193-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058764, - "rtt_ms": 2.058764, + "rtt_ns": 1657333, + "rtt_ms": 1.657333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.398257659Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:03:45.129232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347543, - "rtt_ms": 2.347543, + "rtt_ns": 1248875, + "rtt_ms": 1.248875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.398861387Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.129419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2497172, - "rtt_ms": 2.497172, + "rtt_ns": 1277917, + "rtt_ms": 1.277917, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "425", - "timestamp": "2025-11-27T01:23:42.398956567Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:45.129442-08:00" }, { "operation": "add_edge", - "rtt_ns": 2995251, - "rtt_ms": 2.995251, + "rtt_ns": 1609417, + "rtt_ms": 1.609417, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "803", - "timestamp": "2025-11-27T01:23:42.399464946Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.129785-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250663, - "rtt_ms": 2.250663, + "rtt_ns": 1542708, + "rtt_ms": 1.542708, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.399529085Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:45.129831-08:00" }, { "operation": "add_edge", - "rtt_ns": 2407613, - "rtt_ms": 2.407613, + "rtt_ns": 1704750, + "rtt_ms": 1.70475, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.399609715Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:03:45.129831-08:00" }, { "operation": "add_edge", - "rtt_ns": 2451323, - "rtt_ms": 2.451323, + "rtt_ns": 1622084, + "rtt_ms": 1.622084, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.399694265Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.129833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2433583, - "rtt_ms": 2.433583, + "rtt_ns": 1601458, + "rtt_ms": 1.601458, "checkpoint": 0, "vertex_from": "96", "vertex_to": "204", - "timestamp": "2025-11-27T01:23:42.399737595Z" + "timestamp": "2025-11-27T04:03:45.129874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951284, - "rtt_ms": 1.951284, + "rtt_ns": 1748875, + "rtt_ms": 1.748875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:42.400089684Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.12988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538746, - "rtt_ms": 1.538746, + "rtt_ns": 1357708, + "rtt_ms": 1.357708, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.400404693Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:45.130553-08:00" }, { "operation": "add_edge", - "rtt_ns": 2189544, - "rtt_ms": 2.189544, + "rtt_ns": 1350041, + "rtt_ms": 1.350041, "checkpoint": 0, "vertex_from": "96", "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.400448953Z" + "timestamp": "2025-11-27T04:03:45.130591-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261264, - "rtt_ms": 2.261264, + "rtt_ns": 1411625, + "rtt_ms": 1.411625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:42.400494913Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:45.130854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571656, - "rtt_ms": 1.571656, + "rtt_ns": 1563584, + "rtt_ms": 1.563584, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:42.400530363Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.130983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124246, - "rtt_ms": 1.124246, + "rtt_ns": 1477750, + "rtt_ms": 1.47775, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.400590882Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:03:45.131312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736885, - "rtt_ms": 1.736885, + "rtt_ns": 1640000, + "rtt_ms": 1.64, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:42.40126754Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:03:45.131472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397056, - "rtt_ms": 1.397056, + "rtt_ns": 1896417, + "rtt_ms": 1.896417, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:42.40148873Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.131683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815905, - "rtt_ms": 1.815905, + "rtt_ns": 1916958, + "rtt_ms": 1.916958, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "102", - "timestamp": "2025-11-27T01:23:42.40151167Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:45.131749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910685, - "rtt_ms": 1.910685, + "rtt_ns": 1873083, + "rtt_ms": 1.873083, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "100", - "timestamp": "2025-11-27T01:23:42.40152194Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:45.131755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133414, - "rtt_ms": 2.133414, + "rtt_ns": 1888709, + "rtt_ms": 1.888709, "checkpoint": 0, "vertex_from": "96", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.401874659Z" + "timestamp": "2025-11-27T04:03:45.131764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499036, - "rtt_ms": 1.499036, + "rtt_ns": 1215666, + "rtt_ms": 1.215666, "checkpoint": 0, "vertex_from": "96", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.401905689Z" + "timestamp": "2025-11-27T04:03:45.13177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562185, - "rtt_ms": 1.562185, + "rtt_ns": 1512125, + "rtt_ms": 1.512125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:42.402059358Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.132104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665335, - "rtt_ms": 1.665335, + "rtt_ns": 1384709, + "rtt_ms": 1.384709, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.402118298Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:45.13224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607185, - "rtt_ms": 1.607185, + "rtt_ns": 1289125, + "rtt_ms": 1.289125, "checkpoint": 0, "vertex_from": "96", "vertex_to": "660", - "timestamp": "2025-11-27T01:23:42.402139228Z" + "timestamp": "2025-11-27T04:03:45.132273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833835, - "rtt_ms": 1.833835, + "rtt_ns": 1509792, + "rtt_ms": 1.509792, "checkpoint": 0, "vertex_from": "97", "vertex_to": "356", - "timestamp": "2025-11-27T01:23:42.402426077Z" + "timestamp": "2025-11-27T04:03:45.132823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203847, - "rtt_ms": 1.203847, + "rtt_ns": 1351292, + "rtt_ms": 1.351292, "checkpoint": 0, "vertex_from": "97", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.402472477Z" + "timestamp": "2025-11-27T04:03:45.132826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250226, - "rtt_ms": 1.250226, + "rtt_ns": 1726375, + "rtt_ms": 1.726375, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "795", - "timestamp": "2025-11-27T01:23:42.402774776Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.133492-08:00" }, { "operation": "add_edge", - "rtt_ns": 931447, - "rtt_ms": 0.931447, + "rtt_ns": 1793125, + "rtt_ms": 1.793125, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.402808056Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.133898-08:00" }, { "operation": "add_edge", - "rtt_ns": 930637, - "rtt_ms": 0.930637, + "rtt_ns": 1671500, + "rtt_ms": 1.6715, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.402837536Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:45.133913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346916, - "rtt_ms": 1.346916, + "rtt_ns": 2178417, + "rtt_ms": 2.178417, "checkpoint": 0, "vertex_from": "97", "vertex_to": "652", - "timestamp": "2025-11-27T01:23:42.402860416Z" + "timestamp": "2025-11-27T04:03:45.133928-08:00" }, { "operation": "add_edge", - "rtt_ns": 917528, - "rtt_ms": 0.917528, + "rtt_ns": 1667750, + "rtt_ms": 1.66775, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.402978056Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:45.133943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254827, - "rtt_ms": 1.254827, + "rtt_ns": 2201000, + "rtt_ms": 2.201, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:42.403396615Z" + "vertex_to": "795", + "timestamp": "2025-11-27T04:03:45.133958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939584, - "rtt_ms": 1.939584, + "rtt_ns": 2201875, + "rtt_ms": 2.201875, + "checkpoint": 0, + "vertex_from": "97", + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.133973-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2288541, + "rtt_ms": 2.288541, "checkpoint": 0, "vertex_from": "97", "vertex_to": "453", - "timestamp": "2025-11-27T01:23:42.403430814Z" + "timestamp": "2025-11-27T04:03:45.133974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510626, - "rtt_ms": 1.510626, + "rtt_ns": 2076833, + "rtt_ms": 2.076833, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:42.403630964Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.134905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225507, - "rtt_ms": 1.225507, + "rtt_ns": 2100125, + "rtt_ms": 2.100125, "checkpoint": 0, "vertex_from": "97", "vertex_to": "114", - "timestamp": "2025-11-27T01:23:42.403653194Z" + "timestamp": "2025-11-27T04:03:45.134924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342236, - "rtt_ms": 1.342236, + "rtt_ns": 1800500, + "rtt_ms": 1.8005, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.403816433Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:45.135294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683775, - "rtt_ms": 1.683775, + "rtt_ns": 1341709, + "rtt_ms": 1.341709, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:42.404497951Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.135317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015277, - "rtt_ms": 1.015277, + "rtt_ns": 1456375, + "rtt_ms": 1.456375, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.404648261Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.1354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879195, - "rtt_ms": 1.879195, + "rtt_ns": 1540375, + "rtt_ms": 1.540375, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:42.404655041Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:45.135439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811645, - "rtt_ms": 1.811645, + "rtt_ns": 1512583, + "rtt_ms": 1.512583, "checkpoint": 0, "vertex_from": "97", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.404673441Z" + "timestamp": "2025-11-27T04:03:45.135442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855325, - "rtt_ms": 1.855325, + "rtt_ns": 1488584, + "rtt_ms": 1.488584, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.404694131Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.135447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717895, - "rtt_ms": 1.717895, + "rtt_ns": 1505375, + "rtt_ms": 1.505375, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.404697601Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:45.135479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302856, - "rtt_ms": 1.302856, + "rtt_ns": 1602083, + "rtt_ms": 1.602083, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.40495759Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:45.135516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779334, - "rtt_ms": 1.779334, + "rtt_ns": 1629000, + "rtt_ms": 1.629, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.405176969Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.136554-08:00" }, { "operation": "add_edge", - "rtt_ns": 806597, - "rtt_ms": 0.806597, + "rtt_ns": 1685041, + "rtt_ms": 1.685041, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:42.405766897Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.136591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271476, - "rtt_ms": 1.271476, + "rtt_ns": 1427292, + "rtt_ms": 1.427292, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:42.405772027Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.136828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126376, - "rtt_ms": 1.126376, + "rtt_ns": 1389625, + "rtt_ms": 1.389625, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.405803917Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:45.136838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147606, - "rtt_ms": 1.147606, + "rtt_ns": 1529667, + "rtt_ms": 1.529667, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.405804727Z" + "vertex_to": "460", + "timestamp": "2025-11-27T04:03:45.136849-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375913, - "rtt_ms": 2.375913, + "rtt_ns": 1561125, + "rtt_ms": 1.561125, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.405808797Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:45.136856-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021304, - "rtt_ms": 2.021304, + "rtt_ns": 1440458, + "rtt_ms": 1.440458, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.405839217Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:45.136883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186446, - "rtt_ms": 1.186446, + "rtt_ns": 1416625, + "rtt_ms": 1.416625, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:42.405886767Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:45.136896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300616, - "rtt_ms": 1.300616, + "rtt_ns": 1478000, + "rtt_ms": 1.478, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:42.405996467Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:45.136995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461055, - "rtt_ms": 1.461055, + "rtt_ns": 1591958, + "rtt_ms": 1.591958, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "460", - "timestamp": "2025-11-27T01:23:42.406111236Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.137033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072987, - "rtt_ms": 1.072987, + "rtt_ns": 1431667, + "rtt_ms": 1.431667, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.406878784Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:45.137988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702345, - "rtt_ms": 1.702345, + "rtt_ns": 1210959, + "rtt_ms": 1.210959, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:42.406880504Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:45.138041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076147, - "rtt_ms": 1.076147, + "rtt_ns": 1410541, + "rtt_ms": 1.410541, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.406882654Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.138267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203357, - "rtt_ms": 1.203357, + "rtt_ns": 1696958, + "rtt_ms": 1.696958, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:42.406971894Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:45.138289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2530703, - "rtt_ms": 2.530703, + "rtt_ns": 1392959, + "rtt_ms": 1.392959, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:42.40830531Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.13829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2665503, - "rtt_ms": 2.665503, + "rtt_ns": 1470833, + "rtt_ms": 1.470833, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:42.40847545Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.13831-08:00" }, { "operation": "add_edge", - "rtt_ns": 2707662, - "rtt_ms": 2.707662, + "rtt_ns": 1441666, + "rtt_ms": 1.441666, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.408550019Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.138475-08:00" }, { "operation": "add_edge", - "rtt_ns": 2494683, - "rtt_ms": 2.494683, + "rtt_ns": 1480041, + "rtt_ms": 1.480041, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.409376477Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.138476-08:00" }, { "operation": "add_edge", - "rtt_ns": 3521290, - "rtt_ms": 3.52129, + "rtt_ns": 1632458, + "rtt_ms": 1.632458, "checkpoint": 0, "vertex_from": "97", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.409409427Z" + "timestamp": "2025-11-27T04:03:45.138516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2576793, - "rtt_ms": 2.576793, + "rtt_ns": 1712708, + "rtt_ms": 1.712708, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.409456617Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:45.138563-08:00" }, { "operation": "add_edge", - "rtt_ns": 3359221, - "rtt_ms": 3.359221, + "rtt_ns": 1282709, + "rtt_ms": 1.282709, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.409471597Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.139271-08:00" }, { "operation": "add_edge", - "rtt_ns": 2997942, - "rtt_ms": 2.997942, + "rtt_ns": 1334125, + "rtt_ms": 1.334125, "checkpoint": 0, "vertex_from": "97", "vertex_to": "100", - "timestamp": "2025-11-27T01:23:42.409882056Z" + "timestamp": "2025-11-27T04:03:45.139376-08:00" }, { "operation": "add_edge", - "rtt_ns": 2921852, - "rtt_ms": 2.921852, + "rtt_ns": 1381209, + "rtt_ms": 1.381209, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.409894626Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.139671-08:00" }, { "operation": "add_edge", - "rtt_ns": 3943038, - "rtt_ms": 3.943038, + "rtt_ns": 1417750, + "rtt_ms": 1.41775, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.409941885Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.139686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856125, - "rtt_ms": 1.856125, + "rtt_ns": 1461750, + "rtt_ms": 1.46175, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.410162475Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:45.139939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722245, - "rtt_ms": 1.722245, + "rtt_ns": 1478666, + "rtt_ms": 1.478666, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "227", - "timestamp": "2025-11-27T01:23:42.410199505Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.139955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694636, - "rtt_ms": 1.694636, + "rtt_ns": 1694792, + "rtt_ms": 1.694792, "checkpoint": 0, "vertex_from": "97", "vertex_to": "285", - "timestamp": "2025-11-27T01:23:42.410245725Z" + "timestamp": "2025-11-27T04:03:45.140007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737635, - "rtt_ms": 1.737635, + "rtt_ns": 1736541, + "rtt_ms": 1.736541, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.411115842Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:03:45.140028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659475, - "rtt_ms": 1.659475, + "rtt_ns": 1510208, + "rtt_ms": 1.510208, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.411132202Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:45.140027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213317, - "rtt_ms": 1.213317, + "rtt_ns": 1508792, + "rtt_ms": 1.508792, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:42.411156472Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:45.140072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773625, - "rtt_ms": 1.773625, + "rtt_ns": 1059875, + "rtt_ms": 1.059875, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.411183982Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.140437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387016, - "rtt_ms": 1.387016, + "rtt_ns": 1273917, + "rtt_ms": 1.273917, "checkpoint": 0, "vertex_from": "97", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:42.411270252Z" + "timestamp": "2025-11-27T04:03:45.140546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388026, - "rtt_ms": 1.388026, + "rtt_ns": 1276708, + "rtt_ms": 1.276708, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.411283562Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:45.140964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154846, - "rtt_ms": 1.154846, + "rtt_ns": 1356625, + "rtt_ms": 1.356625, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.411355641Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:45.141029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203876, - "rtt_ms": 1.203876, + "rtt_ns": 1621292, + "rtt_ms": 1.621292, "checkpoint": 0, - "vertex_from": "97", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:42.411368191Z" + "vertex_from": "98", + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.141649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769315, - "rtt_ms": 1.769315, + "rtt_ns": 1664083, + "rtt_ms": 1.664083, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.41201658Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:03:45.141672-08:00" }, { "operation": "add_edge", - "rtt_ns": 2559963, - "rtt_ms": 2.559963, + "rtt_ns": 1737542, + "rtt_ms": 1.737542, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:42.41201803Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.141678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438806, - "rtt_ms": 1.438806, + "rtt_ns": 1723708, + "rtt_ms": 1.723708, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.412597508Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.141679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481676, - "rtt_ms": 1.481676, + "rtt_ns": 1190333, + "rtt_ms": 1.190333, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "295", - "timestamp": "2025-11-27T01:23:42.412599308Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.141737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591405, - "rtt_ms": 1.591405, + "rtt_ns": 1683708, + "rtt_ms": 1.683708, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.412724417Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.141757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413466, - "rtt_ms": 1.413466, + "rtt_ns": 1855125, + "rtt_ms": 1.855125, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.412782737Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.141885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534455, - "rtt_ms": 1.534455, + "rtt_ns": 1591958, + "rtt_ms": 1.591958, "checkpoint": 0, "vertex_from": "98", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.412805997Z" + "timestamp": "2025-11-27T04:03:45.142029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657675, - "rtt_ms": 1.657675, + "rtt_ns": 1596375, + "rtt_ms": 1.596375, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.412843007Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.142561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520276, - "rtt_ms": 1.520276, + "rtt_ns": 1596833, + "rtt_ms": 1.596833, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.412879077Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.142628-08:00" }, { "operation": "add_edge", - "rtt_ns": 876057, - "rtt_ms": 0.876057, + "rtt_ns": 1032375, + "rtt_ms": 1.032375, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:42.412895927Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:03:45.142918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619445, - "rtt_ms": 1.619445, + "rtt_ns": 1266083, + "rtt_ms": 1.266083, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.412904247Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:45.143004-08:00" }, { "operation": "add_edge", - "rtt_ns": 922377, - "rtt_ms": 0.922377, + "rtt_ns": 1546209, + "rtt_ms": 1.546209, "checkpoint": 0, "vertex_from": "98", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.412939917Z" + "timestamp": "2025-11-27T04:03:45.143197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019647, - "rtt_ms": 1.019647, + "rtt_ns": 1537584, + "rtt_ms": 1.537584, "checkpoint": 0, "vertex_from": "98", "vertex_to": "131", - "timestamp": "2025-11-27T01:23:42.413619345Z" + "timestamp": "2025-11-27T04:03:45.143218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216726, - "rtt_ms": 1.216726, + "rtt_ns": 1475125, + "rtt_ms": 1.475125, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.413817664Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.143233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554686, - "rtt_ms": 1.554686, + "rtt_ns": 1566208, + "rtt_ms": 1.566208, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "932", - "timestamp": "2025-11-27T01:23:42.414362653Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:45.143239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686485, - "rtt_ms": 1.686485, + "rtt_ns": 1789458, + "rtt_ms": 1.789458, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.414411982Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:45.14347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716725, - "rtt_ms": 1.716725, + "rtt_ns": 1459000, + "rtt_ms": 1.459, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.414500582Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.14349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627135, - "rtt_ms": 1.627135, + "rtt_ns": 1640625, + "rtt_ms": 1.640625, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:42.414532282Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:45.14427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756185, - "rtt_ms": 1.756185, + "rtt_ns": 1453250, + "rtt_ms": 1.45325, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.414600532Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:45.144373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673815, - "rtt_ms": 1.673815, + "rtt_ns": 1163625, + "rtt_ms": 1.163625, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:42.414614682Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.144397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996554, - "rtt_ms": 1.996554, + "rtt_ns": 1849333, + "rtt_ms": 1.849333, "checkpoint": 0, "vertex_from": "98", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.414876661Z" + "timestamp": "2025-11-27T04:03:45.144411-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124614, - "rtt_ms": 2.124614, + "rtt_ns": 1507291, + "rtt_ms": 1.507291, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:42.415022061Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:45.144514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293627, - "rtt_ms": 1.293627, + "rtt_ns": 1444625, + "rtt_ms": 1.444625, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.415706599Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:45.144642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948004, - "rtt_ms": 1.948004, + "rtt_ns": 1444542, + "rtt_ms": 1.444542, "checkpoint": 0, "vertex_from": "98", "vertex_to": "394", - "timestamp": "2025-11-27T01:23:42.415766938Z" + "timestamp": "2025-11-27T04:03:45.144663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234006, - "rtt_ms": 1.234006, + "rtt_ns": 1644875, + "rtt_ms": 1.644875, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.415849738Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.144884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488915, - "rtt_ms": 1.488915, + "rtt_ns": 1413167, + "rtt_ms": 1.413167, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.415852568Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:45.144904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420526, - "rtt_ms": 1.420526, + "rtt_ns": 1499625, + "rtt_ms": 1.499625, "checkpoint": 0, "vertex_from": "98", "vertex_to": "670", - "timestamp": "2025-11-27T01:23:42.415922888Z" + "timestamp": "2025-11-27T04:03:45.144971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417896, - "rtt_ms": 1.417896, + "rtt_ns": 1293083, + "rtt_ms": 1.293083, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.415951198Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.145667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371386, - "rtt_ms": 1.371386, + "rtt_ns": 1413750, + "rtt_ms": 1.41375, "checkpoint": 0, "vertex_from": "98", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.415973098Z" + "timestamp": "2025-11-27T04:03:45.145684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636475, - "rtt_ms": 1.636475, + "rtt_ns": 1488750, + "rtt_ms": 1.48875, "checkpoint": 0, "vertex_from": "98", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.416514676Z" + "timestamp": "2025-11-27T04:03:45.145887-08:00" }, { "operation": "add_edge", - "rtt_ns": 3067431, - "rtt_ms": 3.067431, - "checkpoint": 0, - "vertex_from": "98", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:42.416688036Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1728555, - "rtt_ms": 1.728555, + "rtt_ns": 1494542, + "rtt_ms": 1.494542, "checkpoint": 0, "vertex_from": "98", "vertex_to": "585", - "timestamp": "2025-11-27T01:23:42.416752166Z" + "timestamp": "2025-11-27T04:03:45.145907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270587, - "rtt_ms": 1.270587, + "rtt_ns": 1374959, + "rtt_ms": 1.374959, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:42.417124275Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:45.146039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382737, - "rtt_ms": 1.382737, + "rtt_ns": 1488958, + "rtt_ms": 1.488958, "checkpoint": 0, "vertex_from": "98", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.417150455Z" + "timestamp": "2025-11-27T04:03:45.146133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587575, - "rtt_ms": 1.587575, + "rtt_ns": 1924042, + "rtt_ms": 1.924042, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.417295514Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:45.146809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451246, - "rtt_ms": 1.451246, + "rtt_ns": 1921666, + "rtt_ms": 1.921666, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.417302604Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.146827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913894, - "rtt_ms": 1.913894, + "rtt_ns": 2376708, + "rtt_ms": 2.376708, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.417888292Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.146907-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006504, - "rtt_ms": 2.006504, + "rtt_ns": 2079292, + "rtt_ms": 2.079292, "checkpoint": 0, "vertex_from": "98", "vertex_to": "203", - "timestamp": "2025-11-27T01:23:42.417959202Z" + "timestamp": "2025-11-27T04:03:45.147051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594036, - "rtt_ms": 1.594036, + "rtt_ns": 1314125, + "rtt_ms": 1.314125, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.418109402Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.147222-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188514, - "rtt_ms": 2.188514, + "rtt_ns": 1568083, + "rtt_ms": 1.568083, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.418112712Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.147253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426016, - "rtt_ms": 1.426016, + "rtt_ns": 1393834, + "rtt_ms": 1.393834, "checkpoint": 0, "vertex_from": "98", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.418114712Z" + "timestamp": "2025-11-27T04:03:45.147281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380266, - "rtt_ms": 1.380266, + "rtt_ns": 3943209, + "rtt_ms": 3.943209, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.418133762Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.149611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552805, - "rtt_ms": 1.552805, + "rtt_ns": 5370208, + "rtt_ms": 5.370208, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.41867807Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.151506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673885, - "rtt_ms": 1.673885, + "rtt_ns": 5799083, + "rtt_ms": 5.799083, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.41882589Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.151838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583256, - "rtt_ms": 1.583256, + "rtt_ns": 516298791, + "rtt_ms": 516.298791, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "805", - "timestamp": "2025-11-27T01:23:42.41888712Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.663579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288944, - "rtt_ms": 2.288944, + "rtt_ns": 516413875, + "rtt_ms": 516.413875, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.420178646Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:45.663666-08:00" }, { "operation": "add_edge", - "rtt_ns": 3473220, - "rtt_ms": 3.47322, + "rtt_ns": 514124333, + "rtt_ms": 514.124333, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:42.420770024Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:03:45.663735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2783322, - "rtt_ms": 2.783322, + "rtt_ns": 512446125, + "rtt_ms": 512.446125, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:42.420896994Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.664284-08:00" }, { "operation": "add_edge", - "rtt_ns": 2991082, - "rtt_ms": 2.991082, + "rtt_ns": 517533416, + "rtt_ms": 517.533416, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:42.420952514Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:45.664342-08:00" }, { "operation": "add_edge", - "rtt_ns": 2856192, - "rtt_ms": 2.856192, + "rtt_ns": 517566833, + "rtt_ms": 517.566833, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "611", - "timestamp": "2025-11-27T01:23:42.420991224Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:03:45.664392-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199143, - "rtt_ms": 2.199143, + "rtt_ns": 517498625, + "rtt_ms": 517.498625, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.421028363Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.664404-08:00" }, { "operation": "add_edge", - "rtt_ns": 2418693, - "rtt_ms": 2.418693, + "rtt_ns": 512903458, + "rtt_ms": 512.903458, "checkpoint": 0, "vertex_from": "98", "vertex_to": "650", - "timestamp": "2025-11-27T01:23:42.421098083Z" + "timestamp": "2025-11-27T04:03:45.664408-08:00" }, { "operation": "add_edge", - "rtt_ns": 2776541, - "rtt_ms": 2.776541, + "rtt_ns": 517195666, + "rtt_ms": 517.195666, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:42.421665101Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:45.664417-08:00" }, { "operation": "add_edge", - "rtt_ns": 964577, - "rtt_ms": 0.964577, + "rtt_ns": 517396791, + "rtt_ms": 517.396791, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:42.421736321Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:45.664447-08:00" }, { "operation": "add_edge", - "rtt_ns": 3754739, - "rtt_ms": 3.754739, + "rtt_ns": 3544042, + "rtt_ms": 3.544042, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:42.421865451Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:03:45.667132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759125, - "rtt_ms": 1.759125, + "rtt_ns": 3516708, + "rtt_ms": 3.516708, "checkpoint": 0, "vertex_from": "98", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:42.421941371Z" + "timestamp": "2025-11-27T04:03:45.667186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099407, - "rtt_ms": 1.099407, + "rtt_ns": 3532042, + "rtt_ms": 3.532042, "checkpoint": 0, - "vertex_from": "98", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.421997661Z" + "vertex_from": "99", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.667981-08:00" }, { "operation": "add_edge", - "rtt_ns": 3945538, - "rtt_ms": 3.945538, + "rtt_ns": 3655250, + "rtt_ms": 3.65525, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.42206153Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628936, - "rtt_ms": 1.628936, + "rtt_ns": 3684667, + "rtt_ms": 3.684667, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.422658599Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:03:45.668096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584515, - "rtt_ms": 1.584515, + "rtt_ns": 4368791, + "rtt_ms": 4.368791, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "461", - "timestamp": "2025-11-27T01:23:42.422684468Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:45.668106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737684, - "rtt_ms": 1.737684, + "rtt_ns": 3729583, + "rtt_ms": 3.729583, "checkpoint": 0, - "vertex_from": "98", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.422692258Z" + "vertex_from": "99", + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:45.66815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715854, - "rtt_ms": 1.715854, + "rtt_ns": 3873416, + "rtt_ms": 3.873416, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "571", - "timestamp": "2025-11-27T01:23:42.422708448Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.66828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812155, - "rtt_ms": 1.812155, + "rtt_ns": 3910167, + "rtt_ms": 3.910167, "checkpoint": 0, - "vertex_from": "99", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:42.423479726Z" + "vertex_from": "98", + "vertex_to": "571", + "timestamp": "2025-11-27T04:03:45.668305-08:00" }, { "operation": "add_edge", - "rtt_ns": 866777, - "rtt_ms": 0.866777, + "rtt_ns": 4031250, + "rtt_ms": 4.03125, "checkpoint": 0, - "vertex_from": "99", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.423526706Z" + "vertex_from": "98", + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.668319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665395, - "rtt_ms": 1.665395, + "rtt_ns": 3701875, + "rtt_ms": 3.701875, "checkpoint": 0, "vertex_from": "99", "vertex_to": "116", - "timestamp": "2025-11-27T01:23:42.423532786Z" + "timestamp": "2025-11-27T04:03:45.670838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857295, - "rtt_ms": 1.857295, + "rtt_ns": 3767417, + "rtt_ms": 3.767417, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.423596496Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.670955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638975, - "rtt_ms": 1.638975, + "rtt_ns": 3218792, + "rtt_ms": 3.218792, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.423702405Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:45.671371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723325, - "rtt_ms": 1.723325, + "rtt_ns": 3433833, + "rtt_ms": 3.433833, "checkpoint": 0, "vertex_from": "99", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.423724005Z" + "timestamp": "2025-11-27T04:03:45.671418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818894, - "rtt_ms": 1.818894, + "rtt_ns": 3363541, + "rtt_ms": 3.363541, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.423761525Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:03:45.671472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959395, - "rtt_ms": 1.959395, + "rtt_ns": 3451583, + "rtt_ms": 3.451583, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "295", - "timestamp": "2025-11-27T01:23:42.424645103Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.671549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940445, - "rtt_ms": 1.940445, + "rtt_ns": 3753958, + "rtt_ms": 3.753958, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:42.424650683Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.671758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972135, - "rtt_ms": 1.972135, + "rtt_ns": 3621625, + "rtt_ms": 3.621625, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.424667203Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:45.671903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648635, - "rtt_ms": 1.648635, + "rtt_ns": 3737292, + "rtt_ms": 3.737292, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.425183971Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:45.672059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571976, - "rtt_ms": 1.571976, + "rtt_ns": 4143416, + "rtt_ms": 4.143416, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "995", - "timestamp": "2025-11-27T01:23:42.425276761Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.67245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779355, - "rtt_ms": 1.779355, + "rtt_ns": 3156958, + "rtt_ms": 3.156958, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:42.425307931Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.674114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833855, - "rtt_ms": 1.833855, + "rtt_ns": 3398125, + "rtt_ms": 3.398125, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.425315571Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:45.67424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671376, - "rtt_ms": 1.671376, + "rtt_ns": 2800542, + "rtt_ms": 2.800542, "checkpoint": 0, - "vertex_from": "99", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:42.425397661Z" + "vertex_from": "100", + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.674275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253923, - "rtt_ms": 2.253923, + "rtt_ns": 3230041, + "rtt_ms": 3.230041, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.425851889Z" + "vertex_to": "995", + "timestamp": "2025-11-27T04:03:45.674604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215616, - "rtt_ms": 1.215616, + "rtt_ns": 3214333, + "rtt_ms": 3.214333, "checkpoint": 0, - "vertex_from": "100", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.425867459Z" + "vertex_from": "99", + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:45.674634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2162344, - "rtt_ms": 2.162344, + "rtt_ns": 3184917, + "rtt_ms": 3.184917, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.425924609Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.674736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297496, - "rtt_ms": 1.297496, + "rtt_ns": 2870667, + "rtt_ms": 2.870667, "checkpoint": 0, "vertex_from": "100", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.425968279Z" + "timestamp": "2025-11-27T04:03:45.674777-08:00" }, { "operation": "add_edge", - "rtt_ns": 904798, - "rtt_ms": 0.904798, + "rtt_ns": 2723583, + "rtt_ms": 2.723583, "checkpoint": 0, "vertex_from": "100", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.426090299Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1575165, - "rtt_ms": 1.575165, - "checkpoint": 0, - "vertex_from": "100", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.426221668Z" + "timestamp": "2025-11-27T04:03:45.674784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686645, - "rtt_ms": 1.686645, + "rtt_ns": 3126875, + "rtt_ms": 3.126875, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.426996726Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.674887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751495, - "rtt_ms": 1.751495, + "rtt_ns": 3161792, + "rtt_ms": 3.161792, "checkpoint": 0, "vertex_from": "100", "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.427029496Z" + "timestamp": "2025-11-27T04:03:45.675614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183087, - "rtt_ms": 1.183087, + "rtt_ns": 2987958, + "rtt_ms": 2.987958, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.427038976Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:45.677105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733565, - "rtt_ms": 1.733565, + "rtt_ns": 2955791, + "rtt_ms": 2.955791, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.427050446Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:45.677232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197917, - "rtt_ms": 1.197917, + "rtt_ns": 2781208, + "rtt_ms": 2.781208, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.427066896Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.677568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104747, - "rtt_ms": 1.104747, + "rtt_ns": 3340291, + "rtt_ms": 3.340291, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.427074286Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.677582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678305, - "rtt_ms": 1.678305, + "rtt_ns": 2964542, + "rtt_ms": 2.964542, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:42.427077076Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.6776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166407, - "rtt_ms": 1.166407, + "rtt_ns": 2902416, + "rtt_ms": 2.902416, "checkpoint": 0, "vertex_from": "100", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.427092146Z" + "timestamp": "2025-11-27T04:03:45.677642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179256, - "rtt_ms": 1.179256, + "rtt_ns": 2976208, + "rtt_ms": 2.976208, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.427270425Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.677755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646856, - "rtt_ms": 1.646856, + "rtt_ns": 3223167, + "rtt_ms": 3.223167, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:42.427869624Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:45.677828-08:00" }, { "operation": "add_edge", - "rtt_ns": 956097, - "rtt_ms": 0.956097, + "rtt_ns": 3010459, + "rtt_ms": 3.010459, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.427987443Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:03:45.677899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092047, - "rtt_ms": 1.092047, + "rtt_ns": 2428000, + "rtt_ms": 2.428, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.428144693Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.678045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216137, - "rtt_ms": 1.216137, + "rtt_ns": 2802667, + "rtt_ms": 2.802667, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.428215123Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.67991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793325, - "rtt_ms": 1.793325, + "rtt_ns": 2829875, + "rtt_ms": 2.829875, "checkpoint": 0, "vertex_from": "100", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.428833651Z" + "timestamp": "2025-11-27T04:03:45.680064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803875, - "rtt_ms": 1.803875, + "rtt_ns": 2495333, + "rtt_ms": 2.495333, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.428873951Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:45.680252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629146, - "rtt_ms": 1.629146, + "rtt_ns": 2741250, + "rtt_ms": 2.74125, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:42.428905111Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:03:45.680343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815035, - "rtt_ms": 1.815035, + "rtt_ns": 2882334, + "rtt_ms": 2.882334, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:42.428908411Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:45.680468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859115, - "rtt_ms": 1.859115, + "rtt_ns": 2968167, + "rtt_ms": 2.968167, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "659", - "timestamp": "2025-11-27T01:23:42.428935271Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.680613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866544, - "rtt_ms": 1.866544, + "rtt_ns": 3148458, + "rtt_ms": 3.148458, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.42894472Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.680718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123447, - "rtt_ms": 1.123447, + "rtt_ns": 2724792, + "rtt_ms": 2.724792, "checkpoint": 0, "vertex_from": "100", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.42911325Z" + "timestamp": "2025-11-27T04:03:45.680771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257186, - "rtt_ms": 1.257186, + "rtt_ns": 2989041, + "rtt_ms": 2.989041, "checkpoint": 0, "vertex_from": "100", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.42913019Z" + "timestamp": "2025-11-27T04:03:45.680889-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444683, - "rtt_ms": 2.444683, + "rtt_ns": 3074500, + "rtt_ms": 3.0745, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.430591166Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:45.680904-08:00" }, { "operation": "add_edge", - "rtt_ns": 2899671, - "rtt_ms": 2.899671, + "rtt_ns": 2417042, + "rtt_ms": 2.417042, "checkpoint": 0, "vertex_from": "100", "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.431116764Z" + "timestamp": "2025-11-27T04:03:45.682483-08:00" }, { "operation": "add_edge", - "rtt_ns": 2445553, - "rtt_ms": 2.445553, + "rtt_ns": 2652667, + "rtt_ms": 2.652667, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.431280554Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.682566-08:00" }, { "operation": "add_edge", - "rtt_ns": 2413072, - "rtt_ms": 2.413072, + "rtt_ns": 2665375, + "rtt_ms": 2.665375, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:42.431322863Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.683011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2451592, - "rtt_ms": 2.451592, + "rtt_ns": 2678667, + "rtt_ms": 2.678667, "checkpoint": 0, "vertex_from": "100", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.431358763Z" + "timestamp": "2025-11-27T04:03:45.683149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2516512, - "rtt_ms": 2.516512, + "rtt_ns": 2942500, + "rtt_ms": 2.9425, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.431392883Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.683197-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315753, - "rtt_ms": 2.315753, + "rtt_ns": 2363417, + "rtt_ms": 2.363417, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.431432283Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:03:45.68327-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321723, - "rtt_ms": 2.321723, + "rtt_ns": 2674541, + "rtt_ms": 2.674541, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "745", - "timestamp": "2025-11-27T01:23:42.431453673Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:45.683289-08:00" }, { "operation": "add_edge", - "rtt_ns": 3276971, - "rtt_ms": 3.276971, + "rtt_ns": 2577916, + "rtt_ms": 2.577916, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:42.432224571Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.683469-08:00" }, { "operation": "add_edge", - "rtt_ns": 3308630, - "rtt_ms": 3.30863, + "rtt_ns": 2778625, + "rtt_ms": 2.778625, "checkpoint": 0, "vertex_from": "100", "vertex_to": "535", - "timestamp": "2025-11-27T01:23:42.432247531Z" + "timestamp": "2025-11-27T04:03:45.683498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170747, - "rtt_ms": 1.170747, + "rtt_ns": 2820167, + "rtt_ms": 2.820167, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:42.432289181Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:45.683592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756684, - "rtt_ms": 1.756684, + "rtt_ns": 2650667, + "rtt_ms": 2.650667, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.43235005Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:45.685222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654665, - "rtt_ms": 1.654665, + "rtt_ns": 2798125, + "rtt_ms": 2.798125, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.433014418Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.685285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691005, - "rtt_ms": 1.691005, + "rtt_ns": 3052625, + "rtt_ms": 3.052625, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.433015118Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.686065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638255, - "rtt_ms": 1.638255, + "rtt_ns": 2823542, + "rtt_ms": 2.823542, "checkpoint": 0, "vertex_from": "100", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.433032948Z" + "timestamp": "2025-11-27T04:03:45.686094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759774, - "rtt_ms": 1.759774, + "rtt_ns": 3483625, + "rtt_ms": 3.483625, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.433043408Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.686682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594045, - "rtt_ms": 1.594045, + "rtt_ns": 3413541, + "rtt_ms": 3.413541, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.433049108Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.686704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616645, - "rtt_ms": 1.616645, + "rtt_ns": 3572792, + "rtt_ms": 3.572792, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.433050358Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.686723-08:00" }, { "operation": "add_edge", - "rtt_ns": 810518, - "rtt_ms": 0.810518, + "rtt_ns": 3273167, + "rtt_ms": 3.273167, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:42.433826526Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:45.686743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600245, - "rtt_ms": 1.600245, + "rtt_ns": 3292625, + "rtt_ms": 3.292625, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "395", - "timestamp": "2025-11-27T01:23:42.433891666Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:45.686887-08:00" }, { "operation": "add_edge", - "rtt_ns": 895838, - "rtt_ms": 0.895838, + "rtt_ns": 2481166, + "rtt_ms": 2.481166, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.433911696Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:45.687769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692775, - "rtt_ms": 1.692775, + "rtt_ns": 4294083, + "rtt_ms": 4.294083, "checkpoint": 0, "vertex_from": "100", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:42.433926756Z" + "timestamp": "2025-11-27T04:03:45.687793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808844, - "rtt_ms": 1.808844, + "rtt_ns": 2656458, + "rtt_ms": 2.656458, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:42.434059095Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:03:45.68788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749585, - "rtt_ms": 1.749585, + "rtt_ns": 2716416, + "rtt_ms": 2.716416, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:42.434101405Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:45.688783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711755, - "rtt_ms": 1.711755, + "rtt_ns": 2061792, + "rtt_ms": 2.061792, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:42.434746573Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:45.688806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722035, - "rtt_ms": 1.722035, + "rtt_ns": 2950250, + "rtt_ms": 2.95025, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.434774743Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.689046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740665, - "rtt_ms": 1.740665, + "rtt_ns": 2779208, + "rtt_ms": 2.779208, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "159", - "timestamp": "2025-11-27T01:23:42.434788263Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:45.689504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741725, - "rtt_ms": 1.741725, + "rtt_ns": 2636792, + "rtt_ms": 2.636792, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:42.434793483Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:45.689526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207826, - "rtt_ms": 1.207826, + "rtt_ns": 1846333, + "rtt_ms": 1.846333, "checkpoint": 0, "vertex_from": "101", "vertex_to": "799", - "timestamp": "2025-11-27T01:23:42.435103982Z" + "timestamp": "2025-11-27T04:03:45.689618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721434, - "rtt_ms": 1.721434, + "rtt_ns": 1938750, + "rtt_ms": 1.93875, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.43565011Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.689733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842824, - "rtt_ms": 1.842824, + "rtt_ns": 3586750, + "rtt_ms": 3.58675, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:42.43567097Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:45.69027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835574, - "rtt_ms": 1.835574, + "rtt_ns": 3588083, + "rtt_ms": 3.588083, "checkpoint": 0, - "vertex_from": "101", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.43574975Z" + "vertex_from": "100", + "vertex_to": "159", + "timestamp": "2025-11-27T04:03:45.690294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668615, - "rtt_ms": 1.668615, + "rtt_ns": 2668791, + "rtt_ms": 2.668791, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.43577143Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.69055-08:00" }, { "operation": "add_edge", - "rtt_ns": 987447, - "rtt_ms": 0.987447, + "rtt_ns": 2178583, + "rtt_ms": 2.178583, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:42.43577967Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:45.6918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003307, - "rtt_ms": 1.003307, + "rtt_ns": 3015042, + "rtt_ms": 3.015042, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:42.4357801Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.691823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790765, - "rtt_ms": 1.790765, + "rtt_ns": 3051834, + "rtt_ms": 3.051834, "checkpoint": 0, "vertex_from": "101", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.43585226Z" + "timestamp": "2025-11-27T04:03:45.691837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070877, - "rtt_ms": 1.070877, + "rtt_ns": 2357375, + "rtt_ms": 2.357375, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:42.43586628Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:45.691862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122617, - "rtt_ms": 1.122617, + "rtt_ns": 2829666, + "rtt_ms": 2.829666, "checkpoint": 0, "vertex_from": "101", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.43587061Z" + "timestamp": "2025-11-27T04:03:45.691877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468816, - "rtt_ms": 1.468816, + "rtt_ns": 2858334, + "rtt_ms": 2.858334, "checkpoint": 0, "vertex_from": "101", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.436574658Z" + "timestamp": "2025-11-27T04:03:45.692593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244177, - "rtt_ms": 1.244177, + "rtt_ns": 3085916, + "rtt_ms": 3.085916, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "527", - "timestamp": "2025-11-27T01:23:42.436896887Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:45.692613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142717, - "rtt_ms": 1.142717, + "rtt_ns": 2177000, + "rtt_ms": 2.177, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.436915337Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.692728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241147, - "rtt_ms": 1.241147, + "rtt_ns": 2740917, + "rtt_ms": 2.740917, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.436992157Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.693035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346496, - "rtt_ms": 1.346496, + "rtt_ns": 2784417, + "rtt_ms": 2.784417, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.437129376Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:03:45.693056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466756, - "rtt_ms": 1.466756, + "rtt_ns": 2654833, + "rtt_ms": 2.654833, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.437139626Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.694456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365566, - "rtt_ms": 1.365566, + "rtt_ns": 2652625, + "rtt_ms": 2.652625, "checkpoint": 0, "vertex_from": "101", "vertex_to": "468", - "timestamp": "2025-11-27T01:23:42.437147666Z" + "timestamp": "2025-11-27T04:03:45.694479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315526, - "rtt_ms": 1.315526, + "rtt_ns": 2632667, + "rtt_ms": 2.632667, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.437188866Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:45.694496-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2674833, + "rtt_ms": 2.674833, + "checkpoint": 0, + "vertex_from": "101", + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.694513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365776, - "rtt_ms": 1.365776, + "rtt_ns": 2767500, + "rtt_ms": 2.7675, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:42.437219706Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.694647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357086, - "rtt_ms": 1.357086, + "rtt_ns": 1593459, + "rtt_ms": 1.593459, "checkpoint": 0, - "vertex_from": "101", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.437224156Z" + "vertex_from": "102", + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:45.694651-08:00" }, { "operation": "add_edge", - "rtt_ns": 669388, - "rtt_ms": 0.669388, + "rtt_ns": 2446833, + "rtt_ms": 2.446833, "checkpoint": 0, "vertex_from": "102", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.437245846Z" + "timestamp": "2025-11-27T04:03:45.695061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042757, - "rtt_ms": 1.042757, + "rtt_ns": 2479416, + "rtt_ms": 2.479416, "checkpoint": 0, - "vertex_from": "102", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.437941054Z" + "vertex_from": "101", + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.695075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079007, - "rtt_ms": 1.079007, + "rtt_ns": 2355666, + "rtt_ms": 2.355666, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.437996874Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.695085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035967, - "rtt_ms": 1.035967, + "rtt_ns": 2101750, + "rtt_ms": 2.10175, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:42.438029604Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.695139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527016, - "rtt_ms": 1.527016, + "rtt_ns": 1821250, + "rtt_ms": 1.82125, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:42.438717512Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.696471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607456, - "rtt_ms": 1.607456, + "rtt_ns": 2033750, + "rtt_ms": 2.03375, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.438752082Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:45.696548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653896, - "rtt_ms": 1.653896, + "rtt_ns": 2131916, + "rtt_ms": 2.131916, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:42.438786852Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.696628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660026, - "rtt_ms": 1.660026, + "rtt_ns": 1800084, + "rtt_ms": 1.800084, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.438809102Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.696877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566856, - "rtt_ms": 1.566856, + "rtt_ns": 2283792, + "rtt_ms": 2.283792, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.438814942Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.696936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605346, - "rtt_ms": 1.605346, + "rtt_ns": 2458541, + "rtt_ms": 2.458541, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.438826882Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:45.696939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692375, - "rtt_ms": 1.692375, + "rtt_ns": 2496291, + "rtt_ms": 2.496291, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.438918141Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:45.696954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605235, - "rtt_ms": 1.605235, + "rtt_ns": 1932000, + "rtt_ms": 1.932, "checkpoint": 0, "vertex_from": "102", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.439603629Z" + "timestamp": "2025-11-27T04:03:45.697019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636965, - "rtt_ms": 1.636965, + "rtt_ns": 1917125, + "rtt_ms": 1.917125, "checkpoint": 0, "vertex_from": "102", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.439668679Z" + "timestamp": "2025-11-27T04:03:45.697058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782455, - "rtt_ms": 1.782455, + "rtt_ns": 2084625, + "rtt_ms": 2.084625, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.439727069Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.697147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085577, - "rtt_ms": 1.085577, + "rtt_ns": 2104292, + "rtt_ms": 2.104292, "checkpoint": 0, "vertex_from": "102", "vertex_to": "177", - "timestamp": "2025-11-27T01:23:42.439839169Z" + "timestamp": "2025-11-27T04:03:45.698653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156537, - "rtt_ms": 1.156537, + "rtt_ns": 2046917, + "rtt_ms": 2.046917, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.439875669Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.698676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131606, - "rtt_ms": 1.131606, + "rtt_ns": 2064250, + "rtt_ms": 2.06425, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.439919788Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:45.698944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098116, - "rtt_ms": 1.098116, + "rtt_ns": 2026292, + "rtt_ms": 2.026292, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.439926698Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:45.698964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117236, - "rtt_ms": 1.117236, + "rtt_ns": 1965708, + "rtt_ms": 1.965708, "checkpoint": 0, - "vertex_from": "102", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.439933838Z" + "vertex_from": "103", + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.698986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750865, - "rtt_ms": 1.750865, + "rtt_ns": 2534084, + "rtt_ms": 2.534084, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:42.440563547Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.699006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681715, - "rtt_ms": 1.681715, + "rtt_ns": 2130459, + "rtt_ms": 2.130459, "checkpoint": 0, "vertex_from": "103", "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.440601456Z" + "timestamp": "2025-11-27T04:03:45.699086-08:00" }, { "operation": "add_edge", - "rtt_ns": 926637, - "rtt_ms": 0.926637, + "rtt_ns": 1942334, + "rtt_ms": 1.942334, "checkpoint": 0, "vertex_from": "103", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.440655196Z" + "timestamp": "2025-11-27T04:03:45.699092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323136, - "rtt_ms": 1.323136, + "rtt_ns": 2178667, + "rtt_ms": 2.178667, "checkpoint": 0, - "vertex_from": "103", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.440930885Z" + "vertex_from": "102", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.699119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262906, - "rtt_ms": 1.262906, + "rtt_ns": 2112375, + "rtt_ms": 2.112375, "checkpoint": 0, "vertex_from": "103", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.440950185Z" + "timestamp": "2025-11-27T04:03:45.699172-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2287250, + "rtt_ms": 2.28725, + "checkpoint": 0, + "vertex_from": "103", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.700942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214407, - "rtt_ms": 1.214407, + "rtt_ns": 2017959, + "rtt_ms": 2.017959, "checkpoint": 0, "vertex_from": "104", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.441136665Z" + "timestamp": "2025-11-27T04:03:45.700963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361686, - "rtt_ms": 1.361686, + "rtt_ns": 2286333, + "rtt_ms": 2.286333, "checkpoint": 0, "vertex_from": "103", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.441202815Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:45.700965-08:00" }, { "operation": "add_edge", - "rtt_ns": 689447, - "rtt_ms": 0.689447, + "rtt_ns": 1972791, + "rtt_ms": 1.972791, "checkpoint": 0, "vertex_from": "104", "vertex_to": "220", - "timestamp": "2025-11-27T01:23:42.441255574Z" + "timestamp": "2025-11-27T04:03:45.700981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790565, - "rtt_ms": 1.790565, + "rtt_ns": 2217750, + "rtt_ms": 2.21775, "checkpoint": 0, "vertex_from": "104", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.441728703Z" + "timestamp": "2025-11-27T04:03:45.701205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217517, - "rtt_ms": 1.217517, + "rtt_ns": 2144375, + "rtt_ms": 2.144375, "checkpoint": 0, "vertex_from": "104", "vertex_to": "195", - "timestamp": "2025-11-27T01:23:42.441821623Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1978754, - "rtt_ms": 1.978754, - "checkpoint": 0, - "vertex_from": "103", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.441856363Z" + "timestamp": "2025-11-27T04:03:45.701232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014494, - "rtt_ms": 2.014494, + "rtt_ns": 2152250, + "rtt_ms": 2.15225, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.441944272Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:03:45.701246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307536, - "rtt_ms": 1.307536, + "rtt_ns": 2156416, + "rtt_ms": 2.156416, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:42.441964992Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.701277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470006, - "rtt_ms": 1.470006, + "rtt_ns": 2313375, + "rtt_ms": 2.313375, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.442402041Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.701278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502166, - "rtt_ms": 1.502166, + "rtt_ns": 2109625, + "rtt_ms": 2.109625, "checkpoint": 0, "vertex_from": "104", "vertex_to": "856", - "timestamp": "2025-11-27T01:23:42.442454581Z" + "timestamp": "2025-11-27T04:03:45.701283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523555, - "rtt_ms": 1.523555, + "rtt_ns": 1988583, + "rtt_ms": 1.988583, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:42.44266238Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.702953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433656, - "rtt_ms": 1.433656, + "rtt_ns": 2054459, + "rtt_ms": 2.054459, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:42.44269023Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:45.702997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175573, - "rtt_ms": 2.175573, + "rtt_ns": 2305250, + "rtt_ms": 2.30525, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.443379468Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.703288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722655, - "rtt_ms": 1.722655, + "rtt_ns": 2337041, + "rtt_ms": 2.337041, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.443452828Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:45.703308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641455, - "rtt_ms": 1.641455, + "rtt_ns": 2268333, + "rtt_ms": 2.268333, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:42.443465638Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:45.703552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541566, - "rtt_ms": 1.541566, + "rtt_ns": 2350167, + "rtt_ms": 2.350167, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:42.443487518Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:45.703556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736594, - "rtt_ms": 1.736594, + "rtt_ns": 2339542, + "rtt_ms": 2.339542, "checkpoint": 0, "vertex_from": "104", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.443594097Z" + "timestamp": "2025-11-27T04:03:45.703572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674475, - "rtt_ms": 1.674475, + "rtt_ns": 2331958, + "rtt_ms": 2.331958, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.443641357Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:03:45.703579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264636, - "rtt_ms": 1.264636, + "rtt_ns": 2342417, + "rtt_ms": 2.342417, "checkpoint": 0, "vertex_from": "104", "vertex_to": "562", - "timestamp": "2025-11-27T01:23:42.443667747Z" + "timestamp": "2025-11-27T04:03:45.703622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284216, - "rtt_ms": 1.284216, + "rtt_ns": 2466959, + "rtt_ms": 2.466959, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.443740057Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.703746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702135, - "rtt_ms": 1.702135, + "rtt_ns": 1825833, + "rtt_ms": 1.825833, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.444366405Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.704824-08:00" }, { "operation": "add_edge", - "rtt_ns": 989307, - "rtt_ms": 0.989307, + "rtt_ns": 1891542, + "rtt_ms": 1.891542, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:42.444370285Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.704845-08:00" }, { "operation": "add_edge", - "rtt_ns": 919797, - "rtt_ms": 0.919797, + "rtt_ns": 1796042, + "rtt_ms": 1.796042, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.444387165Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.705105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800105, - "rtt_ms": 1.800105, + "rtt_ns": 1431333, + "rtt_ms": 1.431333, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.444491265Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:45.705179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727705, - "rtt_ms": 1.727705, + "rtt_ns": 1889792, + "rtt_ms": 1.889792, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.445216763Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:45.705179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512086, - "rtt_ms": 1.512086, + "rtt_ns": 1856958, + "rtt_ms": 1.856958, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:42.445253633Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.70548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620216, - "rtt_ms": 1.620216, + "rtt_ns": 1979834, + "rtt_ms": 1.979834, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:42.445262683Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.705539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690806, - "rtt_ms": 1.690806, + "rtt_ns": 1971917, + "rtt_ms": 1.971917, "checkpoint": 0, "vertex_from": "104", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.445286083Z" + "timestamp": "2025-11-27T04:03:45.705545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655396, - "rtt_ms": 1.655396, + "rtt_ns": 1999083, + "rtt_ms": 1.999083, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.445324193Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:45.705552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874635, - "rtt_ms": 1.874635, + "rtt_ns": 1979833, + "rtt_ms": 1.979833, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.445328863Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:03:45.705561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155157, - "rtt_ms": 1.155157, + "rtt_ns": 1898125, + "rtt_ms": 1.898125, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:42.445544962Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:45.706724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657465, - "rtt_ms": 1.657465, + "rtt_ns": 1877417, + "rtt_ms": 1.877417, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:42.44615017Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:45.706724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798975, - "rtt_ms": 1.798975, + "rtt_ns": 1472833, + "rtt_ms": 1.472833, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:42.44617216Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:45.707019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021607, - "rtt_ms": 1.021607, + "rtt_ns": 1861250, + "rtt_ms": 1.86125, "checkpoint": 0, "vertex_from": "104", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.44624024Z" + "timestamp": "2025-11-27T04:03:45.707042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103907, - "rtt_ms": 1.103907, + "rtt_ns": 1957708, + "rtt_ms": 1.957708, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:42.44639354Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:45.707064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154577, - "rtt_ms": 1.154577, + "rtt_ns": 1921208, + "rtt_ms": 1.921208, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:42.44641887Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:45.707103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165517, - "rtt_ms": 1.165517, + "rtt_ns": 1559042, + "rtt_ms": 1.559042, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "178", - "timestamp": "2025-11-27T01:23:42.44642046Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:45.707122-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055655, - "rtt_ms": 2.055655, + "rtt_ns": 1727416, + "rtt_ms": 1.727416, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:42.44642446Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:45.707267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194636, - "rtt_ms": 1.194636, + "rtt_ns": 1798666, + "rtt_ms": 1.798666, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.446523609Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:03:45.707292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868514, - "rtt_ms": 1.868514, + "rtt_ns": 1881125, + "rtt_ms": 1.881125, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:42.447199457Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.707435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065717, - "rtt_ms": 1.065717, + "rtt_ns": 1865458, + "rtt_ms": 1.865458, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.447240137Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:03:45.708592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111657, - "rtt_ms": 1.111657, + "rtt_ns": 1925792, + "rtt_ms": 1.925792, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "113", - "timestamp": "2025-11-27T01:23:42.447263687Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.708652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758925, - "rtt_ms": 1.758925, + "rtt_ns": 1853041, + "rtt_ms": 1.853041, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.447306117Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.708874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429156, - "rtt_ms": 1.429156, + "rtt_ns": 1886083, + "rtt_ms": 1.886083, "checkpoint": 0, "vertex_from": "104", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.447670746Z" + "timestamp": "2025-11-27T04:03:45.708929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449785, - "rtt_ms": 1.449785, + "rtt_ns": 1829291, + "rtt_ms": 1.829291, "checkpoint": 0, "vertex_from": "105", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.447870205Z" + "timestamp": "2025-11-27T04:03:45.708934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474195, - "rtt_ms": 1.474195, + "rtt_ns": 2092000, + "rtt_ms": 2.092, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.447896735Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:45.709157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489535, - "rtt_ms": 1.489535, + "rtt_ns": 2244958, + "rtt_ms": 2.244958, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.447915525Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.709368-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196683, - "rtt_ms": 2.196683, + "rtt_ns": 2317958, + "rtt_ms": 2.317958, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:42.448592023Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.709611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322016, - "rtt_ms": 1.322016, + "rtt_ns": 2364333, + "rtt_ms": 2.364333, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.448629733Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.709633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494166, - "rtt_ms": 1.494166, + "rtt_ns": 2200833, + "rtt_ms": 2.200833, "checkpoint": 0, "vertex_from": "105", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.448695003Z" + "timestamp": "2025-11-27T04:03:45.709636-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1485542, + "rtt_ms": 1.485542, + "checkpoint": 0, + "vertex_from": "105", + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.710361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431286, - "rtt_ms": 1.431286, + "rtt_ns": 1840708, + "rtt_ms": 1.840708, "checkpoint": 0, "vertex_from": "105", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.448696483Z" + "timestamp": "2025-11-27T04:03:45.710494-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176674, - "rtt_ms": 2.176674, + "rtt_ns": 2129916, + "rtt_ms": 2.129916, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.448701413Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.710724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029927, - "rtt_ms": 1.029927, + "rtt_ns": 1800584, + "rtt_ms": 1.800584, "checkpoint": 0, "vertex_from": "105", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.448701733Z" + "timestamp": "2025-11-27T04:03:45.710732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465686, - "rtt_ms": 1.465686, + "rtt_ns": 1795750, + "rtt_ms": 1.79575, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.448707083Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:45.710732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561616, - "rtt_ms": 1.561616, + "rtt_ns": 1594583, + "rtt_ms": 1.594583, "checkpoint": 0, "vertex_from": "105", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.449460991Z" + "timestamp": "2025-11-27T04:03:45.710752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550976, - "rtt_ms": 1.550976, + "rtt_ns": 1460583, + "rtt_ms": 1.460583, "checkpoint": 0, "vertex_from": "105", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.449467881Z" + "timestamp": "2025-11-27T04:03:45.710829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602916, - "rtt_ms": 1.602916, + "rtt_ns": 1432417, + "rtt_ms": 1.432417, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:42.449476761Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.71107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395636, - "rtt_ms": 1.395636, + "rtt_ns": 1821833, + "rtt_ms": 1.821833, "checkpoint": 0, "vertex_from": "105", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.450000379Z" + "timestamp": "2025-11-27T04:03:45.711435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909404, - "rtt_ms": 1.909404, + "rtt_ns": 1934083, + "rtt_ms": 1.934083, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.450617607Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:45.711568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1950944, - "rtt_ms": 1.950944, + "rtt_ns": 1784000, + "rtt_ms": 1.784, "checkpoint": 0, "vertex_from": "105", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.450655407Z" + "timestamp": "2025-11-27T04:03:45.71228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213776, - "rtt_ms": 1.213776, + "rtt_ns": 2024458, + "rtt_ms": 2.024458, "checkpoint": 0, - "vertex_from": "106", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.450692567Z" + "vertex_from": "105", + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:45.712387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996584, - "rtt_ms": 1.996584, + "rtt_ns": 1697500, + "rtt_ms": 1.6975, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:42.450701197Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.712432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057434, - "rtt_ms": 2.057434, + "rtt_ns": 1692750, + "rtt_ms": 1.69275, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.450755647Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.712446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317386, - "rtt_ms": 1.317386, + "rtt_ns": 1405458, + "rtt_ms": 1.405458, "checkpoint": 0, - "vertex_from": "105", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.450781667Z" + "vertex_from": "106", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.712477-08:00" }, { "operation": "add_edge", - "rtt_ns": 2150534, - "rtt_ms": 2.150534, + "rtt_ns": 1792875, + "rtt_ms": 1.792875, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.450781637Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:45.712519-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147514, - "rtt_ms": 2.147514, + "rtt_ns": 1736583, + "rtt_ms": 1.736583, "checkpoint": 0, - "vertex_from": "105", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:42.450845907Z" + "vertex_from": "106", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.712567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376746, - "rtt_ms": 1.376746, + "rtt_ns": 1896084, + "rtt_ms": 1.896084, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.450848017Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:45.71263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612985, - "rtt_ms": 1.612985, + "rtt_ns": 1737417, + "rtt_ms": 1.737417, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.451615664Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.713306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552556, - "rtt_ms": 1.552556, + "rtt_ns": 1994333, + "rtt_ms": 1.994333, "checkpoint": 0, "vertex_from": "106", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.452171353Z" + "timestamp": "2025-11-27T04:03:45.71343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550556, - "rtt_ms": 1.550556, + "rtt_ns": 1328083, + "rtt_ms": 1.328083, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.452244703Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:45.713896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480695, - "rtt_ms": 1.480695, + "rtt_ns": 1731167, + "rtt_ms": 1.731167, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.452263912Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:45.714165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567595, - "rtt_ms": 1.567595, + "rtt_ns": 1948125, + "rtt_ms": 1.948125, "checkpoint": 0, "vertex_from": "106", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.452270152Z" + "timestamp": "2025-11-27T04:03:45.714336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514585, - "rtt_ms": 1.514585, + "rtt_ns": 1882167, + "rtt_ms": 1.882167, "checkpoint": 0, "vertex_from": "106", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.452299052Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1611905, - "rtt_ms": 1.611905, - "checkpoint": 0, - "vertex_from": "106", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.452370292Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1802335, - "rtt_ms": 1.802335, - "checkpoint": 0, - "vertex_from": "106", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.452458992Z" + "timestamp": "2025-11-27T04:03:45.71436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035494, - "rtt_ms": 2.035494, + "rtt_ns": 2077792, + "rtt_ms": 2.077792, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:42.452885601Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.71436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039914, - "rtt_ms": 2.039914, + "rtt_ns": 1860917, + "rtt_ms": 1.860917, "checkpoint": 0, "vertex_from": "106", "vertex_to": "936", - "timestamp": "2025-11-27T01:23:42.452887631Z" + "timestamp": "2025-11-27T04:03:45.71438-08:00" }, { "operation": "add_edge", - "rtt_ns": 882697, - "rtt_ms": 0.882697, + "rtt_ns": 1771541, + "rtt_ms": 1.771541, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.45305477Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:45.714402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438276, - "rtt_ms": 1.438276, + "rtt_ns": 2054292, + "rtt_ms": 2.054292, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:42.45305538Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.714501-08:00" }, { "operation": "add_edge", - "rtt_ns": 839088, - "rtt_ms": 0.839088, + "rtt_ns": 1253291, + "rtt_ms": 1.253291, "checkpoint": 0, "vertex_from": "106", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.4530861Z" + "timestamp": "2025-11-27T04:03:45.714686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499266, - "rtt_ms": 1.499266, + "rtt_ns": 1580417, + "rtt_ms": 1.580417, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.453771588Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.714887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358846, - "rtt_ms": 1.358846, + "rtt_ns": 1837292, + "rtt_ms": 1.837292, "checkpoint": 0, - "vertex_from": "107", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:42.453820138Z" + "vertex_from": "106", + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:45.715734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453816, - "rtt_ms": 1.453816, + "rtt_ns": 1809375, + "rtt_ms": 1.809375, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "154", - "timestamp": "2025-11-27T01:23:42.453825868Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:45.716147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562816, - "rtt_ms": 1.562816, + "rtt_ns": 1806375, + "rtt_ms": 1.806375, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:42.453828158Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:03:45.716167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015047, - "rtt_ms": 1.015047, + "rtt_ns": 1683875, + "rtt_ms": 1.683875, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.453902258Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:45.716187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083867, - "rtt_ms": 1.083867, + "rtt_ns": 1863958, + "rtt_ms": 1.863958, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "157", - "timestamp": "2025-11-27T01:23:42.453973798Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:03:45.716227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690296, - "rtt_ms": 1.690296, + "rtt_ns": 2105000, + "rtt_ms": 2.105, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:42.453990788Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1041867, - "rtt_ms": 1.041867, - "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.454871375Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.71627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062207, - "rtt_ms": 1.062207, + "rtt_ns": 2091917, + "rtt_ms": 2.091917, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.454890325Z" + "vertex_from": "107", + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.716474-08:00" }, { "operation": "add_edge", - "rtt_ns": 919567, - "rtt_ms": 0.919567, + "rtt_ns": 1931250, + "rtt_ms": 1.93125, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:42.454911645Z" + "vertex_from": "107", + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:45.716619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902255, - "rtt_ms": 1.902255, + "rtt_ns": 2248709, + "rtt_ms": 2.248709, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:42.454958935Z" + "vertex_to": "157", + "timestamp": "2025-11-27T04:03:45.716652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877835, - "rtt_ms": 1.877835, + "rtt_ns": 1803292, + "rtt_ms": 1.803292, "checkpoint": 0, "vertex_from": "107", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.454967775Z" + "timestamp": "2025-11-27T04:03:45.716692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221517, - "rtt_ms": 1.221517, + "rtt_ns": 1699084, + "rtt_ms": 1.699084, "checkpoint": 0, "vertex_from": "107", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.454994405Z" + "timestamp": "2025-11-27T04:03:45.717435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938525, - "rtt_ms": 1.938525, + "rtt_ns": 1310125, + "rtt_ms": 1.310125, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:42.454995205Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.717458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119467, - "rtt_ms": 1.119467, + "rtt_ns": 1597083, + "rtt_ms": 1.597083, "checkpoint": 0, "vertex_from": "108", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.455022835Z" + "timestamp": "2025-11-27T04:03:45.717825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712035, - "rtt_ms": 1.712035, + "rtt_ns": 1662500, + "rtt_ms": 1.6625, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.455686943Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.71783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042364, - "rtt_ms": 2.042364, + "rtt_ns": 1678333, + "rtt_ms": 1.678333, "checkpoint": 0, - "vertex_from": "107", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.455863602Z" + "vertex_from": "108", + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.717867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251946, - "rtt_ms": 1.251946, + "rtt_ns": 1393125, + "rtt_ms": 1.393125, "checkpoint": 0, "vertex_from": "108", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.456143011Z" + "timestamp": "2025-11-27T04:03:45.718046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301156, - "rtt_ms": 1.301156, + "rtt_ns": 1854167, + "rtt_ms": 1.854167, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "182", - "timestamp": "2025-11-27T01:23:42.456174101Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.718126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354886, - "rtt_ms": 1.354886, + "rtt_ns": 1451083, + "rtt_ms": 1.451083, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.456323961Z" + "vertex_to": "271", + "timestamp": "2025-11-27T04:03:45.718146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375876, - "rtt_ms": 1.375876, + "rtt_ns": 1544250, + "rtt_ms": 1.54425, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.456335951Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:03:45.718164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494206, - "rtt_ms": 1.494206, + "rtt_ns": 1786125, + "rtt_ms": 1.786125, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "271", - "timestamp": "2025-11-27T01:23:42.456407361Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:45.718261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417016, - "rtt_ms": 1.417016, + "rtt_ns": 1228708, + "rtt_ms": 1.228708, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.456442121Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.718664-08:00" }, { "operation": "add_edge", - "rtt_ns": 835467, - "rtt_ms": 0.835467, + "rtt_ns": 1258292, + "rtt_ms": 1.258292, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:42.4565238Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.718717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545295, - "rtt_ms": 1.545295, + "rtt_ns": 1500833, + "rtt_ms": 1.500833, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.45654089Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.719368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556845, - "rtt_ms": 1.556845, + "rtt_ns": 1792667, + "rtt_ms": 1.792667, "checkpoint": 0, "vertex_from": "108", "vertex_to": "179", - "timestamp": "2025-11-27T01:23:42.45655354Z" + "timestamp": "2025-11-27T04:03:45.719624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212967, - "rtt_ms": 1.212967, + "rtt_ns": 1837584, + "rtt_ms": 1.837584, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.457077729Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:45.719663-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 698728, - "rtt_ms": 0.698728, + "operation": "add_edge", + "rtt_ns": 1721166, + "rtt_ms": 1.721166, "checkpoint": 0, - "vertex_from": "109", - "timestamp": "2025-11-27T01:23:42.457255748Z" + "vertex_from": "108", + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.719886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540836, - "rtt_ms": 1.540836, + "rtt_ns": 1780791, + "rtt_ms": 1.780791, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.457685187Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.719907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435946, - "rtt_ms": 1.435946, + "rtt_ns": 1778000, + "rtt_ms": 1.778, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:42.457773337Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.719925-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 712778, - "rtt_ms": 0.712778, + "operation": "add_edge", + "rtt_ns": 1961583, + "rtt_ms": 1.961583, "checkpoint": 0, - "vertex_from": "109", - "timestamp": "2025-11-27T01:23:42.457793117Z" + "vertex_from": "108", + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:45.72001-08:00" }, { "operation": "add_edge", - "rtt_ns": 638208, - "rtt_ms": 0.638208, + "rtt_ns": 1360542, + "rtt_ms": 1.360542, "checkpoint": 0, - "vertex_from": "109", - "vertex_to": "597", - "timestamp": "2025-11-27T01:23:42.457895306Z" + "vertex_from": "108", + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.720079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627075, - "rtt_ms": 1.627075, + "rtt_ns": 1852250, + "rtt_ms": 1.85225, "checkpoint": 0, "vertex_from": "108", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.457953476Z" + "timestamp": "2025-11-27T04:03:45.720115-08:00" }, { "operation": "add_edge", - "rtt_ns": 938547, - "rtt_ms": 0.938547, + "rtt_ns": 1450541, + "rtt_ms": 1.450541, "checkpoint": 0, - "vertex_from": "109", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:42.458714034Z" + "vertex_from": "108", + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:45.720117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062926, - "rtt_ms": 1.062926, + "rtt_ns": 1620666, + "rtt_ms": 1.620666, "checkpoint": 0, - "vertex_from": "109", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:42.458856643Z" + "vertex_from": "108", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.72099-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1178256, - "rtt_ms": 1.178256, + "operation": "add_vertex", + "rtt_ns": 1346959, + "rtt_ms": 1.346959, "checkpoint": 0, "vertex_from": "109", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.458865183Z" + "timestamp": "2025-11-27T04:03:45.721235-08:00" }, { "operation": "add_edge", - "rtt_ns": 2826371, - "rtt_ms": 2.826371, + "rtt_ns": 1587459, + "rtt_ms": 1.587459, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.459235142Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.721252-08:00" }, { "operation": "add_edge", - "rtt_ns": 2747182, - "rtt_ms": 2.747182, + "rtt_ns": 1647167, + "rtt_ms": 1.647167, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.459291162Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.721273-08:00" }, { "operation": "add_edge", - "rtt_ns": 3208911, - "rtt_ms": 3.208911, + "rtt_ns": 1351042, + "rtt_ms": 1.351042, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.459388332Z" + "vertex_from": "110", + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:45.721467-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3098960, - "rtt_ms": 3.09896, + "operation": "add_vertex", + "rtt_ns": 1577666, + "rtt_ms": 1.577666, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.459542011Z" + "vertex_from": "109", + "timestamp": "2025-11-27T04:03:45.721486-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1617250, + "rtt_ms": 1.61725, + "checkpoint": 0, + "vertex_from": "109", + "timestamp": "2025-11-27T04:03:45.721543-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1479584, + "rtt_ms": 1.479584, + "checkpoint": 0, + "vertex_from": "109", + "timestamp": "2025-11-27T04:03:45.721559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631365, - "rtt_ms": 1.631365, + "rtt_ns": 1442625, + "rtt_ms": 1.442625, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:42.459585971Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.721561-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1692115, - "rtt_ms": 1.692115, + "operation": "add_vertex", + "rtt_ns": 1615917, + "rtt_ms": 1.615917, "checkpoint": 0, "vertex_from": "109", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.459588411Z" + "timestamp": "2025-11-27T04:03:45.721627-08:00" }, { "operation": "add_edge", - "rtt_ns": 3457820, - "rtt_ms": 3.45782, + "rtt_ns": 1369542, + "rtt_ms": 1.369542, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.45998261Z" + "vertex_from": "110", + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:45.722838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283386, - "rtt_ms": 1.283386, + "rtt_ns": 1589000, + "rtt_ms": 1.589, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.45999898Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.722863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321207, - "rtt_ms": 1.321207, + "rtt_ns": 1882208, + "rtt_ms": 1.882208, "checkpoint": 0, "vertex_from": "110", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.46017879Z" + "timestamp": "2025-11-27T04:03:45.722874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811855, - "rtt_ms": 1.811855, + "rtt_ns": 1622750, + "rtt_ms": 1.62275, "checkpoint": 0, "vertex_from": "110", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.460678988Z" + "timestamp": "2025-11-27T04:03:45.722875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160107, - "rtt_ms": 1.160107, + "rtt_ns": 1735166, + "rtt_ms": 1.735166, "checkpoint": 0, - "vertex_from": "110", + "vertex_from": "109", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.460703108Z" + "timestamp": "2025-11-27T04:03:45.723279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149647, - "rtt_ms": 1.149647, + "rtt_ns": 1741541, + "rtt_ms": 1.741541, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:42.460736968Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:45.723304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490376, - "rtt_ms": 1.490376, + "rtt_ns": 1835208, + "rtt_ms": 1.835208, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:42.460782988Z" + "vertex_from": "109", + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:45.723321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416406, - "rtt_ms": 1.416406, + "rtt_ns": 2129041, + "rtt_ms": 2.129041, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:42.460806138Z" + "vertex_from": "109", + "vertex_to": "597", + "timestamp": "2025-11-27T04:03:45.723364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589126, - "rtt_ms": 1.589126, + "rtt_ns": 1866333, + "rtt_ms": 1.866333, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.460825698Z" + "vertex_from": "109", + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.723426-08:00" }, { "operation": "add_edge", - "rtt_ns": 929617, - "rtt_ms": 0.929617, + "rtt_ns": 1422750, + "rtt_ms": 1.42275, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.462402883Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.7243-08:00" }, { "operation": "add_edge", - "rtt_ns": 962417, - "rtt_ms": 0.962417, + "rtt_ns": 1875084, + "rtt_ms": 1.875084, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.462488013Z" + "vertex_from": "109", + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:45.724313-08:00" }, { "operation": "add_edge", - "rtt_ns": 989077, - "rtt_ms": 0.989077, + "rtt_ns": 1663292, + "rtt_ms": 1.663292, "checkpoint": 0, "vertex_from": "110", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.462509403Z" + "timestamp": "2025-11-27T04:03:45.724943-08:00" }, { "operation": "add_edge", - "rtt_ns": 937767, - "rtt_ms": 0.937767, + "rtt_ns": 1636917, + "rtt_ms": 1.636917, + "checkpoint": 0, + "vertex_from": "111", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.724959-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2106833, + "rtt_ms": 2.106833, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.462543703Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.724983-08:00" }, { "operation": "add_edge", - "rtt_ns": 845147, - "rtt_ms": 0.845147, + "rtt_ns": 1632208, + "rtt_ms": 1.632208, "checkpoint": 0, "vertex_from": "111", "vertex_to": "594", - "timestamp": "2025-11-27T01:23:42.462695362Z" + "timestamp": "2025-11-27T04:03:45.724997-08:00" }, { "operation": "add_edge", - "rtt_ns": 856637, - "rtt_ms": 0.856637, + "rtt_ns": 2133750, + "rtt_ms": 2.13375, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.462755222Z" + "vertex_from": "110", + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:45.724998-08:00" }, { "operation": "add_edge", - "rtt_ns": 998617, - "rtt_ms": 0.998617, + "rtt_ns": 1693959, + "rtt_ms": 1.693959, "checkpoint": 0, - "vertex_from": "111", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.462844312Z" + "vertex_from": "110", + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.724998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491946, - "rtt_ms": 1.491946, + "rtt_ns": 1585083, + "rtt_ms": 1.585083, "checkpoint": 0, "vertex_from": "111", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.463371191Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.725014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517725, - "rtt_ms": 1.517725, + "rtt_ns": 2292500, + "rtt_ms": 2.2925, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.46342157Z" + "vertex_from": "110", + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.725132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075007, - "rtt_ms": 1.075007, + "rtt_ns": 1371792, + "rtt_ms": 1.371792, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "206", - "timestamp": "2025-11-27T01:23:42.46348029Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.725686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638485, - "rtt_ms": 1.638485, + "rtt_ns": 1562084, + "rtt_ms": 1.562084, "checkpoint": 0, "vertex_from": "111", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.46351457Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.725865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111067, - "rtt_ms": 1.111067, + "rtt_ns": 1261500, + "rtt_ms": 1.2615, "checkpoint": 0, "vertex_from": "112", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.46365999Z" + "timestamp": "2025-11-27T04:03:45.72626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245846, - "rtt_ms": 1.245846, + "rtt_ns": 1286916, + "rtt_ms": 1.286916, "checkpoint": 0, "vertex_from": "112", "vertex_to": "346", - "timestamp": "2025-11-27T01:23:42.463758139Z" + "timestamp": "2025-11-27T04:03:45.726285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295436, - "rtt_ms": 1.295436, + "rtt_ns": 1618250, + "rtt_ms": 1.61825, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.463784889Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.726562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715056, - "rtt_ms": 1.715056, + "rtt_ns": 1446250, + "rtt_ms": 1.44625, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.464412388Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:45.726578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584435, - "rtt_ms": 1.584435, + "rtt_ns": 1637542, + "rtt_ms": 1.637542, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:42.464430607Z" + "vertex_to": "206", + "timestamp": "2025-11-27T04:03:45.726597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685855, - "rtt_ms": 1.685855, + "rtt_ns": 1589500, + "rtt_ms": 1.5895, "checkpoint": 0, "vertex_from": "112", "vertex_to": "480", - "timestamp": "2025-11-27T01:23:42.464443187Z" + "timestamp": "2025-11-27T04:03:45.726605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274517, - "rtt_ms": 1.274517, + "rtt_ns": 1630584, + "rtt_ms": 1.630584, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:42.464756277Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.72663-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1652542, + "rtt_ms": 1.652542, + "checkpoint": 0, + "vertex_from": "112", + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.726637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715685, - "rtt_ms": 1.715685, + "rtt_ns": 1655166, + "rtt_ms": 1.655166, "checkpoint": 0, "vertex_from": "112", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.465090836Z" + "timestamp": "2025-11-27T04:03:45.727344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699465, - "rtt_ms": 1.699465, + "rtt_ns": 1577834, + "rtt_ms": 1.577834, "checkpoint": 0, "vertex_from": "112", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.465122885Z" + "timestamp": "2025-11-27T04:03:45.727444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911714, - "rtt_ms": 1.911714, + "rtt_ns": 1317333, + "rtt_ms": 1.317333, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.465573294Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.727604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146324, - "rtt_ms": 2.146324, + "rtt_ns": 1459708, + "rtt_ms": 1.459708, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.465665154Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:45.727721-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200254, - "rtt_ms": 2.200254, + "rtt_ns": 1435625, + "rtt_ms": 1.435625, "checkpoint": 0, "vertex_from": "112", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.465960813Z" + "timestamp": "2025-11-27T04:03:45.728015-08:00" }, { "operation": "add_edge", - "rtt_ns": 2218934, - "rtt_ms": 2.218934, + "rtt_ns": 1471541, + "rtt_ms": 1.471541, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.466007373Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.728034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649876, - "rtt_ms": 1.649876, + "rtt_ns": 1632958, + "rtt_ms": 1.632958, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "430", - "timestamp": "2025-11-27T01:23:42.466094583Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:45.728263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730984, - "rtt_ms": 1.730984, + "rtt_ns": 1631584, + "rtt_ms": 1.631584, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.466144822Z" + "vertex_to": "430", + "timestamp": "2025-11-27T04:03:45.728271-08:00" }, { "operation": "add_edge", - "rtt_ns": 2954612, - "rtt_ms": 2.954612, + "rtt_ns": 1684125, + "rtt_ms": 1.684125, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:42.467387869Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.728289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2658062, - "rtt_ms": 2.658062, + "rtt_ns": 1702250, + "rtt_ms": 1.70225, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:42.467416419Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.7283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754275, - "rtt_ms": 1.754275, + "rtt_ns": 1914125, + "rtt_ms": 1.914125, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:42.467421329Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:45.729259-08:00" }, { "operation": "add_edge", - "rtt_ns": 2307604, - "rtt_ms": 2.307604, + "rtt_ns": 1629375, + "rtt_ms": 1.629375, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.467431379Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:45.729664-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379022, - "rtt_ms": 2.379022, + "rtt_ns": 2078917, + "rtt_ms": 2.078917, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:42.467472188Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.729684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383936, - "rtt_ms": 1.383936, + "rtt_ns": 1562084, + "rtt_ms": 1.562084, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.467529958Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:03:45.729826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555155, - "rtt_ms": 1.555155, + "rtt_ns": 1572750, + "rtt_ms": 1.57275, "checkpoint": 0, "vertex_from": "112", "vertex_to": "594", - "timestamp": "2025-11-27T01:23:42.467652328Z" + "timestamp": "2025-11-27T04:03:45.729844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651695, - "rtt_ms": 1.651695, + "rtt_ns": 2400666, + "rtt_ms": 2.400666, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "775", - "timestamp": "2025-11-27T01:23:42.467660708Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:45.729847-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094044, - "rtt_ms": 2.094044, + "rtt_ns": 2143750, + "rtt_ms": 2.14375, "checkpoint": 0, "vertex_from": "112", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.467668848Z" + "timestamp": "2025-11-27T04:03:45.729865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707475, - "rtt_ms": 1.707475, + "rtt_ns": 1577333, + "rtt_ms": 1.577333, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:42.467671678Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.729868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483695, - "rtt_ms": 1.483695, + "rtt_ns": 1578250, + "rtt_ms": 1.57825, "checkpoint": 0, "vertex_from": "112", "vertex_to": "424", - "timestamp": "2025-11-27T01:23:42.468874354Z" + "timestamp": "2025-11-27T04:03:45.72988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486205, - "rtt_ms": 1.486205, + "rtt_ns": 1907334, + "rtt_ms": 1.907334, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.468909424Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:45.729923-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1575855, - "rtt_ms": 1.575855, + "rtt_ns": 1309791, + "rtt_ms": 1.309791, "checkpoint": 0, "vertex_from": "974", - "timestamp": "2025-11-27T01:23:42.468995264Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1621566, - "rtt_ms": 1.621566, - "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.469097684Z" + "timestamp": "2025-11-27T04:03:45.730575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679245, - "rtt_ms": 1.679245, + "rtt_ns": 1443375, + "rtt_ms": 1.443375, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.469112084Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.731109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584776, - "rtt_ms": 1.584776, + "rtt_ns": 1257792, + "rtt_ms": 1.257792, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "614", - "timestamp": "2025-11-27T01:23:42.469116654Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:45.731126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483746, - "rtt_ms": 1.483746, + "rtt_ns": 1253541, + "rtt_ms": 1.253541, "checkpoint": 0, "vertex_from": "112", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.469165424Z" + "timestamp": "2025-11-27T04:03:45.731135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897015, - "rtt_ms": 1.897015, + "rtt_ns": 1326167, + "rtt_ms": 1.326167, "checkpoint": 0, "vertex_from": "112", "vertex_to": "195", - "timestamp": "2025-11-27T01:23:42.469551923Z" + "timestamp": "2025-11-27T04:03:45.731174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065124, - "rtt_ms": 2.065124, + "rtt_ns": 1489167, + "rtt_ms": 1.489167, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.469727892Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.731174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258403, - "rtt_ms": 2.258403, + "rtt_ns": 1341041, + "rtt_ms": 1.341041, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.469929491Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:03:45.731186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589866, - "rtt_ms": 1.589866, + "rtt_ns": 1474542, + "rtt_ms": 1.474542, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.47046667Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.73134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490196, - "rtt_ms": 1.490196, + "rtt_ns": 1534125, + "rtt_ms": 1.534125, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:42.47060813Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.731361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497866, - "rtt_ms": 1.497866, + "rtt_ns": 1441042, + "rtt_ms": 1.441042, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:42.4706113Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.731366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707526, - "rtt_ms": 1.707526, + "rtt_ns": 1667167, + "rtt_ms": 1.667167, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.47061927Z" + "vertex_to": "974", + "timestamp": "2025-11-27T04:03:45.732242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640086, - "rtt_ms": 1.640086, + "rtt_ns": 1274666, + "rtt_ms": 1.274666, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "974", - "timestamp": "2025-11-27T01:23:42.47063576Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:03:45.732462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100177, - "rtt_ms": 1.100177, + "rtt_ns": 1294625, + "rtt_ms": 1.294625, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "299", - "timestamp": "2025-11-27T01:23:42.470829339Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:45.732469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308746, - "rtt_ms": 1.308746, + "rtt_ns": 1383500, + "rtt_ms": 1.3835, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "134", - "timestamp": "2025-11-27T01:23:42.470862509Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:45.732559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717855, - "rtt_ms": 1.717855, + "rtt_ns": 1253666, + "rtt_ms": 1.253666, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:42.470885899Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.732621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855135, - "rtt_ms": 1.855135, + "rtt_ns": 1525959, + "rtt_ms": 1.525959, "checkpoint": 0, "vertex_from": "112", "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.470955639Z" + "timestamp": "2025-11-27T04:03:45.732653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398727, - "rtt_ms": 1.398727, + "rtt_ns": 1537000, + "rtt_ms": 1.537, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.471330418Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:45.732672-08:00" }, { "operation": "add_edge", - "rtt_ns": 886037, - "rtt_ms": 0.886037, + "rtt_ns": 1669958, + "rtt_ms": 1.669958, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.471354357Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.73278-08:00" }, { "operation": "add_edge", - "rtt_ns": 740658, - "rtt_ms": 0.740658, + "rtt_ns": 1504917, + "rtt_ms": 1.504917, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.471378177Z" + "vertex_to": "299", + "timestamp": "2025-11-27T04:03:45.732846-08:00" }, { "operation": "add_edge", - "rtt_ns": 857957, - "rtt_ms": 0.857957, + "rtt_ns": 1510791, + "rtt_ms": 1.510791, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:42.471468077Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:45.732873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055817, - "rtt_ms": 1.055817, + "rtt_ns": 1380375, + "rtt_ms": 1.380375, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:42.471919386Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:45.733624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070847, - "rtt_ms": 1.070847, + "rtt_ns": 1338416, + "rtt_ms": 1.338416, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:42.471957816Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.7339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038167, - "rtt_ms": 1.038167, + "rtt_ns": 1438166, + "rtt_ms": 1.438166, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:42.471995546Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.733909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337176, - "rtt_ms": 1.337176, + "rtt_ns": 1293709, + "rtt_ms": 1.293709, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:42.472168635Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:45.733968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559705, - "rtt_ms": 1.559705, + "rtt_ns": 1323209, + "rtt_ms": 1.323209, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.472180465Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:45.733977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083454, - "rtt_ms": 2.083454, + "rtt_ns": 1199750, + "rtt_ms": 1.19975, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:42.472696284Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:45.733981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441065, - "rtt_ms": 1.441065, + "rtt_ns": 1519375, + "rtt_ms": 1.519375, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "116", - "timestamp": "2025-11-27T01:23:42.472773133Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:45.733984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430076, - "rtt_ms": 1.430076, + "rtt_ns": 1373500, + "rtt_ms": 1.3735, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:42.472810063Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:45.733995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2324014, - "rtt_ms": 2.324014, + "rtt_ns": 1162875, + "rtt_ms": 1.162875, "checkpoint": 0, "vertex_from": "112", "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.473680981Z" + "timestamp": "2025-11-27T04:03:45.734037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530196, - "rtt_ms": 1.530196, + "rtt_ns": 1199750, + "rtt_ms": 1.19975, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.473701211Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:03:45.734047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864414, - "rtt_ms": 1.864414, + "rtt_ns": 1115459, + "rtt_ms": 1.115459, "checkpoint": 0, "vertex_from": "112", "vertex_to": "841", - "timestamp": "2025-11-27T01:23:42.47378621Z" + "timestamp": "2025-11-27T04:03:45.735026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626315, - "rtt_ms": 1.626315, + "rtt_ns": 1174667, + "rtt_ms": 1.174667, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:42.47380828Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:03:45.735077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852394, - "rtt_ms": 1.852394, + "rtt_ns": 1293667, + "rtt_ms": 1.293667, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.47381174Z" + "vertex_from": "113", + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:45.73529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860944, - "rtt_ms": 1.860944, + "rtt_ns": 1718334, + "rtt_ms": 1.718334, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.4738585Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:03:45.735343-08:00" }, { "operation": "add_edge", - "rtt_ns": 2401163, - "rtt_ms": 2.401163, + "rtt_ns": 1296667, + "rtt_ms": 1.296667, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "710", - "timestamp": "2025-11-27T01:23:42.47387093Z" + "vertex_from": "113", + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.735345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268226, - "rtt_ms": 1.268226, + "rtt_ns": 1383416, + "rtt_ms": 1.383416, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:42.47396587Z" + "vertex_from": "112", + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.735362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667735, - "rtt_ms": 1.667735, + "rtt_ns": 1408584, + "rtt_ms": 1.408584, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:42.474443098Z" + "vertex_from": "112", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.735378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730325, - "rtt_ms": 1.730325, + "rtt_ns": 1402667, + "rtt_ms": 1.402667, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.474541708Z" + "vertex_from": "112", + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.735384-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128703, - "rtt_ms": 2.128703, + "rtt_ns": 1513750, + "rtt_ms": 1.51375, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.475811794Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:45.735552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2234153, - "rtt_ms": 2.234153, + "rtt_ns": 1572291, + "rtt_ms": 1.572291, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.475937104Z" + "vertex_from": "112", + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:45.735558-08:00" }, { "operation": "add_edge", - "rtt_ns": 2780812, - "rtt_ms": 2.780812, + "rtt_ns": 1334333, + "rtt_ms": 1.334333, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.476594082Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.736626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2822522, - "rtt_ms": 2.822522, + "rtt_ns": 1842792, + "rtt_ms": 1.842792, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.476634312Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.73687-08:00" }, { "operation": "add_edge", - "rtt_ns": 3505360, - "rtt_ms": 3.50536, + "rtt_ns": 1615458, + "rtt_ms": 1.615458, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.47747257Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.736995-08:00" }, { "operation": "add_edge", - "rtt_ns": 3655979, - "rtt_ms": 3.655979, + "rtt_ns": 1671375, + "rtt_ms": 1.671375, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.477528929Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:45.737016-08:00" }, { "operation": "add_edge", - "rtt_ns": 2997571, - "rtt_ms": 2.997571, + "rtt_ns": 1668292, + "rtt_ms": 1.668292, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:42.477541209Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.737031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616585, - "rtt_ms": 1.616585, + "rtt_ns": 1480041, + "rtt_ms": 1.480041, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.477554769Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:45.737033-08:00" }, { "operation": "add_edge", - "rtt_ns": 3695399, - "rtt_ms": 3.695399, + "rtt_ns": 1702791, + "rtt_ms": 1.702791, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.477555309Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.737048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754695, - "rtt_ms": 1.754695, + "rtt_ns": 1969209, + "rtt_ms": 1.969209, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.477567899Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.737049-08:00" }, { "operation": "add_edge", - "rtt_ns": 3787179, - "rtt_ms": 3.787179, + "rtt_ns": 1677959, + "rtt_ms": 1.677959, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.477575039Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.737063-08:00" }, { "operation": "add_edge", - "rtt_ns": 3140891, - "rtt_ms": 3.140891, + "rtt_ns": 1641625, + "rtt_ms": 1.641625, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:42.477585619Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:45.7372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555296, - "rtt_ms": 1.555296, + "rtt_ns": 1490083, + "rtt_ms": 1.490083, "checkpoint": 0, "vertex_from": "113", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.478192698Z" + "timestamp": "2025-11-27T04:03:45.738507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947985, - "rtt_ms": 1.947985, + "rtt_ns": 1735083, + "rtt_ms": 1.735083, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:42.478544267Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.738767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016158, - "rtt_ms": 1.016158, + "rtt_ns": 1739667, + "rtt_ms": 1.739667, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "574", - "timestamp": "2025-11-27T01:23:42.478546597Z" + "vertex_from": "114", + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.738789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202956, - "rtt_ms": 1.202956, + "rtt_ns": 1942875, + "rtt_ms": 1.942875, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.478678996Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.738815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683656, - "rtt_ms": 1.683656, + "rtt_ns": 1816625, + "rtt_ms": 1.816625, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.479227685Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:45.738866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781645, - "rtt_ms": 1.781645, + "rtt_ns": 1888375, + "rtt_ms": 1.888375, "checkpoint": 0, - "vertex_from": "114", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.479341294Z" + "vertex_from": "113", + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:45.738884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165056, - "rtt_ms": 1.165056, + "rtt_ns": 1884834, + "rtt_ms": 1.884834, "checkpoint": 0, - "vertex_from": "114", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.479359684Z" + "vertex_from": "113", + "vertex_to": "574", + "timestamp": "2025-11-27T04:03:45.738918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808725, - "rtt_ms": 1.808725, + "rtt_ns": 2420666, + "rtt_ms": 2.420666, "checkpoint": 0, - "vertex_from": "114", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:42.479377634Z" + "vertex_from": "113", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.739048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807725, - "rtt_ms": 1.807725, + "rtt_ns": 1881416, + "rtt_ms": 1.881416, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.479395454Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:45.739082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837105, - "rtt_ms": 1.837105, + "rtt_ns": 2040208, + "rtt_ms": 2.040208, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:42.479415394Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.739104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880495, - "rtt_ms": 1.880495, + "rtt_ns": 1439292, + "rtt_ms": 1.439292, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:42.479436974Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:45.739947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262356, - "rtt_ms": 1.262356, + "rtt_ns": 1338917, + "rtt_ms": 1.338917, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:42.479807773Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:45.74039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335826, - "rtt_ms": 1.335826, + "rtt_ns": 1618292, + "rtt_ms": 1.618292, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.479883473Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.740408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792635, - "rtt_ms": 1.792635, + "rtt_ns": 1339250, + "rtt_ms": 1.33925, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.480473591Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:45.740444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120187, - "rtt_ms": 1.120187, + "rtt_ns": 1753000, + "rtt_ms": 1.753, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.480500471Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:45.74062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077887, - "rtt_ms": 1.077887, + "rtt_ns": 1861417, + "rtt_ms": 1.861417, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:42.480516211Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.740629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187467, - "rtt_ms": 1.187467, + "rtt_ns": 1558791, + "rtt_ms": 1.558791, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:42.480605811Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.740642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235197, - "rtt_ms": 1.235197, + "rtt_ns": 1826375, + "rtt_ms": 1.826375, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.480631791Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:03:45.740643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475335, - "rtt_ms": 1.475335, + "rtt_ns": 1726500, + "rtt_ms": 1.7265, "checkpoint": 0, "vertex_from": "114", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.48070457Z" + "timestamp": "2025-11-27T04:03:45.740646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433776, - "rtt_ms": 1.433776, + "rtt_ns": 1813042, + "rtt_ms": 1.813042, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:42.48077626Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:45.740698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673335, - "rtt_ms": 1.673335, + "rtt_ns": 1330042, + "rtt_ms": 1.330042, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.481034599Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:45.741278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142167, - "rtt_ms": 1.142167, + "rtt_ns": 1339417, + "rtt_ms": 1.339417, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.481644218Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.741983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836445, - "rtt_ms": 1.836445, + "rtt_ns": 1555125, + "rtt_ms": 1.555125, "checkpoint": 0, "vertex_from": "114", "vertex_to": "198", - "timestamp": "2025-11-27T01:23:42.481645628Z" + "timestamp": "2025-11-27T04:03:45.742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045557, - "rtt_ms": 1.045557, + "rtt_ns": 1622000, + "rtt_ms": 1.622, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:42.481653368Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:45.742015-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021854, - "rtt_ms": 2.021854, + "rtt_ns": 1331791, + "rtt_ms": 1.331791, "checkpoint": 0, - "vertex_from": "114", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.481906427Z" + "vertex_from": "115", + "vertex_to": "460", + "timestamp": "2025-11-27T04:03:45.742031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376385, - "rtt_ms": 1.376385, + "rtt_ns": 1401333, + "rtt_ms": 1.401333, "checkpoint": 0, - "vertex_from": "115", - "vertex_to": "460", - "timestamp": "2025-11-27T01:23:42.482011046Z" + "vertex_from": "114", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.742045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426276, - "rtt_ms": 1.426276, + "rtt_ns": 1682166, + "rtt_ms": 1.682166, "checkpoint": 0, - "vertex_from": "115", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.482133216Z" + "vertex_from": "114", + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:45.742091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384906, - "rtt_ms": 1.384906, + "rtt_ns": 1498375, + "rtt_ms": 1.498375, "checkpoint": 0, - "vertex_from": "115", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.482163146Z" + "vertex_from": "114", + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.742119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784835, - "rtt_ms": 1.784835, + "rtt_ns": 1524417, + "rtt_ms": 1.524417, "checkpoint": 0, "vertex_from": "114", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:42.482260536Z" + "timestamp": "2025-11-27T04:03:45.742155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223297, - "rtt_ms": 1.223297, + "rtt_ns": 1550209, + "rtt_ms": 1.550209, "checkpoint": 0, - "vertex_from": "115", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.482262136Z" + "vertex_from": "114", + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:45.742197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833534, - "rtt_ms": 1.833534, + "rtt_ns": 1441541, + "rtt_ms": 1.441541, "checkpoint": 0, - "vertex_from": "114", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.482353265Z" + "vertex_from": "115", + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.74272-08:00" }, { "operation": "add_edge", - "rtt_ns": 783247, - "rtt_ms": 0.783247, + "rtt_ns": 1169000, + "rtt_ms": 1.169, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:42.482429545Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:03:45.743289-08:00" }, { "operation": "add_edge", - "rtt_ns": 788847, - "rtt_ms": 0.788847, + "rtt_ns": 1342125, + "rtt_ms": 1.342125, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:42.482436225Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:03:45.743434-08:00" }, { "operation": "add_edge", - "rtt_ns": 918887, - "rtt_ms": 0.918887, + "rtt_ns": 1452542, + "rtt_ms": 1.452542, "checkpoint": 0, "vertex_from": "116", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.482574085Z" + "timestamp": "2025-11-27T04:03:45.743499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033767, - "rtt_ms": 1.033767, + "rtt_ns": 1567417, + "rtt_ms": 1.567417, "checkpoint": 0, - "vertex_from": "116", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:42.482943214Z" + "vertex_from": "115", + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:45.743551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166727, - "rtt_ms": 1.166727, + "rtt_ns": 1563917, + "rtt_ms": 1.563917, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "309", - "timestamp": "2025-11-27T01:23:42.483178983Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:45.743596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033857, - "rtt_ms": 1.033857, + "rtt_ns": 1405708, + "rtt_ms": 1.405708, "checkpoint": 0, "vertex_from": "116", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.483197873Z" + "timestamp": "2025-11-27T04:03:45.743603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095947, - "rtt_ms": 1.095947, + "rtt_ns": 1638666, + "rtt_ms": 1.638666, "checkpoint": 0, - "vertex_from": "116", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.483230453Z" + "vertex_from": "115", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.743639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128166, - "rtt_ms": 1.128166, + "rtt_ns": 1623042, + "rtt_ms": 1.623042, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.483391622Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:45.743639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159036, - "rtt_ms": 1.159036, + "rtt_ns": 1507459, + "rtt_ms": 1.507459, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.483421082Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.743665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697955, - "rtt_ms": 1.697955, + "rtt_ns": 1807209, + "rtt_ms": 1.807209, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "732", - "timestamp": "2025-11-27T01:23:42.48405296Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.744528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744765, - "rtt_ms": 1.744765, + "rtt_ns": 1352125, + "rtt_ms": 1.352125, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:42.4841758Z" + "vertex_to": "732", + "timestamp": "2025-11-27T04:03:45.744787-08:00" }, { "operation": "add_edge", - "rtt_ns": 986897, - "rtt_ms": 0.986897, + "rtt_ns": 1563792, + "rtt_ms": 1.563792, "checkpoint": 0, - "vertex_from": "117", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.4842182Z" + "vertex_from": "116", + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.744854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675455, - "rtt_ms": 1.675455, + "rtt_ns": 1373209, + "rtt_ms": 1.373209, "checkpoint": 0, - "vertex_from": "117", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:42.48425125Z" + "vertex_from": "116", + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:45.744872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319976, - "rtt_ms": 1.319976, + "rtt_ns": 1406292, + "rtt_ms": 1.406292, "checkpoint": 0, "vertex_from": "117", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.48427256Z" + "timestamp": "2025-11-27T04:03:45.745013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986314, - "rtt_ms": 1.986314, + "rtt_ns": 1397042, + "rtt_ms": 1.397042, "checkpoint": 0, - "vertex_from": "116", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.484424239Z" + "vertex_from": "117", + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:45.745039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291636, - "rtt_ms": 1.291636, + "rtt_ns": 1446625, + "rtt_ms": 1.446625, "checkpoint": 0, "vertex_from": "117", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.484491029Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:45.745044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536885, - "rtt_ms": 1.536885, + "rtt_ns": 1388625, + "rtt_ms": 1.388625, "checkpoint": 0, "vertex_from": "117", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.484718618Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.745054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353956, - "rtt_ms": 1.353956, + "rtt_ns": 1412209, + "rtt_ms": 1.412209, "checkpoint": 0, "vertex_from": "117", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.484746728Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.745056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383256, - "rtt_ms": 1.383256, + "rtt_ns": 1968500, + "rtt_ms": 1.9685, "checkpoint": 0, - "vertex_from": "117", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.484806678Z" + "vertex_from": "116", + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:45.745521-08:00" }, { "operation": "add_edge", - "rtt_ns": 648188, - "rtt_ms": 0.648188, + "rtt_ns": 1445125, + "rtt_ms": 1.445125, "checkpoint": 0, "vertex_from": "118", "vertex_to": "182", - "timestamp": "2025-11-27T01:23:42.484825498Z" + "timestamp": "2025-11-27T04:03:45.746319-08:00" }, { "operation": "add_edge", - "rtt_ns": 770108, - "rtt_ms": 0.770108, + "rtt_ns": 1506833, + "rtt_ms": 1.506833, "checkpoint": 0, "vertex_from": "118", "vertex_to": "705", - "timestamp": "2025-11-27T01:23:42.484826098Z" + "timestamp": "2025-11-27T04:03:45.746362-08:00" }, { "operation": "add_edge", - "rtt_ns": 656368, - "rtt_ms": 0.656368, + "rtt_ns": 1637125, + "rtt_ms": 1.637125, "checkpoint": 0, - "vertex_from": "118", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.484910428Z" + "vertex_from": "117", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.746428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348486, - "rtt_ms": 1.348486, + "rtt_ns": 1626500, + "rtt_ms": 1.6265, "checkpoint": 0, "vertex_from": "118", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.485625166Z" + "timestamp": "2025-11-27T04:03:45.746672-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2195334, + "rtt_ms": 2.195334, + "checkpoint": 0, + "vertex_from": "117", + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.746725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432886, - "rtt_ms": 1.432886, + "rtt_ns": 1725875, + "rtt_ms": 1.725875, "checkpoint": 0, "vertex_from": "118", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.485652406Z" + "timestamp": "2025-11-27T04:03:45.746739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264926, - "rtt_ms": 1.264926, + "rtt_ns": 1701333, + "rtt_ms": 1.701333, "checkpoint": 0, "vertex_from": "118", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.485690585Z" + "timestamp": "2025-11-27T04:03:45.746758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399086, - "rtt_ms": 1.399086, + "rtt_ns": 1745875, + "rtt_ms": 1.745875, "checkpoint": 0, "vertex_from": "118", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.485892215Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.746786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261107, - "rtt_ms": 1.261107, + "rtt_ns": 1824208, + "rtt_ms": 1.824208, "checkpoint": 0, - "vertex_from": "119", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.486008815Z" + "vertex_from": "118", + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.746881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801465, - "rtt_ms": 1.801465, + "rtt_ns": 1576833, + "rtt_ms": 1.576833, "checkpoint": 0, "vertex_from": "118", "vertex_to": "169", - "timestamp": "2025-11-27T01:23:42.486521513Z" + "timestamp": "2025-11-27T04:03:45.747099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846255, - "rtt_ms": 1.846255, + "rtt_ns": 1400541, + "rtt_ms": 1.400541, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.486672953Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.747766-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087404, - "rtt_ms": 2.087404, + "rtt_ns": 1368958, + "rtt_ms": 1.368958, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.486895152Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.747799-08:00" }, { "operation": "add_edge", - "rtt_ns": 2363923, - "rtt_ms": 2.363923, + "rtt_ns": 1571584, + "rtt_ms": 1.571584, "checkpoint": 0, - "vertex_from": "120", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.487191251Z" + "vertex_from": "119", + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:45.747891-08:00" }, { "operation": "add_edge", - "rtt_ns": 2860271, - "rtt_ms": 2.860271, + "rtt_ns": 1994959, + "rtt_ms": 1.994959, "checkpoint": 0, "vertex_from": "120", "vertex_to": "131", - "timestamp": "2025-11-27T01:23:42.487771889Z" + "timestamp": "2025-11-27T04:03:45.748722-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1952916, + "rtt_ms": 1.952916, + "checkpoint": 0, + "vertex_from": "120", + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:45.748741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193913, - "rtt_ms": 2.193913, + "rtt_ns": 1997667, + "rtt_ms": 1.997667, "checkpoint": 0, "vertex_from": "120", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.487847639Z" + "timestamp": "2025-11-27T04:03:45.748756-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240173, - "rtt_ms": 2.240173, + "rtt_ns": 1941625, + "rtt_ms": 1.941625, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:42.487867779Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.749041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180034, - "rtt_ms": 2.180034, + "rtt_ns": 2387417, + "rtt_ms": 2.387417, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:42.487871739Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.749062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051864, - "rtt_ms": 2.051864, + "rtt_ns": 2192750, + "rtt_ms": 2.19275, "checkpoint": 0, "vertex_from": "120", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.487944989Z" + "timestamp": "2025-11-27T04:03:45.749075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960434, - "rtt_ms": 1.960434, + "rtt_ns": 2337459, + "rtt_ms": 2.337459, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.487970249Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:45.749078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495096, - "rtt_ms": 1.495096, + "rtt_ns": 1444417, + "rtt_ms": 1.444417, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.488018549Z" + "vertex_to": "910", + "timestamp": "2025-11-27T04:03:45.749246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380095, - "rtt_ms": 1.380095, + "rtt_ns": 2122042, + "rtt_ms": 2.122042, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "910", - "timestamp": "2025-11-27T01:23:42.488054518Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.749889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303946, - "rtt_ms": 1.303946, + "rtt_ns": 2001750, + "rtt_ms": 2.00175, "checkpoint": 0, "vertex_from": "120", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.488200578Z" + "timestamp": "2025-11-27T04:03:45.749894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871835, - "rtt_ms": 1.871835, + "rtt_ns": 1064667, + "rtt_ms": 1.064667, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:42.489064406Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.750144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164977, - "rtt_ms": 1.164977, + "rtt_ns": 1536917, + "rtt_ms": 1.536917, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:42.489111376Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:03:45.750261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146487, - "rtt_ms": 1.146487, + "rtt_ns": 1678125, + "rtt_ms": 1.678125, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.489117816Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.75042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360116, - "rtt_ms": 1.360116, + "rtt_ns": 1436208, + "rtt_ms": 1.436208, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.489133575Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:45.750479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263816, - "rtt_ms": 1.263816, + "rtt_ns": 1417375, + "rtt_ms": 1.417375, "checkpoint": 0, "vertex_from": "120", "vertex_to": "343", - "timestamp": "2025-11-27T01:23:42.489136865Z" + "timestamp": "2025-11-27T04:03:45.75048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368696, - "rtt_ms": 1.368696, + "rtt_ns": 1409708, + "rtt_ms": 1.409708, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.489217355Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:45.750488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960455, - "rtt_ms": 1.960455, + "rtt_ns": 1773375, + "rtt_ms": 1.773375, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:42.489829514Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.75053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884344, - "rtt_ms": 1.884344, + "rtt_ns": 1296833, + "rtt_ms": 1.296833, "checkpoint": 0, "vertex_from": "120", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.489905053Z" + "timestamp": "2025-11-27T04:03:45.750543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782955, - "rtt_ms": 1.782955, + "rtt_ns": 1413292, + "rtt_ms": 1.413292, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.489984753Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.751305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958055, - "rtt_ms": 1.958055, + "rtt_ns": 1810041, + "rtt_ms": 1.810041, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.490013563Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:45.751705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587765, - "rtt_ms": 1.587765, + "rtt_ns": 1719709, + "rtt_ms": 1.719709, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.490707891Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:03:45.751864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659505, - "rtt_ms": 1.659505, + "rtt_ns": 1856584, + "rtt_ms": 1.856584, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.490728891Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.752118-08:00" }, { "operation": "add_edge", - "rtt_ns": 944208, - "rtt_ms": 0.944208, + "rtt_ns": 1602834, + "rtt_ms": 1.602834, "checkpoint": 0, "vertex_from": "121", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.490850261Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:45.752134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740256, - "rtt_ms": 1.740256, + "rtt_ns": 2052000, + "rtt_ms": 2.052, "checkpoint": 0, "vertex_from": "121", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.490879831Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.752542-08:00" }, { "operation": "add_edge", - "rtt_ns": 927967, - "rtt_ms": 0.927967, + "rtt_ns": 2015667, + "rtt_ms": 2.015667, "checkpoint": 0, "vertex_from": "121", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.4909426Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.752561-08:00" }, { "operation": "add_edge", - "rtt_ns": 965977, - "rtt_ms": 0.965977, + "rtt_ns": 1269875, + "rtt_ms": 1.269875, "checkpoint": 0, "vertex_from": "121", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.49095223Z" + "timestamp": "2025-11-27T04:03:45.752575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751775, - "rtt_ms": 1.751775, + "rtt_ns": 2098333, + "rtt_ms": 2.098333, "checkpoint": 0, "vertex_from": "121", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.49097111Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.752579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882044, - "rtt_ms": 1.882044, + "rtt_ns": 2168334, + "rtt_ms": 2.168334, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.49099738Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:45.75259-08:00" }, { "operation": "add_edge", - "rtt_ns": 2005755, - "rtt_ms": 2.005755, + "rtt_ns": 2125667, + "rtt_ms": 2.125667, "checkpoint": 0, "vertex_from": "121", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.49114304Z" + "timestamp": "2025-11-27T04:03:45.752606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350296, - "rtt_ms": 1.350296, + "rtt_ns": 1295791, + "rtt_ms": 1.295791, "checkpoint": 0, "vertex_from": "121", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:42.49118202Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.753002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106597, - "rtt_ms": 1.106597, + "rtt_ns": 1283417, + "rtt_ms": 1.283417, "checkpoint": 0, - "vertex_from": "122", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.491838448Z" + "vertex_from": "121", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.753149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147977, - "rtt_ms": 1.147977, + "rtt_ns": 1072750, + "rtt_ms": 1.07275, "checkpoint": 0, - "vertex_from": "121", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.491858568Z" + "vertex_from": "122", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.75369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365636, - "rtt_ms": 1.365636, + "rtt_ns": 1146500, + "rtt_ms": 1.1465, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:42.492217657Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.753708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169126, - "rtt_ms": 1.169126, + "rtt_ns": 1180083, + "rtt_ms": 1.180083, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.492352356Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.753723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224036, - "rtt_ms": 1.224036, + "rtt_ns": 1291958, + "rtt_ms": 1.291958, "checkpoint": 0, "vertex_from": "122", "vertex_to": "736", - "timestamp": "2025-11-27T01:23:42.492368386Z" + "timestamp": "2025-11-27T04:03:45.753899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529016, - "rtt_ms": 1.529016, + "rtt_ns": 1780209, + "rtt_ms": 1.780209, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.492482936Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:03:45.753915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511986, - "rtt_ms": 1.511986, + "rtt_ns": 1391625, + "rtt_ms": 1.391625, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.492484356Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.753967-08:00" }, { "operation": "add_edge", - "rtt_ns": 708898, - "rtt_ms": 0.708898, + "rtt_ns": 957833, + "rtt_ms": 0.957833, "checkpoint": 0, - "vertex_from": "123", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.492569976Z" + "vertex_from": "122", + "vertex_to": "466", + "timestamp": "2025-11-27T04:03:45.754107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588546, - "rtt_ms": 1.588546, + "rtt_ns": 1623833, + "rtt_ms": 1.623833, "checkpoint": 0, "vertex_from": "122", "vertex_to": "647", - "timestamp": "2025-11-27T01:23:42.492587806Z" + "timestamp": "2025-11-27T04:03:45.754216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228113, - "rtt_ms": 2.228113, + "rtt_ns": 2120917, + "rtt_ms": 2.120917, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.493109894Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.75424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314426, - "rtt_ms": 1.314426, + "rtt_ns": 1615083, + "rtt_ms": 1.615083, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "466", - "timestamp": "2025-11-27T01:23:42.493155384Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:45.754618-08:00" }, { "operation": "add_edge", - "rtt_ns": 845098, - "rtt_ms": 0.845098, + "rtt_ns": 1158042, + "rtt_ms": 1.158042, "checkpoint": 0, "vertex_from": "124", - "vertex_to": "869", - "timestamp": "2025-11-27T01:23:42.493199864Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.755127-08:00" }, { "operation": "add_edge", - "rtt_ns": 989557, - "rtt_ms": 0.989557, + "rtt_ns": 1891417, + "rtt_ms": 1.891417, "checkpoint": 0, - "vertex_from": "123", - "vertex_to": "128", - "timestamp": "2025-11-27T01:23:42.493207914Z" + "vertex_from": "124", + "vertex_to": "869", + "timestamp": "2025-11-27T04:03:45.755616-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288334, - "rtt_ms": 2.288334, + "rtt_ns": 1982916, + "rtt_ms": 1.982916, "checkpoint": 0, - "vertex_from": "122", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.493232004Z" + "vertex_from": "123", + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.755674-08:00" }, { "operation": "add_edge", - "rtt_ns": 874058, - "rtt_ms": 0.874058, + "rtt_ns": 1821125, + "rtt_ms": 1.821125, "checkpoint": 0, "vertex_from": "124", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:42.493244124Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.755737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387545, - "rtt_ms": 1.387545, + "rtt_ns": 1864417, + "rtt_ms": 1.864417, "checkpoint": 0, - "vertex_from": "125", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.493977081Z" + "vertex_from": "124", + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:45.755764-08:00" }, { "operation": "add_edge", - "rtt_ns": 941257, - "rtt_ms": 0.941257, + "rtt_ns": 1548042, + "rtt_ms": 1.548042, "checkpoint": 0, "vertex_from": "126", "vertex_to": "138", - "timestamp": "2025-11-27T01:23:42.494053261Z" + "timestamp": "2025-11-27T04:03:45.755789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582335, - "rtt_ms": 1.582335, + "rtt_ns": 2081125, + "rtt_ms": 2.081125, "checkpoint": 0, - "vertex_from": "124", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.494066511Z" + "vertex_from": "123", + "vertex_to": "128", + "timestamp": "2025-11-27T04:03:45.755789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685635, - "rtt_ms": 1.685635, + "rtt_ns": 1591917, + "rtt_ms": 1.591917, "checkpoint": 0, - "vertex_from": "124", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.494171091Z" + "vertex_from": "125", + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:45.755809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626195, - "rtt_ms": 1.626195, + "rtt_ns": 1871792, + "rtt_ms": 1.871792, "checkpoint": 0, "vertex_from": "124", "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.494197791Z" + "timestamp": "2025-11-27T04:03:45.75598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147956, - "rtt_ms": 1.147956, + "rtt_ns": 1592166, + "rtt_ms": 1.592166, "checkpoint": 0, "vertex_from": "126", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.49430593Z" + "timestamp": "2025-11-27T04:03:45.756211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416185, - "rtt_ms": 1.416185, + "rtt_ns": 1505125, + "rtt_ms": 1.505125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:42.494661929Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:45.757123-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1469542, + "rtt_ms": 1.469542, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.757145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547255, - "rtt_ms": 1.547255, + "rtt_ns": 2194000, + "rtt_ms": 2.194, "checkpoint": 0, "vertex_from": "127", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.494748779Z" + "timestamp": "2025-11-27T04:03:45.757324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523045, - "rtt_ms": 1.523045, + "rtt_ns": 1770541, + "rtt_ms": 1.770541, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.494755989Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.757561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576185, - "rtt_ms": 1.576185, + "rtt_ns": 1840583, + "rtt_ms": 1.840583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.494785789Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:45.757579-08:00" }, { "operation": "add_edge", - "rtt_ns": 856018, - "rtt_ms": 0.856018, + "rtt_ns": 2262542, + "rtt_ms": 2.262542, "checkpoint": 0, "vertex_from": "128", "vertex_to": "234", - "timestamp": "2025-11-27T01:23:42.494834049Z" + "timestamp": "2025-11-27T04:03:45.758028-08:00" }, { "operation": "add_edge", - "rtt_ns": 864438, - "rtt_ms": 0.864438, + "rtt_ns": 2241958, + "rtt_ms": 2.241958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.494919839Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.758052-08:00" }, { "operation": "add_edge", - "rtt_ns": 854918, - "rtt_ms": 0.854918, + "rtt_ns": 2289042, + "rtt_ms": 2.289042, "checkpoint": 0, "vertex_from": "128", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.494922589Z" + "timestamp": "2025-11-27T04:03:45.75808-08:00" }, { "operation": "add_edge", - "rtt_ns": 806277, - "rtt_ms": 0.806277, + "rtt_ns": 2099167, + "rtt_ms": 2.099167, "checkpoint": 0, "vertex_from": "128", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.495005188Z" + "timestamp": "2025-11-27T04:03:45.758081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477906, - "rtt_ms": 1.477906, + "rtt_ns": 1929084, + "rtt_ms": 1.929084, "checkpoint": 0, "vertex_from": "128", "vertex_to": "549", - "timestamp": "2025-11-27T01:23:42.495785326Z" + "timestamp": "2025-11-27T04:03:45.758141-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1638785, - "rtt_ms": 1.638785, + "operation": "add_vertex", + "rtt_ns": 1512083, + "rtt_ms": 1.512083, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.495811376Z" + "vertex_from": "729", + "timestamp": "2025-11-27T04:03:45.758839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066977, - "rtt_ms": 1.066977, + "rtt_ns": 1561917, + "rtt_ms": 1.561917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:42.495817296Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.759124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484056, - "rtt_ms": 1.484056, + "rtt_ns": 2016917, + "rtt_ms": 2.016917, "checkpoint": 0, "vertex_from": "128", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.496148205Z" + "timestamp": "2025-11-27T04:03:45.759142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652425, - "rtt_ms": 1.652425, + "rtt_ns": 2010833, + "rtt_ms": 2.010833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.496439664Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:45.759157-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1688655, - "rtt_ms": 1.688655, + "operation": "add_edge", + "rtt_ns": 1028917, + "rtt_ms": 1.028917, "checkpoint": 0, - "vertex_from": "729", - "timestamp": "2025-11-27T01:23:42.496448664Z" + "vertex_from": "128", + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:45.759172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664045, - "rtt_ms": 1.664045, + "rtt_ns": 1648125, + "rtt_ms": 1.648125, "checkpoint": 0, "vertex_from": "128", "vertex_to": "932", - "timestamp": "2025-11-27T01:23:42.496499744Z" + "timestamp": "2025-11-27T04:03:45.759228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636736, - "rtt_ms": 1.636736, + "rtt_ns": 1307625, + "rtt_ms": 1.307625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.496645484Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.759337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728775, - "rtt_ms": 1.728775, + "rtt_ns": 1376875, + "rtt_ms": 1.376875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.496652714Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.759459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079817, - "rtt_ms": 1.079817, + "rtt_ns": 1395292, + "rtt_ms": 1.395292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.496870133Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.759477-08:00" }, { "operation": "add_edge", - "rtt_ns": 756228, - "rtt_ms": 0.756228, + "rtt_ns": 1577209, + "rtt_ms": 1.577209, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "690", - "timestamp": "2025-11-27T01:23:42.496907033Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.759632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989654, - "rtt_ms": 1.989654, + "rtt_ns": 1523084, + "rtt_ms": 1.523084, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.496911053Z" + "vertex_to": "729", + "timestamp": "2025-11-27T04:03:45.760363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166737, - "rtt_ms": 1.166737, + "rtt_ns": 1328709, + "rtt_ms": 1.328709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:42.496980163Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:45.760486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239117, - "rtt_ms": 1.239117, + "rtt_ns": 1564792, + "rtt_ms": 1.564792, "checkpoint": 0, "vertex_from": "128", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.497058533Z" + "timestamp": "2025-11-27T04:03:45.76069-08:00" }, { "operation": "add_edge", - "rtt_ns": 803358, - "rtt_ms": 0.803358, + "rtt_ns": 1522125, + "rtt_ms": 1.522125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "729", - "timestamp": "2025-11-27T01:23:42.497252602Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:03:45.760695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425166, - "rtt_ms": 1.425166, + "rtt_ns": 1364916, + "rtt_ms": 1.364916, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:42.4978662Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:45.760703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228296, - "rtt_ms": 1.228296, + "rtt_ns": 1597500, + "rtt_ms": 1.5975, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.4978827Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.760829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051987, - "rtt_ms": 1.051987, + "rtt_ns": 1706625, + "rtt_ms": 1.706625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.49796158Z" + "vertex_to": "690", + "timestamp": "2025-11-27T04:03:45.760849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366366, - "rtt_ms": 1.366366, + "rtt_ns": 1429500, + "rtt_ms": 1.4295, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.49801328Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.760907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149387, - "rtt_ms": 1.149387, + "rtt_ns": 1527709, + "rtt_ms": 1.527709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "364", - "timestamp": "2025-11-27T01:23:42.49806163Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.760991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976445, - "rtt_ms": 1.976445, + "rtt_ns": 1410083, + "rtt_ms": 1.410083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "295", - "timestamp": "2025-11-27T01:23:42.498478199Z" + "vertex_to": "364", + "timestamp": "2025-11-27T04:03:45.761043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637425, - "rtt_ms": 1.637425, + "rtt_ns": 1074625, + "rtt_ms": 1.074625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.498509058Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.76178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617455, - "rtt_ms": 1.617455, + "rtt_ns": 1440375, + "rtt_ms": 1.440375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "190", - "timestamp": "2025-11-27T01:23:42.498599598Z" + "timestamp": "2025-11-27T04:03:45.761804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555595, - "rtt_ms": 1.555595, + "rtt_ns": 1200083, + "rtt_ms": 1.200083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.498615708Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:45.76205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701795, - "rtt_ms": 1.701795, + "rtt_ns": 1371209, + "rtt_ms": 1.371209, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.498956197Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:03:45.762067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673556, - "rtt_ms": 1.673556, + "rtt_ns": 1599416, + "rtt_ms": 1.599416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.499557856Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.762087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978474, - "rtt_ms": 1.978474, + "rtt_ns": 1417209, + "rtt_ms": 1.417209, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:42.499941744Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:45.762108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988294, - "rtt_ms": 1.988294, + "rtt_ns": 1306416, + "rtt_ms": 1.306416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:42.500002654Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.762215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555085, - "rtt_ms": 1.555085, + "rtt_ns": 1471875, + "rtt_ms": 1.471875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "213", - "timestamp": "2025-11-27T01:23:42.500034704Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:45.762302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688276, - "rtt_ms": 1.688276, + "rtt_ns": 1383750, + "rtt_ms": 1.38375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.500198654Z" + "timestamp": "2025-11-27T04:03:45.762427-08:00" }, { "operation": "add_edge", - "rtt_ns": 2226794, - "rtt_ms": 2.226794, + "rtt_ns": 1464042, + "rtt_ms": 1.464042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.500828102Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:03:45.762456-08:00" }, { "operation": "add_edge", - "rtt_ns": 2870861, - "rtt_ms": 2.870861, + "rtt_ns": 1354875, + "rtt_ms": 1.354875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.500934031Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.763136-08:00" }, { "operation": "add_edge", - "rtt_ns": 3070661, - "rtt_ms": 3.070661, + "rtt_ns": 1351208, + "rtt_ms": 1.351208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:42.500938651Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.763156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997454, - "rtt_ms": 1.997454, + "rtt_ns": 1271666, + "rtt_ms": 1.271666, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.500955341Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:45.763487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2370643, - "rtt_ms": 2.370643, + "rtt_ns": 1409792, + "rtt_ms": 1.409792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.500987881Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:45.763497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479675, - "rtt_ms": 1.479675, + "rtt_ns": 1596459, + "rtt_ms": 1.596459, "checkpoint": 0, "vertex_from": "128", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:42.501039311Z" + "timestamp": "2025-11-27T04:03:45.763664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172647, - "rtt_ms": 1.172647, + "rtt_ns": 1692750, + "rtt_ms": 1.69275, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:42.501115911Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.763744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401655, - "rtt_ms": 1.401655, + "rtt_ns": 1511125, + "rtt_ms": 1.511125, "checkpoint": 0, "vertex_from": "128", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.501602399Z" + "timestamp": "2025-11-27T04:03:45.763814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643855, - "rtt_ms": 1.643855, + "rtt_ns": 1748042, + "rtt_ms": 1.748042, "checkpoint": 0, "vertex_from": "128", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.501647979Z" - }, - { - "operation": "add_edge", - "rtt_ns": 796748, - "rtt_ms": 0.796748, - "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:42.501736999Z" + "timestamp": "2025-11-27T04:03:45.763857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031467, - "rtt_ms": 1.031467, + "rtt_ns": 1444458, + "rtt_ms": 1.444458, "checkpoint": 0, "vertex_from": "128", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.501860699Z" + "timestamp": "2025-11-27T04:03:45.763872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869415, - "rtt_ms": 1.869415, + "rtt_ns": 1416917, + "rtt_ms": 1.416917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:42.501906729Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.763873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063657, - "rtt_ms": 1.063657, + "rtt_ns": 1159917, + "rtt_ms": 1.159917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.502003188Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.764316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122447, - "rtt_ms": 1.122447, + "rtt_ns": 1194875, + "rtt_ms": 1.194875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.502111898Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:45.764332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632735, - "rtt_ms": 1.632735, + "rtt_ns": 1249875, + "rtt_ms": 1.249875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.502589796Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:03:45.764748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649015, - "rtt_ms": 1.649015, + "rtt_ns": 1042500, + "rtt_ms": 1.0425, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "866", - "timestamp": "2025-11-27T01:23:42.502766166Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.764788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177027, - "rtt_ms": 1.177027, + "rtt_ns": 1358750, + "rtt_ms": 1.35875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.502780816Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.764847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751705, - "rtt_ms": 1.751705, + "rtt_ns": 1333875, + "rtt_ms": 1.333875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:42.502792486Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:03:45.765001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375756, - "rtt_ms": 1.375756, + "rtt_ns": 1346584, + "rtt_ms": 1.346584, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:42.503489614Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.765205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793544, - "rtt_ms": 1.793544, + "rtt_ns": 1391250, + "rtt_ms": 1.39125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:42.503655453Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:45.765266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943864, - "rtt_ms": 1.943864, + "rtt_ns": 1575833, + "rtt_ms": 1.575833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.503681863Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:45.76545-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039114, - "rtt_ms": 2.039114, + "rtt_ns": 1684375, + "rtt_ms": 1.684375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "480", - "timestamp": "2025-11-27T01:23:42.503688483Z" + "timestamp": "2025-11-27T04:03:45.765501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132297, - "rtt_ms": 1.132297, + "rtt_ns": 1223459, + "rtt_ms": 1.223459, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.503723263Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:45.765556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743455, - "rtt_ms": 1.743455, + "rtt_ns": 1346875, + "rtt_ms": 1.346875, "checkpoint": 0, "vertex_from": "128", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.503747723Z" + "timestamp": "2025-11-27T04:03:45.765664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864964, - "rtt_ms": 1.864964, + "rtt_ns": 1174125, + "rtt_ms": 1.174125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:42.503773043Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.766177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522485, - "rtt_ms": 1.522485, + "rtt_ns": 1682416, + "rtt_ms": 1.682416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.504316961Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:45.766472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689115, - "rtt_ms": 1.689115, + "rtt_ns": 1642708, + "rtt_ms": 1.642708, "checkpoint": 0, "vertex_from": "128", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.504470771Z" + "timestamp": "2025-11-27T04:03:45.76649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720705, - "rtt_ms": 1.720705, + "rtt_ns": 1743709, + "rtt_ms": 1.743709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:42.504488151Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.766494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253187, - "rtt_ms": 1.253187, + "rtt_ns": 2143792, + "rtt_ms": 2.143792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.50493711Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:03:45.767412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858575, - "rtt_ms": 1.858575, + "rtt_ns": 1926125, + "rtt_ms": 1.926125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.505350049Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.767428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784045, - "rtt_ms": 1.784045, + "rtt_ns": 2238875, + "rtt_ms": 2.238875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "130", - "timestamp": "2025-11-27T01:23:42.505441538Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.767444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096437, - "rtt_ms": 1.096437, + "rtt_ns": 2062833, + "rtt_ms": 2.062833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:42.505586648Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.767514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926045, - "rtt_ms": 1.926045, + "rtt_ns": 1907791, + "rtt_ms": 1.907791, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.505615998Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:03:45.767573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880875, - "rtt_ms": 1.880875, + "rtt_ns": 1426667, + "rtt_ms": 1.426667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "129", - "timestamp": "2025-11-27T01:23:42.505655818Z" + "timestamp": "2025-11-27T04:03:45.767605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935765, - "rtt_ms": 1.935765, + "rtt_ns": 2167042, + "rtt_ms": 2.167042, "checkpoint": 0, "vertex_from": "128", "vertex_to": "660", - "timestamp": "2025-11-27T01:23:42.505660318Z" + "timestamp": "2025-11-27T04:03:45.767724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254857, - "rtt_ms": 1.254857, + "rtt_ns": 1805125, + "rtt_ms": 1.805125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:42.505726878Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:45.7683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998304, - "rtt_ms": 1.998304, + "rtt_ns": 1848416, + "rtt_ms": 1.848416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:42.505747897Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.768321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460116, - "rtt_ms": 1.460116, + "rtt_ns": 1868208, + "rtt_ms": 1.868208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.505779157Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:45.76836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630285, - "rtt_ms": 1.630285, + "rtt_ns": 1021875, + "rtt_ms": 1.021875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "882", - "timestamp": "2025-11-27T01:23:42.506568665Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.768627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170347, - "rtt_ms": 1.170347, + "rtt_ns": 1319667, + "rtt_ms": 1.319667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.506613725Z" + "timestamp": "2025-11-27T04:03:45.768765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270386, - "rtt_ms": 1.270386, + "rtt_ns": 1367584, + "rtt_ms": 1.367584, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "968", - "timestamp": "2025-11-27T01:23:42.506621905Z" + "vertex_to": "882", + "timestamp": "2025-11-27T04:03:45.76878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365726, - "rtt_ms": 1.365726, + "rtt_ns": 1129291, + "rtt_ms": 1.129291, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.507022914Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:45.768855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546296, - "rtt_ms": 1.546296, + "rtt_ns": 1298084, + "rtt_ms": 1.298084, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:42.507327473Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:45.768872-08:00" }, { "operation": "add_edge", - "rtt_ns": 883228, - "rtt_ms": 0.883228, + "rtt_ns": 1489084, + "rtt_ms": 1.489084, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "428", - "timestamp": "2025-11-27T01:23:42.507507453Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:03:45.768917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956064, - "rtt_ms": 1.956064, + "rtt_ns": 1509416, + "rtt_ms": 1.509416, "checkpoint": 0, "vertex_from": "128", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.507544412Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1922365, - "rtt_ms": 1.922365, - "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "775", - "timestamp": "2025-11-27T01:23:42.507651932Z" + "timestamp": "2025-11-27T04:03:45.769024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133477, - "rtt_ms": 1.133477, + "rtt_ns": 1260375, + "rtt_ms": 1.260375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.507703552Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:45.769621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115327, - "rtt_ms": 1.115327, + "rtt_ns": 1355958, + "rtt_ms": 1.355958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "159", - "timestamp": "2025-11-27T01:23:42.507732372Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:03:45.769657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095544, - "rtt_ms": 2.095544, + "rtt_ns": 1294041, + "rtt_ms": 1.294041, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:42.507759472Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.769922-08:00" }, { "operation": "add_edge", - "rtt_ns": 2569483, - "rtt_ms": 2.569483, + "rtt_ns": 1617625, + "rtt_ms": 1.617625, "checkpoint": 0, "vertex_from": "128", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.50831887Z" + "timestamp": "2025-11-27T04:03:45.769939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2717362, - "rtt_ms": 2.717362, + "rtt_ns": 1371709, + "rtt_ms": 1.371709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:42.50833652Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:03:45.770154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246836, - "rtt_ms": 1.246836, + "rtt_ns": 1295958, + "rtt_ms": 1.295958, "checkpoint": 0, "vertex_from": "128", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.508575569Z" + "timestamp": "2025-11-27T04:03:45.770168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688775, - "rtt_ms": 1.688775, + "rtt_ns": 1327375, + "rtt_ms": 1.327375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.508713289Z" + "timestamp": "2025-11-27T04:03:45.770183-08:00" }, { "operation": "add_edge", - "rtt_ns": 726918, - "rtt_ms": 0.726918, + "rtt_ns": 1282458, + "rtt_ms": 1.282458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "858", - "timestamp": "2025-11-27T01:23:42.509065088Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.770201-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1387216, - "rtt_ms": 1.387216, + "operation": "add_edge", + "rtt_ns": 1448584, + "rtt_ms": 1.448584, "checkpoint": 0, - "vertex_from": "764", - "timestamp": "2025-11-27T01:23:42.509148308Z" + "vertex_from": "128", + "vertex_to": "159", + "timestamp": "2025-11-27T04:03:45.770214-08:00" }, { "operation": "add_edge", - "rtt_ns": 946727, - "rtt_ms": 0.946727, + "rtt_ns": 1380000, + "rtt_ms": 1.38, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "934", - "timestamp": "2025-11-27T01:23:42.509267517Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:45.770405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970674, - "rtt_ms": 1.970674, + "rtt_ns": 1338041, + "rtt_ms": 1.338041, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.509704906Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.770962-08:00" }, { "operation": "add_edge", - "rtt_ns": 2170974, - "rtt_ms": 2.170974, + "rtt_ns": 1027291, + "rtt_ms": 1.027291, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:42.509716826Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.771211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105787, - "rtt_ms": 1.105787, + "rtt_ns": 1569334, + "rtt_ms": 1.569334, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:42.509820356Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:45.771228-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2191954, - "rtt_ms": 2.191954, + "operation": "add_vertex", + "rtt_ns": 1487625, + "rtt_ms": 1.487625, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.509845056Z" + "vertex_from": "764", + "timestamp": "2025-11-27T04:03:45.77143-08:00" }, { "operation": "add_edge", - "rtt_ns": 2422492, - "rtt_ms": 2.422492, + "rtt_ns": 1306167, + "rtt_ms": 1.306167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.509931335Z" + "vertex_to": "858", + "timestamp": "2025-11-27T04:03:45.771475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563576, - "rtt_ms": 1.563576, + "rtt_ns": 1685875, + "rtt_ms": 1.685875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.510140965Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.771609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444103, - "rtt_ms": 2.444103, + "rtt_ns": 1626250, + "rtt_ms": 1.62625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:42.510149425Z" + "vertex_to": "934", + "timestamp": "2025-11-27T04:03:45.77178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770405, - "rtt_ms": 1.770405, + "rtt_ns": 1581250, + "rtt_ms": 1.58125, "checkpoint": 0, "vertex_from": "128", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.510836813Z" + "timestamp": "2025-11-27T04:03:45.771796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702735, - "rtt_ms": 1.702735, + "rtt_ns": 1608125, + "rtt_ms": 1.608125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "764", - "timestamp": "2025-11-27T01:23:42.510851673Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:45.771809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694535, - "rtt_ms": 1.694535, + "rtt_ns": 1656792, + "rtt_ms": 1.656792, "checkpoint": 0, "vertex_from": "128", "vertex_to": "805", - "timestamp": "2025-11-27T01:23:42.510964562Z" + "timestamp": "2025-11-27T04:03:45.772064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132586, - "rtt_ms": 1.132586, + "rtt_ns": 1072041, + "rtt_ms": 1.072041, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:42.510979542Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:45.772284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276396, - "rtt_ms": 1.276396, + "rtt_ns": 1369833, + "rtt_ms": 1.369833, "checkpoint": 0, "vertex_from": "128", "vertex_to": "206", - "timestamp": "2025-11-27T01:23:42.510986572Z" + "timestamp": "2025-11-27T04:03:45.772333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278276, - "rtt_ms": 1.278276, + "rtt_ns": 1431291, + "rtt_ms": 1.431291, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:42.510996802Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:45.77266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409005, - "rtt_ms": 1.409005, + "rtt_ns": 1165167, + "rtt_ms": 1.165167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:42.511230241Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:03:45.772777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807824, - "rtt_ms": 1.807824, + "rtt_ns": 1583500, + "rtt_ms": 1.5835, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.511958799Z" + "vertex_to": "764", + "timestamp": "2025-11-27T04:03:45.773014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849314, - "rtt_ms": 1.849314, + "rtt_ns": 1429208, + "rtt_ms": 1.429208, "checkpoint": 0, "vertex_from": "128", "vertex_to": "398", - "timestamp": "2025-11-27T01:23:42.511991969Z" + "timestamp": "2025-11-27T04:03:45.773211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103974, - "rtt_ms": 2.103974, + "rtt_ns": 1753500, + "rtt_ms": 1.7535, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "311", - "timestamp": "2025-11-27T01:23:42.512036619Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:45.77323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209716, - "rtt_ms": 1.209716, + "rtt_ns": 1435750, + "rtt_ms": 1.43575, "checkpoint": 0, "vertex_from": "128", "vertex_to": "139", - "timestamp": "2025-11-27T01:23:42.512047239Z" + "timestamp": "2025-11-27T04:03:45.773246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325476, - "rtt_ms": 1.325476, + "rtt_ns": 1682583, + "rtt_ms": 1.682583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:42.512178679Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.773479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225217, - "rtt_ms": 1.225217, + "rtt_ns": 1571208, + "rtt_ms": 1.571208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:42.512206389Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:45.773636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241037, - "rtt_ms": 1.241037, + "rtt_ns": 1655667, + "rtt_ms": 1.655667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:42.512209029Z" + "timestamp": "2025-11-27T04:03:45.77394-08:00" }, { "operation": "add_edge", - "rtt_ns": 2046384, - "rtt_ms": 2.046384, + "rtt_ns": 1626042, + "rtt_ms": 1.626042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "285", - "timestamp": "2025-11-27T01:23:42.513046986Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:45.77396-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196444, - "rtt_ms": 2.196444, + "rtt_ns": 1237958, + "rtt_ms": 1.237958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:42.513185026Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:45.774253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971585, - "rtt_ms": 1.971585, + "rtt_ns": 1627125, + "rtt_ms": 1.627125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:42.513203316Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:45.774288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224507, - "rtt_ms": 1.224507, + "rtt_ns": 1568792, + "rtt_ms": 1.568792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "604", - "timestamp": "2025-11-27T01:23:42.513220296Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:03:45.774346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565946, - "rtt_ms": 1.565946, + "rtt_ns": 1137750, + "rtt_ms": 1.13775, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.513604605Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:03:45.774368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785425, - "rtt_ms": 1.785425, + "rtt_ns": 1371833, + "rtt_ms": 1.371833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.513746874Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.774619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698715, - "rtt_ms": 1.698715, + "rtt_ns": 1157583, + "rtt_ms": 1.157583, "checkpoint": 0, "vertex_from": "128", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:42.513747974Z" + "timestamp": "2025-11-27T04:03:45.774637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681636, - "rtt_ms": 1.681636, + "rtt_ns": 1452458, + "rtt_ms": 1.452458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.514730382Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.774664-08:00" }, { "operation": "add_edge", - "rtt_ns": 2559482, - "rtt_ms": 2.559482, + "rtt_ns": 1213167, + "rtt_ms": 1.213167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.514769951Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:45.77485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601635, - "rtt_ms": 1.601635, + "rtt_ns": 1230250, + "rtt_ms": 1.23025, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "141", - "timestamp": "2025-11-27T01:23:42.514789201Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:45.775171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2962431, - "rtt_ms": 2.962431, + "rtt_ns": 1225875, + "rtt_ms": 1.225875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:42.51514468Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.775186-08:00" }, { "operation": "add_edge", - "rtt_ns": 2964771, - "rtt_ms": 2.964771, + "rtt_ns": 1050959, + "rtt_ms": 1.050959, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.51517251Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:45.77542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969284, - "rtt_ms": 1.969284, + "rtt_ns": 1165667, + "rtt_ms": 1.165667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "677", - "timestamp": "2025-11-27T01:23:42.51517455Z" + "timestamp": "2025-11-27T04:03:45.775514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572435, - "rtt_ms": 1.572435, + "rtt_ns": 1653292, + "rtt_ms": 1.653292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.51517851Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.775907-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059004, - "rtt_ms": 2.059004, + "rtt_ns": 1635583, + "rtt_ms": 1.635583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:42.51528076Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:03:45.775927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734205, - "rtt_ms": 1.734205, + "rtt_ns": 1317333, + "rtt_ms": 1.317333, "checkpoint": 0, "vertex_from": "128", "vertex_to": "856", - "timestamp": "2025-11-27T01:23:42.515484459Z" + "timestamp": "2025-11-27T04:03:45.775984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859245, - "rtt_ms": 1.859245, + "rtt_ns": 1431666, + "rtt_ms": 1.431666, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.515607449Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.776051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163007, - "rtt_ms": 1.163007, + "rtt_ns": 1383250, + "rtt_ms": 1.38325, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "180", - "timestamp": "2025-11-27T01:23:42.516309617Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:45.776235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538786, - "rtt_ms": 1.538786, + "rtt_ns": 1612125, + "rtt_ms": 1.612125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:42.516330737Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.77625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643325, - "rtt_ms": 1.643325, + "rtt_ns": 1433125, + "rtt_ms": 1.433125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:42.516375477Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:45.77662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615806, - "rtt_ms": 1.615806, + "rtt_ns": 1507917, + "rtt_ms": 1.507917, "checkpoint": 0, "vertex_from": "128", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.516387247Z" + "timestamp": "2025-11-27T04:03:45.77668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227987, - "rtt_ms": 1.227987, + "rtt_ns": 1421542, + "rtt_ms": 1.421542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:42.516404027Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.776936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668605, - "rtt_ms": 1.668605, + "rtt_ns": 1614917, + "rtt_ms": 1.614917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.516958315Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:03:45.777037-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317643, - "rtt_ms": 2.317643, + "rtt_ns": 1441125, + "rtt_ms": 1.441125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.517491693Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:45.777349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133006, - "rtt_ms": 1.133006, + "rtt_ns": 1317125, + "rtt_ms": 1.317125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.517538223Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:45.777369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310596, - "rtt_ms": 1.310596, + "rtt_ns": 1559709, + "rtt_ms": 1.559709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:42.517643593Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.777487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2481723, - "rtt_ms": 2.481723, + "rtt_ns": 1421292, + "rtt_ms": 1.421292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.517661643Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:03:45.777656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438786, - "rtt_ms": 1.438786, + "rtt_ns": 1690292, + "rtt_ms": 1.690292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:42.517749823Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.777674-08:00" }, { "operation": "add_edge", - "rtt_ns": 2166494, - "rtt_ms": 2.166494, + "rtt_ns": 1437291, + "rtt_ms": 1.437291, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:42.517775593Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:45.777688-08:00" }, { "operation": "add_edge", - "rtt_ns": 2295284, - "rtt_ms": 2.295284, + "rtt_ns": 1401542, + "rtt_ms": 1.401542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:42.517783883Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:45.778083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417306, - "rtt_ms": 1.417306, + "rtt_ns": 1514125, + "rtt_ms": 1.514125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "184", - "timestamp": "2025-11-27T01:23:42.517806373Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:45.778137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433486, - "rtt_ms": 1.433486, + "rtt_ns": 1510750, + "rtt_ms": 1.51075, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:42.517810123Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:03:45.778451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625895, - "rtt_ms": 1.625895, + "rtt_ns": 1457375, + "rtt_ms": 1.457375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "970", - "timestamp": "2025-11-27T01:23:42.51858591Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:45.778496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107937, - "rtt_ms": 1.107937, + "rtt_ns": 1243250, + "rtt_ms": 1.24325, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.51860041Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:03:45.778901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328836, - "rtt_ms": 1.328836, + "rtt_ns": 1408417, + "rtt_ms": 1.408417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "142", - "timestamp": "2025-11-27T01:23:42.518973659Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:45.779097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488846, - "rtt_ms": 1.488846, + "rtt_ns": 1565583, + "rtt_ms": 1.565583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.519029129Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:45.779241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404676, - "rtt_ms": 1.404676, + "rtt_ns": 2076583, + "rtt_ms": 2.076583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:42.519068259Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.779446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354416, - "rtt_ms": 1.354416, + "rtt_ns": 1973292, + "rtt_ms": 1.973292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:42.519105469Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:45.779463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396185, - "rtt_ms": 1.396185, + "rtt_ns": 2130625, + "rtt_ms": 2.130625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.519203798Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:03:45.77948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489905, - "rtt_ms": 1.489905, + "rtt_ns": 1389125, + "rtt_ms": 1.389125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:42.519267038Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.779841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534945, - "rtt_ms": 1.534945, + "rtt_ns": 1790959, + "rtt_ms": 1.790959, "checkpoint": 0, "vertex_from": "128", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.519320038Z" + "timestamp": "2025-11-27T04:03:45.77993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535615, - "rtt_ms": 1.535615, + "rtt_ns": 1677459, + "rtt_ms": 1.677459, "checkpoint": 0, "vertex_from": "128", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:42.519347028Z" + "timestamp": "2025-11-27T04:03:45.780176-08:00" }, { "operation": "add_edge", - "rtt_ns": 819308, - "rtt_ms": 0.819308, + "rtt_ns": 2331458, + "rtt_ms": 2.331458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.519407388Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:45.780418-08:00" }, { "operation": "add_edge", - "rtt_ns": 852128, - "rtt_ms": 0.852128, + "rtt_ns": 1801958, + "rtt_ms": 1.801958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "632", - "timestamp": "2025-11-27T01:23:42.519454218Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:45.780705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263066, - "rtt_ms": 1.263066, + "rtt_ns": 1480417, + "rtt_ms": 1.480417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.520293445Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:45.780722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342536, - "rtt_ms": 1.342536, + "rtt_ns": 1636500, + "rtt_ms": 1.6365, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:42.520317625Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:03:45.780735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250686, - "rtt_ms": 1.250686, + "rtt_ns": 1194750, + "rtt_ms": 1.19475, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.520320285Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:45.781037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284376, - "rtt_ms": 1.284376, + "rtt_ns": 1698250, + "rtt_ms": 1.69825, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:42.520391395Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.781146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584966, - "rtt_ms": 1.584966, + "rtt_ns": 1803167, + "rtt_ms": 1.803167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:42.520789874Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.781267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523326, - "rtt_ms": 1.523326, + "rtt_ns": 1422541, + "rtt_ms": 1.422541, "checkpoint": 0, "vertex_from": "128", "vertex_to": "354", - "timestamp": "2025-11-27T01:23:42.520791724Z" + "timestamp": "2025-11-27T04:03:45.781353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718535, - "rtt_ms": 1.718535, + "rtt_ns": 1914292, + "rtt_ms": 1.914292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "590", - "timestamp": "2025-11-27T01:23:42.521039883Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:45.781395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618815, - "rtt_ms": 1.618815, + "rtt_ns": 1331208, + "rtt_ms": 1.331208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:42.521074323Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:45.781752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752035, - "rtt_ms": 1.752035, + "rtt_ns": 1595500, + "rtt_ms": 1.5955, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:42.521100533Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:03:45.781772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860064, - "rtt_ms": 1.860064, + "rtt_ns": 1356709, + "rtt_ms": 1.356709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:42.521269152Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:45.782079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060607, - "rtt_ms": 1.060607, + "rtt_ns": 1389000, + "rtt_ms": 1.389, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:42.521454762Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:45.782094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271337, - "rtt_ms": 1.271337, + "rtt_ns": 1525083, + "rtt_ms": 1.525083, "checkpoint": 0, "vertex_from": "128", "vertex_to": "202", - "timestamp": "2025-11-27T01:23:42.521566652Z" + "timestamp": "2025-11-27T04:03:45.782263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259817, - "rtt_ms": 1.259817, + "rtt_ns": 1343167, + "rtt_ms": 1.343167, "checkpoint": 0, "vertex_from": "128", "vertex_to": "345", - "timestamp": "2025-11-27T01:23:42.521579792Z" + "timestamp": "2025-11-27T04:03:45.782381-08:00" }, { "operation": "add_edge", - "rtt_ns": 887307, - "rtt_ms": 0.887307, + "rtt_ns": 1536084, + "rtt_ms": 1.536084, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:42.521678521Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:03:45.782682-08:00" }, { "operation": "add_edge", - "rtt_ns": 911637, - "rtt_ms": 0.911637, + "rtt_ns": 1364958, + "rtt_ms": 1.364958, "checkpoint": 0, "vertex_from": "128", "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.521704471Z" + "timestamp": "2025-11-27T04:03:45.782761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384026, - "rtt_ms": 1.384026, + "rtt_ns": 1519125, + "rtt_ms": 1.519125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:42.521706051Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:45.782789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161147, - "rtt_ms": 1.161147, + "rtt_ns": 1511500, + "rtt_ms": 1.5115, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "817", - "timestamp": "2025-11-27T01:23:42.52226285Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:03:45.782866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268226, - "rtt_ms": 1.268226, + "rtt_ns": 1309667, + "rtt_ms": 1.309667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.522343499Z" + "timestamp": "2025-11-27T04:03:45.783084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033187, - "rtt_ms": 1.033187, + "rtt_ns": 1376041, + "rtt_ms": 1.376041, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:42.522489159Z" + "vertex_to": "910", + "timestamp": "2025-11-27T04:03:45.783129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470446, - "rtt_ms": 1.470446, + "rtt_ns": 1220708, + "rtt_ms": 1.220708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "910", - "timestamp": "2025-11-27T01:23:42.522511409Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.783316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508796, - "rtt_ms": 1.508796, + "rtt_ns": 1258917, + "rtt_ms": 1.258917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.522779448Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:03:45.783339-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1277916, + "rtt_ms": 1.277916, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:45.783543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706395, - "rtt_ms": 1.706395, + "rtt_ns": 1443666, + "rtt_ms": 1.443666, "checkpoint": 0, "vertex_from": "128", "vertex_to": "177", - "timestamp": "2025-11-27T01:23:42.523274047Z" + "timestamp": "2025-11-27T04:03:45.783826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702016, - "rtt_ms": 1.702016, + "rtt_ns": 1408667, + "rtt_ms": 1.408667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:42.523381817Z" + "timestamp": "2025-11-27T04:03:45.784171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689206, - "rtt_ms": 1.689206, + "rtt_ns": 1504958, + "rtt_ms": 1.504958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "460", - "timestamp": "2025-11-27T01:23:42.523397087Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.784188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692916, - "rtt_ms": 1.692916, + "rtt_ns": 1698167, + "rtt_ms": 1.698167, "checkpoint": 0, "vertex_from": "128", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.523398767Z" + "timestamp": "2025-11-27T04:03:45.784489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826294, - "rtt_ms": 1.826294, + "rtt_ns": 1659208, + "rtt_ms": 1.659208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.523407076Z" + "vertex_to": "460", + "timestamp": "2025-11-27T04:03:45.784527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257606, - "rtt_ms": 1.257606, + "rtt_ns": 1461167, + "rtt_ms": 1.461167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "684", - "timestamp": "2025-11-27T01:23:42.523770655Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:45.784592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518965, - "rtt_ms": 1.518965, + "rtt_ns": 1545959, + "rtt_ms": 1.545959, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:42.523783455Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:45.784863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060717, - "rtt_ms": 1.060717, + "rtt_ns": 1782875, + "rtt_ms": 1.782875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:42.523842495Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:45.784868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368436, - "rtt_ms": 1.368436, + "rtt_ns": 1533083, + "rtt_ms": 1.533083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:42.523858605Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:03:45.784875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541026, - "rtt_ms": 1.541026, + "rtt_ns": 1128083, + "rtt_ms": 1.128083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.523885505Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:45.784955-08:00" }, { "operation": "add_edge", - "rtt_ns": 779338, - "rtt_ms": 0.779338, + "rtt_ns": 1527583, + "rtt_ms": 1.527583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:42.524054925Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:45.785071-08:00" }, { "operation": "add_edge", - "rtt_ns": 704897, - "rtt_ms": 0.704897, + "rtt_ns": 1209125, + "rtt_ms": 1.209125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.524104934Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:45.785398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149226, - "rtt_ms": 1.149226, + "rtt_ns": 1246333, + "rtt_ms": 1.246333, "checkpoint": 0, "vertex_from": "128", "vertex_to": "773", - "timestamp": "2025-11-27T01:23:42.524532713Z" + "timestamp": "2025-11-27T04:03:45.785418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305827, - "rtt_ms": 1.305827, + "rtt_ns": 1151375, + "rtt_ms": 1.151375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "197", - "timestamp": "2025-11-27T01:23:42.524714043Z" + "timestamp": "2025-11-27T04:03:45.785681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334806, - "rtt_ms": 1.334806, + "rtt_ns": 1292417, + "rtt_ms": 1.292417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.524732933Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:45.785886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727175, - "rtt_ms": 1.727175, + "rtt_ns": 1569125, + "rtt_ms": 1.569125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:42.52557064Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.78606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820435, - "rtt_ms": 1.820435, + "rtt_ns": 1415459, + "rtt_ms": 1.415459, "checkpoint": 0, "vertex_from": "128", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:42.525605Z" + "timestamp": "2025-11-27T04:03:45.78628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877265, - "rtt_ms": 1.877265, + "rtt_ns": 1588709, + "rtt_ms": 1.588709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:42.52564868Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:45.786465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927564, - "rtt_ms": 1.927564, + "rtt_ns": 1612584, + "rtt_ms": 1.612584, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:42.525813709Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:45.786481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725075, - "rtt_ms": 1.725075, + "rtt_ns": 1649708, + "rtt_ms": 1.649708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "167", - "timestamp": "2025-11-27T01:23:42.525831539Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:45.786606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976144, - "rtt_ms": 1.976144, + "rtt_ns": 1569500, + "rtt_ms": 1.5695, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:42.525835829Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:45.786642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2385532, - "rtt_ms": 2.385532, + "rtt_ns": 1303292, + "rtt_ms": 1.303292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:42.526444177Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:45.786722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978914, - "rtt_ms": 1.978914, + "rtt_ns": 1389250, + "rtt_ms": 1.38925, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:42.526514887Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:03:45.786788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826914, - "rtt_ms": 1.826914, + "rtt_ns": 1534167, + "rtt_ms": 1.534167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.526561267Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:45.787215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927354, - "rtt_ms": 1.927354, + "rtt_ns": 1411167, + "rtt_ms": 1.411167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:42.526644017Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.7873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137887, - "rtt_ms": 1.137887, + "rtt_ns": 1421750, + "rtt_ms": 1.42175, "checkpoint": 0, "vertex_from": "128", "vertex_to": "195", - "timestamp": "2025-11-27T01:23:42.526709667Z" + "timestamp": "2025-11-27T04:03:45.787483-08:00" }, { "operation": "add_edge", - "rtt_ns": 950897, - "rtt_ms": 0.950897, + "rtt_ns": 1442417, + "rtt_ms": 1.442417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "174", - "timestamp": "2025-11-27T01:23:42.526787906Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:45.787724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233116, - "rtt_ms": 1.233116, + "rtt_ns": 1398875, + "rtt_ms": 1.398875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:42.526840476Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:45.787865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109387, - "rtt_ms": 1.109387, + "rtt_ns": 1386041, + "rtt_ms": 1.386041, "checkpoint": 0, "vertex_from": "128", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.526924056Z" + "timestamp": "2025-11-27T04:03:45.787868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350746, - "rtt_ms": 1.350746, + "rtt_ns": 1418500, + "rtt_ms": 1.4185, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:42.527000516Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:45.788208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194547, - "rtt_ms": 1.194547, + "rtt_ns": 1727708, + "rtt_ms": 1.727708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:42.527026926Z" + "vertex_to": "174", + "timestamp": "2025-11-27T04:03:45.788371-08:00" }, { "operation": "add_edge", - "rtt_ns": 970727, - "rtt_ms": 0.970727, + "rtt_ns": 1756459, + "rtt_ms": 1.756459, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:42.527615584Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:45.78848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134447, - "rtt_ms": 1.134447, + "rtt_ns": 1958333, + "rtt_ms": 1.958333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "182", - "timestamp": "2025-11-27T01:23:42.527696594Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:45.788566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399746, - "rtt_ms": 1.399746, + "rtt_ns": 1087208, + "rtt_ms": 1.087208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:42.527844833Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:03:45.78857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360086, - "rtt_ms": 1.360086, + "rtt_ns": 1377250, + "rtt_ms": 1.37725, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:42.527875873Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:03:45.788594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314786, - "rtt_ms": 1.314786, + "rtt_ns": 1371542, + "rtt_ms": 1.371542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:42.528024983Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:45.788672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580206, - "rtt_ms": 1.580206, + "rtt_ns": 1458459, + "rtt_ms": 1.458459, "checkpoint": 0, "vertex_from": "128", "vertex_to": "526", - "timestamp": "2025-11-27T01:23:42.528369002Z" + "timestamp": "2025-11-27T04:03:45.789183-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1329500, + "rtt_ms": 1.3295, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:45.789198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620906, - "rtt_ms": 1.620906, + "rtt_ns": 1440334, + "rtt_ms": 1.440334, "checkpoint": 0, "vertex_from": "128", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:42.528462262Z" + "timestamp": "2025-11-27T04:03:45.789306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661445, - "rtt_ms": 1.661445, + "rtt_ns": 1357042, + "rtt_ms": 1.357042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:42.528586051Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.789567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957944, - "rtt_ms": 1.957944, + "rtt_ns": 1114417, + "rtt_ms": 1.114417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.52898574Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.789681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465846, - "rtt_ms": 1.465846, + "rtt_ns": 1330000, + "rtt_ms": 1.33, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:42.52908286Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:45.789702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729305, - "rtt_ms": 1.729305, + "rtt_ns": 1404834, + "rtt_ms": 1.404834, "checkpoint": 0, "vertex_from": "128", "vertex_to": "708", - "timestamp": "2025-11-27T01:23:42.529606078Z" + "timestamp": "2025-11-27T04:03:45.789999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2654432, - "rtt_ms": 2.654432, + "rtt_ns": 1449708, + "rtt_ms": 1.449708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.529655888Z" + "vertex_to": "874", + "timestamp": "2025-11-27T04:03:45.790021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984114, - "rtt_ms": 1.984114, + "rtt_ns": 1588875, + "rtt_ms": 1.588875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.529681818Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:45.790262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219116, - "rtt_ms": 1.219116, + "rtt_ns": 1796375, + "rtt_ms": 1.796375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:42.529682358Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:45.790278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855405, - "rtt_ms": 1.855405, + "rtt_ns": 2058167, + "rtt_ms": 2.058167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "874", - "timestamp": "2025-11-27T01:23:42.529701848Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:45.791257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290687, - "rtt_ms": 1.290687, + "rtt_ns": 1967250, + "rtt_ms": 1.96725, "checkpoint": 0, "vertex_from": "128", "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.529877688Z" + "timestamp": "2025-11-27T04:03:45.791274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893095, - "rtt_ms": 1.893095, + "rtt_ns": 2104583, + "rtt_ms": 2.104583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.529919168Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:03:45.791288-08:00" }, { "operation": "add_edge", - "rtt_ns": 2061384, - "rtt_ms": 2.061384, + "rtt_ns": 1860500, + "rtt_ms": 1.8605, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "745", - "timestamp": "2025-11-27T01:23:42.530431666Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:45.791563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455136, - "rtt_ms": 1.455136, + "rtt_ns": 1560625, + "rtt_ms": 1.560625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "614", - "timestamp": "2025-11-27T01:23:42.530442176Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.791583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815355, - "rtt_ms": 1.815355, + "rtt_ns": 1564541, + "rtt_ms": 1.564541, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:42.530899045Z" + "vertex_to": "220", + "timestamp": "2025-11-27T04:03:45.791844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210046, - "rtt_ms": 1.210046, + "rtt_ns": 2310375, + "rtt_ms": 2.310375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:42.531089034Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:03:45.79188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411386, - "rtt_ms": 1.411386, + "rtt_ns": 1719166, + "rtt_ms": 1.719166, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "220", - "timestamp": "2025-11-27T01:23:42.531114514Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:45.791982-08:00" }, { "operation": "add_edge", - "rtt_ns": 759928, - "rtt_ms": 0.759928, + "rtt_ns": 2197917, + "rtt_ms": 2.197917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:42.531192764Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.792198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509816, - "rtt_ms": 1.509816, + "rtt_ns": 2532292, + "rtt_ms": 2.532292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.531194084Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:45.792216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602266, - "rtt_ms": 1.602266, + "rtt_ns": 1213416, + "rtt_ms": 1.213416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:42.531209944Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:45.792778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787284, - "rtt_ms": 1.787284, + "rtt_ns": 1744375, + "rtt_ms": 1.744375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "834", - "timestamp": "2025-11-27T01:23:42.531707292Z" + "timestamp": "2025-11-27T04:03:45.793019-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094714, - "rtt_ms": 2.094714, + "rtt_ns": 1798000, + "rtt_ms": 1.798, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:42.531779292Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:45.793087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135757, - "rtt_ms": 1.135757, + "rtt_ns": 1522667, + "rtt_ms": 1.522667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "338", - "timestamp": "2025-11-27T01:23:42.532036332Z" + "timestamp": "2025-11-27T04:03:45.793106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2396433, - "rtt_ms": 2.396433, + "rtt_ns": 1490958, + "rtt_ms": 1.490958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.532053211Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.793335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627885, - "rtt_ms": 1.627885, + "rtt_ns": 2095292, + "rtt_ms": 2.095292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:42.532071111Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:45.793354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125067, - "rtt_ms": 1.125067, + "rtt_ns": 1375125, + "rtt_ms": 1.375125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.532215541Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:45.793358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613245, - "rtt_ms": 1.613245, + "rtt_ns": 1519542, + "rtt_ms": 1.519542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.532808339Z" + "vertex_to": "798", + "timestamp": "2025-11-27T04:03:45.793401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672685, - "rtt_ms": 1.672685, + "rtt_ns": 1269292, + "rtt_ms": 1.269292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:42.532883779Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:45.793468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112687, - "rtt_ms": 1.112687, + "rtt_ns": 1328625, + "rtt_ms": 1.328625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:42.532893419Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:45.793545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208447, - "rtt_ms": 1.208447, + "rtt_ns": 1175209, + "rtt_ms": 1.175209, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:42.532916729Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:45.794283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725735, - "rtt_ms": 1.725735, + "rtt_ns": 1521375, + "rtt_ms": 1.521375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:42.532919459Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:45.7943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826825, - "rtt_ms": 1.826825, + "rtt_ns": 1569416, + "rtt_ms": 1.569416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "798", - "timestamp": "2025-11-27T01:23:42.532943109Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:45.794589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654445, - "rtt_ms": 1.654445, + "rtt_ns": 1520167, + "rtt_ms": 1.520167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:42.533726486Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:45.794608-08:00" }, { "operation": "add_edge", - "rtt_ns": 934367, - "rtt_ms": 0.934367, + "rtt_ns": 1387250, + "rtt_ms": 1.38725, "checkpoint": 0, "vertex_from": "128", "vertex_to": "613", - "timestamp": "2025-11-27T01:23:42.533744536Z" + "timestamp": "2025-11-27T04:03:45.794746-08:00" }, { "operation": "add_edge", - "rtt_ns": 919947, - "rtt_ms": 0.919947, + "rtt_ns": 1257083, + "rtt_ms": 1.257083, "checkpoint": 0, "vertex_from": "128", "vertex_to": "846", - "timestamp": "2025-11-27T01:23:42.533837916Z" + "timestamp": "2025-11-27T04:03:45.794803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061917, - "rtt_ms": 1.061917, + "rtt_ns": 1484417, + "rtt_ms": 1.484417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.533956756Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:45.794821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788685, - "rtt_ms": 1.788685, + "rtt_ns": 1492000, + "rtt_ms": 1.492, "checkpoint": 0, "vertex_from": "128", "vertex_to": "899", - "timestamp": "2025-11-27T01:23:42.534005236Z" + "timestamp": "2025-11-27T04:03:45.794849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973734, - "rtt_ms": 1.973734, + "rtt_ns": 1480542, + "rtt_ms": 1.480542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:42.534011146Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1989625, - "rtt_ms": 1.989625, - "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:42.534043906Z" + "vertex_to": "682", + "timestamp": "2025-11-27T04:03:45.794885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721315, - "rtt_ms": 1.721315, + "rtt_ns": 1464958, + "rtt_ms": 1.464958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "682", - "timestamp": "2025-11-27T01:23:42.534606804Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:45.794934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770505, - "rtt_ms": 1.770505, + "rtt_ns": 1448916, + "rtt_ms": 1.448916, "checkpoint": 0, "vertex_from": "128", "vertex_to": "852", - "timestamp": "2025-11-27T01:23:42.534715054Z" + "timestamp": "2025-11-27T04:03:45.79575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882524, - "rtt_ms": 1.882524, + "rtt_ns": 1484708, + "rtt_ms": 1.484708, "checkpoint": 0, "vertex_from": "128", "vertex_to": "307", - "timestamp": "2025-11-27T01:23:42.534803173Z" + "timestamp": "2025-11-27T04:03:45.795768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428506, - "rtt_ms": 1.428506, + "rtt_ns": 1403875, + "rtt_ms": 1.403875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "169", - "timestamp": "2025-11-27T01:23:42.535156362Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:45.796013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408126, - "rtt_ms": 1.408126, + "rtt_ns": 1323750, + "rtt_ms": 1.32375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "226", - "timestamp": "2025-11-27T01:23:42.535247372Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1337626, - "rtt_ms": 1.337626, - "checkpoint": 0, - "vertex_from": "129", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.535349852Z" + "timestamp": "2025-11-27T04:03:45.796073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604266, - "rtt_ms": 1.604266, + "rtt_ns": 1664667, + "rtt_ms": 1.664667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:42.535350052Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:03:45.796255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471495, - "rtt_ms": 1.471495, + "rtt_ns": 2063750, + "rtt_ms": 2.06375, "checkpoint": 0, "vertex_from": "129", "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.535429671Z" + "timestamp": "2025-11-27T04:03:45.796868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456695, - "rtt_ms": 1.456695, + "rtt_ns": 2089459, + "rtt_ms": 2.089459, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.535462771Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:45.796976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441675, - "rtt_ms": 1.441675, + "rtt_ns": 2204083, + "rtt_ms": 2.204083, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:42.535486421Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.79714-08:00" }, { "operation": "add_edge", - "rtt_ns": 784017, - "rtt_ms": 0.784017, + "rtt_ns": 2388625, + "rtt_ms": 2.388625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:42.535500231Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.797213-08:00" }, { "operation": "add_edge", - "rtt_ns": 745768, - "rtt_ms": 0.745768, + "rtt_ns": 2416500, + "rtt_ms": 2.4165, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.535549811Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.797267-08:00" }, { "operation": "add_edge", - "rtt_ns": 994357, - "rtt_ms": 0.994357, + "rtt_ns": 1949833, + "rtt_ms": 1.949833, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.535602411Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:45.797701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074707, - "rtt_ms": 1.074707, + "rtt_ns": 1750166, + "rtt_ms": 1.750166, "checkpoint": 0, "vertex_from": "129", "vertex_to": "790", - "timestamp": "2025-11-27T01:23:42.536231829Z" + "timestamp": "2025-11-27T04:03:45.797766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780114, - "rtt_ms": 1.780114, + "rtt_ns": 1510625, + "rtt_ms": 1.510625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.537131106Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.797768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915574, - "rtt_ms": 1.915574, + "rtt_ns": 1769833, + "rtt_ms": 1.769833, "checkpoint": 0, "vertex_from": "129", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.537164106Z" + "timestamp": "2025-11-27T04:03:45.797844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784745, - "rtt_ms": 1.784745, + "rtt_ns": 2075416, + "rtt_ms": 2.075416, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:42.537215246Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.797845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732965, - "rtt_ms": 1.732965, + "rtt_ns": 1376792, + "rtt_ms": 1.376792, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.537220166Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.798246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884364, - "rtt_ms": 1.884364, + "rtt_ns": 1209917, + "rtt_ms": 1.209917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.537235306Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:45.798424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744355, - "rtt_ms": 1.744355, + "rtt_ns": 1301250, + "rtt_ms": 1.30125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.537246186Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.798444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702305, - "rtt_ms": 1.702305, + "rtt_ns": 1433542, + "rtt_ms": 1.433542, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.537305766Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.798702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000124, - "rtt_ms": 2.000124, + "rtt_ns": 1775375, + "rtt_ms": 1.775375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.537463935Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:45.798753-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177113, - "rtt_ms": 2.177113, + "rtt_ns": 1144917, + "rtt_ms": 1.144917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "488", - "timestamp": "2025-11-27T01:23:42.538410182Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.798992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2947021, - "rtt_ms": 2.947021, + "rtt_ns": 1493458, + "rtt_ms": 1.493458, "checkpoint": 0, "vertex_from": "129", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.538497802Z" + "timestamp": "2025-11-27T04:03:45.799196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520996, - "rtt_ms": 1.520996, + "rtt_ns": 1361791, + "rtt_ms": 1.361791, "checkpoint": 0, "vertex_from": "129", "vertex_to": "750", - "timestamp": "2025-11-27T01:23:42.538653692Z" + "timestamp": "2025-11-27T04:03:45.799207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506056, - "rtt_ms": 1.506056, + "rtt_ns": 1500333, + "rtt_ms": 1.500333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.538672412Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.799268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527945, - "rtt_ms": 1.527945, + "rtt_ns": 1501917, + "rtt_ms": 1.501917, + "checkpoint": 0, + "vertex_from": "129", + "vertex_to": "488", + "timestamp": "2025-11-27T04:03:45.799271-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1222041, + "rtt_ms": 1.222041, "checkpoint": 0, "vertex_from": "129", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.538744301Z" + "timestamp": "2025-11-27T04:03:45.799469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572415, - "rtt_ms": 1.572415, + "rtt_ns": 935541, + "rtt_ms": 0.935541, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:42.538793591Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.799689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625205, - "rtt_ms": 1.625205, + "rtt_ns": 1262166, + "rtt_ms": 1.262166, "checkpoint": 0, "vertex_from": "129", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.538862571Z" + "timestamp": "2025-11-27T04:03:45.799706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621105, - "rtt_ms": 1.621105, + "rtt_ns": 1155958, + "rtt_ms": 1.155958, "checkpoint": 0, "vertex_from": "129", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.538868581Z" + "timestamp": "2025-11-27T04:03:45.799859-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014434, - "rtt_ms": 2.014434, + "rtt_ns": 1620917, + "rtt_ms": 1.620917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.53932246Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:45.800046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064887, - "rtt_ms": 1.064887, + "rtt_ns": 1163125, + "rtt_ms": 1.163125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.539563569Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.800635-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101484, - "rtt_ms": 2.101484, + "rtt_ns": 1619458, + "rtt_ms": 1.619458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.539566719Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.800829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213117, - "rtt_ms": 1.213117, + "rtt_ns": 1771708, + "rtt_ms": 1.771708, "checkpoint": 0, "vertex_from": "129", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.539624139Z" + "timestamp": "2025-11-27T04:03:45.800969-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1988417, + "rtt_ms": 1.988417, + "checkpoint": 0, + "vertex_from": "129", + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.800982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845375, - "rtt_ms": 1.845375, + "rtt_ns": 1374667, + "rtt_ms": 1.374667, "checkpoint": 0, "vertex_from": "129", "vertex_to": "724", - "timestamp": "2025-11-27T01:23:42.540709206Z" + "timestamp": "2025-11-27T04:03:45.801082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839365, - "rtt_ms": 1.839365, + "rtt_ns": 1866375, + "rtt_ms": 1.866375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.540709186Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.801136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925915, - "rtt_ms": 1.925915, + "rtt_ns": 1874042, + "rtt_ms": 1.874042, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.540720676Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.801147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095774, - "rtt_ms": 2.095774, + "rtt_ns": 1550750, + "rtt_ms": 1.55075, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.540751516Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.80124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009035, - "rtt_ms": 2.009035, + "rtt_ns": 1513625, + "rtt_ms": 1.513625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.540754966Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.801373-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100004, - "rtt_ms": 2.100004, + "rtt_ns": 1613416, + "rtt_ms": 1.613416, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.540773676Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:03:45.802772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681335, - "rtt_ms": 1.681335, + "rtt_ns": 2146667, + "rtt_ms": 2.146667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.541005025Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:45.802783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451646, - "rtt_ms": 1.451646, + "rtt_ns": 1550959, + "rtt_ms": 1.550959, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "444", - "timestamp": "2025-11-27T01:23:42.541076885Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.802792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541866, - "rtt_ms": 1.541866, + "rtt_ns": 1418333, + "rtt_ms": 1.418333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:42.541109515Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:45.802792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700655, - "rtt_ms": 1.700655, + "rtt_ns": 2767459, + "rtt_ms": 2.767459, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:42.541265024Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:45.802816-08:00" }, { "operation": "add_edge", - "rtt_ns": 764738, - "rtt_ms": 0.764738, + "rtt_ns": 1843208, + "rtt_ms": 1.843208, "checkpoint": 0, "vertex_from": "129", "vertex_to": "281", - "timestamp": "2025-11-27T01:23:42.541477664Z" + "timestamp": "2025-11-27T04:03:45.802827-08:00" }, { "operation": "add_edge", - "rtt_ns": 822067, - "rtt_ms": 0.822067, + "rtt_ns": 1877708, + "rtt_ms": 1.877708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.541597693Z" + "vertex_to": "444", + "timestamp": "2025-11-27T04:03:45.802848-08:00" }, { "operation": "add_edge", - "rtt_ns": 904767, - "rtt_ms": 0.904767, + "rtt_ns": 1784667, + "rtt_ms": 1.784667, "checkpoint": 0, "vertex_from": "129", "vertex_to": "424", - "timestamp": "2025-11-27T01:23:42.541618243Z" + "timestamp": "2025-11-27T04:03:45.802868-08:00" }, { "operation": "add_edge", - "rtt_ns": 866857, - "rtt_ms": 0.866857, + "rtt_ns": 2046458, + "rtt_ms": 2.046458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.541623303Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:45.802878-08:00" }, { "operation": "add_edge", - "rtt_ns": 968807, - "rtt_ms": 0.968807, + "rtt_ns": 1743750, + "rtt_ms": 1.74375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "425", - "timestamp": "2025-11-27T01:23:42.541722383Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:45.80288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026237, - "rtt_ms": 1.026237, + "rtt_ns": 1336917, + "rtt_ms": 1.336917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:42.541751723Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:45.804219-08:00" }, { "operation": "add_edge", - "rtt_ns": 819378, - "rtt_ms": 0.819378, + "rtt_ns": 1388625, + "rtt_ms": 1.388625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "227", - "timestamp": "2025-11-27T01:23:42.541835143Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.804238-08:00" }, { "operation": "add_edge", - "rtt_ns": 783198, - "rtt_ms": 0.783198, + "rtt_ns": 1384125, + "rtt_ms": 1.384125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:42.541862173Z" + "vertex_to": "371", + "timestamp": "2025-11-27T04:03:45.804253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001887, - "rtt_ms": 1.001887, + "rtt_ns": 1390542, + "rtt_ms": 1.390542, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.542268701Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:45.80427-08:00" }, { "operation": "add_edge", - "rtt_ns": 950218, - "rtt_ms": 0.950218, + "rtt_ns": 1502208, + "rtt_ms": 1.502208, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.542569741Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:45.804286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096297, - "rtt_ms": 1.096297, + "rtt_ns": 1540542, + "rtt_ms": 1.540542, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:42.542575121Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.804369-08:00" }, { "operation": "add_edge", - "rtt_ns": 928917, - "rtt_ms": 0.928917, + "rtt_ns": 1580084, + "rtt_ms": 1.580084, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:42.54265255Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.804373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560165, - "rtt_ms": 1.560165, + "rtt_ns": 1776750, + "rtt_ms": 1.77675, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.54267086Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:03:45.804549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085697, - "rtt_ms": 1.085697, + "rtt_ns": 1735541, + "rtt_ms": 1.735541, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.54268585Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:45.804555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063047, - "rtt_ms": 1.063047, + "rtt_ns": 1773583, + "rtt_ms": 1.773583, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "371", - "timestamp": "2025-11-27T01:23:42.5426893Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.804566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543396, - "rtt_ms": 1.543396, + "rtt_ns": 1340584, + "rtt_ms": 1.340584, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:42.543296809Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.805594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674845, - "rtt_ms": 1.674845, + "rtt_ns": 1262375, + "rtt_ms": 1.262375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "865", - "timestamp": "2025-11-27T01:23:42.543538428Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.805637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703045, - "rtt_ms": 1.703045, + "rtt_ns": 1432958, + "rtt_ms": 1.432958, "checkpoint": 0, "vertex_from": "129", "vertex_to": "730", - "timestamp": "2025-11-27T01:23:42.543539668Z" + "timestamp": "2025-11-27T04:03:45.805653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282197, - "rtt_ms": 1.282197, + "rtt_ns": 1472791, + "rtt_ms": 1.472791, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.543552258Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:45.80576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339246, - "rtt_ms": 1.339246, + "rtt_ns": 1548292, + "rtt_ms": 1.548292, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:42.543916817Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:45.805819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349486, - "rtt_ms": 1.349486, + "rtt_ns": 1590167, + "rtt_ms": 1.590167, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:42.543921507Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:03:45.805829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401196, - "rtt_ms": 1.401196, + "rtt_ns": 1538792, + "rtt_ms": 1.538792, "checkpoint": 0, "vertex_from": "129", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.544055996Z" + "timestamp": "2025-11-27T04:03:45.805908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416056, - "rtt_ms": 1.416056, + "rtt_ns": 1383250, + "rtt_ms": 1.38325, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:42.544106636Z" + "vertex_to": "728", + "timestamp": "2025-11-27T04:03:45.805951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479506, - "rtt_ms": 1.479506, + "rtt_ns": 1403917, + "rtt_ms": 1.403917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.544151476Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:45.805954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499896, - "rtt_ms": 1.499896, + "rtt_ns": 1417708, + "rtt_ms": 1.417708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.544187196Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:03:45.805973-08:00" }, { "operation": "add_edge", - "rtt_ns": 905417, - "rtt_ms": 0.905417, + "rtt_ns": 1666416, + "rtt_ms": 1.666416, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "728", - "timestamp": "2025-11-27T01:23:42.544204006Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:45.807622-08:00" }, { "operation": "add_edge", - "rtt_ns": 766068, - "rtt_ms": 0.766068, + "rtt_ns": 1670875, + "rtt_ms": 1.670875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.544307096Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.807645-08:00" }, { "operation": "add_edge", - "rtt_ns": 807407, - "rtt_ms": 0.807407, + "rtt_ns": 2058917, + "rtt_ms": 2.058917, "checkpoint": 0, "vertex_from": "129", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.544346795Z" + "timestamp": "2025-11-27T04:03:45.807654-08:00" }, { "operation": "add_edge", - "rtt_ns": 798187, - "rtt_ms": 0.798187, + "rtt_ns": 1851375, + "rtt_ms": 1.851375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:42.544353055Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:03:45.807803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018567, - "rtt_ms": 1.018567, + "rtt_ns": 2165125, + "rtt_ms": 2.165125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.544936594Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:45.807819-08:00" }, { "operation": "add_edge", - "rtt_ns": 803028, - "rtt_ms": 0.803028, + "rtt_ns": 2004666, + "rtt_ms": 2.004666, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "849", - "timestamp": "2025-11-27T01:23:42.544956064Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:45.807835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051267, - "rtt_ms": 1.051267, + "rtt_ns": 2024958, + "rtt_ms": 2.024958, "checkpoint": 0, "vertex_from": "129", "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.544974334Z" + "timestamp": "2025-11-27T04:03:45.807845-08:00" }, { "operation": "add_edge", - "rtt_ns": 952528, - "rtt_ms": 0.952528, + "rtt_ns": 2139458, + "rtt_ms": 2.139458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:42.545009634Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.807901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486226, - "rtt_ms": 1.486226, + "rtt_ns": 2140125, + "rtt_ms": 2.140125, "checkpoint": 0, "vertex_from": "129", "vertex_to": "604", - "timestamp": "2025-11-27T01:23:42.545595622Z" + "timestamp": "2025-11-27T04:03:45.80805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595555, - "rtt_ms": 1.595555, + "rtt_ns": 2440875, + "rtt_ms": 2.440875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.545800481Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.808078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473016, - "rtt_ms": 1.473016, + "rtt_ns": 1291166, + "rtt_ms": 1.291166, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "969", - "timestamp": "2025-11-27T01:23:42.545827101Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.809095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556355, - "rtt_ms": 1.556355, + "rtt_ns": 1468459, + "rtt_ms": 1.468459, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "713", - "timestamp": "2025-11-27T01:23:42.545864901Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:03:45.809114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683495, - "rtt_ms": 1.683495, + "rtt_ns": 1508667, + "rtt_ms": 1.508667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:42.545872281Z" + "vertex_to": "969", + "timestamp": "2025-11-27T04:03:45.809164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526116, - "rtt_ms": 1.526116, + "rtt_ns": 1572666, + "rtt_ms": 1.572666, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "131", - "timestamp": "2025-11-27T01:23:42.545874241Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:03:45.809196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046437, - "rtt_ms": 1.046437, + "rtt_ns": 1571625, + "rtt_ms": 1.571625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.546003901Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:45.809418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213316, - "rtt_ms": 1.213316, + "rtt_ns": 1700209, + "rtt_ms": 1.700209, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.54615123Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:45.809537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191796, - "rtt_ms": 1.191796, + "rtt_ns": 1683166, + "rtt_ms": 1.683166, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.54616849Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.809733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236156, - "rtt_ms": 1.236156, + "rtt_ns": 1964708, + "rtt_ms": 1.964708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:42.54624698Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:45.809867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151096, - "rtt_ms": 1.151096, + "rtt_ns": 2026708, + "rtt_ms": 2.026708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:42.546747988Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.810106-08:00" }, { "operation": "add_edge", - "rtt_ns": 996787, - "rtt_ms": 0.996787, + "rtt_ns": 2303500, + "rtt_ms": 2.3035, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:42.546862728Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:45.810124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079667, - "rtt_ms": 1.079667, + "rtt_ns": 1358625, + "rtt_ms": 1.358625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.546881348Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:45.810464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068217, - "rtt_ms": 1.068217, + "rtt_ns": 1492625, + "rtt_ms": 1.492625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.546943998Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:45.810607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133457, - "rtt_ms": 1.133457, + "rtt_ns": 1554667, + "rtt_ms": 1.554667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.546961298Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:45.810752-08:00" }, { "operation": "add_edge", - "rtt_ns": 966077, - "rtt_ms": 0.966077, + "rtt_ns": 1021333, + "rtt_ms": 1.021333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:42.546971058Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.810756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210306, - "rtt_ms": 1.210306, + "rtt_ns": 1686708, + "rtt_ms": 1.686708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:42.547084047Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.810851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469006, - "rtt_ms": 1.469006, + "rtt_ns": 1329625, + "rtt_ms": 1.329625, "checkpoint": 0, "vertex_from": "129", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.547638666Z" + "timestamp": "2025-11-27T04:03:45.810869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667195, - "rtt_ms": 1.667195, + "rtt_ns": 1629500, + "rtt_ms": 1.6295, "checkpoint": 0, "vertex_from": "129", "vertex_to": "340", - "timestamp": "2025-11-27T01:23:42.547819685Z" + "timestamp": "2025-11-27T04:03:45.811048-08:00" }, { "operation": "add_edge", - "rtt_ns": 984707, - "rtt_ms": 0.984707, + "rtt_ns": 1243375, + "rtt_ms": 1.243375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.547848325Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.811368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112297, - "rtt_ms": 1.112297, + "rtt_ns": 1391375, + "rtt_ms": 1.391375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:42.547861635Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.811498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672155, - "rtt_ms": 1.672155, + "rtt_ns": 927791, + "rtt_ms": 0.927791, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.547920115Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:45.811681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818675, - "rtt_ms": 1.818675, + "rtt_ns": 1828958, + "rtt_ms": 1.828958, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.548701493Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:45.811697-08:00" }, { "operation": "add_edge", - "rtt_ns": 2572492, - "rtt_ms": 2.572492, + "rtt_ns": 1509292, + "rtt_ms": 1.509292, "checkpoint": 0, "vertex_from": "129", "vertex_to": "169", - "timestamp": "2025-11-27T01:23:42.54951759Z" + "timestamp": "2025-11-27T04:03:45.811975-08:00" }, { "operation": "add_edge", - "rtt_ns": 2508873, - "rtt_ms": 2.508873, + "rtt_ns": 1439792, + "rtt_ms": 1.439792, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:42.54959426Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:45.81205-08:00" }, { "operation": "add_edge", - "rtt_ns": 2931291, - "rtt_ms": 2.931291, + "rtt_ns": 1333625, + "rtt_ms": 1.333625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:42.549903749Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:45.812186-08:00" }, { "operation": "add_edge", - "rtt_ns": 3355900, - "rtt_ms": 3.3559, + "rtt_ns": 1498250, + "rtt_ms": 1.49825, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:42.550318698Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:45.812256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539883, - "rtt_ms": 2.539883, + "rtt_ns": 1215791, + "rtt_ms": 1.215791, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:42.550461098Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.812265-08:00" }, { "operation": "add_edge", - "rtt_ns": 2640993, - "rtt_ms": 2.640993, + "rtt_ns": 1435917, + "rtt_ms": 1.435917, "checkpoint": 0, "vertex_from": "129", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.550461768Z" + "timestamp": "2025-11-27T04:03:45.812306-08:00" }, { "operation": "add_edge", - "rtt_ns": 2930811, - "rtt_ms": 2.930811, + "rtt_ns": 1550958, + "rtt_ms": 1.550958, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:42.550570627Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:03:45.81292-08:00" }, { "operation": "add_edge", - "rtt_ns": 2762772, - "rtt_ms": 2.762772, + "rtt_ns": 1440958, + "rtt_ms": 1.440958, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "922", - "timestamp": "2025-11-27T01:23:42.550627397Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:45.81294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2859282, - "rtt_ms": 2.859282, + "rtt_ns": 1488708, + "rtt_ms": 1.488708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.550708807Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:45.813186-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055204, - "rtt_ms": 2.055204, + "rtt_ns": 1122708, + "rtt_ms": 1.122708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.550758547Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.813311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305557, - "rtt_ms": 1.305557, + "rtt_ns": 1765792, + "rtt_ms": 1.765792, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.550824547Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:45.813448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019847, - "rtt_ms": 1.019847, + "rtt_ns": 1652042, + "rtt_ms": 1.652042, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:42.550925096Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:45.813628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343346, - "rtt_ms": 1.343346, + "rtt_ns": 1510250, + "rtt_ms": 1.51025, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:42.550938516Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:45.813769-08:00" }, { "operation": "add_edge", - "rtt_ns": 924418, - "rtt_ms": 0.924418, + "rtt_ns": 1774417, + "rtt_ms": 1.774417, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.551244576Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:45.813825-08:00" }, { "operation": "add_edge", - "rtt_ns": 867257, - "rtt_ms": 0.867257, + "rtt_ns": 1569833, + "rtt_ms": 1.569833, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:42.551330375Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.813876-08:00" }, { "operation": "add_edge", - "rtt_ns": 796208, - "rtt_ms": 0.796208, + "rtt_ns": 1377541, + "rtt_ms": 1.377541, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.551367965Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:45.814298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004967, - "rtt_ms": 1.004967, + "rtt_ns": 1295833, + "rtt_ms": 1.295833, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:42.551467305Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.814485-08:00" }, { "operation": "add_edge", - "rtt_ns": 851808, - "rtt_ms": 0.851808, + "rtt_ns": 2252708, + "rtt_ms": 2.252708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:42.551479975Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:45.814518-08:00" }, { "operation": "add_edge", - "rtt_ns": 826038, - "rtt_ms": 0.826038, + "rtt_ns": 1088375, + "rtt_ms": 1.088375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.551585415Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.814537-08:00" }, { "operation": "add_edge", - "rtt_ns": 941567, - "rtt_ms": 0.941567, + "rtt_ns": 1603542, + "rtt_ms": 1.603542, "checkpoint": 0, "vertex_from": "129", "vertex_to": "330", - "timestamp": "2025-11-27T01:23:42.551651384Z" + "timestamp": "2025-11-27T04:03:45.814545-08:00" }, { "operation": "add_edge", - "rtt_ns": 828787, - "rtt_ms": 0.828787, + "rtt_ns": 1571792, + "rtt_ms": 1.571792, "checkpoint": 0, "vertex_from": "129", "vertex_to": "806", - "timestamp": "2025-11-27T01:23:42.551654314Z" + "timestamp": "2025-11-27T04:03:45.814884-08:00" }, { "operation": "add_edge", - "rtt_ns": 777458, - "rtt_ms": 0.777458, + "rtt_ns": 1253792, + "rtt_ms": 1.253792, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:42.551716844Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:45.81508-08:00" }, { "operation": "add_edge", - "rtt_ns": 861008, - "rtt_ms": 0.861008, + "rtt_ns": 1616750, + "rtt_ms": 1.61675, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.551787104Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:45.815387-08:00" }, { "operation": "add_edge", - "rtt_ns": 638108, - "rtt_ms": 0.638108, + "rtt_ns": 1575708, + "rtt_ms": 1.575708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:42.551883614Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.815454-08:00" }, { "operation": "add_edge", - "rtt_ns": 962327, - "rtt_ms": 0.962327, + "rtt_ns": 1833167, + "rtt_ms": 1.833167, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.552331582Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:45.815463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187806, - "rtt_ms": 1.187806, + "rtt_ns": 1266042, + "rtt_ms": 1.266042, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:42.552656421Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:45.815753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164436, - "rtt_ms": 1.164436, + "rtt_ns": 1297542, + "rtt_ms": 1.297542, "checkpoint": 0, "vertex_from": "129", "vertex_to": "572", - "timestamp": "2025-11-27T01:23:42.552751291Z" + "timestamp": "2025-11-27T04:03:45.815817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522606, - "rtt_ms": 1.522606, + "rtt_ns": 1679333, + "rtt_ms": 1.679333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:42.552855511Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:03:45.815979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405396, - "rtt_ms": 1.405396, + "rtt_ns": 1275958, + "rtt_ms": 1.275958, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:42.552886451Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:45.816161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771525, - "rtt_ms": 1.771525, + "rtt_ns": 1095708, + "rtt_ms": 1.095708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:42.553424079Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.816177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788535, - "rtt_ms": 1.788535, + "rtt_ns": 1768333, + "rtt_ms": 1.768333, "checkpoint": 0, "vertex_from": "129", "vertex_to": "242", - "timestamp": "2025-11-27T01:23:42.553443819Z" + "timestamp": "2025-11-27T04:03:45.816315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730565, - "rtt_ms": 1.730565, + "rtt_ns": 1835667, + "rtt_ms": 1.835667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "497", - "timestamp": "2025-11-27T01:23:42.553615159Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:45.816374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910355, - "rtt_ms": 1.910355, + "rtt_ns": 1855708, + "rtt_ms": 1.855708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:42.553628789Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:03:45.817246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878064, - "rtt_ms": 1.878064, + "rtt_ns": 2164209, + "rtt_ms": 2.164209, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.553666278Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:45.817629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737355, - "rtt_ms": 1.737355, + "rtt_ns": 2193541, + "rtt_ms": 2.193541, "checkpoint": 0, "vertex_from": "129", "vertex_to": "298", - "timestamp": "2025-11-27T01:23:42.554070237Z" + "timestamp": "2025-11-27T04:03:45.817648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220046, - "rtt_ms": 1.220046, + "rtt_ns": 1349875, + "rtt_ms": 1.349875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:42.554077617Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1466066, - "rtt_ms": 1.466066, - "checkpoint": 0, - "vertex_from": "129", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:42.554123837Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.817665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385206, - "rtt_ms": 1.385206, + "rtt_ns": 1965375, + "rtt_ms": 1.965375, "checkpoint": 0, - "vertex_from": "129", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.554137437Z" + "vertex_from": "130", + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:45.817784-08:00" }, { "operation": "add_edge", - "rtt_ns": 823718, - "rtt_ms": 0.823718, + "rtt_ns": 1995250, + "rtt_ms": 1.99525, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:42.554248857Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.817975-08:00" }, { "operation": "add_edge", - "rtt_ns": 730317, - "rtt_ms": 0.730317, + "rtt_ns": 1852542, + "rtt_ms": 1.852542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.554348036Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:45.81803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192336, - "rtt_ms": 1.192336, + "rtt_ns": 2452708, + "rtt_ms": 2.452708, "checkpoint": 0, - "vertex_from": "130", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:42.554637655Z" + "vertex_from": "129", + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.818208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783144, - "rtt_ms": 1.783144, + "rtt_ns": 2061542, + "rtt_ms": 2.061542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.554670705Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:45.818223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115387, - "rtt_ms": 1.115387, + "rtt_ns": 1357541, + "rtt_ms": 1.357541, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.554782505Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:45.818987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195006, - "rtt_ms": 1.195006, + "rtt_ns": 2626125, + "rtt_ms": 2.626125, "checkpoint": 0, "vertex_from": "130", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.554824845Z" + "timestamp": "2025-11-27T04:03:45.819001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152777, - "rtt_ms": 1.152777, + "rtt_ns": 1421333, + "rtt_ms": 1.421333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.555224594Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:03:45.819071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561455, - "rtt_ms": 1.561455, + "rtt_ns": 1339583, + "rtt_ms": 1.339583, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:42.555686472Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.819124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620195, - "rtt_ms": 1.620195, + "rtt_ns": 1595417, + "rtt_ms": 1.595417, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "132", - "timestamp": "2025-11-27T01:23:42.555698592Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:45.819262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507935, - "rtt_ms": 1.507935, + "rtt_ns": 1111583, + "rtt_ms": 1.111583, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.555757952Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.819322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633055, - "rtt_ms": 1.633055, + "rtt_ns": 1295000, + "rtt_ms": 1.295, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.555771452Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.819326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156647, - "rtt_ms": 1.156647, + "rtt_ns": 2096125, + "rtt_ms": 2.096125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.555795322Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.819344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136237, - "rtt_ms": 1.136237, + "rtt_ns": 1155334, + "rtt_ms": 1.155334, "checkpoint": 0, "vertex_from": "130", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.555810422Z" + "timestamp": "2025-11-27T04:03:45.81938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194416, - "rtt_ms": 1.194416, + "rtt_ns": 2388667, + "rtt_ms": 2.388667, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.556019941Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.820366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248356, - "rtt_ms": 1.248356, + "rtt_ns": 2272125, + "rtt_ms": 2.272125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.556031871Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.82128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774435, - "rtt_ms": 1.774435, + "rtt_ns": 2309125, + "rtt_ms": 2.309125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.556123751Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.821298-08:00" }, { "operation": "add_edge", - "rtt_ns": 638939, - "rtt_ms": 0.638939, + "rtt_ns": 2276000, + "rtt_ms": 2.276, "checkpoint": 0, "vertex_from": "130", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.556338201Z" + "timestamp": "2025-11-27T04:03:45.82154-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1165906, - "rtt_ms": 1.165906, + "rtt_ns": 2508750, + "rtt_ms": 2.50875, "checkpoint": 0, "vertex_from": "783", - "timestamp": "2025-11-27T01:23:42.55639269Z" + "timestamp": "2025-11-27T04:03:45.821581-08:00" }, { "operation": "add_edge", - "rtt_ns": 772998, - "rtt_ms": 0.772998, + "rtt_ns": 2480583, + "rtt_ms": 2.480583, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.55654598Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.821606-08:00" }, { "operation": "add_edge", - "rtt_ns": 819898, - "rtt_ms": 0.819898, + "rtt_ns": 2375958, + "rtt_ms": 2.375958, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.55657871Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:45.821721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308466, - "rtt_ms": 1.308466, + "rtt_ns": 2393083, + "rtt_ms": 2.393083, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:42.557104388Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.82178-08:00" }, { "operation": "add_edge", - "rtt_ns": 787927, - "rtt_ms": 0.787927, + "rtt_ns": 2464000, + "rtt_ms": 2.464, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:42.557127198Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.821792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054097, - "rtt_ms": 1.054097, + "rtt_ns": 1449542, + "rtt_ms": 1.449542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.557178468Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.821817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423656, - "rtt_ms": 1.423656, + "rtt_ns": 2699875, + "rtt_ms": 2.699875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.557235178Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.822023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375347, - "rtt_ms": 1.375347, + "rtt_ns": 1165750, + "rtt_ms": 1.16575, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.557396498Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:45.822708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419816, - "rtt_ms": 1.419816, + "rtt_ns": 1488500, + "rtt_ms": 1.4885, "checkpoint": 0, "vertex_from": "130", "vertex_to": "232", - "timestamp": "2025-11-27T01:23:42.557452697Z" + "timestamp": "2025-11-27T04:03:45.822769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908075, - "rtt_ms": 1.908075, + "rtt_ns": 1161625, + "rtt_ms": 1.161625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.557595437Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:45.822979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730545, - "rtt_ms": 1.730545, + "rtt_ns": 1417333, + "rtt_ms": 1.417333, "checkpoint": 0, "vertex_from": "130", "vertex_to": "556", - "timestamp": "2025-11-27T01:23:42.558278405Z" + "timestamp": "2025-11-27T04:03:45.823025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897205, - "rtt_ms": 1.897205, + "rtt_ns": 1777458, + "rtt_ms": 1.777458, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "783", - "timestamp": "2025-11-27T01:23:42.558290315Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:45.823076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640006, - "rtt_ms": 1.640006, + "rtt_ns": 1417459, + "rtt_ms": 1.417459, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.558745564Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:45.82321-08:00" }, { "operation": "add_edge", - "rtt_ns": 2335283, - "rtt_ms": 2.335283, + "rtt_ns": 1501292, + "rtt_ms": 1.501292, "checkpoint": 0, "vertex_from": "130", "vertex_to": "901", - "timestamp": "2025-11-27T01:23:42.558915163Z" + "timestamp": "2025-11-27T04:03:45.823223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818945, - "rtt_ms": 1.818945, + "rtt_ns": 1586417, + "rtt_ms": 1.586417, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:42.558947243Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.823367-08:00" }, { "operation": "add_edge", - "rtt_ns": 2685343, - "rtt_ms": 2.685343, + "rtt_ns": 1399375, + "rtt_ms": 1.399375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:42.559864861Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.823423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2518403, - "rtt_ms": 2.518403, + "rtt_ns": 2015292, + "rtt_ms": 2.015292, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.55997179Z" + "vertex_to": "783", + "timestamp": "2025-11-27T04:03:45.823597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2583192, - "rtt_ms": 2.583192, + "rtt_ns": 1064833, + "rtt_ms": 1.064833, "checkpoint": 0, "vertex_from": "130", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.55998045Z" + "timestamp": "2025-11-27T04:03:45.823776-08:00" }, { "operation": "add_edge", - "rtt_ns": 2802912, - "rtt_ms": 2.802912, + "rtt_ns": 884000, + "rtt_ms": 0.884, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.56003893Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:45.823961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849815, - "rtt_ms": 1.849815, + "rtt_ns": 1320291, + "rtt_ms": 1.320291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:42.56014103Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.824091-08:00" }, { "operation": "add_edge", - "rtt_ns": 2544183, - "rtt_ms": 2.544183, + "rtt_ns": 1105208, + "rtt_ms": 1.105208, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.56014136Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.824131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891455, - "rtt_ms": 1.891455, + "rtt_ns": 1529750, + "rtt_ms": 1.52975, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.56017118Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.824511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517645, - "rtt_ms": 1.517645, + "rtt_ns": 1399166, + "rtt_ms": 1.399166, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "230", - "timestamp": "2025-11-27T01:23:42.560264169Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.824997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361886, - "rtt_ms": 1.361886, + "rtt_ns": 953583, + "rtt_ms": 0.953583, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:42.560277659Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:45.825046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331346, - "rtt_ms": 1.331346, + "rtt_ns": 2223916, + "rtt_ms": 2.223916, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.560279629Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:45.825448-08:00" }, { "operation": "add_edge", - "rtt_ns": 763308, - "rtt_ms": 0.763308, + "rtt_ns": 2024083, + "rtt_ms": 2.024083, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.560735768Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:45.82545-08:00" }, { "operation": "add_edge", - "rtt_ns": 945837, - "rtt_ms": 0.945837, + "rtt_ns": 1317542, + "rtt_ms": 1.317542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:42.560986797Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:45.82545-08:00" }, { "operation": "add_edge", - "rtt_ns": 892247, - "rtt_ms": 0.892247, + "rtt_ns": 1694000, + "rtt_ms": 1.694, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:42.561034427Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:45.825471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214806, - "rtt_ms": 1.214806, + "rtt_ns": 2260542, + "rtt_ms": 2.260542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:42.561080467Z" + "vertex_to": "230", + "timestamp": "2025-11-27T04:03:45.825471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175527, - "rtt_ms": 1.175527, + "rtt_ns": 1514916, + "rtt_ms": 1.514916, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:42.561156457Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:45.825479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672475, - "rtt_ms": 1.672475, + "rtt_ns": 2211542, + "rtt_ms": 2.211542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.561814615Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:45.825579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763044, - "rtt_ms": 1.763044, + "rtt_ns": 1572375, + "rtt_ms": 1.572375, "checkpoint": 0, "vertex_from": "130", "vertex_to": "452", - "timestamp": "2025-11-27T01:23:42.561935294Z" + "timestamp": "2025-11-27T04:03:45.826085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201636, - "rtt_ms": 1.201636, + "rtt_ns": 1146250, + "rtt_ms": 1.14625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.561938034Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:45.826144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660375, - "rtt_ms": 1.660375, + "rtt_ns": 1266708, + "rtt_ms": 1.266708, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.561940894Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:45.826314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679275, - "rtt_ms": 1.679275, + "rtt_ns": 1147083, + "rtt_ms": 1.147083, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:42.561944664Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.826598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786885, - "rtt_ms": 1.786885, + "rtt_ns": 1301125, + "rtt_ms": 1.301125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:42.562065304Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.826782-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033994, - "rtt_ms": 2.033994, + "rtt_ns": 1832750, + "rtt_ms": 1.83275, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.563069391Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.827285-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113754, - "rtt_ms": 2.113754, + "rtt_ns": 1719792, + "rtt_ms": 1.719792, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.563101641Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:45.8273-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038574, - "rtt_ms": 2.038574, + "rtt_ns": 1842791, + "rtt_ms": 1.842791, "checkpoint": 0, "vertex_from": "130", "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.563119731Z" + "timestamp": "2025-11-27T04:03:45.827315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980834, - "rtt_ms": 1.980834, + "rtt_ns": 1758000, + "rtt_ms": 1.758, + "checkpoint": 0, + "vertex_from": "130", + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.827844-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1336042, + "rtt_ms": 1.336042, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.563137911Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:45.828119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328906, - "rtt_ms": 1.328906, + "rtt_ns": 1538375, + "rtt_ms": 1.538375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:42.563144681Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.828139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627256, - "rtt_ms": 1.627256, + "rtt_ns": 1885459, + "rtt_ms": 1.885459, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.56356392Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:45.8282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628566, - "rtt_ms": 1.628566, + "rtt_ns": 2072875, + "rtt_ms": 2.072875, "checkpoint": 0, "vertex_from": "130", "vertex_to": "645", - "timestamp": "2025-11-27T01:23:42.56356806Z" + "timestamp": "2025-11-27T04:03:45.828218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707365, - "rtt_ms": 1.707365, + "rtt_ns": 943334, + "rtt_ms": 0.943334, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.563773599Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.828259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852225, - "rtt_ms": 1.852225, + "rtt_ns": 2841166, + "rtt_ms": 2.841166, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:42.563793939Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.828313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905285, - "rtt_ms": 1.905285, + "rtt_ns": 1273833, + "rtt_ms": 1.273833, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.563851809Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:45.829121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275226, - "rtt_ms": 1.275226, + "rtt_ns": 1964792, + "rtt_ms": 1.964792, "checkpoint": 0, "vertex_from": "130", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:42.564379767Z" + "timestamp": "2025-11-27T04:03:45.829266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043017, - "rtt_ms": 1.043017, + "rtt_ns": 1127291, + "rtt_ms": 1.127291, "checkpoint": 0, "vertex_from": "130", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.564607987Z" + "timestamp": "2025-11-27T04:03:45.829267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588235, - "rtt_ms": 1.588235, + "rtt_ns": 1229833, + "rtt_ms": 1.229833, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.564661416Z" + "vertex_to": "185", + "timestamp": "2025-11-27T04:03:45.82943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551485, - "rtt_ms": 1.551485, + "rtt_ns": 4188375, + "rtt_ms": 4.188375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:42.564697776Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.829638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606795, - "rtt_ms": 1.606795, + "rtt_ns": 1572458, + "rtt_ms": 1.572458, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.564727696Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.829834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595815, - "rtt_ms": 1.595815, + "rtt_ns": 1732834, + "rtt_ms": 1.732834, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:42.564734966Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:45.829853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183296, - "rtt_ms": 1.183296, + "rtt_ns": 1756666, + "rtt_ms": 1.756666, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "185", - "timestamp": "2025-11-27T01:23:42.564753036Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:45.829975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657935, - "rtt_ms": 1.657935, + "rtt_ns": 1806792, + "rtt_ms": 1.806792, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:42.565433204Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.83012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700375, - "rtt_ms": 1.700375, + "rtt_ns": 3729416, + "rtt_ms": 3.729416, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.565553554Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.831016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775445, - "rtt_ms": 1.775445, + "rtt_ns": 1698875, + "rtt_ms": 1.698875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.565571274Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.83113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430336, - "rtt_ms": 1.430336, + "rtt_ns": 2072292, + "rtt_ms": 2.072292, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:42.566039603Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:45.831194-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1423776, - "rtt_ms": 1.423776, + "operation": "add_vertex", + "rtt_ns": 1372708, + "rtt_ms": 1.372708, "checkpoint": 0, - "vertex_from": "130", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.566122572Z" + "vertex_from": "423", + "timestamp": "2025-11-27T04:03:45.831209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485966, - "rtt_ms": 1.485966, + "rtt_ns": 1260334, + "rtt_ms": 1.260334, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:42.566149752Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.831236-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1412516, - "rtt_ms": 1.412516, + "operation": "add_edge", + "rtt_ns": 2023917, + "rtt_ms": 2.023917, "checkpoint": 0, - "vertex_from": "423", - "timestamp": "2025-11-27T01:23:42.566151182Z" + "vertex_from": "130", + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:45.831293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954635, - "rtt_ms": 1.954635, + "rtt_ns": 2259000, + "rtt_ms": 2.259, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "341", - "timestamp": "2025-11-27T01:23:42.566683631Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:45.831526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265577, - "rtt_ms": 1.265577, + "rtt_ns": 1680250, + "rtt_ms": 1.68025, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.566700391Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:03:45.831535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235627, - "rtt_ms": 1.235627, + "rtt_ns": 1422125, + "rtt_ms": 1.422125, "checkpoint": 0, "vertex_from": "130", "vertex_to": "456", - "timestamp": "2025-11-27T01:23:42.566790631Z" + "timestamp": "2025-11-27T04:03:45.831543-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097674, - "rtt_ms": 2.097674, + "rtt_ns": 2425250, + "rtt_ms": 2.42525, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:42.56685196Z" + "vertex_to": "341", + "timestamp": "2025-11-27T04:03:45.832073-08:00" }, { "operation": "add_edge", - "rtt_ns": 2499613, - "rtt_ms": 2.499613, + "rtt_ns": 1464666, + "rtt_ms": 1.464666, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:42.56688205Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.832596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440666, - "rtt_ms": 1.440666, + "rtt_ns": 1635458, + "rtt_ms": 1.635458, "checkpoint": 0, "vertex_from": "130", "vertex_to": "131", - "timestamp": "2025-11-27T01:23:42.56701382Z" + "timestamp": "2025-11-27T04:03:45.832652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476706, - "rtt_ms": 1.476706, + "rtt_ns": 1150500, + "rtt_ms": 1.1505, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:42.567628248Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.832695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528486, - "rtt_ms": 1.528486, + "rtt_ns": 1466667, + "rtt_ms": 1.466667, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.567652738Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.832761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615035, - "rtt_ms": 1.615035, + "rtt_ns": 1242666, + "rtt_ms": 1.242666, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.567655918Z" + "vertex_to": "633", + "timestamp": "2025-11-27T04:03:45.832778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594876, - "rtt_ms": 1.594876, + "rtt_ns": 1585875, + "rtt_ms": 1.585875, "checkpoint": 0, "vertex_from": "130", "vertex_to": "423", - "timestamp": "2025-11-27T01:23:42.567746638Z" + "timestamp": "2025-11-27T04:03:45.832795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146457, - "rtt_ms": 1.146457, + "rtt_ns": 1720875, + "rtt_ms": 1.720875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.567831288Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.832916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036117, - "rtt_ms": 1.036117, + "rtt_ns": 1793333, + "rtt_ms": 1.793333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "474", - "timestamp": "2025-11-27T01:23:42.567919417Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:45.833031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944994, - "rtt_ms": 1.944994, + "rtt_ns": 1686750, + "rtt_ms": 1.68675, "checkpoint": 0, "vertex_from": "130", "vertex_to": "135", - "timestamp": "2025-11-27T01:23:42.568646975Z" + "timestamp": "2025-11-27T04:03:45.833213-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023214, - "rtt_ms": 2.023214, + "rtt_ns": 1091000, + "rtt_ms": 1.091, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.568876544Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:45.833871-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119143, - "rtt_ms": 2.119143, + "rtt_ns": 1362750, + "rtt_ms": 1.36275, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "633", - "timestamp": "2025-11-27T01:23:42.568911114Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.833959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089194, - "rtt_ms": 2.089194, + "rtt_ns": 1328208, + "rtt_ms": 1.328208, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.569104094Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.834024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537706, - "rtt_ms": 1.537706, + "rtt_ns": 1154625, + "rtt_ms": 1.154625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:42.569167104Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:03:45.834072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766074, - "rtt_ms": 1.766074, + "rtt_ns": 1324500, + "rtt_ms": 1.3245, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.569598322Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:03:45.834088-08:00" }, { "operation": "add_edge", - "rtt_ns": 2668892, - "rtt_ms": 2.668892, + "rtt_ns": 1085208, + "rtt_ms": 1.085208, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:42.57041689Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.834118-08:00" }, { "operation": "add_edge", - "rtt_ns": 2505843, - "rtt_ms": 2.505843, + "rtt_ns": 2098542, + "rtt_ms": 2.098542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "217", - "timestamp": "2025-11-27T01:23:42.57042631Z" + "vertex_to": "474", + "timestamp": "2025-11-27T04:03:45.834173-08:00" }, { "operation": "add_edge", - "rtt_ns": 2777122, - "rtt_ms": 2.777122, + "rtt_ns": 1447584, + "rtt_ms": 1.447584, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.57043145Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:45.834243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817555, - "rtt_ms": 1.817555, + "rtt_ns": 1219292, + "rtt_ms": 1.219292, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.5704665Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.834434-08:00" }, { "operation": "add_edge", - "rtt_ns": 2893621, - "rtt_ms": 2.893621, + "rtt_ns": 2225333, + "rtt_ms": 2.225333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:42.570551129Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:45.834878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673245, - "rtt_ms": 1.673245, + "rtt_ns": 1224166, + "rtt_ms": 1.224166, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:42.570585839Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:45.835469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018307, - "rtt_ms": 1.018307, + "rtt_ns": 1689291, + "rtt_ms": 1.689291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:42.570619169Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:45.835561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834125, - "rtt_ms": 1.834125, + "rtt_ns": 1535084, + "rtt_ms": 1.535084, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.570711779Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:45.835624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627905, - "rtt_ms": 1.627905, + "rtt_ns": 1486834, + "rtt_ms": 1.486834, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:42.570732939Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:03:45.835921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570275, - "rtt_ms": 1.570275, + "rtt_ns": 1807084, + "rtt_ms": 1.807084, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:42.570739699Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:45.835926-08:00" }, { "operation": "add_edge", - "rtt_ns": 869307, - "rtt_ms": 0.869307, + "rtt_ns": 1978083, + "rtt_ms": 1.978083, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:42.571303167Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:45.836003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020587, - "rtt_ms": 1.020587, + "rtt_ns": 1937334, + "rtt_ms": 1.937334, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:42.571488647Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:45.836113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061067, - "rtt_ms": 1.061067, + "rtt_ns": 2153000, + "rtt_ms": 2.153, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:42.571614076Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:45.836113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022517, - "rtt_ms": 1.022517, + "rtt_ns": 2044375, + "rtt_ms": 2.044375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.571645356Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:45.836117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237336, - "rtt_ms": 1.237336, + "rtt_ns": 1041875, + "rtt_ms": 1.041875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.571655976Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.837156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371666, - "rtt_ms": 1.371666, + "rtt_ns": 1658875, + "rtt_ms": 1.658875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:42.571799336Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:03:45.837223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212147, - "rtt_ms": 1.212147, + "rtt_ns": 2452417, + "rtt_ms": 2.452417, "checkpoint": 0, "vertex_from": "130", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.571799536Z" + "timestamp": "2025-11-27T04:03:45.837332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557185, - "rtt_ms": 1.557185, + "rtt_ns": 1803875, + "rtt_ms": 1.803875, "checkpoint": 0, "vertex_from": "130", "vertex_to": "344", - "timestamp": "2025-11-27T01:23:42.572292044Z" + "timestamp": "2025-11-27T04:03:45.83743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019537, - "rtt_ms": 1.019537, + "rtt_ns": 1562083, + "rtt_ms": 1.562083, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.572324794Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.837485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620555, - "rtt_ms": 1.620555, + "rtt_ns": 1565833, + "rtt_ms": 1.565833, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "158", - "timestamp": "2025-11-27T01:23:42.572333504Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.837569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700845, - "rtt_ms": 1.700845, + "rtt_ns": 1733042, + "rtt_ms": 1.733042, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.572441754Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.83766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116437, - "rtt_ms": 1.116437, + "rtt_ns": 1627833, + "rtt_ms": 1.627833, "checkpoint": 0, "vertex_from": "130", "vertex_to": "302", - "timestamp": "2025-11-27T01:23:42.572732173Z" + "timestamp": "2025-11-27T04:03:45.837742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316096, - "rtt_ms": 1.316096, + "rtt_ns": 2307917, + "rtt_ms": 2.307917, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.572805803Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:45.837777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248377, - "rtt_ms": 1.248377, + "rtt_ns": 1762250, + "rtt_ms": 1.76225, "checkpoint": 0, "vertex_from": "130", "vertex_to": "913", - "timestamp": "2025-11-27T01:23:42.572906023Z" + "timestamp": "2025-11-27T04:03:45.83788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382606, - "rtt_ms": 1.382606, + "rtt_ns": 1404125, + "rtt_ms": 1.404125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.573029032Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:45.838561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251136, - "rtt_ms": 1.251136, + "rtt_ns": 1272417, + "rtt_ms": 1.272417, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "283", - "timestamp": "2025-11-27T01:23:42.573052162Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.838605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283566, - "rtt_ms": 1.283566, + "rtt_ns": 1610541, + "rtt_ms": 1.610541, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:42.573084572Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:03:45.838834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232607, - "rtt_ms": 1.232607, + "rtt_ns": 1545334, + "rtt_ms": 1.545334, "checkpoint": 0, "vertex_from": "130", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.573568131Z" + "timestamp": "2025-11-27T04:03:45.839031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292717, - "rtt_ms": 1.292717, + "rtt_ns": 1549291, + "rtt_ms": 1.549291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:42.573620311Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:45.83912-08:00" }, { "operation": "add_edge", - "rtt_ns": 787477, - "rtt_ms": 0.787477, + "rtt_ns": 1703083, + "rtt_ms": 1.703083, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "996", - "timestamp": "2025-11-27T01:23:42.57369543Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:45.839134-08:00" }, { "operation": "add_edge", - "rtt_ns": 990937, - "rtt_ms": 0.990937, + "rtt_ns": 1508833, + "rtt_ms": 1.508833, "checkpoint": 0, "vertex_from": "130", "vertex_to": "356", - "timestamp": "2025-11-27T01:23:42.57372445Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1337476, - "rtt_ms": 1.337476, - "checkpoint": 0, - "vertex_from": "130", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:42.57378122Z" + "timestamp": "2025-11-27T04:03:45.839171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066247, - "rtt_ms": 1.066247, + "rtt_ns": 1383958, + "rtt_ms": 1.383958, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:42.57387604Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:03:45.839266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664936, - "rtt_ms": 1.664936, + "rtt_ns": 1529042, + "rtt_ms": 1.529042, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.57395919Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:03:45.839307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478196, - "rtt_ms": 1.478196, + "rtt_ns": 1736250, + "rtt_ms": 1.73625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:42.574508608Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:45.839479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509106, - "rtt_ms": 1.509106, + "rtt_ns": 1965292, + "rtt_ms": 1.965292, "checkpoint": 0, "vertex_from": "130", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.574563938Z" + "timestamp": "2025-11-27T04:03:45.840527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487206, - "rtt_ms": 1.487206, + "rtt_ns": 1645042, + "rtt_ms": 1.645042, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.574572628Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.840677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670846, - "rtt_ms": 1.670846, + "rtt_ns": 1936709, + "rtt_ms": 1.936709, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "849", - "timestamp": "2025-11-27T01:23:42.575368396Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.840772-08:00" }, { "operation": "add_edge", - "rtt_ns": 859828, - "rtt_ms": 0.859828, + "rtt_ns": 1760000, + "rtt_ms": 1.76, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:42.575371026Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.840894-08:00" }, { "operation": "add_edge", - "rtt_ns": 796718, - "rtt_ms": 0.796718, + "rtt_ns": 1791250, + "rtt_ms": 1.79125, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.575371066Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:03:45.840912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429526, - "rtt_ms": 1.429526, + "rtt_ns": 1975417, + "rtt_ms": 1.975417, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:42.575390246Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:45.841242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686086, - "rtt_ms": 1.686086, + "rtt_ns": 2148750, + "rtt_ms": 2.14875, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.575411736Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:45.841321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972744, - "rtt_ms": 1.972744, + "rtt_ns": 2026000, + "rtt_ms": 2.026, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.575543305Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:45.841334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923054, - "rtt_ms": 1.923054, + "rtt_ns": 3210333, + "rtt_ms": 3.210333, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.575549045Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.841816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670115, - "rtt_ms": 1.670115, + "rtt_ns": 1322708, + "rtt_ms": 1.322708, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:42.575549465Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:45.842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809715, - "rtt_ms": 1.809715, + "rtt_ns": 1173208, + "rtt_ms": 1.173208, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.575592105Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:03:45.84207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074607, - "rtt_ms": 1.074607, + "rtt_ns": 1715500, + "rtt_ms": 1.7155, "checkpoint": 0, "vertex_from": "131", "vertex_to": "801", - "timestamp": "2025-11-27T01:23:42.575640565Z" + "timestamp": "2025-11-27T04:03:45.842244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022957, - "rtt_ms": 1.022957, + "rtt_ns": 1309458, + "rtt_ms": 1.309458, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:42.576394383Z" + "vertex_to": "845", + "timestamp": "2025-11-27T04:03:45.842553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017507, - "rtt_ms": 1.017507, + "rtt_ns": 1288542, + "rtt_ms": 1.288542, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "845", - "timestamp": "2025-11-27T01:23:42.576410853Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.842612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064297, - "rtt_ms": 1.064297, + "rtt_ns": 1817500, + "rtt_ms": 1.8175, "checkpoint": 0, "vertex_from": "131", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.576440363Z" + "timestamp": "2025-11-27T04:03:45.842731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343836, - "rtt_ms": 1.343836, + "rtt_ns": 1432459, + "rtt_ms": 1.432459, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "167", - "timestamp": "2025-11-27T01:23:42.576722682Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:45.842768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206287, - "rtt_ms": 1.206287, + "rtt_ns": 1996000, + "rtt_ms": 1.996, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:42.576752192Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:03:45.842769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885585, - "rtt_ms": 1.885585, + "rtt_ns": 3453292, + "rtt_ms": 3.453292, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:42.57743711Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:45.842934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051634, - "rtt_ms": 2.051634, + "rtt_ns": 1406709, + "rtt_ms": 1.406709, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.577602439Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.84402-08:00" }, { "operation": "add_edge", - "rtt_ns": 2400613, - "rtt_ms": 2.400613, + "rtt_ns": 2232584, + "rtt_ms": 2.232584, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.577814439Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.844062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2496023, - "rtt_ms": 2.496023, + "rtt_ns": 2094917, + "rtt_ms": 2.094917, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.578089818Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:45.844098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2526072, - "rtt_ms": 2.526072, + "rtt_ns": 1568417, + "rtt_ms": 1.568417, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.578167717Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:45.844122-08:00" }, { "operation": "add_edge", - "rtt_ns": 2390573, - "rtt_ms": 2.390573, + "rtt_ns": 2172292, + "rtt_ms": 2.172292, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.578802176Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.844244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103943, - "rtt_ms": 2.103943, + "rtt_ns": 1559041, + "rtt_ms": 1.559041, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "732", - "timestamp": "2025-11-27T01:23:42.578827745Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:45.844305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2450892, - "rtt_ms": 2.450892, + "rtt_ns": 2068791, + "rtt_ms": 2.068791, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:42.578892755Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.844313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539882, - "rtt_ms": 2.539882, + "rtt_ns": 1955125, + "rtt_ms": 1.955125, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.578935675Z" + "vertex_to": "732", + "timestamp": "2025-11-27T04:03:45.844724-08:00" }, { "operation": "add_edge", - "rtt_ns": 2205363, - "rtt_ms": 2.205363, + "rtt_ns": 2234542, + "rtt_ms": 2.234542, "checkpoint": 0, "vertex_from": "131", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.578959565Z" + "timestamp": "2025-11-27T04:03:45.845004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979364, - "rtt_ms": 1.979364, + "rtt_ns": 1413042, + "rtt_ms": 1.413042, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.579418504Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:45.845434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926574, - "rtt_ms": 1.926574, + "rtt_ns": 2585291, + "rtt_ms": 2.585291, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:42.579530303Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.84552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757294, - "rtt_ms": 1.757294, + "rtt_ns": 1207166, + "rtt_ms": 1.207166, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.579573203Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.845521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502645, - "rtt_ms": 1.502645, + "rtt_ns": 1438291, + "rtt_ms": 1.438291, "checkpoint": 0, "vertex_from": "131", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.579593933Z" + "timestamp": "2025-11-27T04:03:45.845537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451816, - "rtt_ms": 1.451816, + "rtt_ns": 1510167, + "rtt_ms": 1.510167, "checkpoint": 0, "vertex_from": "131", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.579621253Z" + "timestamp": "2025-11-27T04:03:45.845634-08:00" }, { "operation": "add_edge", - "rtt_ns": 940117, - "rtt_ms": 0.940117, + "rtt_ns": 1585667, + "rtt_ms": 1.585667, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.579743433Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.84565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505166, - "rtt_ms": 1.505166, + "rtt_ns": 1493458, + "rtt_ms": 1.493458, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.580442041Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:45.845738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647226, - "rtt_ms": 1.647226, + "rtt_ns": 1830333, + "rtt_ms": 1.830333, "checkpoint": 0, "vertex_from": "131", "vertex_to": "293", - "timestamp": "2025-11-27T01:23:42.580476081Z" + "timestamp": "2025-11-27T04:03:45.846136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076497, - "rtt_ms": 1.076497, + "rtt_ns": 1639125, + "rtt_ms": 1.639125, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.580497131Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.846364-08:00" }, { "operation": "add_edge", - "rtt_ns": 991338, - "rtt_ms": 0.991338, + "rtt_ns": 1173750, + "rtt_ms": 1.17375, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:42.580522941Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.846712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630596, - "rtt_ms": 1.630596, + "rtt_ns": 1788583, + "rtt_ms": 1.788583, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.580524571Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.846793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579346, - "rtt_ms": 1.579346, + "rtt_ns": 1410250, + "rtt_ms": 1.41025, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.580539771Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.847061-08:00" }, { "operation": "add_edge", - "rtt_ns": 974958, - "rtt_ms": 0.974958, + "rtt_ns": 1377000, + "rtt_ms": 1.377, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.580549401Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:03:45.847116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540886, - "rtt_ms": 1.540886, + "rtt_ns": 1722083, + "rtt_ms": 1.722083, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.581164279Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.847157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859535, - "rtt_ms": 1.859535, + "rtt_ns": 1711042, + "rtt_ms": 1.711042, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.581454508Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.847233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007917, - "rtt_ms": 1.007917, + "rtt_ns": 1745417, + "rtt_ms": 1.745417, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.581532068Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:45.847266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061147, - "rtt_ms": 1.061147, + "rtt_ns": 1195083, + "rtt_ms": 1.195083, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.581559848Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:45.847334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120537, - "rtt_ms": 1.120537, + "rtt_ns": 1757375, + "rtt_ms": 1.757375, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "677", - "timestamp": "2025-11-27T01:23:42.581564408Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.847392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086587, - "rtt_ms": 1.086587, + "rtt_ns": 1294625, + "rtt_ms": 1.294625, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.581564958Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.848356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941814, - "rtt_ms": 1.941814, + "rtt_ns": 1052625, + "rtt_ms": 1.052625, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.581686827Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:45.848388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254186, - "rtt_ms": 1.254186, + "rtt_ns": 1810458, + "rtt_ms": 1.810458, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.581796337Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:45.848605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671035, - "rtt_ms": 1.671035, + "rtt_ns": 2251500, + "rtt_ms": 2.2515, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:42.582197376Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.848616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739766, - "rtt_ms": 1.739766, + "rtt_ns": 1506333, + "rtt_ms": 1.506333, "checkpoint": 0, "vertex_from": "131", "vertex_to": "368", - "timestamp": "2025-11-27T01:23:42.582290466Z" + "timestamp": "2025-11-27T04:03:45.848624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138947, - "rtt_ms": 1.138947, + "rtt_ns": 1952041, + "rtt_ms": 1.952041, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:42.582305716Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:45.848665-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1395166, - "rtt_ms": 1.395166, + "operation": "add_edge", + "rtt_ns": 1328208, + "rtt_ms": 1.328208, "checkpoint": 0, - "vertex_from": "881", - "timestamp": "2025-11-27T01:23:42.582932764Z" + "vertex_from": "131", + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.848721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257696, - "rtt_ms": 1.257696, + "rtt_ns": 1518917, + "rtt_ms": 1.518917, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:42.583456242Z" + "vertex_from": "131", + "vertex_to": "241", + "timestamp": "2025-11-27T04:03:45.848753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916554, - "rtt_ms": 1.916554, + "rtt_ns": 1612042, + "rtt_ms": 1.612042, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.583483762Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:45.848771-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1191476, - "rtt_ms": 1.191476, + "operation": "add_vertex", + "rtt_ns": 1649709, + "rtt_ms": 1.649709, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:42.583484192Z" + "vertex_from": "881", + "timestamp": "2025-11-27T04:03:45.848917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901215, - "rtt_ms": 1.901215, + "rtt_ns": 1184125, + "rtt_ms": 1.184125, "checkpoint": 0, "vertex_from": "131", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.583589272Z" + "timestamp": "2025-11-27T04:03:45.849575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807855, - "rtt_ms": 1.807855, + "rtt_ns": 1315166, + "rtt_ms": 1.315166, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.583605762Z" + "vertex_from": "131", + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.849672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300766, - "rtt_ms": 1.300766, + "rtt_ns": 1234417, + "rtt_ms": 1.234417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.583607642Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.850006-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243803, - "rtt_ms": 2.243803, + "rtt_ns": 1467291, + "rtt_ms": 1.467291, "checkpoint": 0, - "vertex_from": "131", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:42.583806171Z" + "vertex_from": "132", + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:45.850092-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240703, - "rtt_ms": 2.240703, + "rtt_ns": 1702167, + "rtt_ms": 1.702167, "checkpoint": 0, - "vertex_from": "131", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.583808421Z" + "vertex_from": "132", + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:45.850319-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355993, - "rtt_ms": 2.355993, + "rtt_ns": 1451417, + "rtt_ms": 1.451417, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "241", - "timestamp": "2025-11-27T01:23:42.583812361Z" + "vertex_to": "881", + "timestamp": "2025-11-27T04:03:45.850368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122427, - "rtt_ms": 1.122427, + "rtt_ns": 1700542, + "rtt_ms": 1.700542, "checkpoint": 0, "vertex_from": "132", "vertex_to": "300", - "timestamp": "2025-11-27T01:23:42.584580439Z" + "timestamp": "2025-11-27T04:03:45.850423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103047, - "rtt_ms": 1.103047, + "rtt_ns": 1816791, + "rtt_ms": 1.816791, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.584588719Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1661955, - "rtt_ms": 1.661955, - "checkpoint": 0, - "vertex_from": "131", - "vertex_to": "881", - "timestamp": "2025-11-27T01:23:42.584595419Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.850424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125307, - "rtt_ms": 1.125307, + "rtt_ns": 1710000, + "rtt_ms": 1.71, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.584612589Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.850463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278636, - "rtt_ms": 1.278636, + "rtt_ns": 1803292, + "rtt_ms": 1.803292, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.584869518Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.850469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418026, - "rtt_ms": 1.418026, + "rtt_ns": 1751666, + "rtt_ms": 1.751666, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:42.585026978Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.851427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835174, - "rtt_ms": 1.835174, + "rtt_ns": 1431750, + "rtt_ms": 1.43175, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.585442986Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:45.851439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731085, - "rtt_ms": 1.731085, + "rtt_ns": 2447500, + "rtt_ms": 2.4475, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:42.585542226Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.852023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900075, - "rtt_ms": 1.900075, + "rtt_ns": 1973250, + "rtt_ms": 1.97325, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "222", - "timestamp": "2025-11-27T01:23:42.585714826Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:45.852066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174636, - "rtt_ms": 1.174636, + "rtt_ns": 2057041, + "rtt_ms": 2.057041, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:42.585788905Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:03:45.852482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254586, - "rtt_ms": 1.254586, + "rtt_ns": 2074959, + "rtt_ms": 2.074959, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "621", - "timestamp": "2025-11-27T01:23:42.585845155Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.852499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056724, - "rtt_ms": 2.056724, + "rtt_ns": 2194125, + "rtt_ms": 2.194125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:42.585863975Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:45.852514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360406, - "rtt_ms": 1.360406, + "rtt_ns": 2164167, + "rtt_ms": 2.164167, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.585942505Z" + "vertex_to": "222", + "timestamp": "2025-11-27T04:03:45.852534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373876, - "rtt_ms": 1.373876, + "rtt_ns": 2083500, + "rtt_ms": 2.0835, "checkpoint": 0, "vertex_from": "132", "vertex_to": "357", - "timestamp": "2025-11-27T01:23:42.585970895Z" + "timestamp": "2025-11-27T04:03:45.852548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621475, - "rtt_ms": 1.621475, + "rtt_ns": 1331083, + "rtt_ms": 1.331083, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.586649393Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.852759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107287, - "rtt_ms": 1.107287, + "rtt_ns": 2304875, + "rtt_ms": 2.304875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "738", - "timestamp": "2025-11-27T01:23:42.586650463Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:45.852774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827635, - "rtt_ms": 1.827635, + "rtt_ns": 1737000, + "rtt_ms": 1.737, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.586699183Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.853177-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1281707, - "rtt_ms": 1.281707, + "rtt_ns": 1174333, + "rtt_ms": 1.174333, "checkpoint": 0, "vertex_from": "599", - "timestamp": "2025-11-27T01:23:42.586727133Z" + "timestamp": "2025-11-27T04:03:45.853199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186017, - "rtt_ms": 1.186017, + "rtt_ns": 1574708, + "rtt_ms": 1.574708, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.587032032Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:03:45.853642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656625, - "rtt_ms": 1.656625, + "rtt_ns": 1112875, + "rtt_ms": 1.112875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.58752194Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.853661-08:00" }, { "operation": "add_edge", - "rtt_ns": 947627, - "rtt_ms": 0.947627, + "rtt_ns": 1264375, + "rtt_ms": 1.264375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.58759942Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.853799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674095, - "rtt_ms": 1.674095, + "rtt_ns": 1315916, + "rtt_ms": 1.315916, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.58764554Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:45.853815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976384, - "rtt_ms": 1.976384, + "rtt_ns": 1519042, + "rtt_ms": 1.519042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.5876925Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.854034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818585, - "rtt_ms": 1.818585, + "rtt_ns": 1274833, + "rtt_ms": 1.274833, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.58776525Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.85405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163926, - "rtt_ms": 1.163926, + "rtt_ns": 1669959, + "rtt_ms": 1.669959, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.587864089Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.854153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155566, - "rtt_ms": 1.155566, + "rtt_ns": 1078958, + "rtt_ms": 1.078958, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "599", - "timestamp": "2025-11-27T01:23:42.587882979Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.855232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234786, - "rtt_ms": 1.234786, + "rtt_ns": 1759083, + "rtt_ms": 1.759083, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.587885649Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.855402-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128214, - "rtt_ms": 2.128214, + "rtt_ns": 2775791, + "rtt_ms": 2.775791, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:42.587917999Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.855535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090887, - "rtt_ms": 1.090887, + "rtt_ns": 1551209, + "rtt_ms": 1.551209, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:42.588737727Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.855602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730015, - "rtt_ms": 1.730015, + "rtt_ns": 2444042, + "rtt_ms": 2.444042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.588763437Z" + "vertex_to": "599", + "timestamp": "2025-11-27T04:03:45.855643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507386, - "rtt_ms": 1.507386, + "rtt_ns": 2058834, + "rtt_ms": 2.058834, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:42.589107916Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:45.855721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427945, - "rtt_ms": 1.427945, + "rtt_ns": 2075583, + "rtt_ms": 2.075583, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.589121955Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:03:45.855891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619105, - "rtt_ms": 1.619105, + "rtt_ns": 1869750, + "rtt_ms": 1.86975, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.589142995Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:03:45.855905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302106, - "rtt_ms": 1.302106, + "rtt_ns": 2971291, + "rtt_ms": 2.971291, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:42.589221585Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.856149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462695, - "rtt_ms": 1.462695, + "rtt_ns": 2393625, + "rtt_ms": 2.393625, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.589229495Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.856193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384516, - "rtt_ms": 1.384516, + "rtt_ns": 1185500, + "rtt_ms": 1.1855, "checkpoint": 0, "vertex_from": "132", "vertex_to": "373", - "timestamp": "2025-11-27T01:23:42.589250605Z" + "timestamp": "2025-11-27T04:03:45.856422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425816, - "rtt_ms": 1.425816, + "rtt_ns": 1157666, + "rtt_ms": 1.157666, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:42.589310425Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:45.856761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075356, - "rtt_ms": 1.075356, + "rtt_ns": 1426958, + "rtt_ms": 1.426958, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.589814453Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:45.856832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983094, - "rtt_ms": 1.983094, + "rtt_ns": 1309250, + "rtt_ms": 1.30925, "checkpoint": 0, "vertex_from": "132", "vertex_to": "339", - "timestamp": "2025-11-27T01:23:42.589870793Z" + "timestamp": "2025-11-27T04:03:45.856845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294206, - "rtt_ms": 1.294206, + "rtt_ns": 1249542, + "rtt_ms": 1.249542, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.590059133Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.856895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068986, - "rtt_ms": 1.068986, + "rtt_ns": 1623750, + "rtt_ms": 1.62375, "checkpoint": 0, "vertex_from": "132", "vertex_to": "952", - "timestamp": "2025-11-27T01:23:42.590179092Z" + "timestamp": "2025-11-27T04:03:45.857516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491396, - "rtt_ms": 1.491396, + "rtt_ns": 1622792, + "rtt_ms": 1.622792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.590635711Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.857529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531526, - "rtt_ms": 1.531526, + "rtt_ns": 1383291, + "rtt_ms": 1.383291, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.590655341Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.857534-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039994, - "rtt_ms": 2.039994, + "rtt_ns": 1959083, + "rtt_ms": 1.959083, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.591352339Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.857681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318143, - "rtt_ms": 2.318143, + "rtt_ns": 1563500, + "rtt_ms": 1.5635, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:42.591570538Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.857758-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533603, - "rtt_ms": 2.533603, + "rtt_ns": 1741083, + "rtt_ms": 1.741083, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.591757058Z" + "vertex_to": "873", + "timestamp": "2025-11-27T04:03:45.858164-08:00" }, { "operation": "add_edge", - "rtt_ns": 3183881, - "rtt_ms": 3.183881, + "rtt_ns": 1626375, + "rtt_ms": 1.626375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "873", - "timestamp": "2025-11-27T01:23:42.592415106Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.858459-08:00" }, { "operation": "add_edge", - "rtt_ns": 2641323, - "rtt_ms": 2.641323, + "rtt_ns": 1740042, + "rtt_ms": 1.740042, "checkpoint": 0, "vertex_from": "132", "vertex_to": "553", - "timestamp": "2025-11-27T01:23:42.592513736Z" + "timestamp": "2025-11-27T04:03:45.858635-08:00" }, { "operation": "add_edge", - "rtt_ns": 2720272, - "rtt_ms": 2.720272, + "rtt_ns": 1889084, + "rtt_ms": 1.889084, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "237", - "timestamp": "2025-11-27T01:23:42.592536425Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:45.858651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944964, - "rtt_ms": 1.944964, + "rtt_ns": 1225041, + "rtt_ms": 1.225041, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.592602075Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:45.858755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2606022, - "rtt_ms": 2.606022, + "rtt_ns": 1271458, + "rtt_ms": 1.271458, "checkpoint": 0, "vertex_from": "132", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.592666415Z" + "timestamp": "2025-11-27T04:03:45.85879-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099524, - "rtt_ms": 2.099524, + "rtt_ns": 1272000, + "rtt_ms": 1.272, "checkpoint": 0, "vertex_from": "132", "vertex_to": "372", - "timestamp": "2025-11-27T01:23:42.592737035Z" + "timestamp": "2025-11-27T04:03:45.858807-08:00" }, { "operation": "add_edge", - "rtt_ns": 2576323, - "rtt_ms": 2.576323, + "rtt_ns": 2028125, + "rtt_ms": 2.028125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:42.592756685Z" + "vertex_to": "237", + "timestamp": "2025-11-27T04:03:45.858874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492466, - "rtt_ms": 1.492466, + "rtt_ns": 2070542, + "rtt_ms": 2.070542, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.592845995Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:45.859752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407196, - "rtt_ms": 1.407196, + "rtt_ns": 1783000, + "rtt_ms": 1.783, "checkpoint": 0, "vertex_from": "132", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.592979514Z" + "timestamp": "2025-11-27T04:03:45.859948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241706, - "rtt_ms": 1.241706, + "rtt_ns": 1488166, + "rtt_ms": 1.488166, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:42.593000124Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.860125-08:00" }, { "operation": "add_edge", - "rtt_ns": 773438, - "rtt_ms": 0.773438, + "rtt_ns": 2428958, + "rtt_ms": 2.428958, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.593189924Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.860189-08:00" }, { "operation": "add_edge", - "rtt_ns": 712118, - "rtt_ms": 0.712118, + "rtt_ns": 1654084, + "rtt_ms": 1.654084, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.593249803Z" + "vertex_to": "310", + "timestamp": "2025-11-27T04:03:45.860306-08:00" }, { "operation": "add_edge", - "rtt_ns": 776498, - "rtt_ms": 0.776498, + "rtt_ns": 1639958, + "rtt_ms": 1.639958, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "310", - "timestamp": "2025-11-27T01:23:42.593292243Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:45.860515-08:00" }, { "operation": "add_edge", - "rtt_ns": 841068, - "rtt_ms": 0.841068, + "rtt_ns": 1887875, + "rtt_ms": 1.887875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.593444333Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:45.860644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282426, - "rtt_ms": 1.282426, + "rtt_ns": 2330375, + "rtt_ms": 2.330375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.593949631Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:45.86079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265196, - "rtt_ms": 1.265196, + "rtt_ns": 2016208, + "rtt_ms": 2.016208, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:42.594003711Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.860824-08:00" }, { "operation": "add_edge", - "rtt_ns": 868767, - "rtt_ms": 0.868767, + "rtt_ns": 2098916, + "rtt_ms": 2.098916, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "915", - "timestamp": "2025-11-27T01:23:42.594060341Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.86089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099907, - "rtt_ms": 1.099907, + "rtt_ns": 1232708, + "rtt_ms": 1.232708, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:42.594081011Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:45.860986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084547, - "rtt_ms": 1.084547, + "rtt_ns": 1426916, + "rtt_ms": 1.426916, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:42.594086321Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:45.861552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368296, - "rtt_ms": 1.368296, + "rtt_ns": 1257250, + "rtt_ms": 1.25725, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:42.594126681Z" + "vertex_to": "915", + "timestamp": "2025-11-27T04:03:45.861565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325196, - "rtt_ms": 1.325196, + "rtt_ns": 1794625, + "rtt_ms": 1.794625, "checkpoint": 0, "vertex_from": "132", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:42.594172801Z" + "timestamp": "2025-11-27T04:03:45.861744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086307, - "rtt_ms": 1.086307, + "rtt_ns": 1583834, + "rtt_ms": 1.583834, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:42.59433751Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:45.861776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613226, - "rtt_ms": 1.613226, + "rtt_ns": 1237417, + "rtt_ms": 1.237417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:42.594906619Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:03:45.862029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677345, - "rtt_ms": 1.677345, + "rtt_ns": 1737791, + "rtt_ms": 1.737791, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "970", - "timestamp": "2025-11-27T01:23:42.595122668Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:03:45.862385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387826, - "rtt_ms": 1.387826, + "rtt_ns": 1885750, + "rtt_ms": 1.88575, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.595470577Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:45.862402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404396, - "rtt_ms": 1.404396, + "rtt_ns": 1885666, + "rtt_ms": 1.885666, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.595492077Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:45.862711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471296, - "rtt_ms": 1.471296, + "rtt_ns": 1986167, + "rtt_ms": 1.986167, "checkpoint": 0, "vertex_from": "132", "vertex_to": "394", - "timestamp": "2025-11-27T01:23:42.595533087Z" + "timestamp": "2025-11-27T04:03:45.862973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560956, - "rtt_ms": 1.560956, + "rtt_ns": 1559041, + "rtt_ms": 1.559041, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:42.595566417Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.863124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443586, - "rtt_ms": 1.443586, + "rtt_ns": 1614959, + "rtt_ms": 1.614959, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "685", - "timestamp": "2025-11-27T01:23:42.595573637Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.863168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753566, - "rtt_ms": 1.753566, + "rtt_ns": 2339542, + "rtt_ms": 2.339542, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:42.595704807Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:45.863232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595205, - "rtt_ms": 1.595205, + "rtt_ns": 1578041, + "rtt_ms": 1.578041, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.595770056Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:03:45.863323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304086, - "rtt_ms": 1.304086, + "rtt_ns": 1659875, + "rtt_ms": 1.659875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:42.596212035Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:45.863437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009385, - "rtt_ms": 2.009385, + "rtt_ns": 1599209, + "rtt_ms": 1.599209, "checkpoint": 0, "vertex_from": "132", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:42.596348235Z" + "timestamp": "2025-11-27T04:03:45.863629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338516, - "rtt_ms": 1.338516, + "rtt_ns": 1541250, + "rtt_ms": 1.54125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:42.596462734Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:45.863927-08:00" }, { "operation": "add_edge", - "rtt_ns": 999917, - "rtt_ms": 0.999917, + "rtt_ns": 1643042, + "rtt_ms": 1.643042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:42.596493864Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:45.864045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778925, - "rtt_ms": 1.778925, + "rtt_ns": 1268000, + "rtt_ms": 1.268, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:42.597313272Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:45.864592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967894, - "rtt_ms": 1.967894, + "rtt_ns": 1526416, + "rtt_ms": 1.526416, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.597440101Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:45.864652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243986, - "rtt_ms": 1.243986, + "rtt_ns": 1267750, + "rtt_ms": 1.26775, "checkpoint": 0, "vertex_from": "132", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:42.597461601Z" + "timestamp": "2025-11-27T04:03:45.864897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762034, - "rtt_ms": 1.762034, + "rtt_ns": 1518458, + "rtt_ms": 1.518458, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:42.597468391Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.864958-08:00" }, { "operation": "add_edge", - "rtt_ns": 992287, - "rtt_ms": 0.992287, + "rtt_ns": 1808417, + "rtt_ms": 1.808417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:42.597490791Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:45.864977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921124, - "rtt_ms": 1.921124, + "rtt_ns": 2280250, + "rtt_ms": 2.28025, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:42.597496541Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.864992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933404, - "rtt_ms": 1.933404, + "rtt_ns": 1774792, + "rtt_ms": 1.774792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:42.597501071Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:45.865007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155426, - "rtt_ms": 1.155426, + "rtt_ns": 2190792, + "rtt_ms": 2.190792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "133", - "timestamp": "2025-11-27T01:23:42.597505971Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:45.865164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740015, - "rtt_ms": 1.740015, + "rtt_ns": 1277458, + "rtt_ms": 1.277458, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.597511241Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:03:45.865205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049917, - "rtt_ms": 1.049917, + "rtt_ns": 1300459, + "rtt_ms": 1.300459, "checkpoint": 0, "vertex_from": "132", "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.597517641Z" + "timestamp": "2025-11-27T04:03:45.865347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321306, - "rtt_ms": 1.321306, + "rtt_ns": 1165542, + "rtt_ms": 1.165542, "checkpoint": 0, "vertex_from": "132", "vertex_to": "195", - "timestamp": "2025-11-27T01:23:42.598636888Z" + "timestamp": "2025-11-27T04:03:45.865819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546496, - "rtt_ms": 1.546496, + "rtt_ns": 1363291, + "rtt_ms": 1.363291, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:42.599010087Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:45.865957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572676, - "rtt_ms": 1.572676, + "rtt_ns": 1567125, + "rtt_ms": 1.567125, "checkpoint": 0, "vertex_from": "132", "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.599071427Z" + "timestamp": "2025-11-27T04:03:45.866575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650605, - "rtt_ms": 1.650605, + "rtt_ns": 1648875, + "rtt_ms": 1.648875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:42.599154246Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:45.866608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678285, - "rtt_ms": 1.678285, + "rtt_ns": 1480292, + "rtt_ms": 1.480292, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.599198066Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.866686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692005, - "rtt_ms": 1.692005, + "rtt_ns": 1521042, + "rtt_ms": 1.521042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.599200666Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:45.866686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723645, - "rtt_ms": 1.723645, + "rtt_ns": 1781708, + "rtt_ms": 1.781708, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.599216146Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.86676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921825, - "rtt_ms": 1.921825, + "rtt_ns": 1481125, + "rtt_ms": 1.481125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.599392486Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:45.866828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134444, - "rtt_ms": 2.134444, + "rtt_ns": 2046875, + "rtt_ms": 2.046875, "checkpoint": 0, "vertex_from": "132", "vertex_to": "787", - "timestamp": "2025-11-27T01:23:42.599576365Z" + "timestamp": "2025-11-27T04:03:45.866945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106064, - "rtt_ms": 2.106064, + "rtt_ns": 1968083, + "rtt_ms": 1.968083, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:42.599619075Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:45.86696-08:00" }, { "operation": "add_edge", - "rtt_ns": 817137, - "rtt_ms": 0.817137, + "rtt_ns": 1161667, + "rtt_ms": 1.161667, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:42.599828174Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:45.866981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207966, - "rtt_ms": 1.207966, + "rtt_ns": 1880708, + "rtt_ms": 1.880708, "checkpoint": 0, "vertex_from": "132", "vertex_to": "269", - "timestamp": "2025-11-27T01:23:42.599847624Z" + "timestamp": "2025-11-27T04:03:45.867839-08:00" }, { "operation": "add_edge", - "rtt_ns": 943757, - "rtt_ms": 0.943757, + "rtt_ns": 1888125, + "rtt_ms": 1.888125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.600016324Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:45.868464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245664, - "rtt_ms": 2.245664, + "rtt_ns": 1579583, + "rtt_ms": 1.579583, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.60144514Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:45.86854-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317284, - "rtt_ms": 2.317284, + "rtt_ns": 1938459, + "rtt_ms": 1.938459, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:42.60151977Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:45.868626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2339933, - "rtt_ms": 2.339933, + "rtt_ns": 2028625, + "rtt_ms": 2.028625, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "171", - "timestamp": "2025-11-27T01:23:42.601558999Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1723615, - "rtt_ms": 1.723615, - "checkpoint": 0, - "vertex_from": "365", - "timestamp": "2025-11-27T01:23:42.601575039Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.868639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2955182, - "rtt_ms": 2.955182, + "rtt_ns": 1747042, + "rtt_ms": 1.747042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:42.602111748Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.868694-08:00" }, { "operation": "add_edge", - "rtt_ns": 2890961, - "rtt_ms": 2.890961, + "rtt_ns": 1950709, + "rtt_ms": 1.950709, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.602285177Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:45.868711-08:00" }, { "operation": "add_edge", - "rtt_ns": 2468373, - "rtt_ms": 2.468373, + "rtt_ns": 2156542, + "rtt_ms": 2.156542, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.602298197Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:03:45.868987-08:00" }, { "operation": "add_edge", - "rtt_ns": 2738742, - "rtt_ms": 2.738742, + "rtt_ns": 2304250, + "rtt_ms": 2.30425, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:42.602316767Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.868993-08:00" }, { "operation": "add_edge", - "rtt_ns": 2713312, - "rtt_ms": 2.713312, + "rtt_ns": 2027458, + "rtt_ms": 2.027458, "checkpoint": 0, "vertex_from": "132", "vertex_to": "186", - "timestamp": "2025-11-27T01:23:42.602338337Z" + "timestamp": "2025-11-27T04:03:45.86901-08:00" }, { "operation": "add_edge", - "rtt_ns": 2374363, - "rtt_ms": 2.374363, + "rtt_ns": 1802041, + "rtt_ms": 1.802041, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:42.602393057Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.869642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546065, - "rtt_ms": 1.546065, + "rtt_ns": 1562125, + "rtt_ms": 1.562125, "checkpoint": 0, "vertex_from": "133", "vertex_to": "218", - "timestamp": "2025-11-27T01:23:42.603069495Z" + "timestamp": "2025-11-27T04:03:45.870202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033327, - "rtt_ms": 1.033327, + "rtt_ns": 1696333, + "rtt_ms": 1.696333, "checkpoint": 0, - "vertex_from": "133", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.603146485Z" + "vertex_from": "132", + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.870323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602986, - "rtt_ms": 1.602986, + "rtt_ns": 1643125, + "rtt_ms": 1.643125, "checkpoint": 0, "vertex_from": "133", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.603163095Z" + "timestamp": "2025-11-27T04:03:45.870338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758475, - "rtt_ms": 1.758475, + "rtt_ns": 1707041, + "rtt_ms": 1.707041, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.603205755Z" + "vertex_from": "133", + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.870419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2213664, - "rtt_ms": 2.213664, + "rtt_ns": 1476458, + "rtt_ms": 1.476458, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "365", - "timestamp": "2025-11-27T01:23:42.603789113Z" + "vertex_from": "133", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.870464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645466, - "rtt_ms": 1.645466, + "rtt_ns": 1519709, + "rtt_ms": 1.519709, "checkpoint": 0, "vertex_from": "133", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.603946223Z" + "timestamp": "2025-11-27T04:03:45.870513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685266, - "rtt_ms": 1.685266, + "rtt_ns": 1710541, + "rtt_ms": 1.710541, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.603971973Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:45.870721-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2273167, + "rtt_ms": 2.273167, + "checkpoint": 0, + "vertex_from": "365", + "timestamp": "2025-11-27T04:03:45.870739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647036, - "rtt_ms": 1.647036, + "rtt_ns": 2281417, + "rtt_ms": 2.281417, "checkpoint": 0, - "vertex_from": "133", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:42.603987423Z" + "vertex_from": "132", + "vertex_to": "587", + "timestamp": "2025-11-27T04:03:45.870823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690486, - "rtt_ms": 1.690486, + "rtt_ns": 1703250, + "rtt_ms": 1.70325, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:42.604008563Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:45.871348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640065, - "rtt_ms": 1.640065, + "rtt_ns": 1239709, + "rtt_ms": 1.239709, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.604034872Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:45.871564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191466, - "rtt_ms": 1.191466, + "rtt_ns": 1424709, + "rtt_ms": 1.424709, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.604356071Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.871628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328776, - "rtt_ms": 1.328776, + "rtt_ns": 1448542, + "rtt_ms": 1.448542, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:42.604476391Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.871962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448676, - "rtt_ms": 1.448676, + "rtt_ns": 1663583, + "rtt_ms": 1.663583, "checkpoint": 0, "vertex_from": "133", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.604655521Z" + "timestamp": "2025-11-27T04:03:45.872129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611505, - "rtt_ms": 1.611505, + "rtt_ns": 1814500, + "rtt_ms": 1.8145, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:42.60468313Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:03:45.872153-08:00" }, { "operation": "add_edge", - "rtt_ns": 915857, - "rtt_ms": 0.915857, + "rtt_ns": 1835666, + "rtt_ms": 1.835666, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.60470584Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.872255-08:00" }, { "operation": "add_edge", - "rtt_ns": 816787, - "rtt_ms": 0.816787, + "rtt_ns": 1597667, + "rtt_ms": 1.597667, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.60479111Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:45.87232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430885, - "rtt_ms": 1.430885, + "rtt_ns": 1700959, + "rtt_ms": 1.700959, "checkpoint": 0, - "vertex_from": "133", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.605420608Z" + "vertex_from": "132", + "vertex_to": "365", + "timestamp": "2025-11-27T04:03:45.87244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447236, - "rtt_ms": 1.447236, + "rtt_ns": 2058708, + "rtt_ms": 2.058708, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.605459178Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.872884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620205, - "rtt_ms": 1.620205, + "rtt_ns": 1729000, + "rtt_ms": 1.729, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:42.605567878Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.873295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583346, - "rtt_ms": 1.583346, + "rtt_ns": 1702916, + "rtt_ms": 1.702916, "checkpoint": 0, "vertex_from": "133", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.605619368Z" + "timestamp": "2025-11-27T04:03:45.873332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368036, - "rtt_ms": 1.368036, + "rtt_ns": 1406458, + "rtt_ms": 1.406458, "checkpoint": 0, "vertex_from": "133", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.605726047Z" + "timestamp": "2025-11-27T04:03:45.873369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252946, - "rtt_ms": 1.252946, + "rtt_ns": 2068500, + "rtt_ms": 2.0685, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.605730217Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.873417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559616, - "rtt_ms": 1.559616, + "rtt_ns": 1347000, + "rtt_ms": 1.347, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.606247696Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.873476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706744, - "rtt_ms": 1.706744, + "rtt_ns": 1336083, + "rtt_ms": 1.336083, "checkpoint": 0, "vertex_from": "133", "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.606363185Z" + "timestamp": "2025-11-27T04:03:45.87349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670325, - "rtt_ms": 1.670325, + "rtt_ns": 1349375, + "rtt_ms": 1.349375, "checkpoint": 0, "vertex_from": "133", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.606377885Z" + "timestamp": "2025-11-27T04:03:45.87367-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1915042, + "rtt_ms": 1.915042, + "checkpoint": 0, + "vertex_from": "133", + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.874171-08:00" }, { "operation": "add_edge", - "rtt_ns": 963227, - "rtt_ms": 0.963227, + "rtt_ns": 1507750, + "rtt_ms": 1.50775, "checkpoint": 0, "vertex_from": "133", "vertex_to": "600", - "timestamp": "2025-11-27T01:23:42.606386605Z" + "timestamp": "2025-11-27T04:03:45.874393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612435, - "rtt_ms": 1.612435, + "rtt_ns": 1104459, + "rtt_ms": 1.104459, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.606404985Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.874475-08:00" }, { "operation": "add_edge", - "rtt_ns": 965917, - "rtt_ms": 0.965917, + "rtt_ns": 2157084, + "rtt_ms": 2.157084, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.606426285Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:45.874599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038457, - "rtt_ms": 1.038457, + "rtt_ns": 1260208, + "rtt_ms": 1.260208, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:42.606607285Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:45.874737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708505, - "rtt_ms": 1.708505, + "rtt_ns": 1503500, + "rtt_ms": 1.5035, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.607328803Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:45.8748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740655, - "rtt_ms": 1.740655, + "rtt_ns": 1687416, + "rtt_ms": 1.687416, "checkpoint": 0, "vertex_from": "133", "vertex_to": "621", - "timestamp": "2025-11-27T01:23:42.607467732Z" + "timestamp": "2025-11-27T04:03:45.875106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984185, - "rtt_ms": 1.984185, + "rtt_ns": 1718500, + "rtt_ms": 1.7185, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:42.60839055Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.875209-08:00" }, { "operation": "add_edge", - "rtt_ns": 2773982, - "rtt_ms": 2.773982, + "rtt_ns": 1979625, + "rtt_ms": 1.979625, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:42.608505989Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:45.875312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2127944, - "rtt_ms": 2.127944, + "rtt_ns": 1253625, + "rtt_ms": 1.253625, "checkpoint": 0, "vertex_from": "133", "vertex_to": "646", - "timestamp": "2025-11-27T01:23:42.608507519Z" + "timestamp": "2025-11-27T04:03:45.875425-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159974, - "rtt_ms": 2.159974, + "rtt_ns": 2069000, + "rtt_ms": 2.069, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:42.608547839Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:45.875739-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121054, - "rtt_ms": 2.121054, + "rtt_ns": 1049084, + "rtt_ms": 1.049084, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.608548899Z" + "vertex_to": "175", + "timestamp": "2025-11-27T04:03:45.876363-08:00" }, { "operation": "add_edge", - "rtt_ns": 2327023, - "rtt_ms": 2.327023, + "rtt_ns": 1284500, + "rtt_ms": 1.2845, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.608575969Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.876391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241724, - "rtt_ms": 2.241724, + "rtt_ns": 2191583, + "rtt_ms": 2.191583, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:42.608606769Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:45.876667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280467, - "rtt_ms": 1.280467, + "rtt_ns": 2020250, + "rtt_ms": 2.02025, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.608749469Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:45.876759-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177483, - "rtt_ms": 2.177483, + "rtt_ns": 1619958, + "rtt_ms": 1.619958, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.608786928Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.87683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461515, - "rtt_ms": 1.461515, + "rtt_ns": 2461083, + "rtt_ms": 2.461083, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:42.608792248Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:03:45.876855-08:00" }, { "operation": "add_edge", - "rtt_ns": 836757, - "rtt_ms": 0.836757, + "rtt_ns": 2117750, + "rtt_ms": 2.11775, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.609228767Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:45.87692-08:00" }, { "operation": "add_edge", - "rtt_ns": 825578, - "rtt_ms": 0.825578, + "rtt_ns": 2324208, + "rtt_ms": 2.324208, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:42.609334717Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.876924-08:00" }, { "operation": "add_edge", - "rtt_ns": 785248, - "rtt_ms": 0.785248, + "rtt_ns": 1549000, + "rtt_ms": 1.549, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.609362127Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:45.876977-08:00" }, { "operation": "add_edge", - "rtt_ns": 899438, - "rtt_ms": 0.899438, + "rtt_ns": 1582125, + "rtt_ms": 1.582125, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.609450167Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.877322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509006, - "rtt_ms": 1.509006, + "rtt_ns": 1463625, + "rtt_ms": 1.463625, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "175", - "timestamp": "2025-11-27T01:23:42.610016215Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.877857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380447, - "rtt_ms": 1.380447, + "rtt_ns": 1114750, + "rtt_ms": 1.11475, "checkpoint": 0, "vertex_from": "133", "vertex_to": "557", - "timestamp": "2025-11-27T01:23:42.610168405Z" + "timestamp": "2025-11-27T04:03:45.877946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378027, - "rtt_ms": 1.378027, + "rtt_ns": 1673250, + "rtt_ms": 1.67325, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.610171445Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.878038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625276, - "rtt_ms": 1.625276, + "rtt_ns": 1406875, + "rtt_ms": 1.406875, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.610174265Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:45.878075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489845, - "rtt_ms": 1.489845, + "rtt_ns": 1381417, + "rtt_ms": 1.381417, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:42.610241194Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:45.878302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136777, - "rtt_ms": 1.136777, + "rtt_ns": 1605875, + "rtt_ms": 1.605875, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:42.610367144Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:45.878366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776435, - "rtt_ms": 1.776435, + "rtt_ns": 1521000, + "rtt_ms": 1.521, "checkpoint": 0, - "vertex_from": "133", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:42.610385224Z" + "vertex_from": "134", + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.878499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515566, - "rtt_ms": 1.515566, + "rtt_ns": 1748792, + "rtt_ms": 1.748792, "checkpoint": 0, "vertex_from": "134", "vertex_to": "777", - "timestamp": "2025-11-27T01:23:42.610851973Z" + "timestamp": "2025-11-27T04:03:45.878674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540126, - "rtt_ms": 1.540126, + "rtt_ns": 1925917, + "rtt_ms": 1.925917, "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.610902933Z" + "vertex_from": "133", + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.878782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508655, - "rtt_ms": 1.508655, + "rtt_ns": 1736584, + "rtt_ms": 1.736584, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:42.610959742Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:03:45.879594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394226, - "rtt_ms": 1.394226, + "rtt_ns": 1591000, + "rtt_ms": 1.591, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "217", - "timestamp": "2025-11-27T01:23:42.611411771Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:45.879667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108477, - "rtt_ms": 1.108477, + "rtt_ns": 1889458, + "rtt_ms": 1.889458, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.611476521Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.87993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289067, - "rtt_ms": 1.289067, + "rtt_ns": 1628583, + "rtt_ms": 1.628583, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.611531471Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.880129-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118803, - "rtt_ms": 2.118803, + "rtt_ns": 1552250, + "rtt_ms": 1.55225, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:42.612293978Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:45.880227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413305, - "rtt_ms": 1.413305, + "rtt_ns": 1940208, + "rtt_ms": 1.940208, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.612317808Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.880244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000644, - "rtt_ms": 2.000644, + "rtt_ns": 2298792, + "rtt_ms": 2.298792, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.612386978Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.880248-08:00" }, { "operation": "add_edge", - "rtt_ns": 2223003, - "rtt_ms": 2.223003, + "rtt_ns": 1643125, + "rtt_ms": 1.643125, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.612396268Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:45.880426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554245, - "rtt_ms": 1.554245, + "rtt_ns": 2122417, + "rtt_ms": 2.122417, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:42.612407278Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.88049-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241503, - "rtt_ms": 2.241503, + "rtt_ns": 3314792, + "rtt_ms": 3.314792, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.612411438Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:45.880638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452276, - "rtt_ms": 1.452276, + "rtt_ns": 1796292, + "rtt_ms": 1.796292, "checkpoint": 0, "vertex_from": "134", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.612413738Z" + "timestamp": "2025-11-27T04:03:45.881391-08:00" }, { "operation": "add_edge", - "rtt_ns": 971968, - "rtt_ms": 0.971968, + "rtt_ns": 1274666, + "rtt_ms": 1.274666, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "628", - "timestamp": "2025-11-27T01:23:42.613267336Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:45.881404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811065, - "rtt_ms": 1.811065, + "rtt_ns": 1481625, + "rtt_ms": 1.481625, "checkpoint": 0, "vertex_from": "134", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.613288486Z" + "timestamp": "2025-11-27T04:03:45.881412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939724, - "rtt_ms": 1.939724, + "rtt_ns": 1782083, + "rtt_ms": 1.782083, "checkpoint": 0, "vertex_from": "134", "vertex_to": "354", - "timestamp": "2025-11-27T01:23:42.613352705Z" + "timestamp": "2025-11-27T04:03:45.881453-08:00" }, { "operation": "add_edge", - "rtt_ns": 959827, - "rtt_ms": 0.959827, + "rtt_ns": 1431042, + "rtt_ms": 1.431042, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.613357885Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:03:45.881676-08:00" }, { "operation": "add_edge", - "rtt_ns": 989307, - "rtt_ms": 0.989307, + "rtt_ns": 1526875, + "rtt_ms": 1.526875, "checkpoint": 0, "vertex_from": "134", "vertex_to": "206", - "timestamp": "2025-11-27T01:23:42.613378205Z" + "timestamp": "2025-11-27T04:03:45.881775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068267, - "rtt_ms": 1.068267, + "rtt_ns": 1913125, + "rtt_ms": 1.913125, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "136", - "timestamp": "2025-11-27T01:23:42.613388105Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:03:45.882143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916834, - "rtt_ms": 1.916834, + "rtt_ns": 1856250, + "rtt_ms": 1.85625, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:42.613449455Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.882283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050267, - "rtt_ms": 1.050267, + "rtt_ns": 1805875, + "rtt_ms": 1.805875, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.613464885Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:45.882296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055457, - "rtt_ms": 1.055457, + "rtt_ns": 1660125, + "rtt_ms": 1.660125, "checkpoint": 0, "vertex_from": "134", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:42.613467985Z" + "timestamp": "2025-11-27T04:03:45.882299-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1110817, - "rtt_ms": 1.110817, + "operation": "add_vertex", + "rtt_ns": 1016209, + "rtt_ms": 1.016209, "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.613519595Z" + "vertex_from": "221", + "timestamp": "2025-11-27T04:03:45.882794-08:00" }, { "operation": "add_edge", - "rtt_ns": 972537, - "rtt_ms": 0.972537, + "rtt_ns": 1624958, + "rtt_ms": 1.624958, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:42.614331682Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.883019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100346, - "rtt_ms": 1.100346, + "rtt_ns": 1648292, + "rtt_ms": 1.648292, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "500", - "timestamp": "2025-11-27T01:23:42.614369282Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.883061-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1057787, - "rtt_ms": 1.057787, + "operation": "add_edge", + "rtt_ns": 1704917, + "rtt_ms": 1.704917, "checkpoint": 0, - "vertex_from": "221", - "timestamp": "2025-11-27T01:23:42.614438572Z" + "vertex_from": "134", + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:45.883382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162207, - "rtt_ms": 1.162207, + "rtt_ns": 1994542, + "rtt_ms": 1.994542, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.614516052Z" + "vertex_to": "500", + "timestamp": "2025-11-27T04:03:45.8834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281506, - "rtt_ms": 1.281506, + "rtt_ns": 1974000, + "rtt_ms": 1.974, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.614571992Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:45.883429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119967, - "rtt_ms": 1.119967, + "rtt_ns": 1127666, + "rtt_ms": 1.127666, "checkpoint": 0, "vertex_from": "134", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:42.614589422Z" + "timestamp": "2025-11-27T04:03:45.883429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206257, - "rtt_ms": 1.206257, + "rtt_ns": 1335958, + "rtt_ms": 1.335958, "checkpoint": 0, "vertex_from": "134", "vertex_to": "168", - "timestamp": "2025-11-27T01:23:42.614595602Z" + "timestamp": "2025-11-27T04:03:45.88348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174406, - "rtt_ms": 1.174406, + "rtt_ns": 1112833, + "rtt_ms": 1.112833, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.614640641Z" + "vertex_to": "221", + "timestamp": "2025-11-27T04:03:45.883908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647335, - "rtt_ms": 1.647335, + "rtt_ns": 1973875, + "rtt_ms": 1.973875, "checkpoint": 0, "vertex_from": "134", "vertex_to": "396", - "timestamp": "2025-11-27T01:23:42.61509832Z" + "timestamp": "2025-11-27T04:03:45.884258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797854, - "rtt_ms": 1.797854, + "rtt_ns": 2079791, + "rtt_ms": 2.079791, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.615318479Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.884377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326226, - "rtt_ms": 1.326226, + "rtt_ns": 1504875, + "rtt_ms": 1.504875, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:42.615696408Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:03:45.884568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287846, - "rtt_ms": 1.287846, + "rtt_ns": 1655500, + "rtt_ms": 1.6555, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "221", - "timestamp": "2025-11-27T01:23:42.615726828Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.884676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224096, - "rtt_ms": 1.224096, + "rtt_ns": 1516834, + "rtt_ms": 1.516834, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.615741208Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:45.884947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469806, - "rtt_ms": 1.469806, + "rtt_ns": 1729709, + "rtt_ms": 1.729709, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "301", - "timestamp": "2025-11-27T01:23:42.615802598Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.885131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239406, - "rtt_ms": 1.239406, + "rtt_ns": 1660917, + "rtt_ms": 1.660917, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:42.615812608Z" + "vertex_to": "234", + "timestamp": "2025-11-27T04:03:45.885143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302556, - "rtt_ms": 1.302556, + "rtt_ns": 1734250, + "rtt_ms": 1.73425, "checkpoint": 0, "vertex_from": "134", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.615893168Z" + "timestamp": "2025-11-27T04:03:45.885164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272666, - "rtt_ms": 1.272666, + "rtt_ns": 1472000, + "rtt_ms": 1.472, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.616372006Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.885382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397166, - "rtt_ms": 1.397166, + "rtt_ns": 1244417, + "rtt_ms": 1.244417, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.616716925Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:45.885815-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118734, - "rtt_ms": 2.118734, + "rtt_ns": 1517833, + "rtt_ms": 1.517833, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.616761125Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.885895-08:00" }, { "operation": "add_edge", - "rtt_ns": 2181833, - "rtt_ms": 2.181833, + "rtt_ns": 2670458, + "rtt_ms": 2.670458, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "234", - "timestamp": "2025-11-27T01:23:42.616778925Z" - }, - { - "operation": "add_edge", - "rtt_ns": 687649, - "rtt_ms": 0.687649, - "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.617405264Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:45.886054-08:00" }, { "operation": "add_edge", - "rtt_ns": 793008, - "rtt_ms": 0.793008, + "rtt_ns": 1395917, + "rtt_ms": 1.395917, "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:42.617573033Z" + "vertex_from": "134", + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:45.886073-08:00" }, { "operation": "add_edge", - "rtt_ns": 826428, - "rtt_ms": 0.826428, + "rtt_ns": 1909000, + "rtt_ms": 1.909, "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.617588553Z" + "vertex_from": "134", + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.886168-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035935, - "rtt_ms": 2.035935, + "rtt_ns": 1501208, + "rtt_ms": 1.501208, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:42.617733413Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:45.886451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877975, - "rtt_ms": 1.877975, + "rtt_ns": 1457084, + "rtt_ms": 1.457084, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:42.617772213Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:45.886601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101154, - "rtt_ms": 2.101154, + "rtt_ns": 1496125, + "rtt_ms": 1.496125, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:42.617843602Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.886628-08:00" }, { "operation": "add_edge", - "rtt_ns": 2136764, - "rtt_ms": 2.136764, + "rtt_ns": 1391834, + "rtt_ms": 1.391834, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.617864462Z" + "vertex_to": "377", + "timestamp": "2025-11-27T04:03:45.886776-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073734, - "rtt_ms": 2.073734, + "rtt_ns": 1624500, + "rtt_ms": 1.6245, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.617877262Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:45.886789-08:00" }, { "operation": "add_edge", - "rtt_ns": 2529873, - "rtt_ms": 2.529873, + "rtt_ns": 1573667, + "rtt_ms": 1.573667, "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:42.618343371Z" + "vertex_from": "135", + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.88747-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1039707, - "rtt_ms": 1.039707, + "operation": "add_edge", + "rtt_ns": 1813083, + "rtt_ms": 1.813083, "checkpoint": 0, - "vertex_from": "619", - "timestamp": "2025-11-27T01:23:42.618446431Z" + "vertex_from": "135", + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.887631-08:00" }, { "operation": "add_edge", - "rtt_ns": 994637, - "rtt_ms": 0.994637, + "rtt_ns": 1617000, + "rtt_ms": 1.617, "checkpoint": 0, "vertex_from": "135", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.61856864Z" + "timestamp": "2025-11-27T04:03:45.887785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080027, - "rtt_ms": 1.080027, + "rtt_ns": 1382250, + "rtt_ms": 1.38225, "checkpoint": 0, "vertex_from": "135", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.61867002Z" + "timestamp": "2025-11-27T04:03:45.887833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2336824, - "rtt_ms": 2.336824, + "rtt_ns": 1822625, + "rtt_ms": 1.822625, "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "377", - "timestamp": "2025-11-27T01:23:42.61870975Z" + "vertex_from": "135", + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:45.887877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592985, - "rtt_ms": 1.592985, + "rtt_ns": 1291583, + "rtt_ms": 1.291583, "checkpoint": 0, "vertex_from": "135", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.619327318Z" + "timestamp": "2025-11-27T04:03:45.887894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626865, - "rtt_ms": 1.626865, + "rtt_ns": 1368041, + "rtt_ms": 1.368041, "checkpoint": 0, "vertex_from": "135", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.619399858Z" + "timestamp": "2025-11-27T04:03:45.887996-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1115687, - "rtt_ms": 1.115687, + "operation": "add_vertex", + "rtt_ns": 2101334, + "rtt_ms": 2.101334, "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:42.619460088Z" + "vertex_from": "619", + "timestamp": "2025-11-27T04:03:45.888175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623456, - "rtt_ms": 1.623456, + "rtt_ns": 2146041, + "rtt_ms": 2.146041, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.619488968Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:45.888923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345926, - "rtt_ms": 1.345926, + "rtt_ns": 2151708, + "rtt_ms": 2.151708, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.619915656Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.888942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145864, - "rtt_ms": 2.145864, + "rtt_ns": 1340084, + "rtt_ms": 1.340084, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "156", - "timestamp": "2025-11-27T01:23:42.620024406Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:45.888971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326086, - "rtt_ms": 1.326086, + "rtt_ns": 1153708, + "rtt_ms": 1.153708, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.620036756Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.888988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597375, - "rtt_ms": 1.597375, + "rtt_ns": 1536917, + "rtt_ms": 1.536917, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "619", - "timestamp": "2025-11-27T01:23:42.620044156Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:03:45.889008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447306, - "rtt_ms": 1.447306, + "rtt_ns": 1339666, + "rtt_ms": 1.339666, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.620119386Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:45.889234-08:00" }, { "operation": "add_edge", - "rtt_ns": 751848, - "rtt_ms": 0.751848, + "rtt_ns": 1976958, + "rtt_ms": 1.976958, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:42.620242956Z" + "vertex_from": "135", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.889855-08:00" }, { "operation": "add_edge", - "rtt_ns": 2402033, - "rtt_ms": 2.402033, + "rtt_ns": 2186375, + "rtt_ms": 2.186375, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.620246825Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.889973-08:00" }, { "operation": "add_edge", - "rtt_ns": 868067, - "rtt_ms": 0.868067, + "rtt_ns": 2548292, + "rtt_ms": 2.548292, "checkpoint": 0, "vertex_from": "135", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.620268945Z" + "timestamp": "2025-11-27T04:03:45.890545-08:00" }, { "operation": "add_edge", - "rtt_ns": 966877, - "rtt_ms": 0.966877, + "rtt_ns": 1582375, + "rtt_ms": 1.582375, "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:42.620295905Z" + "vertex_from": "136", + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.890554-08:00" }, { "operation": "add_edge", - "rtt_ns": 845547, - "rtt_ms": 0.845547, + "rtt_ns": 2680417, + "rtt_ms": 2.680417, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.620306385Z" + "vertex_to": "619", + "timestamp": "2025-11-27T04:03:45.890856-08:00" }, { "operation": "add_edge", - "rtt_ns": 862928, - "rtt_ms": 0.862928, + "rtt_ns": 2495583, + "rtt_ms": 2.495583, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.620900464Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:03:45.891438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168137, - "rtt_ms": 1.168137, + "rtt_ns": 2499250, + "rtt_ms": 2.49925, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.621084533Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.891488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077737, - "rtt_ms": 1.077737, + "rtt_ns": 2288209, + "rtt_ms": 2.288209, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.621103993Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:03:45.891523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067427, - "rtt_ms": 1.067427, + "rtt_ns": 2715209, + "rtt_ms": 2.715209, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "307", - "timestamp": "2025-11-27T01:23:42.621112623Z" + "vertex_from": "135", + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.891639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592705, - "rtt_ms": 1.592705, + "rtt_ns": 2019375, + "rtt_ms": 2.019375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "137", - "timestamp": "2025-11-27T01:23:42.621712961Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.892876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501706, - "rtt_ms": 1.501706, + "rtt_ns": 1470791, + "rtt_ms": 1.470791, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.621798361Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:45.89291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589936, - "rtt_ms": 1.589936, + "rtt_ns": 2374541, + "rtt_ms": 2.374541, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:42.621859901Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.892923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643726, - "rtt_ms": 1.643726, + "rtt_ns": 4001625, + "rtt_ms": 4.001625, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:42.621887281Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.89301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632435, - "rtt_ms": 1.632435, + "rtt_ns": 3078417, + "rtt_ms": 3.078417, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.62194005Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:45.893052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157497, - "rtt_ms": 1.157497, + "rtt_ns": 3327542, + "rtt_ms": 3.327542, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.62224409Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:03:45.893184-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024684, - "rtt_ms": 2.024684, + "rtt_ns": 1838583, + "rtt_ms": 1.838583, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.622272329Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.893363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317846, - "rtt_ms": 1.317846, + "rtt_ns": 2005916, + "rtt_ms": 2.005916, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.622423799Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.893494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651645, - "rtt_ms": 1.651645, + "rtt_ns": 3010250, + "rtt_ms": 3.01025, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.622553079Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:45.893566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442346, - "rtt_ms": 1.442346, + "rtt_ns": 2069375, + "rtt_ms": 2.069375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "140", - "timestamp": "2025-11-27T01:23:42.622555949Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.893709-08:00" }, { "operation": "add_edge", - "rtt_ns": 909597, - "rtt_ms": 0.909597, + "rtt_ns": 1633125, + "rtt_ms": 1.633125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:42.622624198Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:03:45.894644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366466, - "rtt_ms": 1.366466, + "rtt_ns": 1831750, + "rtt_ms": 1.83175, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:42.623255247Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:03:45.894709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508445, - "rtt_ms": 1.508445, + "rtt_ns": 1817000, + "rtt_ms": 1.817, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.623308246Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:45.894728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599895, - "rtt_ms": 1.599895, + "rtt_ns": 2049750, + "rtt_ms": 2.04975, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "210", - "timestamp": "2025-11-27T01:23:42.623461096Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.894973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197187, - "rtt_ms": 1.197187, + "rtt_ns": 1422917, + "rtt_ms": 1.422917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:42.623470456Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.89499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601556, - "rtt_ms": 1.601556, + "rtt_ns": 1951792, + "rtt_ms": 1.951792, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.623542606Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:45.895005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337376, - "rtt_ms": 1.337376, + "rtt_ns": 1719375, + "rtt_ms": 1.719375, "checkpoint": 0, "vertex_from": "136", "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.623582416Z" + "timestamp": "2025-11-27T04:03:45.895086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171866, - "rtt_ms": 1.171866, + "rtt_ns": 1617667, + "rtt_ms": 1.617667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.623596795Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:45.895113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673405, - "rtt_ms": 1.673405, + "rtt_ns": 1974750, + "rtt_ms": 1.97475, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:42.624231074Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.89516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852614, - "rtt_ms": 1.852614, + "rtt_ns": 1519000, + "rtt_ms": 1.519, "checkpoint": 0, "vertex_from": "136", "vertex_to": "182", - "timestamp": "2025-11-27T01:23:42.624406793Z" + "timestamp": "2025-11-27T04:03:45.895231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834125, - "rtt_ms": 1.834125, + "rtt_ns": 1028791, + "rtt_ms": 1.028791, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.624459683Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:45.895674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550925, - "rtt_ms": 1.550925, + "rtt_ns": 1663875, + "rtt_ms": 1.663875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.624808002Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.896374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353956, - "rtt_ms": 1.353956, + "rtt_ns": 2463041, + "rtt_ms": 2.463041, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:42.624825752Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:03:45.897577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576226, - "rtt_ms": 1.576226, + "rtt_ns": 2695375, + "rtt_ms": 2.695375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:42.624886592Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.897686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348006, - "rtt_ms": 1.348006, + "rtt_ns": 2692125, + "rtt_ms": 2.692125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "842", - "timestamp": "2025-11-27T01:23:42.624931572Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:45.897698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334497, - "rtt_ms": 1.334497, + "rtt_ns": 2677500, + "rtt_ms": 2.6775, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.624935692Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.897764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536016, - "rtt_ms": 1.536016, + "rtt_ns": 2724583, + "rtt_ms": 2.724583, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.624998262Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:45.897885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454166, - "rtt_ms": 1.454166, + "rtt_ns": 2971500, + "rtt_ms": 2.9715, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.624998832Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:45.897946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161617, - "rtt_ms": 1.161617, + "rtt_ns": 1708667, + "rtt_ms": 1.708667, "checkpoint": 0, "vertex_from": "136", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.62562272Z" + "timestamp": "2025-11-27T04:03:45.898083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447036, - "rtt_ms": 1.447036, + "rtt_ns": 3366084, + "rtt_ms": 3.366084, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:42.62567947Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:45.898095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309447, - "rtt_ms": 1.309447, + "rtt_ns": 2426375, + "rtt_ms": 2.426375, "checkpoint": 0, "vertex_from": "136", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.62571702Z" + "timestamp": "2025-11-27T04:03:45.898103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067217, - "rtt_ms": 1.067217, + "rtt_ns": 2943291, + "rtt_ms": 2.943291, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:42.625876879Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:45.898175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780705, - "rtt_ms": 1.780705, + "rtt_ns": 1263458, + "rtt_ms": 1.263458, "checkpoint": 0, "vertex_from": "136", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.626669727Z" + "timestamp": "2025-11-27T04:03:45.898963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873285, - "rtt_ms": 1.873285, + "rtt_ns": 1195375, + "rtt_ms": 1.195375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.626700347Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:45.899081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722055, - "rtt_ms": 1.722055, + "rtt_ns": 1521042, + "rtt_ms": 1.521042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:42.626721967Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:03:45.899286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823585, - "rtt_ms": 1.823585, + "rtt_ns": 1726666, + "rtt_ms": 1.726666, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:42.626760057Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:45.899305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764715, - "rtt_ms": 1.764715, + "rtt_ns": 1462375, + "rtt_ms": 1.462375, "checkpoint": 0, "vertex_from": "136", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.626764107Z" + "timestamp": "2025-11-27T04:03:45.899409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845775, - "rtt_ms": 1.845775, + "rtt_ns": 1242667, + "rtt_ms": 1.242667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "138", - "timestamp": "2025-11-27T01:23:42.626778497Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:45.899418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385466, - "rtt_ms": 1.385466, + "rtt_ns": 1343416, + "rtt_ms": 1.343416, "checkpoint": 0, "vertex_from": "136", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.627009396Z" + "timestamp": "2025-11-27T04:03:45.899439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495335, - "rtt_ms": 1.495335, + "rtt_ns": 1793375, + "rtt_ms": 1.793375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.627176605Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:45.89948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324066, - "rtt_ms": 1.324066, + "rtt_ns": 1477542, + "rtt_ms": 1.477542, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:42.627201685Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:45.899581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501025, - "rtt_ms": 1.501025, + "rtt_ns": 1507875, + "rtt_ms": 1.507875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:42.627219455Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:45.899594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398206, - "rtt_ms": 1.398206, + "rtt_ns": 1075583, + "rtt_ms": 1.075583, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.628163283Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:45.900671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908324, - "rtt_ms": 1.908324, + "rtt_ns": 1741875, + "rtt_ms": 1.741875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:42.628669781Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.900824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052814, - "rtt_ms": 2.052814, + "rtt_ns": 1547000, + "rtt_ms": 1.547, "checkpoint": 0, "vertex_from": "136", "vertex_to": "361", - "timestamp": "2025-11-27T01:23:42.628760061Z" + "timestamp": "2025-11-27T04:03:45.900834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055264, - "rtt_ms": 2.055264, + "rtt_ns": 1517042, + "rtt_ms": 1.517042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:42.628778621Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:45.900929-08:00" }, { "operation": "add_edge", - "rtt_ns": 2700632, - "rtt_ms": 2.700632, + "rtt_ns": 1599958, + "rtt_ms": 1.599958, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.629371099Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.90102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288014, - "rtt_ms": 2.288014, + "rtt_ns": 1447500, + "rtt_ms": 1.4475, "checkpoint": 0, "vertex_from": "136", "vertex_to": "900", - "timestamp": "2025-11-27T01:23:42.629465799Z" + "timestamp": "2025-11-27T04:03:45.901031-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249314, - "rtt_ms": 2.249314, + "rtt_ns": 1566166, + "rtt_ms": 1.566166, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.629469569Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:45.901048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2486833, - "rtt_ms": 2.486833, + "rtt_ns": 2223083, + "rtt_ms": 2.223083, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:42.629496979Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:45.901187-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294834, - "rtt_ms": 2.294834, + "rtt_ns": 1760500, + "rtt_ms": 1.7605, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:42.629497659Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:45.9012-08:00" }, { "operation": "add_edge", - "rtt_ns": 2741292, - "rtt_ms": 2.741292, + "rtt_ns": 2152833, + "rtt_ms": 2.152833, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:42.629521109Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:45.901459-08:00" }, { "operation": "add_edge", - "rtt_ns": 970377, - "rtt_ms": 0.970377, + "rtt_ns": 1341333, + "rtt_ms": 1.341333, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.629731228Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:03:45.90239-08:00" }, { "operation": "add_edge", - "rtt_ns": 986037, - "rtt_ms": 0.986037, + "rtt_ns": 1587917, + "rtt_ms": 1.587917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:42.629766038Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.902425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601435, - "rtt_ms": 1.601435, + "rtt_ns": 1562833, + "rtt_ms": 1.562833, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.629765878Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.902493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153187, - "rtt_ms": 1.153187, + "rtt_ns": 1512125, + "rtt_ms": 1.512125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.629824758Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:45.902544-08:00" }, { "operation": "add_edge", - "rtt_ns": 721568, - "rtt_ms": 0.721568, + "rtt_ns": 1805750, + "rtt_ms": 1.80575, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "166", - "timestamp": "2025-11-27T01:23:42.630188387Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.902631-08:00" }, { "operation": "add_edge", - "rtt_ns": 836947, - "rtt_ms": 0.836947, + "rtt_ns": 1621458, + "rtt_ms": 1.621458, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:42.630209796Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:45.902643-08:00" }, { "operation": "add_edge", - "rtt_ns": 826057, - "rtt_ms": 0.826057, + "rtt_ns": 2072042, + "rtt_ms": 2.072042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.630296876Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.902744-08:00" }, { "operation": "add_edge", - "rtt_ns": 846547, - "rtt_ms": 0.846547, + "rtt_ns": 1640875, + "rtt_ms": 1.640875, "checkpoint": 0, "vertex_from": "136", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.630344326Z" + "timestamp": "2025-11-27T04:03:45.902842-08:00" }, { "operation": "add_edge", - "rtt_ns": 883987, - "rtt_ms": 0.883987, + "rtt_ns": 1401375, + "rtt_ms": 1.401375, "checkpoint": 0, "vertex_from": "136", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.630382696Z" + "timestamp": "2025-11-27T04:03:45.902861-08:00" }, { "operation": "add_edge", - "rtt_ns": 884987, - "rtt_ms": 0.884987, + "rtt_ns": 1708416, + "rtt_ms": 1.708416, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:42.630407866Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:45.902897-08:00" }, { "operation": "add_edge", - "rtt_ns": 777638, - "rtt_ms": 0.777638, + "rtt_ns": 1425459, + "rtt_ms": 1.425459, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.630509646Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.903919-08:00" }, { "operation": "add_edge", - "rtt_ns": 781157, - "rtt_ms": 0.781157, + "rtt_ns": 1694875, + "rtt_ms": 1.694875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.630548435Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:45.904086-08:00" }, { "operation": "add_edge", - "rtt_ns": 770107, - "rtt_ms": 0.770107, + "rtt_ns": 1812125, + "rtt_ms": 1.812125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:42.630596195Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:45.904238-08:00" }, { "operation": "add_edge", - "rtt_ns": 852897, - "rtt_ms": 0.852897, + "rtt_ns": 1645334, + "rtt_ms": 1.645334, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "163", - "timestamp": "2025-11-27T01:23:42.630623875Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:45.904277-08:00" }, { "operation": "add_edge", - "rtt_ns": 966197, - "rtt_ms": 0.966197, + "rtt_ns": 1765625, + "rtt_ms": 1.765625, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:42.631156024Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:03:45.904311-08:00" }, { "operation": "add_edge", - "rtt_ns": 979118, - "rtt_ms": 0.979118, + "rtt_ns": 1668542, + "rtt_ms": 1.668542, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "244", - "timestamp": "2025-11-27T01:23:42.631191244Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:45.904313-08:00" }, { "operation": "add_edge", - "rtt_ns": 911237, - "rtt_ms": 0.911237, + "rtt_ns": 1680333, + "rtt_ms": 1.680333, "checkpoint": 0, "vertex_from": "136", "vertex_to": "523", - "timestamp": "2025-11-27T01:23:42.631256443Z" + "timestamp": "2025-11-27T04:03:45.904542-08:00" }, { "operation": "add_edge", - "rtt_ns": 898487, - "rtt_ms": 0.898487, + "rtt_ns": 1770917, + "rtt_ms": 1.770917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.631307203Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:03:45.904614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026887, - "rtt_ms": 1.026887, + "rtt_ns": 1792875, + "rtt_ms": 1.792875, "checkpoint": 0, "vertex_from": "136", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.631410783Z" + "timestamp": "2025-11-27T04:03:45.904691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591885, - "rtt_ms": 1.591885, + "rtt_ns": 2118166, + "rtt_ms": 2.118166, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "170", - "timestamp": "2025-11-27T01:23:42.631890711Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:03:45.904865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456246, - "rtt_ms": 1.456246, + "rtt_ns": 1078125, + "rtt_ms": 1.078125, "checkpoint": 0, "vertex_from": "136", "vertex_to": "628", - "timestamp": "2025-11-27T01:23:42.632053491Z" + "timestamp": "2025-11-27T04:03:45.905356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524046, - "rtt_ms": 1.524046, + "rtt_ns": 1329125, + "rtt_ms": 1.329125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:42.632073541Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.905417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449086, - "rtt_ms": 1.449086, + "rtt_ns": 1276000, + "rtt_ms": 1.276, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:42.632073891Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:03:45.905518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586015, - "rtt_ms": 1.586015, + "rtt_ns": 1631500, + "rtt_ms": 1.6315, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.632096641Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:45.905553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247516, - "rtt_ms": 1.247516, + "rtt_ns": 1531625, + "rtt_ms": 1.531625, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:42.63240531Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:45.905843-08:00" }, { "operation": "add_edge", - "rtt_ns": 930038, - "rtt_ms": 0.930038, + "rtt_ns": 1700791, + "rtt_ms": 1.700791, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:42.632822039Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:45.906015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704995, - "rtt_ms": 1.704995, + "rtt_ns": 1574166, + "rtt_ms": 1.574166, "checkpoint": 0, "vertex_from": "136", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.632898569Z" + "timestamp": "2025-11-27T04:03:45.906117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630536, - "rtt_ms": 1.630536, + "rtt_ns": 1635708, + "rtt_ms": 1.635708, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.632939009Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:45.90625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681376, - "rtt_ms": 1.681376, + "rtt_ns": 1089541, + "rtt_ms": 1.089541, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:42.632939329Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:45.906446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607705, - "rtt_ms": 1.607705, + "rtt_ns": 2001208, + "rtt_ms": 2.001208, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.633019488Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.906694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000507, - "rtt_ms": 1.000507, + "rtt_ns": 1322125, + "rtt_ms": 1.322125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:42.633075478Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:45.90674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017007, - "rtt_ms": 1.017007, + "rtt_ns": 1264750, + "rtt_ms": 1.26475, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:42.633115458Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.907282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122697, - "rtt_ms": 1.122697, + "rtt_ns": 1713583, + "rtt_ms": 1.713583, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:42.633177478Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:45.907558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644375, - "rtt_ms": 1.644375, + "rtt_ns": 2028041, + "rtt_ms": 2.028041, "checkpoint": 0, "vertex_from": "136", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:42.633719496Z" + "timestamp": "2025-11-27T04:03:45.907582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436136, - "rtt_ms": 1.436136, + "rtt_ns": 2084125, + "rtt_ms": 2.084125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.633843076Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:45.907603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077117, - "rtt_ms": 1.077117, + "rtt_ns": 2759334, + "rtt_ms": 2.759334, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:42.634018886Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.907626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403016, - "rtt_ms": 1.403016, + "rtt_ns": 1696875, + "rtt_ms": 1.696875, "checkpoint": 0, "vertex_from": "136", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.634226205Z" + "timestamp": "2025-11-27T04:03:45.907815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497765, - "rtt_ms": 1.497765, + "rtt_ns": 1450084, + "rtt_ms": 1.450084, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:42.634397344Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:03:45.907897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444426, - "rtt_ms": 1.444426, + "rtt_ns": 1276875, + "rtt_ms": 1.276875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.634521594Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:45.907973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412406, - "rtt_ms": 1.412406, + "rtt_ns": 2304666, + "rtt_ms": 2.304666, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.635133762Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:45.908557-08:00" }, { "operation": "add_edge", - "rtt_ns": 941657, - "rtt_ms": 0.941657, + "rtt_ns": 1015917, + "rtt_ms": 1.015917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:42.635169122Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:45.90862-08:00" }, { "operation": "add_edge", - "rtt_ns": 2075404, - "rtt_ms": 2.075404, + "rtt_ns": 1422750, + "rtt_ms": 1.42275, "checkpoint": 0, "vertex_from": "136", "vertex_to": "297", - "timestamp": "2025-11-27T01:23:42.635192932Z" + "timestamp": "2025-11-27T04:03:45.908982-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1874250, + "rtt_ms": 1.87425, + "checkpoint": 0, + "vertex_from": "136", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.909158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425186, - "rtt_ms": 1.425186, + "rtt_ns": 1552917, + "rtt_ms": 1.552917, "checkpoint": 0, "vertex_from": "136", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.635269182Z" + "timestamp": "2025-11-27T04:03:45.909179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099784, - "rtt_ms": 2.099784, + "rtt_ns": 1239583, + "rtt_ms": 1.239583, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.635282762Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.909213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264196, - "rtt_ms": 1.264196, + "rtt_ns": 2537208, + "rtt_ms": 2.537208, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.635283852Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:45.909279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379443, - "rtt_ms": 2.379443, + "rtt_ns": 1486667, + "rtt_ms": 1.486667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "453", - "timestamp": "2025-11-27T01:23:42.635322412Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:45.909302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2342844, - "rtt_ms": 2.342844, + "rtt_ns": 1927167, + "rtt_ms": 1.927167, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.635365012Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.90951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579666, - "rtt_ms": 1.579666, + "rtt_ns": 1223958, + "rtt_ms": 1.223958, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.63597919Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:45.909845-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1711685, - "rtt_ms": 1.711685, + "rtt_ns": 1517500, + "rtt_ms": 1.5175, "checkpoint": 0, "vertex_from": "875", - "timestamp": "2025-11-27T01:23:42.636235199Z" + "timestamp": "2025-11-27T04:03:45.910077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300107, - "rtt_ms": 1.300107, + "rtt_ns": 2234416, + "rtt_ms": 2.234416, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:42.636435339Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:45.910132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754715, - "rtt_ms": 1.754715, + "rtt_ns": 1521917, + "rtt_ms": 1.521917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:42.637039827Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:45.910505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2295223, - "rtt_ms": 2.295223, + "rtt_ns": 1713250, + "rtt_ms": 1.71325, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:42.637580455Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:45.910993-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347023, - "rtt_ms": 2.347023, + "rtt_ns": 1763667, + "rtt_ms": 1.763667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "497", - "timestamp": "2025-11-27T01:23:42.637617465Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:03:45.911067-08:00" }, { "operation": "add_edge", - "rtt_ns": 2388103, - "rtt_ms": 2.388103, + "rtt_ns": 2077250, + "rtt_ms": 2.07725, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "202", - "timestamp": "2025-11-27T01:23:42.637711835Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:03:45.911257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2676432, - "rtt_ms": 2.676432, + "rtt_ns": 2145458, + "rtt_ms": 2.145458, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:42.637847704Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:45.911305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2481572, - "rtt_ms": 2.481572, + "rtt_ns": 2128791, + "rtt_ms": 2.128791, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:42.637848674Z" + "vertex_to": "633", + "timestamp": "2025-11-27T04:03:45.911977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2661082, - "rtt_ms": 2.661082, + "rtt_ns": 2780666, + "rtt_ms": 2.780666, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:42.637855624Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:45.911994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939194, - "rtt_ms": 1.939194, + "rtt_ns": 1517750, + "rtt_ms": 1.51775, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "875", - "timestamp": "2025-11-27T01:23:42.638174743Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.912025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744464, - "rtt_ms": 1.744464, + "rtt_ns": 2744708, + "rtt_ms": 2.744708, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.638188043Z" + "vertex_to": "875", + "timestamp": "2025-11-27T04:03:45.912823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2247523, - "rtt_ms": 2.247523, + "rtt_ns": 3367750, + "rtt_ms": 3.36775, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "633", - "timestamp": "2025-11-27T01:23:42.638229083Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:45.912879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412256, - "rtt_ms": 1.412256, + "rtt_ns": 1960167, + "rtt_ms": 1.960167, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.638454463Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:45.913028-08:00" }, { "operation": "add_edge", - "rtt_ns": 858718, - "rtt_ms": 0.858718, + "rtt_ns": 2956375, + "rtt_ms": 2.956375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:42.638477323Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.913091-08:00" }, { "operation": "add_edge", - "rtt_ns": 765508, - "rtt_ms": 0.765508, + "rtt_ns": 1915792, + "rtt_ms": 1.915792, "checkpoint": 0, "vertex_from": "136", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:42.638478363Z" + "timestamp": "2025-11-27T04:03:45.913174-08:00" }, { "operation": "add_edge", - "rtt_ns": 994747, - "rtt_ms": 0.994747, + "rtt_ns": 2215917, + "rtt_ms": 2.215917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:42.638851991Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:45.91321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004737, - "rtt_ms": 1.004737, + "rtt_ns": 1362625, + "rtt_ms": 1.362625, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.638853601Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:45.913358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273106, - "rtt_ms": 1.273106, + "rtt_ns": 1430417, + "rtt_ms": 1.430417, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:42.638855811Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 647798, - "rtt_ms": 0.647798, - "checkpoint": 0, - "vertex_from": "655", - "timestamp": "2025-11-27T01:23:42.638880071Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.913464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033867, - "rtt_ms": 1.033867, + "rtt_ns": 1689250, + "rtt_ms": 1.68925, "checkpoint": 0, "vertex_from": "136", "vertex_to": "780", - "timestamp": "2025-11-27T01:23:42.638884431Z" + "timestamp": "2025-11-27T04:03:45.913668-08:00" }, { "operation": "add_edge", - "rtt_ns": 716628, - "rtt_ms": 0.716628, + "rtt_ns": 3015750, + "rtt_ms": 3.01575, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.638893121Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.914322-08:00" }, { "operation": "add_edge", - "rtt_ns": 732468, - "rtt_ms": 0.732468, + "rtt_ns": 1465875, + "rtt_ms": 1.465875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.638921561Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.914495-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1870666, + "rtt_ms": 1.870666, + "checkpoint": 0, + "vertex_from": "655", + "timestamp": "2025-11-27T04:03:45.914752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103286, - "rtt_ms": 1.103286, + "rtt_ns": 1692500, + "rtt_ms": 1.6925, "checkpoint": 0, "vertex_from": "136", "vertex_to": "706", - "timestamp": "2025-11-27T01:23:42.639583639Z" + "timestamp": "2025-11-27T04:03:45.914867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142646, - "rtt_ms": 1.142646, + "rtt_ns": 2123167, + "rtt_ms": 2.123167, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.639621049Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.914947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327696, - "rtt_ms": 1.327696, + "rtt_ns": 1809375, + "rtt_ms": 1.809375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.639783799Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:45.91502-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1363583, + "rtt_ms": 1.363583, + "checkpoint": 0, + "vertex_from": "828", + "timestamp": "2025-11-27T04:03:45.915033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497786, - "rtt_ms": 1.497786, + "rtt_ns": 1652250, + "rtt_ms": 1.65225, "checkpoint": 0, "vertex_from": "136", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.640354737Z" + "timestamp": "2025-11-27T04:03:45.915117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514436, - "rtt_ms": 1.514436, + "rtt_ns": 2039584, + "rtt_ms": 2.039584, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.640369727Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.915131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567146, - "rtt_ms": 1.567146, + "rtt_ns": 1948959, + "rtt_ms": 1.948959, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:42.640461677Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:45.91531-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1609995, - "rtt_ms": 1.609995, + "operation": "add_edge", + "rtt_ns": 1222959, + "rtt_ms": 1.222959, "checkpoint": 0, - "vertex_from": "828", - "timestamp": "2025-11-27T01:23:42.640498246Z" + "vertex_from": "136", + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.91572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678335, - "rtt_ms": 1.678335, + "rtt_ns": 1526458, + "rtt_ms": 1.526458, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:42.640532396Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:45.915849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655025, - "rtt_ms": 1.655025, + "rtt_ns": 1260750, + "rtt_ms": 1.26075, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "655", - "timestamp": "2025-11-27T01:23:42.640535356Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:45.916129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648515, - "rtt_ms": 1.648515, + "rtt_ns": 1377625, + "rtt_ms": 1.377625, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.640571536Z" + "vertex_to": "655", + "timestamp": "2025-11-27T04:03:45.916131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069487, - "rtt_ms": 1.069487, + "rtt_ns": 1581541, + "rtt_ms": 1.581541, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:42.640692396Z" + "vertex_from": "137", + "vertex_to": "211", + "timestamp": "2025-11-27T04:03:45.916894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258696, - "rtt_ms": 1.258696, + "rtt_ns": 1885084, + "rtt_ms": 1.885084, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:42.640844025Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.916906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079216, - "rtt_ms": 1.079216, + "rtt_ns": 1192417, + "rtt_ms": 1.192417, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.640866355Z" + "vertex_from": "137", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.916914-08:00" }, { "operation": "add_edge", - "rtt_ns": 768878, - "rtt_ms": 0.768878, + "rtt_ns": 1872750, + "rtt_ms": 1.87275, "checkpoint": 0, "vertex_from": "136", "vertex_to": "199", - "timestamp": "2025-11-27T01:23:42.641125345Z" + "timestamp": "2025-11-27T04:03:45.916991-08:00" }, { "operation": "add_edge", - "rtt_ns": 796697, - "rtt_ms": 0.796697, + "rtt_ns": 1978042, + "rtt_ms": 1.978042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.641167904Z" + "vertex_to": "828", + "timestamp": "2025-11-27T04:03:45.917011-08:00" }, { "operation": "add_edge", - "rtt_ns": 755777, - "rtt_ms": 0.755777, + "rtt_ns": 1255833, + "rtt_ms": 1.255833, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "211", - "timestamp": "2025-11-27T01:23:42.641219094Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:45.917388-08:00" }, { "operation": "add_edge", - "rtt_ns": 758198, - "rtt_ms": 0.758198, + "rtt_ns": 1376125, + "rtt_ms": 1.376125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.641294234Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.917508-08:00" }, { "operation": "add_edge", - "rtt_ns": 768678, - "rtt_ms": 0.768678, + "rtt_ns": 2666833, + "rtt_ms": 2.666833, "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.641341314Z" + "vertex_from": "136", + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:45.917615-08:00" }, { "operation": "add_edge", - "rtt_ns": 839538, - "rtt_ms": 0.839538, + "rtt_ns": 1813250, + "rtt_ms": 1.81325, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.641373064Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.917663-08:00" }, { "operation": "add_edge", - "rtt_ns": 819277, - "rtt_ms": 0.819277, + "rtt_ns": 2730750, + "rtt_ms": 2.73075, "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "996", - "timestamp": "2025-11-27T01:23:42.641946442Z" + "vertex_from": "136", + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.917862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214837, - "rtt_ms": 1.214837, + "rtt_ns": 1385708, + "rtt_ms": 1.385708, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.642082572Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:03:45.9183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267577, - "rtt_ms": 1.267577, + "rtt_ns": 1445959, + "rtt_ms": 1.445959, "checkpoint": 0, "vertex_from": "137", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.642113452Z" + "timestamp": "2025-11-27T04:03:45.918341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445186, - "rtt_ms": 1.445186, + "rtt_ns": 1448666, + "rtt_ms": 1.448666, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:42.642138442Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:45.918358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693455, - "rtt_ms": 1.693455, + "rtt_ns": 1129291, + "rtt_ms": 1.129291, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "828", - "timestamp": "2025-11-27T01:23:42.642192001Z" + "vertex_from": "137", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.918794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521746, - "rtt_ms": 1.521746, + "rtt_ns": 2068125, + "rtt_ms": 2.068125, "checkpoint": 0, "vertex_from": "137", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.64274206Z" + "timestamp": "2025-11-27T04:03:45.91908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582666, - "rtt_ms": 1.582666, + "rtt_ns": 2134291, + "rtt_ms": 2.134291, "checkpoint": 0, "vertex_from": "137", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.64275227Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1517905, - "rtt_ms": 1.517905, - "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:42.642891779Z" + "timestamp": "2025-11-27T04:03:45.919126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603765, - "rtt_ms": 1.603765, + "rtt_ns": 1641791, + "rtt_ms": 1.641791, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:42.642900369Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:45.919151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596905, - "rtt_ms": 1.596905, + "rtt_ns": 1551875, + "rtt_ms": 1.551875, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:42.642939279Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:45.919169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246626, - "rtt_ms": 1.246626, + "rtt_ns": 1802834, + "rtt_ms": 1.802834, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.643195088Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:45.919193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207836, - "rtt_ms": 1.207836, + "rtt_ns": 1372667, + "rtt_ms": 1.372667, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.643347288Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.919236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297076, - "rtt_ms": 1.297076, + "rtt_ns": 1468458, + "rtt_ms": 1.468458, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.643380748Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:45.919827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361376, - "rtt_ms": 1.361376, + "rtt_ns": 1643000, + "rtt_ms": 1.643, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:42.643554637Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.919985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572135, - "rtt_ms": 1.572135, + "rtt_ns": 1765500, + "rtt_ms": 1.7655, "checkpoint": 0, "vertex_from": "137", "vertex_to": "453", - "timestamp": "2025-11-27T01:23:42.643687967Z" + "timestamp": "2025-11-27T04:03:45.920067-08:00" }, { "operation": "add_edge", - "rtt_ns": 938717, - "rtt_ms": 0.938717, + "rtt_ns": 1385666, + "rtt_ms": 1.385666, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.643692517Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.92018-08:00" }, { "operation": "add_edge", - "rtt_ns": 976787, - "rtt_ms": 0.976787, + "rtt_ns": 1395833, + "rtt_ms": 1.395833, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.643720127Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:45.920566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422006, - "rtt_ms": 1.422006, + "rtt_ns": 1399583, + "rtt_ms": 1.399583, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:42.644325135Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.920636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469736, - "rtt_ms": 1.469736, + "rtt_ns": 1794250, + "rtt_ms": 1.79425, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:42.644362645Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:45.920947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222787, - "rtt_ms": 1.222787, + "rtt_ns": 1263291, + "rtt_ms": 1.263291, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:42.644419615Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:45.921093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109497, - "rtt_ms": 1.109497, + "rtt_ns": 2005417, + "rtt_ms": 2.005417, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:42.644491395Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:45.921132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553906, - "rtt_ms": 1.553906, + "rtt_ns": 2080334, + "rtt_ms": 2.080334, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:42.644494325Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.921161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153817, - "rtt_ms": 1.153817, + "rtt_ns": 1376584, + "rtt_ms": 1.376584, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.644501835Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:03:45.922014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695656, - "rtt_ms": 1.695656, + "rtt_ns": 2036583, + "rtt_ms": 2.036583, "checkpoint": 0, "vertex_from": "137", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:42.645252113Z" + "timestamp": "2025-11-27T04:03:45.922023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535556, - "rtt_ms": 1.535556, + "rtt_ns": 1463292, + "rtt_ms": 1.463292, "checkpoint": 0, "vertex_from": "137", "vertex_to": "564", - "timestamp": "2025-11-27T01:23:42.645256863Z" + "timestamp": "2025-11-27T04:03:45.92203-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1581656, - "rtt_ms": 1.581656, + "rtt_ns": 1988208, + "rtt_ms": 1.988208, "checkpoint": 0, "vertex_from": "980", - "timestamp": "2025-11-27T01:23:42.645272413Z" + "timestamp": "2025-11-27T04:03:45.922056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581376, - "rtt_ms": 1.581376, + "rtt_ns": 1511333, + "rtt_ms": 1.511333, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:42.645274923Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.922644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138077, - "rtt_ms": 1.138077, + "rtt_ns": 2507250, + "rtt_ms": 2.50725, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "659", - "timestamp": "2025-11-27T01:23:42.645464802Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:03:45.922688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860115, - "rtt_ms": 1.860115, + "rtt_ns": 1607541, + "rtt_ms": 1.607541, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:42.64622347Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:03:45.922701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880874, - "rtt_ms": 1.880874, + "rtt_ns": 1764584, + "rtt_ms": 1.764584, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.646373829Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:45.922713-08:00" }, { "operation": "add_edge", - "rtt_ns": 2474173, - "rtt_ms": 2.474173, + "rtt_ns": 3782125, + "rtt_ms": 3.782125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.646978598Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:45.922977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2695202, - "rtt_ms": 2.695202, + "rtt_ns": 1815000, + "rtt_ms": 1.815, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "451", - "timestamp": "2025-11-27T01:23:42.647116217Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.922977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2620132, - "rtt_ms": 2.620132, + "rtt_ns": 1003583, + "rtt_ms": 1.003583, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.647873075Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:45.923693-08:00" }, { "operation": "add_edge", - "rtt_ns": 2456693, - "rtt_ms": 2.456693, + "rtt_ns": 1812292, + "rtt_ms": 1.812292, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:42.647922385Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.923827-08:00" }, { "operation": "add_edge", - "rtt_ns": 2701342, - "rtt_ms": 2.701342, + "rtt_ns": 2251542, + "rtt_ms": 2.251542, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "980", - "timestamp": "2025-11-27T01:23:42.647974205Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:03:45.924283-08:00" }, { "operation": "add_edge", - "rtt_ns": 2704812, - "rtt_ms": 2.704812, + "rtt_ns": 1600584, + "rtt_ms": 1.600584, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:42.647980795Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.924303-08:00" }, { "operation": "add_edge", - "rtt_ns": 3514230, - "rtt_ms": 3.51423, + "rtt_ns": 2248875, + "rtt_ms": 2.248875, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.648009535Z" + "vertex_to": "980", + "timestamp": "2025-11-27T04:03:45.924305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635066, - "rtt_ms": 1.635066, + "rtt_ns": 1465334, + "rtt_ms": 1.465334, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.648010005Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.924444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2765052, - "rtt_ms": 2.765052, + "rtt_ns": 2511417, + "rtt_ms": 2.511417, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:42.648023265Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.924536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810235, - "rtt_ms": 1.810235, + "rtt_ns": 1835959, + "rtt_ms": 1.835959, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.648034745Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.924549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846564, - "rtt_ms": 1.846564, + "rtt_ns": 2157666, + "rtt_ms": 2.157666, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:42.648828672Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:45.924804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788165, - "rtt_ms": 1.788165, + "rtt_ns": 1242125, + "rtt_ms": 1.242125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.648906552Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:03:45.924936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007217, - "rtt_ms": 1.007217, + "rtt_ns": 2284125, + "rtt_ms": 2.284125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.648931372Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:45.925263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144317, - "rtt_ms": 1.144317, + "rtt_ns": 1453542, + "rtt_ms": 1.453542, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "938", - "timestamp": "2025-11-27T01:23:42.649019452Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:45.925281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063977, - "rtt_ms": 1.063977, + "rtt_ns": 1058875, + "rtt_ms": 1.058875, "checkpoint": 0, "vertex_from": "137", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.649039012Z" + "timestamp": "2025-11-27T04:03:45.925343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033387, - "rtt_ms": 1.033387, + "rtt_ns": 1047583, + "rtt_ms": 1.047583, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.649046232Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.925354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077567, - "rtt_ms": 1.077567, + "rtt_ns": 1408875, + "rtt_ms": 1.408875, "checkpoint": 0, "vertex_from": "137", "vertex_to": "933", - "timestamp": "2025-11-27T01:23:42.649059632Z" + "timestamp": "2025-11-27T04:03:45.925715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102126, - "rtt_ms": 1.102126, + "rtt_ns": 1394208, + "rtt_ms": 1.394208, "checkpoint": 0, "vertex_from": "137", "vertex_to": "452", - "timestamp": "2025-11-27T01:23:42.649126801Z" + "timestamp": "2025-11-27T04:03:45.925931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715595, - "rtt_ms": 1.715595, + "rtt_ns": 1823292, + "rtt_ms": 1.823292, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:42.6497518Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.926268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853314, - "rtt_ms": 1.853314, + "rtt_ns": 1489333, + "rtt_ms": 1.489333, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.649864569Z" - }, - { - "operation": "add_edge", - "rtt_ns": 964417, - "rtt_ms": 0.964417, - "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:42.649898069Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:45.926294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069437, - "rtt_ms": 1.069437, + "rtt_ns": 1771584, + "rtt_ms": 1.771584, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:42.649899849Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:45.926322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286216, - "rtt_ms": 1.286216, + "rtt_ns": 1547584, + "rtt_ms": 1.547584, "checkpoint": 0, "vertex_from": "138", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.650194228Z" + "timestamp": "2025-11-27T04:03:45.926485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380176, - "rtt_ms": 1.380176, + "rtt_ns": 1253292, + "rtt_ms": 1.253292, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.650428418Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.926535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339396, - "rtt_ms": 1.339396, + "rtt_ns": 1915583, + "rtt_ms": 1.915583, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.650466937Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:45.927179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482925, - "rtt_ms": 1.482925, + "rtt_ns": 1269792, + "rtt_ms": 1.269792, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.650543757Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:45.927593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541855, - "rtt_ms": 1.541855, + "rtt_ns": 2317375, + "rtt_ms": 2.317375, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.650563677Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.927663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572515, - "rtt_ms": 1.572515, + "rtt_ns": 1784709, + "rtt_ms": 1.784709, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.650613217Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.927717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248106, - "rtt_ms": 1.248106, + "rtt_ns": 1898125, + "rtt_ms": 1.898125, "checkpoint": 0, "vertex_from": "138", "vertex_to": "834", - "timestamp": "2025-11-27T01:23:42.651001796Z" + "timestamp": "2025-11-27T04:03:45.928168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224467, - "rtt_ms": 1.224467, + "rtt_ns": 1894250, + "rtt_ms": 1.89425, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.651123686Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:03:45.928189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401756, - "rtt_ms": 1.401756, + "rtt_ns": 1718000, + "rtt_ms": 1.718, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "421", - "timestamp": "2025-11-27T01:23:42.651267805Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.928203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175207, - "rtt_ms": 1.175207, + "rtt_ns": 1683166, + "rtt_ms": 1.683166, "checkpoint": 0, "vertex_from": "138", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.651371715Z" + "timestamp": "2025-11-27T04:03:45.928219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533806, - "rtt_ms": 1.533806, + "rtt_ns": 2915750, + "rtt_ms": 2.91575, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.651436735Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.928631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862515, - "rtt_ms": 1.862515, + "rtt_ns": 1569250, + "rtt_ms": 1.56925, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.652407702Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.928749-08:00" }, { "operation": "add_edge", - "rtt_ns": 2046244, - "rtt_ms": 2.046244, + "rtt_ns": 1178209, + "rtt_ms": 1.178209, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.652475772Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:45.928772-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121574, - "rtt_ms": 2.121574, + "rtt_ns": 1289333, + "rtt_ms": 1.289333, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:42.652589661Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:45.929007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100434, - "rtt_ms": 2.100434, + "rtt_ns": 3715209, + "rtt_ms": 3.715209, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:42.652715831Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.92907-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001794, - "rtt_ms": 2.001794, + "rtt_ns": 1509000, + "rtt_ms": 1.509, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.65300467Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.929174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974235, - "rtt_ms": 1.974235, + "rtt_ns": 1461083, + "rtt_ms": 1.461083, "checkpoint": 0, "vertex_from": "138", "vertex_to": "610", - "timestamp": "2025-11-27T01:23:42.65309958Z" + "timestamp": "2025-11-27T04:03:45.929666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2554873, - "rtt_ms": 2.554873, + "rtt_ns": 1570958, + "rtt_ms": 1.570958, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:42.65312066Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:03:45.929791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981944, - "rtt_ms": 1.981944, + "rtt_ns": 1667167, + "rtt_ms": 1.667167, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "144", - "timestamp": "2025-11-27T01:23:42.653251259Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.929857-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1749541, + "rtt_ms": 1.749541, + "checkpoint": 0, + "vertex_from": "138", + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:45.929918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000374, - "rtt_ms": 2.000374, + "rtt_ns": 1273708, + "rtt_ms": 1.273708, "checkpoint": 0, "vertex_from": "138", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.653442399Z" + "timestamp": "2025-11-27T04:03:45.930025-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104394, - "rtt_ms": 2.104394, + "rtt_ns": 1449500, + "rtt_ms": 1.4495, "checkpoint": 0, "vertex_from": "138", "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.653476999Z" + "timestamp": "2025-11-27T04:03:45.930082-08:00" }, { "operation": "add_edge", - "rtt_ns": 981508, - "rtt_ms": 0.981508, + "rtt_ns": 1328291, + "rtt_ms": 1.328291, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.653573169Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:45.930102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967814, - "rtt_ms": 1.967814, + "rtt_ns": 1569083, + "rtt_ms": 1.569083, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:42.654378296Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.930746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948434, - "rtt_ms": 1.948434, + "rtt_ns": 1777791, + "rtt_ms": 1.777791, "checkpoint": 0, "vertex_from": "138", "vertex_to": "753", - "timestamp": "2025-11-27T01:23:42.654431396Z" + "timestamp": "2025-11-27T04:03:45.930786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324926, - "rtt_ms": 1.324926, + "rtt_ns": 1377250, + "rtt_ms": 1.37725, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:42.654447776Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.931047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741905, - "rtt_ms": 1.741905, + "rtt_ns": 2016709, + "rtt_ms": 2.016709, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.654459036Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.931088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405626, - "rtt_ms": 1.405626, + "rtt_ns": 1457417, + "rtt_ms": 1.457417, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.654506986Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:45.931316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143177, - "rtt_ms": 1.143177, + "rtt_ns": 1629625, + "rtt_ms": 1.629625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:42.654586766Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.931421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606566, - "rtt_ms": 1.606566, + "rtt_ns": 1643375, + "rtt_ms": 1.643375, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.654612086Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:45.931669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784925, - "rtt_ms": 1.784925, + "rtt_ns": 1623834, + "rtt_ms": 1.623834, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:42.655037644Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:45.931726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845175, - "rtt_ms": 1.845175, + "rtt_ns": 1889625, + "rtt_ms": 1.889625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.655323104Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:45.931809-08:00" }, { "operation": "add_edge", - "rtt_ns": 987717, - "rtt_ms": 0.987717, + "rtt_ns": 1104500, + "rtt_ms": 1.1045, "checkpoint": 0, "vertex_from": "138", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.655419973Z" + "timestamp": "2025-11-27T04:03:45.931899-08:00" }, { "operation": "add_edge", - "rtt_ns": 977357, - "rtt_ms": 0.977357, + "rtt_ns": 1907500, + "rtt_ms": 1.9075, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:42.655440373Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.93199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069657, - "rtt_ms": 1.069657, + "rtt_ns": 1373250, + "rtt_ms": 1.37325, "checkpoint": 0, "vertex_from": "138", "vertex_to": "202", - "timestamp": "2025-11-27T01:23:42.655449273Z" + "timestamp": "2025-11-27T04:03:45.93212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914574, - "rtt_ms": 1.914574, + "rtt_ns": 1610875, + "rtt_ms": 1.610875, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.655488933Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.932928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055547, - "rtt_ms": 1.055547, + "rtt_ns": 1331083, + "rtt_ms": 1.331083, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.655506133Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.933001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549745, - "rtt_ms": 1.549745, + "rtt_ns": 1771417, + "rtt_ms": 1.771417, "checkpoint": 0, "vertex_from": "138", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.656137661Z" + "timestamp": "2025-11-27T04:03:45.933193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592625, - "rtt_ms": 1.592625, + "rtt_ns": 2247958, + "rtt_ms": 2.247958, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.656205861Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.933296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710825, - "rtt_ms": 1.710825, + "rtt_ns": 1206417, + "rtt_ms": 1.206417, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.656219091Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.933327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221837, - "rtt_ms": 1.221837, + "rtt_ns": 1546625, + "rtt_ms": 1.546625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.656260391Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:45.933357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093857, - "rtt_ms": 1.093857, + "rtt_ns": 1495959, + "rtt_ms": 1.495959, "checkpoint": 0, "vertex_from": "138", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.65651483Z" + "timestamp": "2025-11-27T04:03:45.933396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214306, - "rtt_ms": 1.214306, + "rtt_ns": 1670625, + "rtt_ms": 1.670625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:42.65653876Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:03:45.933398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320666, - "rtt_ms": 1.320666, + "rtt_ns": 2321875, + "rtt_ms": 2.321875, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:42.656762239Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:03:45.933411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371416, - "rtt_ms": 1.371416, + "rtt_ns": 1438000, + "rtt_ms": 1.438, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.656822849Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:45.933436-08:00" }, { "operation": "add_edge", - "rtt_ns": 619788, - "rtt_ms": 0.619788, + "rtt_ns": 1451084, + "rtt_ms": 1.451084, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:42.656881359Z" + "vertex_from": "138", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.93438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520526, - "rtt_ms": 1.520526, + "rtt_ns": 1441208, + "rtt_ms": 1.441208, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.657010529Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.934635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520386, - "rtt_ms": 1.520386, + "rtt_ns": 1615208, + "rtt_ms": 1.615208, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.657028239Z" + "vertex_from": "139", + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:45.934973-08:00" }, { "operation": "add_edge", - "rtt_ns": 869337, - "rtt_ms": 0.869337, + "rtt_ns": 1573125, + "rtt_ms": 1.573125, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "153", - "timestamp": "2025-11-27T01:23:42.657078498Z" + "vertex_from": "139", + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:45.934973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584086, - "rtt_ms": 1.584086, + "rtt_ns": 2012042, + "rtt_ms": 2.012042, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.657723407Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.935016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227206, - "rtt_ms": 1.227206, + "rtt_ns": 1594875, + "rtt_ms": 1.594875, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.657743146Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:45.935031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213876, - "rtt_ms": 1.213876, + "rtt_ns": 1804792, + "rtt_ms": 1.804792, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:42.657754376Z" + "vertex_from": "138", + "vertex_to": "153", + "timestamp": "2025-11-27T04:03:45.935102-08:00" }, { "operation": "add_edge", - "rtt_ns": 948637, - "rtt_ms": 0.948637, + "rtt_ns": 1796167, + "rtt_ms": 1.796167, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:42.657773516Z" + "vertex_from": "138", + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:45.935124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562075, - "rtt_ms": 1.562075, + "rtt_ns": 1742042, + "rtt_ms": 1.742042, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.657782226Z" + "vertex_from": "139", + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.935139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050397, - "rtt_ms": 1.050397, + "rtt_ns": 1745000, + "rtt_ms": 1.745, "checkpoint": 0, "vertex_from": "139", "vertex_to": "194", - "timestamp": "2025-11-27T01:23:42.657813476Z" + "timestamp": "2025-11-27T04:03:45.935158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649245, - "rtt_ms": 1.649245, + "rtt_ns": 1294334, + "rtt_ms": 1.294334, "checkpoint": 0, "vertex_from": "139", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.658531794Z" + "timestamp": "2025-11-27T04:03:45.935675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560265, - "rtt_ms": 1.560265, + "rtt_ns": 1550209, + "rtt_ms": 1.550209, "checkpoint": 0, "vertex_from": "139", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.658572464Z" + "timestamp": "2025-11-27T04:03:45.936186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493186, - "rtt_ms": 1.493186, + "rtt_ns": 1206042, + "rtt_ms": 1.206042, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.658573724Z" + "vertex_from": "140", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.936345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551145, - "rtt_ms": 1.551145, + "rtt_ns": 1822750, + "rtt_ms": 1.82275, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.658579934Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.936798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108586, - "rtt_ms": 1.108586, + "rtt_ns": 1917667, + "rtt_ms": 1.917667, "checkpoint": 0, "vertex_from": "139", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.658833443Z" + "timestamp": "2025-11-27T04:03:45.936935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234587, - "rtt_ms": 1.234587, + "rtt_ns": 1842375, + "rtt_ms": 1.842375, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.658980083Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.936945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251777, - "rtt_ms": 1.251777, + "rtt_ns": 2011042, + "rtt_ms": 2.011042, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.659007933Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.937043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711465, - "rtt_ms": 1.711465, + "rtt_ns": 2117458, + "rtt_ms": 2.117458, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.659487501Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.937093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760905, - "rtt_ms": 1.760905, + "rtt_ns": 2031041, + "rtt_ms": 2.031041, "checkpoint": 0, - "vertex_from": "140", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.659544261Z" + "vertex_from": "139", + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.937156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024987, - "rtt_ms": 1.024987, + "rtt_ns": 1740542, + "rtt_ms": 1.740542, "checkpoint": 0, "vertex_from": "140", "vertex_to": "321", - "timestamp": "2025-11-27T01:23:42.659558621Z" + "timestamp": "2025-11-27T04:03:45.937416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091027, - "rtt_ms": 1.091027, + "rtt_ns": 1092375, + "rtt_ms": 1.092375, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:42.659672421Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.937438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957884, - "rtt_ms": 1.957884, + "rtt_ns": 2294084, + "rtt_ms": 2.294084, "checkpoint": 0, "vertex_from": "140", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.65977229Z" + "timestamp": "2025-11-27T04:03:45.937453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222246, - "rtt_ms": 1.222246, + "rtt_ns": 1502958, + "rtt_ms": 1.502958, "checkpoint": 0, "vertex_from": "140", "vertex_to": "825", - "timestamp": "2025-11-27T01:23:42.65979595Z" + "timestamp": "2025-11-27T04:03:45.93769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243816, - "rtt_ms": 1.243816, + "rtt_ns": 1706375, + "rtt_ms": 1.706375, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.65981816Z" + "vertex_to": "310", + "timestamp": "2025-11-27T04:03:45.938642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737145, - "rtt_ms": 1.737145, + "rtt_ns": 1995083, + "rtt_ms": 1.995083, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "310", - "timestamp": "2025-11-27T01:23:42.660571788Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:45.938794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711765, - "rtt_ms": 1.711765, + "rtt_ns": 1863250, + "rtt_ms": 1.86325, "checkpoint": 0, "vertex_from": "140", "vertex_to": "240", - "timestamp": "2025-11-27T01:23:42.660692528Z" + "timestamp": "2025-11-27T04:03:45.938809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222567, - "rtt_ms": 1.222567, + "rtt_ns": 1670458, + "rtt_ms": 1.670458, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.660719578Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.938827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713765, - "rtt_ms": 1.713765, + "rtt_ns": 1435917, + "rtt_ms": 1.435917, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.660723878Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:45.938853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198167, - "rtt_ms": 1.198167, + "rtt_ns": 1810125, + "rtt_ms": 1.810125, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.660745088Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.938856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186567, - "rtt_ms": 1.186567, + "rtt_ns": 1553417, + "rtt_ms": 1.553417, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:42.660747228Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:03:45.938993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089897, - "rtt_ms": 1.089897, + "rtt_ns": 1641458, + "rtt_ms": 1.641458, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "145", - "timestamp": "2025-11-27T01:23:42.660771918Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:45.939095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764745, - "rtt_ms": 1.764745, + "rtt_ns": 1422125, + "rtt_ms": 1.422125, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:42.661584195Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:45.939113-08:00" }, { "operation": "add_edge", - "rtt_ns": 946457, - "rtt_ms": 0.946457, + "rtt_ns": 2052208, + "rtt_ms": 2.052208, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.661640225Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.939148-08:00" }, { "operation": "add_edge", - "rtt_ns": 892807, - "rtt_ms": 0.892807, + "rtt_ns": 1341750, + "rtt_ms": 1.34175, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.661641285Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.94017-08:00" }, { "operation": "add_edge", - "rtt_ns": 994277, - "rtt_ms": 0.994277, + "rtt_ns": 1855709, + "rtt_ms": 1.855709, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.661714655Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:45.940499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919135, - "rtt_ms": 1.919135, + "rtt_ns": 1697833, + "rtt_ms": 1.697833, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:42.661715865Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:45.940508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152057, - "rtt_ms": 1.152057, + "rtt_ns": 1713834, + "rtt_ms": 1.713834, "checkpoint": 0, "vertex_from": "140", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.661725015Z" + "timestamp": "2025-11-27T04:03:45.94051-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014825, - "rtt_ms": 2.014825, + "rtt_ns": 1706833, + "rtt_ms": 1.706833, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.661788145Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:45.940565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115807, - "rtt_ms": 1.115807, + "rtt_ns": 1802750, + "rtt_ms": 1.80275, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:42.661861895Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.940657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573815, - "rtt_ms": 1.573815, + "rtt_ns": 1626833, + "rtt_ms": 1.626833, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "851", - "timestamp": "2025-11-27T01:23:42.662347313Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.940775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623865, - "rtt_ms": 1.623865, + "rtt_ns": 1795500, + "rtt_ms": 1.7955, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.662348843Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.940789-08:00" }, { "operation": "add_edge", - "rtt_ns": 932198, - "rtt_ms": 0.932198, + "rtt_ns": 1743917, + "rtt_ms": 1.743917, "checkpoint": 0, "vertex_from": "140", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.662517623Z" + "timestamp": "2025-11-27T04:03:45.940858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042597, - "rtt_ms": 1.042597, + "rtt_ns": 1779209, + "rtt_ms": 1.779209, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.662832922Z" + "vertex_to": "851", + "timestamp": "2025-11-27T04:03:45.940875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166617, - "rtt_ms": 1.166617, + "rtt_ns": 1060083, + "rtt_ms": 1.060083, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.662893042Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:45.941719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718235, - "rtt_ms": 1.718235, + "rtt_ns": 1306292, + "rtt_ms": 1.306292, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.66336103Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:45.941815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003997, - "rtt_ms": 1.003997, + "rtt_ns": 1465583, + "rtt_ms": 1.465583, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.66352304Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:45.941977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176667, - "rtt_ms": 1.176667, + "rtt_ns": 1549042, + "rtt_ms": 1.549042, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:42.66352534Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.942115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919055, - "rtt_ms": 1.919055, + "rtt_ns": 2012625, + "rtt_ms": 2.012625, "checkpoint": 0, "vertex_from": "140", "vertex_to": "301", - "timestamp": "2025-11-27T01:23:42.6635618Z" + "timestamp": "2025-11-27T04:03:45.942183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856505, - "rtt_ms": 1.856505, + "rtt_ns": 1682833, + "rtt_ms": 1.682833, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.66357323Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.942184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750485, - "rtt_ms": 1.750485, + "rtt_ns": 1534792, + "rtt_ms": 1.534792, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:42.66361359Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:45.942325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294587, - "rtt_ms": 1.294587, + "rtt_ns": 1563875, + "rtt_ms": 1.563875, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:42.66364472Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:45.942341-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173414, - "rtt_ms": 2.173414, + "rtt_ns": 1668917, + "rtt_ms": 1.668917, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.663889439Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.942528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491335, - "rtt_ms": 1.491335, + "rtt_ns": 1260292, + "rtt_ms": 1.260292, "checkpoint": 0, "vertex_from": "140", "vertex_to": "523", - "timestamp": "2025-11-27T01:23:42.664385287Z" + "timestamp": "2025-11-27T04:03:45.942981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163937, - "rtt_ms": 1.163937, + "rtt_ns": 2248541, + "rtt_ms": 2.248541, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.664527527Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.943124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787055, - "rtt_ms": 1.787055, + "rtt_ns": 1090833, + "rtt_ms": 1.090833, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.664622437Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:45.943276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208526, - "rtt_ms": 1.208526, + "rtt_ns": 1741250, + "rtt_ms": 1.74125, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:42.664772976Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:45.943558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332166, - "rtt_ms": 1.332166, + "rtt_ns": 1601625, + "rtt_ms": 1.601625, "checkpoint": 0, "vertex_from": "140", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.664856666Z" + "timestamp": "2025-11-27T04:03:45.943579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379466, - "rtt_ms": 1.379466, + "rtt_ns": 1486000, + "rtt_ms": 1.486, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:42.664954206Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.943602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449495, - "rtt_ms": 1.449495, + "rtt_ns": 1288833, + "rtt_ms": 1.288833, "checkpoint": 0, "vertex_from": "140", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.665064485Z" + "timestamp": "2025-11-27T04:03:45.943614-08:00" }, { "operation": "add_edge", - "rtt_ns": 586898, - "rtt_ms": 0.586898, + "rtt_ns": 1404791, + "rtt_ms": 1.404791, "checkpoint": 0, - "vertex_from": "141", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.665542124Z" + "vertex_from": "140", + "vertex_to": "369", + "timestamp": "2025-11-27T04:03:45.943746-08:00" }, { "operation": "add_edge", - "rtt_ns": 723018, - "rtt_ms": 0.723018, + "rtt_ns": 1580500, + "rtt_ms": 1.5805, "checkpoint": 0, - "vertex_from": "141", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.665581124Z" + "vertex_from": "140", + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:45.943764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087234, - "rtt_ms": 2.087234, + "rtt_ns": 1271041, + "rtt_ms": 1.271041, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.665613944Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.944253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013324, - "rtt_ms": 2.013324, + "rtt_ns": 1737459, + "rtt_ms": 1.737459, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "369", - "timestamp": "2025-11-27T01:23:42.665659344Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.944268-08:00" }, { "operation": "add_edge", - "rtt_ns": 716968, - "rtt_ms": 0.716968, + "rtt_ns": 1257708, + "rtt_ms": 1.257708, "checkpoint": 0, "vertex_from": "141", "vertex_to": "736", - "timestamp": "2025-11-27T01:23:42.665782623Z" + "timestamp": "2025-11-27T04:03:45.944873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422096, - "rtt_ms": 1.422096, + "rtt_ns": 1614542, + "rtt_ms": 1.614542, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.665808853Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:45.944891-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007364, - "rtt_ms": 2.007364, + "rtt_ns": 1497792, + "rtt_ms": 1.497792, "checkpoint": 0, - "vertex_from": "140", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.665898713Z" + "vertex_from": "141", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.945078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457336, - "rtt_ms": 1.457336, + "rtt_ns": 1970125, + "rtt_ms": 1.970125, "checkpoint": 0, "vertex_from": "140", "vertex_to": "306", - "timestamp": "2025-11-27T01:23:42.665986503Z" + "timestamp": "2025-11-27T04:03:45.945095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343766, - "rtt_ms": 1.343766, + "rtt_ns": 1659791, + "rtt_ms": 1.659791, "checkpoint": 0, - "vertex_from": "140", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:42.666117702Z" + "vertex_from": "141", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:45.945262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538205, - "rtt_ms": 1.538205, + "rtt_ns": 1527542, + "rtt_ms": 1.527542, "checkpoint": 0, - "vertex_from": "140", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:42.666162282Z" + "vertex_from": "141", + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:45.945293-08:00" }, { "operation": "add_edge", - "rtt_ns": 656908, - "rtt_ms": 0.656908, + "rtt_ns": 1746667, + "rtt_ms": 1.746667, "checkpoint": 0, - "vertex_from": "141", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.666201832Z" + "vertex_from": "140", + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:45.945305-08:00" }, { "operation": "add_edge", - "rtt_ns": 647818, - "rtt_ms": 0.647818, + "rtt_ns": 1633583, + "rtt_ms": 1.633583, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.666230252Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.945887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130676, - "rtt_ms": 1.130676, + "rtt_ns": 2037459, + "rtt_ms": 2.037459, "checkpoint": 0, "vertex_from": "141", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.66679241Z" + "timestamp": "2025-11-27T04:03:45.946306-08:00" }, { "operation": "add_edge", - "rtt_ns": 824607, - "rtt_ms": 0.824607, + "rtt_ns": 1497708, + "rtt_ms": 1.497708, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.66682006Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:03:45.946371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081697, - "rtt_ms": 1.081697, + "rtt_ns": 2980917, + "rtt_ms": 2.980917, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:42.66689182Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.946728-08:00" }, { "operation": "add_edge", - "rtt_ns": 997257, - "rtt_ms": 0.997257, + "rtt_ns": 1852625, + "rtt_ms": 1.852625, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:42.66689663Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:45.946744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115527, - "rtt_ms": 1.115527, + "rtt_ns": 2446334, + "rtt_ms": 2.446334, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "403", - "timestamp": "2025-11-27T01:23:42.66689957Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:45.947525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300216, - "rtt_ms": 1.300216, + "rtt_ns": 2289041, + "rtt_ms": 2.289041, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.66691511Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.947595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409386, - "rtt_ms": 1.409386, + "rtt_ns": 1718500, + "rtt_ms": 1.7185, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.667528868Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:03:45.947607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439466, - "rtt_ms": 1.439466, + "rtt_ns": 2334084, + "rtt_ms": 2.334084, "checkpoint": 0, "vertex_from": "141", "vertex_to": "404", - "timestamp": "2025-11-27T01:23:42.667603388Z" + "timestamp": "2025-11-27T04:03:45.947628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382786, - "rtt_ms": 1.382786, + "rtt_ns": 1315000, + "rtt_ms": 1.315, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "161", - "timestamp": "2025-11-27T01:23:42.667614418Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.947687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418516, - "rtt_ms": 1.418516, + "rtt_ns": 2686417, + "rtt_ms": 2.686417, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.667622118Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.947783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610195, - "rtt_ms": 1.610195, + "rtt_ns": 1601875, + "rtt_ms": 1.601875, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:42.668508465Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:03:45.947909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619085, - "rtt_ms": 1.619085, + "rtt_ns": 2825084, + "rtt_ms": 2.825084, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:42.668536175Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.94809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809345, - "rtt_ms": 1.809345, + "rtt_ns": 1405708, + "rtt_ms": 1.405708, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "147", - "timestamp": "2025-11-27T01:23:42.668603795Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.948134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818725, - "rtt_ms": 1.818725, + "rtt_ns": 1561000, + "rtt_ms": 1.561, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.668640025Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:45.948306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127457, - "rtt_ms": 1.127457, + "rtt_ns": 1492875, + "rtt_ms": 1.492875, "checkpoint": 0, "vertex_from": "141", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:42.668657865Z" + "timestamp": "2025-11-27T04:03:45.9491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051017, - "rtt_ms": 1.051017, + "rtt_ns": 1595625, + "rtt_ms": 1.595625, "checkpoint": 0, - "vertex_from": "142", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:42.668674015Z" + "vertex_from": "141", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.949122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817645, - "rtt_ms": 1.817645, + "rtt_ns": 1531292, + "rtt_ms": 1.531292, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.668711625Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:45.949127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131877, - "rtt_ms": 1.131877, + "rtt_ns": 1515083, + "rtt_ms": 1.515083, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.668747845Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.949144-08:00" }, { "operation": "add_edge", - "rtt_ns": 916888, - "rtt_ms": 0.916888, + "rtt_ns": 1529625, + "rtt_ms": 1.529625, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.669426443Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2537833, - "rtt_ms": 2.537833, - "checkpoint": 0, - "vertex_from": "141", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.669439913Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.949217-08:00" }, { "operation": "add_edge", - "rtt_ns": 845958, - "rtt_ms": 0.845958, + "rtt_ns": 1322833, + "rtt_ms": 1.322833, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.669451163Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.949232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932744, - "rtt_ms": 1.932744, + "rtt_ns": 1551958, + "rtt_ms": 1.551958, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.669537532Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:45.949336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215456, - "rtt_ms": 1.215456, + "rtt_ns": 1401708, + "rtt_ms": 1.401708, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.669929341Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:03:45.949711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434746, - "rtt_ms": 1.434746, + "rtt_ns": 1668166, + "rtt_ms": 1.668166, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:42.670075801Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.949759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558366, - "rtt_ms": 1.558366, + "rtt_ns": 1648125, + "rtt_ms": 1.648125, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.670096691Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.949783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438346, - "rtt_ms": 1.438346, + "rtt_ns": 1660208, + "rtt_ms": 1.660208, "checkpoint": 0, "vertex_from": "142", "vertex_to": "586", - "timestamp": "2025-11-27T01:23:42.670097171Z" + "timestamp": "2025-11-27T04:03:45.950762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459146, - "rtt_ms": 1.459146, + "rtt_ns": 1759917, + "rtt_ms": 1.759917, "checkpoint": 0, "vertex_from": "142", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.670134601Z" + "timestamp": "2025-11-27T04:03:45.950883-08:00" }, { "operation": "add_edge", - "rtt_ns": 597069, - "rtt_ms": 0.597069, + "rtt_ns": 1743500, + "rtt_ms": 1.7435, "checkpoint": 0, - "vertex_from": "143", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.670137211Z" + "vertex_from": "142", + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:45.950888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496145, - "rtt_ms": 1.496145, + "rtt_ns": 1744917, + "rtt_ms": 1.744917, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:42.67024534Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:45.950963-08:00" }, { "operation": "add_edge", - "rtt_ns": 849017, - "rtt_ms": 0.849017, + "rtt_ns": 1863583, + "rtt_ms": 1.863583, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:42.67027657Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:45.950991-08:00" }, { "operation": "add_edge", - "rtt_ns": 851347, - "rtt_ms": 0.851347, + "rtt_ns": 1661000, + "rtt_ms": 1.661, "checkpoint": 0, "vertex_from": "142", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.67030378Z" + "timestamp": "2025-11-27T04:03:45.950999-08:00" }, { "operation": "add_edge", - "rtt_ns": 953337, - "rtt_ms": 0.953337, + "rtt_ns": 1788584, + "rtt_ms": 1.788584, "checkpoint": 0, "vertex_from": "142", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.67039447Z" + "timestamp": "2025-11-27T04:03:45.951021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840105, - "rtt_ms": 1.840105, + "rtt_ns": 1339958, + "rtt_ms": 1.339958, "checkpoint": 0, "vertex_from": "143", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.671770936Z" + "timestamp": "2025-11-27T04:03:45.9511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725575, - "rtt_ms": 1.725575, + "rtt_ns": 1362584, + "rtt_ms": 1.362584, "checkpoint": 0, "vertex_from": "143", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.671802596Z" + "timestamp": "2025-11-27T04:03:45.951147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689255, - "rtt_ms": 1.689255, + "rtt_ns": 1553750, + "rtt_ms": 1.55375, "checkpoint": 0, "vertex_from": "143", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.671825816Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.951266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179004, - "rtt_ms": 2.179004, + "rtt_ns": 1216375, + "rtt_ms": 1.216375, "checkpoint": 0, "vertex_from": "144", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.672456234Z" + "timestamp": "2025-11-27T04:03:45.952216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241054, - "rtt_ms": 2.241054, + "rtt_ns": 1268208, + "rtt_ms": 1.268208, "checkpoint": 0, "vertex_from": "143", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.672487524Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.952232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2363553, - "rtt_ms": 2.363553, + "rtt_ns": 1283292, + "rtt_ms": 1.283292, "checkpoint": 0, - "vertex_from": "143", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.672501524Z" + "vertex_from": "144", + "vertex_to": "162", + "timestamp": "2025-11-27T04:03:45.952305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217424, - "rtt_ms": 2.217424, + "rtt_ns": 1328834, + "rtt_ms": 1.328834, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "162", - "timestamp": "2025-11-27T01:23:42.672521854Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:45.95243-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428723, - "rtt_ms": 2.428723, + "rtt_ns": 1301667, + "rtt_ms": 1.301667, "checkpoint": 0, - "vertex_from": "143", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:42.672527544Z" + "vertex_from": "144", + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:45.952449-08:00" }, { "operation": "add_edge", - "rtt_ns": 2439503, - "rtt_ms": 2.439503, + "rtt_ns": 1382292, + "rtt_ms": 1.382292, "checkpoint": 0, - "vertex_from": "143", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.672537364Z" + "vertex_from": "144", + "vertex_to": "694", + "timestamp": "2025-11-27T04:03:45.952649-08:00" }, { "operation": "add_edge", - "rtt_ns": 2750712, - "rtt_ms": 2.750712, + "rtt_ns": 1704792, + "rtt_ms": 1.704792, "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:42.673146222Z" + "vertex_from": "143", + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.952696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498295, - "rtt_ms": 1.498295, + "rtt_ns": 2030708, + "rtt_ms": 2.030708, "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.673325001Z" + "vertex_from": "143", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.952919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738515, - "rtt_ms": 1.738515, + "rtt_ns": 1043250, + "rtt_ms": 1.04325, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:42.673511231Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:45.953275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771625, - "rtt_ms": 1.771625, + "rtt_ns": 1075416, + "rtt_ms": 1.075416, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "694", - "timestamp": "2025-11-27T01:23:42.673576121Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:45.953292-08:00" }, { "operation": "add_edge", - "rtt_ns": 965607, - "rtt_ms": 0.965607, + "rtt_ns": 1269375, + "rtt_ms": 1.269375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.674113919Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.953575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605955, - "rtt_ms": 1.605955, + "rtt_ns": 1221708, + "rtt_ms": 1.221708, "checkpoint": 0, "vertex_from": "144", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:42.674128299Z" + "timestamp": "2025-11-27T04:03:45.953672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606785, - "rtt_ms": 1.606785, + "rtt_ns": 2927125, + "rtt_ms": 2.927125, "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:42.674135589Z" + "vertex_from": "143", + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.95369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699185, - "rtt_ms": 1.699185, + "rtt_ns": 2866083, + "rtt_ms": 2.866083, "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:42.674156079Z" + "vertex_from": "143", + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:45.953749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659315, - "rtt_ms": 1.659315, + "rtt_ns": 1200667, + "rtt_ms": 1.200667, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:42.674161819Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:45.953898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645845, - "rtt_ms": 1.645845, + "rtt_ns": 1926250, + "rtt_ms": 1.92625, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:42.674183959Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:45.954359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706825, - "rtt_ms": 1.706825, + "rtt_ns": 1677333, + "rtt_ms": 1.677333, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.674199849Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.954597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012727, - "rtt_ms": 1.012727, + "rtt_ns": 1336125, + "rtt_ms": 1.336125, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:42.674339168Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.955086-08:00" }, { "operation": "add_edge", - "rtt_ns": 871367, - "rtt_ms": 0.871367, + "rtt_ns": 1204750, + "rtt_ms": 1.20475, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.674986366Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:45.955106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536775, - "rtt_ms": 1.536775, + "rtt_ns": 1885833, + "rtt_ms": 1.885833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.675114356Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.955179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049157, - "rtt_ms": 1.049157, + "rtt_ns": 1560166, + "rtt_ms": 1.560166, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:42.675212266Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.955233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757605, - "rtt_ms": 1.757605, + "rtt_ns": 1560167, + "rtt_ms": 1.560167, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.675269586Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.955251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799105, - "rtt_ms": 1.799105, + "rtt_ns": 2105667, + "rtt_ms": 2.105667, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.675928524Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:45.955382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766465, - "rtt_ms": 1.766465, + "rtt_ns": 2099416, + "rtt_ms": 2.099416, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:42.676106683Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.955676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082424, - "rtt_ms": 2.082424, + "rtt_ns": 3065958, + "rtt_ms": 3.065958, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.676218903Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:03:45.955716-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099994, - "rtt_ms": 2.099994, + "rtt_ns": 1440083, + "rtt_ms": 1.440083, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.676300633Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:45.955801-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236723, - "rtt_ms": 2.236723, + "rtt_ns": 995500, + "rtt_ms": 0.9955, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:42.676393832Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:45.956082-08:00" }, { "operation": "add_edge", - "rtt_ns": 2433783, - "rtt_ms": 2.433783, + "rtt_ns": 1316125, + "rtt_ms": 1.316125, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:42.676618572Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:45.9567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633575, - "rtt_ms": 1.633575, + "rtt_ns": 1823500, + "rtt_ms": 1.8235, "checkpoint": 0, "vertex_from": "144", "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.676749001Z" + "timestamp": "2025-11-27T04:03:45.957057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765255, - "rtt_ms": 1.765255, + "rtt_ns": 2027209, + "rtt_ms": 2.027209, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:42.676753161Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:45.957135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026227, - "rtt_ms": 1.026227, + "rtt_ns": 1967333, + "rtt_ms": 1.967333, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:42.676956571Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:45.957148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720995, - "rtt_ms": 1.720995, + "rtt_ns": 2560125, + "rtt_ms": 2.560125, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:42.676991771Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:45.957158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812835, - "rtt_ms": 1.812835, + "rtt_ns": 1949000, + "rtt_ms": 1.949, "checkpoint": 0, "vertex_from": "144", "vertex_to": "806", - "timestamp": "2025-11-27T01:23:42.677027501Z" + "timestamp": "2025-11-27T04:03:45.957201-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 821818, - "rtt_ms": 0.821818, + "operation": "add_edge", + "rtt_ns": 1536375, + "rtt_ms": 1.536375, "checkpoint": 0, - "vertex_from": "678", - "timestamp": "2025-11-27T01:23:42.677577069Z" + "vertex_from": "144", + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.957253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761335, - "rtt_ms": 1.761335, + "rtt_ns": 1543500, + "rtt_ms": 1.5435, "checkpoint": 0, "vertex_from": "144", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:42.677982088Z" + "timestamp": "2025-11-27T04:03:45.957346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758245, - "rtt_ms": 1.758245, + "rtt_ns": 2129666, + "rtt_ms": 2.129666, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:42.678060098Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:45.957808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981125, - "rtt_ms": 1.981125, + "rtt_ns": 1903375, + "rtt_ms": 1.903375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.678088458Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:45.958606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848285, - "rtt_ms": 1.848285, + "rtt_ns": 1675542, + "rtt_ms": 1.675542, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:42.678243227Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:45.958835-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1661895, - "rtt_ms": 1.661895, + "rtt_ns": 1952792, + "rtt_ms": 1.952792, "checkpoint": 0, "vertex_from": "479", - "timestamp": "2025-11-27T01:23:42.678282197Z" + "timestamp": "2025-11-27T04:03:45.959013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599736, - "rtt_ms": 1.599736, + "rtt_ns": 2192792, + "rtt_ms": 2.192792, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.678349817Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.959394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407576, - "rtt_ms": 1.407576, + "rtt_ns": 1609417, + "rtt_ms": 1.609417, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.678400237Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:45.95942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462486, - "rtt_ms": 1.462486, + "rtt_ns": 2423750, + "rtt_ms": 2.42375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:42.678421657Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.95956-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2449333, + "rtt_ms": 2.449333, + "checkpoint": 0, + "vertex_from": "678", + "timestamp": "2025-11-27T04:03:45.9596-08:00" }, { "operation": "add_edge", - "rtt_ns": 916808, - "rtt_ms": 0.916808, + "rtt_ns": 2423750, + "rtt_ms": 2.42375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "678", - "timestamp": "2025-11-27T01:23:42.678494237Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.959678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488575, - "rtt_ms": 1.488575, + "rtt_ns": 2358417, + "rtt_ms": 2.358417, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.678516976Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:45.959705-08:00" }, { "operation": "add_edge", - "rtt_ns": 590288, - "rtt_ms": 0.590288, + "rtt_ns": 3624708, + "rtt_ms": 3.624708, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:42.678680116Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:45.959708-08:00" }, { "operation": "add_edge", - "rtt_ns": 719688, - "rtt_ms": 0.719688, + "rtt_ns": 1450542, + "rtt_ms": 1.450542, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:42.678703056Z" + "vertex_to": "479", + "timestamp": "2025-11-27T04:03:45.960464-08:00" }, { "operation": "add_edge", - "rtt_ns": 746638, - "rtt_ms": 0.746638, + "rtt_ns": 1060375, + "rtt_ms": 1.060375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:42.678807846Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:45.960481-08:00" }, { "operation": "add_edge", - "rtt_ns": 703828, - "rtt_ms": 0.703828, + "rtt_ns": 1201416, + "rtt_ms": 1.201416, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "717", - "timestamp": "2025-11-27T01:23:42.678948325Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:45.960597-08:00" }, { "operation": "add_edge", - "rtt_ns": 699888, - "rtt_ms": 0.699888, + "rtt_ns": 2096917, + "rtt_ms": 2.096917, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "479", - "timestamp": "2025-11-27T01:23:42.678982375Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:03:45.960706-08:00" }, { "operation": "add_edge", - "rtt_ns": 612478, - "rtt_ms": 0.612478, + "rtt_ns": 1959875, + "rtt_ms": 1.959875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:42.679013985Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:03:45.960796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056477, - "rtt_ms": 1.056477, + "rtt_ns": 1252167, + "rtt_ms": 1.252167, "checkpoint": 0, "vertex_from": "144", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:42.679479084Z" + "timestamp": "2025-11-27T04:03:45.960812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072937, - "rtt_ms": 1.072937, + "rtt_ns": 1855292, + "rtt_ms": 1.855292, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:42.679590963Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.961534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296886, - "rtt_ms": 1.296886, + "rtt_ns": 1948416, + "rtt_ms": 1.948416, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:42.679648963Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:03:45.961548-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2038542, + "rtt_ms": 2.038542, + "checkpoint": 0, + "vertex_from": "144", + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:45.961744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000457, - "rtt_ms": 1.000457, + "rtt_ns": 1297750, + "rtt_ms": 1.29775, "checkpoint": 0, "vertex_from": "144", "vertex_to": "505", - "timestamp": "2025-11-27T01:23:42.679705323Z" + "timestamp": "2025-11-27T04:03:45.961763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052407, - "rtt_ms": 1.052407, + "rtt_ns": 2150208, + "rtt_ms": 2.150208, "checkpoint": 0, "vertex_from": "144", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.679733443Z" + "timestamp": "2025-11-27T04:03:45.96186-08:00" }, { "operation": "add_edge", - "rtt_ns": 928577, - "rtt_ms": 0.928577, + "rtt_ns": 1413583, + "rtt_ms": 1.413583, "checkpoint": 0, "vertex_from": "144", "vertex_to": "345", - "timestamp": "2025-11-27T01:23:42.679737533Z" + "timestamp": "2025-11-27T04:03:45.961895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291586, - "rtt_ms": 1.291586, + "rtt_ns": 1597166, + "rtt_ms": 1.597166, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.679786543Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:45.962195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627086, - "rtt_ms": 1.627086, + "rtt_ns": 1742959, + "rtt_ms": 1.742959, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:42.680576231Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:45.962556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618345, - "rtt_ms": 1.618345, + "rtt_ns": 1891167, + "rtt_ms": 1.891167, "checkpoint": 0, "vertex_from": "144", "vertex_to": "418", - "timestamp": "2025-11-27T01:23:42.68060173Z" + "timestamp": "2025-11-27T04:03:45.9626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121516, - "rtt_ms": 1.121516, + "rtt_ns": 921250, + "rtt_ms": 0.92125, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:42.68060169Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:03:45.962666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595025, - "rtt_ms": 1.595025, + "rtt_ns": 1940083, + "rtt_ms": 1.940083, "checkpoint": 0, "vertex_from": "144", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:42.68061008Z" + "timestamp": "2025-11-27T04:03:45.962737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203537, - "rtt_ms": 1.203537, + "rtt_ns": 1224750, + "rtt_ms": 1.22475, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.68079536Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:45.962774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129967, - "rtt_ms": 1.129967, + "rtt_ns": 1476791, + "rtt_ms": 1.476791, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:42.68086839Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.963011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279856, - "rtt_ms": 1.279856, + "rtt_ns": 964084, + "rtt_ms": 0.964084, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:42.681067249Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:45.963702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471046, - "rtt_ms": 1.471046, + "rtt_ns": 1526000, + "rtt_ms": 1.526, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:42.681120639Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.963722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486196, - "rtt_ms": 1.486196, + "rtt_ns": 1911292, + "rtt_ms": 1.911292, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "146", - "timestamp": "2025-11-27T01:23:42.681192469Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:45.963774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512336, - "rtt_ms": 1.512336, + "rtt_ns": 1283875, + "rtt_ms": 1.283875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:42.681247149Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:45.963841-08:00" }, { "operation": "add_edge", - "rtt_ns": 714218, - "rtt_ms": 0.714218, + "rtt_ns": 1231417, + "rtt_ms": 1.231417, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "233", - "timestamp": "2025-11-27T01:23:42.681318048Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:03:45.963899-08:00" }, { "operation": "add_edge", - "rtt_ns": 740678, - "rtt_ms": 0.740678, + "rtt_ns": 1323708, + "rtt_ms": 1.323708, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:42.681343548Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:03:45.963924-08:00" }, { "operation": "add_edge", - "rtt_ns": 816827, - "rtt_ms": 0.816827, + "rtt_ns": 2179916, + "rtt_ms": 2.179916, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.681393818Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:45.963944-08:00" }, { "operation": "add_edge", - "rtt_ns": 816688, - "rtt_ms": 0.816688, + "rtt_ns": 2062000, + "rtt_ms": 2.062, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "412", - "timestamp": "2025-11-27T01:23:42.681427968Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:45.963959-08:00" }, { "operation": "add_edge", - "rtt_ns": 685218, - "rtt_ms": 0.685218, + "rtt_ns": 1356834, + "rtt_ms": 1.356834, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:42.681481808Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:45.964132-08:00" }, { "operation": "add_edge", - "rtt_ns": 653798, - "rtt_ms": 0.653798, + "rtt_ns": 1185625, + "rtt_ms": 1.185625, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:42.681523068Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.964198-08:00" }, { "operation": "add_edge", - "rtt_ns": 989857, - "rtt_ms": 0.989857, + "rtt_ns": 1336875, + "rtt_ms": 1.336875, "checkpoint": 0, "vertex_from": "144", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:42.682183176Z" + "timestamp": "2025-11-27T04:03:45.96506-08:00" }, { "operation": "add_edge", - "rtt_ns": 876708, - "rtt_ms": 0.876708, + "rtt_ns": 1375250, + "rtt_ms": 1.37525, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "244", - "timestamp": "2025-11-27T01:23:42.682221706Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:03:45.965078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196366, - "rtt_ms": 1.196366, + "rtt_ns": 1245250, + "rtt_ms": 1.24525, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.682264365Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:03:45.965147-08:00" }, { "operation": "add_edge", - "rtt_ns": 962957, - "rtt_ms": 0.962957, + "rtt_ns": 1277208, + "rtt_ms": 1.277208, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.682281975Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:03:45.965222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259066, - "rtt_ms": 1.259066, + "rtt_ns": 1448000, + "rtt_ms": 1.448, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:42.682380675Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:03:45.965225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143856, - "rtt_ms": 1.143856, + "rtt_ns": 1039833, + "rtt_ms": 1.039833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "740", - "timestamp": "2025-11-27T01:23:42.682392355Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:03:45.965238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126567, - "rtt_ms": 1.126567, + "rtt_ns": 1480875, + "rtt_ms": 1.480875, "checkpoint": 0, "vertex_from": "144", "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.682521225Z" + "timestamp": "2025-11-27T04:03:45.965407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729275, - "rtt_ms": 1.729275, + "rtt_ns": 1283583, + "rtt_ms": 1.283583, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "965", - "timestamp": "2025-11-27T01:23:42.683158483Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:45.965416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739415, - "rtt_ms": 1.739415, + "rtt_ns": 1518375, + "rtt_ms": 1.518375, "checkpoint": 0, "vertex_from": "144", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.683221993Z" + "timestamp": "2025-11-27T04:03:45.965478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726665, - "rtt_ms": 1.726665, + "rtt_ns": 1696833, + "rtt_ms": 1.696833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:42.683250663Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.965555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089076, - "rtt_ms": 1.089076, + "rtt_ns": 1078291, + "rtt_ms": 1.078291, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "696", - "timestamp": "2025-11-27T01:23:42.683273732Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:45.966305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309236, - "rtt_ms": 1.309236, + "rtt_ns": 1099583, + "rtt_ms": 1.099583, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:42.683531862Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.966323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358666, - "rtt_ms": 1.358666, + "rtt_ns": 1399583, + "rtt_ms": 1.399583, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.683739931Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:03:45.966549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477426, - "rtt_ms": 1.477426, + "rtt_ns": 1473625, + "rtt_ms": 1.473625, "checkpoint": 0, "vertex_from": "144", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.683742841Z" + "timestamp": "2025-11-27T04:03:45.966552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820635, - "rtt_ms": 1.820635, + "rtt_ns": 1432917, + "rtt_ms": 1.432917, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:42.68421427Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.966673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710805, - "rtt_ms": 1.710805, + "rtt_ns": 1291917, + "rtt_ms": 1.291917, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.68423294Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:45.966709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248206, - "rtt_ms": 1.248206, + "rtt_ns": 1435875, + "rtt_ms": 1.435875, "checkpoint": 0, "vertex_from": "144", "vertex_to": "928", - "timestamp": "2025-11-27T01:23:42.684408079Z" + "timestamp": "2025-11-27T04:03:45.966844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207806, - "rtt_ms": 1.207806, + "rtt_ns": 1883792, + "rtt_ms": 1.883792, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.684459159Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:45.966945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175904, - "rtt_ms": 2.175904, + "rtt_ns": 1504792, + "rtt_ms": 1.504792, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:42.684460569Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:45.966983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208997, - "rtt_ms": 1.208997, + "rtt_ns": 1485792, + "rtt_ms": 1.485792, "checkpoint": 0, "vertex_from": "144", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.684484749Z" + "timestamp": "2025-11-27T04:03:45.967042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354836, - "rtt_ms": 1.354836, + "rtt_ns": 1176667, + "rtt_ms": 1.176667, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.684577739Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:45.967501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656555, - "rtt_ms": 1.656555, + "rtt_ns": 1516709, + "rtt_ms": 1.516709, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:42.685189437Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:45.968363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473536, - "rtt_ms": 1.473536, + "rtt_ns": 1829334, + "rtt_ms": 1.829334, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:42.685214497Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:03:45.968379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182136, - "rtt_ms": 1.182136, + "rtt_ns": 2089667, + "rtt_ms": 2.089667, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:42.685397216Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:45.968395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176036, - "rtt_ms": 1.176036, + "rtt_ns": 1733875, + "rtt_ms": 1.733875, "checkpoint": 0, "vertex_from": "144", "vertex_to": "549", - "timestamp": "2025-11-27T01:23:42.685410176Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1707405, - "rtt_ms": 1.707405, - "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:42.685451036Z" + "timestamp": "2025-11-27T04:03:45.968409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309676, - "rtt_ms": 1.309676, + "rtt_ns": 1870833, + "rtt_ms": 1.870833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:42.685771055Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:45.968424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350456, - "rtt_ms": 1.350456, + "rtt_ns": 1729875, + "rtt_ms": 1.729875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:42.685810795Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:45.96844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345406, - "rtt_ms": 1.345406, + "rtt_ns": 1546708, + "rtt_ms": 1.546708, "checkpoint": 0, "vertex_from": "144", "vertex_to": "291", - "timestamp": "2025-11-27T01:23:42.685924535Z" + "timestamp": "2025-11-27T04:03:45.96859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452636, - "rtt_ms": 1.452636, + "rtt_ns": 1714250, + "rtt_ms": 1.71425, "checkpoint": 0, "vertex_from": "144", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:42.685938295Z" + "timestamp": "2025-11-27T04:03:45.968699-08:00" }, { "operation": "add_edge", - "rtt_ns": 822328, - "rtt_ms": 0.822328, + "rtt_ns": 1769917, + "rtt_ms": 1.769917, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:42.686012535Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:45.968716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614406, - "rtt_ms": 1.614406, + "rtt_ns": 1470166, + "rtt_ms": 1.470166, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:42.686023755Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:45.968973-08:00" }, { "operation": "add_edge", - "rtt_ns": 695498, - "rtt_ms": 0.695498, + "rtt_ns": 1114583, + "rtt_ms": 1.114583, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:42.686107254Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:45.96954-08:00" }, { "operation": "add_edge", - "rtt_ns": 730138, - "rtt_ms": 0.730138, + "rtt_ns": 1199958, + "rtt_ms": 1.199958, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:42.686128354Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:45.969596-08:00" }, { "operation": "add_edge", - "rtt_ns": 939887, - "rtt_ms": 0.939887, + "rtt_ns": 1296458, + "rtt_ms": 1.296458, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:42.686155464Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:45.969737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398846, - "rtt_ms": 1.398846, + "rtt_ns": 1838041, + "rtt_ms": 1.838041, "checkpoint": 0, "vertex_from": "144", "vertex_to": "492", - "timestamp": "2025-11-27T01:23:42.686850832Z" + "timestamp": "2025-11-27T04:03:45.970248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103937, - "rtt_ms": 1.103937, + "rtt_ns": 1731333, + "rtt_ms": 1.731333, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:42.686875602Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:03:45.970322-08:00" }, { "operation": "add_edge", - "rtt_ns": 945767, - "rtt_ms": 0.945767, + "rtt_ns": 1954708, + "rtt_ms": 1.954708, "checkpoint": 0, - "vertex_from": "145", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:42.686885042Z" + "vertex_from": "144", + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:45.970335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241747, - "rtt_ms": 1.241747, + "rtt_ns": 2727209, + "rtt_ms": 2.727209, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:42.687053512Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:45.971091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411556, - "rtt_ms": 1.411556, + "rtt_ns": 2391291, + "rtt_ms": 2.391291, "checkpoint": 0, "vertex_from": "145", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.687424851Z" + "timestamp": "2025-11-27T04:03:45.971108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346856, - "rtt_ms": 1.346856, + "rtt_ns": 2201917, + "rtt_ms": 2.201917, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.688233388Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.971176-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175464, - "rtt_ms": 2.175464, + "rtt_ns": 1649709, + "rtt_ms": 1.649709, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:42.688331968Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:03:45.971192-08:00" }, { "operation": "add_edge", - "rtt_ns": 2307873, - "rtt_ms": 2.307873, + "rtt_ns": 1613542, + "rtt_ms": 1.613542, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.688332338Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:45.97121-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251864, - "rtt_ms": 2.251864, + "rtt_ns": 1483291, + "rtt_ms": 1.483291, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "227", - "timestamp": "2025-11-27T01:23:42.688359968Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:45.971222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485396, - "rtt_ms": 1.485396, + "rtt_ns": 1029250, + "rtt_ms": 1.02925, "checkpoint": 0, "vertex_from": "145", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:42.688362208Z" + "timestamp": "2025-11-27T04:03:45.971352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523986, - "rtt_ms": 1.523986, + "rtt_ns": 2681125, + "rtt_ms": 2.681125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:42.688377968Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:45.971382-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268034, - "rtt_ms": 2.268034, + "rtt_ns": 2529834, + "rtt_ms": 2.529834, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:42.688396898Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:45.972778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306696, - "rtt_ms": 1.306696, + "rtt_ns": 1569583, + "rtt_ms": 1.569583, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:42.688733197Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:45.972781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2820832, - "rtt_ms": 2.820832, + "rtt_ns": 1648667, + "rtt_ms": 1.648667, "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:42.688746357Z" + "vertex_from": "145", + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:45.972826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696635, - "rtt_ms": 1.696635, + "rtt_ns": 1629250, + "rtt_ms": 1.62925, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "412", - "timestamp": "2025-11-27T01:23:42.688751937Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:45.972854-08:00" }, { "operation": "add_edge", - "rtt_ns": 688488, - "rtt_ms": 0.688488, + "rtt_ns": 1760375, + "rtt_ms": 1.760375, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:42.688923166Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:45.972869-08:00" }, { "operation": "add_edge", - "rtt_ns": 609068, - "rtt_ms": 0.609068, + "rtt_ns": 1780958, + "rtt_ms": 1.780958, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:42.688942896Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:03:45.972873-08:00" }, { "operation": "add_edge", - "rtt_ns": 656428, - "rtt_ms": 0.656428, + "rtt_ns": 1751042, + "rtt_ms": 1.751042, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:42.689035436Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:45.972944-08:00" }, { "operation": "add_edge", - "rtt_ns": 708278, - "rtt_ms": 0.708278, + "rtt_ns": 2654834, + "rtt_ms": 2.654834, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:42.689071736Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.97299-08:00" }, { "operation": "add_edge", - "rtt_ns": 790248, - "rtt_ms": 0.790248, + "rtt_ns": 1898208, + "rtt_ms": 1.898208, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:42.689124296Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:45.973281-08:00" }, { "operation": "add_edge", - "rtt_ns": 834457, - "rtt_ms": 0.834457, + "rtt_ns": 2447541, + "rtt_ms": 2.447541, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.689232355Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:45.973802-08:00" }, { "operation": "add_edge", - "rtt_ns": 895087, - "rtt_ms": 0.895087, + "rtt_ns": 1414500, + "rtt_ms": 1.4145, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:42.689256105Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:45.974243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148276, - "rtt_ms": 1.148276, + "rtt_ns": 1348667, + "rtt_ms": 1.348667, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.689901353Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:45.974295-08:00" }, { "operation": "add_edge", - "rtt_ns": 938937, - "rtt_ms": 0.938937, + "rtt_ns": 1759333, + "rtt_ms": 1.759333, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:42.689975333Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.974617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048857, - "rtt_ms": 1.048857, + "rtt_ns": 1423666, + "rtt_ms": 1.423666, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.689992903Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.974705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336486, - "rtt_ms": 1.336486, + "rtt_ns": 1940542, + "rtt_ms": 1.940542, "checkpoint": 0, "vertex_from": "145", "vertex_to": "389", - "timestamp": "2025-11-27T01:23:42.690071153Z" + "timestamp": "2025-11-27T04:03:45.974722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343996, - "rtt_ms": 1.343996, + "rtt_ns": 1942958, + "rtt_ms": 1.942958, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:42.690091443Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.974722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020337, - "rtt_ms": 1.020337, + "rtt_ns": 1888958, + "rtt_ms": 1.888958, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:42.690094473Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.974763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637835, - "rtt_ms": 1.637835, + "rtt_ns": 1893667, + "rtt_ms": 1.893667, "checkpoint": 0, "vertex_from": "145", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.690563571Z" + "timestamp": "2025-11-27T04:03:45.974764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473816, - "rtt_ms": 1.473816, + "rtt_ns": 2034583, + "rtt_ms": 2.034583, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.690731171Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:45.975026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629795, - "rtt_ms": 1.629795, + "rtt_ns": 1262625, + "rtt_ms": 1.262625, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.690754791Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.975065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530786, - "rtt_ms": 1.530786, + "rtt_ns": 932125, + "rtt_ms": 0.932125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.690764241Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:45.975176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242347, - "rtt_ms": 1.242347, + "rtt_ns": 849125, + "rtt_ms": 0.849125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:42.69114553Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:45.975467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106217, - "rtt_ms": 1.106217, + "rtt_ns": 2015292, + "rtt_ms": 2.015292, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:42.69120189Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:45.976312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254266, - "rtt_ms": 1.254266, + "rtt_ns": 1716208, + "rtt_ms": 1.716208, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:42.691230949Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:45.976439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251726, - "rtt_ms": 1.251726, + "rtt_ns": 1728334, + "rtt_ms": 1.728334, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:42.691245839Z" + "vertex_to": "237", + "timestamp": "2025-11-27T04:03:45.976452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199056, - "rtt_ms": 1.199056, + "rtt_ns": 1412875, + "rtt_ms": 1.412875, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:42.691271999Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.976479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198336, - "rtt_ms": 1.198336, + "rtt_ns": 1835708, + "rtt_ms": 1.835708, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "237", - "timestamp": "2025-11-27T01:23:42.691290919Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:45.976542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241587, - "rtt_ms": 1.241587, + "rtt_ns": 1871959, + "rtt_ms": 1.871959, "checkpoint": 0, "vertex_from": "145", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.691807108Z" + "timestamp": "2025-11-27T04:03:45.976638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245136, - "rtt_ms": 1.245136, + "rtt_ns": 1945958, + "rtt_ms": 1.945958, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:42.691977377Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:45.97671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337626, - "rtt_ms": 1.337626, + "rtt_ns": 1786125, + "rtt_ms": 1.786125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.692093757Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:45.976813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347426, - "rtt_ms": 1.347426, + "rtt_ns": 1645417, + "rtt_ms": 1.645417, "checkpoint": 0, "vertex_from": "145", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:42.692112607Z" + "timestamp": "2025-11-27T04:03:45.976823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602465, - "rtt_ms": 1.602465, + "rtt_ns": 1434708, + "rtt_ms": 1.434708, "checkpoint": 0, "vertex_from": "145", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:42.692750935Z" + "timestamp": "2025-11-27T04:03:45.976902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513076, - "rtt_ms": 1.513076, + "rtt_ns": 1360083, + "rtt_ms": 1.360083, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:42.692804735Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:03:45.977673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575476, - "rtt_ms": 1.575476, + "rtt_ns": 1260791, + "rtt_ms": 1.260791, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:42.692822435Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:45.97774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649705, - "rtt_ms": 1.649705, + "rtt_ns": 1498333, + "rtt_ms": 1.498333, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:42.692881834Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:45.977951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826574, - "rtt_ms": 1.826574, + "rtt_ns": 1186833, + "rtt_ms": 1.186833, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:42.693029554Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:45.978011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527715, - "rtt_ms": 1.527715, + "rtt_ns": 1349708, + "rtt_ms": 1.349708, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:42.693622442Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:45.978061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717785, - "rtt_ms": 1.717785, + "rtt_ns": 1261375, + "rtt_ms": 1.261375, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:42.693696442Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:45.978077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639855, - "rtt_ms": 1.639855, + "rtt_ns": 1657750, + "rtt_ms": 1.65775, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:42.693753852Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:45.978097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058857, - "rtt_ms": 1.058857, + "rtt_ns": 1521458, + "rtt_ms": 1.521458, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.693810462Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:45.97816-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011034, - "rtt_ms": 2.011034, + "rtt_ns": 1633500, + "rtt_ms": 1.6335, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:42.693819232Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:45.978176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043437, - "rtt_ms": 1.043437, + "rtt_ns": 1584125, + "rtt_ms": 1.584125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:42.693848802Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:45.978487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031507, - "rtt_ms": 1.031507, + "rtt_ns": 1110500, + "rtt_ms": 1.1105, "checkpoint": 0, - "vertex_from": "145", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:42.693914201Z" + "vertex_from": "146", + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:45.979599-08:00" }, { "operation": "add_edge", - "rtt_ns": 2653532, - "rtt_ms": 2.653532, + "rtt_ns": 1917458, + "rtt_ms": 1.917458, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:42.693928021Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:45.979659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147226, - "rtt_ms": 1.147226, + "rtt_ns": 1683084, + "rtt_ms": 1.683084, "checkpoint": 0, - "vertex_from": "145", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:42.693970181Z" + "vertex_from": "146", + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:45.97986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104897, - "rtt_ms": 1.104897, + "rtt_ns": 2095875, + "rtt_ms": 2.095875, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:42.694135081Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:45.980047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563985, - "rtt_ms": 1.563985, + "rtt_ns": 2465708, + "rtt_ms": 2.465708, "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:42.695318657Z" + "vertex_from": "145", + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:45.980141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783465, - "rtt_ms": 1.783465, + "rtt_ns": 2373750, + "rtt_ms": 2.37375, "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:42.695485147Z" + "vertex_from": "145", + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:45.980387-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009804, - "rtt_ms": 2.009804, + "rtt_ns": 2385166, + "rtt_ms": 2.385166, "checkpoint": 0, "vertex_from": "145", "vertex_to": "148", - "timestamp": "2025-11-27T01:23:42.695633606Z" + "timestamp": "2025-11-27T04:03:45.980447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968324, - "rtt_ms": 1.968324, + "rtt_ns": 2382375, + "rtt_ms": 2.382375, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:42.695788216Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:45.98046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988544, - "rtt_ms": 1.988544, + "rtt_ns": 2333083, + "rtt_ms": 2.333083, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:42.695839856Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:03:45.980494-08:00" }, { "operation": "add_edge", - "rtt_ns": 2594992, - "rtt_ms": 2.594992, + "rtt_ns": 2397458, + "rtt_ms": 2.397458, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "307", - "timestamp": "2025-11-27T01:23:42.696406474Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:45.980496-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579763, - "rtt_ms": 2.579763, + "rtt_ns": 980375, + "rtt_ms": 0.980375, "checkpoint": 0, "vertex_from": "146", "vertex_to": "209", - "timestamp": "2025-11-27T01:23:42.696495674Z" + "timestamp": "2025-11-27T04:03:45.980581-08:00" }, { "operation": "add_edge", - "rtt_ns": 2603703, - "rtt_ms": 2.603703, + "rtt_ns": 1494167, + "rtt_ms": 1.494167, "checkpoint": 0, "vertex_from": "146", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:42.696532834Z" + "timestamp": "2025-11-27T04:03:45.981153-08:00" }, { "operation": "add_edge", - "rtt_ns": 2628703, - "rtt_ms": 2.628703, + "rtt_ns": 1417792, + "rtt_ms": 1.417792, "checkpoint": 0, "vertex_from": "146", "vertex_to": "636", - "timestamp": "2025-11-27T01:23:42.696600234Z" + "timestamp": "2025-11-27T04:03:45.981279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533542, - "rtt_ms": 2.533542, + "rtt_ns": 1673792, + "rtt_ms": 1.673792, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:42.696669723Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:45.981816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428886, - "rtt_ms": 1.428886, + "rtt_ns": 1874625, + "rtt_ms": 1.874625, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:42.696748523Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:45.981923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314406, - "rtt_ms": 1.314406, + "rtt_ns": 1438625, + "rtt_ms": 1.438625, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:42.696800613Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:45.981935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202657, - "rtt_ms": 1.202657, + "rtt_ns": 1866667, + "rtt_ms": 1.866667, "checkpoint": 0, "vertex_from": "146", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:42.696838733Z" + "timestamp": "2025-11-27T04:03:45.982315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096477, - "rtt_ms": 1.096477, + "rtt_ns": 1871458, + "rtt_ms": 1.871458, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:42.696937453Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:45.982454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156827, - "rtt_ms": 1.156827, + "rtt_ns": 2103833, + "rtt_ms": 2.103833, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:42.696945633Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:45.982493-08:00" }, { "operation": "add_edge", - "rtt_ns": 665948, - "rtt_ms": 0.665948, + "rtt_ns": 2211625, + "rtt_ms": 2.211625, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:42.697073062Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:45.982707-08:00" }, { "operation": "add_edge", - "rtt_ns": 623018, - "rtt_ms": 0.623018, + "rtt_ns": 2275917, + "rtt_ms": 2.275917, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:42.697119232Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:45.982737-08:00" }, { "operation": "add_edge", - "rtt_ns": 624038, - "rtt_ms": 0.624038, + "rtt_ns": 1150541, + "rtt_ms": 1.150541, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:42.697158152Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:45.983466-08:00" }, { "operation": "add_edge", - "rtt_ns": 592678, - "rtt_ms": 0.592678, + "rtt_ns": 1672166, + "rtt_ms": 1.672166, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:42.697193762Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:45.983608-08:00" }, { "operation": "add_edge", - "rtt_ns": 557419, - "rtt_ms": 0.557419, + "rtt_ns": 1810792, + "rtt_ms": 1.810792, "checkpoint": 0, "vertex_from": "146", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:42.697228082Z" + "timestamp": "2025-11-27T04:03:45.983627-08:00" }, { "operation": "add_edge", - "rtt_ns": 670008, - "rtt_ms": 0.670008, + "rtt_ns": 2365709, + "rtt_ms": 2.365709, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:42.697509401Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:45.983645-08:00" }, { "operation": "add_edge", - "rtt_ns": 787788, - "rtt_ms": 0.787788, + "rtt_ns": 1861292, + "rtt_ms": 1.861292, "checkpoint": 0, "vertex_from": "146", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:42.697537181Z" + "timestamp": "2025-11-27T04:03:45.983785-08:00" }, { "operation": "add_edge", - "rtt_ns": 854868, - "rtt_ms": 0.854868, + "rtt_ns": 2640333, + "rtt_ms": 2.640333, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:42.697657031Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:45.983795-08:00" }, { "operation": "add_edge", - "rtt_ns": 774327, - "rtt_ms": 0.774327, + "rtt_ns": 1459875, + "rtt_ms": 1.459875, "checkpoint": 0, "vertex_from": "146", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:42.69771321Z" + "timestamp": "2025-11-27T04:03:45.983914-08:00" }, { "operation": "add_edge", - "rtt_ns": 848597, - "rtt_ms": 0.848597, + "rtt_ns": 1683792, + "rtt_ms": 1.683792, "checkpoint": 0, "vertex_from": "146", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:42.69779524Z" - }, - { - "operation": "add_edge", - "rtt_ns": 654598, - "rtt_ms": 0.654598, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:42.69781444Z" + "timestamp": "2025-11-27T04:03:45.984178-08:00" }, { "operation": "add_edge", - "rtt_ns": 784338, - "rtt_ms": 0.784338, + "rtt_ns": 1478542, + "rtt_ms": 1.478542, "checkpoint": 0, "vertex_from": "146", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:42.69790545Z" + "timestamp": "2025-11-27T04:03:45.984217-08:00" }, { "operation": "add_edge", - "rtt_ns": 888838, - "rtt_ms": 0.888838, + "rtt_ns": 1554292, + "rtt_ms": 1.554292, "checkpoint": 0, "vertex_from": "146", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:42.69796375Z" - }, - { - "operation": "add_edge", - "rtt_ns": 761998, - "rtt_ms": 0.761998, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:42.69799105Z" + "timestamp": "2025-11-27T04:03:45.984262-08:00" }, { "operation": "add_edge", - "rtt_ns": 509659, - "rtt_ms": 0.509659, + "rtt_ns": 1116292, + "rtt_ms": 1.116292, "checkpoint": 0, "vertex_from": "146", "vertex_to": "395", - "timestamp": "2025-11-27T01:23:42.6980198Z" + "timestamp": "2025-11-27T04:03:45.984762-08:00" }, { "operation": "add_edge", - "rtt_ns": 824688, - "rtt_ms": 0.824688, + "rtt_ns": 1474667, + "rtt_ms": 1.474667, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "717", - "timestamp": "2025-11-27T01:23:42.69802014Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:45.985103-08:00" }, { "operation": "add_edge", - "rtt_ns": 567328, - "rtt_ms": 0.567328, + "rtt_ns": 1559958, + "rtt_ms": 1.559958, "checkpoint": 0, "vertex_from": "146", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:42.698106149Z" - }, - { - "operation": "add_edge", - "rtt_ns": 961018, - "rtt_ms": 0.961018, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:42.698675458Z" + "timestamp": "2025-11-27T04:03:45.985348-08:00" }, { "operation": "add_edge", - "rtt_ns": 893688, - "rtt_ms": 0.893688, + "rtt_ns": 1880625, + "rtt_ms": 1.880625, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:42.698690238Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:45.985348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061477, - "rtt_ms": 1.061477, + "rtt_ns": 1652334, + "rtt_ms": 1.652334, "checkpoint": 0, "vertex_from": "146", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:42.698719598Z" - }, - { - "operation": "add_edge", - "rtt_ns": 987057, - "rtt_ms": 0.987057, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:42.698893577Z" - }, - { - "operation": "add_edge", - "rtt_ns": 944757, - "rtt_ms": 0.944757, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:42.698909247Z" - }, - { - "operation": "add_edge", - "rtt_ns": 926947, - "rtt_ms": 0.926947, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:42.698919007Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1103937, - "rtt_ms": 1.103937, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:42.698919257Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1346706, - "rtt_ms": 1.346706, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:42.699367426Z" + "timestamp": "2025-11-27T04:03:45.985448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496475, - "rtt_ms": 1.496475, + "rtt_ns": 1671958, + "rtt_ms": 1.671958, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:42.699517705Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1516306, - "rtt_ms": 1.516306, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:42.699623125Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1091207, - "rtt_ms": 1.091207, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:42.699985444Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1412376, - "rtt_ms": 1.412376, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "152", - "timestamp": "2025-11-27T01:23:42.700132734Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:45.985587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506005, - "rtt_ms": 1.506005, + "rtt_ns": 2016125, + "rtt_ms": 2.016125, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:42.700182433Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:03:45.985625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514425, - "rtt_ms": 1.514425, + "rtt_ns": 1404417, + "rtt_ms": 1.404417, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:42.700205883Z" - }, - { - "operation": "bfs", - "rtt_ns": 434957321, - "rtt_ms": 434, - "checkpoint": 4, - "bfs_start": "0", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", - "334", - "462", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "413", - "44", - "212", - "581", - "483", - "985", - "200", - "758", - "597", - "715", - "755", - "535", - "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "807", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "126", - "1", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:45.985667-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1824584, + "rtt_ms": 1.824584, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:45.986043-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1954750, + "rtt_ms": 1.95475, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:45.986133-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1258333, + "rtt_ms": 1.258333, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:45.986362-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1010291, + "rtt_ms": 1.010291, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:45.986459-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1775000, + "rtt_ms": 1.775, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:45.986538-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1246625, + "rtt_ms": 1.246625, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:45.986596-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1301917, + "rtt_ms": 1.301917, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "541", + "timestamp": "2025-11-27T04:03:45.986652-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1063333, + "rtt_ms": 1.063333, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:45.986689-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1185416, + "rtt_ms": 1.185416, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:45.986773-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1096583, + "rtt_ms": 1.096583, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:45.98714-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1502792, + "rtt_ms": 1.502792, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "152", + "timestamp": "2025-11-27T04:03:45.987171-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 426194583, + "rtt_ms": 426, + "checkpoint": 4, + "bfs_start": "0", + "bfs_radius": 10, + "bfs_result": [ + "249", + "398", + "554", + "821", + "562", + "368", "221", - "38", - "73", - "397", - "343", - "859", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", + "906", + "187", + "472", + "552", + "261", + "462", + "230", + "288", + "64", + "909", + "617", + "813", "386", - "989", - "125", - "76", - "928", - "253", - "232", - "169", - "284", - "423", - "621", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "892", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "567", - "799", - "77", - "163", + "394", + "56", + "217", "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "250", - "46", - "870", - "220", - "161", + "932", + "921", "365", - "217", - "474", - "586", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "974", - "783", - "245", - "703", - "264", - "742", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", + "913", + "576", + "116", + "147", "663", - "140", - "167", - "848", - "967", - "890", + "29", + "598", + "819", + "667", + "473", + "934", + "853", + "764", + "915", + "61", + "47", + "145", + "610", + "341", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "799", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "0", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "1001", - "771", - "326", - "346", - "770", - "90", + "198", + "952", + "176", "956", - "328", - "648", - "86", - "431", - "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", "781", - "22", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "1008", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "59", + "174", + "974", + "923", "430", - "333", - "324", - "141", - "565", - "448", - "88", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", + "567", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "126", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", + "654", + "65", + "742", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", "376", - "216", - "554", - "54", - "636", - "213", - "20", + "573", "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "463", - "718", + "810", "453", - "804", - "486", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", - "577", - "477", - "803", - "62", - "252", - "791", + "310", + "34", + "817", + "121", + "41", "26", - "11", - "984", - "139", - "192", - "394", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "0", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "31", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "661", + "479", + "596", + "413", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", - "670", - "427", - "767", - "622", - "740", - "488", - "426", - "158", + "874", + "25", + "307", + "369", "887", - "249", - "851", - "688", - "795", + "807", + "75", + "992", + "355", + "137", + "973", + "331", + "626", "818", - "498", - "699", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "1008", + "305", + "130", "646", - "91", - "905", "675", - "434", - "404", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", "320", + "337", + "754", + "592", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", + "606", + "107", + "223", + "972", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", + "688", + "585", + "568", "829", - "132", - "143", - "840", - "652", - "194", - "801", - "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "989", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "31", + "547", "144", - "914", - "373", - "642", - "594", - "243", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "855", + "281", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", "605", "437", - "813", - "176", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "738", + "571", + "356", + "859", + "691", + "102", + "317", + "96", + "516", + "720", "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", - "409", - "902", + "108", + "201", + "127", + "637", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "164", + "414", + "980", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "1001", + "865", + "586", "489", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", - "744", - "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", + "92", + "836", + "468", + "712", + "715", + "18", + "774", + "225", + "806", + "820", + "809", + "902", + "253", "425", - "269", - "281", - "778", - "285", - "155", + "306", "160", - "130", - "193", - "924", - "117", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "371", "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", + "270", + "1", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", + "756", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "728", + "40", + "231", + "62", + "224", + "679", + "466", + "416", + "657", + "966", "455", - "215", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156" + "530", + "1009", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "409", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:45.173016671Z" + "timestamp": "2025-11-27T04:03:48.44765-08:00" }, { "operation": "bfs", - "rtt_ns": 421334721, - "rtt_ms": 421, + "rtt_ns": 386735875, + "rtt_ms": 386, "checkpoint": 4, "bfs_start": "1", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", - "212", - "581", - "483", - "985", - "200", - "758", - "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "1", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", + "249", + "398", + "554", + "821", + "562", + "368", "221", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", "386", - "989", - "125", - "76", - "928", - "253", - "232", - "169", - "284", - "423", - "621", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "567", - "799", - "77", - "163", + "394", + "56", + "217", "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "250", - "46", - "870", - "220", - "161", + "932", + "921", "365", - "217", - "474", - "586", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", - "897", - "537", - "518", - "855", - "304", - "198", - "873", - "668", - "467", - "256", - "952", + "132", + "218", + "595", + "339", "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", - "99", - "996", - "360", - "15", - "992", - "34", - "930", - "974", - "783", + "22", + "9", + "678", + "770", + "435", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", + "897", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "500", + "426", + "397", + "920", + "273", "245", - "703", - "264", - "742", - "2", - "867", - "800", - "841", - "70", - "424", + "725", + "263", + "985", + "438", + "432", + "666", + "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", + "667", + "934", + "853", + "764", + "915", + "61", + "47", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "799", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "431", - "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", + "198", + "952", + "176", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", "781", - "22", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "59", + "174", + "974", + "923", "430", - "333", - "324", - "141", - "565", - "448", - "88", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", + "567", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", + "654", + "65", + "742", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", "376", - "216", - "554", - "54", - "636", - "213", - "20", + "573", "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "718", + "810", "453", - "804", - "486", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", - "577", - "477", - "803", - "252", - "791", + "310", + "34", + "817", + "121", + "41", "26", - "11", - "984", - "139", - "192", - "394", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "661", + "479", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "669", + "874", + "25", + "307", + "369", + "887", + "75", + "992", + "355", + "137", + "973", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", "976", - "348", - "399", - "316", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", + "754", + "592", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", + "107", + "223", "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "653", - "342", - "768", + "244", + "457", "670", - "427", + "32", + "280", + "142", + "268", + "342", "767", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", "688", - "795", - "818", - "498", - "699", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", "91", - "905", - "675", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "989", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "855", + "281", + "710", + "334", "434", - "404", - "320", - "829", - "132", - "143", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "980", + "153", + "403", + "267", + "291", + "293", "840", - "652", - "194", - "801", - "1009", - "137", - "750", - "71", - "390", - "233", - "27", + "134", + "327", + "994", + "865", + "586", + "489", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", + "92", + "836", + "468", + "712", + "18", + "774", + "225", + "806", + "820", + "809", + "902", + "253", + "425", + "306", + "160", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", "611", - "201", - "685", - "144", - "914", - "373", + "236", + "683", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "1", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", + "756", + "518", + "842", + "746", "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", + "1009", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "164", - "489", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", - "744", + "370", "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", - "425", - "269", - "281", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", - "455", - "215", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156" + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:45.594806661Z" + "timestamp": "2025-11-27T04:03:48.834506-08:00" }, { "operation": "bfs", - "rtt_ns": 417502372, - "rtt_ms": 417, + "rtt_ns": 373950750, + "rtt_ms": 373, "checkpoint": 4, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", - "212", - "581", - "483", - "985", - "200", - "758", - "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", + "249", + "398", + "554", + "821", + "562", + "368", "221", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", "386", - "989", - "125", - "76", - "928", - "232", - "169", - "284", - "423", - "621", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "567", - "799", - "77", - "163", + "394", + "56", + "217", "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "250", - "46", - "870", - "220", - "161", + "932", + "921", "365", - "217", - "474", - "586", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "974", - "783", - "245", - "703", - "264", - "742", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", + "667", + "934", + "764", + "915", + "61", + "47", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "799", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "431", - "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", + "198", + "952", + "176", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", + "59", + "174", + "974", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "567", + "103", + "773", + "970", + "899", "69", - "944", - "45", - "718", - "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", + "534", + "784", + "601", + "856", + "954", "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "742", + "333", + "364", + "861", "577", - "477", - "803", - "252", - "791", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", "26", - "11", - "984", - "139", - "192", - "394", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "661", + "479", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "976", - "348", - "399", - "316", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", + "874", + "25", + "307", + "369", + "887", + "75", + "992", + "355", + "137", + "973", + "331", + "626", + "818", + "305", + "130", + "646", + "675", "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", + "629", + "572", + "233", + "1002", + "976", + "154", "260", - "432", - "544", - "601", - "458", - "653", - "342", - "768", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", + "107", + "223", + "972", + "244", + "457", "670", - "427", + "32", + "280", + "142", + "268", + "342", "767", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", "688", - "795", - "818", - "498", - "699", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", "91", - "905", - "675", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "989", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", "434", - "404", - "320", - "829", - "132", - "143", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "980", + "153", + "403", + "267", + "291", + "293", "840", - "652", - "194", - "801", - "1009", - "137", - "750", - "71", - "390", - "233", - "27", + "134", + "327", + "994", + "865", + "586", + "489", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", + "92", + "836", + "468", + "712", + "18", + "774", + "225", + "806", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", "611", - "201", - "685", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", + "236", + "683", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", "272", - "409", - "902", - "520", - "214", + "237", + "672", + "789", + "525", + "616", + "270", + "70", + "155", + "845", + "645", + "988", "753", + "17", + "361", + "477", + "756", + "518", + "842", "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "164", - "489", - "65", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", + "1009", + "171", + "550", "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", - "744", - "412", - "443", "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", - "425", - "269", - "281", + "76", + "11", + "594", + "314", + "409", + "370", + "412", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", - "455", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156" + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:46.012772962Z" + "timestamp": "2025-11-27T04:03:49.208586-08:00" }, { "operation": "bfs", - "rtt_ns": 410422094, - "rtt_ms": 410, + "rtt_ns": 377363833, + "rtt_ms": 377, "checkpoint": 4, "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "44", - "212", - "581", - "483", - "985", - "200", - "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", + "249", + "398", + "554", + "562", + "368", "221", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", "386", - "989", - "125", - "76", - "928", - "232", - "169", - "284", - "423", - "621", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", - "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "567", - "799", - "77", - "163", + "394", + "56", + "217", "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "573", - "916", - "802", - "50", - "546", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "250", - "46", - "870", - "220", - "161", + "932", + "921", "365", - "217", - "474", - "586", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "974", - "783", - "245", - "703", - "264", - "742", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", + "667", + "934", + "764", + "915", + "61", + "47", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "799", + "428", + "424", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "328", - "648", - "86", - "431", - "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", + "198", + "952", + "176", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", "781", - "22", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "59", + "174", + "974", + "923", "430", - "333", - "324", - "141", - "565", - "448", - "88", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", "5", - "562", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", + "567", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", + "654", + "65", + "742", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", "376", - "216", - "554", - "54", - "636", - "213", - "20", + "573", "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "718", + "810", "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", - "577", - "803", - "252", - "791", + "310", + "34", + "817", + "121", + "41", "26", - "11", - "984", - "139", - "192", - "394", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "805", + "755", + "301", + "661", + "479", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "800", "4", - "526", - "210", - "836", - "976", - "348", - "316", - "617", + "874", + "25", + "307", + "369", + "887", + "75", + "992", + "355", + "137", + "973", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", + "107", + "223", "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "246", + "841", + "140", + "888", + "772", "659", - "406", - "24", - "260", - "432", - "544", - "601", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", "458", - "653", - "342", - "768", - "670", - "427", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "989", "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "795", - "818", + "969", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", "498", - "699", - "370", - "460", - "787", - "906", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "717", + "269", + "981", + "520", + "414", + "980", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "489", + "937", + "161", + "522", + "100", + "184", + "12", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", + "92", + "836", + "468", + "712", + "18", + "774", + "225", + "806", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "164", - "489", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", - "744", + "370", "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", - "425", - "269", - "281", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", - "455", - "16", - "793", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156" + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:46.423644444Z" + "timestamp": "2025-11-27T04:03:49.586069-08:00" }, { "operation": "bfs", - "rtt_ns": 413393416, - "rtt_ms": 413, + "rtt_ns": 379330875, + "rtt_ms": 379, "checkpoint": 4, "bfs_start": "3", "bfs_radius": 10, "bfs_result": [ + "249", + "398", + "554", + "562", + "368", + "221", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "80", + "53", + "612", + "375", + "901", + "644", + "117", + "241", + "358", + "407", + "708", + "86", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", + "278", + "535", + "837", + "234", + "835", + "396", + "963", + "14", + "172", + "932", + "921", + "365", + "150", + "542", + "862", + "166", + "188", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", + "452", + "132", + "218", + "595", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", + "897", + "474", + "111", + "240", + "730", + "359", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "302", "311", - "150", - "334", - "548", - "78", - "41", - "720", + "203", + "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", + "667", + "934", + "764", + "915", + "61", + "47", + "145", + "610", + "341", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", + "796", + "799", + "428", + "424", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", + "401", + "198", + "952", + "176", + "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", + "701", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "44", - "212", - "581", - "483", - "985", - "200", + "867", + "914", + "697", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "844", + "227", + "825", + "929", + "781", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "220", + "652", + "848", + "27", + "707", + "911", + "71", "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", + "129", + "24", + "484", + "59", "174", + "974", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", + "190", + "460", + "721", "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "680", - "576", - "310", - "124", - "356", - "354", + "967", + "5", + "567", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", + "954", + "433", + "450", + "158", + "329", + "286", "312", - "246", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "742", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "41", + "26", + "104", + "570", + "689", + "673", + "3", + "805", + "755", + "301", + "661", + "479", + "596", + "682", + "106", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", + "800", + "4", + "874", + "25", "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "932", - "377", - "173", - "274", "369", - "170", - "122", - "604", - "30", - "179", + "887", + "75", + "992", + "355", + "137", "973", - "842", - "470", - "970", - "9", - "221", - "38", - "73", - "397", - "343", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", + "587", "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "84", - "386", - "989", - "125", - "76", - "928", - "232", - "169", - "284", - "423", - "621", - "602", + "322", + "377", "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "522", + "964", + "804", + "282", + "186", "313", - "145", - "480", - "808", - "135", - "533", - "299", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", + "633", + "199", + "786", + "107", + "223", + "972", + "244", + "457", + "670", "32", - "769", - "59", - "162", - "896", - "658", - "888", - "98", - "773", - "487", - "419", "280", - "195", - "934", - "322", + "142", + "268", + "342", + "246", + "841", + "140", + "888", "772", - "530", - "567", - "799", - "77", - "163", - "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "728", - "199", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", - "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "250", - "46", - "870", - "220", - "161", - "365", - "217", - "474", - "586", - "452", - "190", - "965", - "839", - "557", - "897", + "659", + "650", + "931", + "529", + "7", + "792", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", "537", - "518", - "304", - "198", + "744", "873", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "104", - "115", - "344", - "961", - "302", - "279", + "49", + "984", + "346", "936", - "99", "996", - "360", - "15", - "992", - "34", - "930", - "974", - "783", - "245", - "703", - "264", - "742", - "867", - "800", - "841", - "70", - "424", - "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", - "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "52", - "68", + "745", + "19", + "607", + "566", + "58", + "436", + "989", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", + "144", + "44", + "88", + "39", "864", - "536", - "674", - "110", - "595", - "521", - "833", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", "710", - "461", - "66", - "277", - "401", - "451", - "920", - "585", + "334", + "434", + "43", + "138", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", "519", "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", + "512", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", "328", - "648", - "86", - "431", + "717", + "269", + "981", + "520", + "414", + "980", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "489", + "937", + "161", + "522", + "100", "184", - "323", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", - "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", + "12", "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", + "226", "89", - "305", - "149", "564", - "178", - "177", - "355", - "405", - "825", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", "372", - "203", - "504", - "186", - "538", - "376", - "216", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "718", - "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", - "577", - "803", - "252", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "689", - "497", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "868", - "574", - "120", - "908", - "345", - "411", + "131", + "15", + "492", + "604", + "857", + "324", "92", - "181", - "723", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "371", + "152", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "976", - "348", - "316", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "653", - "342", - "768", - "670", - "427", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "795", - "818", - "498", - "699", - "370", - "460", - "787", - "906", + "616", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "518", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "164", - "489", - "65", - "880", - "25", - "456", - "420", - "408", - "628", - "561", - "558", - "218", - "438", - "960", - "744", + "370", "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", - "425", - "269", - "281", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", - "455", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156" + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:46.837409159Z" + "timestamp": "2025-11-27T04:03:49.965519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019427, - "rtt_ms": 1.019427, + "rtt_ns": 1554209, + "rtt_ms": 1.554209, "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:46.838454316Z" + "vertex_from": "146", + "vertex_to": "617", + "timestamp": "2025-11-27T04:03:49.967085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257086, - "rtt_ms": 1.257086, + "rtt_ns": 1543041, + "rtt_ms": 1.543041, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:49.967117-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1621125, + "rtt_ms": 1.621125, "checkpoint": 0, "vertex_from": "147", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:46.838737475Z" + "timestamp": "2025-11-27T04:03:49.967177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371886, - "rtt_ms": 1.371886, + "rtt_ns": 1635333, + "rtt_ms": 1.635333, "checkpoint": 0, "vertex_from": "147", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:46.838865785Z" + "timestamp": "2025-11-27T04:03:49.96722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424996, - "rtt_ms": 1.424996, + "rtt_ns": 1953958, + "rtt_ms": 1.953958, "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:46.838923285Z" + "vertex_from": "146", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:49.967501-08:00" }, { "operation": "add_edge", - "rtt_ns": 938767, - "rtt_ms": 0.938767, + "rtt_ns": 1932708, + "rtt_ms": 1.932708, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:46.839407683Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:49.967518-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014734, - "rtt_ms": 2.014734, + "rtt_ns": 1970917, + "rtt_ms": 1.970917, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:46.839494393Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:49.96753-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042224, - "rtt_ms": 2.042224, + "rtt_ns": 1968667, + "rtt_ms": 1.968667, "checkpoint": 0, "vertex_from": "146", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.839538683Z" + "timestamp": "2025-11-27T04:03:49.967542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022107, - "rtt_ms": 1.022107, + "rtt_ns": 2014916, + "rtt_ms": 2.014916, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:46.839761982Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:49.967544-08:00" }, { "operation": "add_edge", - "rtt_ns": 926787, - "rtt_ms": 0.926787, + "rtt_ns": 2145083, + "rtt_ms": 2.145083, + "checkpoint": 0, + "vertex_from": "146", + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:49.967704-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1441792, + "rtt_ms": 1.441792, "checkpoint": 0, "vertex_from": "147", "vertex_to": "996", - "timestamp": "2025-11-27T01:23:46.839853412Z" + "timestamp": "2025-11-27T04:03:49.968663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549005, - "rtt_ms": 1.549005, + "rtt_ns": 1815500, + "rtt_ms": 1.8155, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:46.84041581Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:49.968902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259216, - "rtt_ms": 1.259216, + "rtt_ns": 1401000, + "rtt_ms": 1.401, "checkpoint": 0, "vertex_from": "147", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.840756019Z" + "timestamp": "2025-11-27T04:03:49.968919-08:00" }, { "operation": "add_edge", - "rtt_ns": 3575119, - "rtt_ms": 3.575119, + "rtt_ns": 1383625, + "rtt_ms": 1.383625, "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:46.841054848Z" + "vertex_from": "147", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:49.968929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736395, - "rtt_ms": 1.736395, + "rtt_ns": 1437917, + "rtt_ms": 1.437917, "checkpoint": 0, "vertex_from": "147", "vertex_to": "240", - "timestamp": "2025-11-27T01:23:46.841145478Z" + "timestamp": "2025-11-27T04:03:49.96894-08:00" }, { "operation": "add_edge", - "rtt_ns": 4141058, - "rtt_ms": 4.141058, + "rtt_ns": 1420375, + "rtt_ms": 1.420375, "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:46.841587357Z" + "vertex_from": "147", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:49.968951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081954, - "rtt_ms": 2.081954, + "rtt_ns": 1843125, + "rtt_ms": 1.843125, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.841621597Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:03:49.968963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949644, - "rtt_ms": 1.949644, + "rtt_ns": 1332208, + "rtt_ms": 1.332208, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:46.841712596Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:49.969037-08:00" }, { "operation": "add_edge", - "rtt_ns": 2005034, - "rtt_ms": 2.005034, + "rtt_ns": 1506167, + "rtt_ms": 1.506167, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.841859386Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:49.96905-08:00" }, { "operation": "add_edge", - "rtt_ns": 4436487, - "rtt_ms": 4.436487, + "rtt_ns": 1883709, + "rtt_ms": 1.883709, "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.841902816Z" + "vertex_from": "147", + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:49.969062-08:00" }, { "operation": "add_edge", - "rtt_ns": 4507277, - "rtt_ms": 4.507277, + "rtt_ns": 1446833, + "rtt_ms": 1.446833, "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:46.841965706Z" + "vertex_from": "147", + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:49.970111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816745, - "rtt_ms": 1.816745, + "rtt_ns": 1228125, + "rtt_ms": 1.228125, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.842233655Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:49.970148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419616, - "rtt_ms": 1.419616, + "rtt_ns": 1547959, + "rtt_ms": 1.547959, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:46.842475474Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:03:49.9705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331386, - "rtt_ms": 1.331386, + "rtt_ns": 1550625, + "rtt_ms": 1.550625, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.842919603Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:49.970515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243346, - "rtt_ms": 1.243346, + "rtt_ns": 1476625, + "rtt_ms": 1.476625, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:46.843149312Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:49.970527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056364, - "rtt_ms": 2.056364, + "rtt_ns": 1489750, + "rtt_ms": 1.48975, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:46.843203262Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:49.970528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263076, - "rtt_ms": 1.263076, + "rtt_ns": 1598917, + "rtt_ms": 1.598917, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.843229502Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:49.970539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864164, - "rtt_ms": 1.864164, + "rtt_ns": 1634292, + "rtt_ms": 1.634292, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:46.843486861Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:49.970564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631845, - "rtt_ms": 1.631845, + "rtt_ns": 1770583, + "rtt_ms": 1.770583, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:46.843492031Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:49.970674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277746, - "rtt_ms": 1.277746, + "rtt_ns": 1627042, + "rtt_ms": 1.627042, "checkpoint": 0, "vertex_from": "148", "vertex_to": "209", - "timestamp": "2025-11-27T01:23:46.843513691Z" + "timestamp": "2025-11-27T04:03:49.970689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805355, - "rtt_ms": 1.805355, + "rtt_ns": 1211500, + "rtt_ms": 1.2115, "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:46.843519461Z" + "vertex_from": "148", + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:49.971741-08:00" }, { "operation": "add_edge", - "rtt_ns": 3044951, - "rtt_ms": 3.044951, + "rtt_ns": 1253709, + "rtt_ms": 1.253709, "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:46.8438022Z" + "vertex_from": "148", + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:49.971755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365066, - "rtt_ms": 1.365066, + "rtt_ns": 1235792, + "rtt_ms": 1.235792, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:46.844569518Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:49.9718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360876, - "rtt_ms": 1.360876, + "rtt_ns": 1301000, + "rtt_ms": 1.301, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.844592568Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:49.971816-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115644, - "rtt_ms": 2.115644, + "rtt_ns": 1824916, + "rtt_ms": 1.824916, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.844592558Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:49.971976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676615, - "rtt_ms": 1.676615, + "rtt_ns": 1377000, + "rtt_ms": 1.377, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:46.844597428Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:49.972067-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375663, - "rtt_ms": 2.375663, + "rtt_ns": 1955333, + "rtt_ms": 1.955333, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:46.845526485Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:49.972068-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116914, - "rtt_ms": 2.116914, + "rtt_ns": 1414208, + "rtt_ms": 1.414208, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:46.845604965Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:49.972089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029017, - "rtt_ms": 1.029017, + "rtt_ns": 1622125, + "rtt_ms": 1.622125, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:46.845623865Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:49.972162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041637, - "rtt_ms": 1.041637, + "rtt_ns": 1771792, + "rtt_ms": 1.771792, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "921", - "timestamp": "2025-11-27T01:23:46.845640475Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:49.972301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071257, - "rtt_ms": 1.071257, + "rtt_ns": 1471958, + "rtt_ms": 1.471958, "checkpoint": 0, "vertex_from": "148", "vertex_to": "391", - "timestamp": "2025-11-27T01:23:46.845643355Z" + "timestamp": "2025-11-27T04:03:49.973214-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210004, - "rtt_ms": 2.210004, + "rtt_ns": 1426959, + "rtt_ms": 1.426959, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.845703035Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:49.973228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921985, - "rtt_ms": 1.921985, + "rtt_ns": 1407000, + "rtt_ms": 1.407, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:46.845726965Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:49.973475-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209894, - "rtt_ms": 2.209894, + "rtt_ns": 1311125, + "rtt_ms": 1.311125, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:46.845731295Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:49.973479-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233944, - "rtt_ms": 2.233944, + "rtt_ns": 1512625, + "rtt_ms": 1.512625, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.845748765Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:49.97349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230457, - "rtt_ms": 1.230457, + "rtt_ns": 1737833, + "rtt_ms": 1.737833, "checkpoint": 0, "vertex_from": "148", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.845825275Z" + "timestamp": "2025-11-27T04:03:49.973493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045987, - "rtt_ms": 1.045987, + "rtt_ns": 1309833, + "rtt_ms": 1.309833, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:46.846670892Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:49.973612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464766, - "rtt_ms": 1.464766, + "rtt_ns": 1829250, + "rtt_ms": 1.82925, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:46.847107611Z" + "vertex_to": "921", + "timestamp": "2025-11-27T04:03:49.973646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595296, - "rtt_ms": 1.595296, + "rtt_ns": 1590625, + "rtt_ms": 1.590625, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.847239621Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:49.973659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677575, - "rtt_ms": 1.677575, + "rtt_ns": 1573708, + "rtt_ms": 1.573708, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:46.84728405Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:49.973663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609965, - "rtt_ms": 1.609965, + "rtt_ns": 1233750, + "rtt_ms": 1.23375, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.84734672Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:49.974448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645895, - "rtt_ms": 1.645895, + "rtt_ns": 1245875, + "rtt_ms": 1.245875, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.84739563Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:49.974475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872145, - "rtt_ms": 1.872145, + "rtt_ns": 2134833, + "rtt_ms": 2.134833, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:46.84740034Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:49.975615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679725, - "rtt_ms": 1.679725, + "rtt_ns": 2147834, + "rtt_ms": 2.147834, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:46.84750581Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:49.975795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807115, - "rtt_ms": 1.807115, + "rtt_ns": 2284084, + "rtt_ms": 2.284084, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.84753506Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:49.975897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834355, - "rtt_ms": 1.834355, + "rtt_ns": 2545667, + "rtt_ms": 2.545667, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:46.84753847Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:49.976041-08:00" }, { "operation": "add_edge", - "rtt_ns": 941787, - "rtt_ms": 0.941787, + "rtt_ns": 2772959, + "rtt_ms": 2.772959, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:46.848051008Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:49.976249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415606, - "rtt_ms": 1.415606, + "rtt_ns": 3198375, + "rtt_ms": 3.198375, "checkpoint": 0, "vertex_from": "148", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:46.848088288Z" + "timestamp": "2025-11-27T04:03:49.976689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511146, - "rtt_ms": 1.511146, + "rtt_ns": 3042916, + "rtt_ms": 3.042916, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.848912966Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:03:49.976702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602775, - "rtt_ms": 1.602775, + "rtt_ns": 2265417, + "rtt_ms": 2.265417, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.849000445Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:49.976714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565265, - "rtt_ms": 1.565265, + "rtt_ns": 3060625, + "rtt_ms": 3.060625, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:46.849073815Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:49.976727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741805, - "rtt_ms": 1.741805, + "rtt_ns": 2508125, + "rtt_ms": 2.508125, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:46.849093775Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:49.976984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849884, - "rtt_ms": 1.849884, + "rtt_ns": 1200916, + "rtt_ms": 1.200916, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.849097215Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:49.976997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561585, - "rtt_ms": 1.561585, + "rtt_ns": 1301375, + "rtt_ms": 1.301375, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.849099225Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:49.9772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875065, - "rtt_ms": 1.875065, + "rtt_ns": 1601625, + "rtt_ms": 1.601625, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:46.849161685Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:49.977218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188967, - "rtt_ms": 1.188967, + "rtt_ns": 1271458, + "rtt_ms": 1.271458, "checkpoint": 0, "vertex_from": "148", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.849279065Z" + "timestamp": "2025-11-27T04:03:49.977313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282856, - "rtt_ms": 1.282856, + "rtt_ns": 1367750, + "rtt_ms": 1.36775, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.849336004Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:49.97762-08:00" }, { "operation": "add_edge", - "rtt_ns": 837498, - "rtt_ms": 0.837498, + "rtt_ns": 1375000, + "rtt_ms": 1.375, "checkpoint": 0, "vertex_from": "148", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:46.849839633Z" + "timestamp": "2025-11-27T04:03:49.978065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063616, - "rtt_ms": 1.063616, + "rtt_ns": 1351333, + "rtt_ms": 1.351333, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:46.849979032Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:03:49.978079-08:00" }, { "operation": "add_edge", - "rtt_ns": 960657, - "rtt_ms": 0.960657, + "rtt_ns": 1403583, + "rtt_ms": 1.403583, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.850035972Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:03:49.978401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2625502, - "rtt_ms": 2.625502, + "rtt_ns": 1697917, + "rtt_ms": 1.697917, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:46.850165772Z" + "vertex_to": "714", + "timestamp": "2025-11-27T04:03:49.978413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541065, - "rtt_ms": 1.541065, + "rtt_ns": 1224208, + "rtt_ms": 1.224208, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "150", - "timestamp": "2025-11-27T01:23:46.85070432Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:49.978425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693255, - "rtt_ms": 1.693255, + "rtt_ns": 1450750, + "rtt_ms": 1.45075, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "168", - "timestamp": "2025-11-27T01:23:46.85079353Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:49.978436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555195, - "rtt_ms": 1.555195, + "rtt_ns": 1767125, + "rtt_ms": 1.767125, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:46.85083639Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:49.97847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739205, - "rtt_ms": 1.739205, + "rtt_ns": 1405000, + "rtt_ms": 1.405, "checkpoint": 0, - "vertex_from": "148", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.85084015Z" + "vertex_from": "149", + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:49.978626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755575, - "rtt_ms": 1.755575, + "rtt_ns": 1646791, + "rtt_ms": 1.646791, "checkpoint": 0, - "vertex_from": "148", - "vertex_to": "714", - "timestamp": "2025-11-27T01:23:46.85085566Z" + "vertex_from": "149", + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:49.978961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527756, - "rtt_ms": 1.527756, + "rtt_ns": 1340458, + "rtt_ms": 1.340458, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:46.85086507Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:49.978961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105457, - "rtt_ms": 1.105457, + "rtt_ns": 1322458, + "rtt_ms": 1.322458, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:46.851085809Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:49.979402-08:00" }, { "operation": "add_edge", - "rtt_ns": 870407, - "rtt_ms": 0.870407, + "rtt_ns": 1382250, + "rtt_ms": 1.38225, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:46.851707967Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:49.979448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713165, - "rtt_ms": 1.713165, + "rtt_ns": 1229042, + "rtt_ms": 1.229042, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.851750327Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:49.979855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042077, - "rtt_ms": 1.042077, + "rtt_ns": 1445291, + "rtt_ms": 1.445291, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.851837127Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:49.979871-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001664, - "rtt_ms": 2.001664, + "rtt_ns": 1609542, + "rtt_ms": 1.609542, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:46.851843067Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:49.980011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153647, - "rtt_ms": 1.153647, + "rtt_ns": 1660375, + "rtt_ms": 1.660375, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:46.851860087Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:49.980131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698515, - "rtt_ms": 1.698515, + "rtt_ns": 1718875, + "rtt_ms": 1.718875, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.851866067Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:49.980133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541815, - "rtt_ms": 1.541815, + "rtt_ns": 1705958, + "rtt_ms": 1.705958, "checkpoint": 0, "vertex_from": "149", "vertex_to": "240", - "timestamp": "2025-11-27T01:23:46.852383845Z" + "timestamp": "2025-11-27T04:03:49.980143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389706, - "rtt_ms": 1.389706, + "rtt_ns": 1457667, + "rtt_ms": 1.457667, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:46.852476885Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:49.980422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825685, - "rtt_ms": 1.825685, + "rtt_ns": 1461959, + "rtt_ms": 1.461959, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.852692015Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:49.980426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892024, - "rtt_ms": 1.892024, + "rtt_ns": 1536250, + "rtt_ms": 1.53625, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.852752504Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:49.980986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587056, - "rtt_ms": 1.587056, + "rtt_ns": 1068791, + "rtt_ms": 1.068791, "checkpoint": 0, - "vertex_from": "149", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.853297553Z" + "vertex_from": "150", + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:49.981201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649366, - "rtt_ms": 1.649366, + "rtt_ns": 1810125, + "rtt_ms": 1.810125, "checkpoint": 0, "vertex_from": "149", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.853400803Z" + "timestamp": "2025-11-27T04:03:49.981214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617785, - "rtt_ms": 1.617785, + "rtt_ns": 1321750, + "rtt_ms": 1.32175, "checkpoint": 0, "vertex_from": "150", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:46.853486002Z" + "timestamp": "2025-11-27T04:03:49.981334-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288764, - "rtt_ms": 2.288764, - "checkpoint": 0, - "vertex_from": "149", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.854133741Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1820305, - "rtt_ms": 1.820305, + "rtt_ns": 1333625, + "rtt_ms": 1.333625, "checkpoint": 0, "vertex_from": "150", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:46.85429838Z" + "timestamp": "2025-11-27T04:03:49.981467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2484473, - "rtt_ms": 2.484473, + "rtt_ns": 1793375, + "rtt_ms": 1.793375, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:46.85432306Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:49.98165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2542843, - "rtt_ms": 2.542843, + "rtt_ns": 1931125, + "rtt_ms": 1.931125, "checkpoint": 0, "vertex_from": "150", "vertex_to": "705", - "timestamp": "2025-11-27T01:23:46.85440709Z" + "timestamp": "2025-11-27T04:03:49.981803-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038795, - "rtt_ms": 2.038795, + "rtt_ns": 1387333, + "rtt_ms": 1.387333, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.8544241Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:49.981811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560485, - "rtt_ms": 1.560485, + "rtt_ns": 1673833, + "rtt_ms": 1.673833, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "965", - "timestamp": "2025-11-27T01:23:46.854963048Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:49.981817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680825, - "rtt_ms": 1.680825, + "rtt_ns": 1506833, + "rtt_ms": 1.506833, "checkpoint": 0, "vertex_from": "150", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:46.854981088Z" + "timestamp": "2025-11-27T04:03:49.981934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607246, - "rtt_ms": 1.607246, + "rtt_ns": 1120875, + "rtt_ms": 1.120875, "checkpoint": 0, "vertex_from": "150", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.855094858Z" + "timestamp": "2025-11-27T04:03:49.982323-08:00" }, { "operation": "add_edge", - "rtt_ns": 959717, - "rtt_ms": 0.959717, + "rtt_ns": 1386458, + "rtt_ms": 1.386458, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.855094998Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:03:49.982374-08:00" }, { "operation": "add_edge", - "rtt_ns": 2343214, - "rtt_ms": 2.343214, + "rtt_ns": 1478250, + "rtt_ms": 1.47825, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.855096618Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:49.982693-08:00" }, { "operation": "add_edge", - "rtt_ns": 2415093, - "rtt_ms": 2.415093, + "rtt_ns": 1239250, + "rtt_ms": 1.23925, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:46.855109168Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:49.982707-08:00" }, { "operation": "add_edge", - "rtt_ns": 927317, - "rtt_ms": 0.927317, + "rtt_ns": 1737875, + "rtt_ms": 1.737875, "checkpoint": 0, "vertex_from": "150", "vertex_to": "777", - "timestamp": "2025-11-27T01:23:46.855227297Z" + "timestamp": "2025-11-27T04:03:49.983073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485835, - "rtt_ms": 1.485835, + "rtt_ns": 1282292, + "rtt_ms": 1.282292, "checkpoint": 0, "vertex_from": "150", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:46.855911795Z" + "timestamp": "2025-11-27T04:03:49.983086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602295, - "rtt_ms": 1.602295, + "rtt_ns": 1622459, + "rtt_ms": 1.622459, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.855926415Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:49.983273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200207, - "rtt_ms": 1.200207, + "rtt_ns": 1403042, + "rtt_ms": 1.403042, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.856183135Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:49.983337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840274, - "rtt_ms": 1.840274, + "rtt_ns": 1539709, + "rtt_ms": 1.539709, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.856248944Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:49.983358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172976, - "rtt_ms": 1.172976, + "rtt_ns": 1349500, + "rtt_ms": 1.3495, "checkpoint": 0, "vertex_from": "150", "vertex_to": "200", - "timestamp": "2025-11-27T01:23:46.856270924Z" + "timestamp": "2025-11-27T04:03:49.983724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472846, - "rtt_ms": 1.472846, + "rtt_ns": 1925959, + "rtt_ms": 1.925959, "checkpoint": 0, "vertex_from": "150", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.856438514Z" + "timestamp": "2025-11-27T04:03:49.983738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347996, - "rtt_ms": 1.347996, + "rtt_ns": 1424083, + "rtt_ms": 1.424083, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:46.856459754Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:49.983749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401726, - "rtt_ms": 1.401726, + "rtt_ns": 1247500, + "rtt_ms": 1.2475, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.856499104Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:49.983956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451726, - "rtt_ms": 1.451726, + "rtt_ns": 1460542, + "rtt_ms": 1.460542, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:46.856549084Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:49.984155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343597, - "rtt_ms": 1.343597, + "rtt_ns": 1228917, + "rtt_ms": 1.228917, "checkpoint": 0, - "vertex_from": "150", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.856572094Z" + "vertex_from": "151", + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:49.984316-08:00" }, { "operation": "add_edge", - "rtt_ns": 732998, - "rtt_ms": 0.732998, + "rtt_ns": 1078584, + "rtt_ms": 1.078584, "checkpoint": 0, "vertex_from": "151", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.856662583Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:49.984352-08:00" }, { "operation": "add_edge", - "rtt_ns": 751708, - "rtt_ms": 0.751708, + "rtt_ns": 1561167, + "rtt_ms": 1.561167, "checkpoint": 0, "vertex_from": "150", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:46.856664813Z" + "timestamp": "2025-11-27T04:03:49.984635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120947, - "rtt_ms": 1.120947, + "rtt_ns": 1377208, + "rtt_ms": 1.377208, "checkpoint": 0, "vertex_from": "151", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.857393271Z" + "timestamp": "2025-11-27T04:03:49.984737-08:00" }, { "operation": "add_edge", - "rtt_ns": 950347, - "rtt_ms": 0.950347, + "rtt_ns": 1622959, + "rtt_ms": 1.622959, "checkpoint": 0, "vertex_from": "151", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:46.857412071Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:49.984961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197787, - "rtt_ms": 1.197787, + "rtt_ns": 1236916, + "rtt_ms": 1.236916, "checkpoint": 0, "vertex_from": "151", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.857448011Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:49.984975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291096, - "rtt_ms": 1.291096, + "rtt_ns": 1335625, + "rtt_ms": 1.335625, "checkpoint": 0, - "vertex_from": "151", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:46.857478951Z" + "vertex_from": "152", + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:49.985086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453795, - "rtt_ms": 1.453795, + "rtt_ns": 1241417, + "rtt_ms": 1.241417, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:46.858027229Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:49.985199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738805, - "rtt_ms": 1.738805, + "rtt_ns": 1580583, + "rtt_ms": 1.580583, "checkpoint": 0, "vertex_from": "151", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:46.858178679Z" + "timestamp": "2025-11-27T04:03:49.985306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701275, - "rtt_ms": 1.701275, + "rtt_ns": 1349666, + "rtt_ms": 1.349666, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:46.858201699Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:49.985505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537116, - "rtt_ms": 1.537116, + "rtt_ns": 1669417, + "rtt_ms": 1.669417, "checkpoint": 0, "vertex_from": "152", "vertex_to": "562", - "timestamp": "2025-11-27T01:23:46.858203869Z" + "timestamp": "2025-11-27T04:03:49.986023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661145, - "rtt_ms": 1.661145, + "rtt_ns": 1405958, + "rtt_ms": 1.405958, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.858210879Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:03:49.986041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559576, - "rtt_ms": 1.559576, + "rtt_ns": 1452417, + "rtt_ms": 1.452417, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:46.858223989Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:49.986192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448455, - "rtt_ms": 1.448455, + "rtt_ns": 1229500, + "rtt_ms": 1.2295, "checkpoint": 0, "vertex_from": "152", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.858929026Z" + "timestamp": "2025-11-27T04:03:49.986205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586245, - "rtt_ms": 1.586245, + "rtt_ns": 1254083, + "rtt_ms": 1.254083, "checkpoint": 0, "vertex_from": "152", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.859035786Z" + "timestamp": "2025-11-27T04:03:49.986217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010237, - "rtt_ms": 1.010237, + "rtt_ns": 2004375, + "rtt_ms": 2.004375, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:46.859038986Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:49.986322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652185, - "rtt_ms": 1.652185, + "rtt_ns": 1347750, + "rtt_ms": 1.34775, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "160", - "timestamp": "2025-11-27T01:23:46.859049436Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:49.986548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704435, - "rtt_ms": 1.704435, + "rtt_ns": 1474250, + "rtt_ms": 1.47425, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.859118846Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:49.986561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457515, - "rtt_ms": 1.457515, + "rtt_ns": 1326584, + "rtt_ms": 1.326584, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.859662834Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:49.986633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496175, - "rtt_ms": 1.496175, + "rtt_ns": 1695875, + "rtt_ms": 1.695875, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.859720814Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:49.987202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558975, - "rtt_ms": 1.558975, + "rtt_ns": 1458583, + "rtt_ms": 1.458583, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:46.859763084Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:49.987482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587565, - "rtt_ms": 1.587565, + "rtt_ns": 1453334, + "rtt_ms": 1.453334, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.859767604Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:49.987495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556425, - "rtt_ms": 1.556425, + "rtt_ns": 1426084, + "rtt_ms": 1.426084, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.859768784Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:49.987988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042017, - "rtt_ms": 1.042017, + "rtt_ns": 1680166, + "rtt_ms": 1.680166, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.859972553Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:49.988002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451746, - "rtt_ms": 1.451746, + "rtt_ns": 1784750, + "rtt_ms": 1.78475, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:46.860572482Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:49.988003-08:00" }, { "operation": "add_edge", - "rtt_ns": 974618, - "rtt_ms": 0.974618, + "rtt_ns": 1821542, + "rtt_ms": 1.821542, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.860638462Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:49.988014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614475, - "rtt_ms": 1.614475, + "rtt_ns": 1820708, + "rtt_ms": 1.820708, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.860666081Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:49.988027-08:00" }, { "operation": "add_edge", - "rtt_ns": 968037, - "rtt_ms": 0.968037, + "rtt_ns": 1490375, + "rtt_ms": 1.490375, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.860732761Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:49.988039-08:00" }, { "operation": "add_edge", - "rtt_ns": 980167, - "rtt_ms": 0.980167, + "rtt_ns": 1577708, + "rtt_ms": 1.577708, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:46.860750861Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:03:49.988214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737275, - "rtt_ms": 1.737275, + "rtt_ns": 1373625, + "rtt_ms": 1.373625, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:46.860778581Z" + "vertex_to": "199", + "timestamp": "2025-11-27T04:03:49.988857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741045, - "rtt_ms": 1.741045, + "rtt_ns": 1730583, + "rtt_ms": 1.730583, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:46.860778771Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:49.988933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036567, - "rtt_ms": 1.036567, + "rtt_ns": 1624084, + "rtt_ms": 1.624084, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "199", - "timestamp": "2025-11-27T01:23:46.860805351Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:49.98912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211117, - "rtt_ms": 1.211117, + "rtt_ns": 1100375, + "rtt_ms": 1.100375, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "167", - "timestamp": "2025-11-27T01:23:46.860933071Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:49.989316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665376, - "rtt_ms": 1.665376, + "rtt_ns": 1489542, + "rtt_ms": 1.489542, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.861640069Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:49.989505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391416, - "rtt_ms": 1.391416, + "rtt_ns": 1518292, + "rtt_ms": 1.518292, "checkpoint": 0, "vertex_from": "152", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.861964988Z" + "timestamp": "2025-11-27T04:03:49.989521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283047, - "rtt_ms": 1.283047, + "rtt_ns": 1614334, + "rtt_ms": 1.614334, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.862017018Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:49.989603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312957, - "rtt_ms": 1.312957, + "rtt_ns": 1652125, + "rtt_ms": 1.652125, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:46.862065848Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:49.98968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314266, - "rtt_ms": 1.314266, + "rtt_ns": 1649583, + "rtt_ms": 1.649583, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:46.862094627Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:49.989689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464955, - "rtt_ms": 1.464955, + "rtt_ns": 1738417, + "rtt_ms": 1.738417, "checkpoint": 0, "vertex_from": "152", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:46.862104667Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1369516, - "rtt_ms": 1.369516, - "checkpoint": 0, - "vertex_from": "152", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.862149077Z" + "timestamp": "2025-11-27T04:03:49.989744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428846, - "rtt_ms": 1.428846, + "rtt_ns": 1200584, + "rtt_ms": 1.200584, "checkpoint": 0, "vertex_from": "152", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:46.862235297Z" + "timestamp": "2025-11-27T04:03:49.990135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325736, - "rtt_ms": 1.325736, + "rtt_ns": 1292292, + "rtt_ms": 1.292292, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.862260267Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:49.99015-08:00" }, { "operation": "add_edge", - "rtt_ns": 957837, - "rtt_ms": 0.957837, + "rtt_ns": 1360791, + "rtt_ms": 1.360791, "checkpoint": 0, "vertex_from": "152", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.862600156Z" + "timestamp": "2025-11-27T04:03:49.990678-08:00" }, { "operation": "add_edge", - "rtt_ns": 771808, - "rtt_ms": 0.771808, + "rtt_ns": 1580208, + "rtt_ms": 1.580208, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:46.862790146Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:49.990701-08:00" }, { "operation": "add_vertex", - "rtt_ns": 894477, - "rtt_ms": 0.894477, + "rtt_ns": 1550917, + "rtt_ms": 1.550917, "checkpoint": 0, "vertex_from": "847", - "timestamp": "2025-11-27T01:23:46.862862295Z" + "timestamp": "2025-11-27T04:03:49.991058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313134, - "rtt_ms": 2.313134, + "rtt_ns": 1577375, + "rtt_ms": 1.577375, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.862979925Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:49.9911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668316, - "rtt_ms": 1.668316, + "rtt_ns": 1536625, + "rtt_ms": 1.536625, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:46.863763943Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:49.991141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688106, - "rtt_ms": 1.688106, + "rtt_ns": 1494125, + "rtt_ms": 1.494125, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "474", - "timestamp": "2025-11-27T01:23:46.863794353Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:49.991174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747635, - "rtt_ms": 1.747635, + "rtt_ns": 1747042, + "rtt_ms": 1.747042, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:46.863815023Z" + "vertex_to": "474", + "timestamp": "2025-11-27T04:03:49.991437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761295, - "rtt_ms": 1.761295, + "rtt_ns": 1708833, + "rtt_ms": 1.708833, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.863998032Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:49.991453-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164834, - "rtt_ms": 2.164834, + "rtt_ns": 1668167, + "rtt_ms": 1.668167, "checkpoint": 0, "vertex_from": "153", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.864426391Z" + "timestamp": "2025-11-27T04:03:49.991819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607986, - "rtt_ms": 1.607986, + "rtt_ns": 1774500, + "rtt_ms": 1.7745, "checkpoint": 0, - "vertex_from": "152", - "vertex_to": "847", - "timestamp": "2025-11-27T01:23:46.864470741Z" + "vertex_from": "153", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:49.99191-08:00" }, { "operation": "add_edge", - "rtt_ns": 2369384, - "rtt_ms": 2.369384, + "rtt_ns": 1424542, + "rtt_ms": 1.424542, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.864519791Z" + "vertex_to": "366", + "timestamp": "2025-11-27T04:03:49.992127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020364, - "rtt_ms": 2.020364, + "rtt_ns": 1463792, + "rtt_ms": 1.463792, "checkpoint": 0, "vertex_from": "153", "vertex_to": "404", - "timestamp": "2025-11-27T01:23:46.86462161Z" + "timestamp": "2025-11-27T04:03:49.992144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855064, - "rtt_ms": 1.855064, + "rtt_ns": 1378375, + "rtt_ms": 1.378375, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "366", - "timestamp": "2025-11-27T01:23:46.86464617Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:49.99248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860805, - "rtt_ms": 1.860805, + "rtt_ns": 1474833, + "rtt_ms": 1.474833, "checkpoint": 0, - "vertex_from": "153", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:46.864842Z" + "vertex_from": "152", + "vertex_to": "847", + "timestamp": "2025-11-27T04:03:49.992533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191806, - "rtt_ms": 1.191806, + "rtt_ns": 1425375, + "rtt_ms": 1.425375, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:46.865011959Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:49.992601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339316, - "rtt_ms": 1.339316, + "rtt_ns": 1199541, + "rtt_ms": 1.199541, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:46.865105839Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:49.992653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484325, - "rtt_ms": 1.484325, + "rtt_ns": 1528167, + "rtt_ms": 1.528167, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:46.865280578Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:49.99267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713555, - "rtt_ms": 1.713555, + "rtt_ns": 1353042, + "rtt_ms": 1.353042, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.866185086Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:49.992791-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238653, - "rtt_ms": 2.238653, + "rtt_ns": 1825500, + "rtt_ms": 1.8255, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.866239735Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:49.993646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772184, - "rtt_ms": 1.772184, + "rtt_ns": 1521166, + "rtt_ms": 1.521166, "checkpoint": 0, "vertex_from": "153", "vertex_to": "497", - "timestamp": "2025-11-27T01:23:46.866293485Z" + "timestamp": "2025-11-27T04:03:49.993649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753075, - "rtt_ms": 1.753075, + "rtt_ns": 1791708, + "rtt_ms": 1.791708, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:46.866375635Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:49.993703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062114, - "rtt_ms": 2.062114, + "rtt_ns": 1066458, + "rtt_ms": 1.066458, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:46.866490675Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:49.993737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873575, - "rtt_ms": 1.873575, + "rtt_ns": 1599666, + "rtt_ms": 1.599666, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:46.866521165Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:49.993744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639185, - "rtt_ms": 1.639185, + "rtt_ns": 1307083, + "rtt_ms": 1.307083, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "976", - "timestamp": "2025-11-27T01:23:46.866653664Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:49.993788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824354, - "rtt_ms": 1.824354, + "rtt_ns": 1406416, + "rtt_ms": 1.406416, "checkpoint": 0, "vertex_from": "153", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.866667224Z" + "timestamp": "2025-11-27T04:03:49.993941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573325, - "rtt_ms": 1.573325, + "rtt_ns": 1307125, + "rtt_ms": 1.307125, "checkpoint": 0, "vertex_from": "153", "vertex_to": "162", - "timestamp": "2025-11-27T01:23:46.866680734Z" + "timestamp": "2025-11-27T04:03:49.993961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439836, - "rtt_ms": 1.439836, + "rtt_ns": 1390500, + "rtt_ms": 1.3905, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:46.866721514Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1037737, - "rtt_ms": 1.037737, - "checkpoint": 0, - "vertex_from": "154", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:46.867332622Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:03:49.993993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233417, - "rtt_ms": 1.233417, + "rtt_ns": 1254916, + "rtt_ms": 1.254916, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:46.867474662Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:49.994047-08:00" }, { "operation": "add_edge", - "rtt_ns": 982347, - "rtt_ms": 0.982347, + "rtt_ns": 1141417, + "rtt_ms": 1.141417, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.867504682Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:49.99488-08:00" }, { "operation": "add_edge", - "rtt_ns": 935037, - "rtt_ms": 0.935037, + "rtt_ns": 1108042, + "rtt_ms": 1.108042, "checkpoint": 0, "vertex_from": "154", "vertex_to": "786", - "timestamp": "2025-11-27T01:23:46.867589861Z" + "timestamp": "2025-11-27T04:03:49.994898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121766, - "rtt_ms": 1.121766, + "rtt_ns": 1323000, + "rtt_ms": 1.323, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.867614081Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:49.995068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432825, - "rtt_ms": 1.432825, + "rtt_ns": 1452750, + "rtt_ms": 1.45275, "checkpoint": 0, - "vertex_from": "153", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.867618941Z" + "vertex_from": "154", + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:49.995104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277566, - "rtt_ms": 1.277566, + "rtt_ns": 1441000, + "rtt_ms": 1.441, "checkpoint": 0, "vertex_from": "154", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.867654211Z" + "timestamp": "2025-11-27T04:03:49.995145-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1543625, + "rtt_ms": 1.543625, + "checkpoint": 0, + "vertex_from": "153", + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:49.995192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724725, - "rtt_ms": 1.724725, + "rtt_ns": 1162250, + "rtt_ms": 1.16225, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:46.868393219Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:49.995211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710455, - "rtt_ms": 1.710455, + "rtt_ns": 1279792, + "rtt_ms": 1.279792, "checkpoint": 0, "vertex_from": "154", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.868433349Z" + "timestamp": "2025-11-27T04:03:49.995273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764605, - "rtt_ms": 1.764605, + "rtt_ns": 1452459, + "rtt_ms": 1.452459, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:46.868447609Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:49.995394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232226, - "rtt_ms": 1.232226, + "rtt_ns": 1473917, + "rtt_ms": 1.473917, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "358", - "timestamp": "2025-11-27T01:23:46.868737968Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:49.995438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278516, - "rtt_ms": 1.278516, + "rtt_ns": 1702541, + "rtt_ms": 1.702541, "checkpoint": 0, "vertex_from": "154", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:46.868754578Z" + "timestamp": "2025-11-27T04:03:49.996584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444746, - "rtt_ms": 1.444746, + "rtt_ns": 1532125, + "rtt_ms": 1.532125, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:46.868778288Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:49.996601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261477, - "rtt_ms": 1.261477, + "rtt_ns": 1177458, + "rtt_ms": 1.177458, "checkpoint": 0, - "vertex_from": "154", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:46.868852568Z" + "vertex_from": "155", + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:49.996616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313856, - "rtt_ms": 1.313856, + "rtt_ns": 1855250, + "rtt_ms": 1.85525, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:46.868969107Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:03:49.996754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410906, - "rtt_ms": 1.410906, + "rtt_ns": 1625833, + "rtt_ms": 1.625833, "checkpoint": 0, "vertex_from": "154", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:46.869031497Z" + "timestamp": "2025-11-27T04:03:49.996772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450526, - "rtt_ms": 1.450526, + "rtt_ns": 1862875, + "rtt_ms": 1.862875, "checkpoint": 0, "vertex_from": "154", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.869067347Z" + "timestamp": "2025-11-27T04:03:49.996978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254367, - "rtt_ms": 1.254367, + "rtt_ns": 1839708, + "rtt_ms": 1.839708, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.869648726Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:49.997114-08:00" }, { "operation": "add_edge", - "rtt_ns": 933348, - "rtt_ms": 0.933348, + "rtt_ns": 1946666, + "rtt_ms": 1.946666, "checkpoint": 0, - "vertex_from": "155", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:46.869672376Z" + "vertex_from": "154", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:49.997139-08:00" }, { "operation": "add_edge", - "rtt_ns": 839437, - "rtt_ms": 0.839437, + "rtt_ns": 1766000, + "rtt_ms": 1.766, "checkpoint": 0, - "vertex_from": "155", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.869692975Z" + "vertex_from": "154", + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:49.997162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194227, - "rtt_ms": 1.194227, + "rtt_ns": 1966958, + "rtt_ms": 1.966958, "checkpoint": 0, - "vertex_from": "155", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:46.869973565Z" + "vertex_from": "154", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:49.997179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243997, - "rtt_ms": 1.243997, + "rtt_ns": 1796209, + "rtt_ms": 1.796209, "checkpoint": 0, "vertex_from": "155", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:46.869999475Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:49.998568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565526, - "rtt_ms": 1.565526, + "rtt_ns": 1625250, + "rtt_ms": 1.62525, "checkpoint": 0, - "vertex_from": "154", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.869999855Z" + "vertex_from": "155", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:49.998604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554686, - "rtt_ms": 1.554686, + "rtt_ns": 2411208, + "rtt_ms": 2.411208, "checkpoint": 0, - "vertex_from": "154", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.870003445Z" + "vertex_from": "155", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:49.999028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728105, - "rtt_ms": 1.728105, + "rtt_ns": 2509042, + "rtt_ms": 2.509042, "checkpoint": 0, "vertex_from": "155", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:46.870760492Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:49.999094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797035, - "rtt_ms": 1.797035, + "rtt_ns": 2009833, + "rtt_ms": 2.009833, "checkpoint": 0, - "vertex_from": "155", - "vertex_to": "236", - "timestamp": "2025-11-27T01:23:46.870767672Z" + "vertex_from": "156", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:49.999173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702405, - "rtt_ms": 1.702405, + "rtt_ns": 2004542, + "rtt_ms": 2.004542, "checkpoint": 0, - "vertex_from": "155", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.870772722Z" + "vertex_from": "156", + "vertex_to": "934", + "timestamp": "2025-11-27T04:03:49.999184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467705, - "rtt_ms": 1.467705, + "rtt_ns": 2602583, + "rtt_ms": 2.602583, "checkpoint": 0, - "vertex_from": "156", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:46.871141271Z" + "vertex_from": "155", + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:49.999205-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009104, - "rtt_ms": 2.009104, + "rtt_ns": 2475042, + "rtt_ms": 2.475042, "checkpoint": 0, - "vertex_from": "156", - "vertex_to": "694", - "timestamp": "2025-11-27T01:23:46.872010349Z" + "vertex_from": "155", + "vertex_to": "236", + "timestamp": "2025-11-27T04:03:49.99923-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191423, - "rtt_ms": 2.191423, + "rtt_ns": 2107375, + "rtt_ms": 2.107375, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "934", - "timestamp": "2025-11-27T01:23:46.872166248Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:49.999247-08:00" }, { "operation": "add_edge", - "rtt_ns": 2632883, - "rtt_ms": 2.632883, + "rtt_ns": 2184000, + "rtt_ms": 2.184, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.872326738Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:49.999299-08:00" }, { "operation": "add_edge", - "rtt_ns": 2820131, - "rtt_ms": 2.820131, + "rtt_ns": 1574417, + "rtt_ms": 1.574417, "checkpoint": 0, "vertex_from": "156", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.872820856Z" + "timestamp": "2025-11-27T04:03:50.000144-08:00" }, { "operation": "add_edge", - "rtt_ns": 3433850, - "rtt_ms": 3.43385, + "rtt_ns": 1643500, + "rtt_ms": 1.6435, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.873083906Z" + "vertex_to": "694", + "timestamp": "2025-11-27T04:03:50.000251-08:00" }, { "operation": "add_edge", - "rtt_ns": 3202750, - "rtt_ms": 3.20275, + "rtt_ns": 1334709, + "rtt_ms": 1.334709, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.873208375Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.000565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2916752, - "rtt_ms": 2.916752, + "rtt_ns": 1398917, + "rtt_ms": 1.398917, "checkpoint": 0, "vertex_from": "156", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:46.873686384Z" + "timestamp": "2025-11-27T04:03:50.000573-08:00" }, { "operation": "add_edge", - "rtt_ns": 3029532, - "rtt_ms": 3.029532, + "rtt_ns": 1484375, + "rtt_ms": 1.484375, "checkpoint": 0, "vertex_from": "156", "vertex_to": "163", - "timestamp": "2025-11-27T01:23:46.873792384Z" + "timestamp": "2025-11-27T04:03:50.000579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572775, - "rtt_ms": 1.572775, + "rtt_ns": 1374250, + "rtt_ms": 1.37425, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:46.873900223Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.00058-08:00" }, { "operation": "add_edge", - "rtt_ns": 3165861, - "rtt_ms": 3.165861, + "rtt_ns": 1335500, + "rtt_ms": 1.3355, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.873940943Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.000583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968284, - "rtt_ms": 1.968284, + "rtt_ns": 1419417, + "rtt_ms": 1.419417, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.873979463Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.000604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815385, - "rtt_ms": 1.815385, + "rtt_ns": 1595417, + "rtt_ms": 1.595417, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:46.873982503Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.000628-08:00" }, { "operation": "add_edge", - "rtt_ns": 2845552, - "rtt_ms": 2.845552, + "rtt_ns": 1339708, + "rtt_ms": 1.339708, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.873988033Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.000639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429036, - "rtt_ms": 1.429036, + "rtt_ns": 1450167, + "rtt_ms": 1.450167, "checkpoint": 0, "vertex_from": "156", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.874250742Z" + "timestamp": "2025-11-27T04:03:50.001595-08:00" }, { "operation": "add_edge", - "rtt_ns": 913097, - "rtt_ms": 0.913097, + "rtt_ns": 1363291, + "rtt_ms": 1.363291, "checkpoint": 0, - "vertex_from": "157", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.87485526Z" + "vertex_from": "156", + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:50.001615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097416, - "rtt_ms": 1.097416, + "rtt_ns": 1242375, + "rtt_ms": 1.242375, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.87489121Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.001882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686445, - "rtt_ms": 1.686445, + "rtt_ns": 1297959, + "rtt_ms": 1.297959, "checkpoint": 0, - "vertex_from": "156", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:46.87489612Z" + "vertex_from": "157", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.001903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904924, - "rtt_ms": 1.904924, + "rtt_ns": 1392250, + "rtt_ms": 1.39225, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:46.87499064Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.001958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161537, - "rtt_ms": 1.161537, + "rtt_ns": 1431417, + "rtt_ms": 1.431417, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:46.8750648Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.002015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879734, - "rtt_ms": 1.879734, + "rtt_ns": 1594209, + "rtt_ms": 1.594209, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:46.875567468Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:50.002177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477366, - "rtt_ms": 1.477366, + "rtt_ns": 1671084, + "rtt_ms": 1.671084, "checkpoint": 0, - "vertex_from": "158", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.875731558Z" + "vertex_from": "157", + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:50.002245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763935, - "rtt_ms": 1.763935, + "rtt_ns": 1736709, + "rtt_ms": 1.736709, "checkpoint": 0, "vertex_from": "157", "vertex_to": "526", - "timestamp": "2025-11-27T01:23:46.875748158Z" + "timestamp": "2025-11-27T04:03:50.002365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770625, - "rtt_ms": 1.770625, + "rtt_ns": 1794542, + "rtt_ms": 1.794542, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.875759578Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:50.002377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787475, - "rtt_ms": 1.787475, + "rtt_ns": 1092916, + "rtt_ms": 1.092916, "checkpoint": 0, - "vertex_from": "157", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.875768138Z" + "vertex_from": "158", + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.002996-08:00" }, { "operation": "add_edge", - "rtt_ns": 937978, - "rtt_ms": 0.937978, + "rtt_ns": 1207416, + "rtt_ms": 1.207416, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:46.876507506Z" + "vertex_from": "159", + "vertex_to": "372", + "timestamp": "2025-11-27T04:03:50.003167-08:00" }, { "operation": "add_edge", - "rtt_ns": 804988, - "rtt_ms": 0.804988, + "rtt_ns": 1684042, + "rtt_ms": 1.684042, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.876538176Z" + "vertex_from": "158", + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.0033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656605, - "rtt_ms": 1.656605, + "rtt_ns": 1477125, + "rtt_ms": 1.477125, "checkpoint": 0, "vertex_from": "158", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.876554175Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:03:50.00336-08:00" }, { "operation": "add_edge", - "rtt_ns": 870627, - "rtt_ms": 0.870627, + "rtt_ns": 1480167, + "rtt_ms": 1.480167, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:46.876641085Z" + "vertex_from": "159", + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:50.003496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767925, - "rtt_ms": 1.767925, + "rtt_ns": 1909917, + "rtt_ms": 1.909917, "checkpoint": 0, "vertex_from": "158", - "vertex_to": "825", - "timestamp": "2025-11-27T01:23:46.876660685Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.003506-08:00" }, { "operation": "add_edge", - "rtt_ns": 937057, - "rtt_ms": 0.937057, + "rtt_ns": 1270042, + "rtt_ms": 1.270042, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.876697665Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1777665, - "rtt_ms": 1.777665, - "checkpoint": 0, - "vertex_from": "159", - "vertex_to": "372", - "timestamp": "2025-11-27T01:23:46.876770055Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.003516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957235, - "rtt_ms": 1.957235, + "rtt_ns": 1143458, + "rtt_ms": 1.143458, "checkpoint": 0, - "vertex_from": "158", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:46.876814545Z" + "vertex_from": "160", + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.003523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777835, - "rtt_ms": 1.777835, + "rtt_ns": 1518584, + "rtt_ms": 1.518584, "checkpoint": 0, - "vertex_from": "159", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:46.876843855Z" + "vertex_from": "160", + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:50.003696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138947, - "rtt_ms": 1.138947, + "rtt_ns": 1354667, + "rtt_ms": 1.354667, "checkpoint": 0, "vertex_from": "160", "vertex_to": "542", - "timestamp": "2025-11-27T01:23:46.876888655Z" + "timestamp": "2025-11-27T04:03:50.003721-08:00" }, { "operation": "add_edge", - "rtt_ns": 957307, - "rtt_ms": 0.957307, + "rtt_ns": 1126542, + "rtt_ms": 1.126542, "checkpoint": 0, "vertex_from": "160", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:46.877465933Z" + "timestamp": "2025-11-27T04:03:50.004294-08:00" }, { "operation": "add_edge", - "rtt_ns": 967838, - "rtt_ms": 0.967838, + "rtt_ns": 1414375, + "rtt_ms": 1.414375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:46.877524443Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.004413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051917, - "rtt_ms": 1.051917, + "rtt_ns": 1195667, + "rtt_ms": 1.195667, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.877591873Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.004693-08:00" }, { "operation": "add_edge", - "rtt_ns": 909588, - "rtt_ms": 0.909588, + "rtt_ns": 1230916, + "rtt_ms": 1.230916, "checkpoint": 0, "vertex_from": "160", "vertex_to": "617", - "timestamp": "2025-11-27T01:23:46.877609103Z" + "timestamp": "2025-11-27T04:03:50.004748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054027, - "rtt_ms": 1.054027, + "rtt_ns": 1641500, + "rtt_ms": 1.6415, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:46.877899122Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.004943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651896, - "rtt_ms": 1.651896, + "rtt_ns": 1500042, + "rtt_ms": 1.500042, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:46.878294481Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.005007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671815, - "rtt_ms": 1.671815, + "rtt_ns": 1493250, + "rtt_ms": 1.49325, "checkpoint": 0, "vertex_from": "160", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.87844288Z" + "timestamp": "2025-11-27T04:03:50.005019-08:00" }, { "operation": "add_edge", - "rtt_ns": 853947, - "rtt_ms": 0.853947, + "rtt_ns": 1319250, + "rtt_ms": 1.31925, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:46.87846454Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:50.005042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650745, - "rtt_ms": 1.650745, + "rtt_ns": 1797667, + "rtt_ms": 1.797667, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.87854053Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:50.005159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924395, - "rtt_ms": 1.924395, + "rtt_ns": 1507917, + "rtt_ms": 1.507917, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.87858713Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:50.005217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811015, - "rtt_ms": 1.811015, + "rtt_ns": 1735375, + "rtt_ms": 1.735375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:46.87862654Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.00603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159907, - "rtt_ms": 1.159907, + "rtt_ns": 1636291, + "rtt_ms": 1.636291, "checkpoint": 0, "vertex_from": "160", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:46.87862714Z" + "timestamp": "2025-11-27T04:03:50.00605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111917, - "rtt_ms": 1.111917, + "rtt_ns": 1532709, + "rtt_ms": 1.532709, "checkpoint": 0, "vertex_from": "160", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.87863751Z" + "timestamp": "2025-11-27T04:03:50.006227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826534, - "rtt_ms": 1.826534, + "rtt_ns": 1496208, + "rtt_ms": 1.496208, "checkpoint": 0, "vertex_from": "160", "vertex_to": "163", - "timestamp": "2025-11-27T01:23:46.879419747Z" + "timestamp": "2025-11-27T04:03:50.006245-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1206500, + "rtt_ms": 1.2065, + "checkpoint": 0, + "vertex_from": "160", + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.006367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203716, - "rtt_ms": 1.203716, + "rtt_ns": 1560042, + "rtt_ms": 1.560042, "checkpoint": 0, "vertex_from": "160", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:46.879499307Z" + "timestamp": "2025-11-27T04:03:50.006579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617265, - "rtt_ms": 1.617265, + "rtt_ns": 1583458, + "rtt_ms": 1.583458, "checkpoint": 0, "vertex_from": "160", "vertex_to": "706", - "timestamp": "2025-11-27T01:23:46.879518477Z" + "timestamp": "2025-11-27T04:03:50.006591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205476, - "rtt_ms": 1.205476, + "rtt_ns": 1634292, + "rtt_ms": 1.634292, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.879794186Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.006677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277186, - "rtt_ms": 1.277186, + "rtt_ns": 1811250, + "rtt_ms": 1.81125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.879819926Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:50.006756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200246, - "rtt_ms": 1.200246, + "rtt_ns": 1540750, + "rtt_ms": 1.54075, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:46.879828406Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.006759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220896, - "rtt_ms": 1.220896, + "rtt_ns": 1204250, + "rtt_ms": 1.20425, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:46.879849506Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.007235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433786, - "rtt_ms": 1.433786, + "rtt_ns": 1201834, + "rtt_ms": 1.201834, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "165", - "timestamp": "2025-11-27T01:23:46.880073266Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.007252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731735, - "rtt_ms": 1.731735, + "rtt_ns": 1325625, + "rtt_ms": 1.325625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.880175675Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:03:50.007571-08:00" }, { "operation": "add_edge", - "rtt_ns": 794928, - "rtt_ms": 0.794928, + "rtt_ns": 1264917, + "rtt_ms": 1.264917, "checkpoint": 0, "vertex_from": "160", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:46.880217385Z" + "timestamp": "2025-11-27T04:03:50.007633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755485, - "rtt_ms": 1.755485, + "rtt_ns": 1220042, + "rtt_ms": 1.220042, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:46.880221285Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.007898-08:00" }, { "operation": "add_edge", - "rtt_ns": 902948, - "rtt_ms": 0.902948, + "rtt_ns": 1154834, + "rtt_ms": 1.154834, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.880403815Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:50.007916-08:00" }, { "operation": "add_edge", - "rtt_ns": 901838, - "rtt_ms": 0.901838, + "rtt_ns": 1693459, + "rtt_ms": 1.693459, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:46.880422395Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:50.007921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100307, - "rtt_ms": 1.100307, + "rtt_ns": 1570375, + "rtt_ms": 1.570375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "216", - "timestamp": "2025-11-27T01:23:46.880951023Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.008151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049456, - "rtt_ms": 1.049456, + "rtt_ns": 1409458, + "rtt_ms": 1.409458, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "225", - "timestamp": "2025-11-27T01:23:46.881124802Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:03:50.008168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309576, - "rtt_ms": 1.309576, + "rtt_ns": 1588625, + "rtt_ms": 1.588625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:46.881139712Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:50.008181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323586, - "rtt_ms": 1.323586, + "rtt_ns": 1324584, + "rtt_ms": 1.324584, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:46.881145372Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:03:50.008561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391946, - "rtt_ms": 1.391946, + "rtt_ns": 1453834, + "rtt_ms": 1.453834, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.881188002Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:03:50.008707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060607, - "rtt_ms": 1.060607, + "rtt_ns": 1257709, + "rtt_ms": 1.257709, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "817", - "timestamp": "2025-11-27T01:23:46.881237382Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.008891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541356, - "rtt_ms": 1.541356, + "rtt_ns": 1335542, + "rtt_ms": 1.335542, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:46.881764171Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:03:50.008909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565895, - "rtt_ms": 1.565895, + "rtt_ns": 1356083, + "rtt_ms": 1.356083, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:46.88178433Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:50.009255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413705, - "rtt_ms": 1.413705, + "rtt_ns": 1356583, + "rtt_ms": 1.356583, "checkpoint": 0, "vertex_from": "160", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:46.8818187Z" + "timestamp": "2025-11-27T04:03:50.009273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424625, - "rtt_ms": 1.424625, + "rtt_ns": 1096708, + "rtt_ms": 1.096708, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "915", - "timestamp": "2025-11-27T01:23:46.8818482Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.00928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680785, - "rtt_ms": 1.680785, + "rtt_ns": 1368209, + "rtt_ms": 1.368209, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:46.882632918Z" + "vertex_to": "915", + "timestamp": "2025-11-27T04:03:50.00929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397226, - "rtt_ms": 1.397226, + "rtt_ns": 1389750, + "rtt_ms": 1.38975, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:46.882635748Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:50.009542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604626, - "rtt_ms": 1.604626, + "rtt_ns": 1388625, + "rtt_ms": 1.388625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:46.882751788Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.009557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580675, - "rtt_ms": 1.580675, + "rtt_ns": 1205000, + "rtt_ms": 1.205, "checkpoint": 0, "vertex_from": "160", "vertex_to": "746", - "timestamp": "2025-11-27T01:23:46.882770397Z" + "timestamp": "2025-11-27T04:03:50.009913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121837, - "rtt_ms": 1.121837, + "rtt_ns": 1387625, + "rtt_ms": 1.387625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:46.882908597Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:50.009951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816205, - "rtt_ms": 1.816205, + "rtt_ns": 1335917, + "rtt_ms": 1.335917, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:46.882942407Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:50.010246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158687, - "rtt_ms": 1.158687, + "rtt_ns": 1508583, + "rtt_ms": 1.508583, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:46.882978587Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.010401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845295, - "rtt_ms": 1.845295, + "rtt_ns": 1284000, + "rtt_ms": 1.284, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.882985787Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.010575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163587, - "rtt_ms": 1.163587, + "rtt_ns": 1335709, + "rtt_ms": 1.335709, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:46.883013017Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.010591-08:00" }, { "operation": "add_edge", - "rtt_ns": 2181553, - "rtt_ms": 2.181553, + "rtt_ns": 1337333, + "rtt_ms": 1.337333, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:46.883946734Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.010611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393766, - "rtt_ms": 1.393766, + "rtt_ns": 1344875, + "rtt_ms": 1.344875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.884028244Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:50.010627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124727, - "rtt_ms": 1.124727, + "rtt_ns": 1085500, + "rtt_ms": 1.0855, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:46.884068434Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:50.010643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325997, - "rtt_ms": 1.325997, + "rtt_ns": 1350625, + "rtt_ms": 1.350625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:46.884098204Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:50.010893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504855, - "rtt_ms": 1.504855, + "rtt_ns": 1284375, + "rtt_ms": 1.284375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:46.884141913Z" + "vertex_to": "190", + "timestamp": "2025-11-27T04:03:50.011237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366426, - "rtt_ms": 1.366426, + "rtt_ns": 1427542, + "rtt_ms": 1.427542, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "190", - "timestamp": "2025-11-27T01:23:46.884276313Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:50.011343-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605322, - "rtt_ms": 2.605322, + "rtt_ns": 1494541, + "rtt_ms": 1.494541, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:46.88535866Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:03:50.011742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2445803, - "rtt_ms": 2.445803, + "rtt_ns": 1362208, + "rtt_ms": 1.362208, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.88543302Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.011764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195774, - "rtt_ms": 2.195774, + "rtt_ns": 1322291, + "rtt_ms": 1.322291, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:46.886144718Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.01195-08:00" }, { "operation": "add_edge", - "rtt_ns": 3248531, - "rtt_ms": 3.248531, + "rtt_ns": 1366041, + "rtt_ms": 1.366041, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "590", - "timestamp": "2025-11-27T01:23:46.886262858Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.011978-08:00" }, { "operation": "add_edge", - "rtt_ns": 3352530, - "rtt_ms": 3.35253, + "rtt_ns": 1751625, + "rtt_ms": 1.751625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:46.886333757Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.012395-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326603, - "rtt_ms": 2.326603, + "rtt_ns": 1838500, + "rtt_ms": 1.8385, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:46.886356287Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.012414-08:00" }, { "operation": "add_edge", - "rtt_ns": 2343903, - "rtt_ms": 2.343903, + "rtt_ns": 1956875, + "rtt_ms": 1.956875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.886414067Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:03:50.012851-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347363, - "rtt_ms": 2.347363, + "rtt_ns": 2277459, + "rtt_ms": 2.277459, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "412", - "timestamp": "2025-11-27T01:23:46.886447037Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:03:50.01287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2325414, - "rtt_ms": 2.325414, + "rtt_ns": 1909916, + "rtt_ms": 1.909916, "checkpoint": 0, "vertex_from": "160", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.886468407Z" + "timestamp": "2025-11-27T04:03:50.013147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229364, - "rtt_ms": 2.229364, + "rtt_ns": 1824959, + "rtt_ms": 1.824959, "checkpoint": 0, "vertex_from": "160", "vertex_to": "805", - "timestamp": "2025-11-27T01:23:46.886507207Z" + "timestamp": "2025-11-27T04:03:50.013171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718415, - "rtt_ms": 1.718415, + "rtt_ns": 1581167, + "rtt_ms": 1.581167, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "793", - "timestamp": "2025-11-27T01:23:46.887078865Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:50.013347-08:00" }, { "operation": "add_edge", - "rtt_ns": 956347, - "rtt_ms": 0.956347, + "rtt_ns": 1624458, + "rtt_ms": 1.624458, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.887103135Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:03:50.013368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780585, - "rtt_ms": 1.780585, + "rtt_ns": 1776792, + "rtt_ms": 1.776792, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:46.887215135Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.013727-08:00" }, { "operation": "add_edge", - "rtt_ns": 976117, - "rtt_ms": 0.976117, + "rtt_ns": 1767500, + "rtt_ms": 1.7675, "checkpoint": 0, "vertex_from": "160", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:46.887240075Z" + "timestamp": "2025-11-27T04:03:50.013747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531486, - "rtt_ms": 1.531486, + "rtt_ns": 1369959, + "rtt_ms": 1.369959, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:46.887979243Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.013766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643886, - "rtt_ms": 1.643886, + "rtt_ns": 1764750, + "rtt_ms": 1.76475, "checkpoint": 0, "vertex_from": "160", "vertex_to": "834", - "timestamp": "2025-11-27T01:23:46.888001173Z" + "timestamp": "2025-11-27T04:03:50.01418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535576, - "rtt_ms": 1.535576, + "rtt_ns": 1288500, + "rtt_ms": 1.2885, "checkpoint": 0, "vertex_from": "160", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:46.888005043Z" + "timestamp": "2025-11-27T04:03:50.014437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600216, - "rtt_ms": 1.600216, + "rtt_ns": 1738500, + "rtt_ms": 1.7385, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "574", - "timestamp": "2025-11-27T01:23:46.888015823Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:50.014609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688626, - "rtt_ms": 1.688626, + "rtt_ns": 1828791, + "rtt_ms": 1.828791, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:46.888023273Z" + "vertex_to": "574", + "timestamp": "2025-11-27T04:03:50.014681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537835, - "rtt_ms": 1.537835, + "rtt_ns": 1529917, + "rtt_ms": 1.529917, "checkpoint": 0, "vertex_from": "160", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:46.888047242Z" + "timestamp": "2025-11-27T04:03:50.014704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647885, - "rtt_ms": 1.647885, + "rtt_ns": 1635709, + "rtt_ms": 1.635709, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:46.88872766Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.015005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756835, - "rtt_ms": 1.756835, + "rtt_ns": 1713875, + "rtt_ms": 1.713875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:46.88886399Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.015061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631285, - "rtt_ms": 1.631285, + "rtt_ns": 1584000, + "rtt_ms": 1.584, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.88887291Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:50.015351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669815, - "rtt_ms": 1.669815, + "rtt_ns": 1639583, + "rtt_ms": 1.639583, "checkpoint": 0, "vertex_from": "160", "vertex_to": "897", - "timestamp": "2025-11-27T01:23:46.88888627Z" + "timestamp": "2025-11-27T04:03:50.015368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538515, - "rtt_ms": 1.538515, + "rtt_ns": 1638083, + "rtt_ms": 1.638083, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:46.889541258Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.015386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506866, - "rtt_ms": 1.506866, + "rtt_ns": 1152625, + "rtt_ms": 1.152625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:46.889555308Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.01559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553855, - "rtt_ms": 1.553855, + "rtt_ns": 1528500, + "rtt_ms": 1.5285, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:46.889578458Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:50.015711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599615, - "rtt_ms": 1.599615, + "rtt_ns": 1340958, + "rtt_ms": 1.340958, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:46.889580518Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:50.016348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591505, - "rtt_ms": 1.591505, + "rtt_ns": 1757708, + "rtt_ms": 1.757708, "checkpoint": 0, "vertex_from": "160", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:46.889608808Z" + "timestamp": "2025-11-27T04:03:50.016368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626925, - "rtt_ms": 1.626925, + "rtt_ns": 1681791, + "rtt_ms": 1.681791, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:46.889633058Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:50.016387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717905, - "rtt_ms": 1.717905, + "rtt_ns": 1750250, + "rtt_ms": 1.75025, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:46.890446835Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.016432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583545, - "rtt_ms": 1.583545, + "rtt_ns": 1495917, + "rtt_ms": 1.495917, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:46.890457875Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.016559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622495, - "rtt_ms": 1.622495, + "rtt_ns": 987125, + "rtt_ms": 0.987125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:46.890487435Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:50.016578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029867, - "rtt_ms": 1.029867, + "rtt_ns": 1197292, + "rtt_ms": 1.197292, "checkpoint": 0, "vertex_from": "160", "vertex_to": "586", - "timestamp": "2025-11-27T01:23:46.890572695Z" + "timestamp": "2025-11-27T04:03:50.016584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711155, - "rtt_ms": 1.711155, + "rtt_ns": 1227792, + "rtt_ms": 1.227792, "checkpoint": 0, "vertex_from": "160", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:46.890599065Z" + "timestamp": "2025-11-27T04:03:50.016596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644875, - "rtt_ms": 1.644875, + "rtt_ns": 1268125, + "rtt_ms": 1.268125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:46.891226623Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.01662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689755, - "rtt_ms": 1.689755, + "rtt_ns": 1364208, + "rtt_ms": 1.364208, "checkpoint": 0, "vertex_from": "160", "vertex_to": "273", - "timestamp": "2025-11-27T01:23:46.891269613Z" + "timestamp": "2025-11-27T04:03:50.017076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652855, - "rtt_ms": 1.652855, + "rtt_ns": 1295167, + "rtt_ms": 1.295167, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:46.891286953Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:03:50.017644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677515, - "rtt_ms": 1.677515, + "rtt_ns": 1352375, + "rtt_ms": 1.352375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:46.891287563Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:50.017788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738185, - "rtt_ms": 1.738185, + "rtt_ns": 1239209, + "rtt_ms": 1.239209, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:46.891294483Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:50.017825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502396, - "rtt_ms": 1.502396, + "rtt_ns": 1490958, + "rtt_ms": 1.490958, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:46.891951791Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.01786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538326, - "rtt_ms": 1.538326, + "rtt_ns": 1476333, + "rtt_ms": 1.476333, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.892026821Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:50.017864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520415, - "rtt_ms": 1.520415, + "rtt_ns": 1280750, + "rtt_ms": 1.28075, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:46.892094Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.017878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522945, - "rtt_ms": 1.522945, + "rtt_ns": 1313041, + "rtt_ms": 1.313041, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:46.89212312Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:50.017934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738575, - "rtt_ms": 1.738575, + "rtt_ns": 1395916, + "rtt_ms": 1.395916, "checkpoint": 0, "vertex_from": "160", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.89219719Z" + "timestamp": "2025-11-27T04:03:50.017956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512315, - "rtt_ms": 1.512315, + "rtt_ns": 1406250, + "rtt_ms": 1.40625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:46.892800948Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:50.017985-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1511255, - "rtt_ms": 1.511255, + "operation": "add_vertex", + "rtt_ns": 1712125, + "rtt_ms": 1.712125, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:46.892807528Z" + "vertex_from": "303", + "timestamp": "2025-11-27T04:03:50.01879-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1563325, - "rtt_ms": 1.563325, + "operation": "add_edge", + "rtt_ns": 1467375, + "rtt_ms": 1.467375, "checkpoint": 0, - "vertex_from": "303", - "timestamp": "2025-11-27T01:23:46.892835148Z" + "vertex_from": "160", + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:50.019294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628895, - "rtt_ms": 1.628895, + "rtt_ns": 1450250, + "rtt_ms": 1.45025, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:46.892856618Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:03:50.019311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619375, - "rtt_ms": 1.619375, + "rtt_ns": 1662500, + "rtt_ms": 1.6625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:46.892907498Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.019542-08:00" }, { "operation": "add_edge", - "rtt_ns": 887197, - "rtt_ms": 0.887197, + "rtt_ns": 1774333, + "rtt_ms": 1.774333, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:46.892915578Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.019563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660625, - "rtt_ms": 1.660625, + "rtt_ns": 1622625, + "rtt_ms": 1.622625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "164", - "timestamp": "2025-11-27T01:23:46.893614066Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:50.019581-08:00" }, { "operation": "add_edge", - "rtt_ns": 839668, - "rtt_ms": 0.839668, + "rtt_ns": 1950583, + "rtt_ms": 1.950583, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:46.893641686Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.019595-08:00" }, { "operation": "add_edge", - "rtt_ns": 834688, - "rtt_ms": 0.834688, + "rtt_ns": 1716167, + "rtt_ms": 1.716167, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "303", - "timestamp": "2025-11-27T01:23:46.893670156Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:50.019702-08:00" }, { "operation": "add_edge", - "rtt_ns": 887608, - "rtt_ms": 0.887608, + "rtt_ns": 1767666, + "rtt_ms": 1.767666, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:46.893745686Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:50.019702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563116, - "rtt_ms": 1.563116, + "rtt_ns": 1865250, + "rtt_ms": 1.86525, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:46.893761416Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:50.01973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848855, - "rtt_ms": 1.848855, + "rtt_ns": 1210708, + "rtt_ms": 1.210708, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:46.893974665Z" + "vertex_to": "303", + "timestamp": "2025-11-27T04:03:50.020001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895755, - "rtt_ms": 1.895755, + "rtt_ns": 1263292, + "rtt_ms": 1.263292, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.893990565Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:50.020845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187227, - "rtt_ms": 1.187227, + "rtt_ns": 1570833, + "rtt_ms": 1.570833, "checkpoint": 0, "vertex_from": "160", "vertex_to": "680", - "timestamp": "2025-11-27T01:23:46.893996105Z" + "timestamp": "2025-11-27T04:03:50.020865-08:00" }, { "operation": "add_edge", - "rtt_ns": 985927, - "rtt_ms": 0.985927, + "rtt_ns": 1284500, + "rtt_ms": 1.2845, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:46.894600923Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.020881-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1735215, - "rtt_ms": 1.735215, + "rtt_ns": 1281417, + "rtt_ms": 1.281417, "checkpoint": 0, - "vertex_from": "727", - "timestamp": "2025-11-27T01:23:46.894653373Z" + "vertex_from": "508", + "timestamp": "2025-11-27T04:03:50.020984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756815, - "rtt_ms": 1.756815, + "rtt_ns": 1688375, + "rtt_ms": 1.688375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:46.894665333Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:50.021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268817, - "rtt_ms": 1.268817, + "rtt_ns": 1882542, + "rtt_ms": 1.882542, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:46.894911453Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:03:50.021616-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1173207, - "rtt_ms": 1.173207, + "operation": "add_vertex", + "rtt_ns": 2117708, + "rtt_ms": 2.117708, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "334", - "timestamp": "2025-11-27T01:23:46.894935653Z" + "vertex_from": "727", + "timestamp": "2025-11-27T04:03:50.021682-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1305916, - "rtt_ms": 1.305916, + "operation": "add_edge", + "rtt_ns": 1700333, + "rtt_ms": 1.700333, "checkpoint": 0, - "vertex_from": "508", - "timestamp": "2025-11-27T01:23:46.894977692Z" + "vertex_from": "160", + "vertex_to": "309", + "timestamp": "2025-11-27T04:03:50.021703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264376, - "rtt_ms": 1.264376, + "rtt_ns": 2128083, + "rtt_ms": 2.128083, "checkpoint": 0, "vertex_from": "160", "vertex_to": "480", - "timestamp": "2025-11-27T01:23:46.895010822Z" + "timestamp": "2025-11-27T04:03:50.021831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073007, - "rtt_ms": 1.073007, + "rtt_ns": 2305834, + "rtt_ms": 2.305834, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "309", - "timestamp": "2025-11-27T01:23:46.895048902Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:50.021848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089297, - "rtt_ms": 1.089297, + "rtt_ns": 1330333, + "rtt_ms": 1.330333, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:46.895086412Z" + "vertex_to": "508", + "timestamp": "2025-11-27T04:03:50.022315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089867, - "rtt_ms": 1.089867, + "rtt_ns": 1604459, + "rtt_ms": 1.604459, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "727", - "timestamp": "2025-11-27T01:23:46.89574361Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:50.022471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770455, - "rtt_ms": 1.770455, + "rtt_ns": 1601250, + "rtt_ms": 1.60125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.8957623Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.022482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601226, - "rtt_ms": 1.601226, + "rtt_ns": 1485500, + "rtt_ms": 1.4855, "checkpoint": 0, "vertex_from": "160", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:46.896267629Z" + "timestamp": "2025-11-27T04:03:50.022486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679876, - "rtt_ms": 1.679876, + "rtt_ns": 1840416, + "rtt_ms": 1.840416, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:46.896282289Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.022687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425345, - "rtt_ms": 1.425345, + "rtt_ns": 1569625, + "rtt_ms": 1.569625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:46.896362148Z" + "vertex_to": "727", + "timestamp": "2025-11-27T04:03:50.023252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562735, - "rtt_ms": 1.562735, + "rtt_ns": 1422042, + "rtt_ms": 1.422042, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:46.896475508Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.023271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595436, - "rtt_ms": 1.595436, + "rtt_ns": 988292, + "rtt_ms": 0.988292, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:46.896607078Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.023304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676275, - "rtt_ms": 1.676275, + "rtt_ns": 1500209, + "rtt_ms": 1.500209, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:46.896763637Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.023333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217954, - "rtt_ms": 2.217954, + "rtt_ns": 1771959, + "rtt_ms": 1.771959, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:46.897268436Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:03:50.023391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2547503, - "rtt_ms": 2.547503, + "rtt_ns": 1757708, + "rtt_ms": 1.757708, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "508", - "timestamp": "2025-11-27T01:23:46.897525595Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.023462-08:00" }, { "operation": "add_edge", - "rtt_ns": 2511723, - "rtt_ms": 2.511723, + "rtt_ns": 1267458, + "rtt_ms": 1.267458, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:46.898275323Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:50.023955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2610322, - "rtt_ms": 2.610322, + "rtt_ns": 1505250, + "rtt_ms": 1.50525, "checkpoint": 0, "vertex_from": "161", "vertex_to": "897", - "timestamp": "2025-11-27T01:23:46.898355382Z" + "timestamp": "2025-11-27T04:03:50.023977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103963, - "rtt_ms": 2.103963, + "rtt_ns": 1577958, + "rtt_ms": 1.577958, "checkpoint": 0, "vertex_from": "161", "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.898373232Z" + "timestamp": "2025-11-27T04:03:50.024065-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100773, - "rtt_ms": 2.100773, + "rtt_ns": 1888334, + "rtt_ms": 1.888334, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:46.898384642Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.024372-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079464, - "rtt_ms": 2.079464, + "rtt_ns": 1403208, + "rtt_ms": 1.403208, "checkpoint": 0, "vertex_from": "161", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.898442572Z" + "timestamp": "2025-11-27T04:03:50.024656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978064, - "rtt_ms": 1.978064, + "rtt_ns": 1208166, + "rtt_ms": 1.208166, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "229", - "timestamp": "2025-11-27T01:23:46.898454972Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.024671-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134024, - "rtt_ms": 2.134024, + "rtt_ns": 1655875, + "rtt_ms": 1.655875, "checkpoint": 0, "vertex_from": "161", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:46.898898601Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2319393, - "rtt_ms": 2.319393, - "checkpoint": 0, - "vertex_from": "161", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.898927541Z" + "timestamp": "2025-11-27T04:03:50.02499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050124, - "rtt_ms": 2.050124, + "rtt_ns": 1612333, + "rtt_ms": 1.612333, "checkpoint": 0, "vertex_from": "161", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:46.89931974Z" + "timestamp": "2025-11-27T04:03:50.025006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857034, - "rtt_ms": 1.857034, + "rtt_ns": 1718959, + "rtt_ms": 1.718959, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:46.899383579Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:50.025024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628245, - "rtt_ms": 1.628245, + "rtt_ns": 1766459, + "rtt_ms": 1.766459, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.899904468Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:03:50.025038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569296, - "rtt_ms": 1.569296, + "rtt_ns": 2060167, + "rtt_ms": 2.060167, "checkpoint": 0, "vertex_from": "161", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:46.899925858Z" + "timestamp": "2025-11-27T04:03:50.02604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606396, - "rtt_ms": 1.606396, + "rtt_ns": 1993084, + "rtt_ms": 1.993084, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:46.899992878Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.026059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154436, - "rtt_ms": 1.154436, + "rtt_ns": 2119375, + "rtt_ms": 2.119375, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:46.900086357Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.026075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231916, - "rtt_ms": 1.231916, + "rtt_ns": 1708459, + "rtt_ms": 1.708459, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.900131197Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:03:50.026748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707935, - "rtt_ms": 1.707935, + "rtt_ns": 2094625, + "rtt_ms": 2.094625, "checkpoint": 0, "vertex_from": "161", "vertex_to": "197", - "timestamp": "2025-11-27T01:23:46.900164177Z" + "timestamp": "2025-11-27T04:03:50.026769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723965, - "rtt_ms": 1.723965, + "rtt_ns": 2125750, + "rtt_ms": 2.12575, "checkpoint": 0, "vertex_from": "161", "vertex_to": "812", - "timestamp": "2025-11-27T01:23:46.900167597Z" + "timestamp": "2025-11-27T04:03:50.026784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797155, - "rtt_ms": 1.797155, + "rtt_ns": 2413292, + "rtt_ms": 2.413292, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:46.900171997Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:50.026786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509806, - "rtt_ms": 1.509806, + "rtt_ns": 1979750, + "rtt_ms": 1.97975, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "867", - "timestamp": "2025-11-27T01:23:46.900894635Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.02697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064077, - "rtt_ms": 1.064077, + "rtt_ns": 2133834, + "rtt_ms": 2.133834, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.900990605Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:03:50.027159-08:00" }, { "operation": "add_edge", - "rtt_ns": 941858, - "rtt_ms": 0.941858, + "rtt_ns": 2434750, + "rtt_ms": 2.43475, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:46.901029755Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.027442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041027, - "rtt_ms": 1.041027, + "rtt_ns": 1948125, + "rtt_ms": 1.948125, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.901035565Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.028008-08:00" }, { "operation": "add_edge", - "rtt_ns": 923398, - "rtt_ms": 0.923398, + "rtt_ns": 1275625, + "rtt_ms": 1.275625, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:46.901088435Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.028025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258306, - "rtt_ms": 1.258306, + "rtt_ns": 2000667, + "rtt_ms": 2.000667, "checkpoint": 0, "vertex_from": "161", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:46.901163584Z" + "timestamp": "2025-11-27T04:03:50.028042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038507, - "rtt_ms": 1.038507, + "rtt_ns": 1600625, + "rtt_ms": 1.600625, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.901207004Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.02837-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2315958, + "rtt_ms": 2.315958, + "checkpoint": 0, + "vertex_from": "161", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.028392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052627, - "rtt_ms": 1.052627, + "rtt_ns": 1438708, + "rtt_ms": 1.438708, "checkpoint": 0, "vertex_from": "161", "vertex_to": "311", - "timestamp": "2025-11-27T01:23:46.901226414Z" + "timestamp": "2025-11-27T04:03:50.02841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908944, - "rtt_ms": 1.908944, + "rtt_ns": 1644208, + "rtt_ms": 1.644208, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "666", - "timestamp": "2025-11-27T01:23:46.901229704Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.028431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116777, - "rtt_ms": 1.116777, + "rtt_ns": 1651208, + "rtt_ms": 1.651208, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.901249194Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.028438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104737, - "rtt_ms": 1.104737, + "rtt_ns": 1297625, + "rtt_ms": 1.297625, "checkpoint": 0, "vertex_from": "161", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:46.902000522Z" + "timestamp": "2025-11-27T04:03:50.028457-08:00" }, { "operation": "add_edge", - "rtt_ns": 844998, - "rtt_ms": 0.844998, + "rtt_ns": 1080000, + "rtt_ms": 1.08, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:46.902009592Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:03:50.028523-08:00" }, { "operation": "add_edge", - "rtt_ns": 983507, - "rtt_ms": 0.983507, + "rtt_ns": 1384792, + "rtt_ms": 1.384792, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "481", - "timestamp": "2025-11-27T01:23:46.902020572Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.029427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042877, - "rtt_ms": 1.042877, + "rtt_ns": 1415500, + "rtt_ms": 1.4155, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "496", - "timestamp": "2025-11-27T01:23:46.902035602Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:03:50.029441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008057, - "rtt_ms": 1.008057, + "rtt_ns": 1326125, + "rtt_ms": 1.326125, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:46.902039052Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:50.029765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254546, - "rtt_ms": 1.254546, + "rtt_ns": 1316750, + "rtt_ms": 1.31675, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.902343641Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:03:50.029776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121687, - "rtt_ms": 1.121687, + "rtt_ns": 1837750, + "rtt_ms": 1.83775, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.902348961Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:50.029847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289946, - "rtt_ms": 1.289946, + "rtt_ns": 1362333, + "rtt_ms": 1.362333, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:46.90254129Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:50.029887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383126, - "rtt_ms": 1.383126, + "rtt_ns": 1538667, + "rtt_ms": 1.538667, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "271", - "timestamp": "2025-11-27T01:23:46.90259145Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:50.02991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455946, - "rtt_ms": 1.455946, + "rtt_ns": 1484167, + "rtt_ms": 1.484167, "checkpoint": 0, "vertex_from": "161", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.90268662Z" + "timestamp": "2025-11-27T04:03:50.029916-08:00" }, { "operation": "add_edge", - "rtt_ns": 730318, - "rtt_ms": 0.730318, + "rtt_ns": 1556208, + "rtt_ms": 1.556208, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:46.90274104Z" + "vertex_to": "271", + "timestamp": "2025-11-27T04:03:50.029951-08:00" }, { "operation": "add_edge", - "rtt_ns": 812608, - "rtt_ms": 0.812608, + "rtt_ns": 1620208, + "rtt_ms": 1.620208, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "302", - "timestamp": "2025-11-27T01:23:46.90281439Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.030031-08:00" }, { "operation": "add_edge", - "rtt_ns": 794988, - "rtt_ms": 0.794988, + "rtt_ns": 1405041, + "rtt_ms": 1.405041, "checkpoint": 0, "vertex_from": "161", "vertex_to": "852", - "timestamp": "2025-11-27T01:23:46.90282009Z" + "timestamp": "2025-11-27T04:03:50.030833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537816, - "rtt_ms": 1.537816, + "rtt_ns": 1418000, + "rtt_ms": 1.418, "checkpoint": 0, "vertex_from": "162", "vertex_to": "176", - "timestamp": "2025-11-27T01:23:46.903574698Z" + "timestamp": "2025-11-27T04:03:50.03086-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018544, - "rtt_ms": 2.018544, + "rtt_ns": 1147875, + "rtt_ms": 1.147875, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.904058596Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:50.031059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925435, - "rtt_ms": 1.925435, + "rtt_ns": 1299583, + "rtt_ms": 1.299583, "checkpoint": 0, "vertex_from": "162", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.904270336Z" + "timestamp": "2025-11-27T04:03:50.031076-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124894, - "rtt_ms": 2.124894, + "rtt_ns": 1297834, + "rtt_ms": 1.297834, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:46.904475655Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.031214-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315113, - "rtt_ms": 2.315113, + "rtt_ns": 1466000, + "rtt_ms": 1.466, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.905130443Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.031232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2473313, - "rtt_ms": 2.473313, + "rtt_ns": 1354292, + "rtt_ms": 1.354292, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.905160953Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.031386-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383763, - "rtt_ms": 2.383763, + "rtt_ns": 1512000, + "rtt_ms": 1.512, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:46.905204943Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:50.0314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635465, - "rtt_ms": 1.635465, + "rtt_ns": 1472417, + "rtt_ms": 1.472417, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "433", - "timestamp": "2025-11-27T01:23:46.905211703Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.031425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184837, - "rtt_ms": 1.184837, + "rtt_ns": 1663041, + "rtt_ms": 1.663041, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:46.905244743Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:50.03153-08:00" }, { "operation": "add_edge", - "rtt_ns": 2710883, - "rtt_ms": 2.710883, + "rtt_ns": 1426917, + "rtt_ms": 1.426917, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:46.905253853Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:03:50.032289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2665353, - "rtt_ms": 2.665353, + "rtt_ns": 1230833, + "rtt_ms": 1.230833, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:46.905258533Z" + "vertex_to": "985", + "timestamp": "2025-11-27T04:03:50.032308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453815, - "rtt_ms": 1.453815, + "rtt_ns": 1278875, + "rtt_ms": 1.278875, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "985", - "timestamp": "2025-11-27T01:23:46.905725571Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.032494-08:00" }, { "operation": "add_edge", - "rtt_ns": 3450030, - "rtt_ms": 3.45003, + "rtt_ns": 1446375, + "rtt_ms": 1.446375, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:46.90619248Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:50.032507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740035, - "rtt_ms": 1.740035, + "rtt_ns": 1281000, + "rtt_ms": 1.281, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:46.90621893Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:50.032514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145876, - "rtt_ms": 1.145876, + "rtt_ns": 1689875, + "rtt_ms": 1.689875, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:46.906309699Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:50.032526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090976, - "rtt_ms": 1.090976, + "rtt_ns": 1279209, + "rtt_ms": 1.279209, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:46.906352719Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.03268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343166, - "rtt_ms": 1.343166, + "rtt_ns": 1262500, + "rtt_ms": 1.2625, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:46.906476249Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:03:50.032793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246706, - "rtt_ms": 1.246706, + "rtt_ns": 1617250, + "rtt_ms": 1.61725, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:46.906501759Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.033043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308746, - "rtt_ms": 1.308746, + "rtt_ns": 1711667, + "rtt_ms": 1.711667, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.906514889Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:50.033099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273056, - "rtt_ms": 1.273056, + "rtt_ns": 1447375, + "rtt_ms": 1.447375, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "196", - "timestamp": "2025-11-27T01:23:46.906518899Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.033756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354086, - "rtt_ms": 1.354086, + "rtt_ns": 1502750, + "rtt_ms": 1.50275, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.906567069Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:03:50.033793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550806, - "rtt_ms": 1.550806, + "rtt_ns": 1366000, + "rtt_ms": 1.366, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:46.907278867Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.033873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086556, - "rtt_ms": 1.086556, + "rtt_ns": 1363417, + "rtt_ms": 1.363417, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.907291426Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:50.033891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086326, - "rtt_ms": 1.086326, + "rtt_ns": 1391042, + "rtt_ms": 1.391042, "checkpoint": 0, "vertex_from": "162", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:46.907307346Z" + "timestamp": "2025-11-27T04:03:50.033906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389056, - "rtt_ms": 1.389056, + "rtt_ns": 1426458, + "rtt_ms": 1.426458, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "473", - "timestamp": "2025-11-27T01:23:46.907743435Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:50.033922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313176, - "rtt_ms": 1.313176, + "rtt_ns": 1279375, + "rtt_ms": 1.279375, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.907790805Z" + "vertex_to": "473", + "timestamp": "2025-11-27T04:03:50.03396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328506, - "rtt_ms": 1.328506, + "rtt_ns": 2025584, + "rtt_ms": 2.025584, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:46.907849925Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.034821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393236, - "rtt_ms": 1.393236, + "rtt_ns": 2149250, + "rtt_ms": 2.14925, "checkpoint": 0, "vertex_from": "162", "vertex_to": "225", - "timestamp": "2025-11-27T01:23:46.907911515Z" + "timestamp": "2025-11-27T04:03:50.035249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372286, - "rtt_ms": 1.372286, + "rtt_ns": 2242625, + "rtt_ms": 2.242625, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:46.907941305Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.035287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503595, - "rtt_ms": 1.503595, + "rtt_ns": 1794125, + "rtt_ms": 1.794125, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:46.908006274Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:50.035756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804455, - "rtt_ms": 1.804455, + "rtt_ns": 1999375, + "rtt_ms": 1.999375, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:46.908116134Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:50.035758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337046, - "rtt_ms": 1.337046, + "rtt_ns": 1984333, + "rtt_ms": 1.984333, "checkpoint": 0, "vertex_from": "162", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:46.908617293Z" + "timestamp": "2025-11-27T04:03:50.035859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385006, - "rtt_ms": 1.385006, + "rtt_ns": 2141000, + "rtt_ms": 2.141, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.908693252Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:50.035935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097927, - "rtt_ms": 1.097927, + "rtt_ns": 2054541, + "rtt_ms": 2.054541, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:46.908889802Z" + "vertex_to": "567", + "timestamp": "2025-11-27T04:03:50.035946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617816, - "rtt_ms": 1.617816, + "rtt_ns": 2041542, + "rtt_ms": 2.041542, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "567", - "timestamp": "2025-11-27T01:23:46.908912062Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.035948-08:00" }, { "operation": "add_edge", - "rtt_ns": 999737, - "rtt_ms": 0.999737, + "rtt_ns": 1139500, + "rtt_ms": 1.1395, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:46.908913222Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.035961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059157, - "rtt_ms": 1.059157, + "rtt_ns": 2098083, + "rtt_ms": 2.098083, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.908912232Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:50.03602-08:00" }, { "operation": "add_edge", - "rtt_ns": 994287, - "rtt_ms": 0.994287, + "rtt_ns": 1472375, + "rtt_ms": 1.472375, "checkpoint": 0, "vertex_from": "162", "vertex_to": "389", - "timestamp": "2025-11-27T01:23:46.908938682Z" + "timestamp": "2025-11-27T04:03:50.03676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622706, - "rtt_ms": 1.622706, + "rtt_ns": 1511500, + "rtt_ms": 1.5115, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:46.909367441Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:50.036762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404276, - "rtt_ms": 1.404276, + "rtt_ns": 1074333, + "rtt_ms": 1.074333, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:46.90952183Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.037024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566646, - "rtt_ms": 1.566646, + "rtt_ns": 1355625, + "rtt_ms": 1.355625, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:46.90957548Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:50.037303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300736, - "rtt_ms": 1.300736, + "rtt_ns": 1493958, + "rtt_ms": 1.493958, "checkpoint": 0, "vertex_from": "162", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:46.909921829Z" + "timestamp": "2025-11-27T04:03:50.037354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783085, - "rtt_ms": 1.783085, + "rtt_ns": 1604083, + "rtt_ms": 1.604083, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:46.910477737Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:50.037365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614835, - "rtt_ms": 1.614835, + "rtt_ns": 1647125, + "rtt_ms": 1.647125, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:46.910530497Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.037404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595255, - "rtt_ms": 1.595255, + "rtt_ns": 1555542, + "rtt_ms": 1.555542, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:46.910536937Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:03:50.037577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627455, - "rtt_ms": 1.627455, + "rtt_ns": 1633167, + "rtt_ms": 1.633167, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.910541277Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:50.037595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061127, - "rtt_ms": 1.061127, + "rtt_ns": 1674292, + "rtt_ms": 1.674292, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:46.910584867Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:50.037612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689155, - "rtt_ms": 1.689155, + "rtt_ns": 1237042, + "rtt_ms": 1.237042, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:46.910603777Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:50.037998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730295, - "rtt_ms": 1.730295, + "rtt_ns": 1301417, + "rtt_ms": 1.301417, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:46.910622097Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:50.038065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313406, - "rtt_ms": 1.313406, + "rtt_ns": 1606208, + "rtt_ms": 1.606208, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:46.910682517Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.038632-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1365250, + "rtt_ms": 1.36525, + "checkpoint": 0, + "vertex_from": "163", + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:50.03872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736415, - "rtt_ms": 1.736415, + "rtt_ns": 1450333, + "rtt_ms": 1.450333, "checkpoint": 0, "vertex_from": "163", "vertex_to": "568", - "timestamp": "2025-11-27T01:23:46.911313105Z" + "timestamp": "2025-11-27T04:03:50.038754-08:00" }, { "operation": "add_edge", - "rtt_ns": 968128, - "rtt_ms": 0.968128, + "rtt_ns": 1379291, + "rtt_ms": 1.379291, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.911447695Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.038957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540376, - "rtt_ms": 1.540376, + "rtt_ns": 1601625, + "rtt_ms": 1.601625, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:46.911464995Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.038969-08:00" }, { "operation": "add_edge", - "rtt_ns": 951848, - "rtt_ms": 0.951848, + "rtt_ns": 1571625, + "rtt_ms": 1.571625, "checkpoint": 0, "vertex_from": "163", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.911484155Z" + "timestamp": "2025-11-27T04:03:50.038977-08:00" }, { "operation": "add_edge", - "rtt_ns": 964358, - "rtt_ms": 0.964358, + "rtt_ns": 1387125, + "rtt_ms": 1.387125, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:46.911508095Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.038999-08:00" }, { "operation": "add_edge", - "rtt_ns": 847398, - "rtt_ms": 0.847398, + "rtt_ns": 1423875, + "rtt_ms": 1.423875, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.911531235Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.03902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686345, - "rtt_ms": 1.686345, + "rtt_ns": 1347958, + "rtt_ms": 1.347958, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:46.912273832Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.039347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664165, - "rtt_ms": 1.664165, + "rtt_ns": 1287292, + "rtt_ms": 1.287292, "checkpoint": 0, "vertex_from": "163", "vertex_to": "337", - "timestamp": "2025-11-27T01:23:46.912288432Z" + "timestamp": "2025-11-27T04:03:50.039353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720765, - "rtt_ms": 1.720765, + "rtt_ns": 1158291, + "rtt_ms": 1.158291, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.912325782Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:03:50.039914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804055, - "rtt_ms": 1.804055, + "rtt_ns": 1367625, + "rtt_ms": 1.367625, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.912342442Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.040002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130327, - "rtt_ms": 1.130327, + "rtt_ns": 1426041, + "rtt_ms": 1.426041, "checkpoint": 0, "vertex_from": "163", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:46.912444872Z" + "timestamp": "2025-11-27T04:03:50.040147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419026, - "rtt_ms": 1.419026, + "rtt_ns": 1483209, + "rtt_ms": 1.483209, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.912904281Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.040505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523016, - "rtt_ms": 1.523016, + "rtt_ns": 1542500, + "rtt_ms": 1.5425, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "177", - "timestamp": "2025-11-27T01:23:46.912971691Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.04052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507226, - "rtt_ms": 1.507226, + "rtt_ns": 1414625, + "rtt_ms": 1.414625, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:46.912973531Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.040763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471255, - "rtt_ms": 1.471255, + "rtt_ns": 1811083, + "rtt_ms": 1.811083, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.91297996Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.040781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499155, - "rtt_ms": 1.499155, + "rtt_ns": 1822958, + "rtt_ms": 1.822958, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:46.91303139Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:50.040782-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1435125, + "rtt_ms": 1.435125, + "checkpoint": 0, + "vertex_from": "163", + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.040789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224667, - "rtt_ms": 1.224667, + "rtt_ns": 1280083, + "rtt_ms": 1.280083, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:46.913671659Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.041195-08:00" }, { "operation": "add_edge", - "rtt_ns": 782158, - "rtt_ms": 0.782158, + "rtt_ns": 1229125, + "rtt_ms": 1.229125, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:46.913687709Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:50.041234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486966, - "rtt_ms": 1.486966, + "rtt_ns": 2410167, + "rtt_ms": 2.410167, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.913761918Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:50.041411-08:00" }, { "operation": "add_edge", - "rtt_ns": 942337, - "rtt_ms": 0.942337, + "rtt_ns": 1277708, + "rtt_ms": 1.277708, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:46.913916728Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:50.041427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649696, - "rtt_ms": 1.649696, + "rtt_ns": 1396750, + "rtt_ms": 1.39675, "checkpoint": 0, - "vertex_from": "163", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.913939168Z" + "vertex_from": "164", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.041902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681906, - "rtt_ms": 1.681906, + "rtt_ns": 1153666, + "rtt_ms": 1.153666, "checkpoint": 0, - "vertex_from": "163", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:46.914008508Z" + "vertex_from": "164", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.041918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667336, - "rtt_ms": 1.667336, + "rtt_ns": 1450583, + "rtt_ms": 1.450583, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.914010568Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.041972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617185, - "rtt_ms": 1.617185, + "rtt_ns": 1428833, + "rtt_ms": 1.428833, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.914589756Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.042219-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1679326, - "rtt_ms": 1.679326, + "rtt_ns": 1458291, + "rtt_ms": 1.458291, "checkpoint": 0, "vertex_from": "219", - "timestamp": "2025-11-27T01:23:46.914713226Z" + "timestamp": "2025-11-27T04:03:50.042241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757266, - "rtt_ms": 1.757266, + "rtt_ns": 1472875, + "rtt_ms": 1.472875, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.914738276Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:50.042256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061257, - "rtt_ms": 1.061257, + "rtt_ns": 1076125, + "rtt_ms": 1.076125, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:46.914749796Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.042488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206086, - "rtt_ms": 1.206086, + "rtt_ns": 1064166, + "rtt_ms": 1.064166, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:46.914879005Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:50.042492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334867, - "rtt_ms": 1.334867, + "rtt_ns": 1273833, + "rtt_ms": 1.273833, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.915097865Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:50.04251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256386, - "rtt_ms": 1.256386, + "rtt_ns": 1336000, + "rtt_ms": 1.336, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:46.915173894Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.042532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333436, - "rtt_ms": 1.333436, + "rtt_ns": 1402958, + "rtt_ms": 1.402958, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:46.915342614Z" + "vertex_to": "758", + "timestamp": "2025-11-27T04:03:50.043307-08:00" }, { "operation": "add_edge", - "rtt_ns": 763438, - "rtt_ms": 0.763438, + "rtt_ns": 1376833, + "rtt_ms": 1.376833, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "172", - "timestamp": "2025-11-27T01:23:46.915354074Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.043597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916874, - "rtt_ms": 1.916874, + "rtt_ns": 1695416, + "rtt_ms": 1.695416, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "758", - "timestamp": "2025-11-27T01:23:46.915928432Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:03:50.043614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172107, - "rtt_ms": 1.172107, + "rtt_ns": 1431625, + "rtt_ms": 1.431625, "checkpoint": 0, "vertex_from": "164", "vertex_to": "730", - "timestamp": "2025-11-27T01:23:46.916052152Z" + "timestamp": "2025-11-27T04:03:50.043688-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125274, - "rtt_ms": 2.125274, + "rtt_ns": 1208750, + "rtt_ms": 1.20875, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.916065212Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:03:50.043743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426335, - "rtt_ms": 1.426335, + "rtt_ns": 1532333, + "rtt_ms": 1.532333, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:46.916165731Z" + "vertex_to": "219", + "timestamp": "2025-11-27T04:03:50.043773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089146, - "rtt_ms": 1.089146, + "rtt_ns": 1382417, + "rtt_ms": 1.382417, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.916187951Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.043875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440085, - "rtt_ms": 1.440085, + "rtt_ns": 1938542, + "rtt_ms": 1.938542, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.916190721Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.043913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604155, - "rtt_ms": 1.604155, + "rtt_ns": 1490167, + "rtt_ms": 1.490167, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "219", - "timestamp": "2025-11-27T01:23:46.916317841Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.043981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193667, - "rtt_ms": 1.193667, + "rtt_ns": 1639833, + "rtt_ms": 1.639833, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:46.916368581Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.04415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947654, - "rtt_ms": 1.947654, + "rtt_ns": 1169666, + "rtt_ms": 1.169666, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.917291108Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:50.044477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225236, - "rtt_ms": 1.225236, + "rtt_ns": 1114167, + "rtt_ms": 1.114167, "checkpoint": 0, "vertex_from": "164", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.917291308Z" + "timestamp": "2025-11-27T04:03:50.044729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370126, - "rtt_ms": 1.370126, + "rtt_ns": 1101459, + "rtt_ms": 1.101459, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:46.917299628Z" + "vertex_to": "211", + "timestamp": "2025-11-27T04:03:50.045016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117307, - "rtt_ms": 1.117307, + "rtt_ns": 1566167, + "rtt_ms": 1.566167, "checkpoint": 0, "vertex_from": "164", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:46.917306208Z" + "timestamp": "2025-11-27T04:03:50.04531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970304, - "rtt_ms": 1.970304, + "rtt_ns": 1638958, + "rtt_ms": 1.638958, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:46.917325258Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.045328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272516, - "rtt_ms": 1.272516, + "rtt_ns": 1466917, + "rtt_ms": 1.466917, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:46.917327078Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.045343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594796, - "rtt_ms": 1.594796, + "rtt_ns": 1583500, + "rtt_ms": 1.5835, "checkpoint": 0, "vertex_from": "164", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:46.917787047Z" + "timestamp": "2025-11-27T04:03:50.045357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819405, - "rtt_ms": 1.819405, + "rtt_ns": 1486167, + "rtt_ms": 1.486167, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:46.918138296Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.045469-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 910847, - "rtt_ms": 0.910847, + "operation": "add_edge", + "rtt_ns": 1889333, + "rtt_ms": 1.889333, "checkpoint": 0, - "vertex_from": "350", - "timestamp": "2025-11-27T01:23:46.918206095Z" + "vertex_from": "164", + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.045487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147124, - "rtt_ms": 2.147124, + "rtt_ns": 1155500, + "rtt_ms": 1.1555, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:46.918313915Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:50.045885-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1991634, - "rtt_ms": 1.991634, + "operation": "add_vertex", + "rtt_ns": 1755667, + "rtt_ms": 1.755667, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "211", - "timestamp": "2025-11-27T01:23:46.918361325Z" + "vertex_from": "350", + "timestamp": "2025-11-27T04:03:50.045908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791495, - "rtt_ms": 1.791495, + "rtt_ns": 1494583, + "rtt_ms": 1.494583, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:46.919084073Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:03:50.045973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809035, - "rtt_ms": 1.809035, + "rtt_ns": 991875, + "rtt_ms": 0.991875, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:46.919111193Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.046321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834105, - "rtt_ms": 1.834105, + "rtt_ns": 1090625, + "rtt_ms": 1.090625, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:46.919142593Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.046449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866314, - "rtt_ms": 1.866314, + "rtt_ns": 1526625, + "rtt_ms": 1.526625, "checkpoint": 0, "vertex_from": "164", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.919196192Z" + "timestamp": "2025-11-27T04:03:50.046543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899284, - "rtt_ms": 1.899284, + "rtt_ns": 1314083, + "rtt_ms": 1.314083, "checkpoint": 0, "vertex_from": "164", "vertex_to": "196", - "timestamp": "2025-11-27T01:23:46.919231922Z" + "timestamp": "2025-11-27T04:03:50.046625-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1370292, + "rtt_ms": 1.370292, + "checkpoint": 0, + "vertex_from": "318", + "timestamp": "2025-11-27T04:03:50.046716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601565, - "rtt_ms": 1.601565, + "rtt_ns": 1498417, + "rtt_ms": 1.498417, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.919391562Z" + "vertex_from": "165", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.046986-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1270026, - "rtt_ms": 1.270026, + "rtt_ns": 1775834, + "rtt_ms": 1.775834, "checkpoint": 0, "vertex_from": "351", - "timestamp": "2025-11-27T01:23:46.919634591Z" + "timestamp": "2025-11-27T04:03:50.047247-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1527065, - "rtt_ms": 1.527065, + "operation": "add_edge", + "rtt_ns": 1290667, + "rtt_ms": 1.290667, "checkpoint": 0, - "vertex_from": "318", - "timestamp": "2025-11-27T01:23:46.919667721Z" + "vertex_from": "165", + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:50.047265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048387, - "rtt_ms": 1.048387, + "rtt_ns": 1478000, + "rtt_ms": 1.478, "checkpoint": 0, "vertex_from": "165", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:46.92016076Z" + "timestamp": "2025-11-27T04:03:50.047364-08:00" }, { "operation": "add_edge", - "rtt_ns": 926898, - "rtt_ms": 0.926898, + "rtt_ns": 1353541, + "rtt_ms": 1.353541, "checkpoint": 0, "vertex_from": "165", "vertex_to": "204", - "timestamp": "2025-11-27T01:23:46.92016213Z" + "timestamp": "2025-11-27T04:03:50.047803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866485, - "rtt_ms": 1.866485, + "rtt_ns": 1913083, + "rtt_ms": 1.913083, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.92018185Z" + "vertex_to": "350", + "timestamp": "2025-11-27T04:03:50.047821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194226, - "rtt_ms": 1.194226, + "rtt_ns": 1515917, + "rtt_ms": 1.515917, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.920279399Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2136004, - "rtt_ms": 2.136004, - "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "350", - "timestamp": "2025-11-27T01:23:46.920342669Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.047837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464146, - "rtt_ms": 1.464146, + "rtt_ns": 1308042, + "rtt_ms": 1.308042, "checkpoint": 0, "vertex_from": "165", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:46.920859538Z" + "timestamp": "2025-11-27T04:03:50.047852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717576, - "rtt_ms": 1.717576, + "rtt_ns": 1723959, + "rtt_ms": 1.723959, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:46.920920148Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:50.04835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862634, - "rtt_ms": 1.862634, + "rtt_ns": 1378875, + "rtt_ms": 1.378875, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:46.921006717Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:50.048368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533046, - "rtt_ms": 1.533046, + "rtt_ns": 2004750, + "rtt_ms": 2.00475, "checkpoint": 0, "vertex_from": "164", "vertex_to": "318", - "timestamp": "2025-11-27T01:23:46.921201097Z" + "timestamp": "2025-11-27T04:03:50.048721-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144624, - "rtt_ms": 2.144624, + "rtt_ns": 1533333, + "rtt_ms": 1.533333, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "351", - "timestamp": "2025-11-27T01:23:46.921779735Z" + "vertex_from": "165", + "vertex_to": "678", + "timestamp": "2025-11-27T04:03:50.048799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714125, - "rtt_ms": 1.714125, + "rtt_ns": 1438708, + "rtt_ms": 1.438708, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:46.921878665Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:03:50.048805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704245, - "rtt_ms": 1.704245, + "rtt_ns": 1572709, + "rtt_ms": 1.572709, "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "678", - "timestamp": "2025-11-27T01:23:46.921889035Z" + "vertex_from": "164", + "vertex_to": "351", + "timestamp": "2025-11-27T04:03:50.04882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548956, - "rtt_ms": 1.548956, + "rtt_ns": 1568875, + "rtt_ms": 1.568875, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.921893525Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:50.049391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764545, - "rtt_ms": 1.764545, + "rtt_ns": 1612916, + "rtt_ms": 1.612916, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:46.921929545Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:03:50.049964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654006, - "rtt_ms": 1.654006, + "rtt_ns": 2132291, + "rtt_ms": 2.132291, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "236", - "timestamp": "2025-11-27T01:23:46.921935135Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.049984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325376, - "rtt_ms": 1.325376, + "rtt_ns": 2207125, + "rtt_ms": 2.207125, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:46.922189794Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.050011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410697, - "rtt_ms": 1.410697, + "rtt_ns": 2182250, + "rtt_ms": 2.18225, "checkpoint": 0, "vertex_from": "165", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.922332064Z" + "timestamp": "2025-11-27T04:03:50.05002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372516, - "rtt_ms": 1.372516, + "rtt_ns": 1950250, + "rtt_ms": 1.95025, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:46.922381213Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:03:50.050674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305116, - "rtt_ms": 1.305116, + "rtt_ns": 1869583, + "rtt_ms": 1.869583, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:46.922510323Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.050691-08:00" }, { "operation": "add_edge", - "rtt_ns": 762738, - "rtt_ms": 0.762738, + "rtt_ns": 1904125, + "rtt_ms": 1.904125, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "698", - "timestamp": "2025-11-27T01:23:46.922545173Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.050705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462886, - "rtt_ms": 1.462886, + "rtt_ns": 2558958, + "rtt_ms": 2.558958, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.923357851Z" + "vertex_to": "698", + "timestamp": "2025-11-27T04:03:50.050928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024468, - "rtt_ms": 1.024468, + "rtt_ns": 971000, + "rtt_ms": 0.971, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:46.923406951Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.050992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630325, - "rtt_ms": 1.630325, + "rtt_ns": 2200875, + "rtt_ms": 2.200875, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "825", - "timestamp": "2025-11-27T01:23:46.92351079Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.051008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821325, - "rtt_ms": 1.821325, + "rtt_ns": 1575250, + "rtt_ms": 1.57525, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:46.92375849Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:03:50.051561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524246, - "rtt_ms": 1.524246, + "rtt_ns": 1565041, + "rtt_ms": 1.565041, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "197", - "timestamp": "2025-11-27T01:23:46.924070569Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.051577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569016, - "rtt_ms": 1.569016, + "rtt_ns": 1222792, + "rtt_ms": 1.222792, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.924080569Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2400323, - "rtt_ms": 2.400323, - "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:46.924291328Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1959234, - "rtt_ms": 1.959234, - "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "555", - "timestamp": "2025-11-27T01:23:46.924293158Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:03:50.051914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2363883, - "rtt_ms": 2.363883, + "rtt_ns": 1950125, + "rtt_ms": 1.950125, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.924295378Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:50.051915-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126574, - "rtt_ms": 2.126574, + "rtt_ns": 2541333, + "rtt_ms": 2.541333, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:46.924317948Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:50.051933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173707, - "rtt_ms": 1.173707, + "rtt_ns": 1401250, + "rtt_ms": 1.40125, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:46.924686947Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:03:50.052076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508745, - "rtt_ms": 1.508745, + "rtt_ns": 1191292, + "rtt_ms": 1.191292, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:46.924868726Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:50.052201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500575, - "rtt_ms": 1.500575, + "rtt_ns": 1542167, + "rtt_ms": 1.542167, "checkpoint": 0, "vertex_from": "166", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:46.924908866Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1242896, - "rtt_ms": 1.242896, - "checkpoint": 0, - "vertex_from": "166", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:46.925325515Z" + "timestamp": "2025-11-27T04:03:50.052248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140907, - "rtt_ms": 1.140907, + "rtt_ns": 1612083, + "rtt_ms": 1.612083, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "236", - "timestamp": "2025-11-27T01:23:46.925439145Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:50.052543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166756, - "rtt_ms": 1.166756, + "rtt_ns": 1556417, + "rtt_ms": 1.556417, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.925488364Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:50.05255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500995, - "rtt_ms": 1.500995, + "rtt_ns": 1387250, + "rtt_ms": 1.38725, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:46.925573324Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:50.052949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321736, - "rtt_ms": 1.321736, + "rtt_ns": 1620042, + "rtt_ms": 1.620042, "checkpoint": 0, "vertex_from": "166", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.925614824Z" + "timestamp": "2025-11-27T04:03:50.053198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883554, - "rtt_ms": 1.883554, + "rtt_ns": 1376709, + "rtt_ms": 1.376709, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:46.925644064Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:03:50.053294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440056, - "rtt_ms": 1.440056, + "rtt_ns": 1398833, + "rtt_ms": 1.398833, "checkpoint": 0, "vertex_from": "166", "vertex_to": "709", - "timestamp": "2025-11-27T01:23:46.925734574Z" + "timestamp": "2025-11-27T04:03:50.053314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140776, - "rtt_ms": 1.140776, + "rtt_ns": 1326833, + "rtt_ms": 1.326833, "checkpoint": 0, "vertex_from": "166", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.925830393Z" + "timestamp": "2025-11-27T04:03:50.053404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539146, - "rtt_ms": 1.539146, + "rtt_ns": 1472708, + "rtt_ms": 1.472708, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:46.926409162Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.053406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573965, - "rtt_ms": 1.573965, + "rtt_ns": 1532625, + "rtt_ms": 1.532625, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:46.92690142Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.053735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343026, - "rtt_ms": 1.343026, + "rtt_ns": 1603250, + "rtt_ms": 1.60325, "checkpoint": 0, - "vertex_from": "168", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:46.92707932Z" + "vertex_from": "166", + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.053853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628266, - "rtt_ms": 1.628266, + "rtt_ns": 1586208, + "rtt_ms": 1.586208, "checkpoint": 0, "vertex_from": "167", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.9271184Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:50.054137-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277123, - "rtt_ms": 2.277123, + "rtt_ns": 1697125, + "rtt_ms": 1.697125, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:46.927187279Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:50.054241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616655, - "rtt_ms": 1.616655, + "rtt_ns": 1504833, + "rtt_ms": 1.504833, "checkpoint": 0, - "vertex_from": "168", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:46.927262069Z" + "vertex_from": "167", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.054455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850314, - "rtt_ms": 1.850314, + "rtt_ns": 1501875, + "rtt_ms": 1.501875, "checkpoint": 0, "vertex_from": "167", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:46.927293779Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:50.054701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737015, - "rtt_ms": 1.737015, + "rtt_ns": 1313500, + "rtt_ms": 1.3135, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:46.927354069Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.054721-08:00" }, { "operation": "add_edge", - "rtt_ns": 2445583, - "rtt_ms": 2.445583, + "rtt_ns": 1633084, + "rtt_ms": 1.633084, "checkpoint": 0, - "vertex_from": "167", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:46.928020757Z" + "vertex_from": "168", + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:50.054928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720805, - "rtt_ms": 1.720805, + "rtt_ns": 1649417, + "rtt_ms": 1.649417, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.928131357Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:50.054964-08:00" }, { "operation": "add_edge", - "rtt_ns": 2370783, - "rtt_ms": 2.370783, + "rtt_ns": 1374084, + "rtt_ms": 1.374084, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.928202276Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.055228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495576, - "rtt_ms": 1.495576, + "rtt_ns": 1536750, + "rtt_ms": 1.53675, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.928399426Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.055272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428106, - "rtt_ms": 1.428106, + "rtt_ns": 1951375, + "rtt_ms": 1.951375, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.928508216Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:50.055358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423976, - "rtt_ms": 1.423976, + "rtt_ns": 1280958, + "rtt_ms": 1.280958, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.928543465Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:50.055738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669915, - "rtt_ms": 1.669915, + "rtt_ns": 1621375, + "rtt_ms": 1.621375, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:46.928932694Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.055864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767795, - "rtt_ms": 1.767795, + "rtt_ns": 1395875, + "rtt_ms": 1.395875, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:46.928956334Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.056098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214934, - "rtt_ms": 2.214934, + "rtt_ns": 1979500, + "rtt_ms": 1.9795, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.929569873Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.056118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651455, - "rtt_ms": 1.651455, + "rtt_ns": 1600000, + "rtt_ms": 1.6, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.929673782Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:03:50.056322-08:00" }, { "operation": "add_edge", - "rtt_ns": 2390763, - "rtt_ms": 2.390763, + "rtt_ns": 1408917, + "rtt_ms": 1.408917, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "195", - "timestamp": "2025-11-27T01:23:46.929685412Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.056338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589685, - "rtt_ms": 1.589685, + "rtt_ns": 1484625, + "rtt_ms": 1.484625, "checkpoint": 0, "vertex_from": "168", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.929722162Z" + "timestamp": "2025-11-27T04:03:50.056713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535346, - "rtt_ms": 1.535346, + "rtt_ns": 1764667, + "rtt_ms": 1.764667, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.929738852Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.056731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257687, - "rtt_ms": 1.257687, + "rtt_ns": 1473333, + "rtt_ms": 1.473333, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:46.929802002Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.056748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540745, - "rtt_ms": 1.540745, + "rtt_ns": 1626125, + "rtt_ms": 1.626125, "checkpoint": 0, "vertex_from": "168", "vertex_to": "372", - "timestamp": "2025-11-27T01:23:46.929941301Z" + "timestamp": "2025-11-27T04:03:50.056986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005297, - "rtt_ms": 1.005297, + "rtt_ns": 1367667, + "rtt_ms": 1.367667, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:46.929962791Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.057107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489875, - "rtt_ms": 1.489875, + "rtt_ns": 1358666, + "rtt_ms": 1.358666, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.929998851Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.057225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076897, - "rtt_ms": 1.076897, + "rtt_ns": 1578625, + "rtt_ms": 1.578625, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.930010831Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.057901-08:00" }, { "operation": "add_edge", - "rtt_ns": 827967, - "rtt_ms": 0.827967, + "rtt_ns": 1579375, + "rtt_ms": 1.579375, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:46.93039934Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.057918-08:00" }, { "operation": "add_edge", - "rtt_ns": 751248, - "rtt_ms": 0.751248, + "rtt_ns": 1816292, + "rtt_ms": 1.816292, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.93043756Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:50.057934-08:00" }, { "operation": "add_edge", - "rtt_ns": 760568, - "rtt_ms": 0.760568, + "rtt_ns": 1852666, + "rtt_ms": 1.852666, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.93050023Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.057952-08:00" }, { "operation": "add_edge", - "rtt_ns": 899858, - "rtt_ms": 0.899858, + "rtt_ns": 1391292, + "rtt_ms": 1.391292, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:46.93057442Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.058142-08:00" }, { "operation": "add_edge", - "rtt_ns": 836498, - "rtt_ms": 0.836498, + "rtt_ns": 1480416, + "rtt_ms": 1.480416, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:46.93063928Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.058212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005587, - "rtt_ms": 1.005587, + "rtt_ns": 1498750, + "rtt_ms": 1.49875, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.930728939Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:50.058213-08:00" }, { "operation": "add_edge", - "rtt_ns": 742978, - "rtt_ms": 0.742978, + "rtt_ns": 1239208, + "rtt_ms": 1.239208, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.930754639Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.058226-08:00" }, { "operation": "add_edge", - "rtt_ns": 842568, - "rtt_ms": 0.842568, + "rtt_ns": 2021666, + "rtt_ms": 2.021666, "checkpoint": 0, "vertex_from": "168", "vertex_to": "457", - "timestamp": "2025-11-27T01:23:46.930784729Z" + "timestamp": "2025-11-27T04:03:50.059129-08:00" }, { "operation": "add_edge", - "rtt_ns": 888898, - "rtt_ms": 0.888898, + "rtt_ns": 1921250, + "rtt_ms": 1.92125, "checkpoint": 0, "vertex_from": "168", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:46.930852789Z" + "timestamp": "2025-11-27T04:03:50.059147-08:00" }, { "operation": "add_edge", - "rtt_ns": 937868, - "rtt_ms": 0.937868, + "rtt_ns": 1324833, + "rtt_ms": 1.324833, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:46.930937219Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.059468-08:00" }, { "operation": "add_edge", - "rtt_ns": 662348, - "rtt_ms": 0.662348, + "rtt_ns": 1408625, + "rtt_ms": 1.408625, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:46.931068128Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:50.059623-08:00" }, { "operation": "add_edge", - "rtt_ns": 672238, - "rtt_ms": 0.672238, + "rtt_ns": 2179625, + "rtt_ms": 2.179625, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:46.931110798Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:50.060082-08:00" }, { "operation": "add_edge", - "rtt_ns": 567638, - "rtt_ms": 0.567638, + "rtt_ns": 2184833, + "rtt_ms": 2.184833, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:46.931143028Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.060103-08:00" }, { "operation": "add_edge", - "rtt_ns": 729478, - "rtt_ms": 0.729478, + "rtt_ns": 2184708, + "rtt_ms": 2.184708, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.931230548Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:50.06012-08:00" }, { "operation": "add_edge", - "rtt_ns": 622248, - "rtt_ms": 0.622248, + "rtt_ns": 2183917, + "rtt_ms": 2.183917, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:46.931262278Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.060136-08:00" }, { "operation": "add_edge", - "rtt_ns": 949847, - "rtt_ms": 0.949847, + "rtt_ns": 2107084, + "rtt_ms": 2.107084, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:46.931735376Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.06032-08:00" }, { "operation": "add_edge", - "rtt_ns": 943717, - "rtt_ms": 0.943717, + "rtt_ns": 1634625, + "rtt_ms": 1.634625, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:46.931797386Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:50.060782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112597, - "rtt_ms": 1.112597, + "rtt_ns": 2663250, + "rtt_ms": 2.66325, "checkpoint": 0, "vertex_from": "168", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.931842516Z" + "timestamp": "2025-11-27T04:03:50.06089-08:00" }, { "operation": "add_edge", - "rtt_ns": 834268, - "rtt_ms": 0.834268, + "rtt_ns": 1477333, + "rtt_ms": 1.477333, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:46.931903226Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.060949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192017, - "rtt_ms": 1.192017, + "rtt_ns": 1966458, + "rtt_ms": 1.966458, "checkpoint": 0, "vertex_from": "168", "vertex_to": "197", - "timestamp": "2025-11-27T01:23:46.931948026Z" + "timestamp": "2025-11-27T04:03:50.061097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093887, - "rtt_ms": 1.093887, + "rtt_ns": 1686375, + "rtt_ms": 1.686375, "checkpoint": 0, "vertex_from": "168", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.932031856Z" + "timestamp": "2025-11-27T04:03:50.06131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212977, - "rtt_ms": 1.212977, + "rtt_ns": 1703833, + "rtt_ms": 1.703833, "checkpoint": 0, "vertex_from": "168", "vertex_to": "224", - "timestamp": "2025-11-27T01:23:46.932324995Z" + "timestamp": "2025-11-27T04:03:50.061808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081017, - "rtt_ms": 1.081017, + "rtt_ns": 1511750, + "rtt_ms": 1.51175, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.932880653Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:03:50.061833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690945, - "rtt_ms": 1.690945, + "rtt_ns": 1856333, + "rtt_ms": 1.856333, "checkpoint": 0, "vertex_from": "168", "vertex_to": "169", - "timestamp": "2025-11-27T01:23:46.932922563Z" + "timestamp": "2025-11-27T04:03:50.061993-08:00" }, { "operation": "add_edge", - "rtt_ns": 892207, - "rtt_ms": 0.892207, + "rtt_ns": 1957125, + "rtt_ms": 1.957125, "checkpoint": 0, - "vertex_from": "169", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.932925363Z" + "vertex_from": "168", + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.06204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806055, - "rtt_ms": 1.806055, + "rtt_ns": 1174625, + "rtt_ms": 1.174625, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:46.932950223Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.062065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708735, - "rtt_ms": 1.708735, + "rtt_ns": 1959792, + "rtt_ms": 1.959792, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "918", - "timestamp": "2025-11-27T01:23:46.932971873Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:50.062081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286456, - "rtt_ms": 1.286456, + "rtt_ns": 1301000, + "rtt_ms": 1.301, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.933191152Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:50.062084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259476, - "rtt_ms": 1.259476, + "rtt_ns": 1511417, + "rtt_ms": 1.511417, "checkpoint": 0, - "vertex_from": "169", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:46.933210062Z" + "vertex_from": "168", + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:50.062465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439006, - "rtt_ms": 1.439006, + "rtt_ns": 1389333, + "rtt_ms": 1.389333, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:46.933282632Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.062487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550686, - "rtt_ms": 1.550686, + "rtt_ns": 1238583, + "rtt_ms": 1.238583, "checkpoint": 0, - "vertex_from": "168", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:46.933287422Z" + "vertex_from": "169", + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.06255-08:00" }, { "operation": "add_edge", - "rtt_ns": 593518, - "rtt_ms": 0.593518, + "rtt_ns": 1210417, + "rtt_ms": 1.210417, "checkpoint": 0, "vertex_from": "169", "vertex_to": "643", - "timestamp": "2025-11-27T01:23:46.933476581Z" + "timestamp": "2025-11-27T04:03:50.063205-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1646792, + "rtt_ms": 1.646792, + "checkpoint": 0, + "vertex_from": "169", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.063457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177946, - "rtt_ms": 1.177946, + "rtt_ns": 1659375, + "rtt_ms": 1.659375, "checkpoint": 0, "vertex_from": "169", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.933504071Z" + "timestamp": "2025-11-27T04:03:50.063494-08:00" }, { "operation": "add_edge", - "rtt_ns": 718468, - "rtt_ms": 0.718468, + "rtt_ns": 1666584, + "rtt_ms": 1.666584, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.933644981Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:50.063708-08:00" }, { "operation": "add_edge", - "rtt_ns": 715468, - "rtt_ms": 0.715468, + "rtt_ns": 1663916, + "rtt_ms": 1.663916, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.933666751Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.06373-08:00" }, { "operation": "add_edge", - "rtt_ns": 855137, - "rtt_ms": 0.855137, + "rtt_ns": 1664584, + "rtt_ms": 1.664584, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:46.93377889Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.063747-08:00" }, { "operation": "add_edge", - "rtt_ns": 834797, - "rtt_ms": 0.834797, + "rtt_ns": 1679417, + "rtt_ms": 1.679417, "checkpoint": 0, "vertex_from": "169", "vertex_to": "212", - "timestamp": "2025-11-27T01:23:46.93380778Z" + "timestamp": "2025-11-27T04:03:50.063764-08:00" }, { "operation": "add_edge", - "rtt_ns": 694418, - "rtt_ms": 0.694418, + "rtt_ns": 1623125, + "rtt_ms": 1.623125, "checkpoint": 0, "vertex_from": "169", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.9338863Z" + "timestamp": "2025-11-27T04:03:50.064089-08:00" }, { "operation": "add_edge", - "rtt_ns": 767708, - "rtt_ms": 0.767708, + "rtt_ns": 1631791, + "rtt_ms": 1.631791, "checkpoint": 0, "vertex_from": "169", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.93397887Z" + "timestamp": "2025-11-27T04:03:50.064119-08:00" }, { "operation": "add_edge", - "rtt_ns": 726498, - "rtt_ms": 0.726498, + "rtt_ns": 1596167, + "rtt_ms": 1.596167, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:46.93401679Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.064149-08:00" }, { "operation": "add_edge", - "rtt_ns": 773938, - "rtt_ms": 0.773938, + "rtt_ns": 1076125, + "rtt_ms": 1.076125, "checkpoint": 0, - "vertex_from": "169", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.93405783Z" + "vertex_from": "170", + "vertex_to": "206", + "timestamp": "2025-11-27T04:03:50.064535-08:00" }, { "operation": "add_edge", - "rtt_ns": 694478, - "rtt_ms": 0.694478, + "rtt_ns": 1439750, + "rtt_ms": 1.43975, "checkpoint": 0, - "vertex_from": "170", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.934203159Z" + "vertex_from": "169", + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:50.064646-08:00" }, { "operation": "add_edge", - "rtt_ns": 746308, - "rtt_ms": 0.746308, + "rtt_ns": 1688042, + "rtt_ms": 1.688042, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "206", - "timestamp": "2025-11-27T01:23:46.934224969Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.065184-08:00" }, { "operation": "add_edge", - "rtt_ns": 651188, - "rtt_ms": 0.651188, + "rtt_ns": 1800125, + "rtt_ms": 1.800125, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:46.934319419Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:50.06551-08:00" }, { "operation": "add_edge", - "rtt_ns": 767067, - "rtt_ms": 0.767067, + "rtt_ns": 1837917, + "rtt_ms": 1.837917, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:46.934413428Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:50.065569-08:00" }, { "operation": "add_edge", - "rtt_ns": 656988, - "rtt_ms": 0.656988, + "rtt_ns": 2054125, + "rtt_ms": 2.054125, "checkpoint": 0, "vertex_from": "170", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.934437738Z" + "timestamp": "2025-11-27T04:03:50.065802-08:00" }, { "operation": "add_edge", - "rtt_ns": 715908, - "rtt_ms": 0.715908, + "rtt_ns": 2037333, + "rtt_ms": 2.037333, "checkpoint": 0, "vertex_from": "170", "vertex_to": "724", - "timestamp": "2025-11-27T01:23:46.934524848Z" + "timestamp": "2025-11-27T04:03:50.065803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175857, - "rtt_ms": 1.175857, + "rtt_ns": 1722958, + "rtt_ms": 1.722958, "checkpoint": 0, "vertex_from": "170", "vertex_to": "854", - "timestamp": "2025-11-27T01:23:46.935063477Z" + "timestamp": "2025-11-27T04:03:50.065813-08:00" }, { "operation": "add_edge", - "rtt_ns": 909077, - "rtt_ms": 0.909077, + "rtt_ns": 1168375, + "rtt_ms": 1.168375, "checkpoint": 0, "vertex_from": "170", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:46.935113446Z" + "timestamp": "2025-11-27T04:03:50.065815-08:00" }, { "operation": "add_edge", - "rtt_ns": 939317, - "rtt_ms": 0.939317, + "rtt_ns": 1284833, + "rtt_ms": 1.284833, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.935166226Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.065821-08:00" }, { "operation": "add_edge", - "rtt_ns": 854477, - "rtt_ms": 0.854477, + "rtt_ns": 1710541, + "rtt_ms": 1.710541, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:46.935175486Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.06583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163086, - "rtt_ms": 1.163086, + "rtt_ns": 1719125, + "rtt_ms": 1.719125, "checkpoint": 0, "vertex_from": "170", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.935183026Z" + "timestamp": "2025-11-27T04:03:50.06587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146516, - "rtt_ms": 1.146516, + "rtt_ns": 1411041, + "rtt_ms": 1.411041, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.935205806Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.066596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241426, - "rtt_ms": 1.241426, + "rtt_ns": 1244417, + "rtt_ms": 1.244417, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.935221046Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:50.066757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087997, - "rtt_ms": 1.087997, + "rtt_ns": 1299375, + "rtt_ms": 1.299375, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:46.935502225Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.067117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559256, - "rtt_ms": 1.559256, + "rtt_ns": 1563125, + "rtt_ms": 1.563125, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:46.935997874Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:50.067133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022827, - "rtt_ms": 1.022827, + "rtt_ns": 1277917, + "rtt_ms": 1.277917, "checkpoint": 0, - "vertex_from": "170", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:46.936190913Z" + "vertex_from": "171", + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:50.067149-08:00" }, { "operation": "add_edge", - "rtt_ns": 992247, - "rtt_ms": 0.992247, + "rtt_ns": 1348125, + "rtt_ms": 1.348125, "checkpoint": 0, "vertex_from": "171", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:46.936214953Z" + "vertex_to": "884", + "timestamp": "2025-11-27T04:03:50.067179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695345, - "rtt_ms": 1.695345, + "rtt_ns": 1489166, + "rtt_ms": 1.489166, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:46.936221263Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.067293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123207, - "rtt_ms": 1.123207, + "rtt_ns": 1546292, + "rtt_ms": 1.546292, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.936238033Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1036437, - "rtt_ms": 1.036437, - "checkpoint": 0, - "vertex_from": "171", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:46.936244253Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:50.067368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080397, - "rtt_ms": 1.080397, + "rtt_ns": 1694792, + "rtt_ms": 1.694792, "checkpoint": 0, - "vertex_from": "171", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:46.936266793Z" + "vertex_from": "170", + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:50.067499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203786, - "rtt_ms": 1.203786, + "rtt_ns": 1702667, + "rtt_ms": 1.702667, "checkpoint": 0, "vertex_from": "170", "vertex_to": "194", - "timestamp": "2025-11-27T01:23:46.936268803Z" + "timestamp": "2025-11-27T04:03:50.067517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108737, - "rtt_ms": 1.108737, + "rtt_ns": 1233458, + "rtt_ms": 1.233458, "checkpoint": 0, "vertex_from": "171", - "vertex_to": "884", - "timestamp": "2025-11-27T01:23:46.936286383Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.06783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153017, - "rtt_ms": 1.153017, + "rtt_ns": 1171375, + "rtt_ms": 1.171375, "checkpoint": 0, - "vertex_from": "172", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.937152201Z" + "vertex_from": "171", + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.068289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674795, - "rtt_ms": 1.674795, + "rtt_ns": 1554875, + "rtt_ms": 1.554875, "checkpoint": 0, "vertex_from": "171", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.93717874Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.068312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623946, - "rtt_ms": 1.623946, + "rtt_ns": 1175125, + "rtt_ms": 1.175125, "checkpoint": 0, "vertex_from": "172", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.937816319Z" + "timestamp": "2025-11-27T04:03:50.068325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577806, - "rtt_ms": 1.577806, + "rtt_ns": 1315958, + "rtt_ms": 1.315958, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:46.937848249Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.068496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587956, - "rtt_ms": 1.587956, + "rtt_ns": 1373708, + "rtt_ms": 1.373708, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "496", - "timestamp": "2025-11-27T01:23:46.937856609Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.068508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612606, - "rtt_ms": 1.612606, + "rtt_ns": 1289542, + "rtt_ms": 1.289542, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.937859919Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:03:50.068807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580876, - "rtt_ms": 1.580876, + "rtt_ns": 1533000, + "rtt_ms": 1.533, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:46.937869939Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.068828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688785, - "rtt_ms": 1.688785, + "rtt_ns": 1530459, + "rtt_ms": 1.530459, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:46.937905108Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.06903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682945, - "rtt_ms": 1.682945, + "rtt_ns": 1276250, + "rtt_ms": 1.27625, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.937907468Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:50.069109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733785, - "rtt_ms": 1.733785, + "rtt_ns": 1061750, + "rtt_ms": 1.06175, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "696", - "timestamp": "2025-11-27T01:23:46.937973238Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:50.069352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448055, - "rtt_ms": 1.448055, + "rtt_ns": 1709375, + "rtt_ms": 1.709375, "checkpoint": 0, - "vertex_from": "172", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.938602096Z" + "vertex_from": "173", + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:50.070517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959075, - "rtt_ms": 1.959075, + "rtt_ns": 2209000, + "rtt_ms": 2.209, "checkpoint": 0, "vertex_from": "172", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:46.939139635Z" + "timestamp": "2025-11-27T04:03:50.070534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402756, - "rtt_ms": 1.402756, - "checkpoint": 0, - "vertex_from": "173", - "vertex_to": "176", - "timestamp": "2025-11-27T01:23:46.939221375Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1992575, - "rtt_ms": 1.992575, + "rtt_ns": 1720709, + "rtt_ms": 1.720709, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.939899613Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.070549-08:00" }, { "operation": "add_edge", - "rtt_ns": 762018, - "rtt_ms": 0.762018, + "rtt_ns": 2067125, + "rtt_ms": 2.067125, "checkpoint": 0, - "vertex_from": "174", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:46.939903133Z" + "vertex_from": "173", + "vertex_to": "176", + "timestamp": "2025-11-27T04:03:50.070564-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071794, - "rtt_ms": 2.071794, + "rtt_ns": 2072333, + "rtt_ms": 2.072333, "checkpoint": 0, "vertex_from": "173", "vertex_to": "708", - "timestamp": "2025-11-27T01:23:46.939922133Z" + "timestamp": "2025-11-27T04:03:50.070581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943385, - "rtt_ms": 1.943385, + "rtt_ns": 3535000, + "rtt_ms": 3.535, "checkpoint": 0, - "vertex_from": "174", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:46.939924353Z" + "vertex_from": "172", + "vertex_to": "696", + "timestamp": "2025-11-27T04:03:50.070904-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034545, - "rtt_ms": 2.034545, + "rtt_ns": 1884125, + "rtt_ms": 1.884125, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.939943393Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.070915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341797, - "rtt_ms": 1.341797, + "rtt_ns": 1814916, + "rtt_ms": 1.814916, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:46.939947153Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.070935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2090604, - "rtt_ms": 2.090604, + "rtt_ns": 1627667, + "rtt_ms": 1.627667, "checkpoint": 0, - "vertex_from": "173", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:46.939948533Z" + "vertex_from": "174", + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.07098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112774, - "rtt_ms": 2.112774, + "rtt_ns": 2857166, + "rtt_ms": 2.857166, "checkpoint": 0, - "vertex_from": "174", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:46.939975483Z" + "vertex_from": "172", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.07117-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103894, - "rtt_ms": 2.103894, + "rtt_ns": 1128333, + "rtt_ms": 1.128333, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:46.939976603Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:50.072044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451855, - "rtt_ms": 1.451855, + "rtt_ns": 1525833, + "rtt_ms": 1.525833, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.94067452Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:50.072061-08:00" }, { "operation": "add_edge", - "rtt_ns": 962247, - "rtt_ms": 0.962247, + "rtt_ns": 1558000, + "rtt_ms": 1.558, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:46.94088624Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:50.072076-08:00" }, { "operation": "add_edge", - "rtt_ns": 994367, - "rtt_ms": 0.994367, + "rtt_ns": 1190500, + "rtt_ms": 1.1905, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.94092078Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.072096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348326, - "rtt_ms": 1.348326, + "rtt_ns": 1044667, + "rtt_ms": 1.044667, "checkpoint": 0, "vertex_from": "175", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:46.941296899Z" + "timestamp": "2025-11-27T04:03:50.072217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455905, - "rtt_ms": 1.455905, + "rtt_ns": 1409417, + "rtt_ms": 1.409417, "checkpoint": 0, - "vertex_from": "176", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:46.941407738Z" + "vertex_from": "174", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.072345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491385, - "rtt_ms": 1.491385, + "rtt_ns": 1790209, + "rtt_ms": 1.790209, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:46.941437388Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:03:50.072372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472275, - "rtt_ms": 1.472275, + "rtt_ns": 1463125, + "rtt_ms": 1.463125, "checkpoint": 0, - "vertex_from": "176", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:46.941451148Z" + "vertex_from": "174", + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.072447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574265, - "rtt_ms": 1.574265, + "rtt_ns": 1950500, + "rtt_ms": 1.9505, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:46.941477438Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.072501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573575, - "rtt_ms": 1.573575, + "rtt_ns": 1966791, + "rtt_ms": 1.966791, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:46.941479378Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.072532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540345, - "rtt_ms": 1.540345, + "rtt_ns": 1399875, + "rtt_ms": 1.399875, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.941517778Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.073445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207807, - "rtt_ms": 1.207807, + "rtt_ns": 1385917, + "rtt_ms": 1.385917, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:46.941884067Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.073463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038757, - "rtt_ms": 1.038757, + "rtt_ns": 1496917, + "rtt_ms": 1.496917, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:46.941927127Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.073559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042227, - "rtt_ms": 1.042227, + "rtt_ns": 1229333, + "rtt_ms": 1.229333, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:46.941964017Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:50.073677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081786, - "rtt_ms": 1.081786, + "rtt_ns": 1176334, + "rtt_ms": 1.176334, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:46.942379615Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:03:50.073678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099707, - "rtt_ms": 1.099707, + "rtt_ns": 1583041, + "rtt_ms": 1.583041, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:46.942540455Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.07368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360056, - "rtt_ms": 1.360056, + "rtt_ns": 1324583, + "rtt_ms": 1.324583, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:46.942769394Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.073697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796535, - "rtt_ms": 1.796535, + "rtt_ns": 1501125, + "rtt_ms": 1.501125, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:46.943275373Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:03:50.073719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889385, - "rtt_ms": 1.889385, + "rtt_ns": 1191333, + "rtt_ms": 1.191333, "checkpoint": 0, "vertex_from": "176", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:46.943341693Z" + "timestamp": "2025-11-27T04:03:50.073724-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030874, - "rtt_ms": 2.030874, + "rtt_ns": 1403792, + "rtt_ms": 1.403792, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:46.943512312Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.073749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643705, - "rtt_ms": 1.643705, + "rtt_ns": 1211125, + "rtt_ms": 1.211125, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:46.943533112Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.074773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613105, - "rtt_ms": 1.613105, + "rtt_ns": 1310333, + "rtt_ms": 1.310333, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:46.943541462Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:50.074774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024044, - "rtt_ms": 2.024044, + "rtt_ns": 1266541, + "rtt_ms": 1.266541, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.943543582Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.075016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441776, - "rtt_ms": 1.441776, + "rtt_ns": 1593958, + "rtt_ms": 1.593958, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:46.943823301Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.07504-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379293, - "rtt_ms": 2.379293, + "rtt_ns": 1297209, + "rtt_ms": 1.297209, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.94434395Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:50.075044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878884, - "rtt_ms": 1.878884, + "rtt_ns": 1432250, + "rtt_ms": 1.43225, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.944421509Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.075113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925175, - "rtt_ms": 1.925175, + "rtt_ns": 1554917, + "rtt_ms": 1.554917, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:46.944696749Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:50.075233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162367, - "rtt_ms": 1.162367, + "rtt_ns": 1518542, + "rtt_ms": 1.518542, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.944707499Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.075249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479795, - "rtt_ms": 1.479795, + "rtt_ns": 1744250, + "rtt_ms": 1.74425, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:46.944824128Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.075442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574875, - "rtt_ms": 1.574875, + "rtt_ns": 1779333, + "rtt_ms": 1.779333, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.944851588Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.075457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424086, - "rtt_ms": 1.424086, + "rtt_ns": 877208, + "rtt_ms": 0.877208, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:46.944937658Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.075918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429376, - "rtt_ms": 1.429376, + "rtt_ns": 1155667, + "rtt_ms": 1.155667, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.944963738Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:50.07639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454886, - "rtt_ms": 1.454886, + "rtt_ns": 1296375, + "rtt_ms": 1.296375, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.944998518Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:50.07641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232247, - "rtt_ms": 1.232247, + "rtt_ns": 1200292, + "rtt_ms": 1.200292, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:46.945057678Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:50.076451-08:00" }, { "operation": "add_edge", - "rtt_ns": 657129, - "rtt_ms": 0.657129, + "rtt_ns": 1518958, + "rtt_ms": 1.518958, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:46.945079518Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.076537-08:00" }, { "operation": "add_edge", - "rtt_ns": 735228, - "rtt_ms": 0.735228, + "rtt_ns": 1812709, + "rtt_ms": 1.812709, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:46.945080078Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.076588-08:00" }, { "operation": "add_edge", - "rtt_ns": 592348, - "rtt_ms": 0.592348, + "rtt_ns": 1611083, + "rtt_ms": 1.611083, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:46.945290637Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.076656-08:00" }, { "operation": "add_edge", - "rtt_ns": 611068, - "rtt_ms": 0.611068, + "rtt_ns": 2137833, + "rtt_ms": 2.137833, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:46.945319997Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:50.076914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658456, - "rtt_ms": 1.658456, + "rtt_ns": 1592500, + "rtt_ms": 1.5925, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "201", - "timestamp": "2025-11-27T01:23:46.946511184Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.077035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572665, - "rtt_ms": 1.572665, + "rtt_ns": 1212250, + "rtt_ms": 1.21225, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.946653993Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.077131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753045, - "rtt_ms": 1.753045, + "rtt_ns": 1731125, + "rtt_ms": 1.731125, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:46.946717723Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:50.077189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783575, - "rtt_ms": 1.783575, + "rtt_ns": 961208, + "rtt_ms": 0.961208, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.946722593Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:03:50.077352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913855, - "rtt_ms": 1.913855, + "rtt_ns": 1112042, + "rtt_ms": 1.112042, "checkpoint": 0, - "vertex_from": "176", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.946739043Z" + "vertex_from": "177", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.078465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830375, - "rtt_ms": 1.830375, + "rtt_ns": 1291334, + "rtt_ms": 1.291334, + "checkpoint": 0, + "vertex_from": "177", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.078482-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1905292, + "rtt_ms": 1.905292, "checkpoint": 0, "vertex_from": "176", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.946889053Z" + "timestamp": "2025-11-27T04:03:50.078496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855454, - "rtt_ms": 1.855454, + "rtt_ns": 2060375, + "rtt_ms": 2.060375, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.946937372Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:50.078512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948254, - "rtt_ms": 1.948254, + "rtt_ns": 1567208, + "rtt_ms": 1.567208, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:46.946948162Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:03:50.078604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148974, - "rtt_ms": 2.148974, + "rtt_ns": 1495834, + "rtt_ms": 1.495834, "checkpoint": 0, "vertex_from": "177", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.947471901Z" + "timestamp": "2025-11-27T04:03:50.078628-08:00" }, { "operation": "add_edge", - "rtt_ns": 842788, - "rtt_ms": 0.842788, + "rtt_ns": 2104750, + "rtt_ms": 2.10475, "checkpoint": 0, - "vertex_from": "177", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.947497761Z" + "vertex_from": "176", + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.078642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2211634, - "rtt_ms": 2.211634, + "rtt_ns": 2250208, + "rtt_ms": 2.250208, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "976", - "timestamp": "2025-11-27T01:23:46.947503641Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:50.078661-08:00" }, { "operation": "add_edge", - "rtt_ns": 994967, - "rtt_ms": 0.994967, + "rtt_ns": 3140250, + "rtt_ms": 3.14025, "checkpoint": 0, - "vertex_from": "177", + "vertex_from": "176", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.947507261Z" + "timestamp": "2025-11-27T04:03:50.079797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380446, - "rtt_ms": 1.380446, + "rtt_ns": 1764666, + "rtt_ms": 1.764666, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.948100599Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.080394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648425, - "rtt_ms": 1.648425, + "rtt_ns": 1993625, + "rtt_ms": 1.993625, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.948388388Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.08046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502435, - "rtt_ms": 1.502435, + "rtt_ns": 3649833, + "rtt_ms": 3.649833, "checkpoint": 0, - "vertex_from": "177", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:46.948393128Z" + "vertex_from": "176", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.080566-08:00" }, { "operation": "add_edge", - "rtt_ns": 939877, - "rtt_ms": 0.939877, + "rtt_ns": 1925667, + "rtt_ms": 1.925667, "checkpoint": 0, - "vertex_from": "177", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:46.948414238Z" + "vertex_from": "178", + "vertex_to": "910", + "timestamp": "2025-11-27T04:03:50.080587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498916, - "rtt_ms": 1.498916, + "rtt_ns": 2407625, + "rtt_ms": 2.407625, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.948448358Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.080905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516906, - "rtt_ms": 1.516906, + "rtt_ns": 2308541, + "rtt_ms": 2.308541, "checkpoint": 0, "vertex_from": "177", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.948455238Z" + "timestamp": "2025-11-27T04:03:50.080914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763895, - "rtt_ms": 1.763895, + "rtt_ns": 2293167, + "rtt_ms": 2.293167, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:46.948490378Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:50.080936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155226, - "rtt_ms": 1.155226, + "rtt_ns": 2442000, + "rtt_ms": 2.442, "checkpoint": 0, - "vertex_from": "178", - "vertex_to": "910", - "timestamp": "2025-11-27T01:23:46.948655897Z" + "vertex_from": "177", + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:50.080954-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2582958, + "rtt_ms": 2.582958, + "checkpoint": 0, + "vertex_from": "177", + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:50.081065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095097, - "rtt_ms": 1.095097, + "rtt_ns": 1370500, + "rtt_ms": 1.3705, "checkpoint": 0, "vertex_from": "178", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:46.949197666Z" + "timestamp": "2025-11-27T04:03:50.081831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782835, - "rtt_ms": 1.782835, + "rtt_ns": 2048625, + "rtt_ms": 2.048625, "checkpoint": 0, "vertex_from": "178", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:46.949288176Z" + "timestamp": "2025-11-27T04:03:50.081847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783285, - "rtt_ms": 1.783285, + "rtt_ns": 1383458, + "rtt_ms": 1.383458, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.949292476Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.081951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150287, - "rtt_ms": 1.150287, + "rtt_ns": 1611417, + "rtt_ms": 1.611417, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:46.949544905Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.082008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180127, - "rtt_ms": 1.180127, + "rtt_ns": 1347375, + "rtt_ms": 1.347375, "checkpoint": 0, "vertex_from": "178", "vertex_to": "562", - "timestamp": "2025-11-27T01:23:46.949596835Z" + "timestamp": "2025-11-27T04:03:50.082254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245056, - "rtt_ms": 1.245056, + "rtt_ns": 1314833, + "rtt_ms": 1.314833, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.949634344Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.08227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218416, - "rtt_ms": 1.218416, + "rtt_ns": 1696000, + "rtt_ms": 1.696, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.949667394Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:50.082284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045317, - "rtt_ms": 1.045317, + "rtt_ns": 1385791, + "rtt_ms": 1.385791, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:46.949703504Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.082301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234456, - "rtt_ms": 1.234456, + "rtt_ns": 1391875, + "rtt_ms": 1.391875, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.949725534Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:50.082458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280716, - "rtt_ms": 1.280716, + "rtt_ns": 1927000, + "rtt_ms": 1.927, "checkpoint": 0, "vertex_from": "178", "vertex_to": "197", - "timestamp": "2025-11-27T01:23:46.949737054Z" + "timestamp": "2025-11-27T04:03:50.082864-08:00" }, { "operation": "add_edge", - "rtt_ns": 601018, - "rtt_ms": 0.601018, + "rtt_ns": 1262875, + "rtt_ms": 1.262875, "checkpoint": 0, - "vertex_from": "178", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.949799954Z" + "vertex_from": "179", + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.083272-08:00" }, { "operation": "add_edge", - "rtt_ns": 534618, - "rtt_ms": 0.534618, + "rtt_ns": 1535292, + "rtt_ms": 1.535292, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.949823554Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.083368-08:00" }, { "operation": "add_edge", - "rtt_ns": 827678, - "rtt_ms": 0.827678, + "rtt_ns": 1708250, + "rtt_ms": 1.70825, "checkpoint": 0, - "vertex_from": "179", - "vertex_to": "793", - "timestamp": "2025-11-27T01:23:46.950463352Z" + "vertex_from": "178", + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:50.083662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196217, - "rtt_ms": 1.196217, + "rtt_ns": 1844917, + "rtt_ms": 1.844917, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:46.950490972Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.083693-08:00" }, { "operation": "add_edge", - "rtt_ns": 992827, - "rtt_ms": 0.992827, + "rtt_ns": 1406750, + "rtt_ms": 1.40675, "checkpoint": 0, "vertex_from": "179", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.950591482Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.083709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487425, - "rtt_ms": 1.487425, + "rtt_ns": 1520291, + "rtt_ms": 1.520291, "checkpoint": 0, "vertex_from": "179", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:46.95103404Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:03:50.083791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382876, - "rtt_ms": 1.382876, + "rtt_ns": 1531625, + "rtt_ms": 1.531625, "checkpoint": 0, "vertex_from": "179", "vertex_to": "228", - "timestamp": "2025-11-27T01:23:46.95105148Z" + "timestamp": "2025-11-27T04:03:50.083816-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253104, - "rtt_ms": 2.253104, + "rtt_ns": 1375333, + "rtt_ms": 1.375333, "checkpoint": 0, "vertex_from": "180", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.951979778Z" + "timestamp": "2025-11-27T04:03:50.083834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318933, - "rtt_ms": 2.318933, - "checkpoint": 0, - "vertex_from": "179", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.952023447Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2225823, - "rtt_ms": 2.225823, + "rtt_ns": 1457666, + "rtt_ms": 1.457666, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:46.952026807Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2276933, - "rtt_ms": 2.276933, - "checkpoint": 0, - "vertex_from": "180", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.952101667Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:03:50.084323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659435, - "rtt_ms": 1.659435, + "rtt_ns": 2086084, + "rtt_ms": 2.086084, "checkpoint": 0, - "vertex_from": "180", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:46.952151837Z" + "vertex_from": "179", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.084341-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274543, - "rtt_ms": 2.274543, + "rtt_ns": 1739875, + "rtt_ms": 1.739875, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:46.952866995Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.085014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864535, - "rtt_ms": 1.864535, + "rtt_ns": 1807375, + "rtt_ms": 1.807375, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.952899225Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.085176-08:00" }, { "operation": "add_edge", - "rtt_ns": 3203141, - "rtt_ms": 3.203141, + "rtt_ns": 1531125, + "rtt_ms": 1.531125, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "204", - "timestamp": "2025-11-27T01:23:46.952941505Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:50.085194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2490263, - "rtt_ms": 2.490263, + "rtt_ns": 1492250, + "rtt_ms": 1.49225, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:46.952954275Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.085202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977915, - "rtt_ms": 1.977915, + "rtt_ns": 1444458, + "rtt_ms": 1.444458, "checkpoint": 0, "vertex_from": "180", "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.953030785Z" + "timestamp": "2025-11-27T04:03:50.085262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154596, - "rtt_ms": 1.154596, + "rtt_ns": 1584375, + "rtt_ms": 1.584375, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:46.953136724Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:50.085278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058077, - "rtt_ms": 1.058077, + "rtt_ns": 1617958, + "rtt_ms": 1.617958, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "421", - "timestamp": "2025-11-27T01:23:46.953210724Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.08541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151307, - "rtt_ms": 1.151307, + "rtt_ns": 1619208, + "rtt_ms": 1.619208, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.953253704Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:50.085455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236587, - "rtt_ms": 1.236587, + "rtt_ns": 1530916, + "rtt_ms": 1.530916, "checkpoint": 0, "vertex_from": "180", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.953261104Z" + "timestamp": "2025-11-27T04:03:50.085855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253997, - "rtt_ms": 1.253997, + "rtt_ns": 1532417, + "rtt_ms": 1.532417, "checkpoint": 0, "vertex_from": "180", "vertex_to": "612", - "timestamp": "2025-11-27T01:23:46.953281874Z" + "timestamp": "2025-11-27T04:03:50.085874-08:00" }, { "operation": "add_edge", - "rtt_ns": 531629, - "rtt_ms": 0.531629, + "rtt_ns": 1097709, + "rtt_ms": 1.097709, "checkpoint": 0, "vertex_from": "180", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:46.953399394Z" + "timestamp": "2025-11-27T04:03:50.086293-08:00" }, { "operation": "add_edge", - "rtt_ns": 572138, - "rtt_ms": 0.572138, + "rtt_ns": 1110209, + "rtt_ms": 1.110209, "checkpoint": 0, "vertex_from": "180", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.953472153Z" + "timestamp": "2025-11-27T04:03:50.086313-08:00" }, { "operation": "add_edge", - "rtt_ns": 775918, - "rtt_ms": 0.775918, + "rtt_ns": 1348084, + "rtt_ms": 1.348084, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.953718183Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:03:50.086525-08:00" }, { "operation": "add_edge", - "rtt_ns": 736808, - "rtt_ms": 0.736808, + "rtt_ns": 1544834, + "rtt_ms": 1.544834, "checkpoint": 0, - "vertex_from": "181", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:46.953768493Z" + "vertex_from": "180", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.086562-08:00" }, { "operation": "add_edge", - "rtt_ns": 878957, - "rtt_ms": 0.878957, + "rtt_ns": 1397208, + "rtt_ms": 1.397208, "checkpoint": 0, "vertex_from": "181", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.953834272Z" + "timestamp": "2025-11-27T04:03:50.086676-08:00" }, { "operation": "add_edge", - "rtt_ns": 672378, - "rtt_ms": 0.672378, + "rtt_ns": 1279042, + "rtt_ms": 1.279042, "checkpoint": 0, "vertex_from": "181", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:46.953927272Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:50.086735-08:00" }, { "operation": "add_edge", - "rtt_ns": 733748, - "rtt_ms": 0.733748, + "rtt_ns": 1417167, + "rtt_ms": 1.417167, "checkpoint": 0, "vertex_from": "181", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:46.953945422Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.08683-08:00" }, { "operation": "add_edge", - "rtt_ns": 838268, - "rtt_ms": 0.838268, + "rtt_ns": 1079834, + "rtt_ms": 1.079834, "checkpoint": 0, "vertex_from": "181", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:46.953977822Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.086937-08:00" }, { "operation": "add_edge", - "rtt_ns": 719218, - "rtt_ms": 0.719218, + "rtt_ns": 1953084, + "rtt_ms": 1.953084, "checkpoint": 0, - "vertex_from": "182", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:46.954002852Z" + "vertex_from": "180", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.087216-08:00" }, { "operation": "add_edge", - "rtt_ns": 851068, - "rtt_ms": 0.851068, + "rtt_ns": 1371417, + "rtt_ms": 1.371417, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:46.954324121Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.088202-08:00" }, { "operation": "add_edge", - "rtt_ns": 925387, - "rtt_ms": 0.925387, + "rtt_ns": 1549250, + "rtt_ms": 1.54925, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:46.954326891Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:03:50.088226-08:00" }, { "operation": "add_edge", - "rtt_ns": 659448, - "rtt_ms": 0.659448, + "rtt_ns": 1715208, + "rtt_ms": 1.715208, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:46.954428711Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:50.088241-08:00" }, { "operation": "add_edge", - "rtt_ns": 734868, - "rtt_ms": 0.734868, + "rtt_ns": 1349708, + "rtt_ms": 1.349708, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:46.95457013Z" + "vertex_to": "605", + "timestamp": "2025-11-27T04:03:50.088289-08:00" }, { "operation": "add_edge", - "rtt_ns": 912097, - "rtt_ms": 0.912097, + "rtt_ns": 1996000, + "rtt_ms": 1.996, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "339", - "timestamp": "2025-11-27T01:23:46.95463197Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:50.08831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905735, - "rtt_ms": 1.905735, + "rtt_ns": 2054125, + "rtt_ms": 2.054125, "checkpoint": 0, "vertex_from": "182", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.955168209Z" + "timestamp": "2025-11-27T04:03:50.088348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311546, - "rtt_ms": 1.311546, + "rtt_ns": 2480166, + "rtt_ms": 2.480166, "checkpoint": 0, - "vertex_from": "182", - "vertex_to": "605", - "timestamp": "2025-11-27T01:23:46.955239758Z" + "vertex_from": "181", + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.088356-08:00" }, { "operation": "add_edge", - "rtt_ns": 934387, - "rtt_ms": 0.934387, + "rtt_ns": 1974791, + "rtt_ms": 1.974791, "checkpoint": 0, - "vertex_from": "184", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.955259928Z" + "vertex_from": "182", + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:50.088539-08:00" }, { "operation": "add_edge", - "rtt_ns": 943837, - "rtt_ms": 0.943837, + "rtt_ns": 1871709, + "rtt_ms": 1.871709, "checkpoint": 0, - "vertex_from": "184", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:46.955272528Z" + "vertex_from": "182", + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:50.088608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459816, - "rtt_ms": 1.459816, + "rtt_ns": 1422500, + "rtt_ms": 1.4225, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:46.955442088Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.089664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449766, - "rtt_ms": 1.449766, + "rtt_ns": 1480042, + "rtt_ms": 1.480042, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.955454448Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.089683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997374, - "rtt_ms": 1.997374, + "rtt_ns": 2482875, + "rtt_ms": 2.482875, "checkpoint": 0, "vertex_from": "182", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:46.955943986Z" + "timestamp": "2025-11-27T04:03:50.089699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438376, - "rtt_ms": 1.438376, + "rtt_ns": 1481291, + "rtt_ms": 1.481291, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:46.956071016Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:50.090091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663085, - "rtt_ms": 1.663085, + "rtt_ns": 1799625, + "rtt_ms": 1.799625, "checkpoint": 0, "vertex_from": "184", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:46.956093206Z" + "timestamp": "2025-11-27T04:03:50.09011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557236, - "rtt_ms": 1.557236, + "rtt_ns": 1774167, + "rtt_ms": 1.774167, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:46.956128336Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.090131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479095, - "rtt_ms": 1.479095, + "rtt_ns": 1592042, + "rtt_ms": 1.592042, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.956922953Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.090133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723805, - "rtt_ms": 1.723805, + "rtt_ns": 1869292, + "rtt_ms": 1.869292, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:46.956964213Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:03:50.090159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710955, - "rtt_ms": 1.710955, + "rtt_ns": 2066708, + "rtt_ms": 2.066708, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:46.956986153Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.090294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825274, - "rtt_ms": 1.825274, + "rtt_ns": 2706958, + "rtt_ms": 2.706958, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:46.956994303Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.091058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547095, - "rtt_ms": 1.547095, + "rtt_ns": 1309083, + "rtt_ms": 1.309083, "checkpoint": 0, - "vertex_from": "184", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.957002603Z" + "vertex_from": "185", + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:50.091443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789645, - "rtt_ms": 1.789645, + "rtt_ns": 1352792, + "rtt_ms": 1.352792, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:46.957050843Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.091463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230857, - "rtt_ms": 1.230857, + "rtt_ns": 1809459, + "rtt_ms": 1.809459, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.957177203Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.091475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597475, - "rtt_ms": 1.597475, + "rtt_ns": 1845833, + "rtt_ms": 1.845833, "checkpoint": 0, - "vertex_from": "185", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:46.957693071Z" + "vertex_from": "184", + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:50.09153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700315, - "rtt_ms": 1.700315, + "rtt_ns": 1845417, + "rtt_ms": 1.845417, "checkpoint": 0, - "vertex_from": "185", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.957830021Z" + "vertex_from": "184", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.091545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834925, - "rtt_ms": 1.834925, + "rtt_ns": 1469542, + "rtt_ms": 1.469542, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.957907321Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.091561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321006, - "rtt_ms": 1.321006, + "rtt_ns": 1573709, + "rtt_ms": 1.573709, "checkpoint": 0, - "vertex_from": "185", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.958316739Z" + "vertex_from": "184", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.091705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406816, - "rtt_ms": 1.406816, + "rtt_ns": 1708333, + "rtt_ms": 1.708333, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:46.958371879Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.091868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517996, - "rtt_ms": 1.517996, + "rtt_ns": 1706167, + "rtt_ms": 1.706167, "checkpoint": 0, "vertex_from": "185", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.958442969Z" + "timestamp": "2025-11-27T04:03:50.092001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411216, - "rtt_ms": 1.411216, + "rtt_ns": 1146292, + "rtt_ms": 1.146292, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "193", - "timestamp": "2025-11-27T01:23:46.958464329Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.092207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774375, - "rtt_ms": 1.774375, + "rtt_ns": 976125, + "rtt_ms": 0.976125, "checkpoint": 0, - "vertex_from": "185", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:46.958762438Z" + "vertex_from": "186", + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.092978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898545, - "rtt_ms": 1.898545, + "rtt_ns": 1725750, + "rtt_ms": 1.72575, "checkpoint": 0, "vertex_from": "185", "vertex_to": "938", - "timestamp": "2025-11-27T01:23:46.958902448Z" + "timestamp": "2025-11-27T04:03:50.093201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903764, - "rtt_ms": 1.903764, + "rtt_ns": 1349792, + "rtt_ms": 1.349792, "checkpoint": 0, - "vertex_from": "185", + "vertex_from": "186", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:46.959082517Z" + "timestamp": "2025-11-27T04:03:50.093218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438436, - "rtt_ms": 1.438436, + "rtt_ns": 1673208, + "rtt_ms": 1.673208, "checkpoint": 0, "vertex_from": "185", "vertex_to": "390", - "timestamp": "2025-11-27T01:23:46.959132817Z" + "timestamp": "2025-11-27T04:03:50.093235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307066, - "rtt_ms": 1.307066, + "rtt_ns": 1720250, + "rtt_ms": 1.72025, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:46.959139797Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:03:50.093251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308126, - "rtt_ms": 1.308126, + "rtt_ns": 1845250, + "rtt_ms": 1.84525, "checkpoint": 0, - "vertex_from": "186", + "vertex_from": "185", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:46.959216877Z" + "timestamp": "2025-11-27T04:03:50.093391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526676, - "rtt_ms": 1.526676, + "rtt_ns": 1331667, + "rtt_ms": 1.331667, "checkpoint": 0, "vertex_from": "186", "vertex_to": "874", - "timestamp": "2025-11-27T01:23:46.959900465Z" + "timestamp": "2025-11-27T04:03:50.093541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623075, - "rtt_ms": 1.623075, + "rtt_ns": 2449584, + "rtt_ms": 2.449584, "checkpoint": 0, - "vertex_from": "186", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:46.959945304Z" + "vertex_from": "185", + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:50.093894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193776, - "rtt_ms": 1.193776, + "rtt_ns": 2722417, + "rtt_ms": 2.722417, "checkpoint": 0, - "vertex_from": "186", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.959959004Z" + "vertex_from": "185", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.094187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070756, - "rtt_ms": 1.070756, + "rtt_ns": 998083, + "rtt_ms": 0.998083, "checkpoint": 0, "vertex_from": "186", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.959974584Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:50.09425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557665, - "rtt_ms": 1.557665, + "rtt_ns": 2560709, + "rtt_ms": 2.560709, + "checkpoint": 0, + "vertex_from": "185", + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:50.094266-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1663416, + "rtt_ms": 1.663416, "checkpoint": 0, "vertex_from": "186", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:46.960003554Z" + "timestamp": "2025-11-27T04:03:50.094642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186793, - "rtt_ms": 2.186793, + "rtt_ns": 1628334, + "rtt_ms": 1.628334, + "checkpoint": 0, + "vertex_from": "187", + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.095021-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1997958, + "rtt_ms": 1.997958, "checkpoint": 0, "vertex_from": "186", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.960653952Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.095217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555755, - "rtt_ms": 1.555755, + "rtt_ns": 1438750, + "rtt_ms": 1.43875, "checkpoint": 0, "vertex_from": "188", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:46.960774462Z" + "timestamp": "2025-11-27T04:03:50.095336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689335, - "rtt_ms": 1.689335, + "rtt_ns": 1112334, + "rtt_ms": 1.112334, "checkpoint": 0, - "vertex_from": "187", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:46.960831892Z" + "vertex_from": "188", + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.095406-08:00" }, { "operation": "add_edge", - "rtt_ns": 978427, - "rtt_ms": 0.978427, + "rtt_ns": 1271875, + "rtt_ms": 1.271875, "checkpoint": 0, "vertex_from": "188", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:46.960880282Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:50.095522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803745, - "rtt_ms": 1.803745, + "rtt_ns": 2420750, + "rtt_ms": 2.42075, "checkpoint": 0, "vertex_from": "186", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:46.960888322Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.095623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912484, - "rtt_ms": 1.912484, + "rtt_ns": 2452125, + "rtt_ms": 2.452125, "checkpoint": 0, - "vertex_from": "187", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:46.961047081Z" + "vertex_from": "186", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.095688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309837, - "rtt_ms": 1.309837, + "rtt_ns": 2157958, + "rtt_ms": 2.157958, "checkpoint": 0, - "vertex_from": "188", - "vertex_to": "192", - "timestamp": "2025-11-27T01:23:46.961285541Z" + "vertex_from": "187", + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.0957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653466, - "rtt_ms": 1.653466, + "rtt_ns": 1669333, + "rtt_ms": 1.669333, "checkpoint": 0, "vertex_from": "188", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:46.96161386Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.095857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868605, - "rtt_ms": 1.868605, + "rtt_ns": 1428334, + "rtt_ms": 1.428334, "checkpoint": 0, - "vertex_from": "188", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:46.961815069Z" + "vertex_from": "190", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.096647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816545, - "rtt_ms": 1.816545, + "rtt_ns": 1749834, + "rtt_ms": 1.749834, "checkpoint": 0, - "vertex_from": "188", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.961822289Z" + "vertex_from": "190", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.097086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279637, - "rtt_ms": 1.279637, + "rtt_ns": 2489792, + "rtt_ms": 2.489792, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.962055719Z" + "vertex_from": "188", + "vertex_to": "192", + "timestamp": "2025-11-27T04:03:50.097138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578976, - "rtt_ms": 1.578976, + "rtt_ns": 1514959, + "rtt_ms": 1.514959, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.962234908Z" + "vertex_from": "192", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.097216-08:00" }, { "operation": "add_edge", - "rtt_ns": 649188, - "rtt_ms": 0.649188, + "rtt_ns": 1371542, + "rtt_ms": 1.371542, "checkpoint": 0, "vertex_from": "192", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:46.962267758Z" + "timestamp": "2025-11-27T04:03:50.097229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003717, - "rtt_ms": 1.003717, + "rtt_ns": 1826417, + "rtt_ms": 1.826417, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.962291568Z" + "vertex_from": "190", + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.097234-08:00" }, { "operation": "add_edge", - "rtt_ns": 547599, - "rtt_ms": 0.547599, + "rtt_ns": 1767834, + "rtt_ms": 1.767834, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:46.962373028Z" + "vertex_from": "190", + "vertex_to": "572", + "timestamp": "2025-11-27T04:03:50.097293-08:00" }, { "operation": "add_edge", - "rtt_ns": 628468, - "rtt_ms": 0.628468, + "rtt_ns": 2378916, + "rtt_ms": 2.378916, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:46.962446497Z" + "vertex_from": "188", + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.0974-08:00" }, { "operation": "add_edge", - "rtt_ns": 2453743, - "rtt_ms": 2.453743, + "rtt_ns": 1790667, + "rtt_ms": 1.790667, "checkpoint": 0, "vertex_from": "190", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:46.963343585Z" + "timestamp": "2025-11-27T04:03:50.097416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111877, - "rtt_ms": 1.111877, + "rtt_ns": 2120000, + "rtt_ms": 2.12, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:46.963381025Z" + "vertex_from": "190", + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:50.097809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344286, - "rtt_ms": 1.344286, + "rtt_ns": 1390584, + "rtt_ms": 1.390584, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:46.963401825Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:50.098686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201607, - "rtt_ms": 1.201607, + "rtt_ns": 1622334, + "rtt_ms": 1.622334, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.963438055Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:50.098852-08:00" }, { "operation": "add_edge", - "rtt_ns": 2602793, - "rtt_ms": 2.602793, + "rtt_ns": 1568208, + "rtt_ms": 1.568208, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.963439995Z" + "vertex_from": "192", + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.098985-08:00" }, { "operation": "add_edge", - "rtt_ns": 2398614, - "rtt_ms": 2.398614, + "rtt_ns": 1862666, + "rtt_ms": 1.862666, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:46.963447555Z" + "vertex_from": "192", + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.099002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2592623, - "rtt_ms": 2.592623, + "rtt_ns": 2361334, + "rtt_ms": 2.361334, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:46.963475875Z" + "vertex_from": "192", + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:50.09901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186607, - "rtt_ms": 1.186607, + "rtt_ns": 1786666, + "rtt_ms": 1.786666, "checkpoint": 0, "vertex_from": "192", "vertex_to": "271", - "timestamp": "2025-11-27T01:23:46.963479365Z" + "timestamp": "2025-11-27T04:03:50.099021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721715, - "rtt_ms": 1.721715, + "rtt_ns": 1711500, + "rtt_ms": 1.7115, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:46.964096473Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.099113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759525, - "rtt_ms": 1.759525, + "rtt_ns": 2041666, + "rtt_ms": 2.041666, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.964206942Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:50.099129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145147, - "rtt_ms": 1.145147, + "rtt_ns": 1518458, + "rtt_ms": 1.518458, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:46.964490642Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:03:50.099329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358336, - "rtt_ms": 1.358336, + "rtt_ns": 2345625, + "rtt_ms": 2.345625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:46.964807631Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.099562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410466, - "rtt_ms": 1.410466, + "rtt_ns": 989000, + "rtt_ms": 0.989, + "checkpoint": 0, + "vertex_from": "192", + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:50.099843-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1347958, + "rtt_ms": 1.347958, "checkpoint": 0, "vertex_from": "192", "vertex_to": "395", - "timestamp": "2025-11-27T01:23:46.964816341Z" + "timestamp": "2025-11-27T04:03:50.100037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451726, - "rtt_ms": 1.451726, + "rtt_ns": 1225333, + "rtt_ms": 1.225333, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "865", - "timestamp": "2025-11-27T01:23:46.964834331Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.100355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409095, - "rtt_ms": 1.409095, + "rtt_ns": 1349500, + "rtt_ms": 1.3495, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:46.96488732Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:50.100372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483915, - "rtt_ms": 1.483915, + "rtt_ns": 1418375, + "rtt_ms": 1.418375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:46.96492398Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:03:50.100404-08:00" }, { "operation": "add_edge", - "rtt_ns": 904607, - "rtt_ms": 0.904607, + "rtt_ns": 1435875, + "rtt_ms": 1.435875, "checkpoint": 0, "vertex_from": "192", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:46.96500419Z" + "timestamp": "2025-11-27T04:03:50.10055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528895, - "rtt_ms": 1.528895, + "rtt_ns": 1595333, + "rtt_ms": 1.595333, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:46.96500968Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:50.100607-08:00" }, { "operation": "add_edge", - "rtt_ns": 750327, - "rtt_ms": 0.750327, + "rtt_ns": 1602209, + "rtt_ms": 1.602209, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:46.965568478Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:50.100613-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138393, - "rtt_ms": 2.138393, + "rtt_ns": 2295291, + "rtt_ms": 2.295291, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "709", - "timestamp": "2025-11-27T01:23:46.965581418Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.101626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395116, - "rtt_ms": 1.395116, + "rtt_ns": 1651625, + "rtt_ms": 1.651625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.965603848Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.102267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114936, - "rtt_ms": 1.114936, + "rtt_ns": 1874917, + "rtt_ms": 1.874917, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.965606868Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.10228-08:00" }, { "operation": "add_edge", - "rtt_ns": 871787, - "rtt_ms": 0.871787, + "rtt_ns": 2723584, + "rtt_ms": 2.723584, "checkpoint": 0, "vertex_from": "192", "vertex_to": "281", - "timestamp": "2025-11-27T01:23:46.965682428Z" + "timestamp": "2025-11-27T04:03:50.102287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411056, - "rtt_ms": 1.411056, + "rtt_ns": 1936333, + "rtt_ms": 1.936333, "checkpoint": 0, "vertex_from": "192", "vertex_to": "340", - "timestamp": "2025-11-27T01:23:46.966336546Z" + "timestamp": "2025-11-27T04:03:50.102309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477776, - "rtt_ms": 1.477776, + "rtt_ns": 2519666, + "rtt_ms": 2.519666, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:46.966368596Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.102364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476406, - "rtt_ms": 1.476406, + "rtt_ns": 2028791, + "rtt_ms": 2.028791, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.966481826Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:50.102385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490436, - "rtt_ms": 1.490436, + "rtt_ns": 1839334, + "rtt_ms": 1.839334, "checkpoint": 0, "vertex_from": "192", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.966501916Z" + "timestamp": "2025-11-27T04:03:50.10239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679425, - "rtt_ms": 1.679425, + "rtt_ns": 2420500, + "rtt_ms": 2.4205, "checkpoint": 0, "vertex_from": "192", "vertex_to": "813", - "timestamp": "2025-11-27T01:23:46.966514886Z" + "timestamp": "2025-11-27T04:03:50.10246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419966, - "rtt_ms": 1.419966, + "rtt_ns": 2517042, + "rtt_ms": 2.517042, "checkpoint": 0, "vertex_from": "192", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.966993504Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1457346, - "rtt_ms": 1.457346, - "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:46.967064034Z" + "timestamp": "2025-11-27T04:03:50.103125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414616, - "rtt_ms": 1.414616, + "rtt_ns": 1232667, + "rtt_ms": 1.232667, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.967098064Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.103623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514896, - "rtt_ms": 1.514896, + "rtt_ns": 1183750, + "rtt_ms": 1.18375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:46.967122584Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:03:50.103645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562266, - "rtt_ms": 1.562266, + "rtt_ns": 1325500, + "rtt_ms": 1.3255, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:46.967145284Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:03:50.10369-08:00" }, { "operation": "add_edge", - "rtt_ns": 829858, - "rtt_ms": 0.829858, + "rtt_ns": 1601292, + "rtt_ms": 1.601292, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:46.967199274Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.103882-08:00" }, { "operation": "add_edge", - "rtt_ns": 955487, - "rtt_ms": 0.955487, + "rtt_ns": 1535209, + "rtt_ms": 1.535209, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:46.967293313Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.10392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122056, - "rtt_ms": 1.122056, + "rtt_ns": 1696625, + "rtt_ms": 1.696625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.967625122Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:50.104006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322856, - "rtt_ms": 1.322856, + "rtt_ns": 1754000, + "rtt_ms": 1.754, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "228", - "timestamp": "2025-11-27T01:23:46.967805902Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.104023-08:00" }, { "operation": "add_edge", - "rtt_ns": 766138, - "rtt_ms": 0.766138, + "rtt_ns": 1789750, + "rtt_ms": 1.78975, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:46.967831112Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:50.104077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019087, - "rtt_ms": 1.019087, + "rtt_ns": 2508375, + "rtt_ms": 2.508375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "198", - "timestamp": "2025-11-27T01:23:46.968118171Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.104137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140577, - "rtt_ms": 1.140577, + "rtt_ns": 1850083, + "rtt_ms": 1.850083, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "241", - "timestamp": "2025-11-27T01:23:46.968135041Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:03:50.104976-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149593, - "rtt_ms": 2.149593, + "rtt_ns": 987500, + "rtt_ms": 0.9875, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:46.968666989Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:50.104994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609885, - "rtt_ms": 1.609885, + "rtt_ns": 1381959, + "rtt_ms": 1.381959, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:46.968733379Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.105303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988624, - "rtt_ms": 1.988624, + "rtt_ns": 1422166, + "rtt_ms": 1.422166, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.969135898Z" + "vertex_to": "221", + "timestamp": "2025-11-27T04:03:50.105305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043594, - "rtt_ms": 2.043594, + "rtt_ns": 1751583, + "rtt_ms": 1.751583, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "221", - "timestamp": "2025-11-27T01:23:46.969244198Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:03:50.105376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681486, - "rtt_ms": 1.681486, + "rtt_ns": 1768458, + "rtt_ms": 1.768458, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:46.969308238Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:50.105414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707375, - "rtt_ms": 1.707375, + "rtt_ns": 1283708, + "rtt_ms": 1.283708, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.969514817Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:50.105424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459696, - "rtt_ms": 1.459696, + "rtt_ns": 1785334, + "rtt_ms": 1.785334, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:46.969579927Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.105476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135327, - "rtt_ms": 1.135327, + "rtt_ns": 1447625, + "rtt_ms": 1.447625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.969807436Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:03:50.105526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2711963, - "rtt_ms": 2.711963, + "rtt_ns": 1613209, + "rtt_ms": 1.613209, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.970006126Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.105637-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106934, - "rtt_ms": 2.106934, + "rtt_ns": 1270416, + "rtt_ms": 1.270416, "checkpoint": 0, "vertex_from": "192", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.970243285Z" + "timestamp": "2025-11-27T04:03:50.106247-08:00" }, { "operation": "add_edge", - "rtt_ns": 3318290, - "rtt_ms": 3.31829, + "rtt_ns": 1159208, + "rtt_ms": 1.159208, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "358", - "timestamp": "2025-11-27T01:23:46.971153412Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:50.106536-08:00" }, { "operation": "add_edge", - "rtt_ns": 2432683, - "rtt_ms": 2.432683, + "rtt_ns": 1142959, + "rtt_ms": 1.142959, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.971167632Z" + "vertex_to": "814", + "timestamp": "2025-11-27T04:03:50.10667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158534, - "rtt_ms": 2.158534, + "rtt_ns": 1443250, + "rtt_ms": 1.44325, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:46.971296182Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.106868-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055174, - "rtt_ms": 2.055174, + "rtt_ns": 1606708, + "rtt_ms": 1.606708, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:46.971364642Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.106911-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128964, - "rtt_ms": 2.128964, + "rtt_ns": 1574334, + "rtt_ms": 1.574334, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:46.971375142Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:50.106989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834735, - "rtt_ms": 1.834735, + "rtt_ns": 1370792, + "rtt_ms": 1.370792, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "214", - "timestamp": "2025-11-27T01:23:46.971416212Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.107008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636306, - "rtt_ms": 1.636306, + "rtt_ns": 1740291, + "rtt_ms": 1.740291, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "814", - "timestamp": "2025-11-27T01:23:46.971445782Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:50.107046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984504, - "rtt_ms": 1.984504, + "rtt_ns": 2236833, + "rtt_ms": 2.236833, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.971501841Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.107232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528095, - "rtt_ms": 1.528095, + "rtt_ns": 1755958, + "rtt_ms": 1.755958, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.971536041Z" + "vertex_to": "214", + "timestamp": "2025-11-27T04:03:50.107234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296096, - "rtt_ms": 1.296096, + "rtt_ns": 1088875, + "rtt_ms": 1.088875, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:46.971540581Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:03:50.107958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117437, - "rtt_ms": 1.117437, + "rtt_ns": 1436667, + "rtt_ms": 1.436667, "checkpoint": 0, "vertex_from": "192", "vertex_to": "274", - "timestamp": "2025-11-27T01:23:46.972272029Z" + "timestamp": "2025-11-27T04:03:50.107973-08:00" }, { "operation": "add_edge", - "rtt_ns": 977327, - "rtt_ms": 0.977327, + "rtt_ns": 1921000, + "rtt_ms": 1.921, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "482", - "timestamp": "2025-11-27T01:23:46.972275479Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:50.108171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113797, - "rtt_ms": 1.113797, + "rtt_ns": 1165125, + "rtt_ms": 1.165125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:46.972282529Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.108398-08:00" }, { "operation": "add_edge", - "rtt_ns": 942337, - "rtt_ms": 0.942337, + "rtt_ns": 1503583, + "rtt_ms": 1.503583, "checkpoint": 0, "vertex_from": "192", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:46.972308519Z" + "timestamp": "2025-11-27T04:03:50.108415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010137, - "rtt_ms": 1.010137, + "rtt_ns": 1426125, + "rtt_ms": 1.426125, "checkpoint": 0, "vertex_from": "192", "vertex_to": "417", - "timestamp": "2025-11-27T01:23:46.972387139Z" + "timestamp": "2025-11-27T04:03:50.108416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539855, - "rtt_ms": 1.539855, + "rtt_ns": 1409292, + "rtt_ms": 1.409292, "checkpoint": 0, "vertex_from": "192", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:46.972957447Z" + "timestamp": "2025-11-27T04:03:50.108418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585955, - "rtt_ms": 1.585955, + "rtt_ns": 1871791, + "rtt_ms": 1.871791, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:46.973032817Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:50.108542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582606, - "rtt_ms": 1.582606, + "rtt_ns": 1309000, + "rtt_ms": 1.309, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.973085947Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.108544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571976, - "rtt_ms": 1.571976, + "rtt_ns": 2273333, + "rtt_ms": 2.273333, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:46.973109317Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:50.109328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924995, - "rtt_ms": 1.924995, + "rtt_ns": 1906084, + "rtt_ms": 1.906084, "checkpoint": 0, "vertex_from": "192", "vertex_to": "676", - "timestamp": "2025-11-27T01:23:46.973466996Z" + "timestamp": "2025-11-27T04:03:50.109865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337416, - "rtt_ms": 1.337416, + "rtt_ns": 1739834, + "rtt_ms": 1.739834, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:46.973611215Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:50.110156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421086, - "rtt_ms": 1.421086, + "rtt_ns": 1754375, + "rtt_ms": 1.754375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:46.973698265Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:03:50.110172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402416, - "rtt_ms": 1.402416, + "rtt_ns": 2202875, + "rtt_ms": 2.202875, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:46.973713985Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:50.110177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335296, - "rtt_ms": 1.335296, + "rtt_ns": 1812542, + "rtt_ms": 1.812542, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:46.973723985Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:50.110212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508276, - "rtt_ms": 1.508276, + "rtt_ns": 1750667, + "rtt_ms": 1.750667, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:46.973792535Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:03:50.110296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202626, - "rtt_ms": 1.202626, + "rtt_ns": 2202416, + "rtt_ms": 2.202416, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:46.974237663Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:50.110376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438286, - "rtt_ms": 1.438286, + "rtt_ns": 2008542, + "rtt_ms": 2.008542, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "412", - "timestamp": "2025-11-27T01:23:46.974399473Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:03:50.110552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360266, - "rtt_ms": 1.360266, + "rtt_ns": 1974083, + "rtt_ms": 1.974083, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "630", - "timestamp": "2025-11-27T01:23:46.974447883Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.111303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393065, - "rtt_ms": 1.393065, + "rtt_ns": 1319375, + "rtt_ms": 1.319375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:46.974503632Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.111532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171426, - "rtt_ms": 1.171426, + "rtt_ns": 1377458, + "rtt_ms": 1.377458, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "940", - "timestamp": "2025-11-27T01:23:46.974639682Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:03:50.111555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586115, - "rtt_ms": 1.586115, + "rtt_ns": 3155084, + "rtt_ms": 3.155084, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:46.97520046Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:03:50.111574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482825, - "rtt_ms": 1.482825, + "rtt_ns": 1447916, + "rtt_ms": 1.447916, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:46.97527703Z" + "vertex_to": "655", + "timestamp": "2025-11-27T04:03:50.11162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602515, - "rtt_ms": 1.602515, + "rtt_ns": 1811625, + "rtt_ms": 1.811625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:46.97532786Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:03:50.111679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627825, - "rtt_ms": 1.627825, + "rtt_ns": 1400083, + "rtt_ms": 1.400083, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "655", - "timestamp": "2025-11-27T01:23:46.97532816Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.111696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624315, - "rtt_ms": 1.624315, + "rtt_ns": 1338583, + "rtt_ms": 1.338583, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "790", - "timestamp": "2025-11-27T01:23:46.97533946Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.111716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018797, - "rtt_ms": 1.018797, + "rtt_ns": 1427958, + "rtt_ms": 1.427958, "checkpoint": 0, "vertex_from": "192", "vertex_to": "705", - "timestamp": "2025-11-27T01:23:46.97542049Z" + "timestamp": "2025-11-27T04:03:50.111981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022537, - "rtt_ms": 1.022537, + "rtt_ns": 1907583, + "rtt_ms": 1.907583, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:46.97547155Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.112064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254446, - "rtt_ms": 1.254446, + "rtt_ns": 1323208, + "rtt_ms": 1.323208, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:46.975495339Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:03:50.112879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011747, - "rtt_ms": 1.011747, + "rtt_ns": 1324000, + "rtt_ms": 1.324, "checkpoint": 0, "vertex_from": "192", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:46.976213307Z" + "timestamp": "2025-11-27T04:03:50.112899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739155, - "rtt_ms": 1.739155, + "rtt_ns": 1403583, + "rtt_ms": 1.403583, "checkpoint": 0, "vertex_from": "192", "vertex_to": "368", - "timestamp": "2025-11-27T01:23:46.976245137Z" + "timestamp": "2025-11-27T04:03:50.112936-08:00" }, { "operation": "add_edge", - "rtt_ns": 991297, - "rtt_ms": 0.991297, + "rtt_ns": 1335125, + "rtt_ms": 1.335125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "205", - "timestamp": "2025-11-27T01:23:46.976269487Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:50.113032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752665, - "rtt_ms": 1.752665, + "rtt_ns": 1851125, + "rtt_ms": 1.851125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:46.976394087Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:50.113155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136707, - "rtt_ms": 1.136707, + "rtt_ns": 1498917, + "rtt_ms": 1.498917, "checkpoint": 0, "vertex_from": "192", "vertex_to": "314", - "timestamp": "2025-11-27T01:23:46.976465417Z" + "timestamp": "2025-11-27T04:03:50.113179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570426, - "rtt_ms": 1.570426, + "rtt_ns": 1659291, + "rtt_ms": 1.659291, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:46.976899886Z" + "vertex_to": "205", + "timestamp": "2025-11-27T04:03:50.113281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730405, - "rtt_ms": 1.730405, + "rtt_ns": 1231167, + "rtt_ms": 1.231167, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:46.977073065Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.113296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629555, - "rtt_ms": 1.629555, + "rtt_ns": 1582708, + "rtt_ms": 1.582708, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.977101965Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:50.113299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679835, - "rtt_ms": 1.679835, + "rtt_ns": 1318416, + "rtt_ms": 1.318416, "checkpoint": 0, "vertex_from": "192", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:46.977102105Z" + "timestamp": "2025-11-27T04:03:50.1133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652996, - "rtt_ms": 1.652996, + "rtt_ns": 1279292, + "rtt_ms": 1.279292, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:46.977152515Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:50.114313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658646, - "rtt_ms": 1.658646, + "rtt_ns": 1050416, + "rtt_ms": 1.050416, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:46.977906283Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:03:50.114352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526765, - "rtt_ms": 1.526765, + "rtt_ns": 1310834, + "rtt_ms": 1.310834, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "369", - "timestamp": "2025-11-27T01:23:46.977993202Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:50.114593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848415, - "rtt_ms": 1.848415, + "rtt_ns": 1311958, + "rtt_ms": 1.311958, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:46.978065672Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.114608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807655, - "rtt_ms": 1.807655, + "rtt_ns": 1671333, + "rtt_ms": 1.671333, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:46.978078742Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:50.11461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718205, - "rtt_ms": 1.718205, + "rtt_ns": 1451875, + "rtt_ms": 1.451875, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:46.978113582Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:03:50.114632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657395, - "rtt_ms": 1.657395, + "rtt_ns": 1382500, + "rtt_ms": 1.3825, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:46.97873157Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.114682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668485, - "rtt_ms": 1.668485, + "rtt_ns": 1892750, + "rtt_ms": 1.89275, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:46.97877255Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:03:50.114773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713385, - "rtt_ms": 1.713385, + "rtt_ns": 1617750, + "rtt_ms": 1.61775, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:46.9788681Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.114775-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014205, - "rtt_ms": 2.014205, + "rtt_ns": 1899875, + "rtt_ms": 1.899875, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:46.97891665Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:50.1148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011347, - "rtt_ms": 1.011347, + "rtt_ns": 1505583, + "rtt_ms": 1.505583, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.97891933Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:50.11582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844905, - "rtt_ms": 1.844905, + "rtt_ns": 1602791, + "rtt_ms": 1.602791, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "459", - "timestamp": "2025-11-27T01:23:46.97895032Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.115957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129427, - "rtt_ms": 1.129427, + "rtt_ns": 1416125, + "rtt_ms": 1.416125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:46.979123989Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:50.116027-08:00" }, { "operation": "add_edge", - "rtt_ns": 844447, - "rtt_ms": 0.844447, + "rtt_ns": 1240666, + "rtt_ms": 1.240666, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "892", - "timestamp": "2025-11-27T01:23:46.979765027Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:50.116041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739945, - "rtt_ms": 1.739945, + "rtt_ns": 1396875, + "rtt_ms": 1.396875, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:46.979806917Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:03:50.11608-08:00" }, { "operation": "add_edge", - "rtt_ns": 933457, - "rtt_ms": 0.933457, + "rtt_ns": 1450291, + "rtt_ms": 1.450291, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:46.979851357Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.116083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161217, - "rtt_ms": 1.161217, + "rtt_ns": 1600333, + "rtt_ms": 1.600333, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:46.979893897Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.11621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141257, - "rtt_ms": 1.141257, + "rtt_ns": 1519500, + "rtt_ms": 1.5195, "checkpoint": 0, "vertex_from": "192", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:46.979915407Z" + "timestamp": "2025-11-27T04:03:50.116293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951185, - "rtt_ms": 1.951185, + "rtt_ns": 1739542, + "rtt_ms": 1.739542, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:46.980032277Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.116333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967505, - "rtt_ms": 1.967505, + "rtt_ns": 1580250, + "rtt_ms": 1.58025, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:46.980082707Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:03:50.116356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252986, - "rtt_ms": 1.252986, + "rtt_ns": 1300542, + "rtt_ms": 1.300542, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "212", - "timestamp": "2025-11-27T01:23:46.980122826Z" + "vertex_from": "193", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.117343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652855, - "rtt_ms": 1.652855, + "rtt_ns": 1174625, + "rtt_ms": 1.174625, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:46.980605165Z" + "vertex_from": "193", + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:50.117387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501126, - "rtt_ms": 1.501126, + "rtt_ns": 1442083, + "rtt_ms": 1.442083, "checkpoint": 0, "vertex_from": "192", "vertex_to": "842", - "timestamp": "2025-11-27T01:23:46.980628165Z" + "timestamp": "2025-11-27T04:03:50.117471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034687, - "rtt_ms": 1.034687, + "rtt_ns": 1732125, + "rtt_ms": 1.732125, "checkpoint": 0, - "vertex_from": "193", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.980802234Z" + "vertex_from": "192", + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.117692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025077, - "rtt_ms": 1.025077, + "rtt_ns": 1888708, + "rtt_ms": 1.888708, "checkpoint": 0, - "vertex_from": "193", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.980833014Z" + "vertex_from": "192", + "vertex_to": "892", + "timestamp": "2025-11-27T04:03:50.117709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182406, - "rtt_ms": 1.182406, + "rtt_ns": 2087958, + "rtt_ms": 2.087958, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:46.981099743Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.118172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375466, - "rtt_ms": 1.375466, + "rtt_ns": 2200833, + "rtt_ms": 2.200833, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:46.981228543Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:50.118535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274036, - "rtt_ms": 1.274036, + "rtt_ns": 2545125, + "rtt_ms": 2.545125, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:46.981308133Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.118626-08:00" }, { "operation": "add_edge", - "rtt_ns": 700368, - "rtt_ms": 0.700368, + "rtt_ns": 2353125, + "rtt_ms": 2.353125, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:46.981330653Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.11871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254646, - "rtt_ms": 1.254646, + "rtt_ns": 2596209, + "rtt_ms": 2.596209, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:46.981338963Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.11889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833805, - "rtt_ms": 1.833805, + "rtt_ns": 1517625, + "rtt_ms": 1.517625, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:46.981729522Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.118906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705505, - "rtt_ms": 1.705505, + "rtt_ns": 1513875, + "rtt_ms": 1.513875, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:46.981831891Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.118986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034657, - "rtt_ms": 1.034657, + "rtt_ns": 2161166, + "rtt_ms": 2.161166, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.981868941Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:50.119506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128807, - "rtt_ms": 1.128807, + "rtt_ns": 1932041, + "rtt_ms": 1.932041, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:46.981932491Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.119642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425136, - "rtt_ms": 1.425136, + "rtt_ns": 1256792, + "rtt_ms": 1.256792, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.982032911Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.119968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748225, - "rtt_ms": 1.748225, + "rtt_ns": 1360750, + "rtt_ms": 1.36075, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:46.982849428Z" + "vertex_to": "691", + "timestamp": "2025-11-27T04:03:50.119988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162746, - "rtt_ms": 1.162746, + "rtt_ns": 1219208, + "rtt_ms": 1.219208, "checkpoint": 0, "vertex_from": "193", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:46.982893458Z" + "timestamp": "2025-11-27T04:03:50.120126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588385, - "rtt_ms": 1.588385, + "rtt_ns": 1678833, + "rtt_ms": 1.678833, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "208", - "timestamp": "2025-11-27T01:23:46.982928978Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:50.120216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632695, - "rtt_ms": 1.632695, + "rtt_ns": 2554125, + "rtt_ms": 2.554125, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:46.982965078Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:50.120247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032787, - "rtt_ms": 1.032787, + "rtt_ns": 1275583, + "rtt_ms": 1.275583, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:46.982967128Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.120262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143037, - "rtt_ms": 1.143037, + "rtt_ns": 2185167, + "rtt_ms": 2.185167, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:46.982976298Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:50.120358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753475, - "rtt_ms": 1.753475, + "rtt_ns": 1733917, + "rtt_ms": 1.733917, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:46.982983418Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:03:50.120626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790715, - "rtt_ms": 1.790715, + "rtt_ns": 1199708, + "rtt_ms": 1.199708, "checkpoint": 0, "vertex_from": "193", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:46.983664396Z" + "timestamp": "2025-11-27T04:03:50.120707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567152, - "rtt_ms": 2.567152, + "rtt_ns": 1079375, + "rtt_ms": 1.079375, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "691", - "timestamp": "2025-11-27T01:23:46.983876795Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:50.120723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034897, - "rtt_ms": 1.034897, + "rtt_ns": 1292750, + "rtt_ms": 1.29275, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.983929805Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:50.121282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122227, - "rtt_ms": 1.122227, + "rtt_ns": 1382500, + "rtt_ms": 1.3825, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:46.983973125Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:03:50.121352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154437, - "rtt_ms": 1.154437, + "rtt_ns": 1390791, + "rtt_ms": 1.390791, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "311", - "timestamp": "2025-11-27T01:23:46.984123245Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.121518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227056, - "rtt_ms": 1.227056, + "rtt_ns": 1765792, + "rtt_ms": 1.765792, "checkpoint": 0, "vertex_from": "193", "vertex_to": "812", - "timestamp": "2025-11-27T01:23:46.984157304Z" + "timestamp": "2025-11-27T04:03:50.121983-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124653, - "rtt_ms": 2.124653, + "rtt_ns": 1394834, + "rtt_ms": 1.394834, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "570", - "timestamp": "2025-11-27T01:23:46.984158914Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:50.122023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259416, - "rtt_ms": 1.259416, + "rtt_ns": 1747292, + "rtt_ms": 1.747292, "checkpoint": 0, "vertex_from": "193", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:46.984237434Z" + "timestamp": "2025-11-27T04:03:50.122106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823265, - "rtt_ms": 1.823265, + "rtt_ns": 1880125, + "rtt_ms": 1.880125, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:46.984811363Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:03:50.122143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957654, - "rtt_ms": 1.957654, + "rtt_ns": 1922791, + "rtt_ms": 1.922791, "checkpoint": 0, "vertex_from": "193", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.984923962Z" + "timestamp": "2025-11-27T04:03:50.12217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135927, - "rtt_ms": 1.135927, + "rtt_ns": 1495334, + "rtt_ms": 1.495334, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:46.985013922Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.122203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086387, - "rtt_ms": 1.086387, + "rtt_ns": 1492000, + "rtt_ms": 1.492, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:46.985017332Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.122216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356186, - "rtt_ms": 1.356186, + "rtt_ns": 1073291, + "rtt_ms": 1.073291, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:46.985028502Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.122426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636536, - "rtt_ms": 1.636536, + "rtt_ns": 1346084, + "rtt_ms": 1.346084, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:46.98579652Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:50.122629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557686, - "rtt_ms": 1.557686, + "rtt_ns": 1444833, + "rtt_ms": 1.444833, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "194", - "timestamp": "2025-11-27T01:23:46.98579697Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.123469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912005, - "rtt_ms": 1.912005, + "rtt_ns": 1482500, + "rtt_ms": 1.4825, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:46.98588637Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:03:50.123628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748696, - "rtt_ms": 1.748696, + "rtt_ns": 1441709, + "rtt_ms": 1.441709, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.98590995Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:50.123647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105687, - "rtt_ms": 1.105687, + "rtt_ns": 1609792, + "rtt_ms": 1.609792, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:46.98591869Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:03:50.123717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002197, - "rtt_ms": 1.002197, + "rtt_ns": 1802542, + "rtt_ms": 1.802542, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.985927139Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.123786-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321213, - "rtt_ms": 2.321213, + "rtt_ns": 2317000, + "rtt_ms": 2.317, "checkpoint": 0, "vertex_from": "193", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.986446128Z" + "timestamp": "2025-11-27T04:03:50.123837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630875, - "rtt_ms": 1.630875, + "rtt_ns": 1654041, + "rtt_ms": 1.654041, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:46.986646487Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:50.123872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675115, - "rtt_ms": 1.675115, + "rtt_ns": 1310250, + "rtt_ms": 1.31025, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:46.986693647Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:03:50.12394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669875, - "rtt_ms": 1.669875, + "rtt_ns": 1818667, + "rtt_ms": 1.818667, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:46.986700017Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.12399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542176, - "rtt_ms": 1.542176, + "rtt_ns": 1646417, + "rtt_ms": 1.646417, "checkpoint": 0, - "vertex_from": "194", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:46.987462335Z" + "vertex_from": "193", + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.124073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115607, - "rtt_ms": 1.115607, + "rtt_ns": 1151083, + "rtt_ms": 1.151083, "checkpoint": 0, - "vertex_from": "194", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:46.987562905Z" + "vertex_from": "193", + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:50.124621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842815, - "rtt_ms": 1.842815, + "rtt_ns": 1326834, + "rtt_ms": 1.326834, "checkpoint": 0, - "vertex_from": "193", - "vertex_to": "481", - "timestamp": "2025-11-27T01:23:46.987641605Z" + "vertex_from": "194", + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:50.125044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763695, - "rtt_ms": 1.763695, + "rtt_ns": 1623625, + "rtt_ms": 1.623625, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:46.987651655Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.125271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771045, - "rtt_ms": 1.771045, + "rtt_ns": 1457584, + "rtt_ms": 1.457584, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.987683015Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.125296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890925, - "rtt_ms": 1.890925, + "rtt_ns": 1675959, + "rtt_ms": 1.675959, "checkpoint": 0, - "vertex_from": "193", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:46.987689815Z" + "vertex_from": "194", + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.125304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768966, - "rtt_ms": 1.768966, + "rtt_ns": 2350917, + "rtt_ms": 2.350917, "checkpoint": 0, "vertex_from": "194", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.987697255Z" + "timestamp": "2025-11-27T04:03:50.126138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583216, - "rtt_ms": 1.583216, + "rtt_ns": 2864875, + "rtt_ms": 2.864875, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.988281173Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:03:50.126856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656716, - "rtt_ms": 1.656716, + "rtt_ns": 2992416, + "rtt_ms": 2.992416, "checkpoint": 0, "vertex_from": "194", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.988305313Z" + "timestamp": "2025-11-27T04:03:50.126867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640966, - "rtt_ms": 1.640966, + "rtt_ns": 2812042, + "rtt_ms": 2.812042, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "409", - "timestamp": "2025-11-27T01:23:46.988343853Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.126886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457686, - "rtt_ms": 1.457686, + "rtt_ns": 1604000, + "rtt_ms": 1.604, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:46.988922051Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:50.126909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334526, - "rtt_ms": 1.334526, + "rtt_ns": 3003584, + "rtt_ms": 3.003584, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:46.988988331Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.126945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695514, - "rtt_ms": 1.695514, + "rtt_ns": 1711791, + "rtt_ms": 1.711791, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:46.989394539Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:50.126984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833324, - "rtt_ms": 1.833324, + "rtt_ns": 2038042, + "rtt_ms": 2.038042, "checkpoint": 0, "vertex_from": "194", "vertex_to": "680", - "timestamp": "2025-11-27T01:23:46.989518049Z" + "timestamp": "2025-11-27T04:03:50.127335-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3063166, + "rtt_ms": 3.063166, + "checkpoint": 0, + "vertex_from": "194", + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.127686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896734, - "rtt_ms": 1.896734, + "rtt_ns": 2955709, + "rtt_ms": 2.955709, "checkpoint": 0, "vertex_from": "194", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.989539639Z" + "timestamp": "2025-11-27T04:03:50.128001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261076, - "rtt_ms": 1.261076, + "rtt_ns": 2362542, + "rtt_ms": 2.362542, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:46.989543199Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.128502-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104274, - "rtt_ms": 2.104274, + "rtt_ns": 1630792, + "rtt_ms": 1.630792, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:46.989669659Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:03:50.128577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347536, - "rtt_ms": 1.347536, + "rtt_ns": 1741416, + "rtt_ms": 1.741416, "checkpoint": 0, "vertex_from": "194", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:46.989700719Z" + "timestamp": "2025-11-27T04:03:50.128628-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146943, - "rtt_ms": 2.146943, + "rtt_ns": 1695833, + "rtt_ms": 1.695833, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:46.989839428Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.128683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562715, - "rtt_ms": 1.562715, + "rtt_ns": 1840417, + "rtt_ms": 1.840417, "checkpoint": 0, "vertex_from": "194", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.989869898Z" + "timestamp": "2025-11-27T04:03:50.128708-08:00" }, { "operation": "add_edge", - "rtt_ns": 946957, - "rtt_ms": 0.946957, + "rtt_ns": 1904042, + "rtt_ms": 1.904042, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:46.990618006Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.128761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300067, - "rtt_ms": 1.300067, + "rtt_ns": 1581292, + "rtt_ms": 1.581292, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.990696076Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:50.128917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781895, - "rtt_ms": 1.781895, + "rtt_ns": 2050125, + "rtt_ms": 2.050125, "checkpoint": 0, "vertex_from": "194", "vertex_to": "305", - "timestamp": "2025-11-27T01:23:46.990706296Z" + "timestamp": "2025-11-27T04:03:50.12896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735194, - "rtt_ms": 1.735194, + "rtt_ns": 1514208, + "rtt_ms": 1.514208, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "709", - "timestamp": "2025-11-27T01:23:46.990724895Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:50.129201-08:00" }, { "operation": "add_edge", - "rtt_ns": 2498253, - "rtt_ms": 2.498253, + "rtt_ns": 1214583, + "rtt_ms": 1.214583, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:46.992039752Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.129216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2540713, - "rtt_ms": 2.540713, + "rtt_ns": 1090125, + "rtt_ms": 1.090125, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:46.992059692Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:50.129593-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356423, - "rtt_ms": 2.356423, + "rtt_ns": 1432000, + "rtt_ms": 1.432, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:46.992060112Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:50.130351-08:00" }, { "operation": "add_edge", - "rtt_ns": 2720282, - "rtt_ms": 2.720282, + "rtt_ns": 1773667, + "rtt_ms": 1.773667, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:46.992264721Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.130458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464713, - "rtt_ms": 2.464713, + "rtt_ns": 1815709, + "rtt_ms": 1.815709, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:46.992337081Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.130525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2615812, - "rtt_ms": 2.615812, + "rtt_ns": 1909084, + "rtt_ms": 1.909084, "checkpoint": 0, "vertex_from": "194", "vertex_to": "582", - "timestamp": "2025-11-27T01:23:46.99245699Z" + "timestamp": "2025-11-27T04:03:50.130537-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064124, - "rtt_ms": 2.064124, + "rtt_ns": 1632000, + "rtt_ms": 1.632, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:46.99268664Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:50.130594-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036564, - "rtt_ms": 2.036564, + "rtt_ns": 2069667, + "rtt_ms": 2.069667, + "checkpoint": 0, + "vertex_from": "194", + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.130648-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1964375, + "rtt_ms": 1.964375, "checkpoint": 0, "vertex_from": "194", "vertex_to": "337", - "timestamp": "2025-11-27T01:23:46.99273479Z" + "timestamp": "2025-11-27T04:03:50.130727-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175063, - "rtt_ms": 2.175063, + "rtt_ns": 1549375, + "rtt_ms": 1.549375, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:46.992885189Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.130752-08:00" }, { "operation": "add_edge", - "rtt_ns": 2216824, - "rtt_ms": 2.216824, + "rtt_ns": 1626542, + "rtt_ms": 1.626542, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:46.992943869Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:03:50.130844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566075, - "rtt_ms": 1.566075, + "rtt_ns": 1806458, + "rtt_ms": 1.806458, "checkpoint": 0, "vertex_from": "194", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.993628877Z" + "timestamp": "2025-11-27T04:03:50.1314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652865, - "rtt_ms": 1.652865, + "rtt_ns": 1480583, + "rtt_ms": 1.480583, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.993694807Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.132129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642975, - "rtt_ms": 1.642975, + "rtt_ns": 1359500, + "rtt_ms": 1.3595, "checkpoint": 0, - "vertex_from": "194", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:46.993705367Z" + "vertex_from": "195", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.132204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419516, - "rtt_ms": 1.419516, + "rtt_ns": 1710000, + "rtt_ms": 1.71, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:46.993758887Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.132236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332887, - "rtt_ms": 1.332887, + "rtt_ns": 1822250, + "rtt_ms": 1.82225, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:46.993791357Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:50.132281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547316, - "rtt_ms": 1.547316, + "rtt_ns": 1709542, + "rtt_ms": 1.709542, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:46.993816577Z" + "vertex_to": "909", + "timestamp": "2025-11-27T04:03:50.132304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573006, - "rtt_ms": 1.573006, + "rtt_ns": 1961000, + "rtt_ms": 1.961, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "745", - "timestamp": "2025-11-27T01:23:46.994518375Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:50.132314-08:00" }, { "operation": "add_edge", - "rtt_ns": 894097, - "rtt_ms": 0.894097, + "rtt_ns": 1642667, + "rtt_ms": 1.642667, "checkpoint": 0, - "vertex_from": "195", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:46.994601994Z" + "vertex_from": "194", + "vertex_to": "745", + "timestamp": "2025-11-27T04:03:50.13237-08:00" }, { "operation": "add_edge", - "rtt_ns": 986057, - "rtt_ms": 0.986057, + "rtt_ns": 1621791, + "rtt_ms": 1.621791, "checkpoint": 0, "vertex_from": "195", "vertex_to": "225", - "timestamp": "2025-11-27T01:23:46.994616964Z" + "timestamp": "2025-11-27T04:03:50.132375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897354, - "rtt_ms": 1.897354, + "rtt_ns": 1859125, + "rtt_ms": 1.859125, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "909", - "timestamp": "2025-11-27T01:23:46.994633834Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.132397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799535, - "rtt_ms": 1.799535, + "rtt_ns": 1209458, + "rtt_ms": 1.209458, "checkpoint": 0, - "vertex_from": "194", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:46.994687024Z" + "vertex_from": "195", + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.132611-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065844, - "rtt_ms": 2.065844, + "rtt_ns": 1172042, + "rtt_ms": 1.172042, "checkpoint": 0, - "vertex_from": "194", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:46.994754754Z" + "vertex_from": "195", + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:50.133479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125377, - "rtt_ms": 1.125377, + "rtt_ns": 1409458, + "rtt_ms": 1.409458, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.994822414Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.133807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748595, - "rtt_ms": 1.748595, + "rtt_ns": 1803417, + "rtt_ms": 1.803417, "checkpoint": 0, "vertex_from": "195", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:46.995508962Z" + "timestamp": "2025-11-27T04:03:50.133934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800295, - "rtt_ms": 1.800295, + "rtt_ns": 1729458, + "rtt_ms": 1.729458, "checkpoint": 0, "vertex_from": "195", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:46.995592682Z" + "timestamp": "2025-11-27T04:03:50.133935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834674, - "rtt_ms": 1.834674, + "rtt_ns": 1323958, + "rtt_ms": 1.323958, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:46.995652161Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.133935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214807, - "rtt_ms": 1.214807, + "rtt_ns": 1738208, + "rtt_ms": 1.738208, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.995851241Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.134052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526875, - "rtt_ms": 1.526875, + "rtt_ns": 1785792, + "rtt_ms": 1.785792, "checkpoint": 0, "vertex_from": "195", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.99604945Z" + "timestamp": "2025-11-27T04:03:50.13407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920185, - "rtt_ms": 1.920185, + "rtt_ns": 1833500, + "rtt_ms": 1.8335, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:46.996539549Z" - }, - { - "operation": "add_edge", - "rtt_ns": 947158, - "rtt_ms": 0.947158, - "checkpoint": 0, - "vertex_from": "196", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:46.996600659Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.13407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821405, - "rtt_ms": 1.821405, + "rtt_ns": 1695417, + "rtt_ms": 1.695417, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:46.996645609Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.134071-08:00" }, { "operation": "add_edge", - "rtt_ns": 2046235, - "rtt_ms": 2.046235, + "rtt_ns": 1789500, + "rtt_ms": 1.7895, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:46.996650529Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.13416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998524, - "rtt_ms": 1.998524, + "rtt_ns": 1033875, + "rtt_ms": 1.033875, "checkpoint": 0, - "vertex_from": "195", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:46.996688498Z" + "vertex_from": "196", + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.135106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996434, - "rtt_ms": 1.996434, + "rtt_ns": 1645125, + "rtt_ms": 1.645125, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:46.996752768Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:50.135125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288666, - "rtt_ms": 1.288666, + "rtt_ns": 1173875, + "rtt_ms": 1.173875, "checkpoint": 0, - "vertex_from": "195", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:46.996799408Z" + "vertex_from": "196", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.135246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206426, - "rtt_ms": 1.206426, + "rtt_ns": 1292042, + "rtt_ms": 1.292042, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:46.996801768Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.135363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849714, - "rtt_ms": 1.849714, + "rtt_ns": 1328833, + "rtt_ms": 1.328833, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:46.997703485Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.13549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174246, - "rtt_ms": 1.174246, + "rtt_ns": 1588541, + "rtt_ms": 1.588541, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:46.997715255Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.135525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079076, - "rtt_ms": 1.079076, + "rtt_ns": 1481208, + "rtt_ms": 1.481208, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:46.997725905Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.135534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125666, - "rtt_ms": 1.125666, + "rtt_ns": 1617500, + "rtt_ms": 1.6175, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:46.997728875Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.135553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680555, - "rtt_ms": 1.680555, + "rtt_ns": 1682000, + "rtt_ms": 1.682, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:46.997731355Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:50.135617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262426, - "rtt_ms": 1.262426, + "rtt_ns": 2031334, + "rtt_ms": 2.031334, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:46.997914195Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:50.13584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325256, - "rtt_ms": 1.325256, + "rtt_ns": 1275000, + "rtt_ms": 1.275, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:46.998015294Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:50.136522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443946, - "rtt_ms": 1.443946, + "rtt_ns": 1416667, + "rtt_ms": 1.416667, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:46.998245554Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:50.13678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561666, - "rtt_ms": 1.561666, + "rtt_ns": 1305625, + "rtt_ms": 1.305625, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:46.998316274Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:03:50.136796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554605, - "rtt_ms": 1.554605, + "rtt_ns": 1713709, + "rtt_ms": 1.713709, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:46.998358223Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:50.136821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043497, - "rtt_ms": 1.043497, + "rtt_ns": 1705041, + "rtt_ms": 1.705041, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:46.998748862Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.13683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088827, - "rtt_ms": 1.088827, + "rtt_ns": 1375583, + "rtt_ms": 1.375583, "checkpoint": 0, "vertex_from": "196", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:46.998822192Z" + "timestamp": "2025-11-27T04:03:50.136932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347676, - "rtt_ms": 1.347676, + "rtt_ns": 1328666, + "rtt_ms": 1.328666, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "209", - "timestamp": "2025-11-27T01:23:46.999065011Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:50.136947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430466, - "rtt_ms": 1.430466, + "rtt_ns": 1616167, + "rtt_ms": 1.616167, "checkpoint": 0, "vertex_from": "196", "vertex_to": "449", - "timestamp": "2025-11-27T01:23:46.999158191Z" + "timestamp": "2025-11-27T04:03:50.137142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479966, - "rtt_ms": 1.479966, + "rtt_ns": 1306167, + "rtt_ms": 1.306167, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:46.999210091Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:50.137147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334706, - "rtt_ms": 1.334706, + "rtt_ns": 1647209, + "rtt_ms": 1.647209, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:46.999250681Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.137182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243557, - "rtt_ms": 1.243557, + "rtt_ns": 1458375, + "rtt_ms": 1.458375, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:46.999261621Z" + "vertex_to": "414", + "timestamp": "2025-11-27T04:03:50.137981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517185, - "rtt_ms": 1.517185, + "rtt_ns": 1206750, + "rtt_ms": 1.20675, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:46.999834579Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:03:50.138155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204497, - "rtt_ms": 1.204497, + "rtt_ns": 1351750, + "rtt_ms": 1.35175, "checkpoint": 0, "vertex_from": "196", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:46.999954569Z" + "timestamp": "2025-11-27T04:03:50.138173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192527, - "rtt_ms": 1.192527, + "rtt_ns": 1258417, + "rtt_ms": 1.258417, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:47.000016789Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.138191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693455, - "rtt_ms": 1.693455, + "rtt_ns": 1541583, + "rtt_ms": 1.541583, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:47.000054698Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:50.138372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003747, - "rtt_ms": 1.003747, + "rtt_ns": 1594167, + "rtt_ms": 1.594167, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:47.000070448Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.138375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865284, - "rtt_ms": 1.865284, + "rtt_ns": 1263417, + "rtt_ms": 1.263417, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "414", - "timestamp": "2025-11-27T01:23:47.000112508Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.138406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125587, - "rtt_ms": 1.125587, + "rtt_ns": 1370416, + "rtt_ms": 1.370416, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "718", - "timestamp": "2025-11-27T01:23:47.000285378Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.138518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595315, - "rtt_ms": 1.595315, + "rtt_ns": 1351917, + "rtt_ms": 1.351917, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.000847756Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:03:50.138535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151637, - "rtt_ms": 1.151637, + "rtt_ns": 1756125, + "rtt_ms": 1.756125, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:47.000988396Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:03:50.138553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752685, - "rtt_ms": 1.752685, + "rtt_ns": 1370542, + "rtt_ms": 1.370542, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "497", - "timestamp": "2025-11-27T01:23:47.001016086Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.139746-08:00" }, { "operation": "add_edge", - "rtt_ns": 946728, - "rtt_ms": 0.946728, + "rtt_ns": 1284417, + "rtt_ms": 1.284417, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.001019956Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:50.13982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840385, - "rtt_ms": 1.840385, + "rtt_ns": 1776250, + "rtt_ms": 1.77625, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.001051886Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:50.139932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134186, - "rtt_ms": 1.134186, + "rtt_ns": 1542084, + "rtt_ms": 1.542084, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.001151685Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:50.139949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324116, - "rtt_ms": 1.324116, + "rtt_ns": 1968333, + "rtt_ms": 1.968333, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:47.001279915Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:50.13995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860355, - "rtt_ms": 1.860355, + "rtt_ns": 1436666, + "rtt_ms": 1.436666, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "200", - "timestamp": "2025-11-27T01:23:47.001916963Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:50.139956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803955, - "rtt_ms": 1.803955, + "rtt_ns": 1633833, + "rtt_ms": 1.633833, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.001917843Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.140007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685055, - "rtt_ms": 1.685055, + "rtt_ns": 1845875, + "rtt_ms": 1.845875, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:47.001972153Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.14002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221176, - "rtt_ms": 1.221176, + "rtt_ns": 1839250, + "rtt_ms": 1.83925, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:47.002275892Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:03:50.14003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364896, - "rtt_ms": 1.364896, + "rtt_ns": 1530459, + "rtt_ms": 1.530459, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:47.002355142Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:50.140085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509506, - "rtt_ms": 1.509506, + "rtt_ns": 1261834, + "rtt_ms": 1.261834, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:47.002358762Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:50.141009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407866, - "rtt_ms": 1.407866, + "rtt_ns": 1248333, + "rtt_ms": 1.248333, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:47.002425572Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:50.141069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190517, - "rtt_ms": 1.190517, + "rtt_ns": 1792917, + "rtt_ms": 1.792917, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:47.002472052Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:50.141801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466786, - "rtt_ms": 1.466786, + "rtt_ns": 1810625, + "rtt_ms": 1.810625, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:47.002489062Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.141842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354007, - "rtt_ms": 1.354007, + "rtt_ns": 2009666, + "rtt_ms": 2.009666, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:47.002506972Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:03:50.14196-08:00" }, { "operation": "add_edge", - "rtt_ns": 632688, - "rtt_ms": 0.632688, + "rtt_ns": 1875917, + "rtt_ms": 1.875917, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:47.002551251Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.141971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091497, - "rtt_ms": 1.091497, + "rtt_ns": 2056166, + "rtt_ms": 2.056166, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:47.0030648Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:50.142006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345646, - "rtt_ms": 1.345646, + "rtt_ns": 2079875, + "rtt_ms": 2.079875, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.003265319Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:50.142012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068117, - "rtt_ms": 1.068117, + "rtt_ns": 2036208, + "rtt_ms": 2.036208, "checkpoint": 0, "vertex_from": "196", "vertex_to": "625", - "timestamp": "2025-11-27T01:23:47.003345599Z" + "timestamp": "2025-11-27T04:03:50.142059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554475, - "rtt_ms": 1.554475, + "rtt_ns": 2142875, + "rtt_ms": 2.142875, "checkpoint": 0, - "vertex_from": "197", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.003981677Z" + "vertex_from": "196", + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.142099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711145, - "rtt_ms": 1.711145, + "rtt_ns": 1239083, + "rtt_ms": 1.239083, "checkpoint": 0, - "vertex_from": "196", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.004071957Z" + "vertex_from": "197", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.143339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774315, - "rtt_ms": 1.774315, + "rtt_ns": 1508000, + "rtt_ms": 1.508, "checkpoint": 0, - "vertex_from": "196", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.004131377Z" + "vertex_from": "197", + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:50.143351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683405, - "rtt_ms": 1.683405, + "rtt_ns": 2382375, + "rtt_ms": 2.382375, "checkpoint": 0, "vertex_from": "197", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.004156037Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.143394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609986, - "rtt_ms": 1.609986, + "rtt_ns": 2390417, + "rtt_ms": 2.390417, "checkpoint": 0, "vertex_from": "197", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:47.004163377Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.143461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664345, - "rtt_ms": 1.664345, + "rtt_ns": 1692834, + "rtt_ms": 1.692834, "checkpoint": 0, "vertex_from": "197", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:47.004172357Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.143495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699235, - "rtt_ms": 1.699235, + "rtt_ns": 1535291, + "rtt_ms": 1.535291, "checkpoint": 0, "vertex_from": "197", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.004188937Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:50.143498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558956, - "rtt_ms": 1.558956, + "rtt_ns": 1497750, + "rtt_ms": 1.49775, "checkpoint": 0, "vertex_from": "197", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.004906045Z" + "timestamp": "2025-11-27T04:03:50.143511-08:00" }, { "operation": "add_edge", - "rtt_ns": 950668, - "rtt_ms": 0.950668, + "rtt_ns": 1498958, + "rtt_ms": 1.498958, "checkpoint": 0, "vertex_from": "197", "vertex_to": "208", - "timestamp": "2025-11-27T01:23:47.004933685Z" + "timestamp": "2025-11-27T04:03:50.143558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972134, - "rtt_ms": 1.972134, + "rtt_ns": 1816292, + "rtt_ms": 1.816292, "checkpoint": 0, "vertex_from": "197", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.005038514Z" + "timestamp": "2025-11-27T04:03:50.143789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823155, - "rtt_ms": 1.823155, + "rtt_ns": 1889917, + "rtt_ms": 1.889917, "checkpoint": 0, "vertex_from": "197", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:47.005091844Z" + "timestamp": "2025-11-27T04:03:50.143897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584865, - "rtt_ms": 1.584865, + "rtt_ns": 769000, + "rtt_ms": 0.769, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:47.005743422Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:50.144559-08:00" }, { "operation": "add_edge", - "rtt_ns": 896387, - "rtt_ms": 0.896387, + "rtt_ns": 1135834, + "rtt_ms": 1.135834, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.005811992Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.144695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682455, - "rtt_ms": 1.682455, + "rtt_ns": 1724291, + "rtt_ms": 1.724291, "checkpoint": 0, "vertex_from": "198", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.005847312Z" + "timestamp": "2025-11-27T04:03:50.145119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714265, - "rtt_ms": 1.714265, + "rtt_ns": 2058709, + "rtt_ms": 2.058709, "checkpoint": 0, "vertex_from": "198", "vertex_to": "594", - "timestamp": "2025-11-27T01:23:47.005848002Z" + "timestamp": "2025-11-27T04:03:50.145399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668445, - "rtt_ms": 1.668445, + "rtt_ns": 2185792, + "rtt_ms": 2.185792, "checkpoint": 0, "vertex_from": "198", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.005859242Z" + "timestamp": "2025-11-27T04:03:50.145682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703825, - "rtt_ms": 1.703825, + "rtt_ns": 2238500, + "rtt_ms": 2.2385, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.005877612Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1810225, - "rtt_ms": 1.810225, - "checkpoint": 0, - "vertex_from": "197", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.005883212Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.145737-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072935, - "rtt_ms": 2.072935, + "rtt_ns": 2242625, + "rtt_ms": 2.242625, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:47.007113089Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:50.145754-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245593, - "rtt_ms": 2.245593, + "rtt_ns": 2417375, + "rtt_ms": 2.417375, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:47.007180738Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.145879-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119114, - "rtt_ms": 2.119114, + "rtt_ns": 2848291, + "rtt_ms": 2.848291, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:47.007212058Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:50.1462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653285, - "rtt_ms": 1.653285, + "rtt_ns": 1574583, + "rtt_ms": 1.574583, "checkpoint": 0, - "vertex_from": "199", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.007537797Z" + "vertex_from": "198", + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.146271-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277474, - "rtt_ms": 2.277474, + "rtt_ns": 2387208, + "rtt_ms": 2.387208, "checkpoint": 0, "vertex_from": "198", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.008022556Z" - }, - { - "operation": "add_edge", - "rtt_ns": 955017, - "rtt_ms": 0.955017, - "checkpoint": 0, - "vertex_from": "199", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:47.008071296Z" + "timestamp": "2025-11-27T04:03:50.146285-08:00" }, { "operation": "add_edge", - "rtt_ns": 904798, - "rtt_ms": 0.904798, + "rtt_ns": 1802917, + "rtt_ms": 1.802917, "checkpoint": 0, - "vertex_from": "199", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:47.008087076Z" + "vertex_from": "198", + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:50.146363-08:00" }, { "operation": "add_edge", - "rtt_ns": 2761292, - "rtt_ms": 2.761292, + "rtt_ns": 1316833, + "rtt_ms": 1.316833, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.008640024Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.146437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2792892, - "rtt_ms": 2.792892, + "rtt_ns": 1048709, + "rtt_ms": 1.048709, "checkpoint": 0, - "vertex_from": "198", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.008642524Z" + "vertex_from": "199", + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.146804-08:00" }, { "operation": "add_edge", - "rtt_ns": 2793022, - "rtt_ms": 2.793022, + "rtt_ns": 1421875, + "rtt_ms": 1.421875, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.008643644Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:50.146821-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782392, - "rtt_ms": 2.782392, + "rtt_ns": 1174291, + "rtt_ms": 1.174291, "checkpoint": 0, - "vertex_from": "198", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:47.008644604Z" + "vertex_from": "199", + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.146912-08:00" }, { "operation": "add_edge", - "rtt_ns": 2838052, - "rtt_ms": 2.838052, + "rtt_ns": 1335667, + "rtt_ms": 1.335667, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:47.008651664Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.147019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462576, - "rtt_ms": 1.462576, + "rtt_ns": 1080667, + "rtt_ms": 1.080667, "checkpoint": 0, "vertex_from": "199", "vertex_to": "232", - "timestamp": "2025-11-27T01:23:47.008677744Z" + "timestamp": "2025-11-27T04:03:50.147282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192897, - "rtt_ms": 1.192897, + "rtt_ns": 1326792, + "rtt_ms": 1.326792, "checkpoint": 0, "vertex_from": "199", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.008734274Z" + "timestamp": "2025-11-27T04:03:50.147598-08:00" }, { "operation": "add_edge", - "rtt_ns": 826507, - "rtt_ms": 0.826507, + "rtt_ns": 1257750, + "rtt_ms": 1.25775, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.008901403Z" - }, - { - "operation": "add_edge", - "rtt_ns": 892107, - "rtt_ms": 0.892107, - "checkpoint": 0, - "vertex_from": "200", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.008916033Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.14808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328286, - "rtt_ms": 1.328286, + "rtt_ns": 1732583, + "rtt_ms": 1.732583, "checkpoint": 0, "vertex_from": "200", "vertex_to": "389", - "timestamp": "2025-11-27T01:23:47.009416702Z" + "timestamp": "2025-11-27T04:03:50.148171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078097, - "rtt_ms": 1.078097, + "rtt_ns": 1201708, + "rtt_ms": 1.201708, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:47.009757531Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.148223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150747, - "rtt_ms": 1.150747, + "rtt_ns": 1475375, + "rtt_ms": 1.475375, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.009798571Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.14828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181037, - "rtt_ms": 1.181037, + "rtt_ns": 738875, + "rtt_ms": 0.738875, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.009825951Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:50.148338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636695, - "rtt_ms": 1.636695, + "rtt_ns": 1104083, + "rtt_ms": 1.104083, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.010279149Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.148386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653465, - "rtt_ms": 1.653465, + "rtt_ns": 1569708, + "rtt_ms": 1.569708, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.010307599Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.148483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719895, - "rtt_ms": 1.719895, + "rtt_ns": 2806042, + "rtt_ms": 2.806042, "checkpoint": 0, - "vertex_from": "200", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.010455849Z" + "vertex_from": "199", + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:50.148686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814425, - "rtt_ms": 1.814425, + "rtt_ns": 2829125, + "rtt_ms": 2.829125, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.010461049Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.149118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564726, - "rtt_ms": 1.564726, + "rtt_ns": 2814250, + "rtt_ms": 2.81425, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.010481919Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.149179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084677, - "rtt_ms": 1.084677, + "rtt_ns": 1487167, + "rtt_ms": 1.487167, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "819", - "timestamp": "2025-11-27T01:23:47.010502969Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.149659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599066, - "rtt_ms": 1.599066, + "rtt_ns": 1336958, + "rtt_ms": 1.336958, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:47.010506359Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:50.149676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270196, - "rtt_ms": 1.270196, + "rtt_ns": 1488042, + "rtt_ms": 1.488042, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.011030377Z" + "vertex_to": "819", + "timestamp": "2025-11-27T04:03:50.14977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508325, - "rtt_ms": 1.508325, + "rtt_ns": 1551167, + "rtt_ms": 1.551167, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.011308426Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.149775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598545, - "rtt_ms": 1.598545, + "rtt_ns": 1350917, + "rtt_ms": 1.350917, "checkpoint": 0, "vertex_from": "200", "vertex_to": "263", - "timestamp": "2025-11-27T01:23:47.011426026Z" + "timestamp": "2025-11-27T04:03:50.149835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119267, - "rtt_ms": 1.119267, + "rtt_ns": 1501000, + "rtt_ms": 1.501, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.011428636Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.149891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017847, - "rtt_ms": 1.017847, + "rtt_ns": 1810625, + "rtt_ms": 1.810625, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.011500736Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.149893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319196, - "rtt_ms": 1.319196, + "rtt_ns": 1409917, + "rtt_ms": 1.409917, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.011601475Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.15053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818054, - "rtt_ms": 1.818054, + "rtt_ns": 1476125, + "rtt_ms": 1.476125, "checkpoint": 0, "vertex_from": "200", "vertex_to": "306", - "timestamp": "2025-11-27T01:23:47.012275423Z" + "timestamp": "2025-11-27T04:03:50.150656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797004, - "rtt_ms": 1.797004, + "rtt_ns": 1992000, + "rtt_ms": 1.992, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "232", - "timestamp": "2025-11-27T01:23:47.012301903Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.150679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843604, - "rtt_ms": 1.843604, + "rtt_ns": 1113541, + "rtt_ms": 1.113541, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.012308443Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:03:50.150884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854884, - "rtt_ms": 1.854884, + "rtt_ns": 1123792, + "rtt_ms": 1.123792, "checkpoint": 0, "vertex_from": "200", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.012362483Z" + "timestamp": "2025-11-27T04:03:50.1509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351196, - "rtt_ms": 1.351196, + "rtt_ns": 1323750, + "rtt_ms": 1.32375, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:47.012383183Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.151001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082947, - "rtt_ms": 1.082947, + "rtt_ns": 1209417, + "rtt_ms": 1.209417, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.012392813Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:50.151045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650905, - "rtt_ms": 1.650905, + "rtt_ns": 1163791, + "rtt_ms": 1.163791, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "677", - "timestamp": "2025-11-27T01:23:47.013078671Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.152066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736465, - "rtt_ms": 1.736465, + "rtt_ns": 2200583, + "rtt_ms": 2.200583, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "694", - "timestamp": "2025-11-27T01:23:47.013168981Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.152094-08:00" }, { "operation": "add_edge", - "rtt_ns": 955768, - "rtt_ms": 0.955768, + "rtt_ns": 1236042, + "rtt_ms": 1.236042, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.013259591Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:50.152283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819665, - "rtt_ms": 1.819665, + "rtt_ns": 1463917, + "rtt_ms": 1.463917, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.013322201Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:50.152349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072797, - "rtt_ms": 1.072797, + "rtt_ns": 1899208, + "rtt_ms": 1.899208, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:47.01335018Z" + "vertex_to": "694", + "timestamp": "2025-11-27T04:03:50.152432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769515, - "rtt_ms": 1.769515, + "rtt_ns": 1852875, + "rtt_ms": 1.852875, "checkpoint": 0, "vertex_from": "200", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.01337242Z" + "timestamp": "2025-11-27T04:03:50.152532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103687, - "rtt_ms": 1.103687, + "rtt_ns": 1675042, + "rtt_ms": 1.675042, "checkpoint": 0, "vertex_from": "200", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.01341396Z" + "timestamp": "2025-11-27T04:03:50.152677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024527, - "rtt_ms": 1.024527, + "rtt_ns": 2864833, + "rtt_ms": 2.864833, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:47.01341895Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:03:50.15276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252957, - "rtt_ms": 1.252957, + "rtt_ns": 903833, + "rtt_ms": 0.903833, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:47.01363916Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:50.152999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604456, - "rtt_ms": 1.604456, + "rtt_ns": 2362167, + "rtt_ms": 2.362167, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:47.013969459Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.15302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492276, - "rtt_ms": 1.492276, + "rtt_ns": 1158625, + "rtt_ms": 1.158625, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.014572757Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.153225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472806, - "rtt_ms": 1.472806, + "rtt_ns": 3899583, + "rtt_ms": 3.899583, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:47.014643427Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.153561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412466, - "rtt_ms": 1.412466, + "rtt_ns": 1187584, + "rtt_ms": 1.187584, "checkpoint": 0, "vertex_from": "200", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:47.014674157Z" + "timestamp": "2025-11-27T04:03:50.153621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356377, - "rtt_ms": 1.356377, + "rtt_ns": 1458667, + "rtt_ms": 1.458667, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:47.014709007Z" - }, - { - "operation": "add_edge", - "rtt_ns": 783438, - "rtt_ms": 0.783438, - "checkpoint": 0, - "vertex_from": "201", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:47.014754287Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.153743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497105, - "rtt_ms": 1.497105, + "rtt_ns": 1317291, + "rtt_ms": 1.317291, "checkpoint": 0, "vertex_from": "200", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.014820856Z" + "timestamp": "2025-11-27T04:03:50.153851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416036, - "rtt_ms": 1.416036, + "rtt_ns": 1532833, + "rtt_ms": 1.532833, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.014836756Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:50.153882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530316, - "rtt_ms": 1.530316, + "rtt_ns": 1321125, + "rtt_ms": 1.321125, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.014904976Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.153999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657665, - "rtt_ms": 1.657665, + "rtt_ns": 2010875, + "rtt_ms": 2.010875, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:47.015298705Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:50.155011-08:00" }, { "operation": "add_edge", - "rtt_ns": 765918, - "rtt_ms": 0.765918, + "rtt_ns": 1283417, + "rtt_ms": 1.283417, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.015440865Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.155028-08:00" }, { "operation": "add_edge", - "rtt_ns": 947807, - "rtt_ms": 0.947807, + "rtt_ns": 1480208, + "rtt_ms": 1.480208, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:47.015521864Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:50.155043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151934, - "rtt_ms": 2.151934, + "rtt_ns": 2296291, + "rtt_ms": 2.296291, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:47.015567234Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:50.155059-08:00" }, { "operation": "add_edge", - "rtt_ns": 948737, - "rtt_ms": 0.948737, + "rtt_ns": 2184417, + "rtt_ms": 2.184417, "checkpoint": 0, - "vertex_from": "201", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:47.015594074Z" + "vertex_from": "200", + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.155207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465665, - "rtt_ms": 1.465665, + "rtt_ns": 2021875, + "rtt_ms": 2.021875, "checkpoint": 0, - "vertex_from": "201", - "vertex_to": "245", - "timestamp": "2025-11-27T01:23:47.016221032Z" + "vertex_from": "200", + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:50.155249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655265, - "rtt_ms": 1.655265, + "rtt_ns": 1366666, + "rtt_ms": 1.366666, "checkpoint": 0, "vertex_from": "201", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.016365312Z" + "timestamp": "2025-11-27T04:03:50.15525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577136, - "rtt_ms": 1.577136, + "rtt_ns": 1647833, + "rtt_ms": 1.647833, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.016398802Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.15527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574106, - "rtt_ms": 1.574106, + "rtt_ns": 1376500, + "rtt_ms": 1.3765, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:47.016412362Z" + "vertex_to": "245", + "timestamp": "2025-11-27T04:03:50.155376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520976, - "rtt_ms": 1.520976, + "rtt_ns": 2171625, + "rtt_ms": 2.171625, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.016427212Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.156024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134907, - "rtt_ms": 1.134907, + "rtt_ns": 1577583, + "rtt_ms": 1.577583, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.016435022Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.156589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665075, - "rtt_ms": 1.665075, + "rtt_ns": 1563250, + "rtt_ms": 1.56325, "checkpoint": 0, - "vertex_from": "202", + "vertex_from": "201", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.017233689Z" + "timestamp": "2025-11-27T04:03:50.156607-08:00" }, { "operation": "add_edge", - "rtt_ns": 2446812, - "rtt_ms": 2.446812, + "rtt_ns": 1415709, + "rtt_ms": 1.415709, "checkpoint": 0, "vertex_from": "202", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.017890027Z" + "timestamp": "2025-11-27T04:03:50.156624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395883, - "rtt_ms": 2.395883, + "rtt_ns": 1471791, + "rtt_ms": 1.471791, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.017918807Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.156723-08:00" }, { "operation": "add_edge", - "rtt_ns": 2377403, - "rtt_ms": 2.377403, + "rtt_ns": 1710958, + "rtt_ms": 1.710958, "checkpoint": 0, - "vertex_from": "202", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:47.017973097Z" + "vertex_from": "201", + "vertex_to": "583", + "timestamp": "2025-11-27T04:03:50.15674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836235, - "rtt_ms": 1.836235, + "rtt_ns": 1758334, + "rtt_ms": 1.758334, + "checkpoint": 0, + "vertex_from": "201", + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.156818-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1567000, + "rtt_ms": 1.567, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:47.018059067Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.156818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922244, - "rtt_ms": 1.922244, + "rtt_ns": 1801167, + "rtt_ms": 1.801167, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.018350766Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:50.157072-08:00" }, { "operation": "add_edge", - "rtt_ns": 2136663, - "rtt_ms": 2.136663, + "rtt_ns": 1387917, + "rtt_ms": 1.387917, "checkpoint": 0, "vertex_from": "202", "vertex_to": "589", - "timestamp": "2025-11-27T01:23:47.018503215Z" + "timestamp": "2025-11-27T04:03:50.157413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108133, - "rtt_ms": 2.108133, + "rtt_ns": 2166000, + "rtt_ms": 2.166, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:47.018508705Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:03:50.157543-08:00" }, { "operation": "add_edge", - "rtt_ns": 2478772, - "rtt_ms": 2.478772, + "rtt_ns": 1446583, + "rtt_ms": 1.446583, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "281", - "timestamp": "2025-11-27T01:23:47.018892474Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:50.158037-08:00" }, { "operation": "add_edge", - "rtt_ns": 909427, - "rtt_ms": 0.909427, + "rtt_ns": 1445917, + "rtt_ms": 1.445917, "checkpoint": 0, - "vertex_from": "203", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.018971814Z" + "vertex_from": "202", + "vertex_to": "281", + "timestamp": "2025-11-27T04:03:50.158054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060207, - "rtt_ms": 1.060207, + "rtt_ns": 1303875, + "rtt_ms": 1.303875, "checkpoint": 0, "vertex_from": "203", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:47.018983134Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.158376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009547, - "rtt_ms": 1.009547, + "rtt_ns": 1758333, + "rtt_ms": 1.758333, "checkpoint": 0, - "vertex_from": "203", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.018984644Z" + "vertex_from": "202", + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.158383-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567212, - "rtt_ms": 2.567212, + "rtt_ns": 1748459, + "rtt_ms": 1.748459, "checkpoint": 0, "vertex_from": "202", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.019005344Z" + "timestamp": "2025-11-27T04:03:50.158472-08:00" }, { "operation": "add_edge", - "rtt_ns": 700798, - "rtt_ms": 0.700798, + "rtt_ns": 1668333, + "rtt_ms": 1.668333, "checkpoint": 0, "vertex_from": "203", - "vertex_to": "224", - "timestamp": "2025-11-27T01:23:47.019053114Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:50.158487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699995, - "rtt_ms": 1.699995, + "rtt_ns": 1078708, + "rtt_ms": 1.078708, + "checkpoint": 0, + "vertex_from": "203", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.158495-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1756875, + "rtt_ms": 1.756875, "checkpoint": 0, "vertex_from": "202", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.019591652Z" + "timestamp": "2025-11-27T04:03:50.158576-08:00" }, { "operation": "add_edge", - "rtt_ns": 2490983, - "rtt_ms": 2.490983, + "rtt_ns": 1841542, + "rtt_ms": 1.841542, "checkpoint": 0, "vertex_from": "202", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.019725872Z" + "timestamp": "2025-11-27T04:03:50.158582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384486, - "rtt_ms": 1.384486, + "rtt_ns": 1312959, + "rtt_ms": 1.312959, "checkpoint": 0, - "vertex_from": "204", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:47.019888941Z" + "vertex_from": "203", + "vertex_to": "224", + "timestamp": "2025-11-27T04:03:50.158857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454616, - "rtt_ms": 1.454616, + "rtt_ns": 1227375, + "rtt_ms": 1.227375, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "220", - "timestamp": "2025-11-27T01:23:47.019965271Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:50.159605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048847, - "rtt_ms": 1.048847, + "rtt_ns": 1308875, + "rtt_ms": 1.308875, "checkpoint": 0, "vertex_from": "204", "vertex_to": "306", - "timestamp": "2025-11-27T01:23:47.020022871Z" + "timestamp": "2025-11-27T04:03:50.159692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146757, - "rtt_ms": 1.146757, + "rtt_ns": 1657667, + "rtt_ms": 1.657667, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.020041901Z" + "vertex_to": "220", + "timestamp": "2025-11-27T04:03:50.159713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118947, - "rtt_ms": 1.118947, + "rtt_ns": 1771041, + "rtt_ms": 1.771041, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:47.020104571Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.159809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134327, - "rtt_ms": 1.134327, + "rtt_ns": 934250, + "rtt_ms": 0.93425, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.020141731Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:03:50.160193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157607, - "rtt_ms": 1.157607, + "rtt_ns": 1688500, + "rtt_ms": 1.6885, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "437", - "timestamp": "2025-11-27T01:23:47.020143731Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:50.160997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540285, - "rtt_ms": 1.540285, + "rtt_ns": 1498375, + "rtt_ms": 1.498375, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:47.021994265Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.161192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476735, - "rtt_ms": 1.476735, + "rtt_ns": 2075000, + "rtt_ms": 2.075, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.022022265Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:50.161312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540555, - "rtt_ms": 1.540555, + "rtt_ns": 1769541, + "rtt_ms": 1.769541, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.022029595Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.161375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527095, - "rtt_ms": 1.527095, + "rtt_ns": 1778500, + "rtt_ms": 1.7785, + "checkpoint": 0, + "vertex_from": "204", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.161492-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1781375, + "rtt_ms": 1.781375, "checkpoint": 0, "vertex_from": "204", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.022043155Z" + "timestamp": "2025-11-27T04:03:50.161594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545935, - "rtt_ms": 1.545935, + "rtt_ns": 2329167, + "rtt_ms": 2.329167, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.022047955Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:50.161628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526345, - "rtt_ms": 1.526345, + "rtt_ns": 1508041, + "rtt_ms": 1.508041, "checkpoint": 0, "vertex_from": "204", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.022048015Z" + "timestamp": "2025-11-27T04:03:50.161702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597185, - "rtt_ms": 1.597185, + "rtt_ns": 2530958, + "rtt_ms": 2.530958, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:47.022070385Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.161813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625855, - "rtt_ms": 1.625855, + "rtt_ns": 1145666, + "rtt_ms": 1.145666, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:47.022072675Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.162144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624505, - "rtt_ms": 1.624505, + "rtt_ns": 1006500, + "rtt_ms": 1.0065, "checkpoint": 0, - "vertex_from": "204", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.022107145Z" + "vertex_from": "205", + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.162383-08:00" }, { "operation": "add_edge", - "rtt_ns": 2476723, - "rtt_ms": 2.476723, + "rtt_ns": 3082708, + "rtt_ms": 3.082708, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.023013763Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:50.162403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563256, - "rtt_ms": 1.563256, + "rtt_ns": 1345166, + "rtt_ms": 1.345166, "checkpoint": 0, - "vertex_from": "206", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.023615271Z" + "vertex_from": "204", + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.162538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625636, - "rtt_ms": 1.625636, + "rtt_ns": 1071084, + "rtt_ms": 1.071084, "checkpoint": 0, - "vertex_from": "206", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:47.023699901Z" + "vertex_from": "205", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.162667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598346, - "rtt_ms": 1.598346, + "rtt_ns": 1581667, + "rtt_ms": 1.581667, "checkpoint": 0, - "vertex_from": "206", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.023710081Z" + "vertex_from": "204", + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.162895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710956, - "rtt_ms": 1.710956, + "rtt_ns": 1576667, + "rtt_ms": 1.576667, "checkpoint": 0, "vertex_from": "205", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.023734991Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:50.16307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685336, - "rtt_ms": 1.685336, + "rtt_ns": 1500708, + "rtt_ms": 1.500708, "checkpoint": 0, "vertex_from": "205", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.023736651Z" + "timestamp": "2025-11-27T04:03:50.16313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709086, - "rtt_ms": 1.709086, + "rtt_ns": 1828041, + "rtt_ms": 1.828041, "checkpoint": 0, - "vertex_from": "205", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.023753401Z" + "vertex_from": "206", + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:50.163974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701375, - "rtt_ms": 1.701375, + "rtt_ns": 1452959, + "rtt_ms": 1.452959, "checkpoint": 0, "vertex_from": "206", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.02377466Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.163991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744955, - "rtt_ms": 1.744955, + "rtt_ns": 2306542, + "rtt_ms": 2.306542, "checkpoint": 0, - "vertex_from": "205", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:47.02377848Z" + "vertex_from": "206", + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.16401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790355, - "rtt_ms": 1.790355, + "rtt_ns": 2210750, + "rtt_ms": 2.21075, "checkpoint": 0, - "vertex_from": "204", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.02378776Z" + "vertex_from": "206", + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.164024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606525, - "rtt_ms": 1.606525, + "rtt_ns": 1634208, + "rtt_ms": 1.634208, "checkpoint": 0, "vertex_from": "206", "vertex_to": "785", - "timestamp": "2025-11-27T01:23:47.024626318Z" + "timestamp": "2025-11-27T04:03:50.164038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588265, - "rtt_ms": 1.588265, + "rtt_ns": 1377125, + "rtt_ms": 1.377125, "checkpoint": 0, - "vertex_from": "207", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.025325606Z" + "vertex_from": "206", + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.164045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704174, - "rtt_ms": 1.704174, + "rtt_ns": 1734750, + "rtt_ms": 1.73475, "checkpoint": 0, - "vertex_from": "208", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.025442985Z" + "vertex_from": "206", + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.164119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670605, - "rtt_ms": 1.670605, + "rtt_ns": 1582250, + "rtt_ms": 1.58225, "checkpoint": 0, - "vertex_from": "208", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:47.025452205Z" + "vertex_from": "207", + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:50.164478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752744, - "rtt_ms": 1.752744, + "rtt_ns": 1556458, + "rtt_ms": 1.556458, "checkpoint": 0, "vertex_from": "207", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:47.025466325Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.164629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724115, - "rtt_ms": 1.724115, + "rtt_ns": 1822500, + "rtt_ms": 1.8225, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.025513955Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.164953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782045, - "rtt_ms": 1.782045, + "rtt_ns": 1120958, + "rtt_ms": 1.120958, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.025558195Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.1656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943724, - "rtt_ms": 1.943724, + "rtt_ns": 1869208, + "rtt_ms": 1.869208, "checkpoint": 0, - "vertex_from": "206", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:47.025561385Z" + "vertex_from": "208", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.165989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816934, - "rtt_ms": 1.816934, + "rtt_ns": 2106541, + "rtt_ms": 2.106541, "checkpoint": 0, "vertex_from": "208", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.025573165Z" + "timestamp": "2025-11-27T04:03:50.166081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875784, - "rtt_ms": 1.875784, + "rtt_ns": 2138250, + "rtt_ms": 2.13825, "checkpoint": 0, - "vertex_from": "206", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.025577415Z" + "vertex_from": "208", + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.16613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690325, - "rtt_ms": 1.690325, + "rtt_ns": 2138750, + "rtt_ms": 2.13875, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:47.026319423Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:50.166149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013227, - "rtt_ms": 1.013227, + "rtt_ns": 1619583, + "rtt_ms": 1.619583, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.026340393Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.166249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586046, - "rtt_ms": 1.586046, + "rtt_ns": 2283625, + "rtt_ms": 2.283625, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.027054541Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.166322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499496, - "rtt_ms": 1.499496, + "rtt_ns": 2346959, + "rtt_ms": 2.346959, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:47.027062341Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.166393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694415, - "rtt_ms": 1.694415, + "rtt_ns": 2515792, + "rtt_ms": 2.515792, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.0272541Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.16654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890895, - "rtt_ms": 1.890895, + "rtt_ns": 1979750, + "rtt_ms": 1.97975, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.02734525Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.166934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017854, - "rtt_ms": 2.017854, + "rtt_ns": 1666250, + "rtt_ms": 1.66625, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.027461779Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.167269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928584, - "rtt_ms": 1.928584, + "rtt_ns": 1204791, + "rtt_ms": 1.204791, "checkpoint": 0, "vertex_from": "208", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:47.027506369Z" + "timestamp": "2025-11-27T04:03:50.167287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016764, - "rtt_ms": 2.016764, + "rtt_ns": 1307875, + "rtt_ms": 1.307875, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.027532619Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:50.167298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2309343, - "rtt_ms": 2.309343, + "rtt_ns": 1339250, + "rtt_ms": 1.33925, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:47.027889368Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:50.167489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685015, - "rtt_ms": 1.685015, + "rtt_ns": 1286042, + "rtt_ms": 1.286042, "checkpoint": 0, "vertex_from": "208", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.028027188Z" + "timestamp": "2025-11-27T04:03:50.167536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831054, - "rtt_ms": 1.831054, + "rtt_ns": 1427750, + "rtt_ms": 1.42775, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:47.028153187Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:03:50.167559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246636, - "rtt_ms": 1.246636, + "rtt_ns": 1509833, + "rtt_ms": 1.509833, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.028310797Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.168445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526495, - "rtt_ms": 1.526495, + "rtt_ns": 2054125, + "rtt_ms": 2.054125, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.028582086Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.168595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964635, - "rtt_ms": 1.964635, + "rtt_ns": 1431042, + "rtt_ms": 1.431042, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.029219315Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:50.16873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963024, - "rtt_ms": 1.963024, + "rtt_ns": 2420208, + "rtt_ms": 2.420208, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.029309044Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.168744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781855, - "rtt_ms": 1.781855, + "rtt_ns": 1551667, + "rtt_ms": 1.551667, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:47.029315454Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.168821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899455, - "rtt_ms": 1.899455, + "rtt_ns": 2463542, + "rtt_ms": 2.463542, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.029363504Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.168861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872665, - "rtt_ms": 1.872665, + "rtt_ns": 1339625, + "rtt_ms": 1.339625, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.029380014Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:03:50.168876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540276, - "rtt_ms": 1.540276, + "rtt_ns": 1603709, + "rtt_ms": 1.603709, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "357", - "timestamp": "2025-11-27T01:23:47.029569144Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.168891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719835, - "rtt_ms": 1.719835, + "rtt_ns": 1503708, + "rtt_ms": 1.503708, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.029610963Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:50.169066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328876, - "rtt_ms": 1.328876, + "rtt_ns": 1279417, + "rtt_ms": 1.279417, "checkpoint": 0, "vertex_from": "208", "vertex_to": "676", - "timestamp": "2025-11-27T01:23:47.029641093Z" + "timestamp": "2025-11-27T04:03:50.169726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544996, - "rtt_ms": 1.544996, + "rtt_ns": 1322959, + "rtt_ms": 1.322959, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:47.029699393Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.16992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133727, - "rtt_ms": 1.133727, + "rtt_ns": 1457875, + "rtt_ms": 1.457875, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.029716973Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:50.170335-08:00" }, { "operation": "add_edge", - "rtt_ns": 727978, - "rtt_ms": 0.727978, + "rtt_ns": 1485709, + "rtt_ms": 1.485709, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.029948092Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.170347-08:00" }, { "operation": "add_edge", - "rtt_ns": 674138, - "rtt_ms": 0.674138, + "rtt_ns": 1469000, + "rtt_ms": 1.469, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.029984182Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:03:50.170361-08:00" }, { "operation": "add_edge", - "rtt_ns": 713058, - "rtt_ms": 0.713058, + "rtt_ns": 1684709, + "rtt_ms": 1.684709, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:47.030029372Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.17043-08:00" }, { "operation": "add_edge", - "rtt_ns": 720388, - "rtt_ms": 0.720388, + "rtt_ns": 1392750, + "rtt_ms": 1.39275, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.030084652Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.170461-08:00" }, { "operation": "add_edge", - "rtt_ns": 709598, - "rtt_ms": 0.709598, + "rtt_ns": 1649166, + "rtt_ms": 1.649166, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:47.030090862Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:50.170471-08:00" }, { "operation": "add_edge", - "rtt_ns": 647789, - "rtt_ms": 0.647789, + "rtt_ns": 1831542, + "rtt_ms": 1.831542, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.030260722Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.170562-08:00" }, { "operation": "add_edge", - "rtt_ns": 715588, - "rtt_ms": 0.715588, + "rtt_ns": 3195000, + "rtt_ms": 3.195, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:47.030288012Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.170685-08:00" }, { "operation": "add_edge", - "rtt_ns": 667838, - "rtt_ms": 0.667838, + "rtt_ns": 1749458, + "rtt_ms": 1.749458, "checkpoint": 0, "vertex_from": "208", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:47.030309771Z" + "timestamp": "2025-11-27T04:03:50.171477-08:00" }, { "operation": "add_edge", - "rtt_ns": 951277, - "rtt_ms": 0.951277, + "rtt_ns": 1573791, + "rtt_ms": 1.573791, "checkpoint": 0, "vertex_from": "208", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.03065188Z" + "timestamp": "2025-11-27T04:03:50.171494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069137, - "rtt_ms": 1.069137, + "rtt_ns": 1325500, + "rtt_ms": 1.3255, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.03078809Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.171756-08:00" }, { "operation": "add_edge", - "rtt_ns": 853488, - "rtt_ms": 0.853488, + "rtt_ns": 1436125, + "rtt_ms": 1.436125, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.03088423Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.171774-08:00" }, { "operation": "add_edge", - "rtt_ns": 829448, - "rtt_ms": 0.829448, + "rtt_ns": 1363708, + "rtt_ms": 1.363708, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:47.03091531Z" + "vertex_to": "318", + "timestamp": "2025-11-27T04:03:50.171836-08:00" }, { "operation": "add_edge", - "rtt_ns": 985368, - "rtt_ms": 0.985368, + "rtt_ns": 1517291, + "rtt_ms": 1.517291, "checkpoint": 0, "vertex_from": "208", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:47.03093479Z" + "timestamp": "2025-11-27T04:03:50.171865-08:00" }, { "operation": "add_edge", - "rtt_ns": 966537, - "rtt_ms": 0.966537, + "rtt_ns": 1514209, + "rtt_ms": 1.514209, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "318", - "timestamp": "2025-11-27T01:23:47.031058959Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.171876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099777, - "rtt_ms": 1.099777, + "rtt_ns": 1380500, + "rtt_ms": 1.3805, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:47.031085629Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:50.171943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588536, - "rtt_ms": 1.588536, + "rtt_ns": 1272625, + "rtt_ms": 1.272625, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:47.031899347Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.171958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161987, - "rtt_ms": 1.161987, + "rtt_ns": 1497333, + "rtt_ms": 1.497333, "checkpoint": 0, - "vertex_from": "209", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.031951347Z" + "vertex_from": "208", + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.171959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718565, - "rtt_ms": 1.718565, + "rtt_ns": 1346667, + "rtt_ms": 1.346667, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:47.031980587Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:50.172825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064117, - "rtt_ms": 1.064117, + "rtt_ns": 1107542, + "rtt_ms": 1.107542, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.031984657Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.172864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362647, - "rtt_ms": 1.362647, + "rtt_ns": 1375459, + "rtt_ms": 1.375459, "checkpoint": 0, "vertex_from": "208", "vertex_to": "376", - "timestamp": "2025-11-27T01:23:47.032016007Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1973534, - "rtt_ms": 1.973534, - "checkpoint": 0, - "vertex_from": "208", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.032263116Z" + "timestamp": "2025-11-27T04:03:50.172871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482785, - "rtt_ms": 1.482785, + "rtt_ns": 1372584, + "rtt_ms": 1.372584, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:47.032418585Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.173147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617265, - "rtt_ms": 1.617265, + "rtt_ns": 1288042, + "rtt_ms": 1.288042, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.032502925Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.173248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476666, - "rtt_ms": 1.476666, + "rtt_ns": 1320875, + "rtt_ms": 1.320875, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.032537415Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.173264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530276, - "rtt_ms": 1.530276, + "rtt_ns": 1546791, + "rtt_ms": 1.546791, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.032618165Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.173383-08:00" }, { "operation": "add_edge", - "rtt_ns": 789838, - "rtt_ms": 0.789838, + "rtt_ns": 1471458, + "rtt_ms": 1.471458, "checkpoint": 0, "vertex_from": "209", "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.032690625Z" + "timestamp": "2025-11-27T04:03:50.173431-08:00" }, { "operation": "add_edge", - "rtt_ns": 716378, - "rtt_ms": 0.716378, + "rtt_ns": 1747125, + "rtt_ms": 1.747125, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:47.032703635Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.173624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165476, - "rtt_ms": 1.165476, + "rtt_ns": 1784167, + "rtt_ms": 1.784167, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:47.033183933Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:50.173651-08:00" }, { "operation": "add_edge", - "rtt_ns": 802438, - "rtt_ms": 0.802438, + "rtt_ns": 1352250, + "rtt_ms": 1.35225, "checkpoint": 0, "vertex_from": "209", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.033222513Z" + "timestamp": "2025-11-27T04:03:50.174601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320866, - "rtt_ms": 1.320866, + "rtt_ns": 2001208, + "rtt_ms": 2.001208, "checkpoint": 0, "vertex_from": "209", "vertex_to": "538", - "timestamp": "2025-11-27T01:23:47.033302603Z" + "timestamp": "2025-11-27T04:03:50.174829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057277, - "rtt_ms": 1.057277, + "rtt_ns": 2670542, + "rtt_ms": 2.670542, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.033323803Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:50.175543-08:00" }, { "operation": "add_edge", - "rtt_ns": 862448, - "rtt_ms": 0.862448, + "rtt_ns": 2237958, + "rtt_ms": 2.237958, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "240", - "timestamp": "2025-11-27T01:23:47.033366373Z" + "vertex_to": "374", + "timestamp": "2025-11-27T04:03:50.17567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485225, - "rtt_ms": 1.485225, + "rtt_ns": 2038084, + "rtt_ms": 2.038084, "checkpoint": 0, - "vertex_from": "209", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.033437872Z" + "vertex_from": "210", + "vertex_to": "852", + "timestamp": "2025-11-27T04:03:50.175689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615225, - "rtt_ms": 1.615225, + "rtt_ns": 2425000, + "rtt_ms": 2.425, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.03415491Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:03:50.17569-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2065916, + "rtt_ms": 2.065916, + "checkpoint": 0, + "vertex_from": "210", + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.17569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573065, - "rtt_ms": 1.573065, + "rtt_ns": 2371375, + "rtt_ms": 2.371375, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "374", - "timestamp": "2025-11-27T01:23:47.0341932Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.175756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540295, - "rtt_ms": 1.540295, + "rtt_ns": 2983875, + "rtt_ms": 2.983875, "checkpoint": 0, - "vertex_from": "210", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:47.03424522Z" + "vertex_from": "209", + "vertex_to": "773", + "timestamp": "2025-11-27T04:03:50.17585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589425, - "rtt_ms": 1.589425, + "rtt_ns": 2826209, + "rtt_ms": 2.826209, "checkpoint": 0, - "vertex_from": "210", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:47.03428243Z" + "vertex_from": "209", + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.175974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299096, - "rtt_ms": 1.299096, + "rtt_ns": 1942416, + "rtt_ms": 1.942416, "checkpoint": 0, "vertex_from": "210", "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.034522779Z" + "timestamp": "2025-11-27T04:03:50.176774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409536, - "rtt_ms": 1.409536, + "rtt_ns": 1324625, + "rtt_ms": 1.324625, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "391", - "timestamp": "2025-11-27T01:23:47.034595889Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:50.176997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411536, - "rtt_ms": 1.411536, + "rtt_ns": 2508875, + "rtt_ms": 2.508875, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.034715079Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:03:50.177111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465605, - "rtt_ms": 1.465605, + "rtt_ns": 1489209, + "rtt_ms": 1.489209, "checkpoint": 0, "vertex_from": "210", "vertex_to": "456", - "timestamp": "2025-11-27T01:23:47.034833338Z" + "timestamp": "2025-11-27T04:03:50.17718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428176, - "rtt_ms": 1.428176, + "rtt_ns": 1380000, + "rtt_ms": 1.38, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.034867518Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:50.177231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558685, - "rtt_ms": 1.558685, + "rtt_ns": 1512375, + "rtt_ms": 1.512375, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:47.034884908Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:50.17727-08:00" }, { "operation": "add_edge", - "rtt_ns": 811328, - "rtt_ms": 0.811328, + "rtt_ns": 1348833, + "rtt_ms": 1.348833, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.034967288Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.177324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155227, - "rtt_ms": 1.155227, + "rtt_ns": 1748500, + "rtt_ms": 1.7485, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:47.035350437Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.17744-08:00" }, { "operation": "add_edge", - "rtt_ns": 831158, - "rtt_ms": 0.831158, + "rtt_ns": 1779458, + "rtt_ms": 1.779458, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:47.035356767Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.177471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081447, - "rtt_ms": 1.081447, + "rtt_ns": 1936417, + "rtt_ms": 1.936417, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.035365047Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.17748-08:00" }, { "operation": "add_edge", - "rtt_ns": 776788, - "rtt_ms": 0.776788, + "rtt_ns": 1565208, + "rtt_ms": 1.565208, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:47.035374517Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.178342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132607, - "rtt_ms": 1.132607, + "rtt_ns": 1306333, + "rtt_ms": 1.306333, "checkpoint": 0, - "vertex_from": "210", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:47.035379187Z" + "vertex_from": "211", + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.178578-08:00" }, { "operation": "add_edge", - "rtt_ns": 668988, - "rtt_ms": 0.668988, + "rtt_ns": 1632500, + "rtt_ms": 1.6325, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.035385557Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:50.178631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181877, - "rtt_ms": 1.181877, + "rtt_ns": 1438292, + "rtt_ms": 1.438292, "checkpoint": 0, "vertex_from": "210", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.036050425Z" + "timestamp": "2025-11-27T04:03:50.178672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440336, - "rtt_ms": 1.440336, + "rtt_ns": 1518417, + "rtt_ms": 1.518417, "checkpoint": 0, "vertex_from": "210", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:47.036274854Z" + "timestamp": "2025-11-27T04:03:50.178699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431856, - "rtt_ms": 1.431856, + "rtt_ns": 1288833, + "rtt_ms": 1.288833, "checkpoint": 0, "vertex_from": "211", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.036318284Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.178731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563455, - "rtt_ms": 1.563455, + "rtt_ns": 1414792, + "rtt_ms": 1.414792, "checkpoint": 0, "vertex_from": "211", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.036917532Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.178739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541435, - "rtt_ms": 1.541435, + "rtt_ns": 1358667, + "rtt_ms": 1.358667, "checkpoint": 0, - "vertex_from": "212", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:47.036923482Z" + "vertex_from": "211", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.178831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544795, - "rtt_ms": 1.544795, + "rtt_ns": 1736500, + "rtt_ms": 1.7365, "checkpoint": 0, - "vertex_from": "212", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:47.036927342Z" + "vertex_from": "210", + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.178848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564205, - "rtt_ms": 1.564205, + "rtt_ns": 1470084, + "rtt_ms": 1.470084, "checkpoint": 0, "vertex_from": "211", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.036932062Z" + "timestamp": "2025-11-27T04:03:50.178953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573235, - "rtt_ms": 1.573235, + "rtt_ns": 1118250, + "rtt_ms": 1.11825, "checkpoint": 0, - "vertex_from": "211", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.036934492Z" + "vertex_from": "212", + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:50.179851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546345, - "rtt_ms": 1.546345, + "rtt_ns": 1189250, + "rtt_ms": 1.18925, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.036934802Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.179889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973894, - "rtt_ms": 1.973894, + "rtt_ns": 1256416, + "rtt_ms": 1.256416, "checkpoint": 0, - "vertex_from": "211", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.036943622Z" + "vertex_from": "212", + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.180105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067077, - "rtt_ms": 1.067077, + "rtt_ns": 1473125, + "rtt_ms": 1.473125, "checkpoint": 0, "vertex_from": "212", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.037119532Z" + "timestamp": "2025-11-27T04:03:50.180146-08:00" }, { "operation": "add_edge", - "rtt_ns": 910818, - "rtt_ms": 0.910818, + "rtt_ns": 1332250, + "rtt_ms": 1.33225, "checkpoint": 0, "vertex_from": "212", "vertex_to": "394", - "timestamp": "2025-11-27T01:23:47.0378361Z" + "timestamp": "2025-11-27T04:03:50.180164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541016, - "rtt_ms": 1.541016, + "rtt_ns": 1879167, + "rtt_ms": 1.879167, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:47.0378631Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:50.180222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096737, - "rtt_ms": 1.096737, + "rtt_ns": 1660875, + "rtt_ms": 1.660875, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:47.038018299Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:50.180241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115957, - "rtt_ms": 1.115957, + "rtt_ns": 1626042, + "rtt_ms": 1.626042, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "880", - "timestamp": "2025-11-27T01:23:47.038053589Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.180258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120927, - "rtt_ms": 1.120927, + "rtt_ns": 1587416, + "rtt_ms": 1.587416, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "307", - "timestamp": "2025-11-27T01:23:47.038067119Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.180328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146027, - "rtt_ms": 1.146027, + "rtt_ns": 1463583, + "rtt_ms": 1.463583, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:47.038081979Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:03:50.180418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839485, - "rtt_ms": 1.839485, + "rtt_ns": 1336125, + "rtt_ms": 1.336125, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.038117459Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:03:50.181227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304226, - "rtt_ms": 1.304226, + "rtt_ns": 1139208, + "rtt_ms": 1.139208, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "226", - "timestamp": "2025-11-27T01:23:47.038241818Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:03:50.181246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357246, - "rtt_ms": 1.357246, + "rtt_ns": 1934833, + "rtt_ms": 1.934833, "checkpoint": 0, - "vertex_from": "212", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:47.038286888Z" + "vertex_from": "213", + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.1821-08:00" }, { "operation": "add_edge", - "rtt_ns": 2157444, - "rtt_ms": 2.157444, + "rtt_ns": 2321459, + "rtt_ms": 2.321459, "checkpoint": 0, - "vertex_from": "213", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:47.039278796Z" + "vertex_from": "212", + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:50.182174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581445, - "rtt_ms": 1.581445, + "rtt_ns": 1755292, + "rtt_ms": 1.755292, "checkpoint": 0, - "vertex_from": "213", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.039419185Z" + "vertex_from": "214", + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.182175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575025, - "rtt_ms": 1.575025, + "rtt_ns": 1999833, + "rtt_ms": 1.999833, "checkpoint": 0, "vertex_from": "214", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:47.039441805Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:50.182329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898555, - "rtt_ms": 1.898555, + "rtt_ns": 2391250, + "rtt_ms": 2.39125, "checkpoint": 0, - "vertex_from": "214", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.039918374Z" + "vertex_from": "213", + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:50.182539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913075, - "rtt_ms": 1.913075, + "rtt_ns": 2409500, + "rtt_ms": 2.4095, "checkpoint": 0, "vertex_from": "214", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.039997174Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:03:50.182668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918184, - "rtt_ms": 1.918184, + "rtt_ns": 2480792, + "rtt_ms": 2.480792, "checkpoint": 0, - "vertex_from": "215", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.040037473Z" + "vertex_from": "214", + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.182723-08:00" }, { "operation": "add_edge", - "rtt_ns": 2266694, - "rtt_ms": 2.266694, + "rtt_ns": 1549792, + "rtt_ms": 1.549792, "checkpoint": 0, "vertex_from": "215", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.040512512Z" + "timestamp": "2025-11-27T04:03:50.182796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116747, - "rtt_ms": 1.116747, + "rtt_ns": 2692292, + "rtt_ms": 2.692292, "checkpoint": 0, - "vertex_from": "216", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.040560012Z" + "vertex_from": "214", + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.182915-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567433, - "rtt_ms": 2.567433, + "rtt_ns": 1780000, + "rtt_ms": 1.78, "checkpoint": 0, - "vertex_from": "214", - "vertex_to": "453", - "timestamp": "2025-11-27T01:23:47.040622352Z" + "vertex_from": "215", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.183008-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393753, - "rtt_ms": 2.393753, + "rtt_ns": 1568250, + "rtt_ms": 1.56825, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.040682141Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.183744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290956, - "rtt_ms": 1.290956, + "rtt_ns": 1946500, + "rtt_ms": 1.9465, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:47.040712221Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.184123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537815, - "rtt_ms": 1.537815, + "rtt_ns": 1476625, + "rtt_ms": 1.476625, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.040817881Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.184145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2774622, - "rtt_ms": 2.774622, + "rtt_ns": 2081500, + "rtt_ms": 2.0815, "checkpoint": 0, - "vertex_from": "214", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:47.040844011Z" + "vertex_from": "216", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.184184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647475, - "rtt_ms": 1.647475, + "rtt_ns": 1690000, + "rtt_ms": 1.69, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:47.041647159Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.18423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140826, - "rtt_ms": 1.140826, + "rtt_ns": 1537208, + "rtt_ms": 1.537208, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.041702068Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.184261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800064, - "rtt_ms": 1.800064, + "rtt_ns": 1605833, + "rtt_ms": 1.605833, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.041719778Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.184402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100946, - "rtt_ms": 1.100946, + "rtt_ns": 1594000, + "rtt_ms": 1.594, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.041724508Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.18451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229456, - "rtt_ms": 1.229456, + "rtt_ns": 1553000, + "rtt_ms": 1.553, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.041743048Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.184562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708105, - "rtt_ms": 1.708105, + "rtt_ns": 2308584, + "rtt_ms": 2.308584, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.041746738Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.184638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667905, - "rtt_ms": 1.667905, + "rtt_ns": 954042, + "rtt_ms": 0.954042, "checkpoint": 0, "vertex_from": "216", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:47.042351356Z" + "timestamp": "2025-11-27T04:03:50.1847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769485, - "rtt_ms": 1.769485, + "rtt_ns": 1015667, + "rtt_ms": 1.015667, "checkpoint": 0, "vertex_from": "216", "vertex_to": "801", - "timestamp": "2025-11-27T01:23:47.042485896Z" + "timestamp": "2025-11-27T04:03:50.185139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785515, - "rtt_ms": 1.785515, + "rtt_ns": 1431708, + "rtt_ms": 1.431708, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.042631396Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.185578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850535, - "rtt_ms": 1.850535, + "rtt_ns": 1408500, + "rtt_ms": 1.4085, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.042669876Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.185594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591615, - "rtt_ms": 1.591615, + "rtt_ns": 1369291, + "rtt_ms": 1.369291, "checkpoint": 0, "vertex_from": "216", "vertex_to": "913", - "timestamp": "2025-11-27T01:23:47.043240364Z" + "timestamp": "2025-11-27T04:03:50.185602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704965, - "rtt_ms": 1.704965, + "rtt_ns": 1410875, + "rtt_ms": 1.410875, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:47.043425903Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.185673-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1121250, + "rtt_ms": 1.12125, + "checkpoint": 0, + "vertex_from": "217", + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:50.186702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779805, - "rtt_ms": 1.779805, + "rtt_ns": 2264125, + "rtt_ms": 2.264125, "checkpoint": 0, "vertex_from": "216", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.043505663Z" + "timestamp": "2025-11-27T04:03:50.186775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908735, - "rtt_ms": 1.908735, + "rtt_ns": 1696416, + "rtt_ms": 1.696416, "checkpoint": 0, "vertex_from": "217", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:47.043655123Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.186837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951345, - "rtt_ms": 1.951345, + "rtt_ns": 2458791, + "rtt_ms": 2.458791, "checkpoint": 0, - "vertex_from": "216", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.043656213Z" + "vertex_from": "217", + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:50.187022-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164384, - "rtt_ms": 2.164384, + "rtt_ns": 2320292, + "rtt_ms": 2.320292, "checkpoint": 0, "vertex_from": "217", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.043913332Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.187022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648556, - "rtt_ms": 1.648556, + "rtt_ns": 2625459, + "rtt_ms": 2.625459, "checkpoint": 0, - "vertex_from": "217", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.044001372Z" + "vertex_from": "216", + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:50.187029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595525, - "rtt_ms": 1.595525, + "rtt_ns": 2402625, + "rtt_ms": 2.402625, "checkpoint": 0, "vertex_from": "217", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.044083081Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.187041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559715, - "rtt_ms": 1.559715, + "rtt_ns": 1409625, + "rtt_ms": 1.409625, "checkpoint": 0, "vertex_from": "218", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:47.044231061Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.187083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836924, - "rtt_ms": 1.836924, + "rtt_ns": 1541500, + "rtt_ms": 1.5415, "checkpoint": 0, - "vertex_from": "217", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:47.04446971Z" + "vertex_from": "218", + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:50.187136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314356, - "rtt_ms": 1.314356, + "rtt_ns": 1552417, + "rtt_ms": 1.552417, "checkpoint": 0, "vertex_from": "218", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.04455706Z" + "timestamp": "2025-11-27T04:03:50.187156-08:00" }, { "operation": "add_edge", - "rtt_ns": 966707, - "rtt_ms": 0.966707, + "rtt_ns": 1221417, + "rtt_ms": 1.221417, "checkpoint": 0, - "vertex_from": "220", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:47.04462501Z" + "vertex_from": "222", + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.188307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247527, - "rtt_ms": 1.247527, + "rtt_ns": 1529625, + "rtt_ms": 1.529625, "checkpoint": 0, - "vertex_from": "218", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:47.044755569Z" + "vertex_from": "219", + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:50.188308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384966, - "rtt_ms": 1.384966, + "rtt_ns": 1340000, + "rtt_ms": 1.34, "checkpoint": 0, - "vertex_from": "218", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.044812169Z" + "vertex_from": "221", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.188371-08:00" }, { "operation": "add_edge", - "rtt_ns": 814727, - "rtt_ms": 0.814727, + "rtt_ns": 1672333, + "rtt_ms": 1.672333, "checkpoint": 0, - "vertex_from": "220", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.044817299Z" + "vertex_from": "218", + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.188375-08:00" }, { "operation": "add_edge", - "rtt_ns": 919107, - "rtt_ms": 0.919107, + "rtt_ns": 1431500, + "rtt_ms": 1.4315, "checkpoint": 0, "vertex_from": "220", "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.044834209Z" + "timestamp": "2025-11-27T04:03:50.188455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196306, - "rtt_ms": 1.196306, + "rtt_ns": 1668250, + "rtt_ms": 1.66825, "checkpoint": 0, - "vertex_from": "219", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:47.044854169Z" + "vertex_from": "220", + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:50.188507-08:00" }, { "operation": "add_edge", - "rtt_ns": 795558, - "rtt_ms": 0.795558, + "rtt_ns": 1492708, + "rtt_ms": 1.492708, "checkpoint": 0, - "vertex_from": "221", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.044880279Z" + "vertex_from": "220", + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.188516-08:00" }, { "operation": "add_edge", - "rtt_ns": 863298, - "rtt_ms": 0.863298, + "rtt_ns": 1553583, + "rtt_ms": 1.553583, "checkpoint": 0, "vertex_from": "221", "vertex_to": "364", - "timestamp": "2025-11-27T01:23:47.045097299Z" + "timestamp": "2025-11-27T04:03:50.188596-08:00" }, { "operation": "add_edge", - "rtt_ns": 795538, - "rtt_ms": 0.795538, - "checkpoint": 0, - "vertex_from": "224", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.045422448Z" - }, - { - "operation": "add_edge", - "rtt_ns": 890658, - "rtt_ms": 0.890658, + "rtt_ns": 1496167, + "rtt_ms": 1.496167, "checkpoint": 0, "vertex_from": "224", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:47.045449288Z" + "timestamp": "2025-11-27T04:03:50.188634-08:00" }, { "operation": "add_edge", - "rtt_ns": 693039, - "rtt_ms": 0.693039, + "rtt_ns": 1489791, + "rtt_ms": 1.489791, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.045450008Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:50.188647-08:00" }, { "operation": "add_edge", - "rtt_ns": 711268, - "rtt_ms": 0.711268, + "rtt_ns": 1434792, + "rtt_ms": 1.434792, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "653", - "timestamp": "2025-11-27T01:23:47.045525167Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.189744-08:00" }, { "operation": "add_edge", - "rtt_ns": 738148, - "rtt_ms": 0.738148, + "rtt_ns": 1257625, + "rtt_ms": 1.257625, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.045557867Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:50.189766-08:00" }, { "operation": "add_edge", - "rtt_ns": 772858, - "rtt_ms": 0.772858, + "rtt_ns": 1464125, + "rtt_ms": 1.464125, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.045610377Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:03:50.189774-08:00" }, { "operation": "add_edge", - "rtt_ns": 767508, - "rtt_ms": 0.767508, + "rtt_ns": 1257083, + "rtt_ms": 1.257083, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:47.045649407Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.189774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160907, - "rtt_ms": 1.160907, + "rtt_ns": 1411250, + "rtt_ms": 1.41125, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.046016766Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1789675, - "rtt_ms": 1.789675, - "checkpoint": 0, - "vertex_from": "222", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:47.046260585Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.189783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162556, - "rtt_ms": 1.162556, + "rtt_ns": 1424458, + "rtt_ms": 1.424458, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.046261345Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.189801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417566, - "rtt_ms": 1.417566, + "rtt_ns": 1596375, + "rtt_ms": 1.596375, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.046841404Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.190053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327266, - "rtt_ms": 1.327266, + "rtt_ns": 1463000, + "rtt_ms": 1.463, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.046977673Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.190111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484146, - "rtt_ms": 1.484146, + "rtt_ns": 1554875, + "rtt_ms": 1.554875, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:47.047010383Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.190151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586145, - "rtt_ms": 1.586145, + "rtt_ns": 1576250, + "rtt_ms": 1.57625, "checkpoint": 0, "vertex_from": "224", "vertex_to": "257", - "timestamp": "2025-11-27T01:23:47.047038313Z" + "timestamp": "2025-11-27T04:03:50.190212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635545, - "rtt_ms": 1.635545, + "rtt_ns": 994833, + "rtt_ms": 0.994833, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:47.047088383Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.191147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591966, - "rtt_ms": 1.591966, + "rtt_ns": 1381917, + "rtt_ms": 1.381917, "checkpoint": 0, "vertex_from": "224", "vertex_to": "314", - "timestamp": "2025-11-27T01:23:47.047155093Z" + "timestamp": "2025-11-27T04:03:50.191148-08:00" }, { "operation": "add_edge", - "rtt_ns": 2252224, - "rtt_ms": 2.252224, + "rtt_ns": 1633625, + "rtt_ms": 1.633625, "checkpoint": 0, "vertex_from": "224", "vertex_to": "284", - "timestamp": "2025-11-27T01:23:47.047863901Z" + "timestamp": "2025-11-27T04:03:50.19141-08:00" }, { "operation": "add_edge", - "rtt_ns": 944497, - "rtt_ms": 0.944497, + "rtt_ns": 1770500, + "rtt_ms": 1.7705, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:47.04803516Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:50.191516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073177, - "rtt_ms": 1.073177, + "rtt_ns": 1486166, + "rtt_ms": 1.486166, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.04808455Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:50.191541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860215, - "rtt_ms": 1.860215, + "rtt_ns": 1810250, + "rtt_ms": 1.81025, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:47.04812258Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.191587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176397, - "rtt_ms": 1.176397, + "rtt_ns": 1911417, + "rtt_ms": 1.911417, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.04815527Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.191696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936885, - "rtt_ms": 1.936885, + "rtt_ns": 1917500, + "rtt_ms": 1.9175, "checkpoint": 0, "vertex_from": "224", "vertex_to": "332", - "timestamp": "2025-11-27T01:23:47.04819973Z" + "timestamp": "2025-11-27T04:03:50.191719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2216214, - "rtt_ms": 2.216214, + "rtt_ns": 1668250, + "rtt_ms": 1.66825, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.0482349Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.191881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431636, - "rtt_ms": 1.431636, + "rtt_ns": 1806250, + "rtt_ms": 1.80625, "checkpoint": 0, "vertex_from": "224", "vertex_to": "266", - "timestamp": "2025-11-27T01:23:47.04827485Z" + "timestamp": "2025-11-27T04:03:50.191918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246466, - "rtt_ms": 1.246466, + "rtt_ns": 1100834, + "rtt_ms": 1.100834, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.048285889Z" + "vertex_to": "606", + "timestamp": "2025-11-27T04:03:50.192618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258246, - "rtt_ms": 1.258246, + "rtt_ns": 1595792, + "rtt_ms": 1.595792, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.048414809Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:50.192746-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1253666, + "rtt_ms": 1.253666, + "checkpoint": 0, + "vertex_from": "224", + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.192842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127447, - "rtt_ms": 1.127447, + "rtt_ns": 1301042, + "rtt_ms": 1.301042, "checkpoint": 0, "vertex_from": "224", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.049163997Z" + "timestamp": "2025-11-27T04:03:50.192843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333436, - "rtt_ms": 1.333436, + "rtt_ns": 1238208, + "rtt_ms": 1.238208, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "606", - "timestamp": "2025-11-27T01:23:47.049199387Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:03:50.193157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058637, - "rtt_ms": 1.058637, + "rtt_ns": 1455084, + "rtt_ms": 1.455084, "checkpoint": 0, "vertex_from": "224", "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.049214807Z" + "timestamp": "2025-11-27T04:03:50.193175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200937, - "rtt_ms": 1.200937, + "rtt_ns": 2377750, + "rtt_ms": 2.37775, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:47.049287107Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.193525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175426, - "rtt_ms": 1.175426, + "rtt_ns": 2180917, + "rtt_ms": 2.180917, "checkpoint": 0, "vertex_from": "224", "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.049299286Z" + "timestamp": "2025-11-27T04:03:50.193878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167786, - "rtt_ms": 1.167786, + "rtt_ns": 1408958, + "rtt_ms": 1.408958, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.049369636Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:03:50.194027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531216, - "rtt_ms": 1.531216, + "rtt_ns": 2701750, + "rtt_ms": 2.70175, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.049947045Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.194113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057563, - "rtt_ms": 2.057563, + "rtt_ns": 2668875, + "rtt_ms": 2.668875, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "457", - "timestamp": "2025-11-27T01:23:47.050333783Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.194553-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095054, - "rtt_ms": 2.095054, + "rtt_ns": 1038584, + "rtt_ms": 1.038584, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.050382503Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:50.194565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320473, - "rtt_ms": 2.320473, + "rtt_ns": 1724209, + "rtt_ms": 1.724209, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:47.050558633Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.194568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472325, - "rtt_ms": 1.472325, + "rtt_ns": 1738375, + "rtt_ms": 1.738375, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "327", - "timestamp": "2025-11-27T01:23:47.050687862Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:50.194582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628665, - "rtt_ms": 1.628665, + "rtt_ns": 2186208, + "rtt_ms": 2.186208, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:47.050793592Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.194934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693974, - "rtt_ms": 1.693974, + "rtt_ns": 1792209, + "rtt_ms": 1.792209, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:47.050981951Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.19495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788365, - "rtt_ms": 1.788365, + "rtt_ns": 2752667, + "rtt_ms": 2.752667, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.051088641Z" + "vertex_to": "327", + "timestamp": "2025-11-27T04:03:50.195929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977834, - "rtt_ms": 1.977834, + "rtt_ns": 2326333, + "rtt_ms": 2.326333, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:47.05134872Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:50.196442-08:00" }, { "operation": "add_edge", - "rtt_ns": 2714772, - "rtt_ms": 2.714772, + "rtt_ns": 1956583, + "rtt_ms": 1.956583, "checkpoint": 0, - "vertex_from": "224", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.051915079Z" + "vertex_from": "225", + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.196511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590866, - "rtt_ms": 1.590866, + "rtt_ns": 2006500, + "rtt_ms": 2.0065, "checkpoint": 0, "vertex_from": "225", "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.051975799Z" + "timestamp": "2025-11-27T04:03:50.196572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676725, - "rtt_ms": 1.676725, + "rtt_ns": 2598959, + "rtt_ms": 2.598959, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.052010978Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:50.196627-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084923, - "rtt_ms": 2.084923, + "rtt_ns": 2518167, + "rtt_ms": 2.518167, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:47.052033548Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.197088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481165, - "rtt_ms": 1.481165, + "rtt_ns": 2600875, + "rtt_ms": 2.600875, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.052041388Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:50.197185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306316, - "rtt_ms": 1.306316, + "rtt_ns": 1344125, + "rtt_ms": 1.344125, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:47.052101358Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:50.197274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415396, - "rtt_ms": 1.415396, + "rtt_ns": 2343167, + "rtt_ms": 2.343167, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:47.052105678Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.197294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260057, - "rtt_ms": 1.260057, + "rtt_ns": 3482375, + "rtt_ms": 3.482375, "checkpoint": 0, - "vertex_from": "225", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.052243518Z" + "vertex_from": "224", + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.197361-08:00" }, { "operation": "add_edge", - "rtt_ns": 841777, - "rtt_ms": 0.841777, + "rtt_ns": 1497875, + "rtt_ms": 1.497875, "checkpoint": 0, "vertex_from": "225", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:47.052818966Z" + "timestamp": "2025-11-27T04:03:50.198072-08:00" }, { "operation": "add_edge", - "rtt_ns": 917797, - "rtt_ms": 0.917797, + "rtt_ns": 1646542, + "rtt_ms": 1.646542, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.052834786Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:50.198091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568216, - "rtt_ms": 1.568216, + "rtt_ns": 3219667, + "rtt_ms": 3.219667, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:47.052918836Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:50.198155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907525, - "rtt_ms": 1.907525, + "rtt_ns": 1544958, + "rtt_ms": 1.544958, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:47.053002546Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.198174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477386, - "rtt_ms": 1.477386, + "rtt_ns": 1709958, + "rtt_ms": 1.709958, "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:47.053579954Z" + "vertex_from": "225", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.198222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554646, - "rtt_ms": 1.554646, + "rtt_ns": 1333250, + "rtt_ms": 1.33325, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:47.053597394Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:50.198608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503056, - "rtt_ms": 1.503056, + "rtt_ns": 1619500, + "rtt_ms": 1.6195, "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.053610004Z" + "vertex_from": "225", + "vertex_to": "913", + "timestamp": "2025-11-27T04:03:50.198709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372676, - "rtt_ms": 1.372676, + "rtt_ns": 1577625, + "rtt_ms": 1.577625, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.053618704Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.198873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612946, - "rtt_ms": 1.612946, + "rtt_ns": 1739209, + "rtt_ms": 1.739209, "checkpoint": 0, - "vertex_from": "225", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:47.053648114Z" + "vertex_from": "226", + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:50.198925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651726, - "rtt_ms": 1.651726, + "rtt_ns": 1945625, + "rtt_ms": 1.945625, "checkpoint": 0, - "vertex_from": "225", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.053664124Z" + "vertex_from": "226", + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.199309-08:00" }, { "operation": "add_edge", - "rtt_ns": 970037, - "rtt_ms": 0.970037, + "rtt_ns": 1254459, + "rtt_ms": 1.254459, "checkpoint": 0, "vertex_from": "226", "vertex_to": "269", - "timestamp": "2025-11-27T01:23:47.053790873Z" + "timestamp": "2025-11-27T04:03:50.199327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000367, - "rtt_ms": 1.000367, + "rtt_ns": 1128583, + "rtt_ms": 1.128583, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:47.053836613Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.199838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388856, - "rtt_ms": 1.388856, + "rtt_ns": 1861625, + "rtt_ms": 1.861625, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.054309822Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.200084-08:00" }, { "operation": "add_edge", - "rtt_ns": 859147, - "rtt_ms": 0.859147, + "rtt_ns": 1491167, + "rtt_ms": 1.491167, "checkpoint": 0, - "vertex_from": "227", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:47.054508331Z" + "vertex_from": "226", + "vertex_to": "790", + "timestamp": "2025-11-27T04:03:50.2001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509635, - "rtt_ms": 1.509635, + "rtt_ns": 1960750, + "rtt_ms": 1.96075, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "425", - "timestamp": "2025-11-27T01:23:47.054513411Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.200116-08:00" }, { "operation": "add_edge", - "rtt_ns": 945517, - "rtt_ms": 0.945517, + "rtt_ns": 1256541, + "rtt_ms": 1.256541, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.054526451Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.200131-08:00" }, { "operation": "add_edge", - "rtt_ns": 942017, - "rtt_ms": 0.942017, + "rtt_ns": 2135167, + "rtt_ms": 2.135167, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.054562161Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:50.200228-08:00" }, { "operation": "add_edge", - "rtt_ns": 987937, - "rtt_ms": 0.987937, + "rtt_ns": 1329333, + "rtt_ms": 1.329333, "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "790", - "timestamp": "2025-11-27T01:23:47.054586811Z" + "vertex_from": "227", + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:50.200255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014857, - "rtt_ms": 1.014857, + "rtt_ns": 2186583, + "rtt_ms": 2.186583, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.054627631Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:03:50.200361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023007, - "rtt_ms": 1.023007, + "rtt_ns": 1292500, + "rtt_ms": 1.2925, "checkpoint": 0, - "vertex_from": "227", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:47.05486191Z" + "vertex_from": "228", + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.201549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223626, - "rtt_ms": 1.223626, + "rtt_ns": 2254583, + "rtt_ms": 2.254583, "checkpoint": 0, "vertex_from": "227", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.05488916Z" + "timestamp": "2025-11-27T04:03:50.201565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185867, - "rtt_ms": 1.185867, + "rtt_ns": 1402041, + "rtt_ms": 1.402041, "checkpoint": 0, - "vertex_from": "227", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:47.0549778Z" + "vertex_from": "228", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.20163-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1549125, + "rtt_ms": 1.549125, + "checkpoint": 0, + "vertex_from": "228", + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.20165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079707, - "rtt_ms": 1.079707, + "rtt_ns": 1578917, + "rtt_ms": 1.578917, "checkpoint": 0, "vertex_from": "227", "vertex_to": "816", - "timestamp": "2025-11-27T01:23:47.055390659Z" + "timestamp": "2025-11-27T04:03:50.201664-08:00" }, { "operation": "add_edge", - "rtt_ns": 852228, - "rtt_ms": 0.852228, + "rtt_ns": 1584208, + "rtt_ms": 1.584208, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.055415519Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:50.201716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265577, - "rtt_ms": 1.265577, + "rtt_ns": 1624208, + "rtt_ms": 1.624208, "checkpoint": 0, "vertex_from": "228", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.055780348Z" + "timestamp": "2025-11-27T04:03:50.201741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314017, - "rtt_ms": 1.314017, + "rtt_ns": 1917125, + "rtt_ms": 1.917125, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.055902128Z" + "vertex_from": "227", + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:50.201756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470146, - "rtt_ms": 1.470146, + "rtt_ns": 1399125, + "rtt_ms": 1.399125, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.055980687Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.201761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476496, - "rtt_ms": 1.476496, + "rtt_ns": 2480042, + "rtt_ms": 2.480042, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.056005017Z" + "vertex_from": "227", + "vertex_to": "872", + "timestamp": "2025-11-27T04:03:50.201808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137557, - "rtt_ms": 1.137557, + "rtt_ns": 1072083, + "rtt_ms": 1.072083, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.056028607Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.202737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859855, - "rtt_ms": 1.859855, + "rtt_ns": 1255834, + "rtt_ms": 1.255834, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.056488666Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.202822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760756, - "rtt_ms": 1.760756, + "rtt_ns": 1377916, + "rtt_ms": 1.377916, "checkpoint": 0, "vertex_from": "228", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:47.056623456Z" + "timestamp": "2025-11-27T04:03:50.202927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649445, - "rtt_ms": 1.649445, + "rtt_ns": 1189250, + "rtt_ms": 1.18925, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:47.056628485Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.202998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233336, - "rtt_ms": 1.233336, + "rtt_ns": 1425042, + "rtt_ms": 1.425042, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.056649555Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:50.203056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313716, - "rtt_ms": 1.313716, + "rtt_ns": 1320000, + "rtt_ms": 1.32, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:47.056705445Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1409796, - "rtt_ms": 1.409796, - "checkpoint": 0, - "vertex_from": "229", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.058060301Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.203062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393366, - "rtt_ms": 1.393366, + "rtt_ns": 1325750, + "rtt_ms": 1.32575, "checkpoint": 0, - "vertex_from": "229", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.058100111Z" + "vertex_from": "228", + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:50.203083-08:00" }, { "operation": "add_edge", - "rtt_ns": 2153884, - "rtt_ms": 2.153884, + "rtt_ns": 1438458, + "rtt_ms": 1.438458, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:47.058160171Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:50.20309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2153244, - "rtt_ms": 2.153244, + "rtt_ns": 1506166, + "rtt_ms": 1.506166, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.058182691Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:50.203223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2582953, - "rtt_ms": 2.582953, + "rtt_ns": 1473541, + "rtt_ms": 1.473541, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:47.058364831Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.203235-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2104025, - "rtt_ms": 2.104025, + "operation": "add_edge", + "rtt_ns": 1253958, + "rtt_ms": 1.253958, "checkpoint": 0, - "vertex_from": "948", - "timestamp": "2025-11-27T01:23:47.05873649Z" + "vertex_from": "229", + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.204311-08:00" }, { "operation": "add_edge", - "rtt_ns": 784518, - "rtt_ms": 0.784518, + "rtt_ns": 1572584, + "rtt_ms": 1.572584, "checkpoint": 0, - "vertex_from": "229", - "vertex_to": "455", - "timestamp": "2025-11-27T01:23:47.058848359Z" + "vertex_from": "228", + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.204397-08:00" }, { "operation": "add_edge", - "rtt_ns": 747298, - "rtt_ms": 0.747298, + "rtt_ns": 1328250, + "rtt_ms": 1.32825, "checkpoint": 0, "vertex_from": "229", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.058849039Z" + "timestamp": "2025-11-27T04:03:50.204412-08:00" }, { "operation": "add_edge", - "rtt_ns": 3151691, - "rtt_ms": 3.151691, + "rtt_ns": 1387583, + "rtt_ms": 1.387583, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.059055199Z" + "vertex_from": "229", + "vertex_to": "455", + "timestamp": "2025-11-27T04:03:50.204451-08:00" }, { "operation": "add_edge", - "rtt_ns": 3198271, - "rtt_ms": 3.198271, + "rtt_ns": 1836208, + "rtt_ms": 1.836208, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:47.059179848Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:50.204575-08:00" }, { "operation": "add_edge", - "rtt_ns": 2712152, - "rtt_ms": 2.712152, + "rtt_ns": 1763584, + "rtt_ms": 1.763584, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:47.059202298Z" + "vertex_from": "230", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.204856-08:00" }, { "operation": "add_edge", - "rtt_ns": 2621062, - "rtt_ms": 2.621062, + "rtt_ns": 1648458, + "rtt_ms": 1.648458, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.059245588Z" + "vertex_from": "230", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.204872-08:00" }, { "operation": "add_edge", - "rtt_ns": 633888, - "rtt_ms": 0.633888, + "rtt_ns": 900750, + "rtt_ms": 0.90075, "checkpoint": 0, - "vertex_from": "229", - "vertex_to": "948", - "timestamp": "2025-11-27T01:23:47.059371018Z" + "vertex_from": "231", + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.205314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131996, - "rtt_ms": 1.131996, + "rtt_ns": 932208, + "rtt_ms": 0.932208, "checkpoint": 0, - "vertex_from": "230", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:47.059499817Z" + "vertex_from": "231", + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:50.20533-08:00" }, { "operation": "add_edge", - "rtt_ns": 690698, - "rtt_ms": 0.690698, + "rtt_ns": 1126667, + "rtt_ms": 1.126667, "checkpoint": 0, "vertex_from": "230", "vertex_to": "586", - "timestamp": "2025-11-27T01:23:47.059541707Z" + "timestamp": "2025-11-27T04:03:50.205439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384306, - "rtt_ms": 1.384306, + "rtt_ns": 1227708, + "rtt_ms": 1.227708, "checkpoint": 0, - "vertex_from": "230", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.059545887Z" + "vertex_from": "232", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.205804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381486, - "rtt_ms": 1.381486, + "rtt_ns": 1364875, + "rtt_ms": 1.364875, "checkpoint": 0, - "vertex_from": "230", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.059566997Z" + "vertex_from": "232", + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:50.205818-08:00" }, { - "operation": "add_edge", - "rtt_ns": 764098, - "rtt_ms": 0.764098, + "operation": "add_vertex", + "rtt_ns": 3140875, + "rtt_ms": 3.140875, "checkpoint": 0, - "vertex_from": "231", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:47.059616797Z" + "vertex_from": "948", + "timestamp": "2025-11-27T04:03:50.206073-08:00" }, { "operation": "add_edge", - "rtt_ns": 649288, - "rtt_ms": 0.649288, + "rtt_ns": 1215000, + "rtt_ms": 1.215, "checkpoint": 0, - "vertex_from": "231", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.059706637Z" + "vertex_from": "232", + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.206088-08:00" }, { "operation": "add_edge", - "rtt_ns": 708178, - "rtt_ms": 0.708178, + "rtt_ns": 1248250, + "rtt_ms": 1.24825, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.059912416Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.206105-08:00" }, { "operation": "add_edge", - "rtt_ns": 828398, - "rtt_ms": 0.828398, + "rtt_ns": 888125, + "rtt_ms": 0.888125, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:47.060009676Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:50.206328-08:00" }, { "operation": "add_edge", - "rtt_ns": 570049, - "rtt_ms": 0.570049, + "rtt_ns": 1088375, + "rtt_ms": 1.088375, "checkpoint": 0, "vertex_from": "232", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.060071226Z" + "timestamp": "2025-11-27T04:03:50.206404-08:00" }, { "operation": "add_edge", - "rtt_ns": 723358, - "rtt_ms": 0.723358, + "rtt_ns": 3437875, + "rtt_ms": 3.437875, "checkpoint": 0, - "vertex_from": "232", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:47.060095296Z" + "vertex_from": "229", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.206437-08:00" }, { "operation": "add_edge", - "rtt_ns": 854238, - "rtt_ms": 0.854238, + "rtt_ns": 1198875, + "rtt_ms": 1.198875, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.060100656Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.20653-08:00" }, { "operation": "add_edge", - "rtt_ns": 748428, - "rtt_ms": 0.748428, + "rtt_ns": 3482458, + "rtt_ms": 3.482458, "checkpoint": 0, - "vertex_from": "232", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.060290915Z" + "vertex_from": "230", + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:50.20672-08:00" }, { "operation": "add_edge", - "rtt_ns": 847408, - "rtt_ms": 0.847408, + "rtt_ns": 1139000, + "rtt_ms": 1.139, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:47.060394125Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.207245-08:00" }, { "operation": "add_edge", - "rtt_ns": 738388, - "rtt_ms": 0.738388, + "rtt_ns": 1270958, + "rtt_ms": 1.270958, "checkpoint": 0, "vertex_from": "232", "vertex_to": "332", - "timestamp": "2025-11-27T01:23:47.060446625Z" + "timestamp": "2025-11-27T04:03:50.207359-08:00" }, { "operation": "add_edge", - "rtt_ns": 937097, - "rtt_ms": 0.937097, + "rtt_ns": 1596000, + "rtt_ms": 1.596, "checkpoint": 0, "vertex_from": "232", "vertex_to": "327", - "timestamp": "2025-11-27T01:23:47.060504994Z" + "timestamp": "2025-11-27T04:03:50.207401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464166, - "rtt_ms": 1.464166, + "rtt_ns": 1359334, + "rtt_ms": 1.359334, "checkpoint": 0, - "vertex_from": "232", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.061082093Z" + "vertex_from": "229", + "vertex_to": "948", + "timestamp": "2025-11-27T04:03:50.207433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036797, - "rtt_ms": 1.036797, + "rtt_ns": 1680500, + "rtt_ms": 1.6805, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.061132873Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.2075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146457, - "rtt_ms": 1.146457, + "rtt_ns": 1667875, + "rtt_ms": 1.667875, "checkpoint": 0, "vertex_from": "232", "vertex_to": "299", - "timestamp": "2025-11-27T01:23:47.061157443Z" + "timestamp": "2025-11-27T04:03:50.207996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120636, - "rtt_ms": 1.120636, + "rtt_ns": 1684083, + "rtt_ms": 1.684083, "checkpoint": 0, "vertex_from": "232", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.061192882Z" + "timestamp": "2025-11-27T04:03:50.20809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322706, - "rtt_ms": 1.322706, + "rtt_ns": 1719875, + "rtt_ms": 1.719875, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.061236242Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.208158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232066, - "rtt_ms": 1.232066, + "rtt_ns": 1895792, + "rtt_ms": 1.895792, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.061335622Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.208617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692745, - "rtt_ms": 1.692745, + "rtt_ns": 1391042, + "rtt_ms": 1.391042, "checkpoint": 0, - "vertex_from": "232", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.06198468Z" + "vertex_from": "233", + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.208637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503776, - "rtt_ms": 1.503776, + "rtt_ns": 1487333, + "rtt_ms": 1.487333, "checkpoint": 0, "vertex_from": "233", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.06200977Z" + "timestamp": "2025-11-27T04:03:50.208889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562635, - "rtt_ms": 1.562635, + "rtt_ns": 1666042, + "rtt_ms": 1.666042, "checkpoint": 0, "vertex_from": "233", "vertex_to": "390", - "timestamp": "2025-11-27T01:23:47.06201011Z" + "timestamp": "2025-11-27T04:03:50.209026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653295, - "rtt_ms": 1.653295, + "rtt_ns": 2147250, + "rtt_ms": 2.14725, "checkpoint": 0, - "vertex_from": "233", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.06204878Z" + "vertex_from": "234", + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:50.209581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106146, - "rtt_ms": 1.106146, + "rtt_ns": 1441334, + "rtt_ms": 1.441334, "checkpoint": 0, "vertex_from": "234", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.062241539Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.209603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655775, - "rtt_ms": 1.655775, + "rtt_ns": 1528583, + "rtt_ms": 1.528583, "checkpoint": 0, "vertex_from": "234", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:47.062739858Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.20962-08:00" }, { "operation": "add_vertex", - "rtt_ns": 967597, - "rtt_ms": 0.967597, + "rtt_ns": 791541, + "rtt_ms": 0.791541, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:23:47.062980097Z" + "timestamp": "2025-11-27T04:03:50.209682-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1666545, - "rtt_ms": 1.666545, + "rtt_ns": 1344083, + "rtt_ms": 1.344083, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:23:47.063003647Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1798965, - "rtt_ms": 1.798965, - "checkpoint": 0, - "vertex_from": "234", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.063036467Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1881864, - "rtt_ms": 1.881864, - "checkpoint": 0, - "vertex_from": "234", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.063040477Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1895015, - "rtt_ms": 1.895015, - "checkpoint": 0, - "vertex_from": "234", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.063088707Z" + "timestamp": "2025-11-27T04:03:50.209963-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1181476, - "rtt_ms": 1.181476, + "rtt_ns": 1325333, + "rtt_ms": 1.325333, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:23:47.063233846Z" + "timestamp": "2025-11-27T04:03:50.209963-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1234296, - "rtt_ms": 1.234296, + "operation": "add_edge", + "rtt_ns": 3854292, + "rtt_ms": 3.854292, "checkpoint": 0, - "vertex_from": "235", - "timestamp": "2025-11-27T01:23:47.063246116Z" + "vertex_from": "232", + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.210387-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1274696, - "rtt_ms": 1.274696, + "rtt_ns": 1554875, + "rtt_ms": 1.554875, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:23:47.063261456Z" + "timestamp": "2025-11-27T04:03:50.210582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784645, - "rtt_ms": 1.784645, + "rtt_ns": 1314791, + "rtt_ms": 1.314791, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.064027674Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.210935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329576, - "rtt_ms": 1.329576, + "rtt_ns": 1282916, + "rtt_ms": 1.282916, "checkpoint": 0, - "vertex_from": "236", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.064070904Z" + "vertex_from": "235", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.210965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062387, - "rtt_ms": 1.062387, + "rtt_ns": 3695125, + "rtt_ms": 3.695125, "checkpoint": 0, - "vertex_from": "236", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.064103914Z" + "vertex_from": "234", + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.211198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334406, - "rtt_ms": 1.334406, + "rtt_ns": 3261875, + "rtt_ms": 3.261875, "checkpoint": 0, - "vertex_from": "235", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.064315463Z" + "vertex_from": "234", + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.211259-08:00" }, { "operation": "add_edge", - "rtt_ns": 796528, - "rtt_ms": 0.796528, + "rtt_ns": 2253167, + "rtt_ms": 2.253167, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:47.064827322Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.211857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771935, - "rtt_ms": 1.771935, + "rtt_ns": 1490583, + "rtt_ms": 1.490583, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.064861772Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:50.211878-08:00" }, { "operation": "add_edge", - "rtt_ns": 813788, - "rtt_ms": 0.813788, + "rtt_ns": 1782125, + "rtt_ms": 1.782125, "checkpoint": 0, - "vertex_from": "236", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.064885872Z" + "vertex_from": "235", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.212365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658066, - "rtt_ms": 1.658066, + "rtt_ns": 2419375, + "rtt_ms": 2.419375, "checkpoint": 0, "vertex_from": "235", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.064920282Z" + "timestamp": "2025-11-27T04:03:50.212383-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1729345, - "rtt_ms": 1.729345, + "operation": "add_vertex", + "rtt_ns": 2942417, + "rtt_ms": 2.942417, "checkpoint": 0, "vertex_from": "235", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.064976011Z" + "timestamp": "2025-11-27T04:03:50.212524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821855, - "rtt_ms": 1.821855, + "rtt_ns": 2583458, + "rtt_ms": 2.583458, "checkpoint": 0, "vertex_from": "235", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.065056951Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:50.212547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084654, - "rtt_ms": 2.084654, + "rtt_ns": 1873500, + "rtt_ms": 1.8735, "checkpoint": 0, - "vertex_from": "235", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:47.065089151Z" + "vertex_from": "236", + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.21281-08:00" }, { "operation": "add_edge", - "rtt_ns": 2068584, - "rtt_ms": 2.068584, + "rtt_ns": 1896000, + "rtt_ms": 1.896, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:47.065106451Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.212863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144487, - "rtt_ms": 1.144487, + "rtt_ns": 1862542, + "rtt_ms": 1.862542, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "810", - "timestamp": "2025-11-27T01:23:47.065249611Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.213061-08:00" }, { "operation": "add_edge", - "rtt_ns": 990497, - "rtt_ms": 0.990497, + "rtt_ns": 1318791, + "rtt_ms": 1.318791, "checkpoint": 0, - "vertex_from": "237", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:47.065877469Z" + "vertex_from": "236", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.213198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904085, - "rtt_ms": 1.904085, + "rtt_ns": 2100458, + "rtt_ms": 2.100458, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.066221058Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.213361-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1465417, + "rtt_ms": 1.465417, + "checkpoint": 0, + "vertex_from": "235", + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.21399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414066, - "rtt_ms": 1.414066, + "rtt_ns": 1641250, + "rtt_ms": 1.64125, "checkpoint": 0, "vertex_from": "237", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.066245658Z" + "timestamp": "2025-11-27T04:03:50.214007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427926, - "rtt_ms": 1.427926, + "rtt_ns": 1642750, + "rtt_ms": 1.64275, "checkpoint": 0, "vertex_from": "237", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.066291268Z" + "timestamp": "2025-11-27T04:03:50.214027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419436, - "rtt_ms": 1.419436, + "rtt_ns": 1586458, + "rtt_ms": 1.586458, "checkpoint": 0, - "vertex_from": "238", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.066340778Z" + "vertex_from": "237", + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:50.214134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392586, - "rtt_ms": 1.392586, + "rtt_ns": 2293875, + "rtt_ms": 2.293875, + "checkpoint": 0, + "vertex_from": "236", + "vertex_to": "810", + "timestamp": "2025-11-27T04:03:50.214152-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1928792, + "rtt_ms": 1.928792, "checkpoint": 0, "vertex_from": "238", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.066371857Z" + "timestamp": "2025-11-27T04:03:50.214793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369776, - "rtt_ms": 1.369776, + "rtt_ns": 2013792, + "rtt_ms": 2.013792, "checkpoint": 0, - "vertex_from": "240", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.066460327Z" + "vertex_from": "238", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.214825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455536, - "rtt_ms": 1.455536, + "rtt_ns": 1675250, + "rtt_ms": 1.67525, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:47.066514537Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.214874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296696, - "rtt_ms": 1.296696, + "rtt_ns": 1521291, + "rtt_ms": 1.521291, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:47.066549087Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.214886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444886, - "rtt_ms": 1.444886, + "rtt_ns": 1825542, + "rtt_ms": 1.825542, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.066553037Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.214888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329986, - "rtt_ms": 1.329986, + "rtt_ns": 1351250, + "rtt_ms": 1.35125, "checkpoint": 0, "vertex_from": "240", "vertex_to": "652", - "timestamp": "2025-11-27T01:23:47.067215285Z" + "timestamp": "2025-11-27T04:03:50.21536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094797, - "rtt_ms": 1.094797, + "rtt_ns": 1358583, + "rtt_ms": 1.358583, "checkpoint": 0, "vertex_from": "240", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.067317805Z" + "timestamp": "2025-11-27T04:03:50.215386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047567, - "rtt_ms": 1.047567, + "rtt_ns": 1307208, + "rtt_ms": 1.307208, "checkpoint": 0, "vertex_from": "240", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.067339995Z" + "timestamp": "2025-11-27T04:03:50.21546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502956, - "rtt_ms": 1.502956, + "rtt_ns": 1436708, + "rtt_ms": 1.436708, "checkpoint": 0, "vertex_from": "240", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:47.067749544Z" + "timestamp": "2025-11-27T04:03:50.215572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579926, - "rtt_ms": 1.579926, + "rtt_ns": 1599625, + "rtt_ms": 1.599625, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.067954633Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:50.215591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727125, - "rtt_ms": 1.727125, + "rtt_ns": 1074000, + "rtt_ms": 1.074, "checkpoint": 0, "vertex_from": "240", "vertex_to": "326", - "timestamp": "2025-11-27T01:23:47.068069063Z" + "timestamp": "2025-11-27T04:03:50.215867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608456, - "rtt_ms": 1.608456, + "rtt_ns": 1481959, + "rtt_ms": 1.481959, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:47.068070993Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.21631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762725, - "rtt_ms": 1.762725, + "rtt_ns": 1439375, + "rtt_ms": 1.439375, "checkpoint": 0, "vertex_from": "240", "vertex_to": "393", - "timestamp": "2025-11-27T01:23:47.068279092Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1750775, - "rtt_ms": 1.750775, - "checkpoint": 0, - "vertex_from": "240", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:47.068300752Z" + "timestamp": "2025-11-27T04:03:50.216326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830565, - "rtt_ms": 1.830565, + "rtt_ns": 968750, + "rtt_ms": 0.96875, "checkpoint": 0, "vertex_from": "240", "vertex_to": "519", - "timestamp": "2025-11-27T01:23:47.068384732Z" + "timestamp": "2025-11-27T04:03:50.216329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207937, - "rtt_ms": 1.207937, + "rtt_ns": 1545917, + "rtt_ms": 1.545917, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:47.068425772Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:50.216422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190176, - "rtt_ms": 1.190176, + "rtt_ns": 1092583, + "rtt_ms": 1.092583, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.068536681Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.216961-08:00" }, { "operation": "add_edge", - "rtt_ns": 837147, - "rtt_ms": 0.837147, + "rtt_ns": 1456333, + "rtt_ms": 1.456333, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:47.068588541Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.217029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313626, - "rtt_ms": 1.313626, + "rtt_ns": 1583000, + "rtt_ms": 1.583, "checkpoint": 0, "vertex_from": "240", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.068632781Z" + "timestamp": "2025-11-27T04:03:50.217045-08:00" }, { "operation": "add_edge", - "rtt_ns": 856927, - "rtt_ms": 0.856927, + "rtt_ns": 2175041, + "rtt_ms": 2.175041, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.06881297Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.217064-08:00" }, { "operation": "add_edge", - "rtt_ns": 776567, - "rtt_ms": 0.776567, + "rtt_ns": 1887917, + "rtt_ms": 1.887917, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.06884887Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:50.217276-08:00" }, { "operation": "add_edge", - "rtt_ns": 819457, - "rtt_ms": 0.819457, + "rtt_ns": 1709417, + "rtt_ms": 1.709417, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.06889287Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:50.217302-08:00" }, { "operation": "add_edge", - "rtt_ns": 690638, - "rtt_ms": 0.690638, + "rtt_ns": 2220333, + "rtt_ms": 2.220333, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.06899327Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.21855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007717, - "rtt_ms": 1.007717, + "rtt_ns": 2350583, + "rtt_ms": 2.350583, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.069288929Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.218678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014447, - "rtt_ms": 1.014447, + "rtt_ns": 1373542, + "rtt_ms": 1.373542, "checkpoint": 0, - "vertex_from": "242", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.069552978Z" + "vertex_from": "243", + "vertex_to": "723", + "timestamp": "2025-11-27T04:03:50.218678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142816, - "rtt_ms": 1.142816, + "rtt_ns": 1704708, + "rtt_ms": 1.704708, "checkpoint": 0, "vertex_from": "241", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:47.069569868Z" + "timestamp": "2025-11-27T04:03:50.218736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286736, - "rtt_ms": 1.286736, + "rtt_ns": 2724791, + "rtt_ms": 2.724791, "checkpoint": 0, - "vertex_from": "241", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.069672898Z" + "vertex_from": "240", + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.219148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228296, - "rtt_ms": 1.228296, + "rtt_ns": 2171208, + "rtt_ms": 2.171208, "checkpoint": 0, "vertex_from": "242", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.069818057Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.219217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582995, - "rtt_ms": 1.582995, + "rtt_ns": 2929541, + "rtt_ms": 2.929541, + "checkpoint": 0, + "vertex_from": "240", + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.219241-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1996875, + "rtt_ms": 1.996875, "checkpoint": 0, "vertex_from": "242", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.070216746Z" + "timestamp": "2025-11-27T04:03:50.219274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398746, - "rtt_ms": 1.398746, + "rtt_ns": 2499541, + "rtt_ms": 2.499541, "checkpoint": 0, - "vertex_from": "244", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.070395056Z" + "vertex_from": "241", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.219464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629996, - "rtt_ms": 1.629996, + "rtt_ns": 2533292, + "rtt_ms": 2.533292, "checkpoint": 0, - "vertex_from": "243", - "vertex_to": "723", - "timestamp": "2025-11-27T01:23:47.070445396Z" + "vertex_from": "242", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.219599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598136, - "rtt_ms": 1.598136, + "rtt_ns": 1023584, + "rtt_ms": 1.023584, "checkpoint": 0, - "vertex_from": "244", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.070448736Z" + "vertex_from": "245", + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.220266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945024, - "rtt_ms": 1.945024, + "rtt_ns": 1181875, + "rtt_ms": 1.181875, "checkpoint": 0, "vertex_from": "244", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.070838684Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.220401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600655, - "rtt_ms": 1.600655, + "rtt_ns": 1711000, + "rtt_ms": 1.711, "checkpoint": 0, "vertex_from": "244", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.070890914Z" + "timestamp": "2025-11-27T04:03:50.220448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346846, - "rtt_ms": 1.346846, + "rtt_ns": 1312709, + "rtt_ms": 1.312709, "checkpoint": 0, "vertex_from": "244", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.070918384Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.220463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859005, - "rtt_ms": 1.859005, + "rtt_ns": 1786292, + "rtt_ms": 1.786292, "checkpoint": 0, "vertex_from": "244", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.071414053Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.220467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842804, - "rtt_ms": 1.842804, + "rtt_ns": 1345000, + "rtt_ms": 1.345, "checkpoint": 0, - "vertex_from": "245", + "vertex_from": "246", "vertex_to": "259", - "timestamp": "2025-11-27T01:23:47.071517092Z" + "timestamp": "2025-11-27T04:03:50.220621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742655, - "rtt_ms": 1.742655, + "rtt_ns": 2071417, + "rtt_ms": 2.071417, "checkpoint": 0, - "vertex_from": "246", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:47.071561722Z" + "vertex_from": "244", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.220623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196836, - "rtt_ms": 1.196836, + "rtt_ns": 1964292, + "rtt_ms": 1.964292, "checkpoint": 0, - "vertex_from": "249", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.071594322Z" + "vertex_from": "248", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.221429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155416, - "rtt_ms": 1.155416, + "rtt_ns": 1845500, + "rtt_ms": 1.8455, "checkpoint": 0, "vertex_from": "249", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:47.071605302Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.222112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166906, - "rtt_ms": 1.166906, + "rtt_ns": 2568791, + "rtt_ms": 2.568791, "checkpoint": 0, "vertex_from": "249", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.071613822Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.22217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402056, - "rtt_ms": 1.402056, + "rtt_ns": 1511459, + "rtt_ms": 1.511459, "checkpoint": 0, - "vertex_from": "248", + "vertex_from": "253", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.071619732Z" + "timestamp": "2025-11-27T04:03:50.222942-08:00" }, { "operation": "add_edge", - "rtt_ns": 978317, - "rtt_ms": 0.978317, + "rtt_ns": 2560333, + "rtt_ms": 2.560333, "checkpoint": 0, - "vertex_from": "250", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.07239477Z" + "vertex_from": "249", + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:50.222964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586506, - "rtt_ms": 1.586506, + "rtt_ns": 2516166, + "rtt_ms": 2.516166, "checkpoint": 0, "vertex_from": "250", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.0724266Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.22298-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1505126, - "rtt_ms": 1.505126, + "rtt_ns": 2616666, + "rtt_ms": 2.616666, "checkpoint": 0, "vertex_from": "883", - "timestamp": "2025-11-27T01:23:47.07242751Z" + "timestamp": "2025-11-27T04:03:50.223086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554896, - "rtt_ms": 1.554896, + "rtt_ns": 2651041, + "rtt_ms": 2.651041, "checkpoint": 0, "vertex_from": "250", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.07244653Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.223275-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1187897, - "rtt_ms": 1.187897, + "rtt_ns": 2672042, + "rtt_ms": 2.672042, "checkpoint": 0, - "vertex_from": "254", - "timestamp": "2025-11-27T01:23:47.072804069Z" + "vertex_from": "251", + "timestamp": "2025-11-27T04:03:50.223296-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1268557, - "rtt_ms": 1.268557, + "rtt_ns": 1203958, + "rtt_ms": 1.203958, "checkpoint": 0, "vertex_from": "254", - "timestamp": "2025-11-27T01:23:47.072875399Z" + "timestamp": "2025-11-27T04:03:50.223317-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1279657, - "rtt_ms": 1.279657, + "rtt_ns": 1171083, + "rtt_ms": 1.171083, "checkpoint": 0, "vertex_from": "254", - "timestamp": "2025-11-27T01:23:47.072876189Z" + "timestamp": "2025-11-27T04:03:50.223343-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1751605, - "rtt_ms": 1.751605, + "operation": "add_edge", + "rtt_ns": 4820375, + "rtt_ms": 4.820375, "checkpoint": 0, - "vertex_from": "251", - "timestamp": "2025-11-27T01:23:47.073270687Z" + "vertex_from": "244", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.223501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809325, - "rtt_ms": 1.809325, + "rtt_ns": 3070459, + "rtt_ms": 3.070459, + "checkpoint": 0, + "vertex_from": "250", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.22352-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1516625, + "rtt_ms": 1.516625, "checkpoint": 0, "vertex_from": "256", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:47.073430197Z" + "timestamp": "2025-11-27T04:03:50.224482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021067, - "rtt_ms": 1.021067, + "rtt_ns": 1518125, + "rtt_ms": 1.518125, "checkpoint": 0, - "vertex_from": "250", - "vertex_to": "883", - "timestamp": "2025-11-27T01:23:47.073448977Z" + "vertex_from": "256", + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:50.224499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925185, - "rtt_ms": 1.925185, + "rtt_ns": 1354625, + "rtt_ms": 1.354625, "checkpoint": 0, - "vertex_from": "253", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.073488467Z" + "vertex_from": "254", + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.224672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096787, - "rtt_ms": 1.096787, + "rtt_ns": 1362083, + "rtt_ms": 1.362083, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:47.073524907Z" + "vertex_from": "254", + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.224706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101967, - "rtt_ms": 1.101967, + "rtt_ns": 1439375, + "rtt_ms": 1.439375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.073550827Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.224717-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2030333, + "rtt_ms": 2.030333, + "checkpoint": 0, + "vertex_from": "254", + "timestamp": "2025-11-27T04:03:50.224973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179827, - "rtt_ms": 1.179827, + "rtt_ns": 2001292, + "rtt_ms": 2.001292, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:47.073575497Z" + "vertex_from": "250", + "vertex_to": "883", + "timestamp": "2025-11-27T04:03:50.225088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428976, - "rtt_ms": 1.428976, + "rtt_ns": 1656292, + "rtt_ms": 1.656292, "checkpoint": 0, - "vertex_from": "254", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.074304895Z" + "vertex_from": "256", + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.225159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067557, - "rtt_ms": 1.067557, + "rtt_ns": 1924375, + "rtt_ms": 1.924375, "checkpoint": 0, "vertex_from": "251", "vertex_to": "263", - "timestamp": "2025-11-27T01:23:47.074338764Z" + "timestamp": "2025-11-27T04:03:50.225221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536665, - "rtt_ms": 1.536665, + "rtt_ns": 2196208, + "rtt_ms": 2.196208, "checkpoint": 0, - "vertex_from": "254", - "vertex_to": "256", - "timestamp": "2025-11-27T01:23:47.074341424Z" + "vertex_from": "256", + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.225717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470635, - "rtt_ms": 1.470635, + "rtt_ns": 1247542, + "rtt_ms": 1.247542, "checkpoint": 0, - "vertex_from": "254", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:47.074348544Z" + "vertex_from": "256", + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:50.225731-08:00" }, { "operation": "add_edge", - "rtt_ns": 910487, - "rtt_ms": 0.910487, + "rtt_ns": 1072458, + "rtt_ms": 1.072458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:47.074361194Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:50.225781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000397, - "rtt_ms": 1.000397, + "rtt_ns": 1410167, + "rtt_ms": 1.410167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.074576954Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.22591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174106, - "rtt_ms": 1.174106, + "rtt_ns": 1316791, + "rtt_ms": 1.316791, "checkpoint": 0, "vertex_from": "256", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.074699963Z" + "timestamp": "2025-11-27T04:03:50.22599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230786, - "rtt_ms": 1.230786, + "rtt_ns": 1277375, + "rtt_ms": 1.277375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:47.074783663Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.225996-08:00" }, { "operation": "add_edge", - "rtt_ns": 877798, - "rtt_ms": 0.877798, + "rtt_ns": 1284792, + "rtt_ms": 1.284792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:47.075220772Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.227005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754035, - "rtt_ms": 1.754035, + "rtt_ns": 2054333, + "rtt_ms": 2.054333, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:47.075243802Z" + "vertex_from": "254", + "vertex_to": "256", + "timestamp": "2025-11-27T04:03:50.227028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1953014, - "rtt_ms": 1.953014, + "rtt_ns": 2075042, + "rtt_ms": 2.075042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.075384741Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:50.227297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097277, - "rtt_ms": 1.097277, + "rtt_ns": 2290542, + "rtt_ms": 2.290542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:47.075402951Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.227452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183567, - "rtt_ms": 1.183567, + "rtt_ns": 1502083, + "rtt_ms": 1.502083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.075546441Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:03:50.227499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234987, - "rtt_ms": 1.234987, + "rtt_ns": 1842958, + "rtt_ms": 1.842958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.075574981Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.227625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004657, - "rtt_ms": 1.004657, + "rtt_ns": 2549083, + "rtt_ms": 2.549083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.075591391Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:50.227638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246617, - "rtt_ms": 1.246617, + "rtt_ns": 2350792, + "rtt_ms": 2.350792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.075598011Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.228083-08:00" }, { "operation": "add_edge", - "rtt_ns": 898708, - "rtt_ms": 0.898708, + "rtt_ns": 2160166, + "rtt_ms": 2.160166, "checkpoint": 0, "vertex_from": "256", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.075684021Z" + "timestamp": "2025-11-27T04:03:50.228151-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2486958, + "rtt_ms": 2.486958, + "checkpoint": 0, + "vertex_from": "256", + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.228399-08:00" }, { "operation": "add_edge", - "rtt_ns": 965837, - "rtt_ms": 0.965837, + "rtt_ns": 1760000, + "rtt_ms": 1.76, "checkpoint": 0, "vertex_from": "256", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.076212689Z" + "timestamp": "2025-11-27T04:03:50.228766-08:00" }, { "operation": "add_edge", - "rtt_ns": 951388, - "rtt_ms": 0.951388, + "rtt_ns": 1901250, + "rtt_ms": 1.90125, "checkpoint": 0, "vertex_from": "256", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.076338399Z" + "timestamp": "2025-11-27T04:03:50.22893-08:00" }, { "operation": "add_edge", - "rtt_ns": 991898, - "rtt_ms": 0.991898, + "rtt_ns": 1450959, + "rtt_ms": 1.450959, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:47.076396729Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:50.228951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695496, - "rtt_ms": 1.695496, + "rtt_ns": 1971375, + "rtt_ms": 1.971375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.076396689Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.22927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273336, - "rtt_ms": 1.273336, + "rtt_ns": 1755792, + "rtt_ms": 1.755792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.076820717Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:50.229403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885264, - "rtt_ms": 1.885264, + "rtt_ns": 2106708, + "rtt_ms": 2.106708, "checkpoint": 0, "vertex_from": "256", "vertex_to": "419", - "timestamp": "2025-11-27T01:23:47.077477595Z" + "timestamp": "2025-11-27T04:03:50.229733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990084, - "rtt_ms": 1.990084, + "rtt_ns": 1345167, + "rtt_ms": 1.345167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:47.077566825Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:03:50.229747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019054, - "rtt_ms": 2.019054, + "rtt_ns": 1094000, + "rtt_ms": 1.094, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:47.077618635Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:50.229861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2519062, - "rtt_ms": 2.519062, + "rtt_ns": 2420875, + "rtt_ms": 2.420875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "295", - "timestamp": "2025-11-27T01:23:47.077742764Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.229873-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071153, - "rtt_ms": 2.071153, + "rtt_ns": 1899208, + "rtt_ms": 1.899208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:47.077756114Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:50.23083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639755, - "rtt_ms": 1.639755, + "rtt_ns": 1592667, + "rtt_ms": 1.592667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "498", - "timestamp": "2025-11-27T01:23:47.077854014Z" + "vertex_to": "622", + "timestamp": "2025-11-27T04:03:50.230864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680395, - "rtt_ms": 1.680395, + "rtt_ns": 2932959, + "rtt_ms": 2.932959, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "437", - "timestamp": "2025-11-27T01:23:47.078019674Z" + "vertex_to": "498", + "timestamp": "2025-11-27T04:03:50.231085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737855, - "rtt_ms": 1.737855, + "rtt_ns": 2232583, + "rtt_ms": 2.232583, "checkpoint": 0, "vertex_from": "256", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:47.078559962Z" + "timestamp": "2025-11-27T04:03:50.231184-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177253, - "rtt_ms": 2.177253, + "rtt_ns": 1321209, + "rtt_ms": 1.321209, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:47.078574782Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:50.231196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182233, - "rtt_ms": 2.182233, + "rtt_ns": 1505625, + "rtt_ms": 1.505625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:47.078580892Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:03:50.231253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764285, - "rtt_ms": 1.764285, + "rtt_ns": 1866292, + "rtt_ms": 1.866292, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:47.07938427Z" + "vertex_to": "376", + "timestamp": "2025-11-27T04:03:50.23127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783525, - "rtt_ms": 1.783525, + "rtt_ns": 1692041, + "rtt_ms": 1.692041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "689", - "timestamp": "2025-11-27T01:23:47.079540499Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.231428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2061904, - "rtt_ms": 2.061904, + "rtt_ns": 1579125, + "rtt_ms": 1.579125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "622", - "timestamp": "2025-11-27T01:23:47.079542699Z" + "vertex_to": "689", + "timestamp": "2025-11-27T04:03:50.231442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703105, - "rtt_ms": 1.703105, + "rtt_ns": 3520542, + "rtt_ms": 3.520542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:47.079558349Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:50.231604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994194, - "rtt_ms": 1.994194, + "rtt_ns": 1482291, + "rtt_ms": 1.482291, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "376", - "timestamp": "2025-11-27T01:23:47.079563009Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:50.232314-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000105, - "rtt_ms": 2.000105, + "rtt_ns": 1231084, + "rtt_ms": 1.231084, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:47.079745099Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.232428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198926, - "rtt_ms": 1.198926, + "rtt_ns": 1125625, + "rtt_ms": 1.125625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:47.079762448Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:03:50.232554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397626, - "rtt_ms": 1.397626, + "rtt_ns": 1418375, + "rtt_ms": 1.418375, "checkpoint": 0, "vertex_from": "256", "vertex_to": "334", - "timestamp": "2025-11-27T01:23:47.079980118Z" + "timestamp": "2025-11-27T04:03:50.232604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988144, - "rtt_ms": 1.988144, + "rtt_ns": 1414959, + "rtt_ms": 1.414959, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:47.080008608Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.232686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486066, - "rtt_ms": 1.486066, + "rtt_ns": 1508750, + "rtt_ms": 1.50875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:47.080062198Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.232763-08:00" }, { "operation": "add_edge", - "rtt_ns": 797717, - "rtt_ms": 0.797717, + "rtt_ns": 1715916, + "rtt_ms": 1.715916, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.080183127Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.232803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099916, - "rtt_ms": 1.099916, + "rtt_ns": 1427708, + "rtt_ms": 1.427708, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:47.080846955Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.232871-08:00" }, { "operation": "add_edge", - "rtt_ns": 954857, - "rtt_ms": 0.954857, + "rtt_ns": 2096959, + "rtt_ms": 2.096959, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.080936495Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:50.232964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429916, - "rtt_ms": 1.429916, + "rtt_ns": 1833709, + "rtt_ms": 1.833709, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "257", - "timestamp": "2025-11-27T01:23:47.080988725Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:50.233438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279587, - "rtt_ms": 1.279587, + "rtt_ns": 1771125, + "rtt_ms": 1.771125, "checkpoint": 0, "vertex_from": "256", "vertex_to": "789", - "timestamp": "2025-11-27T01:23:47.081043795Z" + "timestamp": "2025-11-27T04:03:50.234086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039967, - "rtt_ms": 1.039967, + "rtt_ns": 1247500, + "rtt_ms": 1.2475, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "291", - "timestamp": "2025-11-27T01:23:47.081049795Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:50.234119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501956, - "rtt_ms": 1.501956, + "rtt_ns": 1435125, + "rtt_ms": 1.435125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.081065625Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.234239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538706, - "rtt_ms": 1.538706, + "rtt_ns": 1733417, + "rtt_ms": 1.733417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.081082315Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:03:50.234289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112277, - "rtt_ms": 1.112277, + "rtt_ns": 2009750, + "rtt_ms": 2.00975, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "481", - "timestamp": "2025-11-27T01:23:47.081175665Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:03:50.234696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752705, - "rtt_ms": 1.752705, + "rtt_ns": 1879500, + "rtt_ms": 1.8795, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.081293914Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:03:50.234844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208447, - "rtt_ms": 1.208447, + "rtt_ns": 2614000, + "rtt_ms": 2.614, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "625", - "timestamp": "2025-11-27T01:23:47.082058312Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.235043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905815, - "rtt_ms": 1.905815, + "rtt_ns": 1632708, + "rtt_ms": 1.632708, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:47.082089832Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:50.235072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151227, - "rtt_ms": 1.151227, + "rtt_ns": 2575166, + "rtt_ms": 2.575166, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.082092682Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:03:50.23518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284286, - "rtt_ms": 1.284286, + "rtt_ns": 2769375, + "rtt_ms": 2.769375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:47.082368891Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:03:50.235535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500736, - "rtt_ms": 1.500736, + "rtt_ns": 975792, + "rtt_ms": 0.975792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:47.082491111Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.235673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504626, - "rtt_ms": 1.504626, + "rtt_ns": 1725250, + "rtt_ms": 1.72525, "checkpoint": 0, "vertex_from": "256", "vertex_to": "424", - "timestamp": "2025-11-27T01:23:47.082572431Z" + "timestamp": "2025-11-27T04:03:50.235812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549566, - "rtt_ms": 1.549566, + "rtt_ns": 1644625, + "rtt_ms": 1.644625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "597", - "timestamp": "2025-11-27T01:23:47.082598071Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.235937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423116, - "rtt_ms": 1.423116, + "rtt_ns": 2030750, + "rtt_ms": 2.03075, "checkpoint": 0, "vertex_from": "256", "vertex_to": "422", - "timestamp": "2025-11-27T01:23:47.082601451Z" + "timestamp": "2025-11-27T04:03:50.236271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888065, - "rtt_ms": 1.888065, + "rtt_ns": 1243458, + "rtt_ms": 1.243458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:47.083183589Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.236287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126507, - "rtt_ms": 1.126507, + "rtt_ns": 2258333, + "rtt_ms": 2.258333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.083222559Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:03:50.236378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164127, - "rtt_ms": 1.164127, + "rtt_ns": 1727083, + "rtt_ms": 1.727083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.083224209Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.236573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238764, - "rtt_ms": 2.238764, + "rtt_ns": 1849875, + "rtt_ms": 1.849875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:47.083290539Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.236925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206247, - "rtt_ms": 1.206247, + "rtt_ns": 2194250, + "rtt_ms": 2.19425, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.083297699Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.237375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052827, - "rtt_ms": 1.052827, + "rtt_ns": 1473417, + "rtt_ms": 1.473417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.083424378Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.237411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464725, - "rtt_ms": 1.464725, + "rtt_ns": 1889667, + "rtt_ms": 1.889667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:47.084038536Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:50.237564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644315, - "rtt_ms": 1.644315, + "rtt_ns": 2055542, + "rtt_ms": 2.055542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.084136476Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:50.237592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634545, - "rtt_ms": 1.634545, + "rtt_ns": 1328541, + "rtt_ms": 1.328541, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:47.084238016Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.237617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662155, - "rtt_ms": 1.662155, + "rtt_ns": 1845459, + "rtt_ms": 1.845459, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:47.084261326Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:50.238117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195056, - "rtt_ms": 1.195056, + "rtt_ns": 2365833, + "rtt_ms": 2.365833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:47.084420085Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:50.238179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345856, - "rtt_ms": 1.345856, + "rtt_ns": 1774625, + "rtt_ms": 1.774625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.084531885Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.238351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263546, - "rtt_ms": 1.263546, + "rtt_ns": 1442042, + "rtt_ms": 1.442042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.084555695Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:03:50.23837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350966, - "rtt_ms": 1.350966, + "rtt_ns": 2017625, + "rtt_ms": 2.017625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.084652155Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.238397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499475, - "rtt_ms": 1.499475, + "rtt_ns": 1336208, + "rtt_ms": 1.336208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:47.084726184Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:50.23893-08:00" }, { "operation": "add_edge", - "rtt_ns": 744138, - "rtt_ms": 0.744138, + "rtt_ns": 1773500, + "rtt_ms": 1.7735, "checkpoint": 0, "vertex_from": "256", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.084784614Z" + "timestamp": "2025-11-27T04:03:50.23915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401936, - "rtt_ms": 1.401936, + "rtt_ns": 1605833, + "rtt_ms": 1.605833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:47.084829234Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.239172-08:00" }, { "operation": "add_edge", - "rtt_ns": 782657, - "rtt_ms": 0.782657, + "rtt_ns": 1794833, + "rtt_ms": 1.794833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:47.085045523Z" + "vertex_to": "492", + "timestamp": "2025-11-27T04:03:50.239207-08:00" }, { "operation": "add_edge", - "rtt_ns": 933707, - "rtt_ms": 0.933707, + "rtt_ns": 1145500, + "rtt_ms": 1.1455, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "492", - "timestamp": "2025-11-27T01:23:47.085071333Z" + "vertex_to": "748", + "timestamp": "2025-11-27T04:03:50.239265-08:00" }, { "operation": "add_edge", - "rtt_ns": 714288, - "rtt_ms": 0.714288, + "rtt_ns": 1663584, + "rtt_ms": 1.663584, "checkpoint": 0, "vertex_from": "256", "vertex_to": "300", - "timestamp": "2025-11-27T01:23:47.085136893Z" + "timestamp": "2025-11-27T04:03:50.239281-08:00" }, { "operation": "add_edge", - "rtt_ns": 919817, - "rtt_ms": 0.919817, + "rtt_ns": 1961333, + "rtt_ms": 1.961333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.085161133Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.240359-08:00" }, { "operation": "add_edge", - "rtt_ns": 805018, - "rtt_ms": 0.805018, + "rtt_ns": 2007250, + "rtt_ms": 2.00725, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "748", - "timestamp": "2025-11-27T01:23:47.085339083Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:03:50.240378-08:00" }, { "operation": "add_edge", - "rtt_ns": 838937, - "rtt_ms": 0.838937, + "rtt_ns": 2537916, + "rtt_ms": 2.537916, "checkpoint": 0, "vertex_from": "256", "vertex_to": "652", - "timestamp": "2025-11-27T01:23:47.085396042Z" + "timestamp": "2025-11-27T04:03:50.240718-08:00" }, { "operation": "add_edge", - "rtt_ns": 843777, - "rtt_ms": 0.843777, + "rtt_ns": 2383500, + "rtt_ms": 2.3835, "checkpoint": 0, "vertex_from": "256", "vertex_to": "396", - "timestamp": "2025-11-27T01:23:47.085497932Z" + "timestamp": "2025-11-27T04:03:50.240735-08:00" }, { "operation": "add_edge", - "rtt_ns": 848148, - "rtt_ms": 0.848148, + "rtt_ns": 1642875, + "rtt_ms": 1.642875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "677", - "timestamp": "2025-11-27T01:23:47.085576432Z" - }, - { - "operation": "add_edge", - "rtt_ns": 791288, - "rtt_ms": 0.791288, - "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.085577592Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.240925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187067, - "rtt_ms": 1.187067, + "rtt_ns": 1803208, + "rtt_ms": 1.803208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:47.086017991Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.240954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008017, - "rtt_ms": 1.008017, + "rtt_ns": 2055125, + "rtt_ms": 2.055125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.08605527Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:03:50.241263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052167, - "rtt_ms": 1.052167, + "rtt_ns": 2735041, + "rtt_ms": 2.735041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "270", - "timestamp": "2025-11-27T01:23:47.08619073Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.241667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170097, - "rtt_ms": 1.170097, + "rtt_ns": 1417834, + "rtt_ms": 1.417834, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:47.08624379Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:50.241796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083037, - "rtt_ms": 1.083037, + "rtt_ns": 1079750, + "rtt_ms": 1.07975, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:47.08624822Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:03:50.241816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660955, - "rtt_ms": 1.660955, + "rtt_ns": 1208542, + "rtt_ms": 1.208542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.087001288Z" + "vertex_to": "966", + "timestamp": "2025-11-27T04:03:50.242147-08:00" }, { "operation": "add_edge", - "rtt_ns": 968597, - "rtt_ms": 0.968597, + "rtt_ns": 1445792, + "rtt_ms": 1.445792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "551", - "timestamp": "2025-11-27T01:23:47.087029387Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:50.242167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495925, - "rtt_ms": 1.495925, + "rtt_ns": 962709, + "rtt_ms": 0.962709, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:47.087074007Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:50.242227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500075, - "rtt_ms": 1.500075, + "rtt_ns": 1880917, + "rtt_ms": 1.880917, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "426", - "timestamp": "2025-11-27T01:23:47.087079247Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:03:50.242241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579865, - "rtt_ms": 1.579865, + "rtt_ns": 3099500, + "rtt_ms": 3.0995, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:47.087079967Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.242274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759275, - "rtt_ms": 1.759275, + "rtt_ns": 3068375, + "rtt_ms": 3.068375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:47.087157677Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:50.242334-08:00" }, { "operation": "add_edge", - "rtt_ns": 867457, - "rtt_ms": 0.867457, + "rtt_ns": 1397167, + "rtt_ms": 1.397167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.087870435Z" + "vertex_to": "551", + "timestamp": "2025-11-27T04:03:50.242352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692015, - "rtt_ms": 1.692015, + "rtt_ns": 1450084, + "rtt_ms": 1.450084, "checkpoint": 0, "vertex_from": "256", "vertex_to": "306", - "timestamp": "2025-11-27T01:23:47.087937605Z" + "timestamp": "2025-11-27T04:03:50.24312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713875, - "rtt_ms": 1.713875, + "rtt_ns": 1363500, + "rtt_ms": 1.3635, "checkpoint": 0, "vertex_from": "256", "vertex_to": "645", - "timestamp": "2025-11-27T01:23:47.087964535Z" + "timestamp": "2025-11-27T04:03:50.243161-08:00" }, { "operation": "add_edge", - "rtt_ns": 885098, - "rtt_ms": 0.885098, + "rtt_ns": 1417500, + "rtt_ms": 1.4175, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:47.087965555Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:03:50.243772-08:00" }, { "operation": "add_edge", - "rtt_ns": 946978, - "rtt_ms": 0.946978, + "rtt_ns": 1656250, + "rtt_ms": 1.65625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:47.087977465Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:50.243884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828615, - "rtt_ms": 1.828615, + "rtt_ns": 1557958, + "rtt_ms": 1.557958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:47.088021645Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:50.243895-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048653, - "rtt_ms": 2.048653, + "rtt_ns": 1752167, + "rtt_ms": 1.752167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "966", - "timestamp": "2025-11-27T01:23:47.088069504Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.24392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102327, - "rtt_ms": 1.102327, + "rtt_ns": 1655208, + "rtt_ms": 1.655208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.088177584Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:50.24393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095847, - "rtt_ms": 1.095847, + "rtt_ns": 1705792, + "rtt_ms": 1.705792, "checkpoint": 0, "vertex_from": "256", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:47.088177604Z" + "timestamp": "2025-11-27T04:03:50.243948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569956, - "rtt_ms": 1.569956, + "rtt_ns": 2272125, + "rtt_ms": 2.272125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:47.088728773Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.244089-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1999644, - "rtt_ms": 1.999644, + "rtt_ns": 1122208, + "rtt_ms": 1.122208, "checkpoint": 0, "vertex_from": "638", - "timestamp": "2025-11-27T01:23:47.089974089Z" + "timestamp": "2025-11-27T04:03:50.244245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2537353, - "rtt_ms": 2.537353, + "rtt_ns": 1202916, + "rtt_ms": 1.202916, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "342", - "timestamp": "2025-11-27T01:23:47.090477118Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:50.244365-08:00" }, { "operation": "add_edge", - "rtt_ns": 2593442, - "rtt_ms": 2.593442, + "rtt_ns": 2645875, + "rtt_ms": 2.645875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:47.090561057Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:50.244794-08:00" }, { "operation": "add_edge", - "rtt_ns": 2695682, - "rtt_ms": 2.695682, + "rtt_ns": 1358292, + "rtt_ms": 1.358292, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.090567767Z" + "vertex_to": "854", + "timestamp": "2025-11-27T04:03:50.245279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844014, - "rtt_ms": 1.844014, + "rtt_ns": 1413334, + "rtt_ms": 1.413334, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:47.090573947Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:50.245298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2666842, - "rtt_ms": 2.666842, + "rtt_ns": 1747042, + "rtt_ms": 1.747042, "checkpoint": 0, "vertex_from": "256", "vertex_to": "308", - "timestamp": "2025-11-27T01:23:47.090646117Z" + "timestamp": "2025-11-27T04:03:50.24552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2661693, - "rtt_ms": 2.661693, + "rtt_ns": 1269500, + "rtt_ms": 1.2695, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "500", - "timestamp": "2025-11-27T01:23:47.090732997Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:50.245636-08:00" }, { "operation": "add_edge", - "rtt_ns": 3160051, - "rtt_ms": 3.160051, + "rtt_ns": 1549875, + "rtt_ms": 1.549875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "377", - "timestamp": "2025-11-27T01:23:47.091339705Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:50.24564-08:00" }, { "operation": "add_edge", - "rtt_ns": 3441360, - "rtt_ms": 3.44136, + "rtt_ns": 1705500, + "rtt_ms": 1.7055, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:47.091465035Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:50.245655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002197, - "rtt_ms": 1.002197, + "rtt_ns": 1727208, + "rtt_ms": 1.727208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:47.091479995Z" + "vertex_to": "377", + "timestamp": "2025-11-27T04:03:50.245661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548156, - "rtt_ms": 1.548156, + "rtt_ns": 1840541, + "rtt_ms": 1.840541, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "638", - "timestamp": "2025-11-27T01:23:47.091522435Z" + "vertex_to": "500", + "timestamp": "2025-11-27T04:03:50.245736-08:00" }, { "operation": "add_edge", - "rtt_ns": 3357911, - "rtt_ms": 3.357911, + "rtt_ns": 1625750, + "rtt_ms": 1.62575, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "854", - "timestamp": "2025-11-27T01:23:47.091537225Z" + "vertex_to": "638", + "timestamp": "2025-11-27T04:03:50.245871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656196, - "rtt_ms": 1.656196, + "rtt_ns": 1660333, + "rtt_ms": 1.660333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.092218063Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.246457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543576, - "rtt_ms": 1.543576, + "rtt_ns": 1607875, + "rtt_ms": 1.607875, "checkpoint": 0, "vertex_from": "256", "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.092277783Z" + "timestamp": "2025-11-27T04:03:50.247128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809085, - "rtt_ms": 1.809085, + "rtt_ns": 1943000, + "rtt_ms": 1.943, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.092377882Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:03:50.247223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776445, - "rtt_ms": 1.776445, + "rtt_ns": 1765625, + "rtt_ms": 1.765625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.092423052Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.247421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885375, - "rtt_ms": 1.885375, + "rtt_ns": 2126792, + "rtt_ms": 2.126792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:47.092461202Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.247425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682995, - "rtt_ms": 1.682995, + "rtt_ns": 1818792, + "rtt_ms": 1.818792, "checkpoint": 0, "vertex_from": "256", "vertex_to": "675", - "timestamp": "2025-11-27T01:23:47.09302378Z" + "timestamp": "2025-11-27T04:03:50.247456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656975, - "rtt_ms": 1.656975, + "rtt_ns": 1902750, + "rtt_ms": 1.90275, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:47.09318117Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:50.248363-08:00" }, { "operation": "add_edge", - "rtt_ns": 908627, - "rtt_ms": 0.908627, + "rtt_ns": 1157208, + "rtt_ms": 1.157208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:47.09318764Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.248382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731945, - "rtt_ms": 1.731945, + "rtt_ns": 1493542, + "rtt_ms": 1.493542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:47.09320178Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:03:50.248625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840524, - "rtt_ms": 1.840524, + "rtt_ns": 3002583, + "rtt_ms": 3.002583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.093321519Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:50.248643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806884, - "rtt_ms": 1.806884, + "rtt_ns": 2997541, + "rtt_ms": 2.997541, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.093345689Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:50.24866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315226, - "rtt_ms": 1.315226, + "rtt_ns": 1270708, + "rtt_ms": 1.270708, "checkpoint": 0, "vertex_from": "256", "vertex_to": "646", - "timestamp": "2025-11-27T01:23:47.093778318Z" + "timestamp": "2025-11-27T04:03:50.248693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462906, - "rtt_ms": 1.462906, + "rtt_ns": 3061709, + "rtt_ms": 3.061709, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:47.093844898Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.2488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653975, - "rtt_ms": 1.653975, + "rtt_ns": 1397833, + "rtt_ms": 1.397833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:47.093873808Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:50.248856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169887, - "rtt_ms": 1.169887, + "rtt_ns": 2999000, + "rtt_ms": 2.999, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:47.094195217Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.248872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050617, - "rtt_ms": 1.050617, + "rtt_ns": 1604583, + "rtt_ms": 1.604583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:47.094232617Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.249031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194366, - "rtt_ms": 1.194366, + "rtt_ns": 1533625, + "rtt_ms": 1.533625, "checkpoint": 0, "vertex_from": "256", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.094383406Z" + "timestamp": "2025-11-27T04:03:50.249898-08:00" }, { "operation": "add_edge", - "rtt_ns": 2506813, - "rtt_ms": 2.506813, + "rtt_ns": 1113833, + "rtt_ms": 1.113833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:47.094931645Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:50.249915-08:00" }, { "operation": "add_edge", - "rtt_ns": 796407, - "rtt_ms": 0.796407, + "rtt_ns": 1380041, + "rtt_ms": 1.380041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:47.094992624Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:50.250006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685815, - "rtt_ms": 1.685815, + "rtt_ns": 1446500, + "rtt_ms": 1.4465, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.095033724Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:50.250108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166286, - "rtt_ms": 1.166286, + "rtt_ns": 1439375, + "rtt_ms": 1.439375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:47.095041164Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.250133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284206, - "rtt_ms": 1.284206, + "rtt_ns": 1764458, + "rtt_ms": 1.764458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:47.095064844Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:03:50.250149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808625, - "rtt_ms": 1.808625, + "rtt_ns": 1507334, + "rtt_ms": 1.507334, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:47.095134444Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.250151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047797, - "rtt_ms": 1.047797, + "rtt_ns": 1311459, + "rtt_ms": 1.311459, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:47.095281884Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:50.250168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964394, - "rtt_ms": 1.964394, + "rtt_ns": 1298000, + "rtt_ms": 1.298, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.095810602Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:03:50.250171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2633732, - "rtt_ms": 2.633732, + "rtt_ns": 1448917, + "rtt_ms": 1.448917, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:47.095836692Z" + "vertex_to": "843", + "timestamp": "2025-11-27T04:03:50.250481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513756, - "rtt_ms": 1.513756, + "rtt_ns": 1420250, + "rtt_ms": 1.42025, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "843", - "timestamp": "2025-11-27T01:23:47.095900472Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:03:50.251319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066027, - "rtt_ms": 1.066027, + "rtt_ns": 1329500, + "rtt_ms": 1.3295, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "603", - "timestamp": "2025-11-27T01:23:47.095999632Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:03:50.251338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150927, - "rtt_ms": 1.150927, + "rtt_ns": 1458625, + "rtt_ms": 1.458625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:47.096218701Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:03:50.251374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244447, - "rtt_ms": 1.244447, + "rtt_ns": 1242667, + "rtt_ms": 1.242667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:47.096238591Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:50.251377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282137, - "rtt_ms": 1.282137, + "rtt_ns": 1212209, + "rtt_ms": 1.212209, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "357", - "timestamp": "2025-11-27T01:23:47.096317401Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:50.251381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343166, - "rtt_ms": 1.343166, + "rtt_ns": 1347625, + "rtt_ms": 1.347625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.09638639Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.2515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293966, - "rtt_ms": 1.293966, + "rtt_ns": 1795459, + "rtt_ms": 1.795459, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:47.09643191Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:03:50.251967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526625, - "rtt_ms": 1.526625, + "rtt_ns": 1912708, + "rtt_ms": 1.912708, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.096809689Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.252023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148117, - "rtt_ms": 1.148117, + "rtt_ns": 1926666, + "rtt_ms": 1.926666, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:47.096959899Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:50.252076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131267, - "rtt_ms": 1.131267, + "rtt_ns": 1646209, + "rtt_ms": 1.646209, "checkpoint": 0, "vertex_from": "256", "vertex_to": "846", - "timestamp": "2025-11-27T01:23:47.097033339Z" + "timestamp": "2025-11-27T04:03:50.252129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112966, - "rtt_ms": 1.112966, + "rtt_ns": 1439542, + "rtt_ms": 1.439542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:47.097114258Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:03:50.252818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310186, - "rtt_ms": 1.310186, + "rtt_ns": 1712250, + "rtt_ms": 1.71225, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:47.097153188Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.253094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063277, - "rtt_ms": 1.063277, + "rtt_ns": 1730917, + "rtt_ms": 1.730917, "checkpoint": 0, "vertex_from": "256", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.097305088Z" + "timestamp": "2025-11-27T04:03:50.253108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601725, - "rtt_ms": 1.601725, + "rtt_ns": 1640375, + "rtt_ms": 1.640375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "866", - "timestamp": "2025-11-27T01:23:47.097921036Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.253141-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1826475, - "rtt_ms": 1.826475, + "operation": "add_edge", + "rtt_ns": 1851125, + "rtt_ms": 1.851125, "checkpoint": 0, - "vertex_from": "687", - "timestamp": "2025-11-27T01:23:47.098046976Z" + "vertex_from": "256", + "vertex_to": "665", + "timestamp": "2025-11-27T04:03:50.253171-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1630906, - "rtt_ms": 1.630906, + "operation": "add_vertex", + "rtt_ns": 1932333, + "rtt_ms": 1.932333, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.098064336Z" + "vertex_from": "687", + "timestamp": "2025-11-27T04:03:50.253272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700566, - "rtt_ms": 1.700566, + "rtt_ns": 1270041, + "rtt_ms": 1.270041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:47.098089456Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:50.253293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313657, - "rtt_ms": 1.313657, + "rtt_ns": 1855959, + "rtt_ms": 1.855959, "checkpoint": 0, "vertex_from": "256", "vertex_to": "455", - "timestamp": "2025-11-27T01:23:47.098124256Z" + "timestamp": "2025-11-27T04:03:50.253824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174396, - "rtt_ms": 1.174396, + "rtt_ns": 1213417, + "rtt_ms": 1.213417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:47.098208875Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:50.254355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185617, - "rtt_ms": 1.185617, + "rtt_ns": 2008208, + "rtt_ms": 2.008208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "876", - "timestamp": "2025-11-27T01:23:47.098302485Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:50.254829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479256, - "rtt_ms": 1.479256, + "rtt_ns": 1041333, + "rtt_ms": 1.041333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:47.098440635Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:50.254866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968345, - "rtt_ms": 1.968345, + "rtt_ns": 1682875, + "rtt_ms": 1.682875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:47.099124003Z" + "vertex_to": "687", + "timestamp": "2025-11-27T04:03:50.254955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851785, - "rtt_ms": 1.851785, + "rtt_ns": 2898834, + "rtt_ms": 2.898834, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:47.099158563Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1236067, - "rtt_ms": 1.236067, - "checkpoint": 0, - "vertex_from": "827", - "timestamp": "2025-11-27T01:23:47.099159643Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:50.254976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142697, - "rtt_ms": 1.142697, + "rtt_ns": 1883208, + "rtt_ms": 1.883208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "687", - "timestamp": "2025-11-27T01:23:47.099189913Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.254979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124117, - "rtt_ms": 1.124117, + "rtt_ns": 1701875, + "rtt_ms": 1.701875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:47.099189893Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:03:50.254996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192326, - "rtt_ms": 1.192326, + "rtt_ns": 2866500, + "rtt_ms": 2.8665, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:47.099283872Z" + "vertex_to": "876", + "timestamp": "2025-11-27T04:03:50.254998-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1189016, - "rtt_ms": 1.189016, + "operation": "add_vertex", + "rtt_ns": 2105875, + "rtt_ms": 2.105875, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:47.099314812Z" + "vertex_from": "827", + "timestamp": "2025-11-27T04:03:50.255217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205587, - "rtt_ms": 1.205587, + "rtt_ns": 2058583, + "rtt_ms": 2.058583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:47.099415732Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.25523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907425, - "rtt_ms": 1.907425, + "rtt_ns": 1417375, + "rtt_ms": 1.417375, "checkpoint": 0, "vertex_from": "256", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.10021182Z" + "timestamp": "2025-11-27T04:03:50.255775-08:00" }, { "operation": "add_edge", - "rtt_ns": 2346443, - "rtt_ms": 2.346443, + "rtt_ns": 1497625, + "rtt_ms": 1.497625, "checkpoint": 0, "vertex_from": "256", "vertex_to": "278", - "timestamp": "2025-11-27T01:23:47.100788608Z" + "timestamp": "2025-11-27T04:03:50.256328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724015, - "rtt_ms": 1.724015, + "rtt_ns": 1525458, + "rtt_ms": 1.525458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "339", - "timestamp": "2025-11-27T01:23:47.100885228Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:50.256525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749045, - "rtt_ms": 1.749045, + "rtt_ns": 1646375, + "rtt_ms": 1.646375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "827", - "timestamp": "2025-11-27T01:23:47.100909248Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:03:50.256626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784205, - "rtt_ms": 1.784205, + "rtt_ns": 1774000, + "rtt_ms": 1.774, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:47.100910348Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:03:50.256732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741515, - "rtt_ms": 1.741515, + "rtt_ns": 1765542, + "rtt_ms": 1.765542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:47.101057697Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.256743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880954, - "rtt_ms": 1.880954, + "rtt_ns": 1935375, + "rtt_ms": 1.935375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:47.101073477Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:50.256802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890954, - "rtt_ms": 1.890954, + "rtt_ns": 1834667, + "rtt_ms": 1.834667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.101082137Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.256832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823215, - "rtt_ms": 1.823215, + "rtt_ns": 1624542, + "rtt_ms": 1.624542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.101108807Z" + "vertex_to": "827", + "timestamp": "2025-11-27T04:03:50.256841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723605, - "rtt_ms": 1.723605, + "rtt_ns": 1646708, + "rtt_ms": 1.646708, "checkpoint": 0, "vertex_from": "256", "vertex_to": "330", - "timestamp": "2025-11-27T01:23:47.101140867Z" + "timestamp": "2025-11-27T04:03:50.256878-08:00" }, { "operation": "add_edge", - "rtt_ns": 940397, - "rtt_ms": 0.940397, + "rtt_ns": 1225542, + "rtt_ms": 1.225542, "checkpoint": 0, "vertex_from": "256", "vertex_to": "780", - "timestamp": "2025-11-27T01:23:47.101154037Z" + "timestamp": "2025-11-27T04:03:50.257004-08:00" }, { - "operation": "add_edge", - "rtt_ns": 621708, - "rtt_ms": 0.621708, + "operation": "add_vertex", + "rtt_ns": 1740417, + "rtt_ms": 1.740417, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "527", - "timestamp": "2025-11-27T01:23:47.101411946Z" + "vertex_from": "494", + "timestamp": "2025-11-27T04:03:50.258268-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 663038, - "rtt_ms": 0.663038, + "operation": "add_edge", + "rtt_ns": 1758417, + "rtt_ms": 1.758417, "checkpoint": 0, - "vertex_from": "494", - "timestamp": "2025-11-27T01:23:47.101551576Z" + "vertex_from": "256", + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:50.258386-08:00" }, { "operation": "add_edge", - "rtt_ns": 747997, - "rtt_ms": 0.747997, + "rtt_ns": 1670500, + "rtt_ms": 1.6705, "checkpoint": 0, "vertex_from": "256", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:47.101659955Z" + "timestamp": "2025-11-27T04:03:50.258404-08:00" }, { "operation": "add_edge", - "rtt_ns": 768387, - "rtt_ms": 0.768387, + "rtt_ns": 2519042, + "rtt_ms": 2.519042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.101679565Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:03:50.258848-08:00" }, { "operation": "add_edge", - "rtt_ns": 678198, - "rtt_ms": 0.678198, + "rtt_ns": 2068500, + "rtt_ms": 2.0685, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "810", - "timestamp": "2025-11-27T01:23:47.101738505Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.258947-08:00" }, { "operation": "add_edge", - "rtt_ns": 699018, - "rtt_ms": 0.699018, + "rtt_ns": 2206041, + "rtt_ms": 2.206041, "checkpoint": 0, "vertex_from": "256", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:47.101783155Z" + "timestamp": "2025-11-27T04:03:50.259039-08:00" }, { "operation": "add_edge", - "rtt_ns": 713308, - "rtt_ms": 0.713308, + "rtt_ns": 2075875, + "rtt_ms": 2.075875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:47.101823795Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.259081-08:00" }, { "operation": "add_edge", - "rtt_ns": 699158, - "rtt_ms": 0.699158, + "rtt_ns": 2389500, + "rtt_ms": 2.3895, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:47.101841345Z" + "vertex_to": "810", + "timestamp": "2025-11-27T04:03:50.259134-08:00" }, { "operation": "add_edge", - "rtt_ns": 701658, - "rtt_ms": 0.701658, + "rtt_ns": 2424833, + "rtt_ms": 2.424833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:47.101857415Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:03:50.259228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088857, - "rtt_ms": 1.088857, + "rtt_ns": 2443500, + "rtt_ms": 2.4435, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "850", - "timestamp": "2025-11-27T01:23:47.102164024Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:50.259286-08:00" }, { "operation": "add_edge", - "rtt_ns": 802178, - "rtt_ms": 0.802178, + "rtt_ns": 1991167, + "rtt_ms": 1.991167, "checkpoint": 0, "vertex_from": "256", "vertex_to": "347", - "timestamp": "2025-11-27T01:23:47.102463683Z" + "timestamp": "2025-11-27T04:03:50.260396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033847, - "rtt_ms": 1.033847, + "rtt_ns": 1450917, + "rtt_ms": 1.450917, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "494", - "timestamp": "2025-11-27T01:23:47.102585993Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:50.260399-08:00" }, { "operation": "add_edge", - "rtt_ns": 987837, - "rtt_ms": 0.987837, + "rtt_ns": 1650041, + "rtt_ms": 1.650041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:47.102727972Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:50.2605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329956, - "rtt_ms": 1.329956, + "rtt_ns": 2333250, + "rtt_ms": 2.33325, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:47.102743412Z" + "vertex_to": "494", + "timestamp": "2025-11-27T04:03:50.260601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396666, - "rtt_ms": 1.396666, + "rtt_ns": 1474667, + "rtt_ms": 1.474667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "405", - "timestamp": "2025-11-27T01:23:47.103255541Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:03:50.260609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790955, - "rtt_ms": 1.790955, + "rtt_ns": 1570833, + "rtt_ms": 1.570833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:47.10347309Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:03:50.26061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308196, - "rtt_ms": 1.308196, + "rtt_ns": 1577584, + "rtt_ms": 1.577584, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:47.10347342Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:03:50.26066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692805, - "rtt_ms": 1.692805, + "rtt_ns": 1399459, + "rtt_ms": 1.399459, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "307", - "timestamp": "2025-11-27T01:23:47.10347698Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:50.260686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699355, - "rtt_ms": 1.699355, + "rtt_ns": 2323666, + "rtt_ms": 2.323666, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "867", - "timestamp": "2025-11-27T01:23:47.10352418Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:50.26071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686205, - "rtt_ms": 1.686205, + "rtt_ns": 1505292, + "rtt_ms": 1.505292, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:47.1035294Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:03:50.260734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425505, - "rtt_ms": 1.425505, + "rtt_ns": 1226458, + "rtt_ms": 1.226458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "973", - "timestamp": "2025-11-27T01:23:47.104012858Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:03:50.261728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581585, - "rtt_ms": 1.581585, + "rtt_ns": 1431459, + "rtt_ms": 1.431459, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:47.104047618Z" + "vertex_to": "973", + "timestamp": "2025-11-27T04:03:50.261832-08:00" }, { "operation": "add_edge", - "rtt_ns": 920297, - "rtt_ms": 0.920297, + "rtt_ns": 1376959, + "rtt_ms": 1.376959, "checkpoint": 0, "vertex_from": "256", "vertex_to": "353", - "timestamp": "2025-11-27T01:23:47.104177498Z" + "timestamp": "2025-11-27T04:03:50.261987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567316, - "rtt_ms": 1.567316, + "rtt_ns": 1451792, + "rtt_ms": 1.451792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "787", - "timestamp": "2025-11-27T01:23:47.104296778Z" + "vertex_to": "423", + "timestamp": "2025-11-27T04:03:50.262113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693725, - "rtt_ms": 1.693725, + "rtt_ns": 1522209, + "rtt_ms": 1.522209, "checkpoint": 0, "vertex_from": "256", "vertex_to": "313", - "timestamp": "2025-11-27T01:23:47.104439117Z" + "timestamp": "2025-11-27T04:03:50.262125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658225, - "rtt_ms": 1.658225, + "rtt_ns": 1593459, + "rtt_ms": 1.593459, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "423", - "timestamp": "2025-11-27T01:23:47.105133175Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:50.262205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625015, - "rtt_ms": 1.625015, + "rtt_ns": 1523584, + "rtt_ms": 1.523584, "checkpoint": 0, "vertex_from": "256", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:47.105150985Z" + "timestamp": "2025-11-27T04:03:50.262235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684915, - "rtt_ms": 1.684915, + "rtt_ns": 1558334, + "rtt_ms": 1.558334, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:47.105159915Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:03:50.262294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692975, - "rtt_ms": 1.692975, + "rtt_ns": 1666875, + "rtt_ms": 1.666875, "checkpoint": 0, "vertex_from": "256", "vertex_to": "327", - "timestamp": "2025-11-27T01:23:47.105171655Z" + "timestamp": "2025-11-27T04:03:50.262354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181537, - "rtt_ms": 1.181537, + "rtt_ns": 1999791, + "rtt_ms": 1.999791, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "355", - "timestamp": "2025-11-27T01:23:47.105196045Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:50.262397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699015, - "rtt_ms": 1.699015, + "rtt_ns": 1576417, + "rtt_ms": 1.576417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:47.105229625Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:03:50.263307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253346, - "rtt_ms": 1.253346, + "rtt_ns": 1549458, + "rtt_ms": 1.549458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:47.105432674Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:50.263383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800825, - "rtt_ms": 1.800825, + "rtt_ns": 1132958, + "rtt_ms": 1.132958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:47.105849613Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:03:50.263531-08:00" }, { "operation": "add_edge", - "rtt_ns": 737928, - "rtt_ms": 0.737928, + "rtt_ns": 1613417, + "rtt_ms": 1.613417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:47.105968813Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:50.263601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828294, - "rtt_ms": 1.828294, + "rtt_ns": 1660625, + "rtt_ms": 1.660625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:47.106126622Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:50.263898-08:00" }, { "operation": "add_edge", - "rtt_ns": 961207, - "rtt_ms": 0.961207, + "rtt_ns": 1708042, + "rtt_ms": 1.708042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:47.106134402Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:03:50.263913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779355, - "rtt_ms": 1.779355, + "rtt_ns": 1567125, + "rtt_ms": 1.567125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:47.106219932Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:03:50.263922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137007, - "rtt_ms": 1.137007, + "rtt_ns": 1657333, + "rtt_ms": 1.657333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:47.106272032Z" + "vertex_to": "429", + "timestamp": "2025-11-27T04:03:50.263953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117457, - "rtt_ms": 1.117457, + "rtt_ns": 1886208, + "rtt_ms": 1.886208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "429", - "timestamp": "2025-11-27T01:23:47.106282052Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:03:50.264012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153097, - "rtt_ms": 1.153097, + "rtt_ns": 1915458, + "rtt_ms": 1.915458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:47.106307082Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:03:50.264031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116327, - "rtt_ms": 1.116327, + "rtt_ns": 1157083, + "rtt_ms": 1.157083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "331", - "timestamp": "2025-11-27T01:23:47.106313802Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:03:50.264541-08:00" }, { "operation": "add_edge", - "rtt_ns": 907568, - "rtt_ms": 0.907568, + "rtt_ns": 1482000, + "rtt_ms": 1.482, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:47.106758521Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.26479-08:00" }, { "operation": "add_edge", - "rtt_ns": 840267, - "rtt_ms": 0.840267, + "rtt_ns": 1277583, + "rtt_ms": 1.277583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "555", - "timestamp": "2025-11-27T01:23:47.10681047Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:50.264809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437906, - "rtt_ms": 1.437906, + "rtt_ns": 1670875, + "rtt_ms": 1.670875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "602", - "timestamp": "2025-11-27T01:23:47.10687165Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:03:50.265273-08:00" }, { "operation": "add_edge", - "rtt_ns": 787958, - "rtt_ms": 0.787958, + "rtt_ns": 1499958, + "rtt_ms": 1.499958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:47.10691622Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:03:50.265515-08:00" }, { "operation": "add_edge", - "rtt_ns": 848778, - "rtt_ms": 0.848778, + "rtt_ns": 1870667, + "rtt_ms": 1.870667, "checkpoint": 0, "vertex_from": "256", "vertex_to": "588", - "timestamp": "2025-11-27T01:23:47.10698568Z" + "timestamp": "2025-11-27T04:03:50.265785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054057, - "rtt_ms": 1.054057, + "rtt_ns": 1962042, + "rtt_ms": 1.962042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "793", - "timestamp": "2025-11-27T01:23:47.107342219Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:03:50.265994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147487, - "rtt_ms": 1.147487, + "rtt_ns": 2056042, + "rtt_ms": 2.056042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "745", - "timestamp": "2025-11-27T01:23:47.107459629Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:50.26601-08:00" }, { "operation": "add_edge", - "rtt_ns": 727268, - "rtt_ms": 0.727268, + "rtt_ns": 2162667, + "rtt_ms": 2.162667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:47.107487989Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:03:50.266061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290537, - "rtt_ms": 1.290537, + "rtt_ns": 1547375, + "rtt_ms": 1.547375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "573", - "timestamp": "2025-11-27T01:23:47.107513959Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:03:50.266089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863135, - "rtt_ms": 1.863135, + "rtt_ns": 2200875, + "rtt_ms": 2.200875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "312", - "timestamp": "2025-11-27T01:23:47.108179347Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:03:50.266124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394086, - "rtt_ms": 1.394086, + "rtt_ns": 1517167, + "rtt_ms": 1.517167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.108267256Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:50.266341-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096134, - "rtt_ms": 2.096134, + "rtt_ns": 1571166, + "rtt_ms": 1.571166, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:47.108369386Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:50.266362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581506, - "rtt_ms": 1.581506, + "rtt_ns": 1134583, + "rtt_ms": 1.134583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:47.108392846Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.266408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451156, - "rtt_ms": 1.451156, + "rtt_ns": 1258166, + "rtt_ms": 1.258166, "checkpoint": 0, "vertex_from": "257", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:47.108438136Z" + "timestamp": "2025-11-27T04:03:50.267046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523126, - "rtt_ms": 1.523126, + "rtt_ns": 1757167, + "rtt_ms": 1.757167, "checkpoint": 0, "vertex_from": "256", "vertex_to": "611", - "timestamp": "2025-11-27T01:23:47.108440776Z" + "timestamp": "2025-11-27T04:03:50.267275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758184, - "rtt_ms": 1.758184, + "rtt_ns": 1893667, + "rtt_ms": 1.893667, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "261", - "timestamp": "2025-11-27T01:23:47.109218973Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.26789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754044, - "rtt_ms": 1.754044, + "rtt_ns": 1804916, + "rtt_ms": 1.804916, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.109247023Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:03:50.267895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908894, - "rtt_ms": 1.908894, + "rtt_ns": 1601458, + "rtt_ms": 1.601458, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.109252103Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:03:50.267964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759384, - "rtt_ms": 1.759384, + "rtt_ns": 1936042, + "rtt_ms": 1.936042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "653", - "timestamp": "2025-11-27T01:23:47.109275573Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.267998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427505, - "rtt_ms": 1.427505, + "rtt_ns": 2047000, + "rtt_ms": 2.047, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:47.109610452Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:03:50.268058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363006, - "rtt_ms": 1.363006, + "rtt_ns": 1723583, + "rtt_ms": 1.723583, "checkpoint": 0, "vertex_from": "257", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:47.109631742Z" + "timestamp": "2025-11-27T04:03:50.268065-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1406106, - "rtt_ms": 1.406106, + "operation": "add_edge", + "rtt_ns": 1664208, + "rtt_ms": 1.664208, "checkpoint": 0, - "vertex_from": "939", - "timestamp": "2025-11-27T01:23:47.109850092Z" + "vertex_from": "257", + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.268073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484285, - "rtt_ms": 1.484285, + "rtt_ns": 2014250, + "rtt_ms": 2.01425, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "614", - "timestamp": "2025-11-27T01:23:47.109924701Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:03:50.268139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600275, - "rtt_ms": 1.600275, + "rtt_ns": 1491834, + "rtt_ms": 1.491834, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "410", - "timestamp": "2025-11-27T01:23:47.109972211Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:03:50.269388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639945, - "rtt_ms": 1.639945, + "rtt_ns": 2373958, + "rtt_ms": 2.373958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.110035371Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:03:50.269421-08:00" }, { "operation": "add_edge", - "rtt_ns": 851608, - "rtt_ms": 0.851608, + "rtt_ns": 1293958, + "rtt_ms": 1.293958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.110072581Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.269433-08:00" }, { - "operation": "add_edge", - "rtt_ns": 902248, - "rtt_ms": 0.902248, + "operation": "add_vertex", + "rtt_ns": 2166458, + "rtt_ms": 2.166458, "checkpoint": 0, - "vertex_from": "257", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:47.110151121Z" + "vertex_from": "939", + "timestamp": "2025-11-27T04:03:50.269446-08:00" }, { "operation": "add_edge", - "rtt_ns": 927158, - "rtt_ms": 0.927158, + "rtt_ns": 1510292, + "rtt_ms": 1.510292, "checkpoint": 0, "vertex_from": "257", "vertex_to": "396", - "timestamp": "2025-11-27T01:23:47.110181911Z" + "timestamp": "2025-11-27T04:03:50.269478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709705, - "rtt_ms": 1.709705, + "rtt_ns": 1666750, + "rtt_ms": 1.66675, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.110986658Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.269557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463566, - "rtt_ms": 1.463566, + "rtt_ns": 1547958, + "rtt_ms": 1.547958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:47.111076818Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:03:50.269614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756175, - "rtt_ms": 1.756175, + "rtt_ns": 1543208, + "rtt_ms": 1.543208, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "395", - "timestamp": "2025-11-27T01:23:47.111389157Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:03:50.269618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556506, - "rtt_ms": 1.556506, + "rtt_ns": 1571875, + "rtt_ms": 1.571875, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:47.111482877Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:50.26963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596465, - "rtt_ms": 1.596465, + "rtt_ns": 1667417, + "rtt_ms": 1.667417, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:47.111633456Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.269666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054083, - "rtt_ms": 2.054083, + "rtt_ns": 1376000, + "rtt_ms": 1.376, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "939", - "timestamp": "2025-11-27T01:23:47.111904545Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:50.270798-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443983, - "rtt_ms": 2.443983, + "rtt_ns": 1378334, + "rtt_ms": 1.378334, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.112596314Z" + "vertex_to": "939", + "timestamp": "2025-11-27T04:03:50.270825-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539412, - "rtt_ms": 2.539412, + "rtt_ns": 1266667, + "rtt_ms": 1.266667, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:47.112613223Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:50.270934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2535652, - "rtt_ms": 2.535652, + "rtt_ns": 1482042, + "rtt_ms": 1.482042, "checkpoint": 0, "vertex_from": "257", "vertex_to": "652", - "timestamp": "2025-11-27T01:23:47.112718753Z" + "timestamp": "2025-11-27T04:03:50.270962-08:00" }, { "operation": "add_edge", - "rtt_ns": 2760872, - "rtt_ms": 2.760872, + "rtt_ns": 1576791, + "rtt_ms": 1.576791, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:47.112734083Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:03:50.270966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471126, - "rtt_ms": 1.471126, + "rtt_ns": 1558958, + "rtt_ms": 1.558958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.112955093Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.270999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967105, - "rtt_ms": 1.967105, + "rtt_ns": 1558125, + "rtt_ms": 1.558125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:47.112955313Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:03:50.271174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078697, - "rtt_ms": 1.078697, + "rtt_ns": 1618833, + "rtt_ms": 1.618833, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.112984762Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:50.271178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430686, - "rtt_ms": 1.430686, + "rtt_ns": 1650125, + "rtt_ms": 1.650125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:47.113065602Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.271281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714365, - "rtt_ms": 1.714365, + "rtt_ns": 1662959, + "rtt_ms": 1.662959, "checkpoint": 0, "vertex_from": "257", "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.113104832Z" + "timestamp": "2025-11-27T04:03:50.271282-08:00" }, { "operation": "add_edge", - "rtt_ns": 2516133, - "rtt_ms": 2.516133, + "rtt_ns": 1393750, + "rtt_ms": 1.39375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "866", - "timestamp": "2025-11-27T01:23:47.113593831Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.272193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117737, - "rtt_ms": 1.117737, + "rtt_ns": 1254625, + "rtt_ms": 1.254625, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "258", - "timestamp": "2025-11-27T01:23:47.113838Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.272255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253836, - "rtt_ms": 1.253836, + "rtt_ns": 1229125, + "rtt_ms": 1.229125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:47.11385212Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.272411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123777, - "rtt_ms": 1.123777, + "rtt_ns": 1342459, + "rtt_ms": 1.342459, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:47.1138588Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.272517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291837, - "rtt_ms": 1.291837, + "rtt_ns": 1256584, + "rtt_ms": 1.256584, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.11390604Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:50.272539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390106, - "rtt_ms": 1.390106, + "rtt_ns": 1581958, + "rtt_ms": 1.581958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.114346199Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:03:50.272548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378326, - "rtt_ms": 1.378326, + "rtt_ns": 1625750, + "rtt_ms": 1.62575, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.114444798Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.27256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473066, - "rtt_ms": 1.473066, + "rtt_ns": 1326167, + "rtt_ms": 1.326167, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.114458618Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.272608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415646, - "rtt_ms": 1.415646, + "rtt_ns": 1816042, + "rtt_ms": 1.816042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:47.114522038Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.272642-08:00" }, { "operation": "add_edge", - "rtt_ns": 966267, - "rtt_ms": 0.966267, + "rtt_ns": 1720042, + "rtt_ms": 1.720042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "294", - "timestamp": "2025-11-27T01:23:47.114561208Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:03:50.272683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666295, - "rtt_ms": 1.666295, + "rtt_ns": 2106041, + "rtt_ms": 2.106041, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.114622608Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.274646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288256, - "rtt_ms": 1.288256, + "rtt_ns": 2227583, + "rtt_ms": 2.227583, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:47.115127066Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.27479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446686, - "rtt_ms": 1.446686, + "rtt_ns": 2381042, + "rtt_ms": 2.381042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:47.115306646Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.274793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427526, - "rtt_ms": 1.427526, + "rtt_ns": 2120958, + "rtt_ms": 2.120958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.115334596Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:50.274805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635455, - "rtt_ms": 1.635455, + "rtt_ns": 2210750, + "rtt_ms": 2.21075, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.115488485Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:50.27482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184546, - "rtt_ms": 1.184546, + "rtt_ns": 2323208, + "rtt_ms": 2.323208, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.115531785Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:50.274841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162257, - "rtt_ms": 1.162257, + "rtt_ns": 2271833, + "rtt_ms": 2.271833, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.115608135Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:50.274916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659985, - "rtt_ms": 1.659985, + "rtt_ns": 2752209, + "rtt_ms": 2.752209, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:47.116222013Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:03:50.274948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098077, - "rtt_ms": 1.098077, + "rtt_ns": 2721958, + "rtt_ms": 2.721958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.116437723Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:50.274978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815345, - "rtt_ms": 1.815345, + "rtt_ns": 2434833, + "rtt_ms": 2.434833, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:47.116438673Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.274984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948905, - "rtt_ms": 1.948905, + "rtt_ns": 2130458, + "rtt_ms": 2.130458, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:47.116471963Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:03:50.276924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366697, - "rtt_ms": 1.366697, + "rtt_ns": 2295208, + "rtt_ms": 2.295208, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.116494733Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:50.276942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082334, - "rtt_ms": 2.082334, + "rtt_ns": 2138333, + "rtt_ms": 2.138333, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:47.116541722Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.276946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305006, - "rtt_ms": 1.305006, + "rtt_ns": 2051292, + "rtt_ms": 2.051292, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:47.116612562Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.276968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783075, - "rtt_ms": 1.783075, + "rtt_ns": 2179792, + "rtt_ms": 2.179792, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.11727243Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.276971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782955, - "rtt_ms": 1.782955, + "rtt_ns": 2129666, + "rtt_ms": 2.129666, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:47.11739186Z" + "vertex_to": "948", + "timestamp": "2025-11-27T04:03:50.276972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902955, - "rtt_ms": 1.902955, + "rtt_ns": 2460167, + "rtt_ms": 2.460167, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "948", - "timestamp": "2025-11-27T01:23:47.11743584Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.277281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219007, - "rtt_ms": 1.219007, + "rtt_ns": 2344833, + "rtt_ms": 2.344833, "checkpoint": 0, "vertex_from": "257", "vertex_to": "562", - "timestamp": "2025-11-27T01:23:47.11744221Z" + "timestamp": "2025-11-27T04:03:50.277293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035647, - "rtt_ms": 1.035647, + "rtt_ns": 2324417, + "rtt_ms": 2.324417, "checkpoint": 0, "vertex_from": "257", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:47.11747456Z" + "timestamp": "2025-11-27T04:03:50.277303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683015, - "rtt_ms": 1.683015, + "rtt_ns": 2342166, + "rtt_ms": 2.342166, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "729", - "timestamp": "2025-11-27T01:23:47.118178768Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.277327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719645, - "rtt_ms": 1.719645, + "rtt_ns": 1592375, + "rtt_ms": 1.592375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.118192328Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.278539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761575, - "rtt_ms": 1.761575, + "rtt_ns": 1653125, + "rtt_ms": 1.653125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.118200908Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:50.278628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682286, - "rtt_ms": 1.682286, + "rtt_ns": 1663625, + "rtt_ms": 1.663625, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:47.118224858Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:03:50.278635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738986, - "rtt_ms": 1.738986, + "rtt_ns": 1352833, + "rtt_ms": 1.352833, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "461", - "timestamp": "2025-11-27T01:23:47.119012436Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:50.278636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591146, - "rtt_ms": 1.591146, + "rtt_ns": 1681958, + "rtt_ms": 1.681958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:47.119027746Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:03:50.278651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624215, - "rtt_ms": 1.624215, + "rtt_ns": 1726167, + "rtt_ms": 1.726167, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:47.119067685Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.278652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2466163, - "rtt_ms": 2.466163, + "rtt_ns": 1729958, + "rtt_ms": 1.729958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:47.119079755Z" + "vertex_to": "729", + "timestamp": "2025-11-27T04:03:50.278674-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1782335, - "rtt_ms": 1.782335, + "operation": "add_vertex", + "rtt_ns": 1583792, + "rtt_ms": 1.583792, "checkpoint": 0, - "vertex_from": "257", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:47.119175355Z" + "vertex_from": "591", + "timestamp": "2025-11-27T04:03:50.278914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702995, - "rtt_ms": 1.702995, + "rtt_ns": 2040500, + "rtt_ms": 2.0405, "checkpoint": 0, "vertex_from": "257", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:47.119178465Z" + "timestamp": "2025-11-27T04:03:50.279346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829505, - "rtt_ms": 1.829505, + "rtt_ns": 2622958, + "rtt_ms": 2.622958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "485", - "timestamp": "2025-11-27T01:23:47.120031613Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:50.279918-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1886295, - "rtt_ms": 1.886295, + "operation": "add_edge", + "rtt_ns": 1323834, + "rtt_ms": 1.323834, "checkpoint": 0, - "vertex_from": "591", - "timestamp": "2025-11-27T01:23:47.120069403Z" + "vertex_from": "257", + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.279961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884505, - "rtt_ms": 1.884505, + "rtt_ns": 1340458, + "rtt_ms": 1.340458, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:47.120077903Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.279978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868924, - "rtt_ms": 1.868924, + "rtt_ns": 1476375, + "rtt_ms": 1.476375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.120094822Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:50.280019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472985, - "rtt_ms": 1.472985, + "rtt_ns": 1343875, + "rtt_ms": 1.343875, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.120486571Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:03:50.280019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511375, - "rtt_ms": 1.511375, + "rtt_ns": 1538834, + "rtt_ms": 1.538834, "checkpoint": 0, "vertex_from": "257", "vertex_to": "417", - "timestamp": "2025-11-27T01:23:47.120540071Z" + "timestamp": "2025-11-27T04:03:50.280191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485326, - "rtt_ms": 1.485326, + "rtt_ns": 1568167, + "rtt_ms": 1.568167, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.120554531Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:03:50.280204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432006, - "rtt_ms": 1.432006, + "rtt_ns": 1339292, + "rtt_ms": 1.339292, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:47.120608391Z" + "vertex_to": "591", + "timestamp": "2025-11-27T04:03:50.280254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513866, - "rtt_ms": 1.513866, + "rtt_ns": 1838916, + "rtt_ms": 1.838916, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:47.120694881Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.280493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178054, - "rtt_ms": 2.178054, + "rtt_ns": 1201000, + "rtt_ms": 1.201, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:47.121259079Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.280548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253697, - "rtt_ms": 1.253697, + "rtt_ns": 1299417, + "rtt_ms": 1.299417, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "756", - "timestamp": "2025-11-27T01:23:47.121349709Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:50.28122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511955, - "rtt_ms": 1.511955, + "rtt_ns": 1110750, + "rtt_ms": 1.11075, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "591", - "timestamp": "2025-11-27T01:23:47.121581608Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.281604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550335, - "rtt_ms": 1.550335, + "rtt_ns": 1502500, + "rtt_ms": 1.5025, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:47.121582688Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.281695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540356, - "rtt_ms": 1.540356, + "rtt_ns": 1830542, + "rtt_ms": 1.830542, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "619", - "timestamp": "2025-11-27T01:23:47.121619288Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:50.28186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263957, - "rtt_ms": 1.263957, + "rtt_ns": 1621542, + "rtt_ms": 1.621542, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:47.121751538Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:50.281876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652495, - "rtt_ms": 1.652495, + "rtt_ns": 1925666, + "rtt_ms": 1.925666, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:47.122193546Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:03:50.281893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662355, - "rtt_ms": 1.662355, + "rtt_ns": 1941083, + "rtt_ms": 1.941083, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "555", - "timestamp": "2025-11-27T01:23:47.122219546Z" + "vertex_to": "756", + "timestamp": "2025-11-27T04:03:50.281962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723425, - "rtt_ms": 1.723425, + "rtt_ns": 1872584, + "rtt_ms": 1.872584, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:47.122332786Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:03:50.282078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761324, - "rtt_ms": 1.761324, + "rtt_ns": 872250, + "rtt_ms": 0.87225, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:47.122457465Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.282094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561215, - "rtt_ms": 1.561215, + "rtt_ns": 2207000, + "rtt_ms": 2.207, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.122821534Z" + "vertex_to": "619", + "timestamp": "2025-11-27T04:03:50.282187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497785, - "rtt_ms": 1.497785, + "rtt_ns": 1749708, + "rtt_ms": 1.749708, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.122848634Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.282299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415306, - "rtt_ms": 1.415306, + "rtt_ns": 1330708, + "rtt_ms": 1.330708, "checkpoint": 0, "vertex_from": "257", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.123610432Z" + "timestamp": "2025-11-27T04:03:50.283228-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047134, - "rtt_ms": 2.047134, + "rtt_ns": 1150042, + "rtt_ms": 1.150042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:47.123631272Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.283245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020954, - "rtt_ms": 2.020954, + "rtt_ns": 1399667, + "rtt_ms": 1.399667, "checkpoint": 0, "vertex_from": "257", "vertex_to": "405", - "timestamp": "2025-11-27T01:23:47.123641562Z" + "timestamp": "2025-11-27T04:03:50.283261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348076, - "rtt_ms": 1.348076, + "rtt_ns": 1493500, + "rtt_ms": 1.4935, "checkpoint": 0, "vertex_from": "257", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.123682152Z" + "timestamp": "2025-11-27T04:03:50.283572-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103724, - "rtt_ms": 2.103724, + "rtt_ns": 1646042, + "rtt_ms": 1.646042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "861", - "timestamp": "2025-11-27T01:23:47.123687472Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:50.283609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093293, - "rtt_ms": 2.093293, + "rtt_ns": 1745541, + "rtt_ms": 1.745541, "checkpoint": 0, "vertex_from": "257", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.123846121Z" + "timestamp": "2025-11-27T04:03:50.283623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401336, - "rtt_ms": 1.401336, + "rtt_ns": 1416167, + "rtt_ms": 1.416167, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.123861341Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.283717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726885, - "rtt_ms": 1.726885, + "rtt_ns": 2243125, + "rtt_ms": 2.243125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:47.123949131Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:50.283939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591696, - "rtt_ms": 1.591696, + "rtt_ns": 1885375, + "rtt_ms": 1.885375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:47.12444149Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.284073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631776, - "rtt_ms": 1.631776, + "rtt_ns": 2486083, + "rtt_ms": 2.486083, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:47.12445462Z" + "vertex_to": "861", + "timestamp": "2025-11-27T04:03:50.284091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837585, - "rtt_ms": 1.837585, + "rtt_ns": 875917, + "rtt_ms": 0.875917, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.125685266Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:03:50.284106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334224, - "rtt_ms": 2.334224, + "rtt_ns": 1139666, + "rtt_ms": 1.139666, "checkpoint": 0, "vertex_from": "257", "vertex_to": "676", - "timestamp": "2025-11-27T01:23:47.126198815Z" + "timestamp": "2025-11-27T04:03:50.284858-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286314, - "rtt_ms": 2.286314, + "rtt_ns": 1266667, + "rtt_ms": 1.266667, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:47.126236515Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.284892-08:00" }, { "operation": "add_edge", - "rtt_ns": 2663932, - "rtt_ms": 2.663932, + "rtt_ns": 2101667, + "rtt_ms": 2.101667, "checkpoint": 0, "vertex_from": "257", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.126307424Z" + "timestamp": "2025-11-27T04:03:50.285364-08:00" }, { "operation": "add_edge", - "rtt_ns": 2772732, - "rtt_ms": 2.772732, + "rtt_ns": 1807667, + "rtt_ms": 1.807667, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:47.126384734Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.285417-08:00" }, { "operation": "add_edge", - "rtt_ns": 3381560, - "rtt_ms": 3.38156, + "rtt_ns": 1862667, + "rtt_ms": 1.862667, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.127014672Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.285436-08:00" }, { "operation": "add_edge", - "rtt_ns": 3466480, - "rtt_ms": 3.46648, + "rtt_ns": 1421333, + "rtt_ms": 1.421333, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.127149742Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.285514-08:00" }, { "operation": "add_edge", - "rtt_ns": 3464770, - "rtt_ms": 3.46477, + "rtt_ns": 1575834, + "rtt_ms": 1.575834, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.127153512Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.285515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2703692, - "rtt_ms": 2.703692, + "rtt_ns": 1438209, + "rtt_ms": 1.438209, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.127159642Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:50.285545-08:00" }, { "operation": "add_edge", - "rtt_ns": 2781772, - "rtt_ms": 2.781772, + "rtt_ns": 1544167, + "rtt_ms": 1.544167, "checkpoint": 0, "vertex_from": "257", "vertex_to": "786", - "timestamp": "2025-11-27T01:23:47.127227122Z" + "timestamp": "2025-11-27T04:03:50.285618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237736, - "rtt_ms": 1.237736, + "rtt_ns": 2456417, + "rtt_ms": 2.456417, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:47.127475581Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.285702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128867, - "rtt_ms": 1.128867, + "rtt_ns": 1107667, + "rtt_ms": 1.107667, "checkpoint": 0, "vertex_from": "257", "vertex_to": "343", - "timestamp": "2025-11-27T01:23:47.127515491Z" + "timestamp": "2025-11-27T04:03:50.286526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462826, - "rtt_ms": 1.462826, + "rtt_ns": 981084, + "rtt_ms": 0.981084, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "429", - "timestamp": "2025-11-27T01:23:47.127663551Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.286528-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002785, - "rtt_ms": 2.002785, + "rtt_ns": 1653416, + "rtt_ms": 1.653416, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:47.127690721Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:03:50.286546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397876, - "rtt_ms": 1.397876, + "rtt_ns": 1855375, + "rtt_ms": 1.855375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.12770643Z" + "vertex_to": "429", + "timestamp": "2025-11-27T04:03:50.286715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199036, - "rtt_ms": 1.199036, + "rtt_ns": 1363917, + "rtt_ms": 1.363917, "checkpoint": 0, - "vertex_from": "258", - "vertex_to": "678", - "timestamp": "2025-11-27T01:23:47.128428688Z" + "vertex_from": "257", + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.28673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535416, - "rtt_ms": 1.535416, + "rtt_ns": 1487000, + "rtt_ms": 1.487, "checkpoint": 0, "vertex_from": "257", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.128551708Z" + "timestamp": "2025-11-27T04:03:50.286925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545335, - "rtt_ms": 1.545335, + "rtt_ns": 1685750, + "rtt_ms": 1.68575, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.128707627Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:50.287201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031616, - "rtt_ms": 1.031616, + "rtt_ns": 1714958, + "rtt_ms": 1.714958, "checkpoint": 0, - "vertex_from": "258", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.128723887Z" + "vertex_from": "257", + "vertex_to": "338", + "timestamp": "2025-11-27T04:03:50.287232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238126, - "rtt_ms": 1.238126, + "rtt_ns": 1899375, + "rtt_ms": 1.899375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.128755147Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:03:50.287519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763155, - "rtt_ms": 1.763155, + "rtt_ns": 1766666, + "rtt_ms": 1.766666, "checkpoint": 0, - "vertex_from": "257", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:47.128914287Z" + "vertex_from": "258", + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.288296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346716, - "rtt_ms": 1.346716, + "rtt_ns": 2612875, + "rtt_ms": 2.612875, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.129011177Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.288315-08:00" }, { "operation": "add_edge", - "rtt_ns": 2447363, - "rtt_ms": 2.447363, + "rtt_ns": 1393959, + "rtt_ms": 1.393959, "checkpoint": 0, - "vertex_from": "257", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:47.129603725Z" + "vertex_from": "258", + "vertex_to": "848", + "timestamp": "2025-11-27T04:03:50.288321-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039734, - "rtt_ms": 2.039734, + "rtt_ns": 1167458, + "rtt_ms": 1.167458, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "454", - "timestamp": "2025-11-27T01:23:47.129747834Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.28837-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291693, - "rtt_ms": 2.291693, + "rtt_ns": 1854000, + "rtt_ms": 1.854, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.129768324Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.288401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395506, - "rtt_ms": 1.395506, + "rtt_ns": 1687917, + "rtt_ms": 1.687917, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.130104023Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:03:50.288405-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349693, - "rtt_ms": 2.349693, + "rtt_ns": 1698542, + "rtt_ms": 1.698542, "checkpoint": 0, "vertex_from": "258", "vertex_to": "290", - "timestamp": "2025-11-27T01:23:47.130779741Z" + "timestamp": "2025-11-27T04:03:50.288429-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269804, - "rtt_ms": 2.269804, + "rtt_ns": 1203791, + "rtt_ms": 1.203791, "checkpoint": 0, "vertex_from": "258", "vertex_to": "294", - "timestamp": "2025-11-27T01:23:47.130994881Z" + "timestamp": "2025-11-27T04:03:50.288437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2526832, - "rtt_ms": 2.526832, + "rtt_ns": 2495458, + "rtt_ms": 2.495458, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:47.13108047Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.289025-08:00" }, { "operation": "add_edge", - "rtt_ns": 2410533, - "rtt_ms": 2.410533, + "rtt_ns": 1602334, + "rtt_ms": 1.602334, "checkpoint": 0, "vertex_from": "258", "vertex_to": "540", - "timestamp": "2025-11-27T01:23:47.13116656Z" + "timestamp": "2025-11-27T04:03:50.289123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2496262, - "rtt_ms": 2.496262, + "rtt_ns": 1330875, + "rtt_ms": 1.330875, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.131508619Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:03:50.289734-08:00" }, { "operation": "add_edge", - "rtt_ns": 2682432, - "rtt_ms": 2.682432, + "rtt_ns": 1437250, + "rtt_ms": 1.43725, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:47.131597879Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.289759-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306893, - "rtt_ms": 2.306893, + "rtt_ns": 1573167, + "rtt_ms": 1.573167, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:47.132076717Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.289944-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393693, - "rtt_ms": 2.393693, + "rtt_ns": 1658500, + "rtt_ms": 1.6585, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:47.132142567Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:03:50.289956-08:00" }, { "operation": "add_edge", - "rtt_ns": 3245840, - "rtt_ms": 3.24584, + "rtt_ns": 1528375, + "rtt_ms": 1.528375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.132851135Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:03:50.289958-08:00" }, { "operation": "add_edge", - "rtt_ns": 2865172, - "rtt_ms": 2.865172, + "rtt_ns": 1664083, + "rtt_ms": 1.664083, "checkpoint": 0, "vertex_from": "258", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.132971425Z" + "timestamp": "2025-11-27T04:03:50.29007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229464, - "rtt_ms": 2.229464, + "rtt_ns": 1774167, + "rtt_ms": 1.774167, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "457", - "timestamp": "2025-11-27T01:23:47.133010425Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.29009-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043194, - "rtt_ms": 2.043194, + "rtt_ns": 1652666, + "rtt_ms": 1.652666, "checkpoint": 0, "vertex_from": "258", "vertex_to": "525", - "timestamp": "2025-11-27T01:23:47.133038695Z" + "timestamp": "2025-11-27T04:03:50.290091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954265, - "rtt_ms": 1.954265, + "rtt_ns": 1963083, + "rtt_ms": 1.963083, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.133121735Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:03:50.29099-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044775, - "rtt_ms": 2.044775, + "rtt_ns": 1144084, + "rtt_ms": 1.144084, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "266", - "timestamp": "2025-11-27T01:23:47.133125915Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:03:50.291236-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087204, - "rtt_ms": 2.087204, + "rtt_ns": 1542458, + "rtt_ms": 1.542458, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.133596803Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.291302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011884, - "rtt_ms": 2.011884, + "rtt_ns": 1366958, + "rtt_ms": 1.366958, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.133610923Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.291437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631236, - "rtt_ms": 1.631236, + "rtt_ns": 1498584, + "rtt_ms": 1.498584, "checkpoint": 0, "vertex_from": "258", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.133775073Z" + "timestamp": "2025-11-27T04:03:50.291456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112997, - "rtt_ms": 1.112997, + "rtt_ns": 1511500, + "rtt_ms": 1.5115, "checkpoint": 0, "vertex_from": "258", "vertex_to": "781", - "timestamp": "2025-11-27T01:23:47.133965162Z" + "timestamp": "2025-11-27T04:03:50.291471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931005, - "rtt_ms": 1.931005, + "rtt_ns": 1770417, + "rtt_ms": 1.770417, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "465", - "timestamp": "2025-11-27T01:23:47.134008922Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.291511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526466, - "rtt_ms": 1.526466, + "rtt_ns": 1627000, + "rtt_ms": 1.627, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:47.134566351Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:03:50.291572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841615, - "rtt_ms": 1.841615, + "rtt_ns": 1497792, + "rtt_ms": 1.497792, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.13481394Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:50.291589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232507, - "rtt_ms": 1.232507, + "rtt_ns": 2478333, + "rtt_ms": 2.478333, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:47.13483029Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.291603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821815, - "rtt_ms": 1.821815, + "rtt_ns": 1471042, + "rtt_ms": 1.471042, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:47.13483292Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:03:50.292928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720945, - "rtt_ms": 1.720945, + "rtt_ns": 1411084, + "rtt_ms": 1.411084, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:47.13484827Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:50.293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417576, - "rtt_ms": 1.417576, + "rtt_ns": 1627292, + "rtt_ms": 1.627292, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "259", - "timestamp": "2025-11-27T01:23:47.135029449Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:50.293099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245647, - "rtt_ms": 1.245647, + "rtt_ns": 1824916, + "rtt_ms": 1.824916, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:47.135211629Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:03:50.293429-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103544, - "rtt_ms": 2.103544, + "rtt_ns": 2455708, + "rtt_ms": 2.455708, "checkpoint": 0, "vertex_from": "258", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.135226009Z" + "timestamp": "2025-11-27T04:03:50.293448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495876, - "rtt_ms": 1.495876, + "rtt_ns": 1887417, + "rtt_ms": 1.887417, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "263", - "timestamp": "2025-11-27T01:23:47.135271559Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:03:50.29346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354916, - "rtt_ms": 1.354916, + "rtt_ns": 2171792, + "rtt_ms": 2.171792, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:47.135365668Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:50.293475-08:00" }, { "operation": "add_edge", - "rtt_ns": 810987, - "rtt_ms": 0.810987, + "rtt_ns": 2423083, + "rtt_ms": 2.423083, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "590", - "timestamp": "2025-11-27T01:23:47.135378548Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:03:50.29366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249126, - "rtt_ms": 1.249126, + "rtt_ns": 2231458, + "rtt_ms": 2.231458, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:47.136063706Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:03:50.29367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332636, - "rtt_ms": 1.332636, + "rtt_ns": 2177625, + "rtt_ms": 2.177625, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:47.136163756Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.293689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405116, - "rtt_ms": 1.405116, + "rtt_ns": 1318000, + "rtt_ms": 1.318, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.136238706Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:50.294419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220677, - "rtt_ms": 1.220677, + "rtt_ns": 1834167, + "rtt_ms": 1.834167, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:47.136251396Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:03:50.294836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429776, - "rtt_ms": 1.429776, + "rtt_ns": 1959500, + "rtt_ms": 1.9595, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "265", - "timestamp": "2025-11-27T01:23:47.136278686Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.29489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182156, - "rtt_ms": 1.182156, + "rtt_ns": 1751917, + "rtt_ms": 1.751917, "checkpoint": 0, "vertex_from": "258", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.136409105Z" + "timestamp": "2025-11-27T04:03:50.295201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172616, - "rtt_ms": 1.172616, + "rtt_ns": 1558459, + "rtt_ms": 1.558459, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:47.136444915Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.29522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842065, - "rtt_ms": 1.842065, + "rtt_ns": 1917042, + "rtt_ms": 1.917042, "checkpoint": 0, "vertex_from": "258", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.137208663Z" + "timestamp": "2025-11-27T04:03:50.295393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851995, - "rtt_ms": 1.851995, + "rtt_ns": 1969916, + "rtt_ms": 1.969916, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.137231333Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:50.295401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034064, - "rtt_ms": 2.034064, + "rtt_ns": 989958, + "rtt_ms": 0.989958, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:47.137246863Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.295411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118427, - "rtt_ms": 1.118427, + "rtt_ns": 1765625, + "rtt_ms": 1.765625, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.137283093Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:03:50.295436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238297, - "rtt_ms": 1.238297, + "rtt_ns": 2122500, + "rtt_ms": 2.1225, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:47.137302933Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.295584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051857, - "rtt_ms": 1.051857, + "rtt_ns": 2061042, + "rtt_ms": 2.061042, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.137304413Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.295751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340516, - "rtt_ms": 1.340516, + "rtt_ns": 1036708, + "rtt_ms": 1.036708, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.137581052Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.295874-08:00" }, { "operation": "add_edge", - "rtt_ns": 883797, - "rtt_ms": 0.883797, + "rtt_ns": 1581000, + "rtt_ms": 1.581, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:47.13809324Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.296472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697075, - "rtt_ms": 1.697075, + "rtt_ns": 1839417, + "rtt_ms": 1.839417, "checkpoint": 0, "vertex_from": "258", "vertex_to": "654", - "timestamp": "2025-11-27T01:23:47.13810705Z" + "timestamp": "2025-11-27T04:03:50.297042-08:00" }, { "operation": "add_edge", - "rtt_ns": 973957, - "rtt_ms": 0.973957, + "rtt_ns": 1376458, + "rtt_ms": 1.376458, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.13820596Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.297251-08:00" }, { "operation": "add_edge", - "rtt_ns": 935877, - "rtt_ms": 0.935877, + "rtt_ns": 1680333, + "rtt_ms": 1.680333, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.13821973Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.297432-08:00" }, { "operation": "add_edge", - "rtt_ns": 943407, - "rtt_ms": 0.943407, + "rtt_ns": 2405750, + "rtt_ms": 2.40575, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.13824886Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:50.297626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983934, - "rtt_ms": 1.983934, + "rtt_ns": 2254667, + "rtt_ms": 2.254667, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.13826347Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:03:50.297667-08:00" }, { "operation": "add_edge", - "rtt_ns": 978547, - "rtt_ms": 0.978547, + "rtt_ns": 2317125, + "rtt_ms": 2.317125, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.1382823Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.297754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035777, - "rtt_ms": 1.035777, + "rtt_ns": 2193375, + "rtt_ms": 2.193375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:47.13828366Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.29778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868945, - "rtt_ms": 1.868945, + "rtt_ns": 2405125, + "rtt_ms": 2.405125, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:47.13831468Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:50.297799-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006514, - "rtt_ms": 2.006514, + "rtt_ns": 1340000, + "rtt_ms": 1.34, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:47.139588186Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.297813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485736, - "rtt_ms": 1.485736, + "rtt_ns": 2478917, + "rtt_ms": 2.478917, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.139593666Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.297887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505216, - "rtt_ms": 1.505216, + "rtt_ns": 1403833, + "rtt_ms": 1.403833, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.139599906Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:03:50.298448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477125, - "rtt_ms": 1.477125, + "rtt_ns": 1264000, + "rtt_ms": 1.264, "checkpoint": 0, "vertex_from": "258", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:47.139683965Z" + "timestamp": "2025-11-27T04:03:50.298517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420525, - "rtt_ms": 1.420525, + "rtt_ns": 821375, + "rtt_ms": 0.821375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:47.139705295Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:50.298576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426815, - "rtt_ms": 1.426815, + "rtt_ns": 1340750, + "rtt_ms": 1.34075, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:47.139710025Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.298774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396725, - "rtt_ms": 1.396725, + "rtt_ns": 1637000, + "rtt_ms": 1.637, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:47.139712355Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:03:50.299264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543315, - "rtt_ms": 1.543315, + "rtt_ns": 1137084, + "rtt_ms": 1.137084, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:47.139763875Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:50.299586-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130333, - "rtt_ms": 2.130333, + "rtt_ns": 2891792, + "rtt_ms": 2.891792, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:47.140380983Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.30056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156503, - "rtt_ms": 2.156503, + "rtt_ns": 3023916, + "rtt_ms": 3.023916, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.140421483Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:50.300823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513755, - "rtt_ms": 1.513755, + "rtt_ns": 2363709, + "rtt_ms": 2.363709, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:47.141109021Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:50.300881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559416, - "rtt_ms": 1.559416, + "rtt_ns": 2244083, + "rtt_ms": 2.244083, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.141324211Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.301019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613356, - "rtt_ms": 1.613356, + "rtt_ns": 1841209, + "rtt_ms": 1.841209, "checkpoint": 0, "vertex_from": "258", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:47.141326741Z" + "timestamp": "2025-11-27T04:03:50.301107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645926, - "rtt_ms": 1.645926, + "rtt_ns": 3342500, + "rtt_ms": 3.3425, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:47.141330601Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:03:50.301123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758555, - "rtt_ms": 1.758555, + "rtt_ns": 3815666, + "rtt_ms": 3.815666, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.141347861Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:50.301703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758925, - "rtt_ms": 1.758925, + "rtt_ns": 3283750, + "rtt_ms": 3.28375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:47.141360571Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.301861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661676, - "rtt_ms": 1.661676, + "rtt_ns": 4218875, + "rtt_ms": 4.218875, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.141372471Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.302033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680196, - "rtt_ms": 1.680196, + "rtt_ns": 1230417, + "rtt_ms": 1.230417, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.141386851Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.302054-08:00" }, { "operation": "add_edge", - "rtt_ns": 851148, - "rtt_ms": 0.851148, + "rtt_ns": 1595958, + "rtt_ms": 1.595958, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:47.141961409Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.302157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690556, - "rtt_ms": 1.690556, + "rtt_ns": 1517833, + "rtt_ms": 1.517833, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.142073949Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.302642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853025, - "rtt_ms": 1.853025, + "rtt_ns": 1628375, + "rtt_ms": 1.628375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:47.142275748Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:50.30265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415886, - "rtt_ms": 1.415886, + "rtt_ns": 1863000, + "rtt_ms": 1.863, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:47.142741187Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:50.302745-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1665708, + "rtt_ms": 1.665708, + "checkpoint": 0, + "vertex_from": "258", + "vertex_to": "433", + "timestamp": "2025-11-27T04:03:50.302774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533575, - "rtt_ms": 1.533575, + "rtt_ns": 1368875, + "rtt_ms": 1.368875, "checkpoint": 0, "vertex_from": "258", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.142921046Z" + "timestamp": "2025-11-27T04:03:50.303432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612665, - "rtt_ms": 1.612665, + "rtt_ns": 3968500, + "rtt_ms": 3.9685, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "433", - "timestamp": "2025-11-27T01:23:47.142940486Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.303556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604105, - "rtt_ms": 1.604105, + "rtt_ns": 2031416, + "rtt_ms": 2.031416, "checkpoint": 0, "vertex_from": "258", "vertex_to": "261", - "timestamp": "2025-11-27T01:23:47.142953026Z" + "timestamp": "2025-11-27T04:03:50.303736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584855, - "rtt_ms": 1.584855, + "rtt_ns": 1745959, + "rtt_ms": 1.745959, "checkpoint": 0, "vertex_from": "258", "vertex_to": "785", - "timestamp": "2025-11-27T01:23:47.142958036Z" + "timestamp": "2025-11-27T04:03:50.30378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637785, - "rtt_ms": 1.637785, + "rtt_ns": 1170417, + "rtt_ms": 1.170417, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.142969166Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:50.303821-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1214416, + "rtt_ms": 1.214416, + "checkpoint": 0, + "vertex_from": "258", + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.303857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630005, - "rtt_ms": 1.630005, + "rtt_ns": 2256292, + "rtt_ms": 2.256292, "checkpoint": 0, "vertex_from": "258", "vertex_to": "771", - "timestamp": "2025-11-27T01:23:47.142991516Z" + "timestamp": "2025-11-27T04:03:50.30413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189026, - "rtt_ms": 1.189026, + "rtt_ns": 1882292, + "rtt_ms": 1.882292, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.143264865Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:50.304631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784705, - "rtt_ms": 1.784705, + "rtt_ns": 2680000, + "rtt_ms": 2.68, "checkpoint": 0, "vertex_from": "258", "vertex_to": "306", - "timestamp": "2025-11-27T01:23:47.143747214Z" + "timestamp": "2025-11-27T04:03:50.304838-08:00" }, { "operation": "add_edge", - "rtt_ns": 982037, - "rtt_ms": 0.982037, + "rtt_ns": 1478041, + "rtt_ms": 1.478041, "checkpoint": 0, "vertex_from": "259", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.143974513Z" + "timestamp": "2025-11-27T04:03:50.3053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748315, - "rtt_ms": 1.748315, + "rtt_ns": 1485500, + "rtt_ms": 1.4855, "checkpoint": 0, - "vertex_from": "258", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:47.144025243Z" + "vertex_from": "259", + "vertex_to": "394", + "timestamp": "2025-11-27T04:03:50.305344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284556, - "rtt_ms": 1.284556, + "rtt_ns": 1915208, + "rtt_ms": 1.915208, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.144027213Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:50.30535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894745, - "rtt_ms": 1.894745, + "rtt_ns": 1258791, + "rtt_ms": 1.258791, "checkpoint": 0, - "vertex_from": "258", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.144853981Z" + "vertex_from": "259", + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:50.30539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890285, - "rtt_ms": 1.890285, + "rtt_ns": 1863000, + "rtt_ms": 1.863, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.144860171Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:03:50.305457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1950175, - "rtt_ms": 1.950175, + "rtt_ns": 2934792, + "rtt_ms": 2.934792, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:47.144891661Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:50.30571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971885, - "rtt_ms": 1.971885, + "rtt_ns": 1936666, + "rtt_ms": 1.936666, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "348", - "timestamp": "2025-11-27T01:23:47.144925801Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.305719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007875, - "rtt_ms": 2.007875, + "rtt_ns": 2022334, + "rtt_ms": 2.022334, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:47.144930451Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.305759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669725, - "rtt_ms": 1.669725, + "rtt_ns": 1590541, + "rtt_ms": 1.590541, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:47.14493536Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.306223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696745, - "rtt_ms": 1.696745, + "rtt_ns": 1427917, + "rtt_ms": 1.427917, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.145445109Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:03:50.306267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699735, - "rtt_ms": 1.699735, + "rtt_ns": 1480584, + "rtt_ms": 1.480584, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:47.145726418Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.306838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766125, - "rtt_ms": 1.766125, + "rtt_ns": 1551958, + "rtt_ms": 1.551958, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.145741898Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.306897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718455, - "rtt_ms": 1.718455, + "rtt_ns": 1489875, + "rtt_ms": 1.489875, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.145747468Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.306948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511745, - "rtt_ms": 1.511745, + "rtt_ns": 1276541, + "rtt_ms": 1.276541, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.146366806Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.306997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478275, - "rtt_ms": 1.478275, + "rtt_ns": 1295708, + "rtt_ms": 1.295708, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "260", - "timestamp": "2025-11-27T01:23:47.146371346Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.307056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444845, - "rtt_ms": 1.444845, + "rtt_ns": 1526250, + "rtt_ms": 1.52625, "checkpoint": 0, "vertex_from": "259", "vertex_to": "834", - "timestamp": "2025-11-27T01:23:47.146376746Z" + "timestamp": "2025-11-27T04:03:50.307237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545085, - "rtt_ms": 1.545085, + "rtt_ns": 2126042, + "rtt_ms": 2.126042, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.146406126Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.307427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707375, - "rtt_ms": 1.707375, + "rtt_ns": 1320042, + "rtt_ms": 1.320042, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.146643535Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:50.307545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868664, - "rtt_ms": 1.868664, + "rtt_ns": 1290416, + "rtt_ms": 1.290416, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.146795315Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.307558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407036, - "rtt_ms": 1.407036, + "rtt_ns": 942750, + "rtt_ms": 0.94275, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:47.146852955Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:03:50.307841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285836, - "rtt_ms": 1.285836, + "rtt_ns": 2746292, + "rtt_ms": 2.746292, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.147029214Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:03:50.30814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340496, - "rtt_ms": 1.340496, + "rtt_ns": 1296875, + "rtt_ms": 1.296875, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:47.147068024Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.308725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370926, - "rtt_ms": 1.370926, + "rtt_ns": 2022250, + "rtt_ms": 2.02225, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.147119344Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:03:50.308972-08:00" }, { "operation": "add_edge", - "rtt_ns": 777858, - "rtt_ms": 0.777858, + "rtt_ns": 2255833, + "rtt_ms": 2.255833, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "269", - "timestamp": "2025-11-27T01:23:47.147150524Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.309096-08:00" }, { "operation": "add_edge", - "rtt_ns": 812028, - "rtt_ms": 0.812028, + "rtt_ns": 2226833, + "rtt_ms": 2.226833, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.147218924Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:50.309226-08:00" }, { "operation": "add_edge", - "rtt_ns": 868608, - "rtt_ms": 0.868608, + "rtt_ns": 1105000, + "rtt_ms": 1.105, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:47.147246774Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.309245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010917, - "rtt_ms": 1.010917, + "rtt_ns": 2197833, + "rtt_ms": 2.197833, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:47.147655082Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.309255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433456, - "rtt_ms": 1.433456, + "rtt_ns": 1937667, + "rtt_ms": 1.937667, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "825", - "timestamp": "2025-11-27T01:23:47.147801282Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.309484-08:00" }, { "operation": "add_edge", - "rtt_ns": 782438, - "rtt_ms": 0.782438, + "rtt_ns": 2156958, + "rtt_ms": 2.156958, "checkpoint": 0, "vertex_from": "259", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.147812562Z" + "timestamp": "2025-11-27T04:03:50.309717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139387, - "rtt_ms": 1.139387, + "rtt_ns": 2497250, + "rtt_ms": 2.49725, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.147935262Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:50.309735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255786, - "rtt_ms": 1.255786, + "rtt_ns": 1749875, + "rtt_ms": 1.749875, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.148110991Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:50.310996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621875, - "rtt_ms": 1.621875, + "rtt_ns": 1792167, + "rtt_ms": 1.792167, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:47.148772979Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:50.311019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653005, - "rtt_ms": 1.653005, + "rtt_ns": 2308708, + "rtt_ms": 2.308708, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.148773059Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:03:50.311035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711705, - "rtt_ms": 1.711705, + "rtt_ns": 2116042, + "rtt_ms": 2.116042, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "421", - "timestamp": "2025-11-27T01:23:47.148780269Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:03:50.311213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570665, - "rtt_ms": 1.570665, + "rtt_ns": 2737958, + "rtt_ms": 2.737958, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.148790619Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.311994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529395, - "rtt_ms": 1.529395, + "rtt_ns": 2526667, + "rtt_ms": 2.526667, "checkpoint": 0, "vertex_from": "259", "vertex_to": "496", - "timestamp": "2025-11-27T01:23:47.149466117Z" + "timestamp": "2025-11-27T04:03:50.312011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453056, - "rtt_ms": 1.453056, + "rtt_ns": 4190083, + "rtt_ms": 4.190083, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "282", - "timestamp": "2025-11-27T01:23:47.149564707Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:03:50.312032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929195, - "rtt_ms": 1.929195, + "rtt_ns": 2443958, + "rtt_ms": 2.443958, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:47.149585107Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:50.31218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835965, - "rtt_ms": 1.835965, + "rtt_ns": 1344583, + "rtt_ms": 1.344583, "checkpoint": 0, - "vertex_from": "259", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:47.149638527Z" + "vertex_from": "260", + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.312364-08:00" }, { "operation": "add_edge", - "rtt_ns": 2479753, - "rtt_ms": 2.479753, + "rtt_ns": 3529959, + "rtt_ms": 3.529959, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "965", - "timestamp": "2025-11-27T01:23:47.149727597Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.312505-08:00" }, { "operation": "add_edge", - "rtt_ns": 972698, - "rtt_ms": 0.972698, + "rtt_ns": 1865500, + "rtt_ms": 1.8655, "checkpoint": 0, - "vertex_from": "259", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:47.149747267Z" + "vertex_from": "260", + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:50.312912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1950684, - "rtt_ms": 1.950684, + "rtt_ns": 3347334, + "rtt_ms": 3.347334, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.149764046Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:03:50.313066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606556, - "rtt_ms": 1.606556, + "rtt_ns": 2397916, + "rtt_ms": 2.397916, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:47.150387715Z" + "vertex_from": "259", + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.313395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615966, - "rtt_ms": 1.615966, + "rtt_ns": 1402375, + "rtt_ms": 1.402375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:47.150407535Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1637446, - "rtt_ms": 1.637446, - "checkpoint": 0, - "vertex_from": "259", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:47.150411385Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:03:50.313397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085027, - "rtt_ms": 1.085027, + "rtt_ns": 1392542, + "rtt_ms": 1.392542, "checkpoint": 0, "vertex_from": "260", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.150670794Z" + "timestamp": "2025-11-27T04:03:50.313404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035177, - "rtt_ms": 1.035177, + "rtt_ns": 1459250, + "rtt_ms": 1.45925, "checkpoint": 0, "vertex_from": "260", "vertex_to": "305", - "timestamp": "2025-11-27T01:23:47.150674574Z" + "timestamp": "2025-11-27T04:03:50.313499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244647, - "rtt_ms": 1.244647, + "rtt_ns": 2470542, + "rtt_ms": 2.470542, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:47.150810204Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.313685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099407, - "rtt_ms": 1.099407, + "rtt_ns": 1718791, + "rtt_ms": 1.718791, "checkpoint": 0, "vertex_from": "260", "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.150863993Z" + "timestamp": "2025-11-27T04:03:50.314226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437046, - "rtt_ms": 1.437046, + "rtt_ns": 2080042, + "rtt_ms": 2.080042, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.150903863Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.314261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632966, - "rtt_ms": 1.632966, + "rtt_ns": 1547208, + "rtt_ms": 1.547208, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:47.151381902Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.314461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020537, - "rtt_ms": 1.020537, + "rtt_ns": 1447625, + "rtt_ms": 1.447625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:47.151432952Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.314515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732205, - "rtt_ms": 1.732205, + "rtt_ns": 1195417, + "rtt_ms": 1.195417, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:47.151460712Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.314591-08:00" }, { "operation": "add_edge", - "rtt_ns": 787668, - "rtt_ms": 0.787668, + "rtt_ns": 2348625, + "rtt_ms": 2.348625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:47.151463392Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:03:50.314714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137757, - "rtt_ms": 1.137757, + "rtt_ns": 1651542, + "rtt_ms": 1.651542, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.151526582Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.315057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426625, - "rtt_ms": 1.426625, + "rtt_ns": 1689542, + "rtt_ms": 1.689542, "checkpoint": 0, "vertex_from": "260", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.152237389Z" + "timestamp": "2025-11-27T04:03:50.315189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848404, - "rtt_ms": 1.848404, + "rtt_ns": 1808708, + "rtt_ms": 1.808708, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.152256979Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.315207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408656, - "rtt_ms": 1.408656, + "rtt_ns": 1526333, + "rtt_ms": 1.526333, "checkpoint": 0, "vertex_from": "260", "vertex_to": "600", - "timestamp": "2025-11-27T01:23:47.152273439Z" + "timestamp": "2025-11-27T04:03:50.315219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634545, - "rtt_ms": 1.634545, + "rtt_ns": 1441375, + "rtt_ms": 1.441375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.152306189Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.315904-08:00" }, { "operation": "add_edge", - "rtt_ns": 2330543, - "rtt_ms": 2.330543, + "rtt_ns": 1529584, + "rtt_ms": 1.529584, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:47.153234916Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.316045-08:00" }, { "operation": "add_edge", - "rtt_ns": 2429752, - "rtt_ms": 2.429752, + "rtt_ns": 1823792, + "rtt_ms": 1.823792, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.153957544Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:50.316052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627152, - "rtt_ms": 2.627152, + "rtt_ns": 1810250, + "rtt_ms": 1.81025, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.154088914Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:50.316073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864085, - "rtt_ms": 1.864085, + "rtt_ns": 1372709, + "rtt_ms": 1.372709, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "308", - "timestamp": "2025-11-27T01:23:47.154122284Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.316089-08:00" }, { "operation": "add_edge", - "rtt_ns": 2774182, - "rtt_ms": 2.774182, + "rtt_ns": 1642083, + "rtt_ms": 1.642083, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:47.154156754Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.316234-08:00" }, { "operation": "add_edge", - "rtt_ns": 2728192, - "rtt_ms": 2.728192, + "rtt_ns": 1549667, + "rtt_ms": 1.549667, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.154162004Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:50.31677-08:00" }, { "operation": "add_edge", - "rtt_ns": 2707762, - "rtt_ms": 2.707762, + "rtt_ns": 1845417, + "rtt_ms": 1.845417, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.154172154Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.316903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945995, - "rtt_ms": 1.945995, + "rtt_ns": 1061500, + "rtt_ms": 1.0615, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.154184084Z" + "vertex_to": "939", + "timestamp": "2025-11-27T04:03:50.316966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933085, - "rtt_ms": 1.933085, + "rtt_ns": 1903125, + "rtt_ms": 1.903125, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:47.154207234Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:03:50.317094-08:00" }, { "operation": "add_edge", - "rtt_ns": 2456483, - "rtt_ms": 2.456483, + "rtt_ns": 2055792, + "rtt_ms": 2.055792, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:47.154763412Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:50.317263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109584, - "rtt_ms": 2.109584, + "rtt_ns": 1978125, + "rtt_ms": 1.978125, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "939", - "timestamp": "2025-11-27T01:23:47.15534529Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.318024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390396, - "rtt_ms": 1.390396, + "rtt_ns": 1985083, + "rtt_ms": 1.985083, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.15534849Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.318038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478505, - "rtt_ms": 1.478505, + "rtt_ns": 1831208, + "rtt_ms": 1.831208, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.155567919Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:03:50.318066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524055, - "rtt_ms": 1.524055, + "rtt_ns": 2124875, + "rtt_ms": 2.124875, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.155732809Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.318214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687065, - "rtt_ms": 1.687065, + "rtt_ns": 1791916, + "rtt_ms": 1.791916, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.155809779Z" + "vertex_to": "682", + "timestamp": "2025-11-27T04:03:50.318887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762194, - "rtt_ms": 1.762194, + "rtt_ns": 2121125, + "rtt_ms": 2.121125, "checkpoint": 0, "vertex_from": "260", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:47.155934848Z" + "timestamp": "2025-11-27T04:03:50.318892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852544, - "rtt_ms": 1.852544, + "rtt_ns": 1726291, + "rtt_ms": 1.726291, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.156037918Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.31899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094454, - "rtt_ms": 2.094454, + "rtt_ns": 2169209, + "rtt_ms": 2.169209, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "417", - "timestamp": "2025-11-27T01:23:47.156258598Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.319073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525185, - "rtt_ms": 1.525185, + "rtt_ns": 2148667, + "rtt_ms": 2.148667, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "682", - "timestamp": "2025-11-27T01:23:47.156289997Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.319116-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284063, - "rtt_ms": 2.284063, + "rtt_ns": 3116500, + "rtt_ms": 3.1165, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.156441507Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.319191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224277, - "rtt_ms": 1.224277, + "rtt_ns": 2058125, + "rtt_ms": 2.058125, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.156570007Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.320125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310796, - "rtt_ms": 1.310796, + "rtt_ns": 2117958, + "rtt_ms": 2.117958, "checkpoint": 0, "vertex_from": "260", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.156660746Z" + "timestamp": "2025-11-27T04:03:50.320145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176717, - "rtt_ms": 1.176717, + "rtt_ns": 1289709, + "rtt_ms": 1.289709, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:47.156746656Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:03:50.320178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059967, - "rtt_ms": 1.059967, + "rtt_ns": 1226750, + "rtt_ms": 1.22675, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.156794026Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:50.320343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071987, - "rtt_ms": 1.071987, + "rtt_ns": 1463791, + "rtt_ms": 1.463791, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:47.156883066Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:03:50.320356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517796, - "rtt_ms": 1.517796, + "rtt_ns": 1285792, + "rtt_ms": 1.285792, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:47.157454044Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:50.32036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615686, - "rtt_ms": 1.615686, + "rtt_ns": 2340208, + "rtt_ms": 2.340208, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:47.157654694Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:03:50.320379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413966, - "rtt_ms": 1.413966, + "rtt_ns": 1330459, + "rtt_ms": 1.330459, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:47.157674164Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:50.320522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192416, - "rtt_ms": 1.192416, + "rtt_ns": 2321916, + "rtt_ms": 2.321916, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:47.157763263Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.320537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372776, - "rtt_ms": 1.372776, + "rtt_ns": 1561334, + "rtt_ms": 1.561334, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:47.157815243Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:03:50.320552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539886, - "rtt_ms": 1.539886, + "rtt_ns": 1195417, + "rtt_ms": 1.195417, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:47.157830893Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:50.321575-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1285037, - "rtt_ms": 1.285037, + "operation": "add_vertex", + "rtt_ns": 1448750, + "rtt_ms": 1.44875, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.157947083Z" + "vertex_from": "831", + "timestamp": "2025-11-27T04:03:50.321597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573966, - "rtt_ms": 1.573966, + "rtt_ns": 1526708, + "rtt_ms": 1.526708, "checkpoint": 0, "vertex_from": "260", "vertex_to": "466", - "timestamp": "2025-11-27T01:23:47.158369432Z" + "timestamp": "2025-11-27T04:03:50.321705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138807, - "rtt_ms": 1.138807, + "rtt_ns": 1443541, + "rtt_ms": 1.443541, "checkpoint": 0, "vertex_from": "260", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:47.158594781Z" + "timestamp": "2025-11-27T04:03:50.321801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729765, - "rtt_ms": 1.729765, + "rtt_ns": 1285708, + "rtt_ms": 1.285708, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:47.158613801Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1869945, - "rtt_ms": 1.869945, - "checkpoint": 0, - "vertex_from": "831", - "timestamp": "2025-11-27T01:23:47.158618671Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.32181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436366, - "rtt_ms": 1.436366, + "rtt_ns": 1530500, + "rtt_ms": 1.5305, "checkpoint": 0, "vertex_from": "260", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.15909204Z" + "timestamp": "2025-11-27T04:03:50.321891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772995, - "rtt_ms": 1.772995, + "rtt_ns": 1782333, + "rtt_ms": 1.782333, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:47.159450049Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.321908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831085, - "rtt_ms": 1.831085, + "rtt_ns": 1576333, + "rtt_ms": 1.576333, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.159595298Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.321922-08:00" }, { - "operation": "add_edge", - "rtt_ns": 989797, - "rtt_ms": 0.989797, + "operation": "add_vertex", + "rtt_ns": 1415541, + "rtt_ms": 1.415541, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "831", - "timestamp": "2025-11-27T01:23:47.159608868Z" + "vertex_from": "739", + "timestamp": "2025-11-27T04:03:50.321969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899505, - "rtt_ms": 1.899505, + "rtt_ns": 1463041, + "rtt_ms": 1.463041, "checkpoint": 0, "vertex_from": "260", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:47.159716668Z" + "timestamp": "2025-11-27T04:03:50.322001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173887, - "rtt_ms": 1.173887, + "rtt_ns": 1388000, + "rtt_ms": 1.388, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:47.159769388Z" + "vertex_to": "831", + "timestamp": "2025-11-27T04:03:50.322985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179517, - "rtt_ms": 1.179517, + "rtt_ns": 1642583, + "rtt_ms": 1.642583, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "803", - "timestamp": "2025-11-27T01:23:47.159795088Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:50.323219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458145, - "rtt_ms": 1.458145, + "rtt_ns": 1556416, + "rtt_ms": 1.556416, "checkpoint": 0, "vertex_from": "260", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.159828567Z" + "timestamp": "2025-11-27T04:03:50.323262-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2125604, - "rtt_ms": 2.125604, + "operation": "add_edge", + "rtt_ns": 1477042, + "rtt_ms": 1.477042, "checkpoint": 0, - "vertex_from": "739", - "timestamp": "2025-11-27T01:23:47.159958967Z" + "vertex_from": "260", + "vertex_to": "564", + "timestamp": "2025-11-27T04:03:50.323279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057784, - "rtt_ms": 2.057784, + "rtt_ns": 1285417, + "rtt_ms": 1.285417, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:47.160006577Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:50.323287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570825, - "rtt_ms": 1.570825, + "rtt_ns": 1530792, + "rtt_ms": 1.530792, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:47.160664805Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:03:50.323342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086627, - "rtt_ms": 1.086627, + "rtt_ns": 1554917, + "rtt_ms": 1.554917, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.160683085Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:03:50.323447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239846, - "rtt_ms": 1.239846, + "rtt_ns": 1556333, + "rtt_ms": 1.556333, "checkpoint": 0, "vertex_from": "260", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:47.160691085Z" + "timestamp": "2025-11-27T04:03:50.323465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729225, - "rtt_ms": 1.729225, + "rtt_ns": 1609125, + "rtt_ms": 1.609125, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:47.161339063Z" + "vertex_to": "739", + "timestamp": "2025-11-27T04:03:50.323578-08:00" }, { "operation": "add_edge", - "rtt_ns": 706928, - "rtt_ms": 0.706928, + "rtt_ns": 1719500, + "rtt_ms": 1.7195, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:47.161372723Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.323642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487076, - "rtt_ms": 1.487076, + "rtt_ns": 1494875, + "rtt_ms": 1.494875, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "739", - "timestamp": "2025-11-27T01:23:47.161446453Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:03:50.324481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643876, - "rtt_ms": 1.643876, + "rtt_ns": 1383500, + "rtt_ms": 1.3835, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "426", - "timestamp": "2025-11-27T01:23:47.161474203Z" + "vertex_to": "683", + "timestamp": "2025-11-27T04:03:50.324603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720205, - "rtt_ms": 1.720205, + "rtt_ns": 1461292, + "rtt_ms": 1.461292, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "683", - "timestamp": "2025-11-27T01:23:47.161490783Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:50.324804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708504, - "rtt_ms": 1.708504, + "rtt_ns": 1567292, + "rtt_ms": 1.567292, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:47.161504762Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.324855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848854, - "rtt_ms": 1.848854, + "rtt_ns": 1398084, + "rtt_ms": 1.398084, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:47.161566952Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:03:50.324977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677595, - "rtt_ms": 1.677595, + "rtt_ns": 1724542, + "rtt_ms": 1.724542, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.161685112Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.324988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290226, - "rtt_ms": 1.290226, + "rtt_ns": 1653042, + "rtt_ms": 1.653042, "checkpoint": 0, "vertex_from": "260", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.161974581Z" + "timestamp": "2025-11-27T04:03:50.325101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860284, - "rtt_ms": 1.860284, + "rtt_ns": 1646667, + "rtt_ms": 1.646667, "checkpoint": 0, "vertex_from": "260", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.162553259Z" + "timestamp": "2025-11-27T04:03:50.325112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221357, - "rtt_ms": 1.221357, + "rtt_ns": 1864666, + "rtt_ms": 1.864666, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.162727299Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:03:50.325145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367666, - "rtt_ms": 1.367666, + "rtt_ns": 1715416, + "rtt_ms": 1.715416, "checkpoint": 0, "vertex_from": "260", "vertex_to": "323", - "timestamp": "2025-11-27T01:23:47.162741649Z" + "timestamp": "2025-11-27T04:03:50.325358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440246, - "rtt_ms": 1.440246, + "rtt_ns": 844000, + "rtt_ms": 0.844, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:47.162781009Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:03:50.325448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338896, - "rtt_ms": 1.338896, + "rtt_ns": 1064750, + "rtt_ms": 1.06475, "checkpoint": 0, "vertex_from": "260", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.162786179Z" + "timestamp": "2025-11-27T04:03:50.325547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586255, - "rtt_ms": 1.586255, + "rtt_ns": 1385208, + "rtt_ms": 1.385208, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "262", - "timestamp": "2025-11-27T01:23:47.163061878Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.326531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562046, - "rtt_ms": 1.562046, + "rtt_ns": 1696333, + "rtt_ms": 1.696333, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.163129748Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.326552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726214, - "rtt_ms": 1.726214, + "rtt_ns": 1586292, + "rtt_ms": 1.586292, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:47.163217907Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.326566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271176, - "rtt_ms": 1.271176, + "rtt_ns": 1729125, + "rtt_ms": 1.729125, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:47.163246957Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:50.326718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564365, - "rtt_ms": 1.564365, + "rtt_ns": 1625458, + "rtt_ms": 1.625458, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:47.163250317Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:50.326739-08:00" }, { "operation": "add_edge", - "rtt_ns": 864558, - "rtt_ms": 0.864558, + "rtt_ns": 1685875, + "rtt_ms": 1.685875, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:47.163419407Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:50.326787-08:00" }, { "operation": "add_edge", - "rtt_ns": 729108, - "rtt_ms": 0.729108, + "rtt_ns": 1988125, + "rtt_ms": 1.988125, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.163457457Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:03:50.326793-08:00" }, { "operation": "add_edge", - "rtt_ns": 731217, - "rtt_ms": 0.731217, + "rtt_ns": 1316167, + "rtt_ms": 1.316167, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:47.163513146Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:03:50.326864-08:00" }, { "operation": "add_edge", - "rtt_ns": 825407, - "rtt_ms": 0.825407, + "rtt_ns": 1518541, + "rtt_ms": 1.518541, "checkpoint": 0, "vertex_from": "260", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.163569216Z" + "timestamp": "2025-11-27T04:03:50.326877-08:00" }, { "operation": "add_edge", - "rtt_ns": 810437, - "rtt_ms": 0.810437, + "rtt_ns": 1483750, + "rtt_ms": 1.48375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:47.163597486Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:50.326932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279656, - "rtt_ms": 1.279656, + "rtt_ns": 1384583, + "rtt_ms": 1.384583, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "539", - "timestamp": "2025-11-27T01:23:47.164342754Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:50.328105-08:00" }, { "operation": "add_edge", - "rtt_ns": 897068, - "rtt_ms": 0.897068, + "rtt_ns": 1334167, + "rtt_ms": 1.334167, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "369", - "timestamp": "2025-11-27T01:23:47.164411014Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:50.328122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233467, - "rtt_ms": 1.233467, + "rtt_ns": 1691875, + "rtt_ms": 1.691875, "checkpoint": 0, "vertex_from": "260", "vertex_to": "317", - "timestamp": "2025-11-27T01:23:47.164452364Z" + "timestamp": "2025-11-27T04:03:50.328259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039637, - "rtt_ms": 1.039637, + "rtt_ns": 1757834, + "rtt_ms": 1.757834, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:47.164460184Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:03:50.328291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354586, - "rtt_ms": 1.354586, + "rtt_ns": 1366166, + "rtt_ms": 1.366166, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "1002", - "timestamp": "2025-11-27T01:23:47.164485864Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:03:50.328299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273157, - "rtt_ms": 1.273157, + "rtt_ns": 1568209, + "rtt_ms": 1.568209, "checkpoint": 0, "vertex_from": "260", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.164524204Z" + "timestamp": "2025-11-27T04:03:50.328308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281707, - "rtt_ms": 1.281707, + "rtt_ns": 1762416, + "rtt_ms": 1.762416, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:47.164529624Z" + "vertex_to": "1002", + "timestamp": "2025-11-27T04:03:50.328316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070947, - "rtt_ms": 1.070947, + "rtt_ns": 1626750, + "rtt_ms": 1.62675, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "409", - "timestamp": "2025-11-27T01:23:47.164529774Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.328505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2157574, - "rtt_ms": 2.157574, + "rtt_ns": 2296750, + "rtt_ms": 2.29675, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:47.166501908Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:03:50.329162-08:00" }, { "operation": "add_edge", - "rtt_ns": 2932102, - "rtt_ms": 2.932102, + "rtt_ns": 2385666, + "rtt_ms": 2.385666, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.166502568Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:03:50.32918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2919932, - "rtt_ms": 2.919932, + "rtt_ns": 1996958, + "rtt_ms": 1.996958, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "268", - "timestamp": "2025-11-27T01:23:47.166518828Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:50.330103-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318413, - "rtt_ms": 2.318413, + "rtt_ns": 2001292, + "rtt_ms": 2.001292, "checkpoint": 0, - "vertex_from": "261", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.166849727Z" + "vertex_from": "260", + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:50.330124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2398023, - "rtt_ms": 2.398023, + "rtt_ns": 1985000, + "rtt_ms": 1.985, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:47.166859327Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.330295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2510523, - "rtt_ms": 2.510523, + "rtt_ns": 2301375, + "rtt_ms": 2.301375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:47.166923447Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:50.330594-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1450167, + "rtt_ms": 1.450167, + "checkpoint": 0, + "vertex_from": "261", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.330613-08:00" }, { "operation": "add_edge", - "rtt_ns": 2457913, - "rtt_ms": 2.457913, + "rtt_ns": 2121875, + "rtt_ms": 2.121875, "checkpoint": 0, "vertex_from": "261", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:47.166989527Z" + "timestamp": "2025-11-27T04:03:50.330629-08:00" }, { "operation": "add_edge", - "rtt_ns": 2521103, - "rtt_ms": 2.521103, + "rtt_ns": 1498375, + "rtt_ms": 1.498375, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.167007837Z" + "vertex_from": "261", + "vertex_to": "524", + "timestamp": "2025-11-27T04:03:50.33068-08:00" }, { "operation": "add_edge", - "rtt_ns": 2487313, - "rtt_ms": 2.487313, + "rtt_ns": 2413209, + "rtt_ms": 2.413209, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.167012827Z" + "vertex_from": "261", + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.330731-08:00" }, { "operation": "add_edge", - "rtt_ns": 2560293, - "rtt_ms": 2.560293, + "rtt_ns": 2702792, + "rtt_ms": 2.702792, "checkpoint": 0, "vertex_from": "260", "vertex_to": "298", - "timestamp": "2025-11-27T01:23:47.167013487Z" + "timestamp": "2025-11-27T04:03:50.330964-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2704500, + "rtt_ms": 2.7045, + "checkpoint": 0, + "vertex_from": "260", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.331005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261577, - "rtt_ms": 1.261577, + "rtt_ns": 1227834, + "rtt_ms": 1.227834, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:47.167765245Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.331524-08:00" }, { "operation": "add_edge", - "rtt_ns": 833607, - "rtt_ms": 0.833607, + "rtt_ns": 1494042, + "rtt_ms": 1.494042, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.167847884Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.331598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018057, - "rtt_ms": 1.018057, + "rtt_ns": 1522458, + "rtt_ms": 1.522458, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.167869844Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.332152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370346, - "rtt_ms": 1.370346, + "rtt_ns": 1570417, + "rtt_ms": 1.570417, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.167873264Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.332165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168417, - "rtt_ms": 1.168417, + "rtt_ns": 1515416, + "rtt_ms": 1.515416, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.168028644Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:50.332196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508876, - "rtt_ms": 1.508876, + "rtt_ns": 1470333, + "rtt_ms": 1.470333, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.168029284Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.332202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039237, - "rtt_ms": 1.039237, + "rtt_ns": 2132750, + "rtt_ms": 2.13275, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.168029464Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.33226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030297, - "rtt_ms": 1.030297, + "rtt_ns": 1689208, + "rtt_ms": 1.689208, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.168039474Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.332303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042097, - "rtt_ms": 1.042097, + "rtt_ns": 1305167, + "rtt_ms": 1.305167, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:47.168056304Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:50.332312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413736, - "rtt_ms": 1.413736, + "rtt_ns": 1524625, + "rtt_ms": 1.524625, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.168339193Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.332491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404396, - "rtt_ms": 1.404396, + "rtt_ns": 1656583, + "rtt_ms": 1.656583, "checkpoint": 0, "vertex_from": "261", "vertex_to": "278", - "timestamp": "2025-11-27T01:23:47.16927875Z" + "timestamp": "2025-11-27T04:03:50.333256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526436, - "rtt_ms": 1.526436, + "rtt_ns": 1779459, + "rtt_ms": 1.779459, "checkpoint": 0, "vertex_from": "261", "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.16939713Z" + "timestamp": "2025-11-27T04:03:50.333304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580216, - "rtt_ms": 1.580216, + "rtt_ns": 1277167, + "rtt_ms": 1.277167, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.16942889Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:50.333481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424576, - "rtt_ms": 1.424576, + "rtt_ns": 1211750, + "rtt_ms": 1.21175, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:47.1694563Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.333517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515426, - "rtt_ms": 1.515426, + "rtt_ns": 1371333, + "rtt_ms": 1.371333, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:47.16954641Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:03:50.333632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522746, - "rtt_ms": 1.522746, + "rtt_ns": 1468583, + "rtt_ms": 1.468583, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:47.16956315Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:03:50.333635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524035, - "rtt_ms": 1.524035, + "rtt_ns": 1487416, + "rtt_ms": 1.487416, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:47.169581309Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:03:50.333642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172983, - "rtt_ms": 2.172983, + "rtt_ns": 1155750, + "rtt_ms": 1.15575, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.169939128Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:50.333648-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208904, - "rtt_ms": 2.208904, + "rtt_ns": 1445042, + "rtt_ms": 1.445042, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:47.170239338Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:03:50.333665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912995, - "rtt_ms": 1.912995, + "rtt_ns": 1632042, + "rtt_ms": 1.632042, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.170253608Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.333945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157097, - "rtt_ms": 1.157097, + "rtt_ns": 1118375, + "rtt_ms": 1.118375, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.170437677Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.334785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690165, - "rtt_ms": 1.690165, + "rtt_ns": 1284917, + "rtt_ms": 1.284917, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.171119895Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:03:50.334934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559035, - "rtt_ms": 1.559035, + "rtt_ns": 1678792, + "rtt_ms": 1.678792, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:47.171123665Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.334935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816415, - "rtt_ms": 1.816415, + "rtt_ns": 1423500, + "rtt_ms": 1.4235, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:47.171215015Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:03:50.334941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681065, - "rtt_ms": 1.681065, + "rtt_ns": 1525583, + "rtt_ms": 1.525583, "checkpoint": 0, "vertex_from": "261", "vertex_to": "357", - "timestamp": "2025-11-27T01:23:47.171229415Z" + "timestamp": "2025-11-27T04:03:50.335007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785635, - "rtt_ms": 1.785635, + "rtt_ns": 1716375, + "rtt_ms": 1.716375, "checkpoint": 0, "vertex_from": "261", "vertex_to": "312", - "timestamp": "2025-11-27T01:23:47.171243075Z" + "timestamp": "2025-11-27T04:03:50.335023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806645, - "rtt_ms": 1.806645, + "rtt_ns": 1500375, + "rtt_ms": 1.500375, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.171388854Z" + "vertex_to": "732", + "timestamp": "2025-11-27T04:03:50.335143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090057, - "rtt_ms": 1.090057, + "rtt_ns": 1565458, + "rtt_ms": 1.565458, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.171528464Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.335199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355906, - "rtt_ms": 1.355906, + "rtt_ns": 1582042, + "rtt_ms": 1.582042, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "732", - "timestamp": "2025-11-27T01:23:47.171596464Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.335218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387636, - "rtt_ms": 1.387636, + "rtt_ns": 1766958, + "rtt_ms": 1.766958, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "451", - "timestamp": "2025-11-27T01:23:47.171642294Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.335713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731946, - "rtt_ms": 1.731946, + "rtt_ns": 1495209, + "rtt_ms": 1.495209, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:47.171672134Z" + "vertex_to": "679", + "timestamp": "2025-11-27T04:03:50.336281-08:00" }, { "operation": "add_edge", - "rtt_ns": 718598, - "rtt_ms": 0.718598, + "rtt_ns": 1212208, + "rtt_ms": 1.212208, "checkpoint": 0, - "vertex_from": "261", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.171839413Z" + "vertex_from": "262", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.336356-08:00" }, { "operation": "add_edge", - "rtt_ns": 932728, - "rtt_ms": 0.932728, + "rtt_ns": 1444583, + "rtt_ms": 1.444583, "checkpoint": 0, - "vertex_from": "261", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:47.172322402Z" + "vertex_from": "262", + "vertex_to": "587", + "timestamp": "2025-11-27T04:03:50.336469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237346, - "rtt_ms": 1.237346, + "rtt_ns": 1620667, + "rtt_ms": 1.620667, "checkpoint": 0, "vertex_from": "261", "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.172453561Z" + "timestamp": "2025-11-27T04:03:50.336555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223296, - "rtt_ms": 1.223296, + "rtt_ns": 1721625, + "rtt_ms": 1.721625, "checkpoint": 0, "vertex_from": "261", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.172467371Z" + "timestamp": "2025-11-27T04:03:50.336664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298846, - "rtt_ms": 1.298846, + "rtt_ns": 1735584, + "rtt_ms": 1.735584, "checkpoint": 0, "vertex_from": "261", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:47.172529211Z" + "timestamp": "2025-11-27T04:03:50.336672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943404, - "rtt_ms": 1.943404, + "rtt_ns": 1672833, + "rtt_ms": 1.672833, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "679", - "timestamp": "2025-11-27T01:23:47.173068109Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:50.336681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339426, - "rtt_ms": 1.339426, + "rtt_ns": 1693791, + "rtt_ms": 1.693791, "checkpoint": 0, "vertex_from": "262", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.173179689Z" + "timestamp": "2025-11-27T04:03:50.337409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670135, - "rtt_ms": 1.670135, + "rtt_ns": 2302542, + "rtt_ms": 2.302542, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:47.173199549Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:03:50.337521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609535, - "rtt_ms": 1.609535, + "rtt_ns": 2424125, + "rtt_ms": 2.424125, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.173207089Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.337623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571385, - "rtt_ms": 1.571385, + "rtt_ns": 1259208, + "rtt_ms": 1.259208, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.173214289Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:03:50.337729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732194, - "rtt_ms": 1.732194, + "rtt_ns": 1402750, + "rtt_ms": 1.40275, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.174056396Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.33776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616595, - "rtt_ms": 1.616595, + "rtt_ns": 1494750, + "rtt_ms": 1.49475, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "337", - "timestamp": "2025-11-27T01:23:47.174146676Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.337777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008867, - "rtt_ms": 1.008867, + "rtt_ns": 1254042, + "rtt_ms": 1.254042, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.174224186Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:50.338666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770375, - "rtt_ms": 1.770375, + "rtt_ns": 2582000, + "rtt_ms": 2.582, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.174224976Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:03:50.339138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045147, - "rtt_ms": 1.045147, + "rtt_ns": 1617334, + "rtt_ms": 1.617334, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:47.174225796Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.339139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030697, - "rtt_ms": 1.030697, + "rtt_ns": 1518750, + "rtt_ms": 1.51875, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:47.174241696Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.339143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790175, - "rtt_ms": 1.790175, + "rtt_ns": 1440666, + "rtt_ms": 1.440666, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:47.174258486Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:03:50.33917-08:00" }, { "operation": "add_edge", - "rtt_ns": 2577242, - "rtt_ms": 2.577242, + "rtt_ns": 2604292, + "rtt_ms": 2.604292, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "669", - "timestamp": "2025-11-27T01:23:47.174258626Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:50.339287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243987, - "rtt_ms": 1.243987, + "rtt_ns": 1544458, + "rtt_ms": 1.544458, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.174312776Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.339305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244336, - "rtt_ms": 1.244336, + "rtt_ns": 2647042, + "rtt_ms": 2.647042, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:47.174444645Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:03:50.33932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240027, - "rtt_ms": 1.240027, + "rtt_ns": 2656042, + "rtt_ms": 2.656042, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "284", - "timestamp": "2025-11-27T01:23:47.175388533Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.339321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418156, - "rtt_ms": 1.418156, + "rtt_ns": 1564125, + "rtt_ms": 1.564125, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:47.175476242Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.339347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087537, - "rtt_ms": 1.087537, + "rtt_ns": 1727625, + "rtt_ms": 1.727625, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.175532922Z" + "vertex_to": "690", + "timestamp": "2025-11-27T04:03:50.340394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796955, - "rtt_ms": 1.796955, + "rtt_ns": 1811042, + "rtt_ms": 1.811042, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:47.176040441Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:03:50.341117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833794, - "rtt_ms": 1.833794, + "rtt_ns": 1985791, + "rtt_ms": 1.985791, "checkpoint": 0, "vertex_from": "262", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:47.17609352Z" + "timestamp": "2025-11-27T04:03:50.341126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836874, - "rtt_ms": 1.836874, + "rtt_ns": 1983500, + "rtt_ms": 1.9835, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.1761509Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.341128-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1952704, - "rtt_ms": 1.952704, + "operation": "add_vertex", + "rtt_ns": 1807458, + "rtt_ms": 1.807458, "checkpoint": 0, - "vertex_from": "262", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.1761788Z" + "vertex_from": "949", + "timestamp": "2025-11-27T04:03:50.341156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922684, - "rtt_ms": 1.922684, + "rtt_ns": 2148750, + "rtt_ms": 2.14875, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.17618266Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.34132-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065514, - "rtt_ms": 2.065514, + "rtt_ns": 2095333, + "rtt_ms": 2.095333, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "690", - "timestamp": "2025-11-27T01:23:47.17629238Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:50.341416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148364, - "rtt_ms": 2.148364, + "rtt_ns": 2193167, + "rtt_ms": 2.193167, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.1763738Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.341481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539226, - "rtt_ms": 1.539226, + "rtt_ns": 2181042, + "rtt_ms": 2.181042, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:47.177016458Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.341502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678795, - "rtt_ms": 1.678795, + "rtt_ns": 2380333, + "rtt_ms": 2.380333, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "421", - "timestamp": "2025-11-27T01:23:47.177068458Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:50.341519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710135, - "rtt_ms": 1.710135, + "rtt_ns": 1164417, + "rtt_ms": 1.164417, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.177893985Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:03:50.342486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716475, - "rtt_ms": 1.716475, + "rtt_ns": 2409250, + "rtt_ms": 2.40925, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.177896415Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.342805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2368623, - "rtt_ms": 2.368623, + "rtt_ns": 1692000, + "rtt_ms": 1.692, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.177902675Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.34282-08:00" }, { "operation": "add_edge", - "rtt_ns": 859027, - "rtt_ms": 0.859027, + "rtt_ns": 1668667, + "rtt_ms": 1.668667, "checkpoint": 0, - "vertex_from": "263", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:47.177928235Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1907434, - "rtt_ms": 1.907434, - "checkpoint": 0, - "vertex_from": "949", - "timestamp": "2025-11-27T01:23:47.177950395Z" + "vertex_from": "262", + "vertex_to": "949", + "timestamp": "2025-11-27T04:03:50.342825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857235, - "rtt_ms": 1.857235, + "rtt_ns": 1699917, + "rtt_ms": 1.699917, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:47.177951905Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.342828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668195, - "rtt_ms": 1.668195, + "rtt_ns": 1367125, + "rtt_ms": 1.367125, "checkpoint": 0, - "vertex_from": "262", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:47.177961565Z" + "vertex_from": "263", + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.342849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819795, - "rtt_ms": 1.819795, + "rtt_ns": 1752334, + "rtt_ms": 1.752334, "checkpoint": 0, "vertex_from": "262", "vertex_to": "811", - "timestamp": "2025-11-27T01:23:47.177972235Z" + "timestamp": "2025-11-27T04:03:50.342873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035597, - "rtt_ms": 1.035597, + "rtt_ns": 1496458, + "rtt_ms": 1.496458, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:47.178053565Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702315, - "rtt_ms": 1.702315, + "rtt_ns": 1624459, + "rtt_ms": 1.624459, "checkpoint": 0, "vertex_from": "262", "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.178077055Z" + "timestamp": "2025-11-27T04:03:50.343041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147907, - "rtt_ms": 1.147907, - "checkpoint": 0, - "vertex_from": "262", - "vertex_to": "949", - "timestamp": "2025-11-27T01:23:47.179098782Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1764985, - "rtt_ms": 1.764985, + "rtt_ns": 2085792, + "rtt_ms": 2.085792, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.17973982Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.343606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934995, - "rtt_ms": 1.934995, + "rtt_ns": 1639375, + "rtt_ms": 1.639375, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.17983864Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:50.344128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963695, - "rtt_ms": 1.963695, + "rtt_ns": 1398750, + "rtt_ms": 1.39875, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.1798587Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.344225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077014, - "rtt_ms": 2.077014, + "rtt_ns": 1274417, + "rtt_ms": 1.274417, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.180029849Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:50.344275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215614, - "rtt_ms": 2.215614, + "rtt_ns": 1674792, + "rtt_ms": 1.674792, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:47.180113609Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.344525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2377913, - "rtt_ms": 2.377913, + "rtt_ns": 1811625, + "rtt_ms": 1.811625, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:47.180456678Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:50.344641-08:00" }, { "operation": "add_edge", - "rtt_ns": 2642052, - "rtt_ms": 2.642052, + "rtt_ns": 1838666, + "rtt_ms": 1.838666, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "425", - "timestamp": "2025-11-27T01:23:47.180696807Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.34466-08:00" }, { "operation": "add_edge", - "rtt_ns": 2789042, - "rtt_ms": 2.789042, + "rtt_ns": 1783916, + "rtt_ms": 1.783916, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:47.180751717Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.344826-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225664, - "rtt_ms": 2.225664, + "rtt_ns": 2023000, + "rtt_ms": 2.023, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.181326256Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.344829-08:00" }, { "operation": "add_edge", - "rtt_ns": 3438180, - "rtt_ms": 3.43818, + "rtt_ns": 1577416, + "rtt_ms": 1.577416, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.181367455Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:03:50.345185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569545, - "rtt_ms": 1.569545, + "rtt_ns": 1069709, + "rtt_ms": 1.069709, "checkpoint": 0, "vertex_from": "263", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.181409765Z" + "timestamp": "2025-11-27T04:03:50.345199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328816, - "rtt_ms": 1.328816, + "rtt_ns": 2405542, + "rtt_ms": 2.405542, "checkpoint": 0, - "vertex_from": "264", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.181443225Z" + "vertex_from": "263", + "vertex_to": "425", + "timestamp": "2025-11-27T04:03:50.345279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606505, - "rtt_ms": 1.606505, + "rtt_ns": 1226042, + "rtt_ms": 1.226042, "checkpoint": 0, "vertex_from": "263", "vertex_to": "525", - "timestamp": "2025-11-27T01:23:47.181466375Z" + "timestamp": "2025-11-27T04:03:50.345452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458446, - "rtt_ms": 1.458446, + "rtt_ns": 1239208, + "rtt_ms": 1.239208, "checkpoint": 0, "vertex_from": "264", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.181489415Z" + "timestamp": "2025-11-27T04:03:50.345515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756115, - "rtt_ms": 1.756115, + "rtt_ns": 1471375, + "rtt_ms": 1.471375, "checkpoint": 0, - "vertex_from": "263", - "vertex_to": "264", - "timestamp": "2025-11-27T01:23:47.181497815Z" + "vertex_from": "264", + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.345999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121217, - "rtt_ms": 1.121217, + "rtt_ns": 1352875, + "rtt_ms": 1.352875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:47.181579275Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:50.346013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118047, - "rtt_ms": 1.118047, + "rtt_ns": 1380875, + "rtt_ms": 1.380875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:47.181815814Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.346661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063537, - "rtt_ms": 1.063537, + "rtt_ns": 1343917, + "rtt_ms": 1.343917, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.181816264Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:03:50.346798-08:00" }, { "operation": "add_edge", - "rtt_ns": 765037, - "rtt_ms": 0.765037, + "rtt_ns": 1598667, + "rtt_ms": 1.598667, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "659", - "timestamp": "2025-11-27T01:23:47.182092593Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.346798-08:00" }, { "operation": "add_edge", - "rtt_ns": 753478, - "rtt_ms": 0.753478, + "rtt_ns": 1615042, + "rtt_ms": 1.615042, "checkpoint": 0, "vertex_from": "264", "vertex_to": "673", - "timestamp": "2025-11-27T01:23:47.182122313Z" + "timestamp": "2025-11-27T04:03:50.346801-08:00" }, { "operation": "add_edge", - "rtt_ns": 798148, - "rtt_ms": 0.798148, + "rtt_ns": 1987083, + "rtt_ms": 1.987083, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.182208973Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:03:50.346817-08:00" }, { "operation": "add_edge", - "rtt_ns": 772598, - "rtt_ms": 0.772598, + "rtt_ns": 1390792, + "rtt_ms": 1.390792, "checkpoint": 0, "vertex_from": "264", "vertex_to": "714", - "timestamp": "2025-11-27T01:23:47.182263043Z" + "timestamp": "2025-11-27T04:03:50.346907-08:00" }, { "operation": "add_edge", - "rtt_ns": 848397, - "rtt_ms": 0.848397, + "rtt_ns": 2277833, + "rtt_ms": 2.277833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:47.182347112Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:50.346919-08:00" }, { "operation": "add_edge", - "rtt_ns": 925447, - "rtt_ms": 0.925447, + "rtt_ns": 2077084, + "rtt_ms": 2.077084, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.182369642Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.346923-08:00" }, { "operation": "add_edge", - "rtt_ns": 907957, - "rtt_ms": 0.907957, + "rtt_ns": 1809292, + "rtt_ms": 1.809292, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:47.182375272Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:50.347809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108216, - "rtt_ms": 1.108216, + "rtt_ns": 1198000, + "rtt_ms": 1.198, + "checkpoint": 0, + "vertex_from": "264", + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.347859-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2593625, + "rtt_ms": 2.593625, "checkpoint": 0, "vertex_from": "264", "vertex_to": "818", - "timestamp": "2025-11-27T01:23:47.182688601Z" + "timestamp": "2025-11-27T04:03:50.348608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026777, - "rtt_ms": 1.026777, + "rtt_ns": 1817500, + "rtt_ms": 1.8175, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.182843941Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.34862-08:00" }, { "operation": "add_edge", - "rtt_ns": 859498, - "rtt_ms": 0.859498, + "rtt_ns": 1880417, + "rtt_ms": 1.880417, "checkpoint": 0, "vertex_from": "264", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.182952911Z" + "timestamp": "2025-11-27T04:03:50.348682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157777, - "rtt_ms": 1.157777, + "rtt_ns": 1764041, + "rtt_ms": 1.764041, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.182975131Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.348685-08:00" }, { "operation": "add_edge", - "rtt_ns": 860048, - "rtt_ms": 0.860048, + "rtt_ns": 1870500, + "rtt_ms": 1.8705, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.182984061Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.348689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375606, - "rtt_ms": 1.375606, + "rtt_ns": 1907042, + "rtt_ms": 1.907042, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.183639489Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.348708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459576, - "rtt_ms": 1.459576, + "rtt_ns": 1867875, + "rtt_ms": 1.867875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.183669329Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.348775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028317, - "rtt_ms": 1.028317, + "rtt_ns": 1838166, + "rtt_ms": 1.838166, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.183873598Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:03:50.349649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199947, - "rtt_ms": 1.199947, + "rtt_ns": 2778792, + "rtt_ms": 2.778792, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.183889418Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:03:50.349703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523666, - "rtt_ms": 1.523666, + "rtt_ns": 1200834, + "rtt_ms": 1.200834, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:47.183900718Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:03:50.349891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531996, - "rtt_ms": 1.531996, + "rtt_ns": 1272292, + "rtt_ms": 1.272292, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:47.183902528Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:03:50.349894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566276, - "rtt_ms": 1.566276, + "rtt_ns": 2031125, + "rtt_ms": 2.031125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.183914608Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.349898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627825, - "rtt_ms": 1.627825, + "rtt_ns": 1241792, + "rtt_ms": 1.241792, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:47.184582056Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.349928-08:00" }, { "operation": "add_edge", - "rtt_ns": 931007, - "rtt_ms": 0.931007, + "rtt_ns": 1349500, + "rtt_ms": 1.3495, "checkpoint": 0, "vertex_from": "264", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.184601336Z" + "timestamp": "2025-11-27T04:03:50.350058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061897, - "rtt_ms": 1.061897, + "rtt_ns": 1516167, + "rtt_ms": 1.516167, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:47.184702416Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.350127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814974, - "rtt_ms": 1.814974, + "rtt_ns": 1484625, + "rtt_ms": 1.484625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:47.184800495Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:50.350168-08:00" }, { "operation": "add_edge", - "rtt_ns": 958397, - "rtt_ms": 0.958397, + "rtt_ns": 1402584, + "rtt_ms": 1.402584, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.184848625Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:03:50.35018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945374, - "rtt_ms": 1.945374, + "rtt_ns": 1157250, + "rtt_ms": 1.15725, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:47.184921705Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:03:50.351086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538086, - "rtt_ms": 1.538086, + "rtt_ns": 1578458, + "rtt_ms": 1.578458, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.185439634Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.351477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619485, - "rtt_ms": 1.619485, + "rtt_ns": 1617791, + "rtt_ms": 1.617791, "checkpoint": 0, "vertex_from": "264", "vertex_to": "451", - "timestamp": "2025-11-27T01:23:47.185536393Z" + "timestamp": "2025-11-27T04:03:50.351512-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1654585, - "rtt_ms": 1.654585, + "rtt_ns": 1640542, + "rtt_ms": 1.640542, "checkpoint": 0, "vertex_from": "335", - "timestamp": "2025-11-27T01:23:47.185558983Z" + "timestamp": "2025-11-27T04:03:50.351533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692435, - "rtt_ms": 1.692435, + "rtt_ns": 1487666, + "rtt_ms": 1.487666, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "290", - "timestamp": "2025-11-27T01:23:47.185567363Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:03:50.351547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463266, - "rtt_ms": 1.463266, + "rtt_ns": 1929959, + "rtt_ms": 1.929959, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.186385641Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.35158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800945, - "rtt_ms": 1.800945, + "rtt_ns": 1453125, + "rtt_ms": 1.453125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "274", - "timestamp": "2025-11-27T01:23:47.186403011Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:03:50.351582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006547, - "rtt_ms": 1.006547, + "rtt_ns": 1924125, + "rtt_ms": 1.924125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:47.186447331Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.351628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608376, - "rtt_ms": 1.608376, + "rtt_ns": 1475834, + "rtt_ms": 1.475834, "checkpoint": 0, "vertex_from": "264", "vertex_to": "587", - "timestamp": "2025-11-27T01:23:47.186457851Z" + "timestamp": "2025-11-27T04:03:50.351645-08:00" }, { "operation": "add_edge", - "rtt_ns": 968517, - "rtt_ms": 0.968517, + "rtt_ns": 1502833, + "rtt_ms": 1.502833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.18653793Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.351684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872924, - "rtt_ms": 1.872924, + "rtt_ns": 1287709, + "rtt_ms": 1.287709, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:47.1865762Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:03:50.352375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2110724, - "rtt_ms": 2.110724, + "rtt_ns": 1307500, + "rtt_ms": 1.3075, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.18669373Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.352821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892325, - "rtt_ms": 1.892325, + "rtt_ns": 1337542, + "rtt_ms": 1.337542, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:47.18669394Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.352919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765395, - "rtt_ms": 1.765395, + "rtt_ns": 1459041, + "rtt_ms": 1.459041, "checkpoint": 0, "vertex_from": "264", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.187302398Z" + "timestamp": "2025-11-27T04:03:50.352937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744175, - "rtt_ms": 1.744175, + "rtt_ns": 1406209, + "rtt_ms": 1.406209, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "335", - "timestamp": "2025-11-27T01:23:47.187303688Z" + "vertex_to": "798", + "timestamp": "2025-11-27T04:03:50.352953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494576, - "rtt_ms": 1.494576, + "rtt_ns": 1432959, + "rtt_ms": 1.432959, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.188034286Z" + "vertex_to": "317", + "timestamp": "2025-11-27T04:03:50.353018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356066, - "rtt_ms": 1.356066, + "rtt_ns": 1481583, + "rtt_ms": 1.481583, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "419", - "timestamp": "2025-11-27T01:23:47.188051126Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.353127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670975, - "rtt_ms": 1.670975, + "rtt_ns": 1529917, + "rtt_ms": 1.529917, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "317", - "timestamp": "2025-11-27T01:23:47.188119536Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:03:50.353159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773705, - "rtt_ms": 1.773705, + "rtt_ns": 1633334, + "rtt_ms": 1.633334, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.188177776Z" + "vertex_to": "335", + "timestamp": "2025-11-27T04:03:50.353167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807595, - "rtt_ms": 1.807595, + "rtt_ns": 1523625, + "rtt_ms": 1.523625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "798", - "timestamp": "2025-11-27T01:23:47.188195016Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.353208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736595, - "rtt_ms": 1.736595, + "rtt_ns": 1001167, + "rtt_ms": 1.001167, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.188313695Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:03:50.35416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688685, - "rtt_ms": 1.688685, + "rtt_ns": 1870917, + "rtt_ms": 1.870917, "checkpoint": 0, "vertex_from": "264", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:47.188383605Z" + "timestamp": "2025-11-27T04:03:50.354247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570046, - "rtt_ms": 1.570046, + "rtt_ns": 1333667, + "rtt_ms": 1.333667, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:47.188873884Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:03:50.354352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573636, - "rtt_ms": 1.573636, + "rtt_ns": 1560541, + "rtt_ms": 1.560541, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "618", - "timestamp": "2025-11-27T01:23:47.188878434Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:03:50.354515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2547232, - "rtt_ms": 2.547232, + "rtt_ns": 1730875, + "rtt_ms": 1.730875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:47.189005923Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:03:50.35465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434026, - "rtt_ms": 1.434026, + "rtt_ns": 1866917, + "rtt_ms": 1.866917, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "267", - "timestamp": "2025-11-27T01:23:47.189470092Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:03:50.354805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517196, - "rtt_ms": 1.517196, + "rtt_ns": 2011417, + "rtt_ms": 2.011417, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:47.189569582Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:03:50.355221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493126, - "rtt_ms": 1.493126, + "rtt_ns": 2707084, + "rtt_ms": 2.707084, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.189613662Z" + "vertex_to": "419", + "timestamp": "2025-11-27T04:03:50.355529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349756, - "rtt_ms": 1.349756, + "rtt_ns": 2612083, + "rtt_ms": 2.612083, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:47.189664891Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:50.35578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294976, - "rtt_ms": 1.294976, + "rtt_ns": 1528750, + "rtt_ms": 1.52875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:47.189679861Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:03:50.355882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369746, - "rtt_ms": 1.369746, + "rtt_ns": 1724709, + "rtt_ms": 1.724709, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:47.19024923Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:50.355886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272577, - "rtt_ms": 1.272577, + "rtt_ns": 2764583, + "rtt_ms": 2.764583, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:47.19027928Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.355893-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126243, - "rtt_ms": 2.126243, + "rtt_ns": 2488875, + "rtt_ms": 2.488875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "932", - "timestamp": "2025-11-27T01:23:47.190305319Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:50.356736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147343, - "rtt_ms": 2.147343, + "rtt_ns": 2234916, + "rtt_ms": 2.234916, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:47.190343439Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:03:50.357458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525435, - "rtt_ms": 1.525435, + "rtt_ns": 1607375, + "rtt_ms": 1.607375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:47.190400429Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:03:50.357495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572045, - "rtt_ms": 1.572045, + "rtt_ns": 3014000, + "rtt_ms": 3.014, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "314", - "timestamp": "2025-11-27T01:23:47.191187047Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.357665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638015, - "rtt_ms": 1.638015, + "rtt_ns": 2905958, + "rtt_ms": 2.905958, "checkpoint": 0, "vertex_from": "264", "vertex_to": "582", - "timestamp": "2025-11-27T01:23:47.191208757Z" + "timestamp": "2025-11-27T04:03:50.357712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544536, - "rtt_ms": 1.544536, + "rtt_ns": 1835000, + "rtt_ms": 1.835, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:47.191210367Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:03:50.357729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744135, - "rtt_ms": 1.744135, + "rtt_ns": 3240750, + "rtt_ms": 3.24075, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.191215497Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:50.357758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544316, - "rtt_ms": 1.544316, + "rtt_ns": 1891541, + "rtt_ms": 1.891541, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:47.191225157Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:03:50.357774-08:00" }, { "operation": "add_edge", - "rtt_ns": 982037, - "rtt_ms": 0.982037, + "rtt_ns": 2459791, + "rtt_ms": 2.459791, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "696", - "timestamp": "2025-11-27T01:23:47.191232447Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:03:50.357994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809364, - "rtt_ms": 1.809364, + "rtt_ns": 1390667, + "rtt_ms": 1.390667, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "710", - "timestamp": "2025-11-27T01:23:47.192089954Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.358128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790105, - "rtt_ms": 1.790105, + "rtt_ns": 2365167, + "rtt_ms": 2.365167, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.192134314Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.358146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785435, - "rtt_ms": 1.785435, + "rtt_ns": 978208, + "rtt_ms": 0.978208, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.192186644Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:03:50.358691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908045, - "rtt_ms": 1.908045, + "rtt_ns": 1397625, + "rtt_ms": 1.397625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:47.192214424Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.358894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629365, - "rtt_ms": 1.629365, + "rtt_ns": 1534625, + "rtt_ms": 1.534625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "363", - "timestamp": "2025-11-27T01:23:47.192839382Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.358996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731595, - "rtt_ms": 1.731595, + "rtt_ns": 1356125, + "rtt_ms": 1.356125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.192919922Z" + "vertex_to": "363", + "timestamp": "2025-11-27T04:03:50.359034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729395, - "rtt_ms": 1.729395, + "rtt_ns": 1360167, + "rtt_ms": 1.360167, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:47.192941252Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:03:50.359135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713895, - "rtt_ms": 1.713895, + "rtt_ns": 1443791, + "rtt_ms": 1.443791, "checkpoint": 0, "vertex_from": "264", "vertex_to": "286", - "timestamp": "2025-11-27T01:23:47.192941282Z" + "timestamp": "2025-11-27T04:03:50.359203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718195, - "rtt_ms": 1.718195, + "rtt_ns": 1540375, + "rtt_ms": 1.540375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "421", - "timestamp": "2025-11-27T01:23:47.192951362Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:03:50.35927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755335, - "rtt_ms": 1.755335, + "rtt_ns": 1831334, + "rtt_ms": 1.831334, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:47.192971812Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:03:50.35996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068737, - "rtt_ms": 1.068737, + "rtt_ns": 1946500, + "rtt_ms": 1.9465, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:47.193160051Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.360093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662665, - "rtt_ms": 1.662665, + "rtt_ns": 2120833, + "rtt_ms": 2.120833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "275", - "timestamp": "2025-11-27T01:23:47.193877869Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:03:50.360115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765155, - "rtt_ms": 1.765155, + "rtt_ns": 1314625, + "rtt_ms": 1.314625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "346", - "timestamp": "2025-11-27T01:23:47.193900529Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:50.360349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819965, - "rtt_ms": 1.819965, + "rtt_ns": 1505792, + "rtt_ms": 1.505792, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.194007629Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:03:50.360401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889155, - "rtt_ms": 1.889155, + "rtt_ns": 1777333, + "rtt_ms": 1.777333, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "342", - "timestamp": "2025-11-27T01:23:47.194730497Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:03:50.360471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851855, - "rtt_ms": 1.851855, + "rtt_ns": 1401250, + "rtt_ms": 1.40125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:47.194795467Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:03:50.360606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937724, - "rtt_ms": 1.937724, + "rtt_ns": 1653583, + "rtt_ms": 1.653583, "checkpoint": 0, "vertex_from": "264", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:47.194858756Z" + "timestamp": "2025-11-27T04:03:50.36065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986034, - "rtt_ms": 1.986034, + "rtt_ns": 1518167, + "rtt_ms": 1.518167, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:47.194929046Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:03:50.360656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968374, - "rtt_ms": 1.968374, + "rtt_ns": 1426125, + "rtt_ms": 1.426125, "checkpoint": 0, "vertex_from": "264", "vertex_to": "265", - "timestamp": "2025-11-27T01:23:47.194941416Z" + "timestamp": "2025-11-27T04:03:50.360697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797715, - "rtt_ms": 1.797715, + "rtt_ns": 981333, + "rtt_ms": 0.981333, "checkpoint": 0, "vertex_from": "264", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:47.194958706Z" + "timestamp": "2025-11-27T04:03:50.360942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016324, - "rtt_ms": 2.016324, + "rtt_ns": 1243375, + "rtt_ms": 1.243375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "611", - "timestamp": "2025-11-27T01:23:47.194969116Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:03:50.361715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091247, - "rtt_ms": 1.091247, + "rtt_ns": 1626250, + "rtt_ms": 1.62625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:47.194971126Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:03:50.361743-08:00" }, { "operation": "add_edge", - "rtt_ns": 2394333, - "rtt_ms": 2.394333, + "rtt_ns": 1684208, + "rtt_ms": 1.684208, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:47.196296822Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:50.36178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951704, - "rtt_ms": 1.951704, + "rtt_ns": 1590958, + "rtt_ms": 1.590958, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:47.196748991Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:50.361993-08:00" }, { "operation": "add_edge", - "rtt_ns": 2781122, - "rtt_ms": 2.781122, + "rtt_ns": 1490375, + "rtt_ms": 1.490375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:47.196789961Z" + "vertex_to": "909", + "timestamp": "2025-11-27T04:03:50.362188-08:00" }, { "operation": "add_edge", - "rtt_ns": 2280973, - "rtt_ms": 2.280973, + "rtt_ns": 1630375, + "rtt_ms": 1.630375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:47.19701304Z" + "vertex_to": "846", + "timestamp": "2025-11-27T04:03:50.362238-08:00" }, { "operation": "add_edge", - "rtt_ns": 2075254, - "rtt_ms": 2.075254, + "rtt_ns": 1585625, + "rtt_ms": 1.585625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "909", - "timestamp": "2025-11-27T01:23:47.19703612Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.362243-08:00" }, { "operation": "add_edge", - "rtt_ns": 2111544, - "rtt_ms": 2.111544, + "rtt_ns": 1899375, + "rtt_ms": 1.899375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:47.1970414Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:03:50.362251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132254, - "rtt_ms": 2.132254, + "rtt_ns": 1600625, + "rtt_ms": 1.600625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:47.19710251Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.362252-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177544, - "rtt_ms": 2.177544, + "rtt_ns": 1533791, + "rtt_ms": 1.533791, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.19712072Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:50.362477-08:00" }, { "operation": "add_edge", - "rtt_ns": 2308714, - "rtt_ms": 2.308714, + "rtt_ns": 1062291, + "rtt_ms": 1.062291, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "846", - "timestamp": "2025-11-27T01:23:47.19716904Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:03:50.363056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2411103, - "rtt_ms": 2.411103, + "rtt_ns": 1363167, + "rtt_ms": 1.363167, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "803", - "timestamp": "2025-11-27T01:23:47.197383319Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:50.363107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244366, - "rtt_ms": 1.244366, + "rtt_ns": 1490125, + "rtt_ms": 1.490125, "checkpoint": 0, "vertex_from": "264", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.198002467Z" + "timestamp": "2025-11-27T04:03:50.363271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723105, - "rtt_ms": 1.723105, + "rtt_ns": 1752542, + "rtt_ms": 1.752542, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:47.198021427Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:03:50.363469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458335, - "rtt_ms": 1.458335, + "rtt_ns": 1558292, + "rtt_ms": 1.558292, "checkpoint": 0, - "vertex_from": "264", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:47.198250186Z" + "vertex_from": "265", + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:50.363747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279276, - "rtt_ms": 1.279276, + "rtt_ns": 1586541, + "rtt_ms": 1.586541, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.198323696Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:50.36384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407056, - "rtt_ms": 1.407056, + "rtt_ns": 1621416, + "rtt_ms": 1.621416, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:47.198421166Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.363865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396936, - "rtt_ms": 1.396936, + "rtt_ns": 1709917, + "rtt_ms": 1.709917, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:47.198501826Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.363949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345366, - "rtt_ms": 1.345366, + "rtt_ns": 1564375, + "rtt_ms": 1.564375, "checkpoint": 0, "vertex_from": "265", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.198515516Z" + "timestamp": "2025-11-27T04:03:50.364044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427136, - "rtt_ms": 1.427136, + "rtt_ns": 1984333, + "rtt_ms": 1.984333, "checkpoint": 0, "vertex_from": "265", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.198549196Z" + "timestamp": "2025-11-27T04:03:50.364238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536125, - "rtt_ms": 1.536125, + "rtt_ns": 1214291, + "rtt_ms": 1.214291, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.198573085Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:03:50.364272-08:00" }, { "operation": "add_edge", - "rtt_ns": 618518, - "rtt_ms": 0.618518, + "rtt_ns": 1704500, + "rtt_ms": 1.7045, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.198640495Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:03:50.364814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270496, - "rtt_ms": 1.270496, + "rtt_ns": 994167, + "rtt_ms": 0.994167, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:47.198654815Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.36486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172107, - "rtt_ms": 1.172107, + "rtt_ns": 1251250, + "rtt_ms": 1.25125, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:47.199175894Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.364999-08:00" }, { "operation": "add_edge", - "rtt_ns": 894048, - "rtt_ms": 0.894048, + "rtt_ns": 1822292, + "rtt_ms": 1.822292, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.199218754Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.365096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064477, - "rtt_ms": 1.064477, + "rtt_ns": 1514667, + "rtt_ms": 1.514667, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.199315973Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.365561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216056, - "rtt_ms": 1.216056, + "rtt_ns": 1340959, + "rtt_ms": 1.340959, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:47.199732822Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:03:50.36558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735785, - "rtt_ms": 1.735785, + "rtt_ns": 2125833, + "rtt_ms": 2.125833, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.200238441Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.365596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832914, - "rtt_ms": 1.832914, + "rtt_ns": 1826042, + "rtt_ms": 1.826042, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.2003833Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:03:50.365667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986994, - "rtt_ms": 1.986994, + "rtt_ns": 1278083, + "rtt_ms": 1.278083, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:47.20041043Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:50.366139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913045, - "rtt_ms": 1.913045, + "rtt_ns": 1104334, + "rtt_ms": 1.104334, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:47.20048709Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:50.366202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546636, - "rtt_ms": 1.546636, + "rtt_ns": 2005708, + "rtt_ms": 2.005708, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:47.200863509Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:03:50.36628-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240414, - "rtt_ms": 2.240414, + "rtt_ns": 1496959, + "rtt_ms": 1.496959, "checkpoint": 0, "vertex_from": "265", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.200896159Z" + "timestamp": "2025-11-27T04:03:50.366312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275754, - "rtt_ms": 2.275754, + "rtt_ns": 1761667, + "rtt_ms": 1.761667, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "932", - "timestamp": "2025-11-27T01:23:47.200917099Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:50.366762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739895, - "rtt_ms": 1.739895, + "rtt_ns": 1249959, + "rtt_ms": 1.249959, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:47.200959539Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.366831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823034, - "rtt_ms": 1.823034, + "rtt_ns": 2880959, + "rtt_ms": 2.880959, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:47.201000478Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:50.36683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303296, - "rtt_ms": 1.303296, + "rtt_ns": 1278500, + "rtt_ms": 1.2785, "checkpoint": 0, "vertex_from": "265", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.201037808Z" + "timestamp": "2025-11-27T04:03:50.366841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112747, - "rtt_ms": 1.112747, + "rtt_ns": 1083333, + "rtt_ms": 1.083333, + "checkpoint": 0, + "vertex_from": "265", + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.367287-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1632375, + "rtt_ms": 1.632375, "checkpoint": 0, "vertex_from": "265", "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.201523817Z" + "timestamp": "2025-11-27T04:03:50.3673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163067, - "rtt_ms": 1.163067, + "rtt_ns": 1251708, + "rtt_ms": 1.251708, "checkpoint": 0, "vertex_from": "265", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:47.201650887Z" + "timestamp": "2025-11-27T04:03:50.367393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492465, - "rtt_ms": 1.492465, + "rtt_ns": 1829375, + "rtt_ms": 1.829375, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.201732466Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.367426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362336, - "rtt_ms": 1.362336, + "rtt_ns": 1255000, + "rtt_ms": 1.255, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.201746946Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.368088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797895, - "rtt_ms": 1.797895, + "rtt_ns": 1825000, + "rtt_ms": 1.825, "checkpoint": 0, "vertex_from": "265", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:47.202694814Z" + "timestamp": "2025-11-27T04:03:50.368106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771445, - "rtt_ms": 1.771445, + "rtt_ns": 1359958, + "rtt_ms": 1.359958, "checkpoint": 0, "vertex_from": "265", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.202731884Z" + "timestamp": "2025-11-27T04:03:50.368124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101474, - "rtt_ms": 2.101474, + "rtt_ns": 1835833, + "rtt_ms": 1.835833, "checkpoint": 0, "vertex_from": "265", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.203019213Z" + "timestamp": "2025-11-27T04:03:50.368148-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056305, - "rtt_ms": 2.056305, + "rtt_ns": 1689125, + "rtt_ms": 1.689125, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:47.203059533Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:50.368531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320037, - "rtt_ms": 1.320037, + "rtt_ns": 1762459, + "rtt_ms": 1.762459, "checkpoint": 0, - "vertex_from": "266", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.203068383Z" + "vertex_from": "265", + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.368594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441746, - "rtt_ms": 1.441746, + "rtt_ns": 1654333, + "rtt_ms": 1.654333, "checkpoint": 0, "vertex_from": "266", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.203094973Z" + "timestamp": "2025-11-27T04:03:50.368942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400077, - "rtt_ms": 1.400077, + "rtt_ns": 1920917, + "rtt_ms": 1.920917, "checkpoint": 0, "vertex_from": "266", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.203134373Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2313653, - "rtt_ms": 2.313653, - "checkpoint": 0, - "vertex_from": "265", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.203178052Z" + "timestamp": "2025-11-27T04:03:50.369222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851315, - "rtt_ms": 1.851315, - "checkpoint": 0, - "vertex_from": "265", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:47.203376922Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2374404, - "rtt_ms": 2.374404, - "checkpoint": 0, - "vertex_from": "265", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:47.203413682Z" - }, - { - "operation": "add_edge", - "rtt_ns": 794687, - "rtt_ms": 0.794687, + "rtt_ns": 2050333, + "rtt_ms": 2.050333, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:47.203527571Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.369444-08:00" }, { "operation": "add_edge", - "rtt_ns": 880347, - "rtt_ms": 0.880347, + "rtt_ns": 1398958, + "rtt_ms": 1.398958, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.203577001Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.369548-08:00" }, { "operation": "add_edge", - "rtt_ns": 852557, - "rtt_ms": 0.852557, + "rtt_ns": 2373708, + "rtt_ms": 2.373708, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "807", - "timestamp": "2025-11-27T01:23:47.20387323Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.369801-08:00" }, { "operation": "add_edge", - "rtt_ns": 834077, - "rtt_ms": 0.834077, + "rtt_ns": 1443833, + "rtt_ms": 1.443833, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.20390383Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:50.369976-08:00" }, { "operation": "add_edge", - "rtt_ns": 885727, - "rtt_ms": 0.885727, + "rtt_ns": 2027542, + "rtt_ms": 2.027542, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:47.20394609Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:50.370116-08:00" }, { "operation": "add_edge", - "rtt_ns": 809578, - "rtt_ms": 0.809578, + "rtt_ns": 2387250, + "rtt_ms": 2.38725, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "559", - "timestamp": "2025-11-27T01:23:47.20398967Z" + "vertex_to": "807", + "timestamp": "2025-11-27T04:03:50.370494-08:00" }, { "operation": "add_edge", - "rtt_ns": 926957, - "rtt_ms": 0.926957, + "rtt_ns": 1716084, + "rtt_ms": 1.716084, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:47.204023Z" + "vertex_to": "559", + "timestamp": "2025-11-27T04:03:50.370659-08:00" }, { "operation": "add_edge", - "rtt_ns": 955257, - "rtt_ms": 0.955257, + "rtt_ns": 2067875, + "rtt_ms": 2.067875, "checkpoint": 0, "vertex_from": "266", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.20409203Z" + "timestamp": "2025-11-27T04:03:50.370663-08:00" }, { "operation": "add_edge", - "rtt_ns": 754578, - "rtt_ms": 0.754578, + "rtt_ns": 3266000, + "rtt_ms": 3.266, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.20416974Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:03:50.371391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261916, - "rtt_ms": 1.261916, + "rtt_ns": 2905000, + "rtt_ms": 2.905, "checkpoint": 0, "vertex_from": "266", "vertex_to": "314", - "timestamp": "2025-11-27T01:23:47.204640818Z" + "timestamp": "2025-11-27T04:03:50.37213-08:00" }, { "operation": "add_edge", - "rtt_ns": 925388, - "rtt_ms": 0.925388, + "rtt_ns": 2699833, + "rtt_ms": 2.699833, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:47.204800438Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.372145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320106, - "rtt_ms": 1.320106, + "rtt_ns": 1516042, + "rtt_ms": 1.516042, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:47.204906057Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.372176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416636, - "rtt_ms": 1.416636, + "rtt_ns": 2655084, + "rtt_ms": 2.655084, "checkpoint": 0, "vertex_from": "266", "vertex_to": "527", - "timestamp": "2025-11-27T01:23:47.204945617Z" + "timestamp": "2025-11-27T04:03:50.372205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044587, - "rtt_ms": 1.044587, + "rtt_ns": 2034208, + "rtt_ms": 2.034208, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "297", - "timestamp": "2025-11-27T01:23:47.204991627Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:03:50.372698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574175, - "rtt_ms": 1.574175, + "rtt_ns": 2907833, + "rtt_ms": 2.907833, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:47.205598725Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.372709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524765, - "rtt_ms": 1.524765, + "rtt_ns": 1484458, + "rtt_ms": 1.484458, "checkpoint": 0, "vertex_from": "266", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.205619565Z" + "timestamp": "2025-11-27T04:03:50.372878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668525, - "rtt_ms": 1.668525, + "rtt_ns": 2411916, + "rtt_ms": 2.411916, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.205660785Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:03:50.372906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801835, - "rtt_ms": 1.801835, + "rtt_ns": 2792375, + "rtt_ms": 2.792375, "checkpoint": 0, "vertex_from": "266", "vertex_to": "339", - "timestamp": "2025-11-27T01:23:47.205706965Z" + "timestamp": "2025-11-27T04:03:50.37291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443816, - "rtt_ms": 1.443816, + "rtt_ns": 3064542, + "rtt_ms": 3.064542, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:47.206437183Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:03:50.373042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639985, - "rtt_ms": 1.639985, + "rtt_ns": 1362375, + "rtt_ms": 1.362375, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.206589292Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.373494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707425, - "rtt_ms": 1.707425, + "rtt_ns": 1636042, + "rtt_ms": 1.636042, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "742", - "timestamp": "2025-11-27T01:23:47.206615762Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:03:50.373782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979564, - "rtt_ms": 1.979564, + "rtt_ns": 1770667, + "rtt_ms": 1.770667, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:47.206622762Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:03:50.373947-08:00" }, { "operation": "add_edge", - "rtt_ns": 2453502, - "rtt_ms": 2.453502, + "rtt_ns": 1871375, + "rtt_ms": 1.871375, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.206626412Z" + "vertex_to": "742", + "timestamp": "2025-11-27T04:03:50.374077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499236, - "rtt_ms": 1.499236, + "rtt_ns": 1317625, + "rtt_ms": 1.317625, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:47.207099831Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.374361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2311463, - "rtt_ms": 2.311463, + "rtt_ns": 1782542, + "rtt_ms": 1.782542, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:47.207115641Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:03:50.37469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626115, - "rtt_ms": 1.626115, + "rtt_ns": 1396000, + "rtt_ms": 1.396, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "300", - "timestamp": "2025-11-27T01:23:47.20724739Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.374891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577345, - "rtt_ms": 1.577345, + "rtt_ns": 2281375, + "rtt_ms": 2.281375, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.20728598Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:03:50.374992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637235, - "rtt_ms": 1.637235, + "rtt_ns": 1179500, + "rtt_ms": 1.1795, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.20730016Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.375259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761775, - "rtt_ms": 1.761775, + "rtt_ns": 1311583, + "rtt_ms": 1.311583, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:47.208200448Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.37526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607836, - "rtt_ms": 1.607836, + "rtt_ns": 2617333, + "rtt_ms": 2.617333, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:47.208224868Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.375317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603686, - "rtt_ms": 1.603686, + "rtt_ns": 1106208, + "rtt_ms": 1.106208, "checkpoint": 0, - "vertex_from": "266", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.208228318Z" + "vertex_from": "267", + "vertex_to": "778", + "timestamp": "2025-11-27T04:03:50.375468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137266, - "rtt_ms": 1.137266, + "rtt_ns": 895584, + "rtt_ms": 0.895584, "checkpoint": 0, "vertex_from": "267", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.208240137Z" + "timestamp": "2025-11-27T04:03:50.375586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152226, - "rtt_ms": 1.152226, + "rtt_ns": 2814542, + "rtt_ms": 2.814542, "checkpoint": 0, - "vertex_from": "267", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:47.208269647Z" + "vertex_from": "266", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.375725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703755, - "rtt_ms": 1.703755, + "rtt_ns": 3443959, + "rtt_ms": 3.443959, "checkpoint": 0, - "vertex_from": "267", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:47.208332907Z" + "vertex_from": "266", + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:50.376325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509356, - "rtt_ms": 1.509356, + "rtt_ns": 2290208, + "rtt_ms": 2.290208, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:47.208796156Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:03:50.377283-08:00" }, { "operation": "add_edge", - "rtt_ns": 2310794, - "rtt_ms": 2.310794, + "rtt_ns": 1705917, + "rtt_ms": 1.705917, "checkpoint": 0, - "vertex_from": "266", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.208901726Z" + "vertex_from": "267", + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.377294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686216, - "rtt_ms": 1.686216, + "rtt_ns": 2463042, + "rtt_ms": 2.463042, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:47.208935766Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.377355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667285, - "rtt_ms": 1.667285, + "rtt_ns": 1893334, + "rtt_ms": 1.893334, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.208968825Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.377364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484475, - "rtt_ms": 1.484475, + "rtt_ns": 2073125, + "rtt_ms": 2.073125, "checkpoint": 0, "vertex_from": "267", "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.209686843Z" + "timestamp": "2025-11-27T04:03:50.377401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588575, - "rtt_ms": 1.588575, + "rtt_ns": 2145125, + "rtt_ms": 2.145125, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.209815803Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.377406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615646, - "rtt_ms": 1.615646, + "rtt_ns": 1145417, + "rtt_ms": 1.145417, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.209845683Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.377473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369527, - "rtt_ms": 1.369527, + "rtt_ns": 2234750, + "rtt_ms": 2.23475, "checkpoint": 0, - "vertex_from": "268", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.210344172Z" + "vertex_from": "267", + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:50.37751-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160794, - "rtt_ms": 2.160794, + "rtt_ns": 1806500, + "rtt_ms": 1.8065, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.210432131Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.377533-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115204, - "rtt_ms": 2.115204, + "rtt_ns": 4331625, + "rtt_ms": 4.331625, "checkpoint": 0, - "vertex_from": "268", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:47.210450021Z" + "vertex_from": "266", + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.378116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602395, - "rtt_ms": 1.602395, + "rtt_ns": 1128542, + "rtt_ms": 1.128542, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:47.210505861Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.378531-08:00" }, { "operation": "add_edge", - "rtt_ns": 2290794, - "rtt_ms": 2.290794, + "rtt_ns": 1318542, + "rtt_ms": 1.318542, "checkpoint": 0, - "vertex_from": "267", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.210534441Z" + "vertex_from": "268", + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:50.378674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759215, - "rtt_ms": 1.759215, + "rtt_ns": 2473917, + "rtt_ms": 2.473917, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.210556631Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:03:50.379759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739565, - "rtt_ms": 1.739565, + "rtt_ns": 2487750, + "rtt_ms": 2.48775, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:47.210677021Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.379784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674966, - "rtt_ms": 1.674966, + "rtt_ns": 2456458, + "rtt_ms": 2.456458, "checkpoint": 0, "vertex_from": "268", "vertex_to": "664", - "timestamp": "2025-11-27T01:23:47.211363049Z" + "timestamp": "2025-11-27T04:03:50.379865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567816, - "rtt_ms": 1.567816, + "rtt_ns": 2630584, + "rtt_ms": 2.630584, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.211385689Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:50.379996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613175, - "rtt_ms": 1.613175, + "rtt_ns": 2604917, + "rtt_ms": 2.604917, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.211460008Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.380079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048037, - "rtt_ms": 1.048037, + "rtt_ns": 2674250, + "rtt_ms": 2.67425, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.211481058Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.380208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158466, - "rtt_ms": 1.158466, + "rtt_ns": 2908875, + "rtt_ms": 2.908875, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.211503758Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.380421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022597, - "rtt_ms": 1.022597, + "rtt_ns": 1909166, + "rtt_ms": 1.909166, "checkpoint": 0, "vertex_from": "268", "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.211530388Z" + "timestamp": "2025-11-27T04:03:50.380584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159567, - "rtt_ms": 1.159567, + "rtt_ns": 2522292, + "rtt_ms": 2.522292, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.211718838Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.380643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198307, - "rtt_ms": 1.198307, + "rtt_ns": 1745542, + "rtt_ms": 1.745542, "checkpoint": 0, "vertex_from": "268", "vertex_to": "811", - "timestamp": "2025-11-27T01:23:47.211734398Z" + "timestamp": "2025-11-27T04:03:50.381505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714875, - "rtt_ms": 1.714875, + "rtt_ns": 1738833, + "rtt_ms": 1.738833, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:47.212165696Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.381524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341656, - "rtt_ms": 1.341656, + "rtt_ns": 1463167, + "rtt_ms": 1.463167, "checkpoint": 0, "vertex_from": "268", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.212729385Z" + "timestamp": "2025-11-27T04:03:50.381544-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177953, - "rtt_ms": 2.177953, + "rtt_ns": 1369959, + "rtt_ms": 1.369959, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "682", - "timestamp": "2025-11-27T01:23:47.212856704Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.38158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458885, - "rtt_ms": 1.458885, + "rtt_ns": 3051541, + "rtt_ms": 3.051541, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.213194623Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:03:50.381584-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003045, - "rtt_ms": 2.003045, + "rtt_ns": 1784208, + "rtt_ms": 1.784208, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.213464832Z" + "vertex_to": "682", + "timestamp": "2025-11-27T04:03:50.38165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334586, - "rtt_ms": 1.334586, + "rtt_ns": 1747334, + "rtt_ms": 1.747334, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:47.213502942Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.382169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2008784, - "rtt_ms": 2.008784, + "rtt_ns": 1573834, + "rtt_ms": 1.573834, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.213513992Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.382218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883854, - "rtt_ms": 1.883854, + "rtt_ns": 1660709, + "rtt_ms": 1.660709, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.213604052Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.382246-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102484, - "rtt_ms": 2.102484, + "rtt_ns": 2274542, + "rtt_ms": 2.274542, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.213635142Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:03:50.382274-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176504, - "rtt_ms": 2.176504, + "rtt_ns": 1296583, + "rtt_ms": 1.296583, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.213658662Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:03:50.382841-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337993, - "rtt_ms": 2.337993, + "rtt_ns": 1493375, + "rtt_ms": 1.493375, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "666", - "timestamp": "2025-11-27T01:23:47.213702492Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757594, - "rtt_ms": 1.757594, + "rtt_ns": 1503583, + "rtt_ms": 1.503583, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:47.214488579Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.383028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315896, - "rtt_ms": 1.315896, + "rtt_ns": 1482333, + "rtt_ms": 1.482333, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:47.214513189Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.383068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052677, - "rtt_ms": 1.052677, + "rtt_ns": 1499458, + "rtt_ms": 1.499458, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:47.214519319Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:50.38315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664695, - "rtt_ms": 1.664695, + "rtt_ns": 1278083, + "rtt_ms": 1.278083, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.214522719Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:03:50.383553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324656, - "rtt_ms": 1.324656, + "rtt_ns": 1461708, + "rtt_ms": 1.461708, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.214828488Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:50.383632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167266, - "rtt_ms": 1.167266, + "rtt_ns": 1096583, + "rtt_ms": 1.096583, "checkpoint": 0, "vertex_from": "268", "vertex_to": "588", - "timestamp": "2025-11-27T01:23:47.214871408Z" + "timestamp": "2025-11-27T04:03:50.384125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249116, - "rtt_ms": 1.249116, + "rtt_ns": 2011542, + "rtt_ms": 2.011542, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.214909278Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.38423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734145, - "rtt_ms": 1.734145, + "rtt_ns": 1249042, + "rtt_ms": 1.249042, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:47.215370367Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.384249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058267, - "rtt_ms": 1.058267, + "rtt_ns": 1217042, + "rtt_ms": 1.217042, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:47.215583096Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.384288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111467, - "rtt_ms": 1.111467, + "rtt_ns": 1510708, + "rtt_ms": 1.510708, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:47.215627606Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:03:50.384353-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066584, - "rtt_ms": 2.066584, + "rtt_ns": 2819000, + "rtt_ms": 2.819, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:47.215672286Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:03:50.384401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164507, - "rtt_ms": 1.164507, + "rtt_ns": 2154500, + "rtt_ms": 2.1545, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.215685866Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:03:50.384401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2293944, - "rtt_ms": 2.293944, + "rtt_ns": 1278417, + "rtt_ms": 1.278417, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:47.215809766Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:03:50.384431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354636, - "rtt_ms": 1.354636, + "rtt_ns": 2026792, + "rtt_ms": 2.026792, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.215844845Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.38566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664135, - "rtt_ms": 1.664135, + "rtt_ns": 1435458, + "rtt_ms": 1.435458, "checkpoint": 0, "vertex_from": "269", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:47.216575223Z" + "timestamp": "2025-11-27T04:03:50.385686-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2231250, + "rtt_ms": 2.23125, + "checkpoint": 0, + "vertex_from": "268", + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.385785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848645, - "rtt_ms": 1.848645, + "rtt_ns": 1718750, + "rtt_ms": 1.71875, "checkpoint": 0, "vertex_from": "268", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:47.216681163Z" + "timestamp": "2025-11-27T04:03:50.385845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048367, - "rtt_ms": 1.048367, + "rtt_ns": 1669459, + "rtt_ms": 1.669459, "checkpoint": 0, - "vertex_from": "269", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.216731263Z" + "vertex_from": "268", + "vertex_to": "752", + "timestamp": "2025-11-27T04:03:50.385901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151417, - "rtt_ms": 1.151417, + "rtt_ns": 1653583, + "rtt_ms": 1.653583, "checkpoint": 0, "vertex_from": "269", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.216737173Z" + "timestamp": "2025-11-27T04:03:50.386007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383186, - "rtt_ms": 1.383186, + "rtt_ns": 1701000, + "rtt_ms": 1.701, "checkpoint": 0, "vertex_from": "269", - "vertex_to": "272", - "timestamp": "2025-11-27T01:23:47.216757223Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.386103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910035, - "rtt_ms": 1.910035, + "rtt_ns": 1716375, + "rtt_ms": 1.716375, "checkpoint": 0, "vertex_from": "269", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:47.217598891Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:03:50.386118-08:00" }, { "operation": "add_edge", - "rtt_ns": 2801302, - "rtt_ms": 2.801302, + "rtt_ns": 1946708, + "rtt_ms": 1.946708, "checkpoint": 0, - "vertex_from": "268", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:47.21767428Z" + "vertex_from": "269", + "vertex_to": "272", + "timestamp": "2025-11-27T04:03:50.386235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854235, - "rtt_ms": 1.854235, + "rtt_ns": 1815833, + "rtt_ms": 1.815833, "checkpoint": 0, "vertex_from": "269", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.21770062Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:03:50.386248-08:00" }, { "operation": "add_edge", - "rtt_ns": 2078174, - "rtt_ms": 2.078174, + "rtt_ns": 1429958, + "rtt_ms": 1.429958, "checkpoint": 0, - "vertex_from": "269", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:47.2177076Z" + "vertex_from": "270", + "vertex_to": "802", + "timestamp": "2025-11-27T04:03:50.387332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910354, - "rtt_ms": 1.910354, + "rtt_ns": 1660542, + "rtt_ms": 1.660542, "checkpoint": 0, "vertex_from": "269", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:47.21772247Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.387347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864295, - "rtt_ms": 1.864295, + "rtt_ns": 1578541, + "rtt_ms": 1.578541, "checkpoint": 0, "vertex_from": "269", "vertex_to": "849", - "timestamp": "2025-11-27T01:23:47.218441158Z" + "timestamp": "2025-11-27T04:03:50.387364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702805, - "rtt_ms": 1.702805, + "rtt_ns": 1262500, + "rtt_ms": 1.2625, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.218441958Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.387382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768585, - "rtt_ms": 1.768585, + "rtt_ns": 1180625, + "rtt_ms": 1.180625, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.218451828Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.38743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721235, - "rtt_ms": 1.721235, + "rtt_ns": 1664166, + "rtt_ms": 1.664166, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:47.218453948Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.387513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609145, - "rtt_ms": 1.609145, + "rtt_ns": 1505416, + "rtt_ms": 1.505416, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.219209606Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:03:50.387743-08:00" }, { "operation": "add_edge", - "rtt_ns": 2458593, - "rtt_ms": 2.458593, + "rtt_ns": 2128209, + "rtt_ms": 2.128209, "checkpoint": 0, - "vertex_from": "270", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.219219136Z" + "vertex_from": "269", + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:50.387789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628696, - "rtt_ms": 1.628696, + "rtt_ns": 1993000, + "rtt_ms": 1.993, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "946", - "timestamp": "2025-11-27T01:23:47.219305956Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.388001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673365, - "rtt_ms": 1.673365, + "rtt_ns": 1900458, + "rtt_ms": 1.900458, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.219399305Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.388004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718975, - "rtt_ms": 1.718975, + "rtt_ns": 1666833, + "rtt_ms": 1.666833, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.219429485Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:03:50.389032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083247, - "rtt_ms": 1.083247, + "rtt_ns": 1607125, + "rtt_ms": 1.607125, "checkpoint": 0, "vertex_from": "271", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.219538835Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.389038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862635, - "rtt_ms": 1.862635, + "rtt_ns": 1717833, + "rtt_ms": 1.717833, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.219564645Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.38905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369986, - "rtt_ms": 1.369986, + "rtt_ns": 1263291, + "rtt_ms": 1.263291, "checkpoint": 0, - "vertex_from": "270", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.219813064Z" + "vertex_from": "271", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.389053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798835, - "rtt_ms": 1.798835, + "rtt_ns": 1383750, + "rtt_ms": 1.38375, "checkpoint": 0, "vertex_from": "271", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.220252533Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:03:50.389128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852585, - "rtt_ms": 1.852585, + "rtt_ns": 1816584, + "rtt_ms": 1.816584, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:47.220295323Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.389164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539836, - "rtt_ms": 1.539836, + "rtt_ns": 1870375, + "rtt_ms": 1.870375, "checkpoint": 0, - "vertex_from": "271", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:47.220752522Z" + "vertex_from": "270", + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.389253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514955, - "rtt_ms": 1.514955, + "rtt_ns": 1941500, + "rtt_ms": 1.9415, "checkpoint": 0, - "vertex_from": "272", - "vertex_to": "739", - "timestamp": "2025-11-27T01:23:47.220822771Z" + "vertex_from": "271", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.389457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444416, - "rtt_ms": 1.444416, + "rtt_ns": 2453708, + "rtt_ms": 2.453708, "checkpoint": 0, "vertex_from": "272", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.220845071Z" + "timestamp": "2025-11-27T04:03:50.390459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647025, - "rtt_ms": 1.647025, + "rtt_ns": 2515333, + "rtt_ms": 2.515333, "checkpoint": 0, - "vertex_from": "271", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.220872241Z" + "vertex_from": "272", + "vertex_to": "739", + "timestamp": "2025-11-27T04:03:50.390517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807965, - "rtt_ms": 1.807965, + "rtt_ns": 1569250, + "rtt_ms": 1.56925, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:47.22137442Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.390608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073355, - "rtt_ms": 2.073355, + "rtt_ns": 1591333, + "rtt_ms": 1.591333, "checkpoint": 0, "vertex_from": "272", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.22150418Z" + "timestamp": "2025-11-27T04:03:50.390624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055504, - "rtt_ms": 2.055504, + "rtt_ns": 1571667, + "rtt_ms": 1.571667, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.221595299Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.390627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313706, - "rtt_ms": 1.313706, + "rtt_ns": 1217917, + "rtt_ms": 1.217917, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.221609819Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:03:50.390677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510616, - "rtt_ms": 1.510616, + "rtt_ns": 1524250, + "rtt_ms": 1.52425, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.221764039Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.390689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964175, - "rtt_ms": 1.964175, + "rtt_ns": 1492083, + "rtt_ms": 1.492083, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.221778489Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.390746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587746, - "rtt_ms": 1.587746, + "rtt_ns": 1650834, + "rtt_ms": 1.650834, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "790", - "timestamp": "2025-11-27T01:23:47.222461347Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.39078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621486, - "rtt_ms": 1.621486, + "rtt_ns": 1741875, + "rtt_ms": 1.741875, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:47.222467747Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:50.390793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715695, - "rtt_ms": 1.715695, + "rtt_ns": 1486708, + "rtt_ms": 1.486708, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.222469057Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.391946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118517, - "rtt_ms": 1.118517, + "rtt_ns": 1469667, + "rtt_ms": 1.469667, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "539", - "timestamp": "2025-11-27T01:23:47.222494367Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:03:50.391987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679656, - "rtt_ms": 1.679656, + "rtt_ns": 1440792, + "rtt_ms": 1.440792, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:47.222503287Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:03:50.392068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272636, - "rtt_ms": 1.272636, + "rtt_ns": 1302208, + "rtt_ms": 1.302208, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.222778186Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.392082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269837, - "rtt_ms": 1.269837, + "rtt_ns": 1398542, + "rtt_ms": 1.398542, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:47.222881216Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.392089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230116, - "rtt_ms": 1.230116, + "rtt_ns": 1351792, + "rtt_ms": 1.351792, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.222995235Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.392098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406286, - "rtt_ms": 1.406286, + "rtt_ns": 1479542, + "rtt_ms": 1.479542, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:47.223002975Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.392104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232056, - "rtt_ms": 1.232056, + "rtt_ns": 1536916, + "rtt_ms": 1.536916, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.223011795Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:03:50.392215-08:00" }, { "operation": "add_edge", - "rtt_ns": 714228, - "rtt_ms": 0.714228, + "rtt_ns": 1671291, + "rtt_ms": 1.671291, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.223596304Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:03:50.39228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185957, - "rtt_ms": 1.185957, + "rtt_ns": 1490041, + "rtt_ms": 1.490041, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.223648414Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:03:50.392284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201426, - "rtt_ms": 1.201426, + "rtt_ns": 1143500, + "rtt_ms": 1.1435, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "278", - "timestamp": "2025-11-27T01:23:47.223705893Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.393091-08:00" }, { "operation": "add_edge", - "rtt_ns": 927667, - "rtt_ms": 0.927667, + "rtt_ns": 1122250, + "rtt_ms": 1.12225, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:47.223707533Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:03:50.393192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361446, - "rtt_ms": 1.361446, + "rtt_ns": 1081000, + "rtt_ms": 1.081, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:47.223831753Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.393362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380986, - "rtt_ms": 1.380986, + "rtt_ns": 1404042, + "rtt_ms": 1.404042, "checkpoint": 0, "vertex_from": "272", "vertex_to": "610", - "timestamp": "2025-11-27T01:23:47.223877273Z" + "timestamp": "2025-11-27T04:03:50.393392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437436, - "rtt_ms": 1.437436, + "rtt_ns": 1401000, + "rtt_ms": 1.401, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.223907693Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:03:50.393506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544516, - "rtt_ms": 1.544516, + "rtt_ns": 1547458, + "rtt_ms": 1.547458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:47.224557131Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:03:50.393631-08:00" }, { "operation": "add_edge", - "rtt_ns": 989977, - "rtt_ms": 0.989977, + "rtt_ns": 1537000, + "rtt_ms": 1.537, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:47.22469699Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:03:50.393822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755665, - "rtt_ms": 1.755665, + "rtt_ns": 1741500, + "rtt_ms": 1.7415, "checkpoint": 0, "vertex_from": "272", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:47.22475306Z" + "timestamp": "2025-11-27T04:03:50.39384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756825, - "rtt_ms": 1.756825, + "rtt_ns": 1644875, + "rtt_ms": 1.644875, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:47.22476206Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:03:50.393861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190926, - "rtt_ms": 1.190926, + "rtt_ns": 1773500, + "rtt_ms": 1.7735, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.2247881Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.393863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501716, - "rtt_ms": 1.501716, + "rtt_ns": 1477000, + "rtt_ms": 1.477, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:47.225210649Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:50.39484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443426, - "rtt_ms": 1.443426, + "rtt_ns": 1971833, + "rtt_ms": 1.971833, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:47.225277529Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:03:50.395063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417146, - "rtt_ms": 1.417146, + "rtt_ns": 1984000, + "rtt_ms": 1.984, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:47.225325859Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:03:50.395179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709924, - "rtt_ms": 1.709924, + "rtt_ns": 1620166, + "rtt_ms": 1.620166, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:47.225361248Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:50.395252-08:00" }, { "operation": "add_edge", - "rtt_ns": 838707, - "rtt_ms": 0.838707, + "rtt_ns": 1860916, + "rtt_ms": 1.860916, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:47.225396808Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.395254-08:00" }, { "operation": "add_edge", - "rtt_ns": 739658, - "rtt_ms": 0.739658, + "rtt_ns": 1852125, + "rtt_ms": 1.852125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:47.225438518Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:03:50.395359-08:00" }, { "operation": "add_edge", - "rtt_ns": 735208, - "rtt_ms": 0.735208, + "rtt_ns": 1932917, + "rtt_ms": 1.932917, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:47.225498848Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:03:50.395798-08:00" }, { "operation": "add_edge", - "rtt_ns": 759558, - "rtt_ms": 0.759558, + "rtt_ns": 2073459, + "rtt_ms": 2.073459, "checkpoint": 0, "vertex_from": "272", "vertex_to": "408", - "timestamp": "2025-11-27T01:23:47.225513998Z" + "timestamp": "2025-11-27T04:03:50.395914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039384, - "rtt_ms": 2.039384, + "rtt_ns": 2093750, + "rtt_ms": 2.09375, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.225917927Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:03:50.395916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403986, - "rtt_ms": 1.403986, + "rtt_ns": 2085125, + "rtt_ms": 2.085125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "273", - "timestamp": "2025-11-27T01:23:47.226193796Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:03:50.395946-08:00" }, { "operation": "add_edge", - "rtt_ns": 956557, - "rtt_ms": 0.956557, + "rtt_ns": 1246125, + "rtt_ms": 1.246125, "checkpoint": 0, "vertex_from": "272", "vertex_to": "519", - "timestamp": "2025-11-27T01:23:47.226235286Z" + "timestamp": "2025-11-27T04:03:50.39631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048717, - "rtt_ms": 1.048717, + "rtt_ns": 1494542, + "rtt_ms": 1.494542, "checkpoint": 0, "vertex_from": "272", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.226260906Z" + "timestamp": "2025-11-27T04:03:50.396335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922125, - "rtt_ms": 1.922125, + "rtt_ns": 1690583, + "rtt_ms": 1.690583, "checkpoint": 0, "vertex_from": "272", "vertex_to": "281", - "timestamp": "2025-11-27T01:23:47.227284653Z" + "timestamp": "2025-11-27T04:03:50.396944-08:00" }, { "operation": "add_edge", - "rtt_ns": 2821511, - "rtt_ms": 2.821511, + "rtt_ns": 1763500, + "rtt_ms": 1.7635, "checkpoint": 0, "vertex_from": "272", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:47.22814857Z" + "timestamp": "2025-11-27T04:03:50.396945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782112, - "rtt_ms": 2.782112, + "rtt_ns": 1935792, + "rtt_ms": 1.935792, "checkpoint": 0, "vertex_from": "272", "vertex_to": "368", - "timestamp": "2025-11-27T01:23:47.22822146Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2724852, - "rtt_ms": 2.724852, - "checkpoint": 0, - "vertex_from": "272", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.22822436Z" + "timestamp": "2025-11-27T04:03:50.397296-08:00" }, { "operation": "add_edge", - "rtt_ns": 2857252, - "rtt_ms": 2.857252, + "rtt_ns": 2106167, + "rtt_ms": 2.106167, "checkpoint": 0, "vertex_from": "272", "vertex_to": "583", - "timestamp": "2025-11-27T01:23:47.22825508Z" + "timestamp": "2025-11-27T04:03:50.397362-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391813, - "rtt_ms": 2.391813, + "rtt_ns": 1448542, + "rtt_ms": 1.448542, "checkpoint": 0, "vertex_from": "272", "vertex_to": "727", - "timestamp": "2025-11-27T01:23:47.2283111Z" + "timestamp": "2025-11-27T04:03:50.397366-08:00" }, { "operation": "add_edge", - "rtt_ns": 2823792, - "rtt_ms": 2.823792, + "rtt_ns": 1594458, + "rtt_ms": 1.594458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:47.22833894Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.397393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187924, - "rtt_ms": 2.187924, + "rtt_ns": 1652167, + "rtt_ms": 1.652167, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:47.22838273Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:03:50.397567-08:00" }, { "operation": "add_edge", - "rtt_ns": 2218793, - "rtt_ms": 2.218793, + "rtt_ns": 1802250, + "rtt_ms": 1.80225, "checkpoint": 0, "vertex_from": "272", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:47.228455189Z" + "timestamp": "2025-11-27T04:03:50.398114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206456, - "rtt_ms": 1.206456, + "rtt_ns": 1664541, + "rtt_ms": 1.664541, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.228492249Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:03:50.398612-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303453, - "rtt_ms": 2.303453, + "rtt_ns": 2518125, + "rtt_ms": 2.518125, "checkpoint": 0, "vertex_from": "272", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.228565189Z" + "timestamp": "2025-11-27T04:03:50.398867-08:00" }, { "operation": "add_edge", - "rtt_ns": 857568, - "rtt_ms": 0.857568, + "rtt_ns": 1952041, + "rtt_ms": 1.952041, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:47.229007358Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.398898-08:00" }, { "operation": "add_edge", - "rtt_ns": 876688, - "rtt_ms": 0.876688, + "rtt_ns": 1721209, + "rtt_ms": 1.721209, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:47.229101938Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:03:50.399019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093427, - "rtt_ms": 1.093427, + "rtt_ns": 3178416, + "rtt_ms": 3.178416, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:47.229315777Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:03:50.399126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098487, - "rtt_ms": 1.098487, + "rtt_ns": 1598250, + "rtt_ms": 1.59825, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:47.229354747Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:03:50.399166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552365, - "rtt_ms": 1.552365, + "rtt_ns": 1862083, + "rtt_ms": 1.862083, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:47.229893425Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:03:50.399256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712815, - "rtt_ms": 1.712815, + "rtt_ns": 2021708, + "rtt_ms": 2.021708, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:47.230024665Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:03:50.399388-08:00" }, { "operation": "add_edge", - "rtt_ns": 940827, - "rtt_ms": 0.940827, + "rtt_ns": 2116917, + "rtt_ms": 2.116917, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.230043475Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:50.39948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592656, - "rtt_ms": 1.592656, + "rtt_ns": 1083416, + "rtt_ms": 1.083416, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "551", - "timestamp": "2025-11-27T01:23:47.230048985Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.400118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668665, - "rtt_ms": 1.668665, + "rtt_ns": 2407250, + "rtt_ms": 2.40725, "checkpoint": 0, "vertex_from": "272", "vertex_to": "360", - "timestamp": "2025-11-27T01:23:47.230052515Z" + "timestamp": "2025-11-27T04:03:50.400522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559776, - "rtt_ms": 1.559776, + "rtt_ns": 1919875, + "rtt_ms": 1.919875, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:47.230052715Z" + "vertex_to": "551", + "timestamp": "2025-11-27T04:03:50.400534-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1513496, - "rtt_ms": 1.513496, + "rtt_ns": 1743625, + "rtt_ms": 1.743625, "checkpoint": 0, "vertex_from": "478", - "timestamp": "2025-11-27T01:23:47.230084715Z" + "timestamp": "2025-11-27T04:03:50.400644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228436, - "rtt_ms": 1.228436, + "rtt_ns": 1538417, + "rtt_ms": 1.538417, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.230236604Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:03:50.400706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383916, - "rtt_ms": 1.383916, + "rtt_ns": 1354042, + "rtt_ms": 1.354042, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:47.230739863Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:50.400835-08:00" }, { "operation": "add_edge", - "rtt_ns": 998368, - "rtt_ms": 0.998368, + "rtt_ns": 1608250, + "rtt_ms": 1.60825, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "488", - "timestamp": "2025-11-27T01:23:47.230892873Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:03:50.400867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607405, - "rtt_ms": 1.607405, + "rtt_ns": 1500083, + "rtt_ms": 1.500083, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:47.230925012Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:03:50.400889-08:00" }, { "operation": "add_edge", - "rtt_ns": 932157, - "rtt_ms": 0.932157, + "rtt_ns": 2366667, + "rtt_ms": 2.366667, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:47.230957892Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.401493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596775, - "rtt_ms": 1.596775, + "rtt_ns": 1192125, + "rtt_ms": 1.192125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:47.23165121Z" + "vertex_to": "860", + "timestamp": "2025-11-27T04:03:50.401715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626075, - "rtt_ms": 1.626075, + "rtt_ns": 1595458, + "rtt_ms": 1.595458, "checkpoint": 0, "vertex_from": "272", "vertex_to": "291", - "timestamp": "2025-11-27T01:23:47.23167103Z" + "timestamp": "2025-11-27T04:03:50.401718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651745, - "rtt_ms": 1.651745, + "rtt_ns": 1690875, + "rtt_ms": 1.690875, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:47.23170681Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1477306, - "rtt_ms": 1.477306, - "checkpoint": 0, - "vertex_from": "272", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.23171493Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:03:50.402226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682555, - "rtt_ms": 1.682555, + "rtt_ns": 1494125, + "rtt_ms": 1.494125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "860", - "timestamp": "2025-11-27T01:23:47.23173294Z" + "vertex_to": "463", + "timestamp": "2025-11-27T04:03:50.402385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666745, - "rtt_ms": 1.666745, + "rtt_ns": 1635958, + "rtt_ms": 1.635958, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "478", - "timestamp": "2025-11-27T01:23:47.23175234Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.402473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620785, - "rtt_ms": 1.620785, + "rtt_ns": 3749250, + "rtt_ms": 3.74925, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.232361328Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:50.402617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604516, - "rtt_ms": 1.604516, + "rtt_ns": 1925167, + "rtt_ms": 1.925167, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:47.232537768Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:03:50.402633-08:00" }, { "operation": "add_edge", - "rtt_ns": 900508, - "rtt_ms": 0.900508, + "rtt_ns": 2068417, + "rtt_ms": 2.068417, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:47.232608868Z" + "vertex_to": "478", + "timestamp": "2025-11-27T04:03:50.402713-08:00" }, { "operation": "add_edge", - "rtt_ns": 915737, - "rtt_ms": 0.915737, + "rtt_ns": 1957667, + "rtt_ms": 1.957667, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.232649647Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.402826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780164, - "rtt_ms": 1.780164, + "rtt_ns": 1687334, + "rtt_ms": 1.687334, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "463", - "timestamp": "2025-11-27T01:23:47.232674817Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:03:50.403182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044867, - "rtt_ms": 1.044867, + "rtt_ns": 1780459, + "rtt_ms": 1.780459, "checkpoint": 0, "vertex_from": "272", "vertex_to": "457", - "timestamp": "2025-11-27T01:23:47.232697347Z" + "timestamp": "2025-11-27T04:03:50.403499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790105, - "rtt_ms": 1.790105, + "rtt_ns": 1819917, + "rtt_ms": 1.819917, "checkpoint": 0, "vertex_from": "272", "vertex_to": "588", - "timestamp": "2025-11-27T01:23:47.232750227Z" + "timestamp": "2025-11-27T04:03:50.403536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072947, - "rtt_ms": 1.072947, + "rtt_ns": 1312667, + "rtt_ms": 1.312667, "checkpoint": 0, "vertex_from": "272", "vertex_to": "303", - "timestamp": "2025-11-27T01:23:47.232753277Z" + "timestamp": "2025-11-27T04:03:50.403539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039507, - "rtt_ms": 1.039507, + "rtt_ns": 1210042, + "rtt_ms": 1.210042, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "948", - "timestamp": "2025-11-27T01:23:47.232755937Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:03:50.403596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144937, - "rtt_ms": 1.144937, + "rtt_ns": 1062750, + "rtt_ms": 1.06275, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:47.232898587Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:03:50.403777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235897, - "rtt_ms": 1.235897, + "rtt_ns": 1256125, + "rtt_ms": 1.256125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:47.233598075Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.403874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061797, - "rtt_ms": 1.061797, + "rtt_ns": 1096125, + "rtt_ms": 1.096125, "checkpoint": 0, "vertex_from": "272", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.233601445Z" + "timestamp": "2025-11-27T04:03:50.403923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355186, - "rtt_ms": 1.355186, + "rtt_ns": 1436750, + "rtt_ms": 1.43675, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:47.233964863Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:03:50.404975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213487, - "rtt_ms": 1.213487, + "rtt_ns": 1484167, + "rtt_ms": 1.484167, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:47.233964863Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:03:50.404985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395576, - "rtt_ms": 1.395576, + "rtt_ns": 2380208, + "rtt_ms": 2.380208, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.234093793Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.405015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377156, - "rtt_ms": 1.377156, + "rtt_ns": 2689875, + "rtt_ms": 2.689875, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.234132123Z" + "vertex_to": "948", + "timestamp": "2025-11-27T04:03:50.405164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463606, - "rtt_ms": 1.463606, + "rtt_ns": 1637583, + "rtt_ms": 1.637583, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:47.234139443Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.405178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619276, - "rtt_ms": 1.619276, + "rtt_ns": 2014750, + "rtt_ms": 2.01475, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:47.234270243Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:03:50.405197-08:00" }, { "operation": "add_edge", - "rtt_ns": 705427, - "rtt_ms": 0.705427, + "rtt_ns": 1744291, + "rtt_ms": 1.744291, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.234304842Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:03:50.405341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422615, - "rtt_ms": 1.422615, + "rtt_ns": 1575916, + "rtt_ms": 1.575916, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "489", - "timestamp": "2025-11-27T01:23:47.234322382Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.405354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579705, - "rtt_ms": 1.579705, + "rtt_ns": 1528875, + "rtt_ms": 1.528875, "checkpoint": 0, "vertex_from": "272", "vertex_to": "547", - "timestamp": "2025-11-27T01:23:47.234336862Z" + "timestamp": "2025-11-27T04:03:50.405403-08:00" }, { "operation": "add_edge", - "rtt_ns": 734747, - "rtt_ms": 0.734747, + "rtt_ns": 1571292, + "rtt_ms": 1.571292, "checkpoint": 0, - "vertex_from": "273", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:47.234337402Z" + "vertex_from": "272", + "vertex_to": "489", + "timestamp": "2025-11-27T04:03:50.405495-08:00" }, { "operation": "add_edge", - "rtt_ns": 783698, - "rtt_ms": 0.783698, + "rtt_ns": 1067792, + "rtt_ms": 1.067792, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:47.234924501Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:03:50.406423-08:00" }, { "operation": "add_edge", - "rtt_ns": 979598, - "rtt_ms": 0.979598, + "rtt_ns": 1282667, + "rtt_ms": 1.282667, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.234946811Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.40648-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1804584, + "rtt_ms": 1.804584, + "checkpoint": 0, + "vertex_from": "272", + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:50.406781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083977, - "rtt_ms": 1.083977, + "rtt_ns": 1781042, + "rtt_ms": 1.781042, "checkpoint": 0, "vertex_from": "273", "vertex_to": "390", - "timestamp": "2025-11-27T01:23:47.23505021Z" + "timestamp": "2025-11-27T04:03:50.406798-08:00" }, { "operation": "add_edge", - "rtt_ns": 967907, - "rtt_ms": 0.967907, + "rtt_ns": 1473208, + "rtt_ms": 1.473208, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.23506283Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:03:50.406878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875394, - "rtt_ms": 1.875394, + "rtt_ns": 1798625, + "rtt_ms": 1.798625, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.236016507Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.406965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813324, - "rtt_ms": 1.813324, + "rtt_ns": 2040250, + "rtt_ms": 2.04025, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:47.236085227Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:03:50.407026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913755, - "rtt_ms": 1.913755, + "rtt_ns": 1893750, + "rtt_ms": 1.89375, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:47.236252167Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:03:50.407073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986255, - "rtt_ms": 1.986255, + "rtt_ns": 1601208, + "rtt_ms": 1.601208, "checkpoint": 0, "vertex_from": "273", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.236311747Z" + "timestamp": "2025-11-27T04:03:50.407097-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112214, - "rtt_ms": 2.112214, + "rtt_ns": 1812833, + "rtt_ms": 1.812833, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "276", - "timestamp": "2025-11-27T01:23:47.236417726Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:03:50.407156-08:00" }, { "operation": "add_edge", - "rtt_ns": 2263644, - "rtt_ms": 2.263644, + "rtt_ns": 978833, + "rtt_ms": 0.978833, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:47.236603306Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:03:50.407403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761545, - "rtt_ms": 1.761545, + "rtt_ns": 1280750, + "rtt_ms": 1.28075, "checkpoint": 0, "vertex_from": "273", "vertex_to": "856", - "timestamp": "2025-11-27T01:23:47.236689346Z" + "timestamp": "2025-11-27T04:03:50.408064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720965, - "rtt_ms": 1.720965, + "rtt_ns": 1370125, + "rtt_ms": 1.370125, "checkpoint": 0, "vertex_from": "273", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.236772595Z" + "timestamp": "2025-11-27T04:03:50.40825-08:00" }, { "operation": "add_edge", - "rtt_ns": 2323374, - "rtt_ms": 2.323374, + "rtt_ns": 1838542, + "rtt_ms": 1.838542, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "285", - "timestamp": "2025-11-27T01:23:47.237388314Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:03:50.40832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349426, - "rtt_ms": 1.349426, + "rtt_ns": 1325084, + "rtt_ms": 1.325084, "checkpoint": 0, "vertex_from": "273", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.237437053Z" + "timestamp": "2025-11-27T04:03:50.408399-08:00" }, { "operation": "add_edge", - "rtt_ns": 2516892, - "rtt_ms": 2.516892, + "rtt_ns": 1627416, + "rtt_ms": 1.627416, "checkpoint": 0, "vertex_from": "273", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.237464883Z" + "timestamp": "2025-11-27T04:03:50.408426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492886, - "rtt_ms": 1.492886, + "rtt_ns": 1457250, + "rtt_ms": 1.45725, "checkpoint": 0, "vertex_from": "273", "vertex_to": "372", - "timestamp": "2025-11-27T01:23:47.237517753Z" + "timestamp": "2025-11-27T04:03:50.408484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234396, - "rtt_ms": 1.234396, + "rtt_ns": 1537250, + "rtt_ms": 1.53725, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:47.237547733Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:03:50.408503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359296, - "rtt_ms": 1.359296, + "rtt_ns": 1593000, + "rtt_ms": 1.593, "checkpoint": 0, "vertex_from": "273", "vertex_to": "302", - "timestamp": "2025-11-27T01:23:47.237613533Z" + "timestamp": "2025-11-27T04:03:50.408691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062537, - "rtt_ms": 1.062537, + "rtt_ns": 1872167, + "rtt_ms": 1.872167, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:47.237667493Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:50.409029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351547, - "rtt_ms": 1.351547, + "rtt_ns": 958750, + "rtt_ms": 0.95875, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.237772703Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:03:50.409359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144866, - "rtt_ms": 1.144866, + "rtt_ns": 1159708, + "rtt_ms": 1.159708, "checkpoint": 0, "vertex_from": "273", "vertex_to": "526", - "timestamp": "2025-11-27T01:23:47.237835512Z" + "timestamp": "2025-11-27T04:03:50.409411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110807, - "rtt_ms": 1.110807, + "rtt_ns": 2228708, + "rtt_ms": 2.228708, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:47.237885352Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.409633-08:00" }, { "operation": "add_edge", - "rtt_ns": 555068, - "rtt_ms": 0.555068, + "rtt_ns": 1684542, + "rtt_ms": 1.684542, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "678", - "timestamp": "2025-11-27T01:23:47.237945112Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:03:50.40975-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1468042, + "rtt_ms": 1.468042, + "checkpoint": 0, + "vertex_from": "273", + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.409954-08:00" }, { "operation": "add_edge", - "rtt_ns": 578149, - "rtt_ms": 0.578149, + "rtt_ns": 1538334, + "rtt_ms": 1.538334, "checkpoint": 0, "vertex_from": "273", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.238016562Z" + "timestamp": "2025-11-27T04:03:50.409965-08:00" }, { "operation": "add_edge", - "rtt_ns": 646158, - "rtt_ms": 0.646158, + "rtt_ns": 1656541, + "rtt_ms": 1.656541, "checkpoint": 0, - "vertex_from": "274", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.238195001Z" + "vertex_from": "273", + "vertex_to": "522", + "timestamp": "2025-11-27T04:03:50.409979-08:00" }, { "operation": "add_edge", - "rtt_ns": 762038, - "rtt_ms": 0.762038, + "rtt_ns": 1614083, + "rtt_ms": 1.614083, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.238228311Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:03:50.410118-08:00" }, { "operation": "add_edge", - "rtt_ns": 619008, - "rtt_ms": 0.619008, + "rtt_ns": 1598334, + "rtt_ms": 1.598334, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.238287731Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.41029-08:00" }, { "operation": "add_edge", - "rtt_ns": 775598, - "rtt_ms": 0.775598, + "rtt_ns": 1470458, + "rtt_ms": 1.470458, "checkpoint": 0, - "vertex_from": "273", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:47.238294631Z" + "vertex_from": "274", + "vertex_to": "518", + "timestamp": "2025-11-27T04:03:50.411104-08:00" }, { "operation": "add_edge", - "rtt_ns": 697058, - "rtt_ms": 0.697058, + "rtt_ns": 1896708, + "rtt_ms": 1.896708, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.238311771Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.411257-08:00" }, { "operation": "add_edge", - "rtt_ns": 552798, - "rtt_ms": 0.552798, + "rtt_ns": 1334791, + "rtt_ms": 1.334791, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:47.238328251Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:03:50.411315-08:00" }, { "operation": "add_edge", - "rtt_ns": 561549, - "rtt_ms": 0.561549, + "rtt_ns": 2374791, + "rtt_ms": 2.374791, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:47.238449911Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.411404-08:00" }, { "operation": "add_edge", - "rtt_ns": 570898, - "rtt_ms": 0.570898, + "rtt_ns": 1451125, + "rtt_ms": 1.451125, "checkpoint": 0, "vertex_from": "274", "vertex_to": "964", - "timestamp": "2025-11-27T01:23:47.23851795Z" + "timestamp": "2025-11-27T04:03:50.411406-08:00" }, { "operation": "add_edge", - "rtt_ns": 696578, - "rtt_ms": 0.696578, + "rtt_ns": 2140833, + "rtt_ms": 2.140833, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:47.2385339Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:03:50.411554-08:00" }, { "operation": "add_edge", - "rtt_ns": 748378, - "rtt_ms": 0.748378, + "rtt_ns": 1536333, + "rtt_ms": 1.536333, "checkpoint": 0, "vertex_from": "274", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:47.238981999Z" + "timestamp": "2025-11-27T04:03:50.411656-08:00" }, { "operation": "add_edge", - "rtt_ns": 816558, - "rtt_ms": 0.816558, + "rtt_ns": 1975125, + "rtt_ms": 1.975125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:47.239013129Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:03:50.411726-08:00" }, { "operation": "add_edge", - "rtt_ns": 709508, - "rtt_ms": 0.709508, + "rtt_ns": 1816709, + "rtt_ms": 1.816709, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:47.239039409Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:03:50.411783-08:00" }, { "operation": "add_edge", - "rtt_ns": 790758, - "rtt_ms": 0.790758, + "rtt_ns": 1521792, + "rtt_ms": 1.521792, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:47.239104149Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:03:50.411813-08:00" }, { "operation": "add_edge", - "rtt_ns": 881898, - "rtt_ms": 0.881898, + "rtt_ns": 1395709, + "rtt_ms": 1.395709, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.239170659Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:03:50.412501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160837, - "rtt_ms": 1.160837, + "rtt_ns": 1391125, + "rtt_ms": 1.391125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:47.239178839Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:03:50.412946-08:00" }, { "operation": "add_edge", - "rtt_ns": 942737, - "rtt_ms": 0.942737, + "rtt_ns": 1266375, + "rtt_ms": 1.266375, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:47.239238848Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.413051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488976, - "rtt_ms": 1.488976, + "rtt_ns": 1922792, + "rtt_ms": 1.922792, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:47.240024756Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:03:50.413187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518826, - "rtt_ms": 1.518826, + "rtt_ns": 2016583, + "rtt_ms": 2.016583, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "573", - "timestamp": "2025-11-27T01:23:47.240040436Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:03:50.413335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211916, - "rtt_ms": 1.211916, + "rtt_ns": 1996000, + "rtt_ms": 1.996, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.240316925Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:03:50.413403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326316, - "rtt_ms": 1.326316, + "rtt_ns": 1847750, + "rtt_ms": 1.84775, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.240366985Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:03:50.413506-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243933, - "rtt_ms": 2.243933, + "rtt_ns": 2158417, + "rtt_ms": 2.158417, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.241259112Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:03:50.413563-08:00" }, { "operation": "add_edge", - "rtt_ns": 2366183, - "rtt_ms": 2.366183, + "rtt_ns": 1767458, + "rtt_ms": 1.767458, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "277", - "timestamp": "2025-11-27T01:23:47.241349572Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.413581-08:00" }, { "operation": "add_edge", - "rtt_ns": 2917481, - "rtt_ms": 2.917481, + "rtt_ns": 1099833, + "rtt_ms": 1.099833, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:47.241369292Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.413602-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208753, - "rtt_ms": 2.208753, + "rtt_ns": 1889250, + "rtt_ms": 1.88925, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.241380202Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.413617-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210753, - "rtt_ms": 2.210753, + "rtt_ns": 1404292, + "rtt_ms": 1.404292, "checkpoint": 0, "vertex_from": "274", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.241391062Z" + "timestamp": "2025-11-27T04:03:50.414351-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173524, - "rtt_ms": 2.173524, + "rtt_ns": 1696250, + "rtt_ms": 1.69625, "checkpoint": 0, "vertex_from": "274", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:47.241413712Z" + "timestamp": "2025-11-27T04:03:50.414748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897714, - "rtt_ms": 1.897714, + "rtt_ns": 1209750, + "rtt_ms": 1.20975, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:47.24193949Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:03:50.414774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955984, - "rtt_ms": 1.955984, + "rtt_ns": 1825792, + "rtt_ms": 1.825792, "checkpoint": 0, "vertex_from": "274", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.24198257Z" + "timestamp": "2025-11-27T04:03:50.415013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381723, - "rtt_ms": 2.381723, + "rtt_ns": 1677125, + "rtt_ms": 1.677125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:47.242699908Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:03:50.415014-08:00" }, { "operation": "add_edge", - "rtt_ns": 2456403, - "rtt_ms": 2.456403, + "rtt_ns": 1879750, + "rtt_ms": 1.87975, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.242825008Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:03:50.415284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479626, - "rtt_ms": 1.479626, + "rtt_ns": 1814791, + "rtt_ms": 1.814791, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:47.242850828Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.415321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628746, - "rtt_ms": 1.628746, + "rtt_ns": 1776958, + "rtt_ms": 1.776958, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "653", - "timestamp": "2025-11-27T01:23:47.242889178Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:03:50.415379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599105, - "rtt_ms": 1.599105, + "rtt_ns": 1843875, + "rtt_ms": 1.843875, "checkpoint": 0, "vertex_from": "274", "vertex_to": "782", - "timestamp": "2025-11-27T01:23:47.242950407Z" + "timestamp": "2025-11-27T04:03:50.415426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586745, - "rtt_ms": 1.586745, + "rtt_ns": 1840625, + "rtt_ms": 1.840625, "checkpoint": 0, "vertex_from": "274", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.242968407Z" + "timestamp": "2025-11-27T04:03:50.415458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114057, - "rtt_ms": 1.114057, + "rtt_ns": 1109667, + "rtt_ms": 1.109667, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.243055077Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:03:50.415462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709995, - "rtt_ms": 1.709995, + "rtt_ns": 1129833, + "rtt_ms": 1.129833, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:47.243103277Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.415879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754095, - "rtt_ms": 1.754095, + "rtt_ns": 1316459, + "rtt_ms": 1.316459, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.243170197Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:03:50.416332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323956, - "rtt_ms": 1.323956, + "rtt_ns": 1334458, + "rtt_ms": 1.334458, "checkpoint": 0, "vertex_from": "274", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:47.243307856Z" + "timestamp": "2025-11-27T04:03:50.416348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328566, - "rtt_ms": 1.328566, + "rtt_ns": 1686292, + "rtt_ms": 1.686292, "checkpoint": 0, - "vertex_from": "275", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:47.244298253Z" + "vertex_from": "274", + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.416461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618175, - "rtt_ms": 1.618175, + "rtt_ns": 1785667, + "rtt_ms": 1.785667, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:47.244319403Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:03:50.417071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182796, - "rtt_ms": 1.182796, + "rtt_ns": 1860833, + "rtt_ms": 1.860833, "checkpoint": 0, - "vertex_from": "275", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:47.244354153Z" + "vertex_from": "274", + "vertex_to": "643", + "timestamp": "2025-11-27T04:03:50.417183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547475, - "rtt_ms": 1.547475, + "rtt_ns": 1732875, + "rtt_ms": 1.732875, "checkpoint": 0, - "vertex_from": "274", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:47.244374173Z" + "vertex_from": "275", + "vertex_to": "676", + "timestamp": "2025-11-27T04:03:50.417196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337186, - "rtt_ms": 1.337186, + "rtt_ns": 1890791, + "rtt_ms": 1.890791, "checkpoint": 0, - "vertex_from": "275", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.244441943Z" + "vertex_from": "274", + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.417276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506506, - "rtt_ms": 1.506506, + "rtt_ns": 1850583, + "rtt_ms": 1.850583, "checkpoint": 0, "vertex_from": "274", "vertex_to": "481", - "timestamp": "2025-11-27T01:23:47.244458413Z" + "timestamp": "2025-11-27T04:03:50.417277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406046, - "rtt_ms": 1.406046, + "rtt_ns": 1622792, + "rtt_ms": 1.622792, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:47.244462863Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:03:50.417956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119324, - "rtt_ms": 2.119324, + "rtt_ns": 2612292, + "rtt_ms": 2.612292, "checkpoint": 0, - "vertex_from": "274", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.245009412Z" + "vertex_from": "275", + "vertex_to": "644", + "timestamp": "2025-11-27T04:03:50.418071-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178893, - "rtt_ms": 2.178893, + "rtt_ns": 1852958, + "rtt_ms": 1.852958, "checkpoint": 0, - "vertex_from": "274", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:47.245031261Z" + "vertex_from": "275", + "vertex_to": "530", + "timestamp": "2025-11-27T04:03:50.418202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928515, - "rtt_ms": 1.928515, + "rtt_ns": 2328000, + "rtt_ms": 2.328, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:47.245238031Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.418213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423126, - "rtt_ms": 1.423126, + "rtt_ns": 1753667, + "rtt_ms": 1.753667, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.245798819Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:03:50.418215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390906, - "rtt_ms": 1.390906, + "rtt_ns": 1694500, + "rtt_ms": 1.6945, "checkpoint": 0, "vertex_from": "275", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:47.245850319Z" + "timestamp": "2025-11-27T04:03:50.418973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514156, - "rtt_ms": 1.514156, + "rtt_ns": 1939917, + "rtt_ms": 1.939917, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:47.245869189Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.419136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585066, - "rtt_ms": 1.585066, + "rtt_ns": 2311500, + "rtt_ms": 2.3115, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:47.245885839Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:03:50.419588-08:00" }, { "operation": "add_edge", - "rtt_ns": 658238, - "rtt_ms": 0.658238, + "rtt_ns": 2434166, + "rtt_ms": 2.434166, "checkpoint": 0, - "vertex_from": "276", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:47.245897409Z" + "vertex_from": "275", + "vertex_to": "577", + "timestamp": "2025-11-27T04:03:50.419618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091384, - "rtt_ms": 2.091384, + "rtt_ns": 1675333, + "rtt_ms": 1.675333, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:47.246535147Z" + "vertex_to": "956", + "timestamp": "2025-11-27T04:03:50.419632-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243184, - "rtt_ms": 2.243184, + "rtt_ns": 2596584, + "rtt_ms": 2.596584, "checkpoint": 0, "vertex_from": "275", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.246564307Z" + "timestamp": "2025-11-27T04:03:50.419668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591646, - "rtt_ms": 1.591646, + "rtt_ns": 1710750, + "rtt_ms": 1.71075, "checkpoint": 0, "vertex_from": "275", "vertex_to": "525", - "timestamp": "2025-11-27T01:23:47.246603087Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2298784, - "rtt_ms": 2.298784, - "checkpoint": 0, - "vertex_from": "275", - "vertex_to": "956", - "timestamp": "2025-11-27T01:23:47.246764287Z" + "timestamp": "2025-11-27T04:03:50.419783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747076, - "rtt_ms": 1.747076, + "rtt_ns": 2179750, + "rtt_ms": 2.17975, "checkpoint": 0, "vertex_from": "276", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.246779567Z" + "timestamp": "2025-11-27T04:03:50.420385-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100894, - "rtt_ms": 2.100894, + "rtt_ns": 2304583, + "rtt_ms": 2.304583, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.247901853Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:03:50.420519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266836, - "rtt_ms": 1.266836, + "rtt_ns": 2343000, + "rtt_ms": 2.343, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:47.248048013Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.420559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148794, - "rtt_ms": 2.148794, + "rtt_ns": 1655458, + "rtt_ms": 1.655458, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "370", - "timestamp": "2025-11-27T01:23:47.248048793Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:03:50.420629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449106, - "rtt_ms": 1.449106, + "rtt_ns": 1391292, + "rtt_ms": 1.391292, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:47.248053313Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.421031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578196, - "rtt_ms": 1.578196, + "rtt_ns": 1400916, + "rtt_ms": 1.400916, "checkpoint": 0, "vertex_from": "276", "vertex_to": "686", - "timestamp": "2025-11-27T01:23:47.248145213Z" + "timestamp": "2025-11-27T04:03:50.42107-08:00" }, { "operation": "add_edge", - "rtt_ns": 2304894, - "rtt_ms": 2.304894, + "rtt_ns": 1643458, + "rtt_ms": 1.643458, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:47.248157873Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:03:50.421262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669965, - "rtt_ms": 1.669965, + "rtt_ns": 1574375, + "rtt_ms": 1.574375, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.248206272Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:03:50.421359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376423, - "rtt_ms": 2.376423, + "rtt_ns": 1799541, + "rtt_ms": 1.799541, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.248246992Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:03:50.421388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890604, - "rtt_ms": 1.890604, + "rtt_ns": 2294875, + "rtt_ms": 2.294875, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:47.248656001Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:03:50.421432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2942482, - "rtt_ms": 2.942482, + "rtt_ns": 1451458, + "rtt_ms": 1.451458, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:47.248830251Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:03:50.421971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629135, - "rtt_ms": 1.629135, + "rtt_ns": 1911416, + "rtt_ms": 1.911416, "checkpoint": 0, "vertex_from": "276", "vertex_to": "587", - "timestamp": "2025-11-27T01:23:47.249678778Z" + "timestamp": "2025-11-27T04:03:50.422541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790495, - "rtt_ms": 1.790495, + "rtt_ns": 2179125, + "rtt_ms": 2.179125, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.249693868Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:03:50.422565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734755, - "rtt_ms": 1.734755, + "rtt_ns": 2066750, + "rtt_ms": 2.06675, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.249784638Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.422627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786255, - "rtt_ms": 1.786255, + "rtt_ns": 1579125, + "rtt_ms": 1.579125, "checkpoint": 0, "vertex_from": "276", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.249841638Z" + "timestamp": "2025-11-27T04:03:50.42265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690565, - "rtt_ms": 1.690565, + "rtt_ns": 842625, + "rtt_ms": 0.842625, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:47.249897827Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.422815-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040014, - "rtt_ms": 2.040014, + "rtt_ns": 1506125, + "rtt_ms": 1.506125, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:47.250287896Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:03:50.422895-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225303, - "rtt_ms": 2.225303, + "rtt_ns": 1794792, + "rtt_ms": 1.794792, "checkpoint": 0, "vertex_from": "276", "vertex_to": "585", - "timestamp": "2025-11-27T01:23:47.250372426Z" + "timestamp": "2025-11-27T04:03:50.423058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232543, - "rtt_ms": 2.232543, + "rtt_ns": 1796167, + "rtt_ms": 1.796167, "checkpoint": 0, "vertex_from": "276", "vertex_to": "617", - "timestamp": "2025-11-27T01:23:47.250391666Z" + "timestamp": "2025-11-27T04:03:50.423156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738145, - "rtt_ms": 1.738145, + "rtt_ns": 2185375, + "rtt_ms": 2.185375, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:47.250395556Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.423222-08:00" }, { "operation": "add_edge", - "rtt_ns": 768678, - "rtt_ms": 0.768678, + "rtt_ns": 2067916, + "rtt_ms": 2.067916, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "333", - "timestamp": "2025-11-27T01:23:47.250463466Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:03:50.423501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636055, - "rtt_ms": 1.636055, + "rtt_ns": 1125958, + "rtt_ms": 1.125958, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.250467296Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:03:50.423942-08:00" }, { "operation": "add_edge", - "rtt_ns": 846578, - "rtt_ms": 0.846578, + "rtt_ns": 1393709, + "rtt_ms": 1.393709, "checkpoint": 0, "vertex_from": "276", "vertex_to": "304", - "timestamp": "2025-11-27T01:23:47.250526316Z" + "timestamp": "2025-11-27T04:03:50.42396-08:00" }, { "operation": "add_edge", - "rtt_ns": 777837, - "rtt_ms": 0.777837, + "rtt_ns": 1719917, + "rtt_ms": 1.719917, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:47.250563615Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:03:50.424348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206186, - "rtt_ms": 1.206186, + "rtt_ns": 1660750, + "rtt_ms": 1.66075, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:47.251049124Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:03:50.424557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247037, - "rtt_ms": 1.247037, + "rtt_ns": 2037458, + "rtt_ms": 2.037458, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:47.251146164Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:03:50.424579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518946, - "rtt_ms": 1.518946, + "rtt_ns": 1672000, + "rtt_ms": 1.672, "checkpoint": 0, "vertex_from": "276", "vertex_to": "674", - "timestamp": "2025-11-27T01:23:47.251808142Z" + "timestamp": "2025-11-27T04:03:50.424731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499515, - "rtt_ms": 1.499515, + "rtt_ns": 1678000, + "rtt_ms": 1.678, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.251896311Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:03:50.424835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658505, - "rtt_ms": 1.658505, + "rtt_ns": 1349709, + "rtt_ms": 1.349709, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:47.252051631Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:03:50.424851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589135, - "rtt_ms": 1.589135, + "rtt_ns": 2275875, + "rtt_ms": 2.275875, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:47.252053301Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:03:50.424927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693175, - "rtt_ms": 1.693175, + "rtt_ns": 996375, + "rtt_ms": 0.996375, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:47.252067731Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:03:50.424957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603865, - "rtt_ms": 1.603865, + "rtt_ns": 2210500, + "rtt_ms": 2.2105, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:47.252072651Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:03:50.425433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828025, - "rtt_ms": 1.828025, + "rtt_ns": 1778417, + "rtt_ms": 1.778417, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.252878089Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:03:50.425727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734305, - "rtt_ms": 1.734305, + "rtt_ns": 1844917, + "rtt_ms": 1.844917, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "924", - "timestamp": "2025-11-27T01:23:47.252881779Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:03:50.426193-08:00" }, { "operation": "add_edge", - "rtt_ns": 2434713, - "rtt_ms": 2.434713, + "rtt_ns": 1384042, + "rtt_ms": 1.384042, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:47.252999228Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:03:50.42622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226426, - "rtt_ms": 1.226426, + "rtt_ns": 1341542, + "rtt_ms": 1.341542, "checkpoint": 0, - "vertex_from": "276", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:47.253035748Z" + "vertex_from": "277", + "vertex_to": "404", + "timestamp": "2025-11-27T04:03:50.426269-08:00" }, { "operation": "add_edge", - "rtt_ns": 2556542, - "rtt_ms": 2.556542, + "rtt_ns": 1452625, + "rtt_ms": 1.452625, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "398", - "timestamp": "2025-11-27T01:23:47.253084158Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:03:50.426304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338857, - "rtt_ms": 1.338857, + "rtt_ns": 1641250, + "rtt_ms": 1.64125, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "353", - "timestamp": "2025-11-27T01:23:47.253236238Z" + "vertex_to": "924", + "timestamp": "2025-11-27T04:03:50.426373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193857, - "rtt_ms": 1.193857, + "rtt_ns": 1838875, + "rtt_ms": 1.838875, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:47.253247838Z" + "vertex_from": "276", + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.42642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251437, - "rtt_ms": 1.251437, + "rtt_ns": 1480041, + "rtt_ms": 1.480041, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:47.253303908Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:03:50.426437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335666, - "rtt_ms": 1.335666, + "rtt_ns": 1951917, + "rtt_ms": 1.951917, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:47.253409747Z" + "vertex_from": "276", + "vertex_to": "354", + "timestamp": "2025-11-27T04:03:50.426509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821595, - "rtt_ms": 1.821595, + "rtt_ns": 1318417, + "rtt_ms": 1.318417, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:47.253891586Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:03:50.427739-08:00" }, { "operation": "add_edge", - "rtt_ns": 997488, - "rtt_ms": 0.997488, + "rtt_ns": 1454625, + "rtt_ms": 1.454625, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:47.253997966Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:03:50.42776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117207, - "rtt_ms": 1.117207, + "rtt_ns": 1594000, + "rtt_ms": 1.594, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:47.253998306Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:03:50.427864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154736, - "rtt_ms": 1.154736, + "rtt_ns": 1662208, + "rtt_ms": 1.662208, "checkpoint": 0, "vertex_from": "277", "vertex_to": "280", - "timestamp": "2025-11-27T01:23:47.254039045Z" + "timestamp": "2025-11-27T04:03:50.427883-08:00" }, { "operation": "add_edge", - "rtt_ns": 966707, - "rtt_ms": 0.966707, + "rtt_ns": 1528708, + "rtt_ms": 1.528708, "checkpoint": 0, "vertex_from": "277", "vertex_to": "909", - "timestamp": "2025-11-27T01:23:47.254051845Z" + "timestamp": "2025-11-27T04:03:50.427902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224787, - "rtt_ms": 1.224787, + "rtt_ns": 1746375, + "rtt_ms": 1.746375, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:47.254261925Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:03:50.427941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198277, - "rtt_ms": 1.198277, + "rtt_ns": 2217625, + "rtt_ms": 2.217625, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:47.254609884Z" + "vertex_from": "277", + "vertex_to": "386", + "timestamp": "2025-11-27T04:03:50.427945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377896, - "rtt_ms": 1.377896, + "rtt_ns": 2540666, + "rtt_ms": 2.540666, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:47.254626574Z" + "vertex_from": "277", + "vertex_to": "545", + "timestamp": "2025-11-27T04:03:50.427975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219696, - "rtt_ms": 1.219696, + "rtt_ns": 1636708, + "rtt_ms": 1.636708, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:47.255112412Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:03:50.428075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130637, - "rtt_ms": 1.130637, + "rtt_ns": 1602125, + "rtt_ms": 1.602125, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:47.255184252Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:03:50.428112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978654, - "rtt_ms": 1.978654, + "rtt_ns": 1631709, + "rtt_ms": 1.631709, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:47.255216132Z" + "vertex_from": "278", + "vertex_to": "516", + "timestamp": "2025-11-27T04:03:50.429372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202137, - "rtt_ms": 1.202137, + "rtt_ns": 1467458, + "rtt_ms": 1.467458, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:47.255243332Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:03:50.429415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944634, - "rtt_ms": 1.944634, + "rtt_ns": 1695625, + "rtt_ms": 1.695625, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "632", - "timestamp": "2025-11-27T01:23:47.255249512Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:03:50.429456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389576, - "rtt_ms": 1.389576, + "rtt_ns": 1675291, + "rtt_ms": 1.675291, "checkpoint": 0, "vertex_from": "278", "vertex_to": "600", - "timestamp": "2025-11-27T01:23:47.255388712Z" + "timestamp": "2025-11-27T04:03:50.42954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211516, - "rtt_ms": 1.211516, + "rtt_ns": 1763958, + "rtt_ms": 1.763958, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:47.255475561Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:03:50.429667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106084, - "rtt_ms": 2.106084, + "rtt_ns": 1963333, + "rtt_ms": 1.963333, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:47.25610607Z" + "vertex_from": "279", + "vertex_to": "648", + "timestamp": "2025-11-27T04:03:50.430076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535125, - "rtt_ms": 1.535125, + "rtt_ns": 2433916, + "rtt_ms": 2.433916, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:47.256147409Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:03:50.430375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426356, - "rtt_ms": 1.426356, + "rtt_ns": 2418583, + "rtt_ms": 2.418583, "checkpoint": 0, - "vertex_from": "279", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:47.256540838Z" + "vertex_from": "278", + "vertex_to": "289", + "timestamp": "2025-11-27T04:03:50.430394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871635, - "rtt_ms": 1.871635, + "rtt_ns": 2370542, + "rtt_ms": 2.370542, "checkpoint": 0, - "vertex_from": "279", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:47.257116287Z" + "vertex_from": "278", + "vertex_to": "608", + "timestamp": "2025-11-27T04:03:50.430446-08:00" }, { "operation": "add_edge", - "rtt_ns": 970408, - "rtt_ms": 0.970408, + "rtt_ns": 2720167, + "rtt_ms": 2.720167, "checkpoint": 0, - "vertex_from": "280", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:47.257118947Z" + "vertex_from": "278", + "vertex_to": "864", + "timestamp": "2025-11-27T04:03:50.430604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092154, - "rtt_ms": 2.092154, + "rtt_ns": 2245833, + "rtt_ms": 2.245833, "checkpoint": 0, "vertex_from": "279", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:47.257310376Z" + "timestamp": "2025-11-27T04:03:50.431662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149544, - "rtt_ms": 2.149544, + "rtt_ns": 2308125, + "rtt_ms": 2.308125, "checkpoint": 0, "vertex_from": "279", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:47.257335516Z" + "timestamp": "2025-11-27T04:03:50.431681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859025, - "rtt_ms": 1.859025, + "rtt_ns": 2155750, + "rtt_ms": 2.15575, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:47.257335936Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:03:50.431696-08:00" }, { "operation": "add_edge", - "rtt_ns": 2720172, - "rtt_ms": 2.720172, + "rtt_ns": 2259750, + "rtt_ms": 2.25975, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:47.257348146Z" + "vertex_from": "279", + "vertex_to": "769", + "timestamp": "2025-11-27T04:03:50.431717-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099884, - "rtt_ms": 2.099884, + "rtt_ns": 1404333, + "rtt_ms": 1.404333, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:47.257350646Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:03:50.431781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995374, - "rtt_ms": 1.995374, + "rtt_ns": 1794958, + "rtt_ms": 1.794958, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:47.257386566Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:03:50.431872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901794, - "rtt_ms": 1.901794, + "rtt_ns": 2240417, + "rtt_ms": 2.240417, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:47.258009314Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:03:50.431908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480076, - "rtt_ms": 1.480076, + "rtt_ns": 1486458, + "rtt_ms": 1.486458, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "288", - "timestamp": "2025-11-27T01:23:47.258022994Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:03:50.432092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052936, - "rtt_ms": 1.052936, + "rtt_ns": 1741500, + "rtt_ms": 1.7415, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:47.258170323Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:03:50.432136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502905, - "rtt_ms": 1.502905, + "rtt_ns": 2034041, + "rtt_ms": 2.034041, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:47.258840231Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:03:50.432483-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579262, - "rtt_ms": 2.579262, + "rtt_ns": 1623667, + "rtt_ms": 1.623667, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:47.259891738Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:03:50.433532-08:00" }, { "operation": "add_edge", - "rtt_ns": 2787921, - "rtt_ms": 2.787921, + "rtt_ns": 1868708, + "rtt_ms": 1.868708, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:47.259908298Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:03:50.433551-08:00" }, { "operation": "add_edge", - "rtt_ns": 2524792, - "rtt_ms": 2.524792, + "rtt_ns": 1791667, + "rtt_ms": 1.791667, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:47.259912628Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:03:50.433573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2591302, - "rtt_ms": 2.591302, + "rtt_ns": 1876958, + "rtt_ms": 1.876958, "checkpoint": 0, "vertex_from": "280", "vertex_to": "368", - "timestamp": "2025-11-27T01:23:47.259928238Z" + "timestamp": "2025-11-27T04:03:50.433574-08:00" }, { "operation": "add_edge", - "rtt_ns": 2578722, - "rtt_ms": 2.578722, + "rtt_ns": 1916000, + "rtt_ms": 1.916, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:47.259928338Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:03:50.433579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2598892, - "rtt_ms": 2.598892, + "rtt_ns": 1748875, + "rtt_ms": 1.748875, "checkpoint": 0, "vertex_from": "280", "vertex_to": "556", - "timestamp": "2025-11-27T01:23:47.259951888Z" + "timestamp": "2025-11-27T04:03:50.433692-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1975542, + "rtt_ms": 1.975542, + "checkpoint": 0, + "vertex_from": "280", + "vertex_to": "392", + "timestamp": "2025-11-27T04:03:50.433693-08:00" }, { "operation": "bfs", - "rtt_ns": 438819486, - "rtt_ms": 438, + "rtt_ns": 441902708, + "rtt_ms": 441, "checkpoint": 5, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", + "249", + "398", + "554", + "821", + "562", + "368", + "221", + "906", + "187", + "472", + "552", + "261", "462", - "548", - "78", - "318", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "413", - "44", - "212", - "581", - "483", - "985", - "200", - "758", - "597", - "715", - "755", - "535", + "230", "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", - "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "807", - "948", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "126", - "508", - "1", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", - "221", - "38", - "73", - "397", - "343", - "859", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "219", - "84", + "64", + "909", + "617", + "813", "386", - "989", - "125", - "76", - "928", - "253", - "232", - "169", - "284", - "423", - "621", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "892", - "522", - "313", - "145", - "739", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", - "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "567", - "799", - "77", - "163", + "394", + "56", + "217", "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "728", - "199", - "939", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", - "687", - "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "827", - "250", - "46", - "870", - "220", - "161", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "429", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "350", + "86", + "847", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", + "278", + "535", + "837", + "234", + "835", + "396", + "963", + "14", + "172", + "932", + "921", "365", - "217", - "474", - "586", + "150", + "542", + "862", + "166", + "188", + "508", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "494", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "948", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "429", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "949", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "974", - "783", - "478", - "245", - "703", - "264", - "742", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", + "913", + "576", + "116", + "147", "663", - "140", - "167", - "848", - "967", - "890", + "29", + "598", + "819", + "667", + "473", + "934", + "853", + "764", + "915", + "61", + "47", + "219", + "145", + "610", + "341", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "799", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "0", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "335", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "1001", - "771", - "326", - "346", - "770", - "90", + "198", + "952", + "176", "956", - "328", - "648", - "86", - "431", - "184", - "323", - "831", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "727", + "827", + "844", + "227", + "825", + "929", "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "1008", + "418", "638", - "792", - "94", - "236", - "196", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", + "59", + "174", + "974", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "567", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", + "856", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "126", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "591", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", + "654", + "65", + "742", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", "376", - "216", - "351", - "554", - "54", - "636", - "213", - "20", + "573", "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "463", - "718", + "810", "453", - "804", - "486", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", - "577", - "477", - "803", - "62", - "252", - "791", + "310", + "34", + "817", + "121", + "687", + "41", "26", - "11", - "984", - "139", - "192", - "394", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "0", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "31", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "318", + "661", + "479", + "596", + "413", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "939", + "800", "4", - "526", - "210", - "836", - "669", + "874", + "25", + "307", + "369", + "887", + "807", + "75", + "992", + "355", + "137", + "973", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", "976", - "348", - "399", - "316", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", + "754", + "592", + "351", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", + "107", + "223", "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", - "303", - "883", + "244", + "457", "670", - "427", + "32", + "280", + "142", + "268", + "342", "767", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "831", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", "688", - "795", - "818", - "498", - "699", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "1008", - "646", - "91", - "905", - "675", - "434", - "404", - "320", + "585", + "568", "829", - "132", - "143", - "840", - "652", - "194", - "801", - "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", - "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", + "115", + "677", + "299", + "323", "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "847", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", + "431", "164", - "489", - "65", - "880", - "25", - "456", - "727", - "420", - "408", - "628", - "561", - "558", - "218", - "591", - "438", - "960", - "744", - "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", + "141", + "63", + "210", + "777", + "265", "222", - "301", - "425", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "478", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "494", - "913", - "816", - "459", - "513", - "39", - "714", + "989", + "622", + "385", + "686", + "48", + "250", "248", - "915", - "569", - "624", - "678", - "238", + "73", "6", - "455", - "215", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "31", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", "156", - "350" - ], - "timestamp": "2025-11-27T01:23:49.733007735Z" - }, - { - "operation": "bfs", - "rtt_ns": 439877623, - "rtt_ms": 439, - "checkpoint": 5, - "bfs_start": "1", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "855", + "281", + "710", "334", - "548", - "78", - "318", - "41", - "720", - "228", - "988", - "36", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "335", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "738", + "571", + "356", + "859", + "691", + "102", + "317", "96", - "708", - "629", - "633", - "613", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "949", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", "212", - "581", - "483", - "985", - "200", - "758", - "597", - "755", - "535", - "288", - "317", - "133", - "667", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "883", + "717", + "269", + "981", + "520", + "414", + "980", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "1001", + "865", + "586", + "489", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", + "604", + "857", + "324", + "92", + "836", + "468", "712", - "644", - "444", - "782", - "592", - "980", - "872", - "725", - "35", - "969", - "63", - "940", - "962", + "715", + "18", + "774", "225", - "834", - "807", - "948", - "680", - "576", - "310", - "124", - "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", + "806", + "820", + "809", + "902", + "253", + "425", + "306", + "160", "93", - "900", - "118", - "981", + "151", + "882", + "783", + "723", + "149", + "668", "695", - "306", - "508", - "1", - "932", - "377", - "173", - "274", - "369", - "170", - "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", - "221", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "219", - "84", - "386", - "989", - "125", - "76", - "928", - "253", - "232", - "169", - "284", - "423", - "621", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "892", - "522", - "313", - "145", - "739", - "480", - "808", - "135", "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "468", + "611", + "236", + "683", + "961", "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", - "794", - "817", - "18", + "152", + "303", "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", - "896", - "378", - "658", - "888", - "98", - "773", - "487", - "419", - "280", - "195", - "934", - "322", - "772", - "530", - "567", - "799", - "77", - "163", - "101", - "884", - "403", - "696", - "608", - "23", - "107", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "1", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", + "756", + "518", + "739", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", + "718", + "197", + "531", "704", - "738", - "798", - "898", + "194", + "728", + "40", + "231", + "62", + "224", + "679", + "466", + "416", + "657", "966", - "543", + "455", + "530", + "1009", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "409", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "875", + "636", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:52.907335-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 390570709, + "rtt_ms": 390, + "checkpoint": 5, + "bfs_start": "1", + "bfs_radius": 10, + "bfs_result": [ + "249", + "398", + "554", + "821", + "562", + "368", + "221", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "429", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "350", + "86", + "847", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "939", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", - "687", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "827", - "250", - "46", - "870", - "220", - "161", + "932", + "921", "365", - "217", - "474", - "586", + "150", + "542", + "862", + "166", + "188", + "508", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "494", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "948", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", - "855", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "378", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "429", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "949", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "974", - "783", - "478", - "245", - "703", - "264", - "742", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", + "667", + "473", + "934", + "853", + "764", + "915", + "61", + "47", + "219", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "799", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "335", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", + "198", + "952", + "176", "956", - "328", - "648", - "86", - "431", - "184", - "323", - "831", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "727", + "827", + "844", + "227", + "825", + "929", "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "853", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", "638", - "792", - "94", - "236", - "196", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", - "376", - "216", - "351", - "554", - "54", - "636", - "213", + "59", + "174", + "974", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "567", + "103", + "773", + "970", + "899", "69", - "944", - "45", - "463", - "718", - "453", - "804", - "486", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", + "534", + "784", + "601", + "856", + "954", "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "591", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "742", + "333", + "364", + "861", "577", - "477", - "803", - "252", - "791", - "26", - "11", - "984", - "139", "192", - "394", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "687", + "41", + "26", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "318", + "661", + "479", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", + "709", + "13", + "295", + "993", + "590", + "169", "105", - "946", - "933", - "180", - "780", + "170", + "939", + "800", "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", - "303", - "883", - "670", - "427", - "767", - "622", - "740", - "488", - "426", - "158", + "874", + "25", + "307", + "369", "887", - "249", - "851", - "688", - "795", + "807", + "75", + "992", + "355", + "137", + "973", + "331", + "626", "818", - "498", - "699", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", - "194", - "801", - "1009", - "137", - "750", - "71", - "390", + "148", + "629", + "572", "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", - "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "215", + "556", + "320", + "337", + "754", + "592", + "351", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", + "606", + "107", + "223", + "972", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "831", + "135", + "348", + "420", + "84", + "698", + "52", + "475", "485", - "272", - "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "847", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", + "431", "164", - "489", - "65", - "880", - "25", - "456", - "727", - "420", - "408", - "628", - "561", - "558", - "218", - "591", - "438", - "960", - "744", - "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", + "141", + "63", + "210", + "777", + "265", "222", - "301", - "425", - "269", - "281", - "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "478", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "494", - "913", - "816", - "459", - "513", - "39", - "714", + "989", + "622", + "385", + "686", + "48", + "250", "248", - "915", - "569", - "624", - "678", - "238", + "73", "6", - "455", - "215", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", "156", - "350" - ], - "timestamp": "2025-11-27T01:23:50.173350906Z" - }, - { - "operation": "bfs", - "rtt_ns": 429315395, - "rtt_ms": 429, - "checkpoint": 5, - "bfs_start": "2", - "bfs_radius": 10, - "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "318", - "41", - "720", - "228", - "988", - "36", - "96", - "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", + "330", + "119", + "252", "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", - "123", - "81", - "121", - "138", - "242", - "941", - "44", - "212", - "581", + "779", + "85", + "42", + "938", + "793", + "449", "483", - "985", - "200", - "758", - "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", - "174", - "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", - "872", - "725", - "35", + "855", + "281", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "335", + "207", + "749", + "405", + "523", + "558", + "740", "969", - "63", - "940", - "962", - "225", - "834", - "807", - "948", - "680", - "576", - "310", - "124", + "540", + "605", + "437", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "486", + "738", + "571", "356", - "354", - "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", - "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "508", - "932", - "377", - "173", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", + "367", "274", - "369", - "170", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "949", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", "122", - "604", - "30", - "179", - "973", - "842", - "470", - "970", - "9", - "221", - "38", - "73", - "397", - "343", - "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", + "328", + "883", + "717", + "269", + "981", + "520", + "414", + "980", "153", - "286", - "219", - "84", - "386", - "989", - "125", - "76", - "928", - "232", - "169", - "284", - "423", - "621", - "602", - "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "892", - "522", - "313", - "145", - "739", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", + "403", + "267", "291", - "784", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "489", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", + "92", + "836", "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", - "794", - "817", + "712", "18", + "774", + "225", + "806", + "820", + "809", + "902", + "253", + "425", + "306", + "160", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "371", + "152", + "303", "289", - "465", - "643", - "146", - "911", - "207", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", + "616", + "270", + "1", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", + "756", + "518", + "739", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "728", "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", - "32", - "769", - "59", - "162", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", + "1009", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "409", + "370", + "412", + "284", + "876", "896", - "658", - "888", - "98", - "773", - "487", - "419", - "280", + "778", "195", - "934", - "322", - "772", - "530", - "567", - "799", - "77", - "163", + "681", + "875", + "636", + "916", + "565", + "660" + ], + "timestamp": "2025-11-27T04:03:53.29803-08:00" + }, + { + "operation": "bfs", + "rtt_ns": 20003499334, + "rtt_ms": 20003, + "checkpoint": 5, + "bfs_start": "2", + "bfs_radius": 10, + "bfs_result": [ + "249", + "398", + "554", + "821", + "562", + "368", + "221", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", - "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", - "798", - "898", - "966", - "543", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "429", + "644", + "117", + "758", + "241", + "358", + "407", + "708", + "350", + "86", + "847", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", "278", - "100", + "535", "837", - "516", - "937", - "728", - "199", - "939", - "609", - "694", - "332", - "3", - "573", - "916", - "802", - "50", - "546", - "687", + "234", + "835", + "396", + "963", + "14", "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "827", - "250", - "46", - "870", - "220", - "161", + "932", + "921", "365", - "217", - "474", - "586", + "150", + "542", + "862", + "166", + "188", + "508", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", "452", - "190", - "965", - "839", - "557", + "132", + "218", + "595", + "494", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "948", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", + "123", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", "897", - "537", - "518", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", + "581", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", + "985", + "438", + "432", + "666", + "266", "304", - "198", - "873", - "429", - "668", - "467", - "256", - "952", - "387", - "874", - "512", - "257", - "949", - "104", - "115", - "344", - "961", - "302", - "279", - "936", + "833", + "583", + "393", + "45", + "561", "99", - "996", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", "360", - "15", - "992", - "34", - "930", - "974", - "783", - "478", - "245", - "703", - "264", - "742", - "2", - "867", - "800", - "841", - "70", - "424", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", + "667", + "473", + "934", + "764", + "915", + "61", + "47", + "219", + "145", + "610", "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", "796", - "539", - "582", - "615", - "134", - "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", - "157", - "42", + "799", + "428", + "424", + "941", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "335", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", + "198", + "952", + "176", "956", - "328", - "648", - "86", - "431", - "184", - "323", - "831", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", "701", - "97", - "353", - "297", - "684", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "727", + "827", + "844", + "227", + "825", + "929", "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", - "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", "638", - "792", - "94", - "236", - "196", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", "484", - "583", - "276", - "358", - "7", - "89", - "305", - "149", - "564", - "178", - "177", - "355", - "405", - "825", - "372", - "203", - "504", - "186", - "538", - "376", - "216", - "351", - "554", - "54", - "636", - "213", + "59", + "174", + "974", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", "20", - "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", + "209", + "190", + "460", + "721", + "872", + "967", + "5", + "567", + "103", + "773", + "970", + "899", "69", - "944", - "45", - "463", - "718", - "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", + "534", + "784", + "601", + "856", + "954", "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "591", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "742", + "333", + "364", + "861", "577", - "477", - "803", - "252", - "791", - "26", - "11", - "984", - "139", "192", - "394", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "687", + "41", + "26", + "104", + "570", "689", - "497", "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", - "92", - "181", - "723", - "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", - "237", - "17", - "713", - "85", - "979", + "3", + "805", + "755", + "301", + "318", + "661", + "479", + "596", + "682", "106", - "721", - "945", - "159", - "182", - "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "669", - "976", - "348", - "399", - "316", - "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", - "303", - "883", - "670", - "427", - "767", - "622", - "740", - "488", - "426", - "158", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", + "939", + "800", + "4", + "874", + "25", + "307", + "369", "887", - "249", - "851", - "688", - "795", + "807", + "75", + "992", + "355", + "137", + "973", + "331", + "626", "818", - "498", - "699", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", + "305", + "130", "646", - "91", - "905", "675", - "434", - "404", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", "320", + "337", + "754", + "592", + "351", + "587", + "627", + "322", + "377", + "287", + "964", + "804", + "282", + "186", + "313", + "794", + "633", + "199", + "786", + "606", + "107", + "223", + "972", + "244", + "457", + "670", + "32", + "280", + "142", + "268", + "342", + "767", + "246", + "841", + "140", + "888", + "772", + "659", + "650", + "931", + "529", + "7", + "792", + "831", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", + "688", + "585", + "568", "829", - "132", - "143", - "840", - "652", - "194", - "801", - "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "478", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "989", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", "144", - "914", - "373", - "642", - "594", - "243", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "399", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", + "338", + "838", + "335", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", "605", "437", - "813", - "176", + "77", + "798", + "846", + "257", + "179", + "768", + "716", + "97", + "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", "910", - "464", - "314", - "523", - "598", - "821", - "534", - "175", - "485", - "272", - "409", - "902", + "108", + "201", + "127", + "637", + "247", + "367", + "274", + "694", + "613", + "50", + "459", + "16", + "442", + "519", + "168", + "512", + "949", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", + "843", + "427", + "713", + "769", + "212", + "514", + "36", + "157", + "8", + "204", + "352", + "122", + "328", + "883", + "717", + "269", + "981", "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "847", - "164", + "414", + "980", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", "489", - "65", - "880", - "25", - "456", - "727", - "420", - "408", - "628", - "561", - "558", - "218", - "591", - "438", - "960", - "744", - "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", + "937", + "161", + "522", + "100", + "184", + "12", + "2", + "705", + "226", + "89", + "564", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", + "372", + "131", + "15", + "492", + "604", + "857", + "324", + "92", + "836", + "468", + "712", + "18", + "774", + "225", + "806", + "820", + "809", + "902", "425", - "269", - "281", - "778", - "285", - "155", + "306", "160", - "130", - "193", - "924", - "117", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "371", "152", + "303", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", + "237", + "672", + "789", + "525", "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "494", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "477", + "756", + "518", + "739", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", + "194", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", "455", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156", - "350" + "530", + "1009", + "171", + "550", + "880", + "229", + "76", + "11", + "594", + "314", + "409", + "370", + "412", + "284", + "876", + "896", + "778", + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:50.603116549Z" + "timestamp": "2025-11-27T04:04:13.301572-08:00" }, { "operation": "bfs", - "rtt_ns": 426316483, - "rtt_ms": 426, + "rtt_ns": 386750000, + "rtt_ms": 386, "checkpoint": 5, "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "318", - "41", - "720", - "228", - "988", - "36", - "96", + "249", + "398", + "554", + "562", + "368", + "221", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "429", + "644", + "117", + "758", + "241", + "358", + "407", "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", + "350", + "86", + "847", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", + "278", + "535", + "837", + "234", + "835", + "396", + "963", + "14", + "172", + "932", + "921", + "365", + "150", + "542", + "862", + "166", + "188", + "508", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", + "452", + "132", + "218", + "595", + "494", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "948", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", "123", - "81", - "121", - "138", - "242", - "44", - "212", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", + "897", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", "581", - "483", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", "985", - "200", - "758", - "597", - "755", - "535", - "288", - "317", - "133", + "438", + "432", + "666", + "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", + "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", "667", - "492", + "473", + "934", + "764", + "915", + "61", + "47", + "219", + "145", + "610", + "341", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", + "796", + "799", + "428", + "424", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", + "401", + "198", + "952", + "176", + "956", + "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", + "701", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", + "697", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "727", + "827", + "844", + "227", + "825", + "929", + "781", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "638", + "220", + "652", + "848", + "27", + "707", + "911", + "71", + "597", + "129", + "24", + "484", + "59", "174", + "974", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", + "190", + "460", + "721", "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "807", - "948", - "680", - "576", - "310", - "124", - "356", - "354", + "967", + "5", + "567", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", "856", - "8", + "954", + "433", + "450", + "158", + "329", + "286", + "312", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "591", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "742", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", "410", - "656", - "838", - "618", - "327", - "428", - "10", - "312", - "246", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "687", + "41", + "26", + "104", + "570", + "689", + "673", + "805", + "755", + "301", + "318", + "661", + "479", + "596", + "682", + "106", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", + "939", + "800", + "4", + "874", + "25", "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "508", - "932", - "377", - "173", - "274", "369", - "170", - "122", - "604", - "30", - "179", + "887", + "807", + "75", + "992", + "355", + "137", "973", - "842", - "470", - "970", - "9", - "221", - "38", - "73", - "397", - "343", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", + "351", + "587", "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "219", - "84", - "386", - "989", - "125", - "76", - "928", - "232", - "169", - "284", - "423", - "621", - "602", + "322", + "377", "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "892", - "522", + "964", + "804", + "282", + "186", "313", - "145", - "739", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", + "633", + "199", + "786", + "606", + "107", + "223", + "972", + "244", + "457", + "670", "32", - "769", - "59", - "162", - "896", - "658", - "888", - "98", - "773", - "487", - "419", "280", - "195", - "934", - "322", + "142", + "268", + "342", + "246", + "841", + "140", + "888", "772", - "530", - "567", - "799", - "77", - "163", - "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", + "659", + "650", + "931", + "529", + "7", + "792", + "831", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "478", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "989", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", + "838", + "335", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "605", + "437", + "77", "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "728", - "199", - "939", + "846", + "257", + "179", + "768", + "716", + "97", "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", + "367", + "274", "694", - "332", - "573", - "916", - "802", + "613", "50", - "546", - "687", - "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "827", - "250", - "46", - "870", - "220", - "161", - "365", - "217", - "474", - "586", - "452", - "190", - "965", - "839", - "557", - "897", - "537", - "518", - "304", - "198", - "873", - "429", - "668", - "467", - "256", - "952", - "387", - "874", + "459", + "16", + "442", + "519", + "168", "512", - "257", "949", - "104", - "115", - "344", - "961", - "302", - "279", - "936", - "99", - "996", - "360", - "15", - "992", - "34", - "930", - "974", - "783", - "478", - "245", - "703", - "264", - "742", - "867", - "800", - "841", - "70", - "424", - "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", - "796", - "539", - "582", - "615", - "134", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", + "427", + "713", + "769", + "212", + "514", + "36", "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "335", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", - "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "956", + "8", + "204", + "352", + "122", "328", - "648", - "86", - "431", + "883", + "717", + "269", + "981", + "520", + "414", + "980", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "489", + "937", + "161", + "522", + "100", "184", - "323", - "831", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", - "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", + "12", "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "638", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", + "226", "89", - "305", - "149", "564", - "178", - "177", - "355", - "405", - "825", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", "372", - "203", - "504", - "186", - "538", - "376", - "216", - "351", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "463", - "718", - "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", - "577", - "803", - "252", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "689", - "497", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", + "131", + "15", + "492", + "604", + "857", + "324", "92", - "181", - "723", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "371", + "152", + "303", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "669", - "976", - "348", - "316", - "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", - "303", - "883", - "670", - "427", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "795", - "818", - "498", - "699", - "370", - "460", - "787", - "906", - "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "616", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", + "756", + "518", + "739", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "847", - "164", - "489", - "65", - "880", - "25", - "456", - "727", - "420", - "408", - "628", - "561", - "558", - "218", - "591", - "438", - "960", - "744", + "370", "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", - "425", - "269", - "281", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "494", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", - "455", - "16", - "793", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156", - "350" + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:51.029873301Z" + "timestamp": "2025-11-27T04:04:13.688447-08:00" }, { "operation": "bfs", - "rtt_ns": 426310304, - "rtt_ms": 426, + "rtt_ns": 979887458, + "rtt_ms": 979, "checkpoint": 5, "bfs_start": "3", "bfs_radius": 10, "bfs_result": [ - "266", - "311", - "150", - "334", - "548", - "78", - "318", - "41", - "720", - "228", - "988", - "36", - "96", + "249", + "398", + "554", + "562", + "368", + "221", + "906", + "187", + "472", + "552", + "261", + "230", + "288", + "64", + "909", + "617", + "813", + "386", + "776", + "394", + "56", + "217", + "101", + "854", + "80", + "53", + "612", + "375", + "374", + "901", + "429", + "644", + "117", + "758", + "241", + "358", + "407", "708", - "629", - "633", - "613", - "367", - "136", - "634", - "805", - "664", - "418", - "717", - "114", - "882", - "524", - "336", - "440", - "677", + "350", + "86", + "847", + "834", + "185", + "946", + "98", + "538", + "515", + "128", + "46", + "655", + "278", + "535", + "837", + "234", + "835", + "396", + "963", + "14", + "172", + "932", + "921", + "365", + "150", + "542", + "862", + "166", + "188", + "508", + "206", + "995", + "271", + "615", + "905", + "621", + "83", + "162", + "625", + "238", + "945", + "452", + "132", + "218", + "595", + "494", + "339", + "387", + "22", + "9", + "678", + "770", + "435", + "948", + "752", + "423", + "461", + "448", + "750", + "277", + "788", + "74", + "196", + "722", + "588", + "404", + "389", "123", - "81", - "121", - "138", - "242", - "44", - "212", + "159", + "173", + "928", + "898", + "555", + "110", + "193", + "962", + "362", + "363", + "143", + "897", + "474", + "111", + "240", + "730", + "359", + "551", + "803", + "325", + "908", + "177", + "732", + "578", + "884", + "316", "581", - "483", + "724", + "54", + "944", + "684", + "850", + "500", + "426", + "397", + "920", + "273", + "245", + "725", + "263", "985", - "200", - "758", + "438", + "432", + "666", + "266", + "304", + "833", + "583", + "393", + "45", + "561", + "99", + "543", + "390", + "384", + "504", + "496", + "866", + "208", + "309", + "360", + "214", + "541", + "933", + "81", + "632", + "302", + "311", + "203", + "202", + "913", + "576", + "116", + "147", + "29", + "598", + "819", + "667", + "473", + "934", + "764", + "915", + "61", + "47", + "219", + "145", + "610", + "341", + "175", + "239", + "630", + "900", + "599", + "656", + "791", + "243", + "796", + "799", + "428", + "424", + "822", + "464", + "354", + "569", + "979", + "940", + "977", + "808", + "528", + "549", + "228", + "55", + "67", + "456", + "690", + "490", + "703", + "851", + "546", + "343", + "340", + "860", + "146", + "714", + "411", + "290", + "470", + "618", + "785", + "165", + "930", + "321", + "584", + "676", + "297", + "869", + "790", + "593", + "401", + "198", + "952", + "176", + "956", + "275", + "858", + "614", + "232", + "579", + "560", + "816", + "120", + "849", + "283", + "582", + "701", + "748", + "183", + "57", + "832", + "674", + "113", + "211", + "787", + "653", + "23", + "649", + "881", + "163", + "563", + "30", + "536", + "960", + "505", + "503", + "524", + "867", + "914", + "697", + "292", + "729", + "696", + "279", + "885", + "79", + "395", + "727", + "827", + "844", + "227", + "825", + "929", + "781", + "699", + "487", + "35", + "648", + "559", + "37", + "870", + "418", + "638", + "220", + "652", + "848", + "27", + "707", + "911", + "71", "597", - "755", - "535", - "288", - "317", - "133", - "667", - "492", + "129", + "24", + "484", + "59", "174", + "974", + "923", + "430", + "60", + "795", + "465", + "801", + "336", + "51", + "968", + "736", + "771", + "20", "209", - "785", - "147", - "282", - "119", - "240", - "730", - "234", - "655", - "87", - "14", - "986", - "496", - "712", - "644", - "444", - "782", - "592", - "980", + "190", + "460", + "721", "872", - "725", - "35", - "969", - "63", - "940", - "962", - "225", - "834", - "807", - "948", - "680", - "576", - "310", - "124", - "356", - "354", + "967", + "5", + "567", + "103", + "773", + "970", + "899", + "69", + "534", + "784", + "601", "856", - "8", - "410", - "656", - "838", - "618", - "327", - "428", - "10", + "954", + "433", + "450", + "158", + "329", + "286", "312", - "246", + "553", + "444", + "353", + "285", + "580", + "839", + "440", + "544", + "78", + "828", + "706", + "513", + "634", + "539", + "591", + "392", + "205", + "640", + "826", + "408", + "357", + "87", + "28", + "545", + "33", + "986", + "890", + "419", + "178", + "654", + "65", + "742", + "333", + "364", + "861", + "577", + "192", + "608", + "643", + "262", + "620", + "692", + "402", + "406", + "410", + "517", + "376", + "573", + "454", + "810", + "453", + "310", + "34", + "817", + "121", + "687", + "41", + "26", + "104", + "570", + "689", + "673", + "3", + "805", + "755", + "301", + "318", + "661", + "479", + "596", + "682", + "106", + "709", + "13", + "295", + "993", + "590", + "169", + "105", + "170", + "939", + "800", + "4", + "874", + "25", "307", - "777", - "292", - "416", - "359", - "572", - "93", - "900", - "118", - "981", - "695", - "306", - "508", - "932", - "377", - "173", - "274", "369", - "170", - "122", - "604", - "30", - "179", + "887", + "807", + "75", + "992", + "355", + "137", "973", - "842", - "470", - "970", - "9", - "221", - "38", - "73", - "397", - "343", + "331", + "626", + "818", + "305", + "130", + "646", + "675", + "148", + "629", + "572", + "233", + "1002", + "976", + "154", + "260", + "308", + "665", + "180", + "345", + "628", + "10", + "481", + "422", + "603", + "556", + "320", + "337", + "754", + "592", + "351", + "587", "627", - "657", - "901", - "102", - "709", - "814", - "993", - "968", - "241", - "153", - "286", - "219", - "84", - "386", - "989", - "125", - "76", - "928", - "232", - "169", - "284", - "423", - "621", - "602", + "322", + "377", "287", - "55", - "866", - "931", - "142", - "352", - "691", - "28", - "963", - "892", - "522", + "964", + "804", + "282", + "186", "313", - "145", - "739", - "480", - "808", - "135", - "533", - "299", - "854", - "614", - "540", - "640", - "340", - "291", - "784", - "468", - "371", - "532", - "361", - "679", - "665", - "270", - "503", - "849", - "637", "794", - "817", - "18", - "289", - "465", - "643", - "146", - "911", - "207", - "40", - "267", - "625", - "776", - "515", - "649", - "83", - "131", - "568", - "552", - "790", - "384", - "265", - "553", + "633", + "199", + "786", + "606", + "107", + "223", + "972", + "244", + "457", + "670", "32", - "769", - "59", - "162", - "896", - "658", - "888", - "98", - "773", - "487", - "419", "280", - "195", - "934", - "322", + "142", + "268", + "342", + "246", + "841", + "140", + "888", "772", - "530", - "567", - "799", - "77", - "163", - "101", - "884", - "403", - "696", - "608", - "23", - "107", - "391", + "659", + "650", + "931", + "529", + "7", + "792", + "831", + "135", + "348", + "420", + "84", + "698", + "52", + "475", + "485", + "688", + "585", + "568", + "829", + "115", + "677", + "299", + "323", + "651", + "868", + "133", + "91", + "21", + "66", + "181", + "624", + "574", + "760", + "72", + "463", + "458", + "112", + "824", + "124", + "852", + "431", + "164", + "141", + "63", + "210", + "777", + "265", + "222", + "373", + "167", + "125", + "139", + "685", + "242", + "527", + "680", + "521", + "892", + "641", + "296", + "532", + "94", + "347", + "443", + "182", + "294", + "537", + "478", + "744", + "873", + "49", + "984", + "346", + "936", + "996", + "745", + "19", + "607", + "566", + "58", + "436", + "989", + "622", + "385", + "686", + "48", + "250", + "248", + "73", + "6", + "802", + "647", + "814", + "90", + "300", + "619", + "400", + "547", + "144", + "44", + "88", + "39", + "864", + "602", + "658", + "216", + "344", + "118", + "388", + "156", + "330", + "119", + "252", + "664", + "779", + "85", + "42", + "938", + "793", + "449", + "483", + "281", + "710", + "334", + "434", + "43", + "138", + "366", + "421", + "497", + "276", + "82", + "743", + "812", + "662", "338", - "231", - "422", - "764", - "810", - "571", - "362", - "704", - "738", + "838", + "335", + "207", + "749", + "405", + "523", + "558", + "740", + "969", + "540", + "605", + "437", + "77", "798", - "898", - "966", - "543", - "278", - "100", - "837", - "516", - "937", - "728", - "199", - "939", + "846", + "257", + "179", + "768", + "716", + "97", "609", + "264", + "498", + "482", + "326", + "738", + "571", + "356", + "691", + "102", + "317", + "96", + "516", + "720", + "910", + "108", + "201", + "127", + "637", + "247", + "367", + "274", "694", - "332", - "3", - "573", - "916", - "802", + "613", "50", - "546", - "687", - "172", - "247", - "819", - "748", - "450", - "366", - "290", - "259", - "531", - "619", - "827", - "250", - "46", - "870", - "220", - "161", - "365", - "217", - "474", - "586", - "452", - "190", - "965", - "839", - "557", - "897", - "537", - "518", - "304", - "198", - "873", - "429", - "668", - "467", - "256", - "952", - "387", - "874", + "459", + "16", + "442", + "519", + "168", "512", - "257", "949", - "104", - "115", - "344", - "961", - "302", - "279", - "936", - "99", - "996", - "360", - "15", - "992", - "34", - "930", - "974", - "783", - "478", - "245", - "703", - "264", - "742", - "867", - "800", - "841", - "70", - "424", - "202", - "341", - "375", - "395", - "774", - "899", - "268", - "129", - "421", - "587", - "514", - "127", - "832", - "128", - "140", - "167", - "848", - "967", - "890", - "796", - "539", - "582", - "615", - "134", + "451", + "213", + "918", + "480", + "526", + "256", + "965", + "924", "843", - "293", - "811", - "103", - "626", - "788", - "620", - "923", - "331", + "427", + "713", + "769", + "212", + "514", + "36", "157", - "42", - "165", - "298", - "325", - "363", - "722", - "295", - "472", - "845", - "912", - "641", - "335", - "52", - "68", - "864", - "536", - "674", - "110", - "595", - "521", - "833", - "710", - "461", - "66", - "277", - "473", - "401", - "451", - "920", - "585", - "519", - "168", - "414", - "300", - "850", - "206", - "603", - "921", - "262", - "775", - "707", - "672", - "771", - "326", - "346", - "770", - "90", - "956", + "8", + "204", + "352", + "122", "328", - "648", - "86", - "431", + "883", + "717", + "269", + "981", + "520", + "414", + "980", + "153", + "403", + "267", + "291", + "293", + "840", + "134", + "327", + "994", + "865", + "586", + "489", + "937", + "161", + "522", + "100", "184", - "323", - "831", - "227", - "904", - "364", - "442", - "600", - "211", - "686", - "607", - "729", - "275", - "701", - "97", - "353", - "297", - "684", - "697", - "224", - "208", - "964", - "283", - "185", - "588", - "368", - "48", - "479", - "197", - "80", - "230", - "612", - "645", - "475", - "528", - "660", - "21", - "681", - "349", - "596", - "781", - "22", - "430", - "333", - "324", - "141", - "565", - "448", - "88", - "5", - "562", - "593", - "337", - "223", + "12", "705", - "809", - "566", - "542", - "556", - "261", - "43", - "72", - "389", - "457", - "490", - "638", - "792", - "94", - "236", - "196", - "484", - "583", - "276", - "358", - "7", + "226", "89", - "305", - "149", "564", - "178", - "177", - "355", - "405", - "825", + "467", + "136", + "904", + "488", + "259", + "332", + "775", + "912", + "811", "372", - "203", - "504", - "186", - "538", - "376", - "216", - "351", - "554", - "54", - "636", - "213", - "20", - "454", - "417", - "545", - "698", - "482", - "53", - "865", - "402", - "876", - "918", - "550", - "75", - "481", - "188", - "294", - "69", - "944", - "45", - "463", - "718", - "453", - "804", - "647", - "347", - "666", - "977", - "578", - "584", - "296", - "13", - "151", - "517", - "61", - "166", - "632", - "737", - "154", - "433", - "12", - "779", - "736", - "683", - "388", - "407", - "846", - "577", - "803", - "252", - "791", - "26", - "11", - "984", - "139", - "192", - "394", - "689", - "497", - "673", - "400", - "449", - "861", - "994", - "690", - "922", - "49", - "938", - "527", - "786", - "752", - "339", - "676", - "881", - "580", - "116", - "79", - "551", - "868", - "574", - "120", - "908", - "345", - "411", + "131", + "15", + "492", + "604", + "857", + "324", "92", - "181", - "723", + "836", + "468", + "712", + "18", + "774", + "225", "806", - "357", - "258", - "113", - "64", - "547", - "466", - "812", - "329", - "954", - "789", - "19", - "51", - "58", - "570", - "559", - "716", + "820", + "809", + "902", + "425", + "306", + "160", + "93", + "151", + "882", + "783", + "723", + "149", + "668", + "695", + "533", + "611", + "236", + "683", + "961", + "371", + "152", + "303", + "289", + "38", + "600", + "780", + "557", + "114", + "589", + "272", "237", - "17", - "713", - "85", - "979", - "106", - "721", - "945", - "159", - "182", + "672", + "789", "525", - "692", - "105", - "946", - "933", - "180", - "780", - "4", - "526", - "210", - "836", - "669", - "976", - "348", - "316", - "606", - "617", - "1002", - "630", - "33", - "108", - "852", - "392", - "112", - "929", - "321", - "972", - "590", - "273", - "862", - "760", - "82", - "60", - "745", - "37", - "826", - "148", - "57", - "205", - "860", - "500", - "659", - "406", - "24", - "260", - "432", - "544", - "601", - "458", - "374", - "653", - "342", - "768", - "303", - "883", - "670", - "427", - "622", - "740", - "488", - "426", - "158", - "887", - "249", - "851", - "688", - "795", - "818", - "498", - "699", - "370", - "460", - "787", - "906", + "616", + "270", + "70", + "155", + "845", + "645", + "988", + "753", + "17", + "361", "756", - "995", - "835", - "885", - "393", - "706", - "47", - "610", - "824", - "171", - "724", - "56", - "646", - "91", - "905", - "675", - "434", - "404", - "320", - "829", - "132", - "143", - "840", - "652", + "518", + "739", + "842", + "746", + "642", + "417", + "922", + "298", + "737", + "200", + "669", + "349", + "258", + "68", + "782", + "548", + "391", + "718", + "197", + "531", + "704", "194", - "801", + "728", + "40", + "231", + "224", + "679", + "466", + "416", + "657", + "966", + "455", + "530", "1009", - "137", - "750", - "71", - "390", - "233", - "27", - "611", - "201", - "685", - "144", - "914", - "373", - "642", + "171", + "550", + "880", + "229", + "76", + "11", "594", - "243", - "330", - "605", - "437", - "813", - "176", - "910", - "464", "314", - "523", - "598", - "534", - "175", - "485", - "272", "409", - "902", - "520", - "214", - "753", - "746", - "661", - "682", - "29", - "263", - "579", - "651", - "844", - "599", - "505", - "398", - "309", - "560", - "828", - "589", - "435", - "847", - "164", - "489", - "65", - "880", - "25", - "456", - "727", - "420", - "408", - "628", - "561", - "558", - "218", - "591", - "438", - "960", - "744", + "370", "412", - "443", - "229", - "74", - "754", - "869", - "67", - "749", - "385", - "204", - "875", - "222", - "301", - "425", - "269", - "281", + "284", + "876", + "896", "778", - "285", - "155", - "160", - "130", - "193", - "924", - "117", - "152", - "616", - "743", - "549", - "436", - "529", - "541", - "654", - "732", - "187", - "555", - "857", - "271", - "858", - "244", - "909", - "662", - "226", - "494", - "913", - "816", - "459", - "513", - "39", - "714", - "248", - "915", - "569", - "624", - "678", - "238", - "6", - "455", - "16", - "793", - "822", - "820", - "396", - "563", - "239", - "183", - "308", - "650", - "111", - "156", - "350" + "195", + "681", + "875", + "636", + "916", + "565", + "660" ], - "timestamp": "2025-11-27T01:23:51.456608843Z" + "timestamp": "2025-11-27T04:04:14.668461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404266, - "rtt_ms": 1.404266, + "rtt_ns": 1195125, + "rtt_ms": 1.195125, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.458131899Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:04:14.669686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461246, - "rtt_ms": 1.461246, + "rtt_ns": 1220666, + "rtt_ms": 1.220666, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.458150469Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.669721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655576, - "rtt_ms": 1.655576, + "rtt_ns": 1380541, + "rtt_ms": 1.380541, "checkpoint": 0, "vertex_from": "280", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.458297319Z" + "timestamp": "2025-11-27T04:04:14.669856-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236284, - "rtt_ms": 2.236284, + "rtt_ns": 1463916, + "rtt_ms": 1.463916, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "298", - "timestamp": "2025-11-27T01:23:51.458984057Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:14.669973-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237234, - "rtt_ms": 2.237234, + "rtt_ns": 1515875, + "rtt_ms": 1.515875, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.459017977Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:04:14.66999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2242323, - "rtt_ms": 2.242323, + "rtt_ns": 1498458, + "rtt_ms": 1.498458, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.459036046Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:14.670004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2330953, - "rtt_ms": 2.330953, + "rtt_ns": 1507167, + "rtt_ms": 1.507167, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.459065126Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:04:14.670009-08:00" }, { "operation": "add_edge", - "rtt_ns": 2300963, - "rtt_ms": 2.300963, + "rtt_ns": 1490458, + "rtt_ms": 1.490458, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.459068326Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:14.670021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782662, - "rtt_ms": 2.782662, + "rtt_ns": 1548542, + "rtt_ms": 1.548542, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:51.459493085Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.670064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778552, - "rtt_ms": 2.778552, + "rtt_ns": 1562208, + "rtt_ms": 1.562208, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:51.459535235Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:04:14.670081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395366, - "rtt_ms": 1.395366, + "rtt_ns": 1516958, + "rtt_ms": 1.516958, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.460383193Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:14.671206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313237, - "rtt_ms": 1.313237, + "rtt_ns": 1200125, + "rtt_ms": 1.200125, "checkpoint": 0, "vertex_from": "280", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.460384733Z" + "timestamp": "2025-11-27T04:04:14.671222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436706, - "rtt_ms": 1.436706, + "rtt_ns": 1675958, + "rtt_ms": 1.675958, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.460474692Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:04:14.671666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416386, - "rtt_ms": 1.416386, + "rtt_ns": 1775917, + "rtt_ms": 1.775917, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "357", - "timestamp": "2025-11-27T01:23:51.460482952Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.671841-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267573, - "rtt_ms": 2.267573, + "rtt_ns": 2151250, + "rtt_ms": 2.15125, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.460566712Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.671873-08:00" }, { "operation": "add_edge", - "rtt_ns": 2467193, - "rtt_ms": 2.467193, + "rtt_ns": 1915875, + "rtt_ms": 1.915875, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.460602832Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.67189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684076, - "rtt_ms": 1.684076, + "rtt_ns": 1889083, + "rtt_ms": 1.889083, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:51.460703972Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:14.671893-08:00" }, { "operation": "add_edge", - "rtt_ns": 3107651, - "rtt_ms": 3.107651, + "rtt_ns": 1825959, + "rtt_ms": 1.825959, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.46126115Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.671907-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055774, - "rtt_ms": 2.055774, + "rtt_ns": 2055708, + "rtt_ms": 2.055708, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.461551569Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.671913-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040754, - "rtt_ms": 2.040754, + "rtt_ns": 1988333, + "rtt_ms": 1.988333, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.461577269Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:04:14.672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493416, - "rtt_ms": 1.493416, + "rtt_ns": 1634083, + "rtt_ms": 1.634083, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.462062308Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:04:14.672857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2292693, - "rtt_ms": 2.292693, + "rtt_ns": 1762167, + "rtt_ms": 1.762167, "checkpoint": 0, - "vertex_from": "281", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:51.462778935Z" + "vertex_from": "280", + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:14.672969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2150933, - "rtt_ms": 2.150933, + "rtt_ns": 1369459, + "rtt_ms": 1.369459, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.462856755Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:14.673037-08:00" }, { "operation": "add_edge", - "rtt_ns": 2487252, - "rtt_ms": 2.487252, + "rtt_ns": 1338417, + "rtt_ms": 1.338417, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:51.462877925Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:14.673233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299976, - "rtt_ms": 1.299976, + "rtt_ns": 1340375, + "rtt_ms": 1.340375, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "604", - "timestamp": "2025-11-27T01:23:51.462880405Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:14.673249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419696, - "rtt_ms": 1.419696, + "rtt_ns": 1252625, + "rtt_ms": 1.252625, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.462972305Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:04:14.673253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2422763, - "rtt_ms": 2.422763, + "rtt_ns": 1596291, + "rtt_ms": 1.596291, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.463028925Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:04:14.67344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2680632, - "rtt_ms": 2.680632, + "rtt_ns": 1555500, + "rtt_ms": 1.5555, "checkpoint": 0, - "vertex_from": "280", + "vertex_from": "281", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.463071485Z" + "timestamp": "2025-11-27T04:04:14.673447-08:00" }, { "operation": "add_edge", - "rtt_ns": 2606622, - "rtt_ms": 2.606622, + "rtt_ns": 1586458, + "rtt_ms": 1.586458, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.463083264Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:14.673502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917814, - "rtt_ms": 1.917814, + "rtt_ns": 1733000, + "rtt_ms": 1.733, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.463180414Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1438156, - "rtt_ms": 1.438156, - "checkpoint": 0, - "vertex_from": "282", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.464319111Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:14.673607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829204, - "rtt_ms": 1.829204, + "rtt_ns": 1305167, + "rtt_ms": 1.305167, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "305", - "timestamp": "2025-11-27T01:23:51.464860099Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:14.674344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035554, - "rtt_ms": 2.035554, + "rtt_ns": 1525375, + "rtt_ms": 1.525375, "checkpoint": 0, - "vertex_from": "282", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.465010189Z" + "vertex_from": "281", + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:14.674384-08:00" }, { "operation": "add_edge", - "rtt_ns": 3002041, - "rtt_ms": 3.002041, + "rtt_ns": 1424625, + "rtt_ms": 1.424625, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.465066229Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:14.674395-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1996704, - "rtt_ms": 1.996704, + "rtt_ns": 1189250, + "rtt_ms": 1.18925, "checkpoint": 0, "vertex_from": "741", - "timestamp": "2025-11-27T01:23:51.465072249Z" + "timestamp": "2025-11-27T04:04:14.674638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253624, - "rtt_ms": 2.253624, + "rtt_ns": 1495417, + "rtt_ms": 1.495417, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.465137289Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:14.67473-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349253, - "rtt_ms": 2.349253, + "rtt_ns": 1218166, + "rtt_ms": 1.218166, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.465207488Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:04:14.674827-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527763, - "rtt_ms": 2.527763, + "rtt_ns": 1409375, + "rtt_ms": 1.409375, "checkpoint": 0, - "vertex_from": "281", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.465310108Z" + "vertex_from": "282", + "vertex_to": "305", + "timestamp": "2025-11-27T04:04:14.67485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201924, - "rtt_ms": 2.201924, + "rtt_ns": 1660333, + "rtt_ms": 1.660333, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:51.465384248Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.674914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2931502, - "rtt_ms": 2.931502, + "rtt_ns": 1423042, + "rtt_ms": 1.423042, "checkpoint": 0, "vertex_from": "282", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.466016196Z" + "timestamp": "2025-11-27T04:04:14.674926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765945, - "rtt_ms": 1.765945, + "rtt_ns": 1732208, + "rtt_ms": 1.732208, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.466086426Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:14.674982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058907, - "rtt_ms": 1.058907, + "rtt_ns": 1384917, + "rtt_ms": 1.384917, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.466126526Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.675771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143307, - "rtt_ms": 1.143307, + "rtt_ns": 1484875, + "rtt_ms": 1.484875, "checkpoint": 0, "vertex_from": "282", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.466156026Z" + "timestamp": "2025-11-27T04:04:14.675881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095287, - "rtt_ms": 1.095287, + "rtt_ns": 1649875, + "rtt_ms": 1.649875, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "741", - "timestamp": "2025-11-27T01:23:51.466167916Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:04:14.675996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330387, - "rtt_ms": 1.330387, + "rtt_ns": 1413459, + "rtt_ms": 1.413459, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.466192096Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:04:14.676146-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1520833, + "rtt_ms": 1.520833, + "checkpoint": 0, + "vertex_from": "282", + "vertex_to": "741", + "timestamp": "2025-11-27T04:04:14.676159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174457, - "rtt_ms": 1.174457, + "rtt_ns": 1298875, + "rtt_ms": 1.298875, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.466384005Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:14.676282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278096, - "rtt_ms": 1.278096, + "rtt_ns": 1464166, + "rtt_ms": 1.464166, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.466416995Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:04:14.67638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478946, - "rtt_ms": 1.478946, + "rtt_ns": 1500500, + "rtt_ms": 1.5005, "checkpoint": 0, - "vertex_from": "284", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.467864531Z" + "vertex_from": "283", + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:14.676427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901055, - "rtt_ms": 1.901055, + "rtt_ns": 1651959, + "rtt_ms": 1.651959, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.467918831Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:14.676503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626595, - "rtt_ms": 1.626595, + "rtt_ns": 1686625, + "rtt_ms": 1.686625, "checkpoint": 0, - "vertex_from": "284", - "vertex_to": "287", - "timestamp": "2025-11-27T01:23:51.46804805Z" + "vertex_from": "283", + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:14.676516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2800652, - "rtt_ms": 2.800652, + "rtt_ns": 1348625, + "rtt_ms": 1.348625, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:51.46811223Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:04:14.677231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2748232, - "rtt_ms": 2.748232, + "rtt_ns": 1472792, + "rtt_ms": 1.472792, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.46813351Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:04:14.677245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032374, - "rtt_ms": 2.032374, + "rtt_ns": 1514583, + "rtt_ms": 1.514583, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.46820225Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.677513-08:00" }, { "operation": "add_edge", - "rtt_ns": 791408, - "rtt_ms": 0.791408, + "rtt_ns": 1388583, + "rtt_ms": 1.388583, "checkpoint": 0, - "vertex_from": "284", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:51.468711479Z" + "vertex_from": "283", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.677548-08:00" }, { "operation": "add_edge", - "rtt_ns": 884867, - "rtt_ms": 0.884867, + "rtt_ns": 1105667, + "rtt_ms": 1.105667, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.468751438Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:04:14.67761-08:00" }, { "operation": "add_edge", - "rtt_ns": 713608, - "rtt_ms": 0.713608, + "rtt_ns": 1341750, + "rtt_ms": 1.34175, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.468832648Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.677625-08:00" }, { "operation": "add_edge", - "rtt_ns": 720248, - "rtt_ms": 0.720248, + "rtt_ns": 1384042, + "rtt_ms": 1.384042, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "940", - "timestamp": "2025-11-27T01:23:51.468855218Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.677812-08:00" }, { "operation": "add_edge", - "rtt_ns": 816268, - "rtt_ms": 0.816268, + "rtt_ns": 1329458, + "rtt_ms": 1.329458, "checkpoint": 0, "vertex_from": "284", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.468865888Z" + "timestamp": "2025-11-27T04:04:14.677846-08:00" }, { "operation": "add_edge", - "rtt_ns": 663878, - "rtt_ms": 0.663878, + "rtt_ns": 1533541, + "rtt_ms": 1.533541, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.468867438Z" + "vertex_to": "287", + "timestamp": "2025-11-27T04:04:14.677914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2894772, - "rtt_ms": 2.894772, + "rtt_ns": 1840125, + "rtt_ms": 1.840125, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.468984658Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.677987-08:00" }, { "operation": "add_edge", - "rtt_ns": 2910892, - "rtt_ms": 2.910892, + "rtt_ns": 1409666, + "rtt_ms": 1.409666, "checkpoint": 0, - "vertex_from": "283", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.469038858Z" + "vertex_from": "284", + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:14.678642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2936582, - "rtt_ms": 2.936582, + "rtt_ns": 1141792, + "rtt_ms": 1.141792, "checkpoint": 0, - "vertex_from": "283", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.469093838Z" + "vertex_from": "284", + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.678655-08:00" }, { "operation": "add_edge", - "rtt_ns": 770208, - "rtt_ms": 0.770208, + "rtt_ns": 1241041, + "rtt_ms": 1.241041, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.469523506Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:04:14.678868-08:00" }, { "operation": "add_edge", - "rtt_ns": 754678, - "rtt_ms": 0.754678, + "rtt_ns": 1415625, + "rtt_ms": 1.415625, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "307", - "timestamp": "2025-11-27T01:23:51.469622266Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:14.678967-08:00" }, { "operation": "add_edge", - "rtt_ns": 3452430, - "rtt_ms": 3.45243, + "rtt_ns": 1829208, + "rtt_ms": 1.829208, "checkpoint": 0, - "vertex_from": "283", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.469648766Z" + "vertex_from": "284", + "vertex_to": "940", + "timestamp": "2025-11-27T04:04:14.679075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036777, - "rtt_ms": 1.036777, + "rtt_ns": 1217541, + "rtt_ms": 1.217541, "checkpoint": 0, - "vertex_from": "284", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.469750426Z" + "vertex_from": "285", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.679205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014467, - "rtt_ms": 1.014467, + "rtt_ns": 1361584, + "rtt_ms": 1.361584, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "994", - "timestamp": "2025-11-27T01:23:51.469872935Z" + "vertex_to": "484", + "timestamp": "2025-11-27T04:04:14.679277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668016, - "rtt_ms": 1.668016, + "rtt_ns": 1477917, + "rtt_ms": 1.477917, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:51.470502214Z" + "vertex_to": "994", + "timestamp": "2025-11-27T04:04:14.679291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649756, - "rtt_ms": 1.649756, + "rtt_ns": 1739541, + "rtt_ms": 1.739541, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "484", - "timestamp": "2025-11-27T01:23:51.470519484Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:04:14.679351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713475, - "rtt_ms": 1.713475, + "rtt_ns": 1628083, + "rtt_ms": 1.628083, "checkpoint": 0, - "vertex_from": "285", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.470700203Z" + "vertex_from": "284", + "vertex_to": "307", + "timestamp": "2025-11-27T04:04:14.679475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640175, - "rtt_ms": 1.640175, + "rtt_ns": 1397917, + "rtt_ms": 1.397917, "checkpoint": 0, "vertex_from": "285", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.470735453Z" + "timestamp": "2025-11-27T04:04:14.680055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220817, - "rtt_ms": 1.220817, + "rtt_ns": 1419375, + "rtt_ms": 1.419375, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.470745723Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.680062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715265, - "rtt_ms": 1.715265, + "rtt_ns": 1491000, + "rtt_ms": 1.491, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.470755443Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:04:14.680459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323006, - "rtt_ms": 1.323006, + "rtt_ns": 1477792, + "rtt_ms": 1.477792, "checkpoint": 0, "vertex_from": "285", "vertex_to": "685", - "timestamp": "2025-11-27T01:23:51.470973892Z" + "timestamp": "2025-11-27T04:04:14.680554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365326, - "rtt_ms": 1.365326, + "rtt_ns": 1364250, + "rtt_ms": 1.36425, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "293", - "timestamp": "2025-11-27T01:23:51.470988912Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:04:14.680642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613116, - "rtt_ms": 1.613116, + "rtt_ns": 1849708, + "rtt_ms": 1.849708, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "289", - "timestamp": "2025-11-27T01:23:51.471488131Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.680718-08:00" }, { "operation": "add_edge", - "rtt_ns": 991757, - "rtt_ms": 0.991757, + "rtt_ns": 1369834, + "rtt_ms": 1.369834, "checkpoint": 0, "vertex_from": "286", "vertex_to": "345", - "timestamp": "2025-11-27T01:23:51.471512381Z" + "timestamp": "2025-11-27T04:04:14.680722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046667, - "rtt_ms": 1.046667, + "rtt_ns": 1453875, + "rtt_ms": 1.453875, "checkpoint": 0, "vertex_from": "285", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.471550021Z" + "timestamp": "2025-11-27T04:04:14.680745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918774, - "rtt_ms": 1.918774, + "rtt_ns": 1554959, + "rtt_ms": 1.554959, "checkpoint": 0, "vertex_from": "285", "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.47167049Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1087167, - "rtt_ms": 1.087167, - "checkpoint": 0, - "vertex_from": "287", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.47182361Z" + "timestamp": "2025-11-27T04:04:14.680763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640335, - "rtt_ms": 1.640335, + "rtt_ns": 1565792, + "rtt_ms": 1.565792, "checkpoint": 0, "vertex_from": "287", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.472341698Z" + "timestamp": "2025-11-27T04:04:14.681042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506146, - "rtt_ms": 1.506146, + "rtt_ns": 1318292, + "rtt_ms": 1.318292, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:51.472482088Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.681381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748625, - "rtt_ms": 1.748625, + "rtt_ns": 1432875, + "rtt_ms": 1.432875, "checkpoint": 0, - "vertex_from": "288", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.472496368Z" + "vertex_from": "287", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.681489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772385, - "rtt_ms": 1.772385, + "rtt_ns": 1370167, + "rtt_ms": 1.370167, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "685", - "timestamp": "2025-11-27T01:23:51.472529568Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:04:14.681925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924865, - "rtt_ms": 1.924865, + "rtt_ns": 1434709, + "rtt_ms": 1.434709, "checkpoint": 0, "vertex_from": "288", "vertex_to": "473", - "timestamp": "2025-11-27T01:23:51.472915027Z" + "timestamp": "2025-11-27T04:04:14.682078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507865, - "rtt_ms": 1.507865, + "rtt_ns": 1899292, + "rtt_ms": 1.899292, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.472997956Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:04:14.682359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2745012, - "rtt_ms": 2.745012, + "rtt_ns": 1605208, + "rtt_ms": 1.605208, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.474259103Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:14.682372-08:00" }, { "operation": "add_edge", - "rtt_ns": 2851821, - "rtt_ms": 2.851821, + "rtt_ns": 1665875, + "rtt_ms": 1.665875, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.474402912Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:14.682385-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091244, - "rtt_ms": 2.091244, + "rtt_ns": 1754958, + "rtt_ms": 1.754958, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:51.474434012Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:04:14.682501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2806692, - "rtt_ms": 2.806692, + "rtt_ns": 1504000, + "rtt_ms": 1.504, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.474478172Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.682547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000664, - "rtt_ms": 2.000664, + "rtt_ns": 1895917, + "rtt_ms": 1.895917, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:51.474484872Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.682618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2693102, - "rtt_ms": 2.693102, + "rtt_ns": 1278833, + "rtt_ms": 1.278833, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.474517562Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:04:14.682661-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017444, - "rtt_ms": 2.017444, + "rtt_ns": 1380667, + "rtt_ms": 1.380667, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:51.474548292Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:04:14.68287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051324, - "rtt_ms": 2.051324, + "rtt_ns": 1301333, + "rtt_ms": 1.301333, "checkpoint": 0, "vertex_from": "288", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.474549802Z" + "timestamp": "2025-11-27T04:04:14.683228-08:00" }, { "operation": "add_edge", - "rtt_ns": 2329873, - "rtt_ms": 2.329873, + "rtt_ns": 1247541, + "rtt_ms": 1.247541, "checkpoint": 0, "vertex_from": "288", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.47524641Z" + "timestamp": "2025-11-27T04:04:14.683607-08:00" }, { "operation": "add_edge", - "rtt_ns": 2469073, - "rtt_ms": 2.469073, + "rtt_ns": 1291083, + "rtt_ms": 1.291083, "checkpoint": 0, "vertex_from": "288", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.475468079Z" + "timestamp": "2025-11-27T04:04:14.683666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294176, - "rtt_ms": 1.294176, + "rtt_ns": 1452166, + "rtt_ms": 1.452166, "checkpoint": 0, "vertex_from": "288", "vertex_to": "682", - "timestamp": "2025-11-27T01:23:51.475698018Z" + "timestamp": "2025-11-27T04:04:14.683956-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1350833, + "rtt_ms": 1.350833, + "checkpoint": 0, + "vertex_from": "288", + "vertex_to": "468", + "timestamp": "2025-11-27T04:04:14.683971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263086, - "rtt_ms": 1.263086, + "rtt_ns": 1441792, + "rtt_ms": 1.441792, "checkpoint": 0, "vertex_from": "288", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.475699358Z" + "timestamp": "2025-11-27T04:04:14.683991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472295, - "rtt_ms": 1.472295, + "rtt_ns": 1620916, + "rtt_ms": 1.620916, "checkpoint": 0, "vertex_from": "288", "vertex_to": "341", - "timestamp": "2025-11-27T01:23:51.475732788Z" + "timestamp": "2025-11-27T04:04:14.684007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329796, - "rtt_ms": 1.329796, + "rtt_ns": 1391792, + "rtt_ms": 1.391792, "checkpoint": 0, "vertex_from": "288", "vertex_to": "327", - "timestamp": "2025-11-27T01:23:51.475815668Z" + "timestamp": "2025-11-27T04:04:14.68406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381026, - "rtt_ms": 1.381026, + "rtt_ns": 1304125, + "rtt_ms": 1.304125, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "468", - "timestamp": "2025-11-27T01:23:51.475860188Z" + "vertex_to": "543", + "timestamp": "2025-11-27T04:04:14.684175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386226, - "rtt_ms": 1.386226, + "rtt_ns": 2104125, + "rtt_ms": 2.104125, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "543", - "timestamp": "2025-11-27T01:23:51.475904698Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:04:14.684184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385076, - "rtt_ms": 1.385076, + "rtt_ns": 1590083, + "rtt_ms": 1.590083, "checkpoint": 0, "vertex_from": "288", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.475934128Z" + "timestamp": "2025-11-27T04:04:14.684821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393106, - "rtt_ms": 1.393106, + "rtt_ns": 1496875, + "rtt_ms": 1.496875, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:51.475945158Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:04:14.685164-08:00" }, { "operation": "add_edge", - "rtt_ns": 787767, - "rtt_ms": 0.787767, + "rtt_ns": 1624166, + "rtt_ms": 1.624166, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "968", - "timestamp": "2025-11-27T01:23:51.476035637Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:04:14.685232-08:00" }, { "operation": "add_edge", - "rtt_ns": 988968, - "rtt_ms": 0.988968, + "rtt_ns": 1371333, + "rtt_ms": 1.371333, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "803", - "timestamp": "2025-11-27T01:23:51.476688116Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:04:14.68538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245186, - "rtt_ms": 1.245186, + "rtt_ns": 1437458, + "rtt_ms": 1.437458, "checkpoint": 0, "vertex_from": "288", "vertex_to": "594", - "timestamp": "2025-11-27T01:23:51.476714375Z" + "timestamp": "2025-11-27T04:04:14.685395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072367, - "rtt_ms": 1.072367, + "rtt_ns": 1591042, + "rtt_ms": 1.591042, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "988", - "timestamp": "2025-11-27T01:23:51.476772755Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:04:14.685566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159337, - "rtt_ms": 1.159337, + "rtt_ns": 1584416, + "rtt_ms": 1.584416, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:51.476893465Z" + "vertex_to": "988", + "timestamp": "2025-11-27T04:04:14.685576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051937, - "rtt_ms": 1.051937, + "rtt_ns": 1535042, + "rtt_ms": 1.535042, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.476913015Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:14.685596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068617, - "rtt_ms": 1.068617, + "rtt_ns": 1436000, + "rtt_ms": 1.436, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.476974595Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.685612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189877, - "rtt_ms": 1.189877, + "rtt_ns": 1572500, + "rtt_ms": 1.5725, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.477009025Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:04:14.685758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117657, - "rtt_ms": 1.117657, + "rtt_ns": 1410792, + "rtt_ms": 1.410792, "checkpoint": 0, "vertex_from": "288", "vertex_to": "696", - "timestamp": "2025-11-27T01:23:51.477053275Z" + "timestamp": "2025-11-27T04:04:14.686233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612536, - "rtt_ms": 1.612536, + "rtt_ns": 1293542, + "rtt_ms": 1.293542, "checkpoint": 0, "vertex_from": "288", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.477649753Z" + "timestamp": "2025-11-27T04:04:14.686527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719065, - "rtt_ms": 1.719065, + "rtt_ns": 1566417, + "rtt_ms": 1.566417, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.477665593Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:04:14.687326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328796, - "rtt_ms": 1.328796, + "rtt_ns": 1960917, + "rtt_ms": 1.960917, "checkpoint": 0, "vertex_from": "288", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.478021442Z" + "timestamp": "2025-11-27T04:04:14.687342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251156, - "rtt_ms": 1.251156, + "rtt_ns": 1959292, + "rtt_ms": 1.959292, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.478165761Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:14.687356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331646, - "rtt_ms": 1.331646, + "rtt_ns": 2202666, + "rtt_ms": 2.202666, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.478226881Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.687369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265117, - "rtt_ms": 1.265117, + "rtt_ns": 2136834, + "rtt_ms": 2.136834, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.478319461Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:14.687714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559986, - "rtt_ms": 1.559986, + "rtt_ns": 2113416, + "rtt_ms": 2.113416, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:51.478334931Z" + "vertex_to": "440", + "timestamp": "2025-11-27T04:04:14.687727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655406, - "rtt_ms": 1.655406, + "rtt_ns": 1588167, + "rtt_ms": 1.588167, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.478372631Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:04:14.687824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444406, - "rtt_ms": 1.444406, + "rtt_ns": 2292042, + "rtt_ms": 2.292042, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "344", - "timestamp": "2025-11-27T01:23:51.478454401Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:04:14.68786-08:00" }, { "operation": "add_edge", - "rtt_ns": 889587, - "rtt_ms": 0.889587, + "rtt_ns": 2402250, + "rtt_ms": 2.40225, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:51.47854102Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:14.687999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597395, - "rtt_ms": 1.597395, + "rtt_ns": 1556750, + "rtt_ms": 1.55675, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "440", - "timestamp": "2025-11-27T01:23:51.47857449Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:04:14.688085-08:00" }, { "operation": "add_edge", - "rtt_ns": 927937, - "rtt_ms": 0.927937, + "rtt_ns": 1355292, + "rtt_ms": 1.355292, "checkpoint": 0, "vertex_from": "288", "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.47859526Z" + "timestamp": "2025-11-27T04:04:14.688682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248626, - "rtt_ms": 1.248626, + "rtt_ns": 1438000, + "rtt_ms": 1.438, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.479585277Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:04:14.688807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291526, - "rtt_ms": 1.291526, + "rtt_ns": 1593458, + "rtt_ms": 1.593458, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.479611787Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:04:14.68895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388506, - "rtt_ms": 1.388506, + "rtt_ns": 1619625, + "rtt_ms": 1.619625, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:51.479616977Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:04:14.688962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265406, - "rtt_ms": 1.265406, + "rtt_ns": 1151833, + "rtt_ms": 1.151833, "checkpoint": 0, "vertex_from": "288", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.479639207Z" + "timestamp": "2025-11-27T04:04:14.688976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887924, - "rtt_ms": 1.887924, + "rtt_ns": 1295584, + "rtt_ms": 1.295584, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "740", - "timestamp": "2025-11-27T01:23:51.479911376Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:14.68901-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1463792, + "rtt_ms": 1.463792, + "checkpoint": 0, + "vertex_from": "288", + "vertex_to": "538", + "timestamp": "2025-11-27T04:04:14.689192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503925, - "rtt_ms": 1.503925, + "rtt_ns": 1416958, + "rtt_ms": 1.416958, "checkpoint": 0, "vertex_from": "288", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.479959306Z" + "timestamp": "2025-11-27T04:04:14.689278-08:00" }, { "operation": "add_edge", - "rtt_ns": 2462013, - "rtt_ms": 2.462013, + "rtt_ns": 1324542, + "rtt_ms": 1.324542, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:51.480629184Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:04:14.689324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091284, - "rtt_ms": 2.091284, + "rtt_ns": 1270625, + "rtt_ms": 1.270625, "checkpoint": 0, "vertex_from": "288", "vertex_to": "296", - "timestamp": "2025-11-27T01:23:51.480669414Z" + "timestamp": "2025-11-27T04:04:14.689357-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134314, - "rtt_ms": 2.134314, + "rtt_ns": 1146417, + "rtt_ms": 1.146417, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:51.480676814Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:14.690158-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100244, - "rtt_ms": 2.100244, + "rtt_ns": 1428375, + "rtt_ms": 1.428375, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "669", - "timestamp": "2025-11-27T01:23:51.480697074Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:14.690379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189827, - "rtt_ms": 1.189827, + "rtt_ns": 1624375, + "rtt_ms": 1.624375, "checkpoint": 0, "vertex_from": "288", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.480778744Z" + "timestamp": "2025-11-27T04:04:14.690433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883035, - "rtt_ms": 1.883035, + "rtt_ns": 1791792, + "rtt_ms": 1.791792, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.481525092Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:04:14.690476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097704, - "rtt_ms": 2.097704, + "rtt_ns": 1512875, + "rtt_ms": 1.512875, "checkpoint": 0, "vertex_from": "288", "vertex_to": "298", - "timestamp": "2025-11-27T01:23:51.481716971Z" + "timestamp": "2025-11-27T04:04:14.690476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145904, - "rtt_ms": 2.145904, + "rtt_ns": 1524834, + "rtt_ms": 1.524834, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.481759321Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:04:14.690502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124487, - "rtt_ms": 1.124487, + "rtt_ns": 1240208, + "rtt_ms": 1.240208, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.481822951Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:04:14.690521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072117, - "rtt_ms": 1.072117, + "rtt_ns": 1380375, + "rtt_ms": 1.380375, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:51.481851891Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.690576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203037, - "rtt_ms": 1.203037, + "rtt_ns": 1377333, + "rtt_ms": 1.377333, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "482", - "timestamp": "2025-11-27T01:23:51.481874091Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:04:14.690735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035074, - "rtt_ms": 2.035074, + "rtt_ns": 1503166, + "rtt_ms": 1.503166, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.48199594Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:04:14.690829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332636, - "rtt_ms": 1.332636, + "rtt_ns": 1206125, + "rtt_ms": 1.206125, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:51.48201103Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:04:14.691641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427116, - "rtt_ms": 1.427116, + "rtt_ns": 1151541, + "rtt_ms": 1.151541, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:51.48205739Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:14.691654-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230344, - "rtt_ms": 2.230344, + "rtt_ns": 1113250, + "rtt_ms": 1.11325, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.48214317Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:04:14.691943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168726, - "rtt_ms": 1.168726, + "rtt_ns": 1441042, + "rtt_ms": 1.441042, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.482929587Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:14.691963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226576, - "rtt_ms": 1.226576, + "rtt_ns": 1817584, + "rtt_ms": 1.817584, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "727", - "timestamp": "2025-11-27T01:23:51.482945507Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:04:14.691976-08:00" }, { "operation": "add_edge", - "rtt_ns": 974927, - "rtt_ms": 0.974927, + "rtt_ns": 1515250, + "rtt_ms": 1.51525, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:51.482987607Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:04:14.691993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181526, - "rtt_ms": 1.181526, + "rtt_ns": 1620958, + "rtt_ms": 1.620958, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.483006137Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:04:14.692002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132496, - "rtt_ms": 1.132496, + "rtt_ns": 1527375, + "rtt_ms": 1.527375, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.483008597Z" + "vertex_to": "727", + "timestamp": "2025-11-27T04:04:14.692005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174306, - "rtt_ms": 1.174306, + "rtt_ns": 1302500, + "rtt_ms": 1.3025, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.483028707Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:04:14.69204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500755, - "rtt_ms": 1.500755, + "rtt_ns": 1472583, + "rtt_ms": 1.472583, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:51.483029117Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:14.69205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569085, - "rtt_ms": 1.569085, + "rtt_ns": 1298250, + "rtt_ms": 1.29825, "checkpoint": 0, "vertex_from": "288", "vertex_to": "470", - "timestamp": "2025-11-27T01:23:51.483713675Z" + "timestamp": "2025-11-27T04:04:14.692953-08:00" }, { "operation": "add_edge", - "rtt_ns": 814648, - "rtt_ms": 0.814648, + "rtt_ns": 1362750, + "rtt_ms": 1.36275, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:51.483805205Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:04:14.693004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829535, - "rtt_ms": 1.829535, + "rtt_ns": 1234250, + "rtt_ms": 1.23425, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:51.483827695Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:04:14.693228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017157, - "rtt_ms": 1.017157, + "rtt_ns": 1293042, + "rtt_ms": 1.293042, "checkpoint": 0, "vertex_from": "288", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.483947814Z" + "timestamp": "2025-11-27T04:04:14.693243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909774, - "rtt_ms": 1.909774, + "rtt_ns": 1496834, + "rtt_ms": 1.496834, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:51.483968564Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:04:14.693499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023307, - "rtt_ms": 1.023307, + "rtt_ns": 1582000, + "rtt_ms": 1.582, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:51.483970544Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:04:14.693559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688485, - "rtt_ms": 1.688485, + "rtt_ns": 1525916, + "rtt_ms": 1.525916, "checkpoint": 0, - "vertex_from": "288", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:51.484696432Z" + "vertex_from": "289", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:14.693577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673815, - "rtt_ms": 1.673815, + "rtt_ns": 1536750, + "rtt_ms": 1.53675, "checkpoint": 0, - "vertex_from": "288", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:51.484705642Z" + "vertex_from": "289", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.693577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754925, - "rtt_ms": 1.754925, + "rtt_ns": 1672541, + "rtt_ms": 1.672541, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "630", - "timestamp": "2025-11-27T01:23:51.484765252Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:04:14.693637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793335, - "rtt_ms": 1.793335, + "rtt_ns": 1677042, + "rtt_ms": 1.677042, "checkpoint": 0, - "vertex_from": "289", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.484825582Z" + "vertex_from": "288", + "vertex_to": "992", + "timestamp": "2025-11-27T04:04:14.693682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299036, - "rtt_ms": 1.299036, + "rtt_ns": 1484208, + "rtt_ms": 1.484208, "checkpoint": 0, "vertex_from": "289", "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.485106041Z" + "timestamp": "2025-11-27T04:04:14.694439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432546, - "rtt_ms": 1.432546, + "rtt_ns": 1217334, + "rtt_ms": 1.217334, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.485148441Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:14.694446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413556, - "rtt_ms": 1.413556, + "rtt_ns": 1592792, + "rtt_ms": 1.592792, "checkpoint": 0, "vertex_from": "289", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.485242861Z" + "timestamp": "2025-11-27T04:04:14.694598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684046, - "rtt_ms": 1.684046, + "rtt_ns": 1425667, + "rtt_ms": 1.425667, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.48563319Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:04:14.69467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683546, - "rtt_ms": 1.683546, + "rtt_ns": 1390541, + "rtt_ms": 1.390541, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:51.48565394Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:14.694969-08:00" }, { "operation": "add_edge", - "rtt_ns": 952318, - "rtt_ms": 0.952318, + "rtt_ns": 1472459, + "rtt_ms": 1.472459, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.48565433Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.694973-08:00" }, { "operation": "add_edge", - "rtt_ns": 930688, - "rtt_ms": 0.930688, + "rtt_ns": 1396125, + "rtt_ms": 1.396125, "checkpoint": 0, "vertex_from": "289", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.48569691Z" + "timestamp": "2025-11-27T04:04:14.694974-08:00" }, { "operation": "add_edge", - "rtt_ns": 926347, - "rtt_ms": 0.926347, + "rtt_ns": 1337875, + "rtt_ms": 1.337875, "checkpoint": 0, "vertex_from": "289", "vertex_to": "330", - "timestamp": "2025-11-27T01:23:51.485753259Z" + "timestamp": "2025-11-27T04:04:14.694975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177647, - "rtt_ms": 1.177647, + "rtt_ns": 1309583, + "rtt_ms": 1.309583, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.485884799Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.694992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931505, - "rtt_ms": 1.931505, + "rtt_ns": 1441167, + "rtt_ms": 1.441167, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.485904259Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:14.695001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450576, - "rtt_ms": 1.450576, + "rtt_ns": 1095709, + "rtt_ms": 1.095709, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.486557587Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:04:14.695766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410726, - "rtt_ms": 1.410726, + "rtt_ns": 1246958, + "rtt_ms": 1.246958, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.486560917Z" + "vertex_to": "442", + "timestamp": "2025-11-27T04:04:14.695846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333416, - "rtt_ms": 1.333416, + "rtt_ns": 1498250, + "rtt_ms": 1.49825, "checkpoint": 0, "vertex_from": "289", "vertex_to": "609", - "timestamp": "2025-11-27T01:23:51.486577537Z" + "timestamp": "2025-11-27T04:04:14.695945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245676, - "rtt_ms": 1.245676, + "rtt_ns": 1680792, + "rtt_ms": 1.680792, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:51.486901176Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.696123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280556, - "rtt_ms": 1.280556, + "rtt_ns": 1391500, + "rtt_ms": 1.3915, "checkpoint": 0, "vertex_from": "289", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.486937206Z" + "timestamp": "2025-11-27T04:04:14.696362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460246, - "rtt_ms": 1.460246, + "rtt_ns": 1404959, + "rtt_ms": 1.404959, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "442", - "timestamp": "2025-11-27T01:23:51.487096616Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:04:14.696381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822685, - "rtt_ms": 1.822685, + "rtt_ns": 1403000, + "rtt_ms": 1.403, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:51.487577014Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:14.696396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016537, - "rtt_ms": 1.016537, + "rtt_ns": 1596667, + "rtt_ms": 1.596667, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.487578734Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:04:14.696598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240417, - "rtt_ms": 1.240417, + "rtt_ns": 1692708, + "rtt_ms": 1.692708, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "710", - "timestamp": "2025-11-27T01:23:51.487799264Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.696667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026944, - "rtt_ms": 2.026944, + "rtt_ns": 1708584, + "rtt_ms": 1.708584, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:51.487913273Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:04:14.696684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376666, - "rtt_ms": 1.376666, + "rtt_ns": 1588583, + "rtt_ms": 1.588583, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "334", - "timestamp": "2025-11-27T01:23:51.487955963Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:14.697712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081807, - "rtt_ms": 1.081807, + "rtt_ns": 1786833, + "rtt_ms": 1.786833, "checkpoint": 0, "vertex_from": "289", "vertex_to": "796", - "timestamp": "2025-11-27T01:23:51.487984283Z" + "timestamp": "2025-11-27T04:04:14.697733-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305103, - "rtt_ms": 2.305103, + "rtt_ns": 2287375, + "rtt_ms": 2.287375, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.488004083Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:14.698055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125774, - "rtt_ms": 2.125774, + "rtt_ns": 1765209, + "rtt_ms": 1.765209, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.488032183Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:04:14.698162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184017, - "rtt_ms": 1.184017, + "rtt_ns": 2095959, + "rtt_ms": 2.095959, "checkpoint": 0, "vertex_from": "289", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.488762121Z" + "timestamp": "2025-11-27T04:04:14.698478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833815, - "rtt_ms": 1.833815, + "rtt_ns": 2653667, + "rtt_ms": 2.653667, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.488771861Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1215797, - "rtt_ms": 1.215797, - "checkpoint": 0, - "vertex_from": "289", - "vertex_to": "396", - "timestamp": "2025-11-27T01:23:51.488795681Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:04:14.6985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715415, - "rtt_ms": 1.715415, + "rtt_ns": 2154292, + "rtt_ms": 2.154292, "checkpoint": 0, "vertex_from": "289", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.488813181Z" + "timestamp": "2025-11-27T04:04:14.698517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316936, - "rtt_ms": 1.316936, + "rtt_ns": 1886208, + "rtt_ms": 1.886208, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.489302159Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:04:14.698571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602455, - "rtt_ms": 1.602455, + "rtt_ns": 2320625, + "rtt_ms": 2.320625, "checkpoint": 0, "vertex_from": "289", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:51.489402939Z" + "timestamp": "2025-11-27T04:04:14.69892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432246, - "rtt_ms": 1.432246, + "rtt_ns": 2278166, + "rtt_ms": 2.278166, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.489437949Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:04:14.698946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593546, - "rtt_ms": 1.593546, + "rtt_ns": 1505041, + "rtt_ms": 1.505041, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:51.489509449Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:14.699219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632596, - "rtt_ms": 1.632596, + "rtt_ns": 1086167, + "rtt_ms": 1.086167, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "292", - "timestamp": "2025-11-27T01:23:51.489590089Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:04:14.69925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672815, - "rtt_ms": 1.672815, + "rtt_ns": 1736958, + "rtt_ms": 1.736958, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.489706148Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:14.699471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030257, - "rtt_ms": 1.030257, + "rtt_ns": 1433084, + "rtt_ms": 1.433084, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:51.489793688Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.699489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540906, - "rtt_ms": 1.540906, + "rtt_ns": 1750250, + "rtt_ms": 1.75025, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.490339187Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:14.700322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075177, - "rtt_ms": 1.075177, + "rtt_ns": 1859042, + "rtt_ms": 1.859042, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "984", - "timestamp": "2025-11-27T01:23:51.490479586Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:14.700338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681625, - "rtt_ms": 1.681625, + "rtt_ns": 1835917, + "rtt_ms": 1.835917, "checkpoint": 0, "vertex_from": "290", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.490495626Z" + "timestamp": "2025-11-27T04:04:14.700354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765805, - "rtt_ms": 1.765805, + "rtt_ns": 1868292, + "rtt_ms": 1.868292, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.490538896Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:14.700369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249277, - "rtt_ms": 1.249277, + "rtt_ns": 1244083, + "rtt_ms": 1.244083, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.490552886Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:04:14.700716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122427, - "rtt_ms": 1.122427, + "rtt_ns": 1481583, + "rtt_ms": 1.481583, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.490561686Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:14.700732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068327, - "rtt_ms": 1.068327, + "rtt_ns": 1803459, + "rtt_ms": 1.803459, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:51.490578706Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.70075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670385, - "rtt_ms": 1.670385, + "rtt_ns": 1829167, + "rtt_ms": 1.829167, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.491262284Z" + "vertex_to": "984", + "timestamp": "2025-11-27T04:04:14.70075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614206, - "rtt_ms": 1.614206, + "rtt_ns": 1331250, + "rtt_ms": 1.33125, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:51.491322964Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:14.700821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569746, - "rtt_ms": 1.569746, + "rtt_ns": 1928291, + "rtt_ms": 1.928291, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.491365284Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:04:14.70115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073267, - "rtt_ms": 1.073267, + "rtt_ns": 1385625, + "rtt_ms": 1.385625, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.491413174Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:14.70174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246887, - "rtt_ms": 1.246887, + "rtt_ns": 1070125, + "rtt_ms": 1.070125, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.491727843Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.701803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719465, - "rtt_ms": 1.719465, + "rtt_ns": 1632250, + "rtt_ms": 1.63225, "checkpoint": 0, "vertex_from": "290", "vertex_to": "912", - "timestamp": "2025-11-27T01:23:51.492260031Z" + "timestamp": "2025-11-27T04:04:14.702003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685805, - "rtt_ms": 1.685805, + "rtt_ns": 1704459, + "rtt_ms": 1.704459, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.492266461Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.702043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770485, - "rtt_ms": 1.770485, + "rtt_ns": 1953625, + "rtt_ms": 1.953625, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.492267921Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:04:14.70267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740625, - "rtt_ms": 1.740625, + "rtt_ns": 2366458, + "rtt_ms": 2.366458, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "361", - "timestamp": "2025-11-27T01:23:51.492294741Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.702689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044707, - "rtt_ms": 1.044707, + "rtt_ns": 2873000, + "rtt_ms": 2.873, "checkpoint": 0, "vertex_from": "290", "vertex_to": "661", - "timestamp": "2025-11-27T01:23:51.492308331Z" + "timestamp": "2025-11-27T04:04:14.703626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023147, - "rtt_ms": 1.023147, + "rtt_ns": 2495250, + "rtt_ms": 2.49525, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.492348711Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:14.703648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785105, - "rtt_ms": 1.785105, + "rtt_ns": 2910417, + "rtt_ms": 2.910417, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.492348641Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.703664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885314, - "rtt_ms": 1.885314, + "rtt_ns": 2857375, + "rtt_ms": 2.857375, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.493252058Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.70368-08:00" }, { "operation": "add_edge", - "rtt_ns": 2863271, - "rtt_ms": 2.863271, + "rtt_ns": 2142584, + "rtt_ms": 2.142584, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:51.495125342Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:04:14.703947-08:00" }, { "operation": "add_edge", - "rtt_ns": 3734868, - "rtt_ms": 3.734868, + "rtt_ns": 2399250, + "rtt_ms": 2.39925, "checkpoint": 0, "vertex_from": "290", "vertex_to": "657", - "timestamp": "2025-11-27T01:23:51.495149442Z" + "timestamp": "2025-11-27T04:04:14.704142-08:00" }, { "operation": "add_edge", - "rtt_ns": 3000391, - "rtt_ms": 3.000391, + "rtt_ns": 2156625, + "rtt_ms": 2.156625, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.495267822Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:04:14.704161-08:00" }, { "operation": "add_edge", - "rtt_ns": 3580319, - "rtt_ms": 3.580319, + "rtt_ns": 2331209, + "rtt_ms": 2.331209, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:51.495310052Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:04:14.704376-08:00" }, { "operation": "add_edge", - "rtt_ns": 2985071, - "rtt_ms": 2.985071, + "rtt_ns": 2100458, + "rtt_ms": 2.100458, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.495335162Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:04:14.70479-08:00" }, { "operation": "add_edge", - "rtt_ns": 3188350, - "rtt_ms": 3.18835, + "rtt_ns": 1159875, + "rtt_ms": 1.159875, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.495497831Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:14.704809-08:00" }, { "operation": "add_edge", - "rtt_ns": 3247010, - "rtt_ms": 3.24701, + "rtt_ns": 1308750, + "rtt_ms": 1.30875, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.495516241Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.704973-08:00" }, { "operation": "add_edge", - "rtt_ns": 3268440, - "rtt_ms": 3.26844, + "rtt_ns": 2342833, + "rtt_ms": 2.342833, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.495619801Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:14.705015-08:00" }, { "operation": "add_edge", - "rtt_ns": 2396113, - "rtt_ms": 2.396113, + "rtt_ns": 1344333, + "rtt_ms": 1.344333, "checkpoint": 0, "vertex_from": "290", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.495650331Z" + "timestamp": "2025-11-27T04:04:14.705025-08:00" }, { "operation": "add_edge", - "rtt_ns": 3418560, - "rtt_ms": 3.41856, + "rtt_ns": 1439042, + "rtt_ms": 1.439042, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.495715311Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:14.705067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687446, - "rtt_ms": 1.687446, + "rtt_ns": 1434583, + "rtt_ms": 1.434583, "checkpoint": 0, "vertex_from": "291", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.496816168Z" + "timestamp": "2025-11-27T04:04:14.705385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536836, - "rtt_ms": 1.536836, + "rtt_ns": 1106542, + "rtt_ms": 1.106542, "checkpoint": 0, "vertex_from": "291", "vertex_to": "322", - "timestamp": "2025-11-27T01:23:51.496847758Z" + "timestamp": "2025-11-27T04:04:14.705484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715016, - "rtt_ms": 1.715016, + "rtt_ns": 1359666, + "rtt_ms": 1.359666, "checkpoint": 0, "vertex_from": "291", "vertex_to": "292", - "timestamp": "2025-11-27T01:23:51.496866858Z" + "timestamp": "2025-11-27T04:04:14.705503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598986, - "rtt_ms": 1.598986, + "rtt_ns": 1410625, + "rtt_ms": 1.410625, "checkpoint": 0, "vertex_from": "291", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.496869368Z" + "timestamp": "2025-11-27T04:04:14.705572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241466, - "rtt_ms": 1.241466, + "rtt_ns": 1068541, + "rtt_ms": 1.068541, "checkpoint": 0, "vertex_from": "291", "vertex_to": "526", - "timestamp": "2025-11-27T01:23:51.496892737Z" + "timestamp": "2025-11-27T04:04:14.706095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427316, - "rtt_ms": 1.427316, + "rtt_ns": 1321000, + "rtt_ms": 1.321, "checkpoint": 0, "vertex_from": "291", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.496927607Z" + "timestamp": "2025-11-27T04:04:14.70613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550396, - "rtt_ms": 1.550396, + "rtt_ns": 1651458, + "rtt_ms": 1.651458, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.497068527Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:04:14.706443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499666, - "rtt_ms": 1.499666, + "rtt_ns": 1651375, + "rtt_ms": 1.651375, "checkpoint": 0, "vertex_from": "291", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.497120417Z" + "timestamp": "2025-11-27T04:04:14.706675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868385, - "rtt_ms": 1.868385, + "rtt_ns": 1846125, + "rtt_ms": 1.846125, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:51.497204367Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:14.70682-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019964, - "rtt_ms": 2.019964, + "rtt_ns": 1784167, + "rtt_ms": 1.784167, "checkpoint": 0, "vertex_from": "291", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.497737695Z" + "timestamp": "2025-11-27T04:04:14.706852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283256, - "rtt_ms": 1.283256, + "rtt_ns": 1525292, + "rtt_ms": 1.525292, "checkpoint": 0, - "vertex_from": "292", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.498132784Z" + "vertex_from": "291", + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:14.706911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423096, - "rtt_ms": 1.423096, + "rtt_ns": 1551208, + "rtt_ms": 1.551208, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.498317903Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:04:14.707124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437026, - "rtt_ms": 1.437026, + "rtt_ns": 1760208, + "rtt_ms": 1.760208, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.498366213Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.707264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392336, - "rtt_ms": 1.392336, + "rtt_ns": 1292833, + "rtt_ms": 1.292833, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.498462443Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:14.707389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384606, - "rtt_ms": 1.384606, + "rtt_ns": 1922875, + "rtt_ms": 1.922875, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "306", - "timestamp": "2025-11-27T01:23:51.498590613Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.707407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2481023, - "rtt_ms": 2.481023, + "rtt_ns": 1288709, + "rtt_ms": 1.288709, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.499349141Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.70742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605882, - "rtt_ms": 2.605882, + "rtt_ns": 1373959, + "rtt_ms": 1.373959, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:51.49947764Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2681422, - "rtt_ms": 2.681422, - "checkpoint": 0, - "vertex_from": "291", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.49950151Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.70805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391083, - "rtt_ms": 2.391083, + "rtt_ns": 1661167, + "rtt_ms": 1.661167, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.49951305Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:14.708107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776755, - "rtt_ms": 1.776755, + "rtt_ns": 1334833, + "rtt_ms": 1.334833, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.49951601Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:04:14.708157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220167, - "rtt_ms": 1.220167, + "rtt_ns": 1360041, + "rtt_ms": 1.360041, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.49953916Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.708214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404616, - "rtt_ms": 1.404616, + "rtt_ns": 1357708, + "rtt_ms": 1.357708, "checkpoint": 0, "vertex_from": "292", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.49953948Z" + "timestamp": "2025-11-27T04:04:14.708271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780845, - "rtt_ms": 1.780845, + "rtt_ns": 1195541, + "rtt_ms": 1.195541, "checkpoint": 0, "vertex_from": "292", "vertex_to": "912", - "timestamp": "2025-11-27T01:23:51.500149308Z" + "timestamp": "2025-11-27T04:04:14.70846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887075, - "rtt_ms": 1.887075, + "rtt_ns": 1193042, + "rtt_ms": 1.193042, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.500350458Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:04:14.708601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771805, - "rtt_ms": 1.771805, + "rtt_ns": 1605542, + "rtt_ms": 1.605542, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:51.500365838Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:14.709026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590135, - "rtt_ms": 1.590135, + "rtt_ns": 1657292, + "rtt_ms": 1.657292, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:51.501107945Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.709048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781114, - "rtt_ms": 1.781114, + "rtt_ns": 1934833, + "rtt_ms": 1.934833, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.501132885Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:14.709061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737825, - "rtt_ms": 1.737825, + "rtt_ns": 1671125, + "rtt_ms": 1.671125, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.501217415Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.710133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112157, - "rtt_ms": 1.112157, + "rtt_ns": 2088917, + "rtt_ms": 2.088917, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "938", - "timestamp": "2025-11-27T01:23:51.501263465Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:14.710247-08:00" }, { "operation": "add_edge", - "rtt_ns": 936327, - "rtt_ms": 0.936327, + "rtt_ns": 2233583, + "rtt_ms": 2.233583, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "296", - "timestamp": "2025-11-27T01:23:51.501303675Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:04:14.710286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010047, - "rtt_ms": 1.010047, + "rtt_ns": 1871833, + "rtt_ms": 1.871833, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:51.501362295Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:04:14.710475-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009134, - "rtt_ms": 2.009134, + "rtt_ns": 2383334, + "rtt_ms": 2.383334, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.501523894Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:14.710491-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003174, - "rtt_ms": 2.003174, + "rtt_ns": 2311459, + "rtt_ms": 2.311459, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.501545194Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:04:14.710527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014444, - "rtt_ms": 2.014444, + "rtt_ns": 2260333, + "rtt_ms": 2.260333, "checkpoint": 0, "vertex_from": "292", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.501556164Z" + "timestamp": "2025-11-27T04:04:14.710532-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175234, - "rtt_ms": 2.175234, + "rtt_ns": 1520959, + "rtt_ms": 1.520959, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.501679254Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:04:14.710549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115517, - "rtt_ms": 1.115517, + "rtt_ns": 1769291, + "rtt_ms": 1.769291, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.502380282Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:04:14.710818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312926, - "rtt_ms": 1.312926, + "rtt_ns": 1769417, + "rtt_ms": 1.769417, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.502447261Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:04:14.710833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436966, - "rtt_ms": 1.436966, + "rtt_ns": 1310583, + "rtt_ms": 1.310583, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:51.502551731Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:14.711599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342306, - "rtt_ms": 1.342306, + "rtt_ns": 1414500, + "rtt_ms": 1.4145, "checkpoint": 0, "vertex_from": "292", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.502562291Z" + "timestamp": "2025-11-27T04:04:14.711663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285856, - "rtt_ms": 1.285856, + "rtt_ns": 1215791, + "rtt_ms": 1.215791, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.502591061Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:14.71175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098447, - "rtt_ms": 1.098447, + "rtt_ns": 1383084, + "rtt_ms": 1.383084, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.502646471Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:04:14.711933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284796, - "rtt_ms": 1.284796, + "rtt_ns": 1455875, + "rtt_ms": 1.455875, "checkpoint": 0, "vertex_from": "292", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.502648931Z" + "timestamp": "2025-11-27T04:04:14.71195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046347, - "rtt_ms": 1.046347, + "rtt_ns": 1489416, + "rtt_ms": 1.489416, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.502729391Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.711965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209207, - "rtt_ms": 1.209207, + "rtt_ns": 1851875, + "rtt_ms": 1.851875, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:51.502734601Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:14.711986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209296, - "rtt_ms": 1.209296, + "rtt_ns": 1466709, + "rtt_ms": 1.466709, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:51.50277039Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:04:14.711994-08:00" }, { "operation": "add_edge", - "rtt_ns": 832278, - "rtt_ms": 0.832278, + "rtt_ns": 1182208, + "rtt_ms": 1.182208, "checkpoint": 0, - "vertex_from": "293", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.503384459Z" + "vertex_from": "292", + "vertex_to": "708", + "timestamp": "2025-11-27T04:04:14.712003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085746, - "rtt_ms": 1.085746, + "rtt_ns": 1213417, + "rtt_ms": 1.213417, "checkpoint": 0, "vertex_from": "292", "vertex_to": "696", - "timestamp": "2025-11-27T01:23:51.503467358Z" + "timestamp": "2025-11-27T04:04:14.712048-08:00" }, { "operation": "add_edge", - "rtt_ns": 961817, - "rtt_ms": 0.961817, + "rtt_ns": 1373041, + "rtt_ms": 1.373041, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.503524788Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:14.712975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162047, - "rtt_ms": 1.162047, + "rtt_ns": 1235875, + "rtt_ms": 1.235875, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.503610108Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.712987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431956, - "rtt_ms": 1.431956, + "rtt_ns": 1463750, + "rtt_ms": 1.46375, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.504023937Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.713128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592225, - "rtt_ms": 1.592225, + "rtt_ns": 1201292, + "rtt_ms": 1.201292, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.504241766Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:04:14.713251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537635, - "rtt_ms": 1.537635, + "rtt_ns": 1344417, + "rtt_ms": 1.344417, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "813", - "timestamp": "2025-11-27T01:23:51.504271286Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.713295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505516, - "rtt_ms": 1.505516, + "rtt_ns": 1376791, + "rtt_ms": 1.376791, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.504277556Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:14.713342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649155, - "rtt_ms": 1.649155, + "rtt_ns": 1636750, + "rtt_ms": 1.63675, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.504296176Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:04:14.713571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566055, - "rtt_ms": 1.566055, + "rtt_ns": 1593459, + "rtt_ms": 1.593459, "checkpoint": 0, "vertex_from": "293", "vertex_to": "331", - "timestamp": "2025-11-27T01:23:51.504303226Z" + "timestamp": "2025-11-27T04:04:14.71359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578405, - "rtt_ms": 1.578405, + "rtt_ns": 1665792, + "rtt_ms": 1.665792, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:51.504968634Z" + "vertex_to": "813", + "timestamp": "2025-11-27T04:04:14.713652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374856, - "rtt_ms": 1.374856, + "rtt_ns": 1684459, + "rtt_ms": 1.684459, "checkpoint": 0, - "vertex_from": "294", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:51.504985944Z" + "vertex_from": "293", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.713688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525726, - "rtt_ms": 1.525726, + "rtt_ns": 1105334, + "rtt_ms": 1.105334, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.504994354Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:04:14.714095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529786, - "rtt_ms": 1.529786, + "rtt_ns": 1214708, + "rtt_ms": 1.214708, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "397", - "timestamp": "2025-11-27T01:23:51.505055964Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.714191-08:00" }, { "operation": "add_edge", - "rtt_ns": 933127, - "rtt_ms": 0.933127, + "rtt_ns": 1399625, + "rtt_ms": 1.399625, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:51.505229973Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:04:14.714529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210496, - "rtt_ms": 1.210496, + "rtt_ns": 1387042, + "rtt_ms": 1.387042, "checkpoint": 0, "vertex_from": "294", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.505236083Z" + "timestamp": "2025-11-27T04:04:14.714639-08:00" }, { "operation": "add_edge", - "rtt_ns": 962607, - "rtt_ms": 0.962607, + "rtt_ns": 1526042, + "rtt_ms": 1.526042, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.505240833Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:04:14.714869-08:00" }, { "operation": "add_edge", - "rtt_ns": 989877, - "rtt_ms": 0.989877, + "rtt_ns": 1441417, + "rtt_ms": 1.441417, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:51.505294703Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:14.715132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032007, - "rtt_ms": 1.032007, + "rtt_ns": 1559167, + "rtt_ms": 1.559167, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.505308063Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:04:14.71515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732785, - "rtt_ms": 1.732785, + "rtt_ns": 1499667, + "rtt_ms": 1.499667, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.505975471Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:04:14.715153-08:00" }, { "operation": "add_edge", - "rtt_ns": 958667, - "rtt_ms": 0.958667, + "rtt_ns": 1871709, + "rtt_ms": 1.871709, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "849", - "timestamp": "2025-11-27T01:23:51.506015431Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:14.715168-08:00" }, { "operation": "add_edge", - "rtt_ns": 891968, - "rtt_ms": 0.891968, + "rtt_ns": 1618292, + "rtt_ms": 1.618292, "checkpoint": 0, - "vertex_from": "295", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.506122701Z" + "vertex_from": "294", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.715192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138927, - "rtt_ms": 1.138927, + "rtt_ns": 1226417, + "rtt_ms": 1.226417, "checkpoint": 0, "vertex_from": "294", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.506134321Z" + "timestamp": "2025-11-27T04:04:14.71542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199287, - "rtt_ms": 1.199287, + "rtt_ns": 1380083, + "rtt_ms": 1.380083, "checkpoint": 0, "vertex_from": "294", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.506186841Z" + "timestamp": "2025-11-27T04:04:14.715476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238407, - "rtt_ms": 1.238407, + "rtt_ns": 1384541, + "rtt_ms": 1.384541, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.506207791Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:04:14.715915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272467, - "rtt_ms": 1.272467, + "rtt_ns": 1392084, + "rtt_ms": 1.392084, "checkpoint": 0, "vertex_from": "295", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.50651481Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.716032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210977, - "rtt_ms": 1.210977, + "rtt_ns": 1467625, + "rtt_ms": 1.467625, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.50652023Z" + "vertex_from": "295", + "vertex_to": "372", + "timestamp": "2025-11-27T04:04:14.716338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289597, - "rtt_ms": 1.289597, + "rtt_ns": 1209000, + "rtt_ms": 1.209, "checkpoint": 0, "vertex_from": "295", - "vertex_to": "372", - "timestamp": "2025-11-27T01:23:51.50652737Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.71636-08:00" }, { "operation": "add_edge", - "rtt_ns": 577359, - "rtt_ms": 0.577359, + "rtt_ns": 1223792, + "rtt_ms": 1.223792, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "304", - "timestamp": "2025-11-27T01:23:51.50655412Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.716377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267437, - "rtt_ms": 1.267437, + "rtt_ns": 1447708, + "rtt_ms": 1.447708, + "checkpoint": 0, + "vertex_from": "296", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.716642-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1524584, + "rtt_ms": 1.524584, "checkpoint": 0, "vertex_from": "295", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.50656485Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:14.716657-08:00" }, { "operation": "add_edge", - "rtt_ns": 564639, - "rtt_ms": 0.564639, + "rtt_ns": 1602833, + "rtt_ms": 1.602833, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.50658069Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:04:14.716771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132257, - "rtt_ms": 1.132257, + "rtt_ns": 1404500, + "rtt_ms": 1.4045, "checkpoint": 0, "vertex_from": "296", "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.507268338Z" + "timestamp": "2025-11-27T04:04:14.716882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211036, - "rtt_ms": 1.211036, + "rtt_ns": 1510958, + "rtt_ms": 1.510958, "checkpoint": 0, "vertex_from": "296", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.507334477Z" + "timestamp": "2025-11-27T04:04:14.716932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328366, - "rtt_ms": 1.328366, + "rtt_ns": 1523625, + "rtt_ms": 1.523625, "checkpoint": 0, "vertex_from": "296", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.507538747Z" + "timestamp": "2025-11-27T04:04:14.717558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351536, - "rtt_ms": 1.351536, + "rtt_ns": 1697750, + "rtt_ms": 1.69775, "checkpoint": 0, "vertex_from": "296", "vertex_to": "715", - "timestamp": "2025-11-27T01:23:51.507539407Z" + "timestamp": "2025-11-27T04:04:14.717613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245206, - "rtt_ms": 1.245206, + "rtt_ns": 1494917, + "rtt_ms": 1.494917, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "485", - "timestamp": "2025-11-27T01:23:51.507768026Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1318146, - "rtt_ms": 1.318146, - "checkpoint": 0, - "vertex_from": "711", - "timestamp": "2025-11-27T01:23:51.507836336Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:04:14.717873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497205, - "rtt_ms": 1.497205, + "rtt_ns": 1247125, + "rtt_ms": 1.247125, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:51.508062965Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.71789-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1561385, - "rtt_ms": 1.561385, + "operation": "add_vertex", + "rtt_ns": 1655834, + "rtt_ms": 1.655834, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.508143135Z" + "vertex_from": "711", + "timestamp": "2025-11-27T04:04:14.717995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2289253, - "rtt_ms": 2.289253, + "rtt_ns": 1674459, + "rtt_ms": 1.674459, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.508844283Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:04:14.718035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586645, - "rtt_ms": 1.586645, + "rtt_ns": 1262709, + "rtt_ms": 1.262709, "checkpoint": 0, "vertex_from": "296", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.508862103Z" + "timestamp": "2025-11-27T04:04:14.718145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695326, - "rtt_ms": 1.695326, + "rtt_ns": 1516750, + "rtt_ms": 1.51675, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.509031953Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:04:14.718174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735455, - "rtt_ms": 1.735455, + "rtt_ns": 1501375, + "rtt_ms": 1.501375, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "884", - "timestamp": "2025-11-27T01:23:51.509279152Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:14.718274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766595, - "rtt_ms": 1.766595, + "rtt_ns": 1357667, + "rtt_ms": 1.357667, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:51.509309862Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:04:14.718292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600276, - "rtt_ms": 1.600276, + "rtt_ns": 1493584, + "rtt_ms": 1.493584, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:51.509370372Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:04:14.719108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550286, - "rtt_ms": 1.550286, + "rtt_ns": 1643459, + "rtt_ms": 1.643459, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "711", - "timestamp": "2025-11-27T01:23:51.509387082Z" + "vertex_to": "884", + "timestamp": "2025-11-27T04:04:14.719203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2929502, - "rtt_ms": 2.929502, + "rtt_ns": 1356583, + "rtt_ms": 1.356583, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:51.509458952Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:04:14.71923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484116, - "rtt_ms": 1.484116, + "rtt_ns": 1209458, + "rtt_ms": 1.209458, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.509548381Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:04:14.719245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498416, - "rtt_ms": 1.498416, + "rtt_ns": 1392625, + "rtt_ms": 1.392625, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:51.509643061Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.719283-08:00" }, { "operation": "add_edge", - "rtt_ns": 814788, - "rtt_ms": 0.814788, + "rtt_ns": 1321959, + "rtt_ms": 1.321959, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.509660561Z" + "vertex_to": "711", + "timestamp": "2025-11-27T04:04:14.719317-08:00" }, { "operation": "add_edge", - "rtt_ns": 861668, - "rtt_ms": 0.861668, + "rtt_ns": 1375500, + "rtt_ms": 1.3755, "checkpoint": 0, "vertex_from": "296", "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.509725231Z" + "timestamp": "2025-11-27T04:04:14.719551-08:00" }, { "operation": "add_edge", - "rtt_ns": 732158, - "rtt_ms": 0.732158, + "rtt_ns": 1423083, + "rtt_ms": 1.423083, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:51.509765991Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.719569-08:00" }, { "operation": "add_edge", - "rtt_ns": 620898, - "rtt_ms": 0.620898, + "rtt_ns": 1388416, + "rtt_ms": 1.388416, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.50993212Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:14.719681-08:00" }, { "operation": "add_edge", - "rtt_ns": 688568, - "rtt_ms": 0.688568, + "rtt_ns": 1423792, + "rtt_ms": 1.423792, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.50996888Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:04:14.719698-08:00" }, { "operation": "add_edge", - "rtt_ns": 612489, - "rtt_ms": 0.612489, + "rtt_ns": 1019084, + "rtt_ms": 1.019084, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:51.51007282Z" + "vertex_from": "297", + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:14.720589-08:00" }, { "operation": "add_edge", - "rtt_ns": 713018, - "rtt_ms": 0.713018, + "rtt_ns": 1375333, + "rtt_ms": 1.375333, "checkpoint": 0, "vertex_from": "296", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.51010174Z" + "timestamp": "2025-11-27T04:04:14.720606-08:00" }, { "operation": "add_edge", - "rtt_ns": 758288, - "rtt_ms": 0.758288, + "rtt_ns": 1768333, + "rtt_ms": 1.768333, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.51012979Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:14.720879-08:00" }, { "operation": "add_vertex", - "rtt_ns": 651068, - "rtt_ms": 0.651068, + "rtt_ns": 1609417, + "rtt_ms": 1.609417, "checkpoint": 0, "vertex_from": "903", - "timestamp": "2025-11-27T01:23:51.510204629Z" + "timestamp": "2025-11-27T04:04:14.720895-08:00" }, { "operation": "add_edge", - "rtt_ns": 751708, - "rtt_ms": 0.751708, + "rtt_ns": 1732291, + "rtt_ms": 1.732291, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.510396129Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:04:14.720979-08:00" }, { "operation": "add_edge", - "rtt_ns": 782568, - "rtt_ms": 0.782568, + "rtt_ns": 1441750, + "rtt_ms": 1.44175, "checkpoint": 0, "vertex_from": "297", "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.510444939Z" + "timestamp": "2025-11-27T04:04:14.720994-08:00" }, { "operation": "add_edge", - "rtt_ns": 720958, - "rtt_ms": 0.720958, + "rtt_ns": 1770125, + "rtt_ms": 1.770125, "checkpoint": 0, - "vertex_from": "297", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.510447639Z" + "vertex_from": "296", + "vertex_to": "564", + "timestamp": "2025-11-27T04:04:14.721089-08:00" }, { "operation": "add_edge", - "rtt_ns": 839737, - "rtt_ms": 0.839737, + "rtt_ns": 1981083, + "rtt_ms": 1.981083, "checkpoint": 0, - "vertex_from": "297", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.510606968Z" + "vertex_from": "296", + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:14.721185-08:00" }, { "operation": "add_edge", - "rtt_ns": 666288, - "rtt_ms": 0.666288, + "rtt_ns": 1520167, + "rtt_ms": 1.520167, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.510636378Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.721202-08:00" }, { "operation": "add_edge", - "rtt_ns": 708178, - "rtt_ms": 0.708178, + "rtt_ns": 1758333, + "rtt_ms": 1.758333, "checkpoint": 0, "vertex_from": "297", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.510642228Z" + "timestamp": "2025-11-27T04:04:14.721457-08:00" }, { "operation": "add_edge", - "rtt_ns": 754548, - "rtt_ms": 0.754548, + "rtt_ns": 1386625, + "rtt_ms": 1.386625, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "368", - "timestamp": "2025-11-27T01:23:51.510828778Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.721979-08:00" }, { "operation": "add_edge", - "rtt_ns": 701978, - "rtt_ms": 0.701978, + "rtt_ns": 1292334, + "rtt_ms": 1.292334, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "903", - "timestamp": "2025-11-27T01:23:51.510906927Z" + "vertex_from": "297", + "vertex_to": "661", + "timestamp": "2025-11-27T04:04:14.722172-08:00" }, { "operation": "add_edge", - "rtt_ns": 817127, - "rtt_ms": 0.817127, + "rtt_ns": 1582000, + "rtt_ms": 1.582, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.510948247Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:04:14.722189-08:00" }, { "operation": "add_edge", - "rtt_ns": 876917, - "rtt_ms": 0.876917, + "rtt_ns": 1423250, + "rtt_ms": 1.42325, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "661", - "timestamp": "2025-11-27T01:23:51.510979747Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.722418-08:00" }, { "operation": "add_edge", - "rtt_ns": 758458, - "rtt_ms": 0.758458, + "rtt_ns": 1453583, + "rtt_ms": 1.453583, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:51.511204937Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:04:14.722435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409316, - "rtt_ms": 1.409316, + "rtt_ns": 1527041, + "rtt_ms": 1.527041, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.511807955Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:04:14.722616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170437, - "rtt_ms": 1.170437, + "rtt_ns": 1738625, + "rtt_ms": 1.738625, "checkpoint": 0, - "vertex_from": "297", - "vertex_to": "412", - "timestamp": "2025-11-27T01:23:51.511814065Z" + "vertex_from": "296", + "vertex_to": "903", + "timestamp": "2025-11-27T04:04:14.722633-08:00" }, { "operation": "add_edge", - "rtt_ns": 868778, - "rtt_ms": 0.868778, + "rtt_ns": 1466875, + "rtt_ms": 1.466875, "checkpoint": 0, - "vertex_from": "298", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.511819195Z" + "vertex_from": "297", + "vertex_to": "801", + "timestamp": "2025-11-27T04:04:14.722653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308327, - "rtt_ms": 1.308327, + "rtt_ns": 1492833, + "rtt_ms": 1.492833, "checkpoint": 0, "vertex_from": "297", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.511916865Z" + "timestamp": "2025-11-27T04:04:14.722696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555795, - "rtt_ms": 1.555795, + "rtt_ns": 1416625, + "rtt_ms": 1.416625, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.512005404Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.722876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101667, - "rtt_ms": 1.101667, + "rtt_ns": 1183167, + "rtt_ms": 1.183167, "checkpoint": 0, "vertex_from": "298", "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.512009894Z" + "timestamp": "2025-11-27T04:04:14.723373-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1261292, + "rtt_ms": 1.261292, + "checkpoint": 0, + "vertex_from": "298", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.723434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380036, - "rtt_ms": 1.380036, + "rtt_ns": 1482875, + "rtt_ms": 1.482875, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.512017224Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:04:14.723463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191576, - "rtt_ms": 1.191576, + "rtt_ns": 1266083, + "rtt_ms": 1.266083, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.512021524Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:04:14.723703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072197, - "rtt_ms": 1.072197, + "rtt_ns": 1456750, + "rtt_ms": 1.45675, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "325", - "timestamp": "2025-11-27T01:23:51.512053104Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:04:14.723876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652365, - "rtt_ms": 1.652365, + "rtt_ns": 1283833, + "rtt_ms": 1.283833, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.512859072Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:04:14.72398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147876, - "rtt_ms": 1.147876, + "rtt_ns": 1447750, + "rtt_ms": 1.44775, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.512963671Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:14.724065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235526, - "rtt_ms": 1.235526, + "rtt_ns": 1484042, + "rtt_ms": 1.484042, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:51.513057321Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:04:14.724118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154426, - "rtt_ms": 1.154426, + "rtt_ns": 1482625, + "rtt_ms": 1.482625, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:51.513072851Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:14.724136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418076, - "rtt_ms": 1.418076, + "rtt_ns": 1558500, + "rtt_ms": 1.5585, "checkpoint": 0, - "vertex_from": "299", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.51347303Z" + "vertex_from": "298", + "vertex_to": "594", + "timestamp": "2025-11-27T04:04:14.724435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506206, - "rtt_ms": 1.506206, + "rtt_ns": 1111958, + "rtt_ms": 1.111958, "checkpoint": 0, "vertex_from": "299", "vertex_to": "388", - "timestamp": "2025-11-27T01:23:51.51352917Z" + "timestamp": "2025-11-27T04:04:14.724817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549576, - "rtt_ms": 1.549576, + "rtt_ns": 1502375, + "rtt_ms": 1.502375, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "632", - "timestamp": "2025-11-27T01:23:51.51356145Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:04:14.724878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591316, - "rtt_ms": 1.591316, + "rtt_ns": 1776375, + "rtt_ms": 1.776375, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:51.51359822Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:04:14.725212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634065, - "rtt_ms": 1.634065, + "rtt_ns": 1163500, + "rtt_ms": 1.1635, "checkpoint": 0, - "vertex_from": "298", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:51.513653099Z" + "vertex_from": "299", + "vertex_to": "320", + "timestamp": "2025-11-27T04:04:14.725229-08:00" }, { "operation": "add_edge", - "rtt_ns": 608278, - "rtt_ms": 0.608278, + "rtt_ns": 1778792, + "rtt_ms": 1.778792, "checkpoint": 0, - "vertex_from": "300", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.513668229Z" + "vertex_from": "298", + "vertex_to": "480", + "timestamp": "2025-11-27T04:04:14.725244-08:00" }, { "operation": "add_edge", - "rtt_ns": 709698, - "rtt_ms": 0.709698, + "rtt_ns": 1277167, + "rtt_ms": 1.277167, "checkpoint": 0, - "vertex_from": "300", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:51.513784439Z" + "vertex_from": "299", + "vertex_to": "329", + "timestamp": "2025-11-27T04:04:14.725258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369206, - "rtt_ms": 1.369206, + "rtt_ns": 1563500, + "rtt_ms": 1.5635, "checkpoint": 0, "vertex_from": "299", - "vertex_to": "329", - "timestamp": "2025-11-27T01:23:51.514230988Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:04:14.72544-08:00" }, { "operation": "add_edge", - "rtt_ns": 2459213, - "rtt_ms": 2.459213, + "rtt_ns": 1425791, + "rtt_ms": 1.425791, "checkpoint": 0, - "vertex_from": "298", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:51.514268988Z" + "vertex_from": "300", + "vertex_to": "792", + "timestamp": "2025-11-27T04:04:14.725545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327496, - "rtt_ms": 1.327496, + "rtt_ns": 1426875, + "rtt_ms": 1.426875, "checkpoint": 0, - "vertex_from": "299", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.514292607Z" + "vertex_from": "300", + "vertex_to": "961", + "timestamp": "2025-11-27T04:04:14.725563-08:00" }, { "operation": "add_edge", - "rtt_ns": 979637, - "rtt_ms": 0.979637, + "rtt_ns": 1562000, + "rtt_ms": 1.562, "checkpoint": 0, "vertex_from": "300", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.514454337Z" + "timestamp": "2025-11-27T04:04:14.725998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532125, - "rtt_ms": 1.532125, + "rtt_ns": 1624125, + "rtt_ms": 1.624125, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.515131705Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:14.726443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604295, - "rtt_ms": 1.604295, + "rtt_ns": 1322625, + "rtt_ms": 1.322625, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:51.515166585Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:14.726582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646295, - "rtt_ms": 1.646295, + "rtt_ns": 1443416, + "rtt_ms": 1.443416, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.515176805Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.726674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518016, - "rtt_ms": 1.518016, + "rtt_ns": 1816500, + "rtt_ms": 1.8165, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.515187445Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:04:14.726696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420206, - "rtt_ms": 1.420206, + "rtt_ns": 1522292, + "rtt_ms": 1.522292, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.515206295Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:14.726736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859855, - "rtt_ms": 1.859855, + "rtt_ns": 1206042, + "rtt_ms": 1.206042, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.515514204Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:14.72677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292756, - "rtt_ms": 1.292756, + "rtt_ns": 1545333, + "rtt_ms": 1.545333, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.515525194Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:14.72679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325946, - "rtt_ms": 1.325946, + "rtt_ns": 1257250, + "rtt_ms": 1.25725, "checkpoint": 0, "vertex_from": "300", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.515596224Z" + "timestamp": "2025-11-27T04:04:14.726803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360586, - "rtt_ms": 1.360586, + "rtt_ns": 1475583, + "rtt_ms": 1.475583, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.515654253Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:14.726918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215496, - "rtt_ms": 1.215496, + "rtt_ns": 1063834, + "rtt_ms": 1.063834, "checkpoint": 0, "vertex_from": "300", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.515670863Z" + "timestamp": "2025-11-27T04:04:14.727063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083657, - "rtt_ms": 1.083657, + "rtt_ns": 1307625, + "rtt_ms": 1.307625, + "checkpoint": 0, + "vertex_from": "301", + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.727891-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1463792, + "rtt_ms": 1.463792, "checkpoint": 0, "vertex_from": "300", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.516216372Z" + "timestamp": "2025-11-27T04:04:14.727908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143547, - "rtt_ms": 1.143547, + "rtt_ns": 1379083, + "rtt_ms": 1.379083, "checkpoint": 0, "vertex_from": "301", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.516321662Z" + "timestamp": "2025-11-27T04:04:14.728054-08:00" }, { "operation": "add_edge", - "rtt_ns": 904357, - "rtt_ms": 0.904357, + "rtt_ns": 1237833, + "rtt_ms": 1.237833, "checkpoint": 0, - "vertex_from": "303", - "vertex_to": "617", - "timestamp": "2025-11-27T01:23:51.516432131Z" + "vertex_from": "304", + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:14.728158-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1490542, + "rtt_ms": 1.490542, + "checkpoint": 0, + "vertex_from": "379", + "timestamp": "2025-11-27T04:04:14.728295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242656, - "rtt_ms": 1.242656, + "rtt_ns": 1639875, + "rtt_ms": 1.639875, "checkpoint": 0, "vertex_from": "302", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.516450971Z" + "timestamp": "2025-11-27T04:04:14.728383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353686, - "rtt_ms": 1.353686, + "rtt_ns": 1722625, + "rtt_ms": 1.722625, "checkpoint": 0, "vertex_from": "301", "vertex_to": "456", - "timestamp": "2025-11-27T01:23:51.516541801Z" + "timestamp": "2025-11-27T04:04:14.728419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374966, - "rtt_ms": 1.374966, + "rtt_ns": 1377209, + "rtt_ms": 1.377209, "checkpoint": 0, - "vertex_from": "301", + "vertex_from": "304", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.516542611Z" + "timestamp": "2025-11-27T04:04:14.728441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027577, - "rtt_ms": 1.027577, + "rtt_ns": 1783000, + "rtt_ms": 1.783, "checkpoint": 0, "vertex_from": "302", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.516543511Z" + "timestamp": "2025-11-27T04:04:14.728554-08:00" }, { "operation": "add_edge", - "rtt_ns": 912988, - "rtt_ms": 0.912988, + "rtt_ns": 1815208, + "rtt_ms": 1.815208, "checkpoint": 0, - "vertex_from": "304", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.516568981Z" + "vertex_from": "303", + "vertex_to": "617", + "timestamp": "2025-11-27T04:04:14.728606-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1683825, - "rtt_ms": 1.683825, + "operation": "add_edge", + "rtt_ns": 1866417, + "rtt_ms": 1.866417, "checkpoint": 0, - "vertex_from": "379", - "timestamp": "2025-11-27T01:23:51.517283659Z" + "vertex_from": "303", + "vertex_to": "379", + "timestamp": "2025-11-27T04:04:14.730162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626456, - "rtt_ms": 1.626456, + "rtt_ns": 2297875, + "rtt_ms": 2.297875, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.517298399Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:14.73019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973884, - "rtt_ms": 1.973884, + "rtt_ns": 2465958, + "rtt_ms": 2.465958, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.518192246Z" + "vertex_to": "378", + "timestamp": "2025-11-27T04:04:14.730375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767725, - "rtt_ms": 1.767725, + "rtt_ns": 1775250, + "rtt_ms": 1.77525, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.518220466Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:04:14.730382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677825, - "rtt_ms": 1.677825, + "rtt_ns": 1837875, + "rtt_ms": 1.837875, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.518222046Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.730393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761725, - "rtt_ms": 1.761725, + "rtt_ns": 1957125, + "rtt_ms": 1.957125, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.518305116Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:14.7304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989944, - "rtt_ms": 1.989944, + "rtt_ns": 2280667, + "rtt_ms": 2.280667, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "378", - "timestamp": "2025-11-27T01:23:51.518312756Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:04:14.730439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896755, - "rtt_ms": 1.896755, + "rtt_ns": 2022209, + "rtt_ms": 2.022209, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:51.518329996Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:14.730442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857995, - "rtt_ms": 1.857995, + "rtt_ns": 2057833, + "rtt_ms": 2.057833, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.518428486Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:04:14.730443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909835, - "rtt_ms": 1.909835, + "rtt_ns": 2473166, + "rtt_ms": 2.473166, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.518455396Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:04:14.730528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311466, - "rtt_ms": 1.311466, + "rtt_ns": 1202500, + "rtt_ms": 1.2025, "checkpoint": 0, - "vertex_from": "303", - "vertex_to": "379", - "timestamp": "2025-11-27T01:23:51.518595845Z" + "vertex_from": "304", + "vertex_to": "432", + "timestamp": "2025-11-27T04:04:14.731646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827465, - "rtt_ms": 1.827465, + "rtt_ns": 1452375, + "rtt_ms": 1.452375, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:51.519127544Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:04:14.731897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191307, - "rtt_ms": 1.191307, + "rtt_ns": 1539708, + "rtt_ms": 1.539708, "checkpoint": 0, "vertex_from": "304", "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.519415153Z" + "timestamp": "2025-11-27T04:04:14.731916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241937, - "rtt_ms": 1.241937, + "rtt_ns": 1742709, + "rtt_ms": 1.742709, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.519436403Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:14.731934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217086, - "rtt_ms": 1.217086, + "rtt_ns": 1542125, + "rtt_ms": 1.542125, "checkpoint": 0, "vertex_from": "304", "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.519548332Z" + "timestamp": "2025-11-27T04:04:14.731943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354836, - "rtt_ms": 1.354836, + "rtt_ns": 1568333, + "rtt_ms": 1.568333, "checkpoint": 0, "vertex_from": "304", "vertex_to": "328", - "timestamp": "2025-11-27T01:23:51.519661152Z" + "timestamp": "2025-11-27T04:04:14.731952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475256, - "rtt_ms": 1.475256, + "rtt_ns": 1431500, + "rtt_ms": 1.4315, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.519697992Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:04:14.73196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394706, - "rtt_ms": 1.394706, + "rtt_ns": 1528250, + "rtt_ms": 1.52825, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.519708952Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:14.731968-08:00" }, { "operation": "add_edge", - "rtt_ns": 904727, - "rtt_ms": 0.904727, + "rtt_ns": 1805792, + "rtt_ms": 1.805792, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.52032173Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.731969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729565, - "rtt_ms": 1.729565, + "rtt_ns": 1728250, + "rtt_ms": 1.72825, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.52032673Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:14.732122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913444, - "rtt_ms": 1.913444, + "rtt_ns": 1076875, + "rtt_ms": 1.076875, "checkpoint": 0, - "vertex_from": "304", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.52034327Z" + "vertex_from": "305", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:14.733047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273186, - "rtt_ms": 1.273186, + "rtt_ns": 1142291, + "rtt_ms": 1.142291, "checkpoint": 0, - "vertex_from": "304", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:51.52040205Z" + "vertex_from": "305", + "vertex_to": "323", + "timestamp": "2025-11-27T04:04:14.733086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977934, - "rtt_ms": 1.977934, + "rtt_ns": 1731375, + "rtt_ms": 1.731375, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:51.52043517Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.73338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592775, - "rtt_ms": 1.592775, + "rtt_ns": 1437041, + "rtt_ms": 1.437041, "checkpoint": 0, - "vertex_from": "304", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:51.521031448Z" + "vertex_from": "305", + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:14.733406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479956, - "rtt_ms": 1.479956, + "rtt_ns": 1553292, + "rtt_ms": 1.553292, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.521141668Z" + "vertex_to": "723", + "timestamp": "2025-11-27T04:04:14.73347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624066, - "rtt_ms": 1.624066, + "rtt_ns": 1843375, + "rtt_ms": 1.843375, "checkpoint": 0, - "vertex_from": "304", - "vertex_to": "723", - "timestamp": "2025-11-27T01:23:51.521174508Z" + "vertex_from": "305", + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:14.733796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494346, - "rtt_ms": 1.494346, + "rtt_ns": 1925541, + "rtt_ms": 1.925541, "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.521204768Z" + "vertex_from": "304", + "vertex_to": "480", + "timestamp": "2025-11-27T04:04:14.733823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506186, - "rtt_ms": 1.506186, + "rtt_ns": 1903333, + "rtt_ms": 1.903333, "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "323", - "timestamp": "2025-11-27T01:23:51.521206248Z" + "vertex_from": "304", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.733838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592665, - "rtt_ms": 1.592665, + "rtt_ns": 1891791, + "rtt_ms": 1.891791, "checkpoint": 0, "vertex_from": "305", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.521938055Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:04:14.733853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609765, - "rtt_ms": 1.609765, + "rtt_ns": 1744791, + "rtt_ms": 1.744791, "checkpoint": 0, "vertex_from": "305", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.522013055Z" + "timestamp": "2025-11-27T04:04:14.733867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580335, - "rtt_ms": 1.580335, + "rtt_ns": 1423084, + "rtt_ms": 1.423084, "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.522016565Z" + "vertex_from": "306", + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:14.734895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011697, - "rtt_ms": 1.011697, + "rtt_ns": 1874542, + "rtt_ms": 1.874542, "checkpoint": 0, "vertex_from": "305", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.522044425Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.734922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736295, - "rtt_ms": 1.736295, + "rtt_ns": 1519916, + "rtt_ms": 1.519916, "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:51.522060225Z" + "vertex_from": "306", + "vertex_to": "324", + "timestamp": "2025-11-27T04:04:14.734929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887775, - "rtt_ms": 1.887775, + "rtt_ns": 1833625, + "rtt_ms": 1.833625, "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.522217795Z" + "vertex_from": "306", + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:14.735215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123676, - "rtt_ms": 1.123676, + "rtt_ns": 1377375, + "rtt_ms": 1.377375, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.522266804Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.735231-08:00" }, { "operation": "add_edge", - "rtt_ns": 900398, - "rtt_ms": 0.900398, + "rtt_ns": 1393708, + "rtt_ms": 1.393708, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:51.522840163Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:04:14.735233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634625, - "rtt_ms": 1.634625, + "rtt_ns": 2156458, + "rtt_ms": 2.156458, + "checkpoint": 0, + "vertex_from": "305", + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:14.735245-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1383667, + "rtt_ms": 1.383667, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.522840443Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:04:14.735252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653215, - "rtt_ms": 1.653215, + "rtt_ns": 1462625, + "rtt_ms": 1.462625, "checkpoint": 0, "vertex_from": "306", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.522863333Z" + "timestamp": "2025-11-27T04:04:14.73526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721135, - "rtt_ms": 1.721135, + "rtt_ns": 1708416, + "rtt_ms": 1.708416, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:51.522896873Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:04:14.735533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639875, - "rtt_ms": 1.639875, + "rtt_ns": 1339041, + "rtt_ms": 1.339041, "checkpoint": 0, - "vertex_from": "306", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:51.52368649Z" + "vertex_from": "308", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.736599-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320793, - "rtt_ms": 2.320793, + "rtt_ns": 1686250, + "rtt_ms": 1.68625, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.524338508Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:04:14.736618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318223, - "rtt_ms": 2.318223, + "rtt_ns": 1737500, + "rtt_ms": 1.7375, "checkpoint": 0, "vertex_from": "306", "vertex_to": "952", - "timestamp": "2025-11-27T01:23:51.524380078Z" + "timestamp": "2025-11-27T04:04:14.736634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119524, - "rtt_ms": 2.119524, + "rtt_ns": 1431125, + "rtt_ms": 1.431125, "checkpoint": 0, - "vertex_from": "306", - "vertex_to": "326", - "timestamp": "2025-11-27T01:23:51.524387778Z" + "vertex_from": "307", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.736647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544985, - "rtt_ms": 1.544985, + "rtt_ns": 1429541, + "rtt_ms": 1.429541, "checkpoint": 0, "vertex_from": "307", "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.524388398Z" + "timestamp": "2025-11-27T04:04:14.736661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534435, - "rtt_ms": 1.534435, + "rtt_ns": 1432250, + "rtt_ms": 1.43225, "checkpoint": 0, "vertex_from": "307", "vertex_to": "677", - "timestamp": "2025-11-27T01:23:51.524399718Z" + "timestamp": "2025-11-27T04:04:14.736666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395103, - "rtt_ms": 2.395103, + "rtt_ns": 1560208, + "rtt_ms": 1.560208, "checkpoint": 0, - "vertex_from": "306", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:51.524409978Z" + "vertex_from": "308", + "vertex_to": "324", + "timestamp": "2025-11-27T04:04:14.736807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579435, - "rtt_ms": 1.579435, + "rtt_ns": 1569292, + "rtt_ms": 1.569292, "checkpoint": 0, - "vertex_from": "307", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.524422258Z" + "vertex_from": "308", + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:14.736822-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215133, - "rtt_ms": 2.215133, + "rtt_ns": 1907583, + "rtt_ms": 1.907583, "checkpoint": 0, "vertex_from": "306", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.524435208Z" + "timestamp": "2025-11-27T04:04:14.73683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778994, - "rtt_ms": 1.778994, + "rtt_ns": 1298500, + "rtt_ms": 1.2985, "checkpoint": 0, "vertex_from": "308", - "vertex_to": "324", - "timestamp": "2025-11-27T01:23:51.524678057Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:14.736832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657236, - "rtt_ms": 1.657236, + "rtt_ns": 1249459, + "rtt_ms": 1.249459, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.525347676Z" + "vertex_from": "310", + "vertex_to": "352", + "timestamp": "2025-11-27T04:04:14.738072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031637, - "rtt_ms": 1.031637, + "rtt_ns": 1261625, + "rtt_ms": 1.261625, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.525412915Z" + "vertex_from": "310", + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:14.738094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120517, - "rtt_ms": 1.120517, + "rtt_ns": 1440042, + "rtt_ms": 1.440042, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.525460385Z" + "vertex_from": "309", + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:14.738107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634245, - "rtt_ms": 1.634245, + "rtt_ns": 1572041, + "rtt_ms": 1.572041, "checkpoint": 0, "vertex_from": "309", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.526071203Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:14.738234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707215, - "rtt_ms": 1.707215, + "rtt_ns": 1418125, + "rtt_ms": 1.418125, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.526109373Z" + "vertex_from": "310", + "vertex_to": "564", + "timestamp": "2025-11-27T04:04:14.73825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721175, - "rtt_ms": 1.721175, + "rtt_ns": 1779083, + "rtt_ms": 1.779083, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.526113843Z" + "vertex_from": "309", + "vertex_to": "340", + "timestamp": "2025-11-27T04:04:14.738427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734315, - "rtt_ms": 1.734315, + "rtt_ns": 1824042, + "rtt_ms": 1.824042, "checkpoint": 0, "vertex_from": "308", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.526125793Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:14.738443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720205, - "rtt_ms": 1.720205, + "rtt_ns": 1858500, + "rtt_ms": 1.8585, "checkpoint": 0, - "vertex_from": "309", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.526145783Z" + "vertex_from": "308", + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:14.738459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739615, - "rtt_ms": 1.739615, + "rtt_ns": 1841708, + "rtt_ms": 1.841708, "checkpoint": 0, - "vertex_from": "309", - "vertex_to": "340", - "timestamp": "2025-11-27T01:23:51.526151853Z" + "vertex_from": "308", + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:14.738476-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1664276, - "rtt_ms": 1.664276, + "rtt_ns": 1713708, + "rtt_ms": 1.713708, "checkpoint": 0, "vertex_from": "1019", - "timestamp": "2025-11-27T01:23:51.526346843Z" + "timestamp": "2025-11-27T04:04:14.738524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510336, - "rtt_ms": 1.510336, + "rtt_ns": 1181959, + "rtt_ms": 1.181959, "checkpoint": 0, - "vertex_from": "310", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.526925281Z" + "vertex_from": "312", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.739417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613786, - "rtt_ms": 1.613786, + "rtt_ns": 1403708, + "rtt_ms": 1.403708, "checkpoint": 0, "vertex_from": "310", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.527076101Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.739477-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320913, - "rtt_ms": 2.320913, + "rtt_ns": 1600125, + "rtt_ms": 1.600125, "checkpoint": 0, - "vertex_from": "310", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:51.527671079Z" + "vertex_from": "312", + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:14.739695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614406, - "rtt_ms": 1.614406, + "rtt_ns": 1453333, + "rtt_ms": 1.453333, "checkpoint": 0, "vertex_from": "312", "vertex_to": "387", - "timestamp": "2025-11-27T01:23:51.527761559Z" + "timestamp": "2025-11-27T04:04:14.739704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678196, - "rtt_ms": 1.678196, + "rtt_ns": 1605875, + "rtt_ms": 1.605875, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.527790119Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:04:14.739714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458006, - "rtt_ms": 1.458006, + "rtt_ns": 1196000, + "rtt_ms": 1.196, "checkpoint": 0, "vertex_from": "309", "vertex_to": "1019", - "timestamp": "2025-11-27T01:23:51.527805269Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1736736, - "rtt_ms": 1.736736, - "checkpoint": 0, - "vertex_from": "310", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.527809409Z" + "timestamp": "2025-11-27T04:04:14.73972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658766, - "rtt_ms": 1.658766, + "rtt_ns": 1534958, + "rtt_ms": 1.534958, "checkpoint": 0, "vertex_from": "312", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.527811929Z" + "timestamp": "2025-11-27T04:04:14.739963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722366, - "rtt_ms": 1.722366, + "rtt_ns": 1508750, + "rtt_ms": 1.50875, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:51.527838159Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:14.739985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714326, - "rtt_ms": 1.714326, + "rtt_ns": 1527250, + "rtt_ms": 1.52725, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.527841259Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:04:14.739987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497006, - "rtt_ms": 1.497006, + "rtt_ns": 1548042, + "rtt_ms": 1.548042, "checkpoint": 0, "vertex_from": "312", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.528426357Z" + "timestamp": "2025-11-27T04:04:14.739992-08:00" }, { "operation": "add_edge", - "rtt_ns": 888347, - "rtt_ms": 0.888347, + "rtt_ns": 1536917, + "rtt_ms": 1.536917, "checkpoint": 0, "vertex_from": "312", "vertex_to": "394", - "timestamp": "2025-11-27T01:23:51.528651326Z" + "timestamp": "2025-11-27T04:04:14.740957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090727, - "rtt_ms": 1.090727, + "rtt_ns": 1289625, + "rtt_ms": 1.289625, "checkpoint": 0, - "vertex_from": "312", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.528763166Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1736435, - "rtt_ms": 1.736435, - "checkpoint": 0, - "vertex_from": "312", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.528814716Z" + "vertex_from": "313", + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.740994-08:00" }, { "operation": "add_edge", - "rtt_ns": 999727, - "rtt_ms": 0.999727, + "rtt_ns": 1515416, + "rtt_ms": 1.515416, "checkpoint": 0, - "vertex_from": "314", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.528842296Z" + "vertex_from": "313", + "vertex_to": "320", + "timestamp": "2025-11-27T04:04:14.740995-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1033417, - "rtt_ms": 1.033417, + "rtt_ns": 1337708, + "rtt_ms": 1.337708, "checkpoint": 0, "vertex_from": "1004", - "timestamp": "2025-11-27T01:23:51.528874776Z" + "timestamp": "2025-11-27T04:04:14.741063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381776, - "rtt_ms": 1.381776, + "rtt_ns": 1452167, + "rtt_ms": 1.452167, "checkpoint": 0, "vertex_from": "313", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:51.529195805Z" + "timestamp": "2025-11-27T04:04:14.741167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399126, - "rtt_ms": 1.399126, + "rtt_ns": 1550459, + "rtt_ms": 1.550459, "checkpoint": 0, "vertex_from": "313", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.529211525Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:14.741247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629155, - "rtt_ms": 1.629155, + "rtt_ns": 1325416, + "rtt_ms": 1.325416, "checkpoint": 0, - "vertex_from": "313", - "vertex_to": "320", - "timestamp": "2025-11-27T01:23:51.529421684Z" + "vertex_from": "314", + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.741312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136827, - "rtt_ms": 1.136827, + "rtt_ns": 1362667, + "rtt_ms": 1.362667, "checkpoint": 0, "vertex_from": "314", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.529565254Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:04:14.74136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783835, - "rtt_ms": 1.783835, + "rtt_ns": 1578542, + "rtt_ms": 1.578542, "checkpoint": 0, - "vertex_from": "313", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.529590574Z" + "vertex_from": "314", + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.741542-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1724750, + "rtt_ms": 1.72475, + "checkpoint": 0, + "vertex_from": "314", + "vertex_to": "322", + "timestamp": "2025-11-27T04:04:14.741712-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 906208, + "rtt_ms": 0.906208, + "checkpoint": 0, + "vertex_from": "316", + "vertex_to": "611", + "timestamp": "2025-11-27T04:04:14.742219-08:00" }, { "operation": "add_vertex", - "rtt_ns": 783458, - "rtt_ms": 0.783458, + "rtt_ns": 1361458, + "rtt_ms": 1.361458, "checkpoint": 0, "vertex_from": "315", - "timestamp": "2025-11-27T01:23:51.529600274Z" + "timestamp": "2025-11-27T04:04:14.742322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061497, - "rtt_ms": 1.061497, + "rtt_ns": 1483083, + "rtt_ms": 1.483083, "checkpoint": 0, - "vertex_from": "314", - "vertex_to": "322", - "timestamp": "2025-11-27T01:23:51.529715233Z" + "vertex_from": "316", + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.742479-08:00" }, { "operation": "add_edge", - "rtt_ns": 860587, - "rtt_ms": 0.860587, + "rtt_ns": 1422375, + "rtt_ms": 1.422375, "checkpoint": 0, "vertex_from": "313", "vertex_to": "1004", - "timestamp": "2025-11-27T01:23:51.529735903Z" + "timestamp": "2025-11-27T04:04:14.742486-08:00" }, { "operation": "add_edge", - "rtt_ns": 926217, - "rtt_ms": 0.926217, + "rtt_ns": 1289750, + "rtt_ms": 1.28975, "checkpoint": 0, "vertex_from": "316", - "vertex_to": "356", - "timestamp": "2025-11-27T01:23:51.529770253Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.742538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074387, - "rtt_ms": 1.074387, + "rtt_ns": 1402083, + "rtt_ms": 1.402083, "checkpoint": 0, - "vertex_from": "314", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.529839253Z" + "vertex_from": "316", + "vertex_to": "321", + "timestamp": "2025-11-27T04:04:14.74257-08:00" }, { "operation": "add_edge", - "rtt_ns": 998097, - "rtt_ms": 0.998097, + "rtt_ns": 1232709, + "rtt_ms": 1.232709, "checkpoint": 0, - "vertex_from": "316", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.530421451Z" + "vertex_from": "317", + "vertex_to": "579", + "timestamp": "2025-11-27T04:04:14.742594-08:00" }, { "operation": "add_edge", - "rtt_ns": 855957, - "rtt_ms": 0.855957, + "rtt_ns": 1614667, + "rtt_ms": 1.614667, "checkpoint": 0, "vertex_from": "316", - "vertex_to": "611", - "timestamp": "2025-11-27T01:23:51.530423051Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:04:14.742611-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1258726, - "rtt_ms": 1.258726, + "operation": "add_vertex", + "rtt_ns": 2159416, + "rtt_ms": 2.159416, "checkpoint": 0, - "vertex_from": "316", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.530457211Z" + "vertex_from": "319", + "timestamp": "2025-11-27T04:04:14.743873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250836, - "rtt_ms": 1.250836, + "rtt_ns": 1320875, + "rtt_ms": 1.320875, "checkpoint": 0, - "vertex_from": "316", - "vertex_to": "321", - "timestamp": "2025-11-27T01:23:51.530464561Z" + "vertex_from": "320", + "vertex_to": "662", + "timestamp": "2025-11-27T04:04:14.743891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138746, - "rtt_ms": 1.138746, + "rtt_ns": 1571834, + "rtt_ms": 1.571834, "checkpoint": 0, "vertex_from": "315", "vertex_to": "332", - "timestamp": "2025-11-27T01:23:51.53074006Z" + "timestamp": "2025-11-27T04:04:14.743894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060817, - "rtt_ms": 1.060817, + "rtt_ns": 2353250, + "rtt_ms": 2.35325, "checkpoint": 0, "vertex_from": "318", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.53077813Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1068317, - "rtt_ms": 1.068317, - "checkpoint": 0, - "vertex_from": "319", - "timestamp": "2025-11-27T01:23:51.53080632Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1248956, - "rtt_ms": 1.248956, - "checkpoint": 0, - "vertex_from": "317", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.53084199Z" + "timestamp": "2025-11-27T04:04:14.743896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071827, - "rtt_ms": 1.071827, + "rtt_ns": 1294459, + "rtt_ms": 1.294459, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.53084318Z" + "vertex_to": "349", + "timestamp": "2025-11-27T04:04:14.743906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146177, - "rtt_ms": 1.146177, + "rtt_ns": 1488834, + "rtt_ms": 1.488834, "checkpoint": 0, "vertex_from": "320", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.5309894Z" + "timestamp": "2025-11-27T04:04:14.743969-08:00" }, { "operation": "add_edge", - "rtt_ns": 754318, - "rtt_ms": 0.754318, + "rtt_ns": 1600667, + "rtt_ms": 1.600667, "checkpoint": 0, "vertex_from": "320", "vertex_to": "551", - "timestamp": "2025-11-27T01:23:51.531177609Z" + "timestamp": "2025-11-27T04:04:14.744087-08:00" }, { "operation": "add_edge", - "rtt_ns": 732638, - "rtt_ms": 0.732638, + "rtt_ns": 1551083, + "rtt_ms": 1.551083, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.531198769Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:04:14.74409-08:00" }, { "operation": "add_edge", - "rtt_ns": 796378, - "rtt_ms": 0.796378, + "rtt_ns": 1510291, + "rtt_ms": 1.510291, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "918", - "timestamp": "2025-11-27T01:23:51.531223549Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.744104-08:00" }, { "operation": "add_edge", - "rtt_ns": 835228, - "rtt_ms": 0.835228, + "rtt_ns": 1985584, + "rtt_ms": 1.985584, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:51.531293929Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:04:14.744205-08:00" }, { "operation": "add_edge", - "rtt_ns": 638419, - "rtt_ms": 0.638419, + "rtt_ns": 1165500, + "rtt_ms": 1.1655, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.531417339Z" + "vertex_to": "498", + "timestamp": "2025-11-27T04:04:14.745372-08:00" }, { "operation": "add_edge", - "rtt_ns": 675769, - "rtt_ms": 0.675769, + "rtt_ns": 1303500, + "rtt_ms": 1.3035, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "349", - "timestamp": "2025-11-27T01:23:51.531418319Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.745391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159077, - "rtt_ms": 1.159077, + "rtt_ns": 1519042, + "rtt_ms": 1.519042, "checkpoint": 0, "vertex_from": "319", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.531965877Z" + "timestamp": "2025-11-27T04:04:14.745393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050867, - "rtt_ms": 1.050867, + "rtt_ns": 1503708, + "rtt_ms": 1.503708, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "488", - "timestamp": "2025-11-27T01:23:51.532042037Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.745399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097587, - "rtt_ms": 1.097587, + "rtt_ns": 1525333, + "rtt_ms": 1.525333, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.532276736Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.745418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449036, - "rtt_ms": 1.449036, + "rtt_ns": 1454875, + "rtt_ms": 1.454875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.532293916Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:04:14.745425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112877, - "rtt_ms": 1.112877, + "rtt_ns": 1356959, + "rtt_ms": 1.356959, "checkpoint": 0, "vertex_from": "320", "vertex_to": "326", - "timestamp": "2025-11-27T01:23:51.532337816Z" + "timestamp": "2025-11-27T04:04:14.745448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498936, - "rtt_ms": 1.498936, + "rtt_ns": 1541916, + "rtt_ms": 1.541916, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.532342886Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:04:14.745449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175947, - "rtt_ms": 1.175947, + "rtt_ns": 1552250, + "rtt_ms": 1.55225, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.532376816Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:14.74545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621385, - "rtt_ms": 1.621385, + "rtt_ns": 1496708, + "rtt_ms": 1.496708, "checkpoint": 0, "vertex_from": "320", "vertex_to": "825", - "timestamp": "2025-11-27T01:23:51.532916674Z" + "timestamp": "2025-11-27T04:04:14.745602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655005, - "rtt_ms": 1.655005, + "rtt_ns": 1186459, + "rtt_ms": 1.186459, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "498", - "timestamp": "2025-11-27T01:23:51.533074184Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:04:14.746579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689615, - "rtt_ms": 1.689615, + "rtt_ns": 1041833, + "rtt_ms": 1.041833, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:51.533109624Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:14.746645-08:00" }, { "operation": "add_edge", - "rtt_ns": 2623252, - "rtt_ms": 2.623252, + "rtt_ns": 1443708, + "rtt_ms": 1.443708, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.534590909Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:04:14.746862-08:00" }, { "operation": "add_edge", - "rtt_ns": 2398743, - "rtt_ms": 2.398743, + "rtt_ns": 1456042, + "rtt_ms": 1.456042, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:51.534694729Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:04:14.746885-08:00" }, { "operation": "add_edge", - "rtt_ns": 2446893, - "rtt_ms": 2.446893, + "rtt_ns": 1443125, + "rtt_ms": 1.443125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.534724849Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:04:14.746894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806895, - "rtt_ms": 1.806895, + "rtt_ns": 1535875, + "rtt_ms": 1.535875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "946", - "timestamp": "2025-11-27T01:23:51.534725459Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:04:14.746909-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355173, - "rtt_ms": 2.355173, + "rtt_ns": 1466375, + "rtt_ms": 1.466375, "checkpoint": 0, "vertex_from": "320", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.534733329Z" + "timestamp": "2025-11-27T04:04:14.746917-08:00" }, { "operation": "add_edge", - "rtt_ns": 2397363, - "rtt_ms": 2.397363, + "rtt_ns": 1474083, + "rtt_ms": 1.474083, "checkpoint": 0, "vertex_from": "320", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.534741779Z" + "timestamp": "2025-11-27T04:04:14.746923-08:00" }, { "operation": "add_edge", - "rtt_ns": 2764031, - "rtt_ms": 2.764031, + "rtt_ns": 1579167, + "rtt_ms": 1.579167, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "539", - "timestamp": "2025-11-27T01:23:51.534807868Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:14.746979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177683, - "rtt_ms": 2.177683, + "rtt_ns": 1666042, + "rtt_ms": 1.666042, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.535252867Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:04:14.74706-08:00" }, { "operation": "add_edge", - "rtt_ns": 2477303, - "rtt_ms": 2.477303, + "rtt_ns": 1366083, + "rtt_ms": 1.366083, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.535590016Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:14.748012-08:00" }, { "operation": "add_edge", - "rtt_ns": 3329220, - "rtt_ms": 3.32922, + "rtt_ns": 1168750, + "rtt_ms": 1.16875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:51.535668786Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:04:14.748032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326626, - "rtt_ms": 1.326626, + "rtt_ns": 1463208, + "rtt_ms": 1.463208, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.535920595Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:14.748045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228796, - "rtt_ms": 1.228796, + "rtt_ns": 2169125, + "rtt_ms": 2.169125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.535964445Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:14.749149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321996, - "rtt_ms": 1.321996, + "rtt_ns": 2264458, + "rtt_ms": 2.264458, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:51.536052245Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.749173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393846, - "rtt_ms": 1.393846, + "rtt_ns": 2270709, + "rtt_ms": 2.270709, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:51.536093455Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:14.749189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398856, - "rtt_ms": 1.398856, + "rtt_ns": 2142333, + "rtt_ms": 2.142333, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.536142205Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:04:14.749204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464105, - "rtt_ms": 1.464105, + "rtt_ns": 2295083, + "rtt_ms": 2.295083, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.536191104Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.749219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413476, - "rtt_ms": 1.413476, + "rtt_ns": 2338125, + "rtt_ms": 2.338125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.536223474Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:04:14.749233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147757, - "rtt_ms": 1.147757, + "rtt_ns": 1530042, + "rtt_ms": 1.530042, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:51.536738723Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:04:14.749543-08:00" }, { "operation": "add_edge", - "rtt_ns": 964587, - "rtt_ms": 0.964587, + "rtt_ns": 1628125, + "rtt_ms": 1.628125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.536886202Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:04:14.749675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656675, - "rtt_ms": 1.656675, + "rtt_ns": 1932042, + "rtt_ms": 1.932042, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.536911532Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:14.749965-08:00" }, { "operation": "add_edge", - "rtt_ns": 936087, - "rtt_ms": 0.936087, + "rtt_ns": 3719250, + "rtt_ms": 3.71925, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.536989412Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:04:14.750605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334826, - "rtt_ms": 1.334826, + "rtt_ns": 1400167, + "rtt_ms": 1.400167, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "569", - "timestamp": "2025-11-27T01:23:51.537005382Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:14.75062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074457, - "rtt_ms": 1.074457, + "rtt_ns": 1731959, + "rtt_ms": 1.731959, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.537039662Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.750906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598805, - "rtt_ms": 1.598805, + "rtt_ns": 1712125, + "rtt_ms": 1.712125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.53774239Z" + "vertex_to": "1008", + "timestamp": "2025-11-27T04:04:14.750917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665705, - "rtt_ms": 1.665705, + "rtt_ns": 1246333, + "rtt_ms": 1.246333, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.53776083Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:14.750922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442906, - "rtt_ms": 1.442906, + "rtt_ns": 1395625, + "rtt_ms": 1.395625, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.538183069Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:04:14.75094-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106344, - "rtt_ms": 2.106344, + "rtt_ns": 1752833, + "rtt_ms": 1.752833, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "1008", - "timestamp": "2025-11-27T01:23:51.538298588Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:04:14.750942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2075734, - "rtt_ms": 2.075734, + "rtt_ns": 1806209, + "rtt_ms": 1.806209, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.538300548Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:14.750957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387586, - "rtt_ms": 1.387586, + "rtt_ns": 1724250, + "rtt_ms": 1.72425, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.538301498Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:14.750958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404756, - "rtt_ms": 1.404756, + "rtt_ns": 1925375, + "rtt_ms": 1.925375, "checkpoint": 0, "vertex_from": "320", "vertex_to": "677", - "timestamp": "2025-11-27T01:23:51.538394978Z" + "timestamp": "2025-11-27T04:04:14.751892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560476, - "rtt_ms": 1.560476, + "rtt_ns": 1055500, + "rtt_ms": 1.0555, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:51.538448378Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:04:14.752014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439096, - "rtt_ms": 1.439096, + "rtt_ns": 1213000, + "rtt_ms": 1.213, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "361", - "timestamp": "2025-11-27T01:23:51.538479878Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:04:14.752131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574796, - "rtt_ms": 1.574796, + "rtt_ns": 1450084, + "rtt_ms": 1.450084, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:51.538581448Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:14.752373-08:00" }, { "operation": "add_edge", - "rtt_ns": 864718, - "rtt_ms": 0.864718, + "rtt_ns": 1468083, + "rtt_ms": 1.468083, "checkpoint": 0, "vertex_from": "320", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.538609078Z" + "timestamp": "2025-11-27T04:04:14.752375-08:00" }, { "operation": "add_edge", - "rtt_ns": 869018, - "rtt_ms": 0.869018, + "rtt_ns": 1447792, + "rtt_ms": 1.447792, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "433", - "timestamp": "2025-11-27T01:23:51.538631558Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:04:14.752388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240807, - "rtt_ms": 1.240807, + "rtt_ns": 1436000, + "rtt_ms": 1.436, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:51.539541085Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:14.752393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412646, - "rtt_ms": 1.412646, + "rtt_ns": 1879250, + "rtt_ms": 1.87925, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.539596985Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:04:14.752501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452696, - "rtt_ms": 1.452696, + "rtt_ns": 1596667, + "rtt_ms": 1.596667, "checkpoint": 0, "vertex_from": "320", "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.539755104Z" + "timestamp": "2025-11-27T04:04:14.75254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748375, - "rtt_ms": 1.748375, + "rtt_ns": 1938209, + "rtt_ms": 1.938209, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "427", - "timestamp": "2025-11-27T01:23:51.540230013Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:04:14.752546-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011935, - "rtt_ms": 2.011935, + "rtt_ns": 928667, + "rtt_ms": 0.928667, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.540314363Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:04:14.753061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934195, - "rtt_ms": 1.934195, + "rtt_ns": 1229834, + "rtt_ms": 1.229834, "checkpoint": 0, "vertex_from": "320", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:51.540383803Z" + "timestamp": "2025-11-27T04:04:14.753123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816844, - "rtt_ms": 1.816844, + "rtt_ns": 1316875, + "rtt_ms": 1.316875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "406", - "timestamp": "2025-11-27T01:23:51.540427422Z" + "vertex_to": "427", + "timestamp": "2025-11-27T04:04:14.753332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875384, - "rtt_ms": 1.875384, + "rtt_ns": 1236083, + "rtt_ms": 1.236083, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.540458812Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:04:14.753611-08:00" }, { "operation": "add_edge", - "rtt_ns": 2123544, - "rtt_ms": 2.123544, + "rtt_ns": 1239917, + "rtt_ms": 1.239917, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.540520122Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:04:14.753629-08:00" }, { "operation": "add_edge", - "rtt_ns": 2459122, - "rtt_ms": 2.459122, + "rtt_ns": 1133417, + "rtt_ms": 1.133417, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.54109208Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.753637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492766, - "rtt_ms": 1.492766, + "rtt_ns": 1347500, + "rtt_ms": 1.3475, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.54124943Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:14.753724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021097, - "rtt_ms": 1.021097, + "rtt_ns": 1558667, + "rtt_ms": 1.558667, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "429", - "timestamp": "2025-11-27T01:23:51.54125372Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:14.753952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753995, - "rtt_ms": 1.753995, + "rtt_ns": 1746042, + "rtt_ms": 1.746042, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:51.54129897Z" + "vertex_to": "429", + "timestamp": "2025-11-27T04:04:14.754288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796334, - "rtt_ms": 1.796334, + "rtt_ns": 1862125, + "rtt_ms": 1.862125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.541394879Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:14.754409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084866, - "rtt_ms": 1.084866, + "rtt_ns": 1559208, + "rtt_ms": 1.559208, "checkpoint": 0, "vertex_from": "320", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.541469919Z" + "timestamp": "2025-11-27T04:04:14.754621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513276, - "rtt_ms": 1.513276, + "rtt_ns": 1305375, + "rtt_ms": 1.305375, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.541941978Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:14.754638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693085, - "rtt_ms": 1.693085, + "rtt_ns": 1392541, + "rtt_ms": 1.392541, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.542008518Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:14.75503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517196, - "rtt_ms": 1.517196, + "rtt_ns": 1420792, + "rtt_ms": 1.420792, "checkpoint": 0, "vertex_from": "320", "vertex_to": "710", - "timestamp": "2025-11-27T01:23:51.542038848Z" + "timestamp": "2025-11-27T04:04:14.755032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648305, - "rtt_ms": 1.648305, + "rtt_ns": 1437750, + "rtt_ms": 1.43775, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.542108277Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:14.755068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445646, - "rtt_ms": 1.445646, + "rtt_ns": 2365875, + "rtt_ms": 2.365875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.542540176Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:04:14.755491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289646, - "rtt_ms": 1.289646, + "rtt_ns": 1111750, + "rtt_ms": 1.11175, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.542540326Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:04:14.755522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260326, - "rtt_ms": 1.260326, + "rtt_ns": 1310292, + "rtt_ms": 1.310292, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.542560676Z" + "vertex_to": "655", + "timestamp": "2025-11-27T04:04:14.755599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355446, - "rtt_ms": 1.355446, + "rtt_ns": 2078500, + "rtt_ms": 2.0785, "checkpoint": 0, "vertex_from": "320", "vertex_to": "681", - "timestamp": "2025-11-27T01:23:51.542611506Z" + "timestamp": "2025-11-27T04:04:14.755805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168837, - "rtt_ms": 1.168837, + "rtt_ns": 2284292, + "rtt_ms": 2.284292, "checkpoint": 0, - "vertex_from": "320", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:51.542639736Z" + "vertex_from": "321", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.757318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126716, - "rtt_ms": 1.126716, + "rtt_ns": 2705584, + "rtt_ms": 2.705584, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.543069464Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.757345-08:00" }, { "operation": "add_edge", - "rtt_ns": 974687, - "rtt_ms": 0.974687, + "rtt_ns": 3390917, + "rtt_ms": 3.390917, "checkpoint": 0, - "vertex_from": "321", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.543083824Z" + "vertex_from": "320", + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:14.757345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863555, - "rtt_ms": 1.863555, + "rtt_ns": 2356625, + "rtt_ms": 2.356625, "checkpoint": 0, - "vertex_from": "320", - "vertex_to": "655", - "timestamp": "2025-11-27T01:23:51.543260134Z" + "vertex_from": "321", + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:14.757426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284786, - "rtt_ms": 1.284786, + "rtt_ns": 1934791, + "rtt_ms": 1.934791, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.543293954Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:04:14.757429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285786, - "rtt_ms": 1.285786, + "rtt_ns": 2400333, + "rtt_ms": 2.400333, "checkpoint": 0, "vertex_from": "321", "vertex_to": "402", - "timestamp": "2025-11-27T01:23:51.543326864Z" + "timestamp": "2025-11-27T04:04:14.757431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288386, - "rtt_ms": 1.288386, + "rtt_ns": 1934375, + "rtt_ms": 1.934375, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:51.543831462Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:14.757457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304656, - "rtt_ms": 1.304656, + "rtt_ns": 2086250, + "rtt_ms": 2.08625, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.543847252Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.757686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276916, - "rtt_ms": 1.276916, + "rtt_ns": 3282291, + "rtt_ms": 3.282291, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.543889662Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.757904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282556, - "rtt_ms": 1.282556, + "rtt_ns": 2203291, + "rtt_ms": 2.203291, "checkpoint": 0, "vertex_from": "321", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.543923402Z" + "timestamp": "2025-11-27T04:04:14.758009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340876, - "rtt_ms": 1.340876, + "rtt_ns": 1680875, + "rtt_ms": 1.680875, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:51.5446361Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:04:14.759029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569586, - "rtt_ms": 1.569586, + "rtt_ns": 1653500, + "rtt_ms": 1.6535, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.54464048Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:04:14.759086-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132274, - "rtt_ms": 2.132274, + "rtt_ns": 1804209, + "rtt_ms": 1.804209, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.544694Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:04:14.759709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669956, - "rtt_ms": 1.669956, + "rtt_ns": 2301417, + "rtt_ms": 2.301417, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "332", - "timestamp": "2025-11-27T01:23:51.54475481Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:04:14.759729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445196, - "rtt_ms": 1.445196, + "rtt_ns": 2064541, + "rtt_ms": 2.064541, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.54477326Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.759752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566605, - "rtt_ms": 1.566605, + "rtt_ns": 2411125, + "rtt_ms": 2.411125, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:51.544828169Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:04:14.759869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021727, - "rtt_ms": 1.021727, + "rtt_ns": 2631167, + "rtt_ms": 2.631167, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "362", - "timestamp": "2025-11-27T01:23:51.544854619Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:04:14.759979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036437, - "rtt_ms": 1.036437, + "rtt_ns": 2758209, + "rtt_ms": 2.758209, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.544885039Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:04:14.760077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037167, - "rtt_ms": 1.037167, + "rtt_ns": 2889542, + "rtt_ms": 2.889542, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "360", - "timestamp": "2025-11-27T01:23:51.544961759Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:14.76032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122217, - "rtt_ms": 1.122217, + "rtt_ns": 3414542, + "rtt_ms": 3.414542, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.545013079Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:04:14.761425-08:00" }, { "operation": "add_edge", - "rtt_ns": 812217, - "rtt_ms": 0.812217, + "rtt_ns": 1630625, + "rtt_ms": 1.630625, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:51.545570917Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:04:14.761501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111037, - "rtt_ms": 1.111037, + "rtt_ns": 2525792, + "rtt_ms": 2.525792, "checkpoint": 0, "vertex_from": "321", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.545752767Z" + "timestamp": "2025-11-27T04:04:14.761555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083677, - "rtt_ms": 1.083677, + "rtt_ns": 1856500, + "rtt_ms": 1.8565, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.545778997Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:04:14.761609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167936, - "rtt_ms": 1.167936, + "rtt_ns": 1694292, + "rtt_ms": 1.694292, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.545942896Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:04:14.761677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087867, - "rtt_ms": 1.087867, + "rtt_ns": 2025125, + "rtt_ms": 2.025125, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.545943476Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:04:14.761736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106987, - "rtt_ms": 1.106987, + "rtt_ns": 2657542, + "rtt_ms": 2.657542, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.545993066Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:04:14.761747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231057, - "rtt_ms": 1.231057, + "rtt_ns": 1698625, + "rtt_ms": 1.698625, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:51.546060886Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:14.761777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075557, - "rtt_ms": 1.075557, + "rtt_ns": 2135542, + "rtt_ms": 2.135542, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:51.546091656Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:14.761865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484116, - "rtt_ms": 1.484116, + "rtt_ns": 1359041, + "rtt_ms": 1.359041, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:51.546121726Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:14.762785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169437, - "rtt_ms": 1.169437, + "rtt_ns": 2553583, + "rtt_ms": 2.553583, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.546132296Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:04:14.762874-08:00" }, { "operation": "add_edge", - "rtt_ns": 837247, - "rtt_ms": 0.837247, + "rtt_ns": 1267250, + "rtt_ms": 1.26725, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.546617734Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:14.762878-08:00" }, { "operation": "add_edge", - "rtt_ns": 795798, - "rtt_ms": 0.795798, + "rtt_ns": 1198625, + "rtt_ms": 1.198625, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.546740284Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:14.762937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009577, - "rtt_ms": 1.009577, + "rtt_ns": 1515250, + "rtt_ms": 1.51525, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.546763844Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.763263-08:00" }, { "operation": "add_edge", - "rtt_ns": 863898, - "rtt_ms": 0.863898, + "rtt_ns": 1609166, + "rtt_ms": 1.609166, "checkpoint": 0, "vertex_from": "322", "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.546809034Z" + "timestamp": "2025-11-27T04:04:14.763295-08:00" }, { "operation": "add_edge", - "rtt_ns": 905328, - "rtt_ms": 0.905328, + "rtt_ns": 1826125, + "rtt_ms": 1.826125, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.546900314Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.763328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347407, - "rtt_ms": 1.347407, + "rtt_ns": 1788625, + "rtt_ms": 1.788625, "checkpoint": 0, - "vertex_from": "321", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.546920264Z" + "vertex_from": "322", + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:14.763345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446986, - "rtt_ms": 1.446986, + "rtt_ns": 1582709, + "rtt_ms": 1.582709, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:51.547580022Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.76336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648805, - "rtt_ms": 1.648805, + "rtt_ns": 2138208, + "rtt_ms": 2.138208, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.547711181Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:14.764006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122417, - "rtt_ms": 1.122417, + "rtt_ns": 1271666, + "rtt_ms": 1.271666, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.547741091Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:04:14.76415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655065, - "rtt_ms": 1.655065, + "rtt_ns": 1398250, + "rtt_ms": 1.39825, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.547747591Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:04:14.764184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639745, - "rtt_ms": 1.639745, + "rtt_ns": 1341916, + "rtt_ms": 1.341916, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.547762351Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.764217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145157, - "rtt_ms": 1.145157, + "rtt_ns": 1316417, + "rtt_ms": 1.316417, "checkpoint": 0, "vertex_from": "322", "vertex_to": "480", - "timestamp": "2025-11-27T01:23:51.547910621Z" + "timestamp": "2025-11-27T04:04:14.764255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300666, - "rtt_ms": 1.300666, + "rtt_ns": 1528125, + "rtt_ms": 1.528125, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:51.54811079Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:04:14.764874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257676, - "rtt_ms": 1.257676, + "rtt_ns": 1764416, + "rtt_ms": 1.764416, "checkpoint": 0, "vertex_from": "322", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.5481791Z" + "timestamp": "2025-11-27T04:04:14.765094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339866, - "rtt_ms": 1.339866, + "rtt_ns": 1912916, + "rtt_ms": 1.912916, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.54824101Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:04:14.765274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551036, - "rtt_ms": 1.551036, + "rtt_ns": 2148209, + "rtt_ms": 2.148209, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.54829225Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:14.765444-08:00" }, { "operation": "add_edge", - "rtt_ns": 592779, - "rtt_ms": 0.592779, + "rtt_ns": 2200041, + "rtt_ms": 2.200041, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "653", - "timestamp": "2025-11-27T01:23:51.5483053Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:04:14.765464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286216, - "rtt_ms": 1.286216, + "rtt_ns": 1517125, + "rtt_ms": 1.517125, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:51.548867518Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:14.765702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142707, - "rtt_ms": 1.142707, + "rtt_ns": 1700416, + "rtt_ms": 1.700416, "checkpoint": 0, "vertex_from": "322", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.548884538Z" - }, - { - "operation": "add_edge", - "rtt_ns": 774708, - "rtt_ms": 0.774708, - "checkpoint": 0, - "vertex_from": "322", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.548886348Z" + "timestamp": "2025-11-27T04:04:14.765707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194276, - "rtt_ms": 1.194276, + "rtt_ns": 1620958, + "rtt_ms": 1.620958, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.549105607Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.765772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396386, - "rtt_ms": 1.396386, + "rtt_ns": 1288916, + "rtt_ms": 1.288916, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.549145177Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:14.766386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385126, - "rtt_ms": 1.385126, + "rtt_ns": 2220667, + "rtt_ms": 2.220667, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.549148177Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:14.766476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566536, - "rtt_ms": 1.566536, + "rtt_ns": 2293708, + "rtt_ms": 2.293708, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.549746516Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:14.766511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961004, - "rtt_ms": 1.961004, + "rtt_ns": 1098167, + "rtt_ms": 1.098167, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.550202854Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:04:14.766563-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347903, - "rtt_ms": 2.347903, + "rtt_ns": 1796583, + "rtt_ms": 1.796583, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.550654203Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:14.766671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947405, - "rtt_ms": 1.947405, + "rtt_ns": 1548375, + "rtt_ms": 1.548375, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "461", - "timestamp": "2025-11-27T01:23:51.550815823Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.766824-08:00" }, { "operation": "add_edge", - "rtt_ns": 3044871, - "rtt_ms": 3.044871, + "rtt_ns": 1457833, + "rtt_ms": 1.457833, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.551337951Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:04:14.766903-08:00" }, { "operation": "add_edge", - "rtt_ns": 2289144, - "rtt_ms": 2.289144, + "rtt_ns": 1911125, + "rtt_ms": 1.911125, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.551396201Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:04:14.767614-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253324, - "rtt_ms": 2.253324, + "rtt_ns": 1279416, + "rtt_ms": 1.279416, "checkpoint": 0, "vertex_from": "322", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.551402231Z" + "timestamp": "2025-11-27T04:04:14.767757-08:00" }, { "operation": "add_edge", - "rtt_ns": 2515113, - "rtt_ms": 2.515113, + "rtt_ns": 1265542, + "rtt_ms": 1.265542, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.551402361Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:04:14.767778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690035, - "rtt_ms": 1.690035, + "rtt_ns": 1318375, + "rtt_ms": 1.318375, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:51.551437301Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:14.767882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2610523, - "rtt_ms": 2.610523, + "rtt_ns": 2193834, + "rtt_ms": 2.193834, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:51.551496061Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:14.767902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362634, - "rtt_ms": 2.362634, + "rtt_ns": 1550334, + "rtt_ms": 1.550334, "checkpoint": 0, "vertex_from": "322", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.551508461Z" + "timestamp": "2025-11-27T04:04:14.767937-08:00" }, { "operation": "add_edge", - "rtt_ns": 910118, - "rtt_ms": 0.910118, + "rtt_ns": 2180208, + "rtt_ms": 2.180208, "checkpoint": 0, - "vertex_from": "323", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.551565121Z" + "vertex_from": "322", + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:14.767955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757595, - "rtt_ms": 1.757595, + "rtt_ns": 1366541, + "rtt_ms": 1.366541, "checkpoint": 0, - "vertex_from": "322", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.551961609Z" + "vertex_from": "323", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.768192-08:00" }, { "operation": "add_edge", - "rtt_ns": 807548, - "rtt_ms": 0.807548, + "rtt_ns": 1650334, + "rtt_ms": 1.650334, "checkpoint": 0, "vertex_from": "323", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.552146339Z" + "timestamp": "2025-11-27T04:04:14.768556-08:00" }, { "operation": "add_edge", - "rtt_ns": 804788, - "rtt_ms": 0.804788, + "rtt_ns": 2387250, + "rtt_ms": 2.38725, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.552209669Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.769061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393956, - "rtt_ms": 1.393956, + "rtt_ns": 1796209, + "rtt_ms": 1.796209, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.552210719Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.769699-08:00" }, { "operation": "add_edge", - "rtt_ns": 829168, - "rtt_ms": 0.829168, + "rtt_ns": 2099459, + "rtt_ms": 2.099459, "checkpoint": 0, "vertex_from": "323", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.552226399Z" + "timestamp": "2025-11-27T04:04:14.769716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554295, - "rtt_ms": 1.554295, + "rtt_ns": 1914917, + "rtt_ms": 1.914917, "checkpoint": 0, "vertex_from": "323", "vertex_to": "677", - "timestamp": "2025-11-27T01:23:51.553063776Z" + "timestamp": "2025-11-27T04:04:14.769853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627135, - "rtt_ms": 1.627135, + "rtt_ns": 1987333, + "rtt_ms": 1.987333, "checkpoint": 0, "vertex_from": "323", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.553065466Z" + "timestamp": "2025-11-27T04:04:14.769871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584305, - "rtt_ms": 1.584305, + "rtt_ns": 1313792, + "rtt_ms": 1.313792, "checkpoint": 0, - "vertex_from": "323", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.553080986Z" + "vertex_from": "324", + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:14.769871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515335, - "rtt_ms": 1.515335, + "rtt_ns": 2135083, + "rtt_ms": 2.135083, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.553081856Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:14.769914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132197, - "rtt_ms": 1.132197, + "rtt_ns": 2038417, + "rtt_ms": 2.038417, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "880", - "timestamp": "2025-11-27T01:23:51.553094756Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:14.769994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700175, - "rtt_ms": 1.700175, + "rtt_ns": 1870583, + "rtt_ms": 1.870583, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.553104256Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:04:14.770063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604185, - "rtt_ms": 1.604185, + "rtt_ns": 839292, + "rtt_ms": 0.839292, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "611", - "timestamp": "2025-11-27T01:23:51.553831624Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:14.77054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767044, - "rtt_ms": 1.767044, + "rtt_ns": 1604417, + "rtt_ms": 1.604417, "checkpoint": 0, "vertex_from": "324", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.553977673Z" + "timestamp": "2025-11-27T04:04:14.770667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866674, - "rtt_ms": 1.866674, + "rtt_ns": 3028000, + "rtt_ms": 3.028, "checkpoint": 0, - "vertex_from": "324", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.554078663Z" + "vertex_from": "323", + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:14.770786-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003844, - "rtt_ms": 2.003844, + "rtt_ns": 1483875, + "rtt_ms": 1.483875, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.554152193Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:04:14.7712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710205, - "rtt_ms": 1.710205, + "rtt_ns": 1352500, + "rtt_ms": 1.3525, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.554776541Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:04:14.771268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781125, - "rtt_ms": 1.781125, + "rtt_ns": 1442667, + "rtt_ms": 1.442667, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:51.554877831Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1057697, - "rtt_ms": 1.057697, - "checkpoint": 0, - "vertex_from": "797", - "timestamp": "2025-11-27T01:23:51.554892431Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:14.771314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841175, - "rtt_ms": 1.841175, + "rtt_ns": 1476708, + "rtt_ms": 1.476708, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.554905931Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:14.771349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829515, - "rtt_ms": 1.829515, + "rtt_ns": 1358708, + "rtt_ms": 1.358708, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.554911401Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:04:14.771354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826405, - "rtt_ms": 1.826405, + "rtt_ns": 1538958, + "rtt_ms": 1.538958, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "791", - "timestamp": "2025-11-27T01:23:51.554931791Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:14.771395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853615, - "rtt_ms": 1.853615, + "rtt_ns": 1891541, + "rtt_ms": 1.891541, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:51.554936761Z" + "vertex_to": "791", + "timestamp": "2025-11-27T04:04:14.771956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273817, - "rtt_ms": 1.273817, + "rtt_ns": 1230333, + "rtt_ms": 1.230333, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:51.55525277Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:04:14.772017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134016, - "rtt_ms": 1.134016, + "rtt_ns": 939000, + "rtt_ms": 0.939, "checkpoint": 0, "vertex_from": "324", "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.555287129Z" + "timestamp": "2025-11-27T04:04:14.77214-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1208936, - "rtt_ms": 1.208936, + "operation": "add_vertex", + "rtt_ns": 1624084, + "rtt_ms": 1.624084, "checkpoint": 0, - "vertex_from": "324", - "vertex_to": "328", - "timestamp": "2025-11-27T01:23:51.555288929Z" + "vertex_from": "797", + "timestamp": "2025-11-27T04:04:14.772165-08:00" }, { "operation": "add_edge", - "rtt_ns": 584898, - "rtt_ms": 0.584898, + "rtt_ns": 1517875, + "rtt_ms": 1.517875, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.555363309Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:04:14.772186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024877, - "rtt_ms": 1.024877, + "rtt_ns": 1777375, + "rtt_ms": 1.777375, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.555938158Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:14.773047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085296, - "rtt_ms": 1.085296, + "rtt_ns": 1727375, + "rtt_ms": 1.727375, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "797", - "timestamp": "2025-11-27T01:23:51.555978337Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:14.773082-08:00" }, { "operation": "add_edge", - "rtt_ns": 738817, - "rtt_ms": 0.738817, + "rtt_ns": 1350291, + "rtt_ms": 1.350291, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.555993257Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:04:14.773309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122916, - "rtt_ms": 1.122916, + "rtt_ns": 1206000, + "rtt_ms": 1.206, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "392", - "timestamp": "2025-11-27T01:23:51.556029607Z" + "vertex_to": "797", + "timestamp": "2025-11-27T04:04:14.773371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141776, - "rtt_ms": 1.141776, + "rtt_ns": 2098584, + "rtt_ms": 2.098584, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.556074227Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:04:14.773414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174386, - "rtt_ms": 1.174386, + "rtt_ns": 1288541, + "rtt_ms": 1.288541, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:51.556113017Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:04:14.77343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324946, - "rtt_ms": 1.324946, + "rtt_ns": 1459791, + "rtt_ms": 1.459791, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "817", - "timestamp": "2025-11-27T01:23:51.556204757Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:14.773478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559176, - "rtt_ms": 1.559176, + "rtt_ns": 2087167, + "rtt_ms": 2.087167, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:51.556924065Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:14.773483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648766, - "rtt_ms": 1.648766, + "rtt_ns": 1315666, + "rtt_ms": 1.315666, "checkpoint": 0, "vertex_from": "324", "vertex_to": "722", - "timestamp": "2025-11-27T01:23:51.556938795Z" + "timestamp": "2025-11-27T04:04:14.773504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768085, - "rtt_ms": 1.768085, + "rtt_ns": 2325042, + "rtt_ms": 2.325042, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:51.557058524Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:04:14.773675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124947, - "rtt_ms": 1.124947, + "rtt_ns": 1400167, + "rtt_ms": 1.400167, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:51.557119754Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:14.774509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388096, - "rtt_ms": 1.388096, + "rtt_ns": 1611042, + "rtt_ms": 1.611042, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.557328334Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:04:14.774659-08:00" }, { "operation": "add_edge", - "rtt_ns": 794878, - "rtt_ms": 0.794878, + "rtt_ns": 1198500, + "rtt_ms": 1.1985, "checkpoint": 0, - "vertex_from": "325", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.557854932Z" + "vertex_from": "324", + "vertex_to": "427", + "timestamp": "2025-11-27T04:04:14.774679-08:00" }, { "operation": "add_edge", - "rtt_ns": 948897, - "rtt_ms": 0.948897, + "rtt_ns": 1378250, + "rtt_ms": 1.37825, "checkpoint": 0, - "vertex_from": "325", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.557875902Z" + "vertex_from": "324", + "vertex_to": "389", + "timestamp": "2025-11-27T04:04:14.774688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810465, - "rtt_ms": 1.810465, + "rtt_ns": 1347292, + "rtt_ms": 1.347292, "checkpoint": 0, "vertex_from": "324", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.557885872Z" + "timestamp": "2025-11-27T04:04:14.774778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920665, - "rtt_ms": 1.920665, + "rtt_ns": 1422875, + "rtt_ms": 1.422875, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "389", - "timestamp": "2025-11-27T01:23:51.557899832Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:04:14.774795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797235, - "rtt_ms": 1.797235, + "rtt_ns": 1303167, + "rtt_ms": 1.303167, "checkpoint": 0, - "vertex_from": "324", - "vertex_to": "427", - "timestamp": "2025-11-27T01:23:51.557911362Z" + "vertex_from": "325", + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:14.774808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720625, - "rtt_ms": 1.720625, + "rtt_ns": 1393709, + "rtt_ms": 1.393709, "checkpoint": 0, "vertex_from": "324", "vertex_to": "574", - "timestamp": "2025-11-27T01:23:51.557926352Z" + "timestamp": "2025-11-27T04:04:14.774881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966745, - "rtt_ms": 1.966745, + "rtt_ns": 1483833, + "rtt_ms": 1.483833, "checkpoint": 0, "vertex_from": "324", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.557998772Z" + "timestamp": "2025-11-27T04:04:14.774899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080517, - "rtt_ms": 1.080517, + "rtt_ns": 1477333, + "rtt_ms": 1.477333, "checkpoint": 0, "vertex_from": "325", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.558020332Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1054647, - "rtt_ms": 1.054647, - "checkpoint": 0, - "vertex_from": "325", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:51.558175641Z" + "timestamp": "2025-11-27T04:04:14.775154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497875, - "rtt_ms": 1.497875, + "rtt_ns": 1044333, + "rtt_ms": 1.044333, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.558832509Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:14.775555-08:00" }, { - "operation": "add_edge", - "rtt_ns": 918687, - "rtt_ms": 0.918687, + "operation": "add_vertex", + "rtt_ns": 1288083, + "rtt_ms": 1.288083, "checkpoint": 0, - "vertex_from": "325", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.558846259Z" + "vertex_from": "471", + "timestamp": "2025-11-27T04:04:14.776172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031417, - "rtt_ms": 1.031417, + "rtt_ns": 1516125, + "rtt_ms": 1.516125, "checkpoint": 0, "vertex_from": "325", "vertex_to": "568", - "timestamp": "2025-11-27T01:23:51.558889119Z" + "timestamp": "2025-11-27T04:04:14.776207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168507, - "rtt_ms": 1.168507, + "rtt_ns": 1372625, + "rtt_ms": 1.372625, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.559055709Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:14.776272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184147, - "rtt_ms": 1.184147, + "rtt_ns": 1472750, + "rtt_ms": 1.47275, "checkpoint": 0, "vertex_from": "325", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.559085559Z" + "timestamp": "2025-11-27T04:04:14.776281-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1307186, - "rtt_ms": 1.307186, + "operation": "add_edge", + "rtt_ns": 1672000, + "rtt_ms": 1.672, "checkpoint": 0, - "vertex_from": "471", - "timestamp": "2025-11-27T01:23:51.559221588Z" + "vertex_from": "325", + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:14.776352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332766, - "rtt_ms": 1.332766, + "rtt_ns": 1577667, + "rtt_ms": 1.577667, "checkpoint": 0, - "vertex_from": "326", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:51.559354478Z" + "vertex_from": "325", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.776373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523986, - "rtt_ms": 1.523986, + "rtt_ns": 1720458, + "rtt_ms": 1.720458, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "412", - "timestamp": "2025-11-27T01:23:51.559401678Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:04:14.77638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222777, - "rtt_ms": 1.222777, + "rtt_ns": 1720125, + "rtt_ms": 1.720125, "checkpoint": 0, - "vertex_from": "326", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.559401968Z" + "vertex_from": "325", + "vertex_to": "412", + "timestamp": "2025-11-27T04:04:14.776499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412486, - "rtt_ms": 1.412486, + "rtt_ns": 1346791, + "rtt_ms": 1.346791, "checkpoint": 0, "vertex_from": "326", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.559412058Z" + "timestamp": "2025-11-27T04:04:14.776502-08:00" }, { "operation": "add_edge", - "rtt_ns": 635889, - "rtt_ms": 0.635889, + "rtt_ns": 1444208, + "rtt_ms": 1.444208, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:51.559483528Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:04:14.777001-08:00" }, { "operation": "add_edge", - "rtt_ns": 706489, - "rtt_ms": 0.706489, + "rtt_ns": 927792, + "rtt_ms": 0.927792, "checkpoint": 0, "vertex_from": "326", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.559540608Z" + "timestamp": "2025-11-27T04:04:14.777201-08:00" }, { "operation": "add_edge", - "rtt_ns": 769728, - "rtt_ms": 0.769728, + "rtt_ns": 1295500, + "rtt_ms": 1.2955, "checkpoint": 0, - "vertex_from": "326", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.559660337Z" + "vertex_from": "325", + "vertex_to": "471", + "timestamp": "2025-11-27T04:04:14.777468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270196, - "rtt_ms": 1.270196, + "rtt_ns": 1282125, + "rtt_ms": 1.282125, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.560327845Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:14.777491-08:00" }, { "operation": "add_edge", - "rtt_ns": 942327, - "rtt_ms": 0.942327, + "rtt_ns": 1567583, + "rtt_ms": 1.567583, "checkpoint": 0, "vertex_from": "327", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.560345905Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:14.778071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149367, - "rtt_ms": 1.149367, + "rtt_ns": 1620083, + "rtt_ms": 1.620083, "checkpoint": 0, - "vertex_from": "325", - "vertex_to": "471", - "timestamp": "2025-11-27T01:23:51.560371235Z" + "vertex_from": "326", + "vertex_to": "550", + "timestamp": "2025-11-27T04:04:14.778121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044877, - "rtt_ms": 1.044877, + "rtt_ns": 1893083, + "rtt_ms": 1.893083, "checkpoint": 0, - "vertex_from": "327", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.560458165Z" + "vertex_from": "326", + "vertex_to": "789", + "timestamp": "2025-11-27T04:04:14.778175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383606, - "rtt_ms": 1.383606, + "rtt_ns": 1845291, + "rtt_ms": 1.845291, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.560469605Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:04:14.77822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116267, - "rtt_ms": 1.116267, + "rtt_ns": 1964291, + "rtt_ms": 1.964291, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:51.560475705Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:14.778346-08:00" }, { "operation": "add_edge", - "rtt_ns": 998767, - "rtt_ms": 0.998767, + "rtt_ns": 1624125, + "rtt_ms": 1.624125, "checkpoint": 0, - "vertex_from": "328", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.560483895Z" + "vertex_from": "327", + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:14.778826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140737, - "rtt_ms": 1.140737, + "rtt_ns": 1909792, + "rtt_ms": 1.909792, "checkpoint": 0, "vertex_from": "327", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.560544375Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:14.778913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515876, - "rtt_ms": 1.515876, + "rtt_ns": 1833334, + "rtt_ms": 1.833334, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.561058803Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.779303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504226, - "rtt_ms": 1.504226, + "rtt_ns": 1145291, + "rtt_ms": 1.145291, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "336", - "timestamp": "2025-11-27T01:23:51.561166013Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:14.779321-08:00" }, { "operation": "add_edge", - "rtt_ns": 872558, - "rtt_ms": 0.872558, + "rtt_ns": 1276792, + "rtt_ms": 1.276792, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.561219813Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:04:14.779349-08:00" }, { "operation": "add_edge", - "rtt_ns": 967617, - "rtt_ms": 0.967617, + "rtt_ns": 1269875, + "rtt_ms": 1.269875, "checkpoint": 0, "vertex_from": "328", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.561297002Z" + "timestamp": "2025-11-27T04:04:14.779392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048767, - "rtt_ms": 1.048767, + "rtt_ns": 1943250, + "rtt_ms": 1.94325, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.561421162Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:14.779435-08:00" }, { "operation": "add_edge", - "rtt_ns": 862407, - "rtt_ms": 0.862407, + "rtt_ns": 3210042, + "rtt_ms": 3.210042, "checkpoint": 0, - "vertex_from": "328", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.56192314Z" + "vertex_from": "326", + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:14.779564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510415, - "rtt_ms": 1.510415, + "rtt_ns": 1211166, + "rtt_ms": 1.211166, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.56196995Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:14.780126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600825, - "rtt_ms": 1.600825, + "rtt_ns": 2101834, + "rtt_ms": 2.101834, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.56207709Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:14.78045-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072794, - "rtt_ms": 2.072794, + "rtt_ns": 2247959, + "rtt_ms": 2.247959, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.562543559Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:14.780468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375846, - "rtt_ms": 1.375846, + "rtt_ns": 1540166, + "rtt_ms": 1.540166, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:51.562543539Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:04:14.780862-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077734, - "rtt_ms": 2.077734, + "rtt_ns": 1563375, + "rtt_ms": 1.563375, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.562562409Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:04:14.780956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273306, - "rtt_ms": 1.273306, + "rtt_ns": 1700292, + "rtt_ms": 1.700292, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.562571598Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:14.781136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206583, - "rtt_ms": 2.206583, + "rtt_ns": 1894417, + "rtt_ms": 1.894417, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:51.562754918Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:14.781198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572625, - "rtt_ms": 1.572625, + "rtt_ns": 2680208, + "rtt_ms": 2.680208, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.562793508Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:14.781507-08:00" }, { "operation": "add_edge", - "rtt_ns": 2157083, - "rtt_ms": 2.157083, + "rtt_ns": 1528958, + "rtt_ms": 1.528958, "checkpoint": 0, "vertex_from": "328", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.563579345Z" + "timestamp": "2025-11-27T04:04:14.781656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513785, - "rtt_ms": 1.513785, + "rtt_ns": 2158833, + "rtt_ms": 2.158833, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.563591555Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:04:14.781723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663475, - "rtt_ms": 1.663475, + "rtt_ns": 1727167, + "rtt_ms": 1.727167, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.563634005Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:04:14.78218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106266, - "rtt_ms": 1.106266, + "rtt_ns": 2870417, + "rtt_ms": 2.870417, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.563650825Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:14.78222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159846, - "rtt_ms": 1.159846, + "rtt_ns": 1901792, + "rtt_ms": 1.901792, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.563705865Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:14.782371-08:00" }, { "operation": "add_edge", - "rtt_ns": 3756190, - "rtt_ms": 3.75619, + "rtt_ns": 1566541, + "rtt_ms": 1.566541, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:51.56568115Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:14.78243-08:00" }, { "operation": "add_edge", - "rtt_ns": 3064641, - "rtt_ms": 3.064641, + "rtt_ns": 1275666, + "rtt_ms": 1.275666, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.565820359Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:14.782477-08:00" }, { "operation": "add_edge", - "rtt_ns": 3532300, - "rtt_ms": 3.5323, + "rtt_ns": 1357959, + "rtt_ms": 1.357959, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:51.566327478Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:14.782495-08:00" }, { "operation": "add_edge", - "rtt_ns": 3807889, - "rtt_ms": 3.807889, + "rtt_ns": 1379500, + "rtt_ms": 1.3795, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.566371668Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:04:14.783105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2872382, - "rtt_ms": 2.872382, + "rtt_ns": 2259833, + "rtt_ms": 2.259833, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.566453397Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:14.783217-08:00" }, { "operation": "add_edge", - "rtt_ns": 3890949, - "rtt_ms": 3.890949, + "rtt_ns": 1049375, + "rtt_ms": 1.049375, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.566463657Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:14.783231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2765802, - "rtt_ms": 2.765802, + "rtt_ns": 1784417, + "rtt_ms": 1.784417, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.566473537Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:14.783294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2826292, - "rtt_ms": 2.826292, + "rtt_ns": 1872250, + "rtt_ms": 1.87225, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.566478547Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:14.783529-08:00" }, { "operation": "add_edge", - "rtt_ns": 2928042, - "rtt_ms": 2.928042, + "rtt_ns": 1324417, + "rtt_ms": 1.324417, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.566564387Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:14.783546-08:00" }, { "operation": "add_edge", - "rtt_ns": 908347, - "rtt_ms": 0.908347, + "rtt_ns": 1871000, + "rtt_ms": 1.871, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.566591037Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:14.784348-08:00" }, { "operation": "add_edge", - "rtt_ns": 2999602, - "rtt_ms": 2.999602, + "rtt_ns": 1989708, + "rtt_ms": 1.989708, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.566591897Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:14.784362-08:00" }, { "operation": "add_edge", - "rtt_ns": 851228, - "rtt_ms": 0.851228, + "rtt_ns": 1226625, + "rtt_ms": 1.226625, "checkpoint": 0, - "vertex_from": "328", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.566672727Z" + "vertex_from": "329", + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:14.784775-08:00" }, { "operation": "add_edge", - "rtt_ns": 974937, - "rtt_ms": 0.974937, + "rtt_ns": 1650875, + "rtt_ms": 1.650875, "checkpoint": 0, "vertex_from": "329", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.567352075Z" + "timestamp": "2025-11-27T04:04:14.784883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391906, - "rtt_ms": 1.391906, + "rtt_ns": 1683583, + "rtt_ms": 1.683583, "checkpoint": 0, "vertex_from": "328", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.567721764Z" + "timestamp": "2025-11-27T04:04:14.784903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783205, - "rtt_ms": 1.783205, + "rtt_ns": 1382958, + "rtt_ms": 1.382958, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.568238542Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:14.784913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766495, - "rtt_ms": 1.766495, + "rtt_ns": 1640708, + "rtt_ms": 1.640708, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.568242202Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:14.784937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858235, - "rtt_ms": 1.858235, + "rtt_ns": 1889792, + "rtt_ms": 1.889792, "checkpoint": 0, - "vertex_from": "329", + "vertex_from": "328", + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:14.784996-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2567042, + "rtt_ms": 2.567042, + "checkpoint": 0, + "vertex_from": "328", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.568323482Z" + "timestamp": "2025-11-27T04:04:14.785063-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2643000, + "rtt_ms": 2.643, + "checkpoint": 0, + "vertex_from": "328", + "vertex_to": "517", + "timestamp": "2025-11-27T04:04:14.785074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863775, - "rtt_ms": 1.863775, + "rtt_ns": 1313458, + "rtt_ms": 1.313458, "checkpoint": 0, "vertex_from": "329", "vertex_to": "352", - "timestamp": "2025-11-27T01:23:51.568343492Z" + "timestamp": "2025-11-27T04:04:14.785663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785855, - "rtt_ms": 1.785855, + "rtt_ns": 1377417, + "rtt_ms": 1.377417, "checkpoint": 0, "vertex_from": "329", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.568351012Z" + "timestamp": "2025-11-27T04:04:14.78574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788005, - "rtt_ms": 1.788005, + "rtt_ns": 1370041, + "rtt_ms": 1.370041, "checkpoint": 0, "vertex_from": "329", "vertex_to": "362", - "timestamp": "2025-11-27T01:23:51.568381302Z" + "timestamp": "2025-11-27T04:04:14.786146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789165, - "rtt_ms": 1.789165, + "rtt_ns": 1394333, + "rtt_ms": 1.394333, "checkpoint": 0, "vertex_from": "329", "vertex_to": "412", - "timestamp": "2025-11-27T01:23:51.568382442Z" + "timestamp": "2025-11-27T04:04:14.786278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712825, - "rtt_ms": 1.712825, + "rtt_ns": 1246334, + "rtt_ms": 1.246334, "checkpoint": 0, - "vertex_from": "329", - "vertex_to": "330", - "timestamp": "2025-11-27T01:23:51.568387192Z" + "vertex_from": "330", + "vertex_to": "600", + "timestamp": "2025-11-27T04:04:14.786321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558795, - "rtt_ms": 1.558795, + "rtt_ns": 1463917, + "rtt_ms": 1.463917, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.569282279Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:04:14.786368-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039604, - "rtt_ms": 2.039604, + "rtt_ns": 1470041, + "rtt_ms": 1.470041, "checkpoint": 0, "vertex_from": "329", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.569393379Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1176387, - "rtt_ms": 1.176387, - "checkpoint": 0, - "vertex_from": "330", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.569420539Z" + "timestamp": "2025-11-27T04:04:14.786384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632356, - "rtt_ms": 1.632356, + "rtt_ns": 1527292, + "rtt_ms": 1.527292, "checkpoint": 0, - "vertex_from": "330", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:51.569958318Z" + "vertex_from": "329", + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:14.786524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742796, - "rtt_ms": 1.742796, + "rtt_ns": 3011208, + "rtt_ms": 3.011208, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.569983018Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:14.787949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704225, - "rtt_ms": 1.704225, + "rtt_ns": 2889417, + "rtt_ms": 2.889417, "checkpoint": 0, "vertex_from": "330", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.570056547Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:14.787953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711155, - "rtt_ms": 1.711155, + "rtt_ns": 5077375, + "rtt_ms": 5.077375, "checkpoint": 0, "vertex_from": "330", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.570056897Z" + "timestamp": "2025-11-27T04:04:14.790741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732855, - "rtt_ms": 1.732855, + "rtt_ns": 5925125, + "rtt_ms": 5.925125, "checkpoint": 0, "vertex_from": "330", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.570115087Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:14.791666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752455, - "rtt_ms": 1.752455, + "rtt_ns": 7557083, + "rtt_ms": 7.557083, "checkpoint": 0, "vertex_from": "330", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.570136097Z" + "timestamp": "2025-11-27T04:04:14.793838-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1751615, - "rtt_ms": 1.751615, + "operation": "add_edge", + "rtt_ns": 7749542, + "rtt_ms": 7.749542, "checkpoint": 0, - "vertex_from": "919", - "timestamp": "2025-11-27T01:23:51.570146267Z" + "vertex_from": "330", + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:14.793896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070897, - "rtt_ms": 1.070897, + "rtt_ns": 8882917, + "rtt_ms": 8.882917, "checkpoint": 0, - "vertex_from": "332", - "vertex_to": "338", - "timestamp": "2025-11-27T01:23:51.571056075Z" + "vertex_from": "330", + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:14.795251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047897, - "rtt_ms": 1.047897, + "rtt_ns": 510777250, + "rtt_ms": 510.77725, "checkpoint": 0, - "vertex_from": "332", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.571105394Z" + "vertex_from": "331", + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:15.297161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239586, - "rtt_ms": 1.239586, + "rtt_ns": 510725916, + "rtt_ms": 510.725916, "checkpoint": 0, "vertex_from": "331", - "vertex_to": "361", - "timestamp": "2025-11-27T01:23:51.571198954Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:15.297249-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1145427, - "rtt_ms": 1.145427, + "operation": "add_vertex", + "rtt_ns": 511067208, + "rtt_ms": 511.067208, "checkpoint": 0, - "vertex_from": "332", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.571204574Z" + "vertex_from": "919", + "timestamp": "2025-11-27T04:04:15.297396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825975, - "rtt_ms": 1.825975, + "rtt_ns": 509616208, + "rtt_ms": 509.616208, "checkpoint": 0, - "vertex_from": "331", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.571221234Z" + "vertex_from": "332", + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:15.300356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812495, - "rtt_ms": 1.812495, + "rtt_ns": 508755166, + "rtt_ms": 508.755166, "checkpoint": 0, - "vertex_from": "331", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.571235444Z" + "vertex_from": "332", + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:15.30042-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114725, - "rtt_ms": 2.114725, + "rtt_ns": 512516541, + "rtt_ms": 512.516541, "checkpoint": 0, - "vertex_from": "330", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.571399484Z" + "vertex_from": "332", + "vertex_to": "338", + "timestamp": "2025-11-27T04:04:15.300468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925865, - "rtt_ms": 1.925865, + "rtt_ns": 512560583, + "rtt_ms": 512.560583, "checkpoint": 0, - "vertex_from": "332", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:51.572062892Z" + "vertex_from": "331", + "vertex_to": "361", + "timestamp": "2025-11-27T04:04:15.300508-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020304, - "rtt_ms": 2.020304, + "rtt_ns": 4097792, + "rtt_ms": 4.097792, "checkpoint": 0, "vertex_from": "330", "vertex_to": "919", - "timestamp": "2025-11-27T01:23:51.572166941Z" + "timestamp": "2025-11-27T04:04:15.301498-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112304, - "rtt_ms": 2.112304, + "rtt_ns": 5412458, + "rtt_ms": 5.412458, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.572228111Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:04:15.302665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202917, - "rtt_ms": 1.202917, + "rtt_ns": 5557875, + "rtt_ms": 5.557875, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.572262141Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:15.302727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072767, - "rtt_ms": 1.072767, + "rtt_ns": 510049958, + "rtt_ms": 510.049958, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.572312261Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.303888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551866, - "rtt_ms": 1.551866, + "rtt_ns": 3708000, + "rtt_ms": 3.708, "checkpoint": 0, "vertex_from": "332", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.5727582Z" + "timestamp": "2025-11-27T04:04:15.304069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674985, - "rtt_ms": 1.674985, + "rtt_ns": 510290542, + "rtt_ms": 510.290542, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.572781279Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:04:15.304186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655995, - "rtt_ms": 1.655995, + "rtt_ns": 4261875, + "rtt_ms": 4.261875, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "352", - "timestamp": "2025-11-27T01:23:51.572855829Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.304774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696435, - "rtt_ms": 1.696435, + "rtt_ns": 4323625, + "rtt_ms": 4.323625, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.572920289Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:15.304794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592925, - "rtt_ms": 1.592925, + "rtt_ns": 4505084, + "rtt_ms": 4.505084, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.572994079Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.304928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000757, - "rtt_ms": 1.000757, + "rtt_ns": 509726416, + "rtt_ms": 509.726416, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.573064799Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.304977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452746, - "rtt_ms": 1.452746, + "rtt_ns": 3590583, + "rtt_ms": 3.590583, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.573620857Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.305092-08:00" }, { "operation": "add_edge", - "rtt_ns": 904977, - "rtt_ms": 0.904977, + "rtt_ns": 4305959, + "rtt_ms": 4.305959, "checkpoint": 0, - "vertex_from": "333", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.573664827Z" + "vertex_from": "332", + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.307043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421366, - "rtt_ms": 1.421366, + "rtt_ns": 4540417, + "rtt_ms": 4.540417, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:51.573685997Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.307208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643065, - "rtt_ms": 1.643065, + "rtt_ns": 4501417, + "rtt_ms": 4.501417, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.573871836Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:04:15.308391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560905, - "rtt_ms": 1.560905, + "rtt_ns": 4389000, + "rtt_ms": 4.389, "checkpoint": 0, "vertex_from": "332", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.573875436Z" + "timestamp": "2025-11-27T04:04:15.30846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108997, - "rtt_ms": 1.108997, + "rtt_ns": 5204083, + "rtt_ms": 5.204083, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.573892146Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.309392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799725, - "rtt_ms": 1.799725, + "rtt_ns": 4442500, + "rtt_ms": 4.4425, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:51.574657074Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.309421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760685, - "rtt_ms": 1.760685, + "rtt_ns": 4746708, + "rtt_ms": 4.746708, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.574682234Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:15.309523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615555, - "rtt_ms": 1.615555, + "rtt_ns": 4592250, + "rtt_ms": 4.59225, "checkpoint": 0, "vertex_from": "334", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.574682254Z" + "timestamp": "2025-11-27T04:04:15.309687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708575, - "rtt_ms": 1.708575, + "rtt_ns": 5487417, + "rtt_ms": 5.487417, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.574705534Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:04:15.310283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157616, - "rtt_ms": 1.157616, + "rtt_ns": 5467875, + "rtt_ms": 5.467875, "checkpoint": 0, - "vertex_from": "334", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.574780173Z" + "vertex_from": "333", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.310398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800715, - "rtt_ms": 1.800715, + "rtt_ns": 4386000, + "rtt_ms": 4.386, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.575695941Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:04:15.311596-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 4899917, + "rtt_ms": 4.899917, + "checkpoint": 0, + "vertex_from": "334", + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:15.311945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067764, - "rtt_ms": 2.067764, + "rtt_ns": 4932208, + "rtt_ms": 4.932208, "checkpoint": 0, "vertex_from": "336", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.575755451Z" + "timestamp": "2025-11-27T04:04:15.313327-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116864, - "rtt_ms": 2.116864, + "rtt_ns": 5000041, + "rtt_ms": 5.000041, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:51.575783911Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:04:15.313463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919434, - "rtt_ms": 1.919434, + "rtt_ns": 4728041, + "rtt_ms": 4.728041, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "358", - "timestamp": "2025-11-27T01:23:51.57579283Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:15.314152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125966, - "rtt_ms": 1.125966, + "rtt_ns": 4577000, + "rtt_ms": 4.577, "checkpoint": 0, "vertex_from": "336", "vertex_to": "418", - "timestamp": "2025-11-27T01:23:51.57581028Z" + "timestamp": "2025-11-27T04:04:15.314266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933954, - "rtt_ms": 1.933954, + "rtt_ns": 4851792, + "rtt_ms": 4.851792, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.57581107Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.314377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037707, - "rtt_ms": 1.037707, + "rtt_ns": 4938542, + "rtt_ms": 4.938542, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.57581926Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:15.315224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165436, - "rtt_ms": 1.165436, + "rtt_ns": 4825666, + "rtt_ms": 4.825666, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.5758245Z" + "vertex_to": "667", + "timestamp": "2025-11-27T04:04:15.315226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169946, - "rtt_ms": 1.169946, + "rtt_ns": 5836000, + "rtt_ms": 5.836, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "667", - "timestamp": "2025-11-27T01:23:51.57587829Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.315231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216686, - "rtt_ms": 1.216686, + "rtt_ns": 4143250, + "rtt_ms": 4.14325, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.57590146Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.315742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324437, - "rtt_ms": 1.324437, + "rtt_ns": 3911458, + "rtt_ms": 3.911458, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.577136777Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.315858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465795, - "rtt_ms": 1.465795, + "rtt_ns": 3656417, + "rtt_ms": 3.656417, "checkpoint": 0, "vertex_from": "336", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.577222236Z" + "timestamp": "2025-11-27T04:04:15.316987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348096, - "rtt_ms": 1.348096, + "rtt_ns": 3542250, + "rtt_ms": 3.54225, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:51.577228966Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.31701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426746, - "rtt_ms": 1.426746, + "rtt_ns": 3704916, + "rtt_ms": 3.704916, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.577252126Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:04:15.318938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726315, - "rtt_ms": 1.726315, + "rtt_ns": 3221167, + "rtt_ms": 3.221167, "checkpoint": 0, "vertex_from": "336", "vertex_to": "647", - "timestamp": "2025-11-27T01:23:51.577628935Z" + "timestamp": "2025-11-27T04:04:15.318965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926105, - "rtt_ms": 1.926105, + "rtt_ns": 3741500, + "rtt_ms": 3.7415, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.577747045Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:15.318969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020454, - "rtt_ms": 2.020454, + "rtt_ns": 4730458, + "rtt_ms": 4.730458, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.577805075Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:04:15.318998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148694, - "rtt_ms": 2.148694, + "rtt_ns": 4871750, + "rtt_ms": 4.87175, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.577960924Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:15.319026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2813932, - "rtt_ms": 2.813932, + "rtt_ns": 4649291, + "rtt_ms": 4.649291, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.578512253Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:04:15.319031-08:00" }, { "operation": "add_edge", - "rtt_ns": 2746023, - "rtt_ms": 2.746023, + "rtt_ns": 3478833, + "rtt_ms": 3.478833, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.578540563Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:04:15.319339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559856, - "rtt_ms": 1.559856, + "rtt_ns": 4146417, + "rtt_ms": 4.146417, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.578790242Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.319373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161057, - "rtt_ms": 1.161057, + "rtt_ns": 3037042, + "rtt_ms": 3.037042, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:51.578791282Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.320048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572696, - "rtt_ms": 1.572696, + "rtt_ns": 3613667, + "rtt_ms": 3.613667, "checkpoint": 0, "vertex_from": "336", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.578795732Z" + "timestamp": "2025-11-27T04:04:15.320603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799965, - "rtt_ms": 1.799965, + "rtt_ns": 2447125, + "rtt_ms": 2.447125, + "checkpoint": 0, + "vertex_from": "337", + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:15.321821-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3063583, + "rtt_ms": 3.063583, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:51.578938602Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:04:15.322033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844365, - "rtt_ms": 1.844365, + "rtt_ns": 3050917, + "rtt_ms": 3.050917, "checkpoint": 0, "vertex_from": "336", "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.57965024Z" + "timestamp": "2025-11-27T04:04:15.322051-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3126042, + "rtt_ms": 3.126042, + "checkpoint": 0, + "vertex_from": "337", + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.322154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951685, - "rtt_ms": 1.951685, + "rtt_ns": 3316584, + "rtt_ms": 3.316584, "checkpoint": 0, "vertex_from": "336", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.57969967Z" + "timestamp": "2025-11-27T04:04:15.322287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185116, - "rtt_ms": 1.185116, + "rtt_ns": 3013917, + "rtt_ms": 3.013917, "checkpoint": 0, "vertex_from": "337", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.579726749Z" + "timestamp": "2025-11-27T04:04:15.322355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314456, - "rtt_ms": 1.314456, + "rtt_ns": 3358250, + "rtt_ms": 3.35825, "checkpoint": 0, "vertex_from": "337", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.579827829Z" + "timestamp": "2025-11-27T04:04:15.322392-08:00" }, { "operation": "add_edge", - "rtt_ns": 2575003, - "rtt_ms": 2.575003, + "rtt_ns": 3533417, + "rtt_ms": 3.533417, "checkpoint": 0, "vertex_from": "336", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.579828119Z" + "timestamp": "2025-11-27T04:04:15.322473-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080075, - "rtt_ms": 2.080075, - "checkpoint": 0, - "vertex_from": "337", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.580042519Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1396756, - "rtt_ms": 1.396756, + "rtt_ns": 2477667, + "rtt_ms": 2.477667, "checkpoint": 0, "vertex_from": "337", "vertex_to": "654", - "timestamp": "2025-11-27T01:23:51.580189458Z" + "timestamp": "2025-11-27T04:04:15.322528-08:00" }, { "operation": "add_edge", - "rtt_ns": 2045464, - "rtt_ms": 2.045464, + "rtt_ns": 2989334, + "rtt_ms": 2.989334, "checkpoint": 0, "vertex_from": "337", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.580836836Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:15.323595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906704, - "rtt_ms": 1.906704, + "rtt_ns": 3039917, + "rtt_ms": 3.039917, "checkpoint": 0, "vertex_from": "337", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.580847706Z" + "timestamp": "2025-11-27T04:04:15.324865-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107764, - "rtt_ms": 2.107764, + "rtt_ns": 3157541, + "rtt_ms": 3.157541, "checkpoint": 0, - "vertex_from": "337", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.580904376Z" + "vertex_from": "338", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.325193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466976, - "rtt_ms": 1.466976, + "rtt_ns": 3097958, + "rtt_ms": 3.097958, "checkpoint": 0, "vertex_from": "338", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.581195465Z" + "timestamp": "2025-11-27T04:04:15.325254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700545, - "rtt_ms": 1.700545, + "rtt_ns": 2977458, + "rtt_ms": 2.977458, "checkpoint": 0, - "vertex_from": "338", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.581352375Z" + "vertex_from": "339", + "vertex_to": "354", + "timestamp": "2025-11-27T04:04:15.325453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625495, - "rtt_ms": 1.625495, + "rtt_ns": 3251416, + "rtt_ms": 3.251416, "checkpoint": 0, "vertex_from": "339", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.581454944Z" + "timestamp": "2025-11-27T04:04:15.325608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2270893, - "rtt_ms": 2.270893, + "rtt_ns": 3105542, + "rtt_ms": 3.105542, "checkpoint": 0, - "vertex_from": "338", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.582100552Z" + "vertex_from": "340", + "vertex_to": "404", + "timestamp": "2025-11-27T04:04:15.325635-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464262, - "rtt_ms": 2.464262, + "rtt_ns": 3612375, + "rtt_ms": 3.612375, "checkpoint": 0, "vertex_from": "338", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.582165522Z" + "timestamp": "2025-11-27T04:04:15.325665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2205823, - "rtt_ms": 2.205823, + "rtt_ns": 3365959, + "rtt_ms": 3.365959, "checkpoint": 0, "vertex_from": "339", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.582249432Z" + "timestamp": "2025-11-27T04:04:15.325761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074164, - "rtt_ms": 2.074164, + "rtt_ns": 3571084, + "rtt_ms": 3.571084, "checkpoint": 0, - "vertex_from": "339", - "vertex_to": "354", - "timestamp": "2025-11-27T01:23:51.582265142Z" + "vertex_from": "338", + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.32586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520626, - "rtt_ms": 1.520626, + "rtt_ns": 2444542, + "rtt_ms": 2.444542, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "404", - "timestamp": "2025-11-27T01:23:51.582358902Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:04:15.326041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544696, - "rtt_ms": 1.544696, + "rtt_ns": 2511250, + "rtt_ms": 2.51125, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:51.582394641Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:04:15.327712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539125, - "rtt_ms": 1.539125, + "rtt_ns": 2879791, + "rtt_ms": 2.879791, "checkpoint": 0, "vertex_from": "340", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.582444561Z" + "timestamp": "2025-11-27T04:04:15.327747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293846, - "rtt_ms": 1.293846, + "rtt_ns": 2522458, + "rtt_ms": 2.522458, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:51.582491251Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:04:15.32816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113287, - "rtt_ms": 1.113287, + "rtt_ns": 2931375, + "rtt_ms": 2.931375, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.582569221Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:04:15.328187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226556, - "rtt_ms": 1.226556, + "rtt_ns": 2355542, + "rtt_ms": 2.355542, "checkpoint": 0, - "vertex_from": "340", - "vertex_to": "589", - "timestamp": "2025-11-27T01:23:51.582581831Z" + "vertex_from": "342", + "vertex_to": "542", + "timestamp": "2025-11-27T04:04:15.328218-08:00" }, { "operation": "add_edge", - "rtt_ns": 815828, - "rtt_ms": 0.815828, + "rtt_ns": 2613167, + "rtt_ms": 2.613167, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:51.58298295Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:15.328223-08:00" }, { "operation": "add_edge", - "rtt_ns": 944888, - "rtt_ms": 0.944888, + "rtt_ns": 3307167, + "rtt_ms": 3.307167, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.58304684Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.328762-08:00" }, { "operation": "add_edge", - "rtt_ns": 754217, - "rtt_ms": 0.754217, + "rtt_ns": 3519250, + "rtt_ms": 3.51925, "checkpoint": 0, - "vertex_from": "342", - "vertex_to": "542", - "timestamp": "2025-11-27T01:23:51.583114159Z" + "vertex_from": "340", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.329191-08:00" }, { "operation": "add_edge", - "rtt_ns": 915217, - "rtt_ms": 0.915217, + "rtt_ns": 3176708, + "rtt_ms": 3.176708, "checkpoint": 0, - "vertex_from": "340", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.583165839Z" + "vertex_from": "343", + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.329219-08:00" }, { "operation": "add_edge", - "rtt_ns": 924217, - "rtt_ms": 0.924217, + "rtt_ns": 3479250, + "rtt_ms": 3.47925, "checkpoint": 0, "vertex_from": "341", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.583190629Z" + "timestamp": "2025-11-27T04:04:15.329242-08:00" }, { "operation": "add_edge", - "rtt_ns": 751278, - "rtt_ms": 0.751278, + "rtt_ns": 2448834, + "rtt_ms": 2.448834, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.583197259Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:15.330199-08:00" }, { "operation": "add_edge", - "rtt_ns": 892388, - "rtt_ms": 0.892388, + "rtt_ns": 1901208, + "rtt_ms": 1.901208, "checkpoint": 0, - "vertex_from": "343", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.583288129Z" + "vertex_from": "344", + "vertex_to": "806", + "timestamp": "2025-11-27T04:04:15.330664-08:00" }, { "operation": "add_edge", - "rtt_ns": 879118, - "rtt_ms": 0.879118, + "rtt_ns": 3063292, + "rtt_ms": 3.063292, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.583371189Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:15.330777-08:00" }, { "operation": "add_edge", - "rtt_ns": 802828, - "rtt_ms": 0.802828, + "rtt_ns": 2863542, + "rtt_ms": 2.863542, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "472", - "timestamp": "2025-11-27T01:23:51.583385839Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:04:15.331088-08:00" }, { "operation": "add_edge", - "rtt_ns": 829827, - "rtt_ms": 0.829827, + "rtt_ns": 3098708, + "rtt_ms": 3.098708, "checkpoint": 0, "vertex_from": "344", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.583399808Z" + "timestamp": "2025-11-27T04:04:15.33126-08:00" }, { "operation": "add_edge", - "rtt_ns": 931957, - "rtt_ms": 0.931957, + "rtt_ns": 3113875, + "rtt_ms": 3.113875, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "866", - "timestamp": "2025-11-27T01:23:51.583916417Z" + "vertex_to": "472", + "timestamp": "2025-11-27T04:04:15.331303-08:00" }, { "operation": "add_edge", - "rtt_ns": 884317, - "rtt_ms": 0.884317, + "rtt_ns": 3122875, + "rtt_ms": 3.122875, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "420", - "timestamp": "2025-11-27T01:23:51.583932357Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:04:15.331342-08:00" }, { "operation": "add_edge", - "rtt_ns": 894848, - "rtt_ms": 0.894848, + "rtt_ns": 2617333, + "rtt_ms": 2.617333, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:51.584010007Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:15.33181-08:00" }, { "operation": "add_edge", - "rtt_ns": 657869, - "rtt_ms": 0.657869, + "rtt_ns": 2637166, + "rtt_ms": 2.637166, "checkpoint": 0, - "vertex_from": "345", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.584058967Z" + "vertex_from": "344", + "vertex_to": "422", + "timestamp": "2025-11-27T04:04:15.331857-08:00" }, { - "operation": "add_edge", - "rtt_ns": 890438, - "rtt_ms": 0.890438, + "operation": "add_vertex", + "rtt_ns": 2790666, + "rtt_ms": 2.790666, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "422", - "timestamp": "2025-11-27T01:23:51.584082077Z" + "vertex_from": "747", + "timestamp": "2025-11-27T04:04:15.332036-08:00" }, { "operation": "add_edge", - "rtt_ns": 868677, - "rtt_ms": 0.868677, + "rtt_ns": 2612292, + "rtt_ms": 2.612292, "checkpoint": 0, "vertex_from": "344", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.584157746Z" + "timestamp": "2025-11-27T04:04:15.332813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435466, - "rtt_ms": 1.435466, + "rtt_ns": 2705708, + "rtt_ms": 2.705708, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.584602235Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:15.333484-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1365806, - "rtt_ms": 1.365806, + "operation": "add_vertex", + "rtt_ns": 2862208, + "rtt_ms": 2.862208, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.584752615Z" + "vertex_from": "983", + "timestamp": "2025-11-27T04:04:15.33353-08:00" }, { "operation": "add_edge", - "rtt_ns": 900147, - "rtt_ms": 0.900147, + "rtt_ns": 2933208, + "rtt_ms": 2.933208, "checkpoint": 0, "vertex_from": "345", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.584817814Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.334025-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1693745, - "rtt_ms": 1.693745, + "operation": "add_edge", + "rtt_ns": 2733583, + "rtt_ms": 2.733583, "checkpoint": 0, - "vertex_from": "747", - "timestamp": "2025-11-27T01:23:51.584893424Z" + "vertex_from": "345", + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.334038-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1528495, - "rtt_ms": 1.528495, + "operation": "add_edge", + "rtt_ns": 2711708, + "rtt_ms": 2.711708, "checkpoint": 0, - "vertex_from": "983", - "timestamp": "2025-11-27T01:23:51.584904404Z" + "vertex_from": "346", + "vertex_to": "666", + "timestamp": "2025-11-27T04:04:15.334056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120227, - "rtt_ms": 1.120227, + "rtt_ns": 3050417, + "rtt_ms": 3.050417, "checkpoint": 0, "vertex_from": "345", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.585053604Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:15.334313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579255, - "rtt_ms": 1.579255, + "rtt_ns": 2307833, + "rtt_ms": 2.307833, "checkpoint": 0, - "vertex_from": "346", - "vertex_to": "666", - "timestamp": "2025-11-27T01:23:51.585590352Z" + "vertex_from": "344", + "vertex_to": "747", + "timestamp": "2025-11-27T04:04:15.334344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744915, - "rtt_ms": 1.744915, + "rtt_ns": 3025667, + "rtt_ms": 3.025667, "checkpoint": 0, "vertex_from": "346", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.585804712Z" + "timestamp": "2025-11-27T04:04:15.334837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701576, - "rtt_ms": 1.701576, + "rtt_ns": 2997875, + "rtt_ms": 2.997875, "checkpoint": 0, "vertex_from": "346", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.585860782Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.334857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798384, - "rtt_ms": 1.798384, + "rtt_ns": 2477750, + "rtt_ms": 2.47775, "checkpoint": 0, "vertex_from": "346", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.585881281Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.335293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711265, - "rtt_ms": 1.711265, + "rtt_ns": 2424834, + "rtt_ms": 2.424834, "checkpoint": 0, "vertex_from": "346", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.58631499Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.336451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588135, - "rtt_ms": 1.588135, + "rtt_ns": 2416541, + "rtt_ms": 2.416541, "checkpoint": 0, - "vertex_from": "346", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.58634147Z" + "vertex_from": "347", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.336474-08:00" }, { "operation": "add_edge", - "rtt_ns": 932918, - "rtt_ms": 0.932918, + "rtt_ns": 2177958, + "rtt_ms": 2.177958, "checkpoint": 0, "vertex_from": "348", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:51.58652545Z" + "timestamp": "2025-11-27T04:04:15.336492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664736, - "rtt_ms": 1.664736, + "rtt_ns": 3024958, + "rtt_ms": 3.024958, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "747", - "timestamp": "2025-11-27T01:23:51.58655844Z" + "vertex_from": "346", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.33651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620195, - "rtt_ms": 1.620195, + "rtt_ns": 2488500, + "rtt_ms": 2.4885, "checkpoint": 0, "vertex_from": "347", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.586675089Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:04:15.336529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880015, - "rtt_ms": 1.880015, + "rtt_ns": 3017459, + "rtt_ms": 3.017459, "checkpoint": 0, - "vertex_from": "347", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:51.586699199Z" + "vertex_from": "344", + "vertex_to": "983", + "timestamp": "2025-11-27T04:04:15.336548-08:00" }, { "operation": "add_edge", - "rtt_ns": 835598, - "rtt_ms": 0.835598, + "rtt_ns": 2802584, + "rtt_ms": 2.802584, + "checkpoint": 0, + "vertex_from": "348", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.337148-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2717333, + "rtt_ms": 2.717333, "checkpoint": 0, "vertex_from": "350", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.586720149Z" + "timestamp": "2025-11-27T04:04:15.337575-08:00" }, { "operation": "add_edge", - "rtt_ns": 929277, - "rtt_ms": 0.929277, + "rtt_ns": 2306583, + "rtt_ms": 2.306583, "checkpoint": 0, - "vertex_from": "348", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.586738309Z" + "vertex_from": "350", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.3376-08:00" }, { "operation": "add_edge", - "rtt_ns": 905597, - "rtt_ms": 0.905597, + "rtt_ns": 3446958, + "rtt_ms": 3.446958, "checkpoint": 0, "vertex_from": "349", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.586768629Z" + "timestamp": "2025-11-27T04:04:15.338285-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393554, - "rtt_ms": 2.393554, + "rtt_ns": 2705792, + "rtt_ms": 2.705792, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "983", - "timestamp": "2025-11-27T01:23:51.587298648Z" + "vertex_from": "352", + "vertex_to": "388", + "timestamp": "2025-11-27T04:04:15.339235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011277, - "rtt_ms": 1.011277, + "rtt_ns": 2239042, + "rtt_ms": 2.239042, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.587355177Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.339388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246457, - "rtt_ms": 1.246457, + "rtt_ns": 3160958, + "rtt_ms": 3.160958, "checkpoint": 0, - "vertex_from": "350", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.587562867Z" + "vertex_from": "352", + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.339614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755675, - "rtt_ms": 1.755675, + "rtt_ns": 3162417, + "rtt_ms": 3.162417, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.588314985Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.339637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834115, - "rtt_ms": 1.834115, + "rtt_ns": 3232375, + "rtt_ms": 3.232375, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.588361815Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:04:15.339781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702256, - "rtt_ms": 1.702256, + "rtt_ns": 3312500, + "rtt_ms": 3.3125, "checkpoint": 0, "vertex_from": "352", "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.588378395Z" + "timestamp": "2025-11-27T04:04:15.339824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664225, - "rtt_ms": 1.664225, + "rtt_ns": 2299750, + "rtt_ms": 2.29975, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.588387094Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:15.339876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686615, - "rtt_ms": 1.686615, + "rtt_ns": 3394291, + "rtt_ms": 3.394291, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:51.588388724Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:15.339887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653205, - "rtt_ms": 1.653205, + "rtt_ns": 1733208, + "rtt_ms": 1.733208, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.588392814Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:15.34002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821815, - "rtt_ms": 1.821815, + "rtt_ns": 2443375, + "rtt_ms": 2.443375, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.588592374Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.340045-08:00" }, { "operation": "add_edge", - "rtt_ns": 824917, - "rtt_ms": 0.824917, + "rtt_ns": 1878209, + "rtt_ms": 1.878209, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "803", - "timestamp": "2025-11-27T01:23:51.589140842Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:15.341494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947975, - "rtt_ms": 1.947975, + "rtt_ns": 2123167, + "rtt_ms": 2.123167, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.589304552Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:04:15.341514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741305, - "rtt_ms": 1.741305, + "rtt_ns": 2162666, + "rtt_ms": 2.162666, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.589305072Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:15.3418-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027934, - "rtt_ms": 2.027934, + "rtt_ns": 2589417, + "rtt_ms": 2.589417, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.589334422Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.341826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581615, - "rtt_ms": 1.581615, + "rtt_ns": 2089542, + "rtt_ms": 2.089542, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.58994401Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:15.341915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608846, - "rtt_ms": 1.608846, + "rtt_ns": 2115125, + "rtt_ms": 2.115125, "checkpoint": 0, "vertex_from": "352", "vertex_to": "460", - "timestamp": "2025-11-27T01:23:51.59000243Z" + "timestamp": "2025-11-27T04:04:15.341992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421236, - "rtt_ms": 1.421236, + "rtt_ns": 2164000, + "rtt_ms": 2.164, "checkpoint": 0, "vertex_from": "352", "vertex_to": "401", - "timestamp": "2025-11-27T01:23:51.5900175Z" + "timestamp": "2025-11-27T04:04:15.342053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627986, - "rtt_ms": 1.627986, + "rtt_ns": 2118209, + "rtt_ms": 2.118209, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.59001835Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:04:15.342164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646616, - "rtt_ms": 1.646616, + "rtt_ns": 2404375, + "rtt_ms": 2.404375, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.59002544Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.342188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645666, - "rtt_ms": 1.645666, + "rtt_ns": 2240916, + "rtt_ms": 2.240916, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.59003366Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:04:15.342262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066847, - "rtt_ms": 1.066847, + "rtt_ns": 2315250, + "rtt_ms": 2.31525, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "555", - "timestamp": "2025-11-27T01:23:51.590208789Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:15.344117-08:00" }, { "operation": "add_edge", - "rtt_ns": 827338, - "rtt_ms": 0.827338, + "rtt_ns": 2214000, + "rtt_ms": 2.214, "checkpoint": 0, "vertex_from": "353", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.590846308Z" + "timestamp": "2025-11-27T04:04:15.344132-08:00" }, { "operation": "add_edge", - "rtt_ns": 889687, - "rtt_ms": 0.889687, + "rtt_ns": 2648833, + "rtt_ms": 2.648833, "checkpoint": 0, - "vertex_from": "353", + "vertex_from": "352", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.590923827Z" + "timestamp": "2025-11-27T04:04:15.344144-08:00" }, { "operation": "add_edge", - "rtt_ns": 933497, - "rtt_ms": 0.933497, - "checkpoint": 0, - "vertex_from": "353", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.590952477Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1005287, - "rtt_ms": 1.005287, + "rtt_ns": 2332416, + "rtt_ms": 2.332416, "checkpoint": 0, "vertex_from": "352", "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.591008187Z" + "timestamp": "2025-11-27T04:04:15.34416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739585, - "rtt_ms": 1.739585, + "rtt_ns": 2645458, + "rtt_ms": 2.645458, "checkpoint": 0, "vertex_from": "352", "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.591075937Z" + "timestamp": "2025-11-27T04:04:15.344162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795565, - "rtt_ms": 1.795565, + "rtt_ns": 2107542, + "rtt_ms": 2.107542, "checkpoint": 0, - "vertex_from": "352", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.591101207Z" + "vertex_from": "353", + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.344163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229107, - "rtt_ms": 1.229107, + "rtt_ns": 2231042, + "rtt_ms": 2.231042, "checkpoint": 0, - "vertex_from": "352", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.591173887Z" + "vertex_from": "353", + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:15.344494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222946, - "rtt_ms": 1.222946, + "rtt_ns": 2513334, + "rtt_ms": 2.513334, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.591249036Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.344507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190807, - "rtt_ms": 1.190807, + "rtt_ns": 2339167, + "rtt_ms": 2.339167, "checkpoint": 0, "vertex_from": "353", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.591400256Z" + "timestamp": "2025-11-27T04:04:15.344528-08:00" }, { "operation": "add_edge", - "rtt_ns": 2535663, - "rtt_ms": 2.535663, - "checkpoint": 0, - "vertex_from": "352", - "vertex_to": "369", - "timestamp": "2025-11-27T01:23:51.591841245Z" - }, - { - "operation": "add_edge", - "rtt_ns": 868028, - "rtt_ms": 0.868028, + "rtt_ns": 2393125, + "rtt_ms": 2.393125, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.591876835Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.344558-08:00" }, { "operation": "add_edge", - "rtt_ns": 957838, - "rtt_ms": 0.957838, + "rtt_ns": 2189791, + "rtt_ms": 2.189791, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.591911045Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:04:15.346354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087476, - "rtt_ms": 1.087476, + "rtt_ns": 2378833, + "rtt_ms": 2.378833, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.591934514Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:15.346541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224217, - "rtt_ms": 1.224217, + "rtt_ns": 2413583, + "rtt_ms": 2.413583, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.592148904Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.346559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318907, - "rtt_ms": 1.318907, + "rtt_ns": 2449792, + "rtt_ms": 2.449792, "checkpoint": 0, - "vertex_from": "354", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.592568553Z" + "vertex_from": "353", + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:15.346583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646235, - "rtt_ms": 1.646235, + "rtt_ns": 2476750, + "rtt_ms": 2.47675, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.592722722Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.346597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596095, - "rtt_ms": 1.596095, + "rtt_ns": 2446334, + "rtt_ms": 2.446334, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "842", - "timestamp": "2025-11-27T01:23:51.592770852Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.346976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690855, - "rtt_ms": 1.690855, + "rtt_ns": 2486917, + "rtt_ms": 2.486917, "checkpoint": 0, - "vertex_from": "353", - "vertex_to": "401", - "timestamp": "2025-11-27T01:23:51.592792532Z" + "vertex_from": "354", + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:15.346996-08:00" }, { "operation": "add_edge", - "rtt_ns": 918047, - "rtt_ms": 0.918047, + "rtt_ns": 2455625, + "rtt_ms": 2.455625, "checkpoint": 0, "vertex_from": "354", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.592795402Z" + "timestamp": "2025-11-27T04:04:15.347015-08:00" }, { "operation": "add_edge", - "rtt_ns": 870708, - "rtt_ms": 0.870708, + "rtt_ns": 2867209, + "rtt_ms": 2.867209, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.592806082Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:04:15.347032-08:00" }, { "operation": "add_edge", - "rtt_ns": 966247, - "rtt_ms": 0.966247, + "rtt_ns": 2876042, + "rtt_ms": 2.876042, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.592808002Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.347373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502716, - "rtt_ms": 1.502716, + "rtt_ns": 2350917, + "rtt_ms": 2.350917, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.592903492Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.348936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123236, - "rtt_ms": 1.123236, + "rtt_ns": 2450875, + "rtt_ms": 2.450875, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.593035061Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:15.348995-08:00" }, { "operation": "add_edge", - "rtt_ns": 980317, - "rtt_ms": 0.980317, + "rtt_ns": 2643083, + "rtt_ms": 2.643083, "checkpoint": 0, - "vertex_from": "355", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:51.593776929Z" + "vertex_from": "354", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:15.348999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642055, - "rtt_ms": 1.642055, + "rtt_ns": 2441917, + "rtt_ms": 2.441917, "checkpoint": 0, "vertex_from": "354", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.593792009Z" + "timestamp": "2025-11-27T04:04:15.349004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233086, - "rtt_ms": 1.233086, + "rtt_ns": 2017916, + "rtt_ms": 2.017916, "checkpoint": 0, - "vertex_from": "354", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.593802359Z" + "vertex_from": "355", + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.349014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333906, - "rtt_ms": 1.333906, + "rtt_ns": 2427084, + "rtt_ms": 2.427084, "checkpoint": 0, "vertex_from": "355", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.594127298Z" + "vertex_to": "746", + "timestamp": "2025-11-27T04:04:15.349027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366126, - "rtt_ms": 1.366126, + "rtt_ns": 2015708, + "rtt_ms": 2.015708, "checkpoint": 0, "vertex_from": "355", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.594137548Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:04:15.349032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415156, - "rtt_ms": 1.415156, + "rtt_ns": 2155042, + "rtt_ms": 2.155042, "checkpoint": 0, "vertex_from": "355", - "vertex_to": "746", - "timestamp": "2025-11-27T01:23:51.594138808Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:04:15.349132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351706, - "rtt_ms": 1.351706, + "rtt_ns": 2382667, + "rtt_ms": 2.382667, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.594255758Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.349415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473475, - "rtt_ms": 1.473475, + "rtt_ns": 2272875, + "rtt_ms": 2.272875, "checkpoint": 0, "vertex_from": "356", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.594281877Z" + "timestamp": "2025-11-27T04:04:15.349652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524085, - "rtt_ms": 1.524085, + "rtt_ns": 2625166, + "rtt_ms": 2.625166, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.594331347Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.351626-08:00" }, { "operation": "add_edge", - "rtt_ns": 611078, - "rtt_ms": 0.611078, + "rtt_ns": 2692125, + "rtt_ms": 2.692125, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.594389187Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.351631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401506, - "rtt_ms": 1.401506, + "rtt_ns": 2672542, + "rtt_ms": 2.672542, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "385", - "timestamp": "2025-11-27T01:23:51.594438237Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:04:15.351688-08:00" }, { "operation": "add_edge", - "rtt_ns": 664628, - "rtt_ms": 0.664628, + "rtt_ns": 2033583, + "rtt_ms": 2.033583, "checkpoint": 0, - "vertex_from": "356", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.594457587Z" + "vertex_from": "359", + "vertex_to": "448", + "timestamp": "2025-11-27T04:04:15.351689-08:00" }, { "operation": "add_edge", - "rtt_ns": 722168, - "rtt_ms": 0.722168, + "rtt_ns": 2595500, + "rtt_ms": 2.5955, "checkpoint": 0, - "vertex_from": "356", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:51.594525407Z" + "vertex_from": "358", + "vertex_to": "457", + "timestamp": "2025-11-27T04:04:15.351729-08:00" }, { "operation": "add_edge", - "rtt_ns": 849058, - "rtt_ms": 0.849058, + "rtt_ns": 2706291, + "rtt_ms": 2.706291, "checkpoint": 0, - "vertex_from": "359", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:51.595131745Z" + "vertex_from": "358", + "vertex_to": "676", + "timestamp": "2025-11-27T04:04:15.351741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132477, - "rtt_ms": 1.132477, + "rtt_ns": 2365083, + "rtt_ms": 2.365083, "checkpoint": 0, "vertex_from": "358", - "vertex_to": "457", - "timestamp": "2025-11-27T01:23:51.595272265Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:15.351782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215746, - "rtt_ms": 1.215746, + "rtt_ns": 2764000, + "rtt_ms": 2.764, "checkpoint": 0, "vertex_from": "357", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.595347934Z" + "timestamp": "2025-11-27T04:04:15.351793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145926, - "rtt_ms": 1.145926, + "rtt_ns": 3096000, + "rtt_ms": 3.096, "checkpoint": 0, - "vertex_from": "358", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.595402374Z" + "vertex_from": "356", + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:15.352102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897074, - "rtt_ms": 1.897074, + "rtt_ns": 3127541, + "rtt_ms": 3.127541, "checkpoint": 0, - "vertex_from": "358", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:51.596035632Z" + "vertex_from": "356", + "vertex_to": "385", + "timestamp": "2025-11-27T04:04:15.352123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660375, - "rtt_ms": 1.660375, + "rtt_ns": 2942292, + "rtt_ms": 2.942292, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.596050942Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:15.354726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654715, - "rtt_ms": 1.654715, + "rtt_ns": 2649459, + "rtt_ms": 2.649459, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "718", - "timestamp": "2025-11-27T01:23:51.596094272Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:04:15.354752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570985, - "rtt_ms": 1.570985, + "rtt_ns": 3143375, + "rtt_ms": 3.143375, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.596099702Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:04:15.354772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777445, - "rtt_ms": 1.777445, + "rtt_ns": 3087750, + "rtt_ms": 3.08775, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:51.596110962Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:04:15.354778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668485, - "rtt_ms": 1.668485, + "rtt_ns": 2667042, + "rtt_ms": 2.667042, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "603", - "timestamp": "2025-11-27T01:23:51.596127822Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:04:15.354792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1950684, - "rtt_ms": 1.950684, + "rtt_ns": 3170042, + "rtt_ms": 3.170042, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.597082999Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.354803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717655, - "rtt_ms": 1.717655, + "rtt_ns": 3128000, + "rtt_ms": 3.128, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "558", - "timestamp": "2025-11-27T01:23:51.597120819Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:04:15.354818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858194, - "rtt_ms": 1.858194, + "rtt_ns": 3081000, + "rtt_ms": 3.081, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.597130909Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.354823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795135, - "rtt_ms": 1.795135, + "rtt_ns": 3035542, + "rtt_ms": 3.035542, "checkpoint": 0, "vertex_from": "360", "vertex_to": "531", - "timestamp": "2025-11-27T01:23:51.597143899Z" + "timestamp": "2025-11-27T04:04:15.35483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633775, - "rtt_ms": 1.633775, + "rtt_ns": 3107625, + "rtt_ms": 3.107625, "checkpoint": 0, - "vertex_from": "362", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.597762607Z" + "vertex_from": "360", + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.354838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686875, - "rtt_ms": 1.686875, + "rtt_ns": 3148542, + "rtt_ms": 3.148542, "checkpoint": 0, - "vertex_from": "361", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:51.597787297Z" + "vertex_from": "363", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.35798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740095, - "rtt_ms": 1.740095, + "rtt_ns": 3266541, + "rtt_ms": 3.266541, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.597792007Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:04:15.35802-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3256833, + "rtt_ms": 3.256833, + "checkpoint": 0, + "vertex_from": "362", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.35806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688405, - "rtt_ms": 1.688405, + "rtt_ns": 3315250, + "rtt_ms": 3.31525, "checkpoint": 0, "vertex_from": "362", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.597799937Z" + "timestamp": "2025-11-27T04:04:15.358095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793135, - "rtt_ms": 1.793135, + "rtt_ns": 3332708, + "rtt_ms": 3.332708, "checkpoint": 0, - "vertex_from": "360", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:51.597829457Z" + "vertex_from": "362", + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:15.358125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739035, - "rtt_ms": 1.739035, + "rtt_ns": 3385083, + "rtt_ms": 3.385083, "checkpoint": 0, - "vertex_from": "360", - "vertex_to": "448", - "timestamp": "2025-11-27T01:23:51.597833757Z" + "vertex_from": "361", + "vertex_to": "525", + "timestamp": "2025-11-27T04:04:15.358158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582126, - "rtt_ms": 1.582126, + "rtt_ns": 3702709, + "rtt_ms": 3.702709, "checkpoint": 0, - "vertex_from": "362", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.598667005Z" + "vertex_from": "363", + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:15.358527-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3712542, + "rtt_ms": 3.712542, + "checkpoint": 0, + "vertex_from": "364", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.358552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547006, - "rtt_ms": 1.547006, + "rtt_ns": 3755125, + "rtt_ms": 3.755125, "checkpoint": 0, "vertex_from": "363", "vertex_to": "409", - "timestamp": "2025-11-27T01:23:51.598669055Z" + "timestamp": "2025-11-27T04:04:15.358574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616776, - "rtt_ms": 1.616776, + "rtt_ns": 4092666, + "rtt_ms": 4.092666, "checkpoint": 0, - "vertex_from": "363", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.598749095Z" + "vertex_from": "360", + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:15.35882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606486, - "rtt_ms": 1.606486, + "rtt_ns": 2440000, + "rtt_ms": 2.44, "checkpoint": 0, - "vertex_from": "363", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.598751315Z" + "vertex_from": "368", + "vertex_to": "785", + "timestamp": "2025-11-27T04:04:15.360993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686996, - "rtt_ms": 1.686996, + "rtt_ns": 2200750, + "rtt_ms": 2.20075, "checkpoint": 0, - "vertex_from": "364", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.599450813Z" + "vertex_from": "368", + "vertex_to": "616", + "timestamp": "2025-11-27T04:04:15.361022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676296, - "rtt_ms": 1.676296, + "rtt_ns": 3520042, + "rtt_ms": 3.520042, "checkpoint": 0, "vertex_from": "364", "vertex_to": "657", - "timestamp": "2025-11-27T01:23:51.599477593Z" + "timestamp": "2025-11-27T04:04:15.361581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696036, - "rtt_ms": 1.696036, + "rtt_ns": 3508875, + "rtt_ms": 3.508875, "checkpoint": 0, "vertex_from": "364", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.599484123Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:15.361604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710016, - "rtt_ms": 1.710016, + "rtt_ns": 3098542, + "rtt_ms": 3.098542, "checkpoint": 0, - "vertex_from": "364", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.599503863Z" + "vertex_from": "368", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.361627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690386, - "rtt_ms": 1.690386, + "rtt_ns": 3670583, + "rtt_ms": 3.670583, "checkpoint": 0, "vertex_from": "364", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.599520613Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:15.361653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139114, - "rtt_ms": 2.139114, + "rtt_ns": 3098667, + "rtt_ms": 3.098667, "checkpoint": 0, - "vertex_from": "367", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.599974021Z" + "vertex_from": "368", + "vertex_to": "595", + "timestamp": "2025-11-27T04:04:15.361674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683845, - "rtt_ms": 1.683845, + "rtt_ns": 3674042, + "rtt_ms": 3.674042, "checkpoint": 0, - "vertex_from": "368", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.60035381Z" + "vertex_from": "364", + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.361695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792815, - "rtt_ms": 1.792815, + "rtt_ns": 3547417, + "rtt_ms": 3.547417, "checkpoint": 0, "vertex_from": "368", "vertex_to": "427", - "timestamp": "2025-11-27T01:23:51.60046107Z" + "timestamp": "2025-11-27T04:04:15.361707-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3592250, + "rtt_ms": 3.59225, + "checkpoint": 0, + "vertex_from": "367", + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:15.361718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085377, - "rtt_ms": 1.085377, + "rtt_ns": 1978209, + "rtt_ms": 1.978209, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:51.60054Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:15.363001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128936, - "rtt_ms": 1.128936, + "rtt_ns": 1354083, + "rtt_ms": 1.354083, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:51.600608749Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:04:15.363028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193386, - "rtt_ms": 1.193386, + "rtt_ns": 2449500, + "rtt_ms": 2.4495, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.600698319Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:04:15.363445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983864, - "rtt_ms": 1.983864, + "rtt_ns": 1751250, + "rtt_ms": 1.75125, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:51.600736879Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:15.363459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284256, - "rtt_ms": 1.284256, + "rtt_ns": 1867916, + "rtt_ms": 1.867916, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.600770419Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:15.363474-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112594, - "rtt_ms": 2.112594, + "rtt_ns": 1784875, + "rtt_ms": 1.784875, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.600862849Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.36348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402165, - "rtt_ms": 1.402165, + "rtt_ns": 1914334, + "rtt_ms": 1.914334, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.600924888Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.363497-08:00" }, { "operation": "add_edge", - "rtt_ns": 967237, - "rtt_ms": 0.967237, + "rtt_ns": 1781500, + "rtt_ms": 1.7815, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.600942428Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:15.363501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068627, - "rtt_ms": 1.068627, + "rtt_ns": 1870917, + "rtt_ms": 1.870917, "checkpoint": 0, "vertex_from": "368", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.601423857Z" + "timestamp": "2025-11-27T04:04:15.363525-08:00" }, { "operation": "add_edge", - "rtt_ns": 899727, - "rtt_ms": 0.899727, + "rtt_ns": 1930875, + "rtt_ms": 1.930875, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.601440557Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.363559-08:00" }, { "operation": "add_edge", - "rtt_ns": 950917, - "rtt_ms": 0.950917, + "rtt_ns": 1944500, + "rtt_ms": 1.9445, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.601560576Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:04:15.364974-08:00" }, { "operation": "add_edge", - "rtt_ns": 879277, - "rtt_ms": 0.879277, + "rtt_ns": 1977625, + "rtt_ms": 1.977625, "checkpoint": 0, "vertex_from": "368", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.601616866Z" + "timestamp": "2025-11-27T04:04:15.364981-08:00" }, { "operation": "add_edge", - "rtt_ns": 972837, - "rtt_ms": 0.972837, + "rtt_ns": 1684750, + "rtt_ms": 1.68475, "checkpoint": 0, - "vertex_from": "368", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.601672306Z" + "vertex_from": "370", + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:15.365166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225606, - "rtt_ms": 1.225606, + "rtt_ns": 1665083, + "rtt_ms": 1.665083, "checkpoint": 0, - "vertex_from": "368", - "vertex_to": "384", - "timestamp": "2025-11-27T01:23:51.601687446Z" + "vertex_from": "373", + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.365191-08:00" }, { "operation": "add_edge", - "rtt_ns": 928447, - "rtt_ms": 0.928447, + "rtt_ns": 1649375, + "rtt_ms": 1.649375, "checkpoint": 0, - "vertex_from": "368", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:51.601699996Z" + "vertex_from": "374", + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.365209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621435, - "rtt_ms": 1.621435, + "rtt_ns": 1752750, + "rtt_ms": 1.75275, "checkpoint": 0, "vertex_from": "370", - "vertex_to": "621", - "timestamp": "2025-11-27T01:23:51.602485484Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:15.365227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540656, - "rtt_ms": 1.540656, + "rtt_ns": 1824250, + "rtt_ms": 1.82425, "checkpoint": 0, - "vertex_from": "370", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.602485904Z" + "vertex_from": "372", + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:15.365326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059927, - "rtt_ms": 1.059927, + "rtt_ns": 1956250, + "rtt_ms": 1.95625, "checkpoint": 0, "vertex_from": "370", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.602485494Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:15.365416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587746, - "rtt_ms": 1.587746, + "rtt_ns": 1993750, + "rtt_ms": 1.99375, "checkpoint": 0, "vertex_from": "370", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.602513674Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:04:15.36544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278756, - "rtt_ms": 1.278756, + "rtt_ns": 1962417, + "rtt_ms": 1.962417, "checkpoint": 0, "vertex_from": "372", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:51.602721003Z" + "timestamp": "2025-11-27T04:04:15.36546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419986, - "rtt_ms": 1.419986, + "rtt_ns": 1669250, + "rtt_ms": 1.66925, "checkpoint": 0, "vertex_from": "376", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.603121862Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:15.366837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503116, - "rtt_ms": 1.503116, + "rtt_ns": 1880250, + "rtt_ms": 1.88025, "checkpoint": 0, "vertex_from": "375", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.603191892Z" + "timestamp": "2025-11-27T04:04:15.366858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294246, - "rtt_ms": 1.294246, + "rtt_ns": 1894291, + "rtt_ms": 1.894291, "checkpoint": 0, "vertex_from": "376", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:51.60378232Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:15.366877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413986, - "rtt_ms": 1.413986, + "rtt_ns": 1704500, + "rtt_ms": 1.7045, "checkpoint": 0, "vertex_from": "376", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.60390071Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:04:15.366896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200756, - "rtt_ms": 1.200756, + "rtt_ns": 1587959, + "rtt_ms": 1.587959, "checkpoint": 0, "vertex_from": "376", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.603923109Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2250123, - "rtt_ms": 2.250123, - "checkpoint": 0, - "vertex_from": "374", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.603923429Z" + "timestamp": "2025-11-27T04:04:15.366915-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2377643, - "rtt_ms": 2.377643, + "operation": "add_vertex", + "rtt_ns": 1612042, + "rtt_ms": 1.612042, "checkpoint": 0, - "vertex_from": "372", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.603939669Z" + "vertex_from": "380", + "timestamp": "2025-11-27T04:04:15.36703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452705, - "rtt_ms": 1.452705, + "rtt_ns": 1820791, + "rtt_ms": 1.820791, "checkpoint": 0, "vertex_from": "376", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.603970789Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2376243, - "rtt_ms": 2.376243, - "checkpoint": 0, - "vertex_from": "373", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.603994489Z" + "timestamp": "2025-11-27T04:04:15.367049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528115, - "rtt_ms": 1.528115, + "rtt_ns": 1908166, + "rtt_ms": 1.908166, "checkpoint": 0, "vertex_from": "376", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:51.604015529Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:04:15.367118-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1454635, - "rtt_ms": 1.454635, + "rtt_ns": 1766584, + "rtt_ms": 1.766584, "checkpoint": 0, "vertex_from": "381", - "timestamp": "2025-11-27T01:23:51.604648607Z" + "timestamp": "2025-11-27T04:04:15.367228-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1593235, - "rtt_ms": 1.593235, + "rtt_ns": 1908750, + "rtt_ms": 1.90875, "checkpoint": 0, - "vertex_from": "380", - "timestamp": "2025-11-27T01:23:51.604718957Z" + "vertex_from": "381", + "timestamp": "2025-11-27T04:04:15.36735-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1057127, - "rtt_ms": 1.057127, + "operation": "add_edge", + "rtt_ns": 1583708, + "rtt_ms": 1.583708, "checkpoint": 0, - "vertex_from": "381", - "timestamp": "2025-11-27T01:23:51.604842257Z" + "vertex_from": "384", + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:15.368481-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1237617, - "rtt_ms": 1.237617, + "rtt_ns": 1642958, + "rtt_ms": 1.642958, "checkpoint": 0, "vertex_from": "382", - "timestamp": "2025-11-27T01:23:51.605162976Z" + "timestamp": "2025-11-27T04:04:15.368501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207447, - "rtt_ms": 1.207447, + "rtt_ns": 1644750, + "rtt_ms": 1.64475, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.605179906Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:04:15.368522-08:00" }, { - "operation": "add_edge", - "rtt_ns": 577619, - "rtt_ms": 0.577619, + "operation": "add_vertex", + "rtt_ns": 1703042, + "rtt_ms": 1.703042, "checkpoint": 0, - "vertex_from": "381", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.605226736Z" + "vertex_from": "382", + "timestamp": "2025-11-27T04:04:15.368541-08:00" }, { "operation": "add_edge", - "rtt_ns": 544809, - "rtt_ms": 0.544809, + "rtt_ns": 1477417, + "rtt_ms": 1.477417, "checkpoint": 0, - "vertex_from": "380", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.605264296Z" + "vertex_from": "381", + "vertex_to": "657", + "timestamp": "2025-11-27T04:04:15.368706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321467, - "rtt_ms": 1.321467, + "rtt_ns": 1686125, + "rtt_ms": 1.686125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.605264536Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:15.368808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343237, - "rtt_ms": 1.343237, + "rtt_ns": 1914541, + "rtt_ms": 1.914541, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.605268146Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.36883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733875, - "rtt_ms": 1.733875, + "rtt_ns": 1833417, + "rtt_ms": 1.833417, "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.605730604Z" + "vertex_from": "380", + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.368863-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1984594, - "rtt_ms": 1.984594, + "operation": "add_edge", + "rtt_ns": 1531792, + "rtt_ms": 1.531792, "checkpoint": 0, - "vertex_from": "382", - "timestamp": "2025-11-27T01:23:51.605886794Z" + "vertex_from": "381", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.368882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890265, - "rtt_ms": 1.890265, + "rtt_ns": 1835625, + "rtt_ms": 1.835625, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.605907254Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.368885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124827, - "rtt_ms": 1.124827, + "rtt_ns": 1597041, + "rtt_ms": 1.597041, "checkpoint": 0, - "vertex_from": "381", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:51.605967824Z" + "vertex_from": "382", + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:15.370099-08:00" }, { "operation": "add_edge", - "rtt_ns": 990707, - "rtt_ms": 0.990707, + "rtt_ns": 1659208, + "rtt_ms": 1.659208, "checkpoint": 0, "vertex_from": "382", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.606154783Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:04:15.370201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441926, - "rtt_ms": 1.441926, + "rtt_ns": 1808250, + "rtt_ms": 1.80825, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:51.606707492Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:04:15.370331-08:00" }, { "operation": "add_edge", - "rtt_ns": 924037, - "rtt_ms": 0.924037, + "rtt_ns": 1650209, + "rtt_ms": 1.650209, "checkpoint": 0, - "vertex_from": "382", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:51.606811851Z" + "vertex_from": "384", + "vertex_to": "668", + "timestamp": "2025-11-27T04:04:15.370358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643115, - "rtt_ms": 1.643115, + "rtt_ns": 1906125, + "rtt_ms": 1.906125, "checkpoint": 0, "vertex_from": "384", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.606824421Z" + "timestamp": "2025-11-27T04:04:15.370388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566055, - "rtt_ms": 1.566055, + "rtt_ns": 1671167, + "rtt_ms": 1.671167, "checkpoint": 0, "vertex_from": "384", "vertex_to": "920", - "timestamp": "2025-11-27T01:23:51.606831651Z" + "timestamp": "2025-11-27T04:04:15.37048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193207, - "rtt_ms": 1.193207, + "rtt_ns": 1652541, + "rtt_ms": 1.652541, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.606925271Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:15.370539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984964, - "rtt_ms": 1.984964, + "rtt_ns": 1903791, + "rtt_ms": 1.903791, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "386", - "timestamp": "2025-11-27T01:23:51.60721264Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.370735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963004, - "rtt_ms": 1.963004, + "rtt_ns": 1930750, + "rtt_ms": 1.93075, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.60723281Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.370795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419446, - "rtt_ms": 1.419446, + "rtt_ns": 1928625, + "rtt_ms": 1.928625, "checkpoint": 0, "vertex_from": "384", "vertex_to": "932", - "timestamp": "2025-11-27T01:23:51.60732878Z" + "timestamp": "2025-11-27T04:04:15.370814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758985, - "rtt_ms": 1.758985, + "rtt_ns": 1337083, + "rtt_ms": 1.337083, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "661", - "timestamp": "2025-11-27T01:23:51.607915548Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.371695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190357, - "rtt_ms": 1.190357, + "rtt_ns": 1584083, + "rtt_ms": 1.584083, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.608004408Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:15.371786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198187, - "rtt_ms": 1.198187, + "rtt_ns": 1872542, + "rtt_ms": 1.872542, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.608023468Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:04:15.371974-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056964, - "rtt_ms": 2.056964, + "rtt_ns": 1663625, + "rtt_ms": 1.663625, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.608025838Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:04:15.372204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327986, - "rtt_ms": 1.327986, + "rtt_ns": 1888792, + "rtt_ms": 1.888792, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.608036678Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:15.372221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231177, - "rtt_ms": 1.231177, + "rtt_ns": 1740250, + "rtt_ms": 1.74025, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.608063768Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:04:15.372222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180717, - "rtt_ms": 1.180717, + "rtt_ns": 1521250, + "rtt_ms": 1.52125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "527", - "timestamp": "2025-11-27T01:23:51.608107238Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:15.372257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624056, - "rtt_ms": 1.624056, + "rtt_ns": 1976583, + "rtt_ms": 1.976583, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.608858986Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:15.372367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154107, - "rtt_ms": 1.154107, + "rtt_ns": 1679917, + "rtt_ms": 1.679917, "checkpoint": 0, "vertex_from": "384", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:51.609071565Z" + "timestamp": "2025-11-27T04:04:15.372496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879415, - "rtt_ms": 1.879415, + "rtt_ns": 1720875, + "rtt_ms": 1.720875, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:51.609094205Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:04:15.372517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775425, - "rtt_ms": 1.775425, + "rtt_ns": 1474166, + "rtt_ms": 1.474166, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.609105405Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:04:15.37345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253916, - "rtt_ms": 1.253916, + "rtt_ns": 1725417, + "rtt_ms": 1.725417, "checkpoint": 0, "vertex_from": "384", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.609278874Z" + "timestamp": "2025-11-27T04:04:15.373512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273216, - "rtt_ms": 1.273216, + "rtt_ns": 1966959, + "rtt_ms": 1.966959, "checkpoint": 0, "vertex_from": "384", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.609279264Z" + "timestamp": "2025-11-27T04:04:15.373664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436586, - "rtt_ms": 1.436586, + "rtt_ns": 1432542, + "rtt_ms": 1.432542, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "393", - "timestamp": "2025-11-27T01:23:51.609545014Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:04:15.3738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540776, - "rtt_ms": 1.540776, + "rtt_ns": 1597541, + "rtt_ms": 1.597541, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:51.609568394Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:04:15.373856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694695, - "rtt_ms": 1.694695, + "rtt_ns": 1691333, + "rtt_ms": 1.691333, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:51.609732463Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:04:15.373914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669675, - "rtt_ms": 1.669675, + "rtt_ns": 1814917, + "rtt_ms": 1.814917, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.609734443Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:04:15.37402-08:00" }, { "operation": "add_edge", - "rtt_ns": 899437, - "rtt_ms": 0.899437, + "rtt_ns": 1815125, + "rtt_ms": 1.815125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:51.609760723Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:15.374037-08:00" }, { "operation": "add_edge", - "rtt_ns": 750538, - "rtt_ms": 0.750538, + "rtt_ns": 1519750, + "rtt_ms": 1.51975, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.609824013Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:15.374037-08:00" }, { "operation": "add_edge", - "rtt_ns": 757688, - "rtt_ms": 0.757688, + "rtt_ns": 1820000, + "rtt_ms": 1.82, "checkpoint": 0, "vertex_from": "384", "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.609855953Z" + "timestamp": "2025-11-27T04:04:15.374317-08:00" }, { "operation": "add_edge", - "rtt_ns": 808728, - "rtt_ms": 0.808728, + "rtt_ns": 1584541, + "rtt_ms": 1.584541, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.609915743Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:04:15.375037-08:00" }, { "operation": "add_edge", - "rtt_ns": 683329, - "rtt_ms": 0.683329, + "rtt_ns": 1542042, + "rtt_ms": 1.542042, "checkpoint": 0, "vertex_from": "384", "vertex_to": "569", - "timestamp": "2025-11-27T01:23:51.609964763Z" - }, - { - "operation": "add_edge", - "rtt_ns": 696789, - "rtt_ms": 0.696789, - "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "426", - "timestamp": "2025-11-27T01:23:51.609977653Z" + "timestamp": "2025-11-27T04:04:15.375056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268016, - "rtt_ms": 1.268016, + "rtt_ns": 1435541, + "rtt_ms": 1.435541, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.61084188Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.375352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108327, - "rtt_ms": 1.108327, + "rtt_ns": 1552208, + "rtt_ms": 1.552208, "checkpoint": 0, "vertex_from": "384", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.61084289Z" + "timestamp": "2025-11-27T04:04:15.375409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298836, - "rtt_ms": 1.298836, + "rtt_ns": 1434666, + "rtt_ms": 1.434666, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "714", - "timestamp": "2025-11-27T01:23:51.61084615Z" + "vertex_to": "799", + "timestamp": "2025-11-27T04:04:15.375473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099277, - "rtt_ms": 1.099277, + "rtt_ns": 1459625, + "rtt_ms": 1.459625, "checkpoint": 0, "vertex_from": "384", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.61086305Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1780925, - "rtt_ms": 1.780925, - "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.611516778Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1598035, - "rtt_ms": 1.598035, - "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.611577688Z" + "timestamp": "2025-11-27T04:04:15.375481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769895, - "rtt_ms": 1.769895, + "rtt_ns": 1686042, + "rtt_ms": 1.686042, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "799", - "timestamp": "2025-11-27T01:23:51.611595738Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:15.375488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628885, - "rtt_ms": 1.628885, + "rtt_ns": 1466917, + "rtt_ms": 1.466917, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.611599078Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:15.375506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763315, - "rtt_ms": 1.763315, + "rtt_ns": 1842583, + "rtt_ms": 1.842583, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.611625848Z" + "vertex_to": "714", + "timestamp": "2025-11-27T04:04:15.375508-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1778705, - "rtt_ms": 1.778705, + "rtt_ns": 1510750, + "rtt_ms": 1.51075, "checkpoint": 0, "vertex_from": "971", - "timestamp": "2025-11-27T01:23:51.611704358Z" + "timestamp": "2025-11-27T04:04:15.375831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514946, - "rtt_ms": 1.514946, + "rtt_ns": 1563209, + "rtt_ms": 1.563209, "checkpoint": 0, "vertex_from": "384", "vertex_to": "696", - "timestamp": "2025-11-27T01:23:51.612359076Z" + "timestamp": "2025-11-27T04:04:15.376917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761725, - "rtt_ms": 1.761725, + "rtt_ns": 1847291, + "rtt_ms": 1.847291, "checkpoint": 0, "vertex_from": "384", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.612610045Z" + "timestamp": "2025-11-27T04:04:15.377322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870525, - "rtt_ms": 1.870525, + "rtt_ns": 1969875, + "rtt_ms": 1.969875, "checkpoint": 0, "vertex_from": "384", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.612715475Z" + "timestamp": "2025-11-27T04:04:15.377381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878065, - "rtt_ms": 1.878065, + "rtt_ns": 2335042, + "rtt_ms": 2.335042, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.612744465Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:15.377392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694055, - "rtt_ms": 1.694055, + "rtt_ns": 2365292, + "rtt_ms": 2.365292, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.613212573Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:15.377403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792955, - "rtt_ms": 1.792955, + "rtt_ns": 1929584, + "rtt_ms": 1.929584, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:51.613393443Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.377418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782135, - "rtt_ms": 1.782135, + "rtt_ns": 1916416, + "rtt_ms": 1.916416, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.613409583Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:15.377424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723255, - "rtt_ms": 1.723255, + "rtt_ns": 1952084, + "rtt_ms": 1.952084, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "971", - "timestamp": "2025-11-27T01:23:51.613427923Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:15.377434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837705, - "rtt_ms": 1.837705, + "rtt_ns": 1928834, + "rtt_ms": 1.928834, "checkpoint": 0, "vertex_from": "384", "vertex_to": "420", - "timestamp": "2025-11-27T01:23:51.613434563Z" + "timestamp": "2025-11-27T04:04:15.377437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880074, - "rtt_ms": 1.880074, + "rtt_ns": 1836750, + "rtt_ms": 1.83675, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.613460772Z" + "vertex_to": "971", + "timestamp": "2025-11-27T04:04:15.377669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852414, - "rtt_ms": 1.852414, + "rtt_ns": 1659917, + "rtt_ms": 1.659917, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "563", - "timestamp": "2025-11-27T01:23:51.61421394Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:04:15.378578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604715, - "rtt_ms": 1.604715, + "rtt_ns": 1652250, + "rtt_ms": 1.65225, "checkpoint": 0, "vertex_from": "384", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.61432119Z" + "timestamp": "2025-11-27T04:04:15.379056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125917, - "rtt_ms": 1.125917, + "rtt_ns": 1639292, + "rtt_ms": 1.639292, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.61434036Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:15.379075-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1592475, - "rtt_ms": 1.592475, + "rtt_ns": 1764167, + "rtt_ms": 1.764167, "checkpoint": 0, "vertex_from": "917", - "timestamp": "2025-11-27T01:23:51.61434561Z" + "timestamp": "2025-11-27T04:04:15.379186-08:00" }, { "operation": "add_edge", - "rtt_ns": 941537, - "rtt_ms": 0.941537, + "rtt_ns": 1966334, + "rtt_ms": 1.966334, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.6143529Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:04:15.37936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747635, - "rtt_ms": 1.747635, + "rtt_ns": 1996583, + "rtt_ms": 1.996583, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "618", - "timestamp": "2025-11-27T01:23:51.61435951Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:04:15.379379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052436, - "rtt_ms": 1.052436, + "rtt_ns": 1801959, + "rtt_ms": 1.801959, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.614446809Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:15.379472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079697, - "rtt_ms": 1.079697, + "rtt_ns": 2165833, + "rtt_ms": 2.165833, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "387", - "timestamp": "2025-11-27T01:23:51.614541619Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:04:15.37949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130556, - "rtt_ms": 1.130556, + "rtt_ns": 2106458, + "rtt_ms": 2.106458, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.614566329Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:15.379545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186736, - "rtt_ms": 1.186736, + "rtt_ns": 2215375, + "rtt_ms": 2.215375, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.614616049Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:15.37964-08:00" }, { "operation": "add_edge", - "rtt_ns": 2171244, - "rtt_ms": 2.171244, + "rtt_ns": 1503250, + "rtt_ms": 1.50325, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.616386744Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:15.380083-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126964, - "rtt_ms": 2.126964, + "rtt_ns": 1492458, + "rtt_ms": 1.492458, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.616488314Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:04:15.38055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2325963, - "rtt_ms": 2.325963, + "rtt_ns": 1486917, + "rtt_ms": 1.486917, "checkpoint": 0, "vertex_from": "384", "vertex_to": "917", - "timestamp": "2025-11-27T01:23:51.616672113Z" + "timestamp": "2025-11-27T04:04:15.380673-08:00" }, { "operation": "add_edge", - "rtt_ns": 2252744, - "rtt_ms": 2.252744, + "rtt_ns": 1316041, + "rtt_ms": 1.316041, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "572", - "timestamp": "2025-11-27T01:23:51.616701523Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:04:15.380695-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444443, - "rtt_ms": 2.444443, + "rtt_ns": 1622000, + "rtt_ms": 1.622, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.616798973Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.380699-08:00" }, { "operation": "add_edge", - "rtt_ns": 3166051, - "rtt_ms": 3.166051, + "rtt_ns": 1457083, + "rtt_ms": 1.457083, "checkpoint": 0, "vertex_from": "384", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.617489351Z" + "timestamp": "2025-11-27T04:04:15.380818-08:00" }, { "operation": "add_edge", - "rtt_ns": 3076911, - "rtt_ms": 3.076911, + "rtt_ns": 1350583, + "rtt_ms": 1.350583, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.61764619Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:15.380823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069547, - "rtt_ms": 1.069547, + "rtt_ns": 1459583, + "rtt_ms": 1.459583, "checkpoint": 0, - "vertex_from": "385", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.61777246Z" + "vertex_from": "384", + "vertex_to": "572", + "timestamp": "2025-11-27T04:04:15.381005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522915, - "rtt_ms": 1.522915, + "rtt_ns": 1538500, + "rtt_ms": 1.5385, "checkpoint": 0, - "vertex_from": "385", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:51.618323758Z" + "vertex_from": "384", + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:15.381182-08:00" }, { "operation": "add_edge", - "rtt_ns": 3835659, - "rtt_ms": 3.835659, + "rtt_ns": 1751542, + "rtt_ms": 1.751542, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.618453158Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:04:15.381243-08:00" }, { "operation": "add_edge", - "rtt_ns": 3956849, - "rtt_ms": 3.956849, + "rtt_ns": 1307875, + "rtt_ms": 1.307875, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.618499968Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:15.381392-08:00" }, { "operation": "add_edge", - "rtt_ns": 4174098, - "rtt_ms": 4.174098, + "rtt_ns": 1612209, + "rtt_ms": 1.612209, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.618516068Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:15.382163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062094, - "rtt_ms": 2.062094, + "rtt_ns": 1541667, + "rtt_ms": 1.541667, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.618551838Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:04:15.382216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164444, - "rtt_ms": 2.164444, + "rtt_ns": 1530458, + "rtt_ms": 1.530458, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:51.618552998Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:15.382231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906085, - "rtt_ms": 1.906085, + "rtt_ns": 1743334, + "rtt_ms": 1.743334, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.618579318Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:15.38244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069157, - "rtt_ms": 1.069157, + "rtt_ns": 1654083, + "rtt_ms": 1.654083, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:51.619394175Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:04:15.382478-08:00" }, { "operation": "add_edge", - "rtt_ns": 950837, - "rtt_ms": 0.950837, + "rtt_ns": 1662125, + "rtt_ms": 1.662125, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.619405325Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:15.382481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760465, - "rtt_ms": 1.760465, + "rtt_ns": 1478916, + "rtt_ms": 1.478916, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "488", - "timestamp": "2025-11-27T01:23:51.619408405Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.382485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635825, - "rtt_ms": 1.635825, + "rtt_ns": 1359458, + "rtt_ms": 1.359458, "checkpoint": 0, "vertex_from": "385", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.619411265Z" + "timestamp": "2025-11-27T04:04:15.382604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962624, - "rtt_ms": 1.962624, + "rtt_ns": 1337041, + "rtt_ms": 1.337041, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.619453565Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:04:15.38273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684945, - "rtt_ms": 1.684945, + "rtt_ns": 1570167, + "rtt_ms": 1.570167, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:51.620238193Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:04:15.382754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679775, - "rtt_ms": 1.679775, + "rtt_ns": 1375667, + "rtt_ms": 1.375667, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.620260253Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:04:15.383608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892394, - "rtt_ms": 1.892394, + "rtt_ns": 1461833, + "rtt_ms": 1.461833, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "388", - "timestamp": "2025-11-27T01:23:51.620410032Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:04:15.383627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928774, - "rtt_ms": 1.928774, + "rtt_ns": 1427083, + "rtt_ms": 1.427083, "checkpoint": 0, "vertex_from": "385", "vertex_to": "531", - "timestamp": "2025-11-27T01:23:51.620430022Z" + "timestamp": "2025-11-27T04:04:15.383644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902664, - "rtt_ms": 1.902664, + "rtt_ns": 1375875, + "rtt_ms": 1.375875, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.620456582Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:04:15.383816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601366, - "rtt_ms": 1.601366, + "rtt_ns": 1353500, + "rtt_ms": 1.3535, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.621014101Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:15.383834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710695, - "rtt_ms": 1.710695, + "rtt_ns": 1372166, + "rtt_ms": 1.372166, "checkpoint": 0, "vertex_from": "385", "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.62110667Z" + "timestamp": "2025-11-27T04:04:15.383858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805285, - "rtt_ms": 1.805285, + "rtt_ns": 1420875, + "rtt_ms": 1.420875, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.62126064Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.383903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141766, - "rtt_ms": 1.141766, + "rtt_ns": 1341125, + "rtt_ms": 1.341125, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:51.621403009Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.383946-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102224, - "rtt_ms": 2.102224, + "rtt_ns": 1401958, + "rtt_ms": 1.401958, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.621511149Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:15.384132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765135, - "rtt_ms": 1.765135, + "rtt_ns": 1462000, + "rtt_ms": 1.462, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.622004498Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:15.384217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700655, - "rtt_ms": 1.700655, + "rtt_ns": 1447042, + "rtt_ms": 1.447042, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.622113107Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:04:15.385092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101646, - "rtt_ms": 1.101646, + "rtt_ns": 1576458, + "rtt_ms": 1.576458, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.622118207Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.385204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735275, - "rtt_ms": 1.735275, + "rtt_ns": 1093959, + "rtt_ms": 1.093959, "checkpoint": 0, - "vertex_from": "385", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.622193927Z" + "vertex_from": "386", + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.385227-08:00" }, { "operation": "add_edge", - "rtt_ns": 2795462, - "rtt_ms": 2.795462, + "rtt_ns": 1527791, + "rtt_ms": 1.527791, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.622205357Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:15.385362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773795, - "rtt_ms": 1.773795, + "rtt_ns": 1217625, + "rtt_ms": 1.217625, + "checkpoint": 0, + "vertex_from": "386", + "vertex_to": "416", + "timestamp": "2025-11-27T04:04:15.385436-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1838916, + "rtt_ms": 1.838916, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.622206037Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:15.385447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733225, - "rtt_ms": 1.733225, + "rtt_ns": 1648708, + "rtt_ms": 1.648708, "checkpoint": 0, - "vertex_from": "386", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.622996375Z" + "vertex_from": "385", + "vertex_to": "720", + "timestamp": "2025-11-27T04:04:15.385552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004724, - "rtt_ms": 2.004724, + "rtt_ns": 1743500, + "rtt_ms": 1.7435, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.623112674Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:15.385561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824935, - "rtt_ms": 1.824935, + "rtt_ns": 1810209, + "rtt_ms": 1.810209, "checkpoint": 0, - "vertex_from": "386", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.623229134Z" + "vertex_from": "385", + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:15.385669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140957, - "rtt_ms": 1.140957, + "rtt_ns": 1739125, + "rtt_ms": 1.739125, "checkpoint": 0, - "vertex_from": "386", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.623255544Z" + "vertex_from": "385", + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.385686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743895, - "rtt_ms": 1.743895, + "rtt_ns": 1459917, + "rtt_ms": 1.459917, "checkpoint": 0, "vertex_from": "386", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.623256334Z" + "timestamp": "2025-11-27T04:04:15.386553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256376, - "rtt_ms": 1.256376, + "rtt_ns": 1565583, + "rtt_ms": 1.565583, "checkpoint": 0, "vertex_from": "386", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.623262054Z" + "timestamp": "2025-11-27T04:04:15.386771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713975, - "rtt_ms": 1.713975, + "rtt_ns": 1559750, + "rtt_ms": 1.55975, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:51.623835422Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.386788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668475, - "rtt_ms": 1.668475, + "rtt_ns": 1525208, + "rtt_ms": 1.525208, "checkpoint": 0, "vertex_from": "386", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.623864702Z" + "timestamp": "2025-11-27T04:04:15.386962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714255, - "rtt_ms": 1.714255, + "rtt_ns": 1294167, + "rtt_ms": 1.294167, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.623922042Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:15.386981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794455, - "rtt_ms": 1.794455, + "rtt_ns": 1633041, + "rtt_ms": 1.633041, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.624003212Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:04:15.386997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646276, - "rtt_ms": 1.646276, + "rtt_ns": 1458459, + "rtt_ms": 1.458459, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:51.62476058Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.387012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508306, - "rtt_ms": 1.508306, + "rtt_ns": 1638917, + "rtt_ms": 1.638917, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "449", - "timestamp": "2025-11-27T01:23:51.62477184Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:15.387087-08:00" }, { "operation": "add_edge", - "rtt_ns": 977377, - "rtt_ms": 0.977377, + "rtt_ns": 1666209, + "rtt_ms": 1.666209, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.624843019Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.387229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611255, - "rtt_ms": 1.611255, + "rtt_ns": 1668042, + "rtt_ms": 1.668042, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.624869749Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:04:15.387338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728535, - "rtt_ms": 1.728535, + "rtt_ns": 1167458, + "rtt_ms": 1.167458, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.624959269Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:15.38794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994694, - "rtt_ms": 1.994694, + "rtt_ns": 1482250, + "rtt_ms": 1.48225, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.624992829Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:04:15.388036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818825, - "rtt_ms": 1.818825, + "rtt_ns": 1332166, + "rtt_ms": 1.332166, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:51.625076249Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.388295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120987, - "rtt_ms": 1.120987, + "rtt_ns": 1313125, + "rtt_ms": 1.313125, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "550", - "timestamp": "2025-11-27T01:23:51.625125239Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.388311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358826, - "rtt_ms": 1.358826, + "rtt_ns": 1536042, + "rtt_ms": 1.536042, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.625195188Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:04:15.388324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347766, - "rtt_ms": 1.347766, + "rtt_ns": 1454417, + "rtt_ms": 1.454417, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.625270698Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.388543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741265, - "rtt_ms": 1.741265, + "rtt_ns": 1234167, + "rtt_ms": 1.234167, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.626507215Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.388573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767335, - "rtt_ms": 1.767335, + "rtt_ns": 1358458, + "rtt_ms": 1.358458, "checkpoint": 0, "vertex_from": "386", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.626540165Z" + "timestamp": "2025-11-27T04:04:15.388588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989525, - "rtt_ms": 1.989525, + "rtt_ns": 1578167, + "rtt_ms": 1.578167, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.626833804Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:04:15.388591-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206644, - "rtt_ms": 2.206644, + "rtt_ns": 1615709, + "rtt_ms": 1.615709, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.627077953Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:04:15.388597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285114, - "rtt_ms": 2.285114, + "rtt_ns": 1120375, + "rtt_ms": 1.120375, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.627246363Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:04:15.389432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2336363, - "rtt_ms": 2.336363, + "rtt_ns": 1516625, + "rtt_ms": 1.516625, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "436", - "timestamp": "2025-11-27T01:23:51.627330542Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.389457-08:00" }, { "operation": "add_edge", - "rtt_ns": 806077, - "rtt_ms": 0.806077, + "rtt_ns": 1390792, + "rtt_ms": 1.390792, "checkpoint": 0, - "vertex_from": "387", - "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.627347182Z" + "vertex_from": "386", + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:15.389716-08:00" }, { "operation": "add_edge", - "rtt_ns": 2345223, - "rtt_ms": 2.345223, + "rtt_ns": 1441167, + "rtt_ms": 1.441167, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "569", - "timestamp": "2025-11-27T01:23:51.627424522Z" + "vertex_to": "436", + "timestamp": "2025-11-27T04:04:15.389737-08:00" }, { "operation": "add_edge", - "rtt_ns": 614488, - "rtt_ms": 0.614488, + "rtt_ns": 1715083, + "rtt_ms": 1.715083, "checkpoint": 0, - "vertex_from": "387", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:51.627451392Z" + "vertex_from": "386", + "vertex_to": "646", + "timestamp": "2025-11-27T04:04:15.389752-08:00" }, { "operation": "add_edge", - "rtt_ns": 705378, - "rtt_ms": 0.705378, + "rtt_ns": 1382083, + "rtt_ms": 1.382083, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.627784441Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:04:15.38998-08:00" }, { "operation": "add_edge", - "rtt_ns": 760598, - "rtt_ms": 0.760598, + "rtt_ns": 1405208, + "rtt_ms": 1.405208, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.62809199Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:04:15.389997-08:00" }, { "operation": "add_edge", - "rtt_ns": 852857, - "rtt_ms": 0.852857, + "rtt_ns": 1460083, + "rtt_ms": 1.460083, "checkpoint": 0, - "vertex_from": "387", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:51.62810093Z" + "vertex_from": "386", + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:15.390024-08:00" }, { "operation": "add_edge", - "rtt_ns": 798018, - "rtt_ms": 0.798018, + "rtt_ns": 1721584, + "rtt_ms": 1.721584, "checkpoint": 0, - "vertex_from": "387", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.62814695Z" + "vertex_from": "386", + "vertex_to": "655", + "timestamp": "2025-11-27T04:04:15.390296-08:00" }, { "operation": "add_edge", - "rtt_ns": 3041171, - "rtt_ms": 3.041171, + "rtt_ns": 1723542, + "rtt_ms": 1.723542, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.62816801Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:15.390313-08:00" }, { "operation": "add_edge", - "rtt_ns": 746128, - "rtt_ms": 0.746128, + "rtt_ns": 1134708, + "rtt_ms": 1.134708, "checkpoint": 0, "vertex_from": "387", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.62817198Z" + "timestamp": "2025-11-27T04:04:15.390888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667755, - "rtt_ms": 1.667755, + "rtt_ns": 1443417, + "rtt_ms": 1.443417, "checkpoint": 0, - "vertex_from": "386", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.62817716Z" + "vertex_from": "387", + "vertex_to": "432", + "timestamp": "2025-11-27T04:04:15.390901-08:00" }, { "operation": "add_edge", - "rtt_ns": 740558, - "rtt_ms": 0.740558, + "rtt_ns": 1607833, + "rtt_ms": 1.607833, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.62819333Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:15.391046-08:00" }, { "operation": "add_edge", - "rtt_ns": 2935492, - "rtt_ms": 2.935492, + "rtt_ns": 1549083, + "rtt_ms": 1.549083, "checkpoint": 0, - "vertex_from": "386", - "vertex_to": "655", - "timestamp": "2025-11-27T01:23:51.62820847Z" + "vertex_from": "387", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.391266-08:00" }, { "operation": "add_edge", - "rtt_ns": 3018422, - "rtt_ms": 3.018422, + "rtt_ns": 1545750, + "rtt_ms": 1.54575, "checkpoint": 0, - "vertex_from": "386", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.62821499Z" + "vertex_from": "387", + "vertex_to": "778", + "timestamp": "2025-11-27T04:04:15.391283-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1579459, + "rtt_ms": 1.579459, + "checkpoint": 0, + "vertex_from": "387", + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:15.39156-08:00" }, { "operation": "add_edge", - "rtt_ns": 587358, - "rtt_ms": 0.587358, + "rtt_ns": 1659917, + "rtt_ms": 1.659917, "checkpoint": 0, "vertex_from": "387", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.628374039Z" + "timestamp": "2025-11-27T04:04:15.391657-08:00" }, { "operation": "add_edge", - "rtt_ns": 957117, - "rtt_ms": 0.957117, + "rtt_ns": 1460000, + "rtt_ms": 1.46, "checkpoint": 0, "vertex_from": "388", "vertex_to": "417", - "timestamp": "2025-11-27T01:23:51.629105877Z" + "timestamp": "2025-11-27T04:04:15.391774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033657, - "rtt_ms": 1.033657, + "rtt_ns": 1492375, + "rtt_ms": 1.492375, "checkpoint": 0, "vertex_from": "388", "vertex_to": "569", - "timestamp": "2025-11-27T01:23:51.629137157Z" + "timestamp": "2025-11-27T04:04:15.39179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048487, - "rtt_ms": 1.048487, + "rtt_ns": 1851542, + "rtt_ms": 1.851542, "checkpoint": 0, "vertex_from": "387", "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.629142317Z" + "timestamp": "2025-11-27T04:04:15.391877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047367, - "rtt_ms": 1.047367, + "rtt_ns": 1384500, + "rtt_ms": 1.3845, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.629241907Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:15.392273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071477, - "rtt_ms": 1.071477, + "rtt_ns": 1449667, + "rtt_ms": 1.449667, "checkpoint": 0, "vertex_from": "388", "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.629244857Z" + "timestamp": "2025-11-27T04:04:15.392352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062437, - "rtt_ms": 1.062437, + "rtt_ns": 1361167, + "rtt_ms": 1.361167, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.629278497Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:04:15.392645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113967, - "rtt_ms": 1.113967, + "rtt_ns": 1655042, + "rtt_ms": 1.655042, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.629283397Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.392704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112017, - "rtt_ms": 1.112017, + "rtt_ns": 1469208, + "rtt_ms": 1.469208, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.629290547Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.392736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754405, - "rtt_ms": 1.754405, + "rtt_ns": 1078833, + "rtt_ms": 1.078833, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "625", - "timestamp": "2025-11-27T01:23:51.629968045Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:04:15.392869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608036, - "rtt_ms": 1.608036, + "rtt_ns": 1115750, + "rtt_ms": 1.11575, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.629983555Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:04:15.39289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308827, - "rtt_ms": 1.308827, + "rtt_ns": 1546292, + "rtt_ms": 1.546292, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "996", - "timestamp": "2025-11-27T01:23:51.630422264Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:15.393108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364757, - "rtt_ms": 1.364757, + "rtt_ns": 1337000, + "rtt_ms": 1.337, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:51.630503674Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.393214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397336, - "rtt_ms": 1.397336, + "rtt_ns": 1612083, + "rtt_ms": 1.612083, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.630541833Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.39327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410336, - "rtt_ms": 1.410336, + "rtt_ns": 1504416, + "rtt_ms": 1.504416, "checkpoint": 0, "vertex_from": "388", "vertex_to": "595", - "timestamp": "2025-11-27T01:23:51.630656953Z" + "timestamp": "2025-11-27T04:04:15.393858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410006, - "rtt_ms": 1.410006, + "rtt_ns": 1141083, + "rtt_ms": 1.141083, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:51.630690613Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:15.393878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507916, - "rtt_ms": 1.507916, + "rtt_ns": 1732458, + "rtt_ms": 1.732458, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.630793013Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:15.394008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564336, - "rtt_ms": 1.564336, + "rtt_ns": 1596583, + "rtt_ms": 1.596583, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.630807663Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:04:15.394244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312726, - "rtt_ms": 1.312726, + "rtt_ns": 1403500, + "rtt_ms": 1.4035, "checkpoint": 0, "vertex_from": "388", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.631297401Z" + "timestamp": "2025-11-27T04:04:15.394294-08:00" }, { "operation": "add_edge", - "rtt_ns": 897468, - "rtt_ms": 0.897468, + "rtt_ns": 1589334, + "rtt_ms": 1.589334, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.631440731Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.394295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063547, - "rtt_ms": 1.063547, + "rtt_ns": 1194625, + "rtt_ms": 1.194625, "checkpoint": 0, "vertex_from": "388", "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.631487701Z" + "timestamp": "2025-11-27T04:04:15.394303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621565, - "rtt_ms": 1.621565, + "rtt_ns": 1434417, + "rtt_ms": 1.434417, "checkpoint": 0, "vertex_from": "388", "vertex_to": "590", - "timestamp": "2025-11-27T01:23:51.63159249Z" + "timestamp": "2025-11-27T04:04:15.394305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2333463, - "rtt_ms": 2.333463, + "rtt_ns": 1276959, + "rtt_ms": 1.276959, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.63162568Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:04:15.394492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298986, - "rtt_ms": 1.298986, + "rtt_ns": 1318625, + "rtt_ms": 1.318625, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "454", - "timestamp": "2025-11-27T01:23:51.63180429Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.394591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909574, - "rtt_ms": 1.909574, + "rtt_ns": 1112917, + "rtt_ms": 1.112917, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.632601777Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.395122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1952374, - "rtt_ms": 1.952374, + "rtt_ns": 1286792, + "rtt_ms": 1.286792, "checkpoint": 0, "vertex_from": "388", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.632610757Z" + "timestamp": "2025-11-27T04:04:15.395146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826844, - "rtt_ms": 1.826844, + "rtt_ns": 1345625, + "rtt_ms": 1.345625, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "390", - "timestamp": "2025-11-27T01:23:51.632635517Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:04:15.395224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901754, - "rtt_ms": 1.901754, + "rtt_ns": 1118667, + "rtt_ms": 1.118667, "checkpoint": 0, - "vertex_from": "388", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.632696217Z" + "vertex_from": "389", + "vertex_to": "525", + "timestamp": "2025-11-27T04:04:15.395611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562556, - "rtt_ms": 1.562556, + "rtt_ns": 1603875, + "rtt_ms": 1.603875, "checkpoint": 0, "vertex_from": "388", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.632861747Z" + "timestamp": "2025-11-27T04:04:15.395899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298417, - "rtt_ms": 1.298417, + "rtt_ns": 1657292, + "rtt_ms": 1.657292, "checkpoint": 0, - "vertex_from": "389", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.632892457Z" + "vertex_from": "388", + "vertex_to": "390", + "timestamp": "2025-11-27T04:04:15.395922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389116, - "rtt_ms": 1.389116, + "rtt_ns": 1345166, + "rtt_ms": 1.345166, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:51.633018806Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.395938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764965, - "rtt_ms": 1.764965, + "rtt_ns": 1651208, + "rtt_ms": 1.651208, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.633207116Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:15.395955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424826, - "rtt_ms": 1.424826, + "rtt_ns": 1786292, + "rtt_ms": 1.786292, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.633230736Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.396092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740405, - "rtt_ms": 1.740405, + "rtt_ns": 2112875, + "rtt_ms": 2.112875, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.633232226Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.396409-08:00" }, { "operation": "add_edge", - "rtt_ns": 788238, - "rtt_ms": 0.788238, + "rtt_ns": 1409417, + "rtt_ms": 1.409417, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.633401115Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:04:15.396635-08:00" }, { "operation": "add_edge", - "rtt_ns": 791518, - "rtt_ms": 0.791518, + "rtt_ns": 1535208, + "rtt_ms": 1.535208, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.633428935Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:15.396659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437796, - "rtt_ms": 1.437796, + "rtt_ns": 1621291, + "rtt_ms": 1.621291, "checkpoint": 0, - "vertex_from": "390", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.634135973Z" + "vertex_from": "389", + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:15.396768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725695, - "rtt_ms": 1.725695, + "rtt_ns": 1305833, + "rtt_ms": 1.305833, "checkpoint": 0, - "vertex_from": "389", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.634328842Z" + "vertex_from": "390", + "vertex_to": "809", + "timestamp": "2025-11-27T04:04:15.397229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119656, - "rtt_ms": 1.119656, + "rtt_ns": 1194250, + "rtt_ms": 1.19425, "checkpoint": 0, "vertex_from": "390", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.634351662Z" + "timestamp": "2025-11-27T04:04:15.397287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497765, - "rtt_ms": 1.497765, + "rtt_ns": 1523666, + "rtt_ms": 1.523666, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.634361212Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.397463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147306, - "rtt_ms": 1.147306, + "rtt_ns": 1580667, + "rtt_ms": 1.580667, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.634381602Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:15.39748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510165, - "rtt_ms": 1.510165, + "rtt_ns": 1351125, + "rtt_ms": 1.351125, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:51.634403872Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:15.397761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384966, - "rtt_ms": 1.384966, + "rtt_ns": 1857500, + "rtt_ms": 1.8575, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.634404692Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:04:15.397813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210216, - "rtt_ms": 1.210216, + "rtt_ns": 2255083, + "rtt_ms": 2.255083, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:51.634419082Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.397867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755735, - "rtt_ms": 1.755735, + "rtt_ns": 1464708, + "rtt_ms": 1.464708, "checkpoint": 0, "vertex_from": "390", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.63518568Z" + "timestamp": "2025-11-27T04:04:15.398132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074897, - "rtt_ms": 1.074897, + "rtt_ns": 1520500, + "rtt_ms": 1.5205, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.63521216Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.398156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827775, - "rtt_ms": 1.827775, + "rtt_ns": 1719291, + "rtt_ms": 1.719291, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.63523045Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:15.398489-08:00" }, { "operation": "add_edge", - "rtt_ns": 880368, - "rtt_ms": 0.880368, + "rtt_ns": 1280458, + "rtt_ms": 1.280458, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "496", - "timestamp": "2025-11-27T01:23:51.6352343Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:15.398761-08:00" }, { "operation": "add_edge", - "rtt_ns": 881348, - "rtt_ms": 0.881348, + "rtt_ns": 1344875, + "rtt_ms": 1.344875, "checkpoint": 0, "vertex_from": "390", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.63524376Z" + "timestamp": "2025-11-27T04:04:15.398809-08:00" }, { "operation": "add_edge", - "rtt_ns": 951087, - "rtt_ms": 0.951087, + "rtt_ns": 2071583, + "rtt_ms": 2.071583, "checkpoint": 0, - "vertex_from": "390", - "vertex_to": "539", - "timestamp": "2025-11-27T01:23:51.635282709Z" + "vertex_from": "391", + "vertex_to": "654", + "timestamp": "2025-11-27T04:04:15.399887-08:00" }, { "operation": "add_edge", - "rtt_ns": 975647, - "rtt_ms": 0.975647, + "rtt_ns": 1746167, + "rtt_ms": 1.746167, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.636162767Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:04:15.399904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842135, - "rtt_ms": 1.842135, + "rtt_ns": 2631208, + "rtt_ms": 2.631208, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.636263217Z" + "vertex_from": "390", + "vertex_to": "496", + "timestamp": "2025-11-27T04:04:15.39992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876675, - "rtt_ms": 1.876675, + "rtt_ns": 2066666, + "rtt_ms": 2.066666, "checkpoint": 0, - "vertex_from": "390", - "vertex_to": "977", - "timestamp": "2025-11-27T01:23:51.636282017Z" + "vertex_from": "392", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:15.399936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900025, - "rtt_ms": 1.900025, + "rtt_ns": 2721500, + "rtt_ms": 2.7215, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.636284057Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:04:15.399952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085277, - "rtt_ms": 1.085277, + "rtt_ns": 1835041, + "rtt_ms": 1.835041, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "400", - "timestamp": "2025-11-27T01:23:51.636298687Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:15.399969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901665, - "rtt_ms": 1.901665, + "rtt_ns": 1781250, + "rtt_ms": 1.78125, "checkpoint": 0, - "vertex_from": "391", - "vertex_to": "654", - "timestamp": "2025-11-27T01:23:51.636307977Z" + "vertex_from": "392", + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:15.400271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068397, - "rtt_ms": 1.068397, + "rtt_ns": 1526041, + "rtt_ms": 1.526041, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.636351846Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.400288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142396, - "rtt_ms": 1.142396, + "rtt_ns": 1525625, + "rtt_ms": 1.525625, "checkpoint": 0, "vertex_from": "392", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.636387566Z" + "timestamp": "2025-11-27T04:04:15.400336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843954, - "rtt_ms": 1.843954, + "rtt_ns": 2573917, + "rtt_ms": 2.573917, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.637078824Z" + "vertex_from": "390", + "vertex_to": "977", + "timestamp": "2025-11-27T04:04:15.400337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889534, - "rtt_ms": 1.889534, + "rtt_ns": 1398208, + "rtt_ms": 1.398208, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.637125424Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:04:15.401303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172147, - "rtt_ms": 1.172147, + "rtt_ns": 1443708, + "rtt_ms": 1.443708, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "408", - "timestamp": "2025-11-27T01:23:51.637336294Z" + "vertex_to": "622", + "timestamp": "2025-11-27T04:04:15.401364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229626, - "rtt_ms": 1.229626, + "rtt_ns": 1304333, + "rtt_ms": 1.304333, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.637514733Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:15.401642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263476, - "rtt_ms": 1.263476, + "rtt_ns": 1693583, + "rtt_ms": 1.693583, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "622", - "timestamp": "2025-11-27T01:23:51.637528573Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:15.401646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266377, - "rtt_ms": 1.266377, + "rtt_ns": 1727500, + "rtt_ms": 1.7275, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "497", - "timestamp": "2025-11-27T01:23:51.637619653Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.401664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311516, - "rtt_ms": 1.311516, + "rtt_ns": 1414583, + "rtt_ms": 1.414583, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.637621593Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:04:15.401704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400356, - "rtt_ms": 1.400356, + "rtt_ns": 1880250, + "rtt_ms": 1.88025, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.637683163Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.401768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402196, - "rtt_ms": 1.402196, + "rtt_ns": 1484208, + "rtt_ms": 1.484208, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "402", - "timestamp": "2025-11-27T01:23:51.637703983Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:15.401821-08:00" }, { "operation": "add_edge", - "rtt_ns": 740208, - "rtt_ms": 0.740208, + "rtt_ns": 1904541, + "rtt_ms": 1.904541, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.637820432Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:04:15.401874-08:00" }, { "operation": "add_edge", - "rtt_ns": 541478, - "rtt_ms": 0.541478, + "rtt_ns": 1924333, + "rtt_ms": 1.924333, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.637878562Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.402197-08:00" }, { "operation": "add_edge", - "rtt_ns": 861018, - "rtt_ms": 0.861018, + "rtt_ns": 1082625, + "rtt_ms": 1.082625, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "432", - "timestamp": "2025-11-27T01:23:51.638390411Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:15.402905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064845, - "rtt_ms": 2.064845, + "rtt_ns": 1335875, + "rtt_ms": 1.335875, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.638453511Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:15.40298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361756, - "rtt_ms": 1.361756, + "rtt_ns": 1671417, + "rtt_ms": 1.671417, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.63848834Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:15.403547-08:00" }, { "operation": "add_edge", - "rtt_ns": 994707, - "rtt_ms": 0.994707, + "rtt_ns": 2187625, + "rtt_ms": 2.187625, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.63851041Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.403553-08:00" }, { "operation": "add_edge", - "rtt_ns": 901927, - "rtt_ms": 0.901927, + "rtt_ns": 2254917, + "rtt_ms": 2.254917, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "729", - "timestamp": "2025-11-27T01:23:51.63852531Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:15.403561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557565, - "rtt_ms": 1.557565, + "rtt_ns": 1902375, + "rtt_ms": 1.902375, "checkpoint": 0, "vertex_from": "392", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.639178288Z" + "timestamp": "2025-11-27T04:04:15.403567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621935, - "rtt_ms": 1.621935, + "rtt_ns": 1863666, + "rtt_ms": 1.863666, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.639326908Z" + "vertex_to": "729", + "timestamp": "2025-11-27T04:04:15.403569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680605, - "rtt_ms": 1.680605, + "rtt_ns": 1387500, + "rtt_ms": 1.3875, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.639364538Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:04:15.403585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576996, - "rtt_ms": 1.576996, + "rtt_ns": 1887750, + "rtt_ms": 1.88775, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.639398868Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:15.403657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574956, - "rtt_ms": 1.574956, + "rtt_ns": 2020208, + "rtt_ms": 2.020208, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "394", - "timestamp": "2025-11-27T01:23:51.639454788Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:04:15.403668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103657, - "rtt_ms": 1.103657, + "rtt_ns": 1454958, + "rtt_ms": 1.454958, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:51.639592937Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:15.404438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688025, - "rtt_ms": 1.688025, + "rtt_ns": 1925292, + "rtt_ms": 1.925292, "checkpoint": 0, "vertex_from": "392", "vertex_to": "724", - "timestamp": "2025-11-27T01:23:51.640079706Z" + "timestamp": "2025-11-27T04:04:15.404831-08:00" }, { "operation": "add_edge", - "rtt_ns": 817858, - "rtt_ms": 0.817858, + "rtt_ns": 1208042, + "rtt_ms": 1.208042, "checkpoint": 0, "vertex_from": "393", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:51.640183086Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.404866-08:00" }, { "operation": "add_edge", - "rtt_ns": 981507, - "rtt_ms": 0.981507, + "rtt_ns": 1466542, + "rtt_ms": 1.466542, "checkpoint": 0, - "vertex_from": "393", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:51.640309515Z" + "vertex_from": "392", + "vertex_to": "869", + "timestamp": "2025-11-27T04:04:15.405021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857095, - "rtt_ms": 1.857095, + "rtt_ns": 1416250, + "rtt_ms": 1.41625, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.640383245Z" + "vertex_from": "393", + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.405084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057327, - "rtt_ms": 1.057327, + "rtt_ns": 1570750, + "rtt_ms": 1.57075, "checkpoint": 0, - "vertex_from": "393", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.640457025Z" + "vertex_from": "392", + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.405135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023144, - "rtt_ms": 2.023144, + "rtt_ns": 1604750, + "rtt_ms": 1.60475, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.640477435Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:04:15.405153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414556, - "rtt_ms": 1.414556, + "rtt_ns": 1601042, + "rtt_ms": 1.601042, "checkpoint": 0, "vertex_from": "393", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.640593904Z" + "timestamp": "2025-11-27T04:04:15.405169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627435, - "rtt_ms": 1.627435, + "rtt_ns": 1841042, + "rtt_ms": 1.841042, "checkpoint": 0, "vertex_from": "393", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.641084163Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:04:15.405413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627103, - "rtt_ms": 2.627103, + "rtt_ns": 1844459, + "rtt_ms": 1.844459, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "869", - "timestamp": "2025-11-27T01:23:51.641139173Z" + "vertex_from": "393", + "vertex_to": "936", + "timestamp": "2025-11-27T04:04:15.405432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641755, - "rtt_ms": 1.641755, + "rtt_ns": 1115083, + "rtt_ms": 1.115083, "checkpoint": 0, "vertex_from": "393", - "vertex_to": "709", - "timestamp": "2025-11-27T01:23:51.641236232Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:15.405983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158516, - "rtt_ms": 1.158516, + "rtt_ns": 1290666, + "rtt_ms": 1.290666, "checkpoint": 0, "vertex_from": "393", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.641239682Z" + "timestamp": "2025-11-27T04:04:15.406124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101226, - "rtt_ms": 1.101226, + "rtt_ns": 1702875, + "rtt_ms": 1.702875, "checkpoint": 0, "vertex_from": "393", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.641285222Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:04:15.406142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277396, - "rtt_ms": 1.277396, + "rtt_ns": 1203917, + "rtt_ms": 1.203917, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.641587811Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:15.406374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314796, - "rtt_ms": 1.314796, + "rtt_ns": 1257625, + "rtt_ms": 1.257625, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.641794221Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.406393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427266, - "rtt_ms": 1.427266, + "rtt_ns": 1423625, + "rtt_ms": 1.423625, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.641811891Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.406577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411566, - "rtt_ms": 1.411566, + "rtt_ns": 1515250, + "rtt_ms": 1.51525, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.641869561Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:15.406601-08:00" }, { "operation": "add_edge", - "rtt_ns": 794227, - "rtt_ms": 0.794227, + "rtt_ns": 1594292, + "rtt_ms": 1.594292, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "730", - "timestamp": "2025-11-27T01:23:51.64193432Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:15.406617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363186, - "rtt_ms": 1.363186, + "rtt_ns": 1380375, + "rtt_ms": 1.380375, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.64195808Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:04:15.406814-08:00" }, { "operation": "add_edge", - "rtt_ns": 891277, - "rtt_ms": 0.891277, + "rtt_ns": 1446958, + "rtt_ms": 1.446958, "checkpoint": 0, "vertex_from": "394", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.64197656Z" + "timestamp": "2025-11-27T04:04:15.40686-08:00" }, { "operation": "add_edge", - "rtt_ns": 698558, - "rtt_ms": 0.698558, + "rtt_ns": 1536000, + "rtt_ms": 1.536, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.64198481Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.407661-08:00" }, { "operation": "add_edge", - "rtt_ns": 801878, - "rtt_ms": 0.801878, + "rtt_ns": 1284542, + "rtt_ms": 1.284542, "checkpoint": 0, - "vertex_from": "394", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.64204285Z" + "vertex_from": "395", + "vertex_to": "676", + "timestamp": "2025-11-27T04:04:15.407679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370816, - "rtt_ms": 1.370816, + "rtt_ns": 1707791, + "rtt_ms": 1.707791, "checkpoint": 0, "vertex_from": "394", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.642607798Z" + "timestamp": "2025-11-27T04:04:15.407694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105817, - "rtt_ms": 1.105817, + "rtt_ns": 1335542, + "rtt_ms": 1.335542, "checkpoint": 0, "vertex_from": "395", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:51.642695428Z" + "timestamp": "2025-11-27T04:04:15.40771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355276, - "rtt_ms": 1.355276, + "rtt_ns": 1357666, + "rtt_ms": 1.357666, "checkpoint": 0, "vertex_from": "395", "vertex_to": "416", - "timestamp": "2025-11-27T01:23:51.643290786Z" + "timestamp": "2025-11-27T04:04:15.407975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509986, - "rtt_ms": 1.509986, + "rtt_ns": 1941417, + "rtt_ms": 1.941417, "checkpoint": 0, - "vertex_from": "396", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.643496126Z" + "vertex_from": "394", + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:15.408084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538286, - "rtt_ms": 1.538286, + "rtt_ns": 1875291, + "rtt_ms": 1.875291, "checkpoint": 0, - "vertex_from": "396", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.643498226Z" + "vertex_from": "395", + "vertex_to": "450", + "timestamp": "2025-11-27T04:04:15.408453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524656, - "rtt_ms": 1.524656, + "rtt_ns": 1655125, + "rtt_ms": 1.655125, "checkpoint": 0, "vertex_from": "396", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.643502086Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.40847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482266, - "rtt_ms": 1.482266, + "rtt_ns": 1630625, + "rtt_ms": 1.630625, "checkpoint": 0, "vertex_from": "396", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.643525766Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.408492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731965, - "rtt_ms": 1.731965, + "rtt_ns": 2424375, + "rtt_ms": 2.424375, "checkpoint": 0, "vertex_from": "395", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:51.643528416Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:15.409026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686435, - "rtt_ms": 1.686435, + "rtt_ns": 2260250, + "rtt_ms": 2.26025, "checkpoint": 0, - "vertex_from": "395", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.643557226Z" + "vertex_from": "396", + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:15.409971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761714, - "rtt_ms": 1.761714, + "rtt_ns": 2309458, + "rtt_ms": 2.309458, "checkpoint": 0, - "vertex_from": "395", - "vertex_to": "450", - "timestamp": "2025-11-27T01:23:51.643574845Z" + "vertex_from": "396", + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:15.409989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042037, - "rtt_ms": 1.042037, + "rtt_ns": 2311083, + "rtt_ms": 2.311083, "checkpoint": 0, "vertex_from": "396", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.643652515Z" + "timestamp": "2025-11-27T04:04:15.410006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669055, - "rtt_ms": 1.669055, + "rtt_ns": 2366291, + "rtt_ms": 2.366291, "checkpoint": 0, "vertex_from": "396", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.644365823Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:15.410029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174427, - "rtt_ms": 1.174427, + "rtt_ns": 2062375, + "rtt_ms": 2.062375, "checkpoint": 0, "vertex_from": "396", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.644466363Z" + "timestamp": "2025-11-27T04:04:15.410038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192496, - "rtt_ms": 1.192496, + "rtt_ns": 1971250, + "rtt_ms": 1.97125, "checkpoint": 0, "vertex_from": "397", - "vertex_to": "424", - "timestamp": "2025-11-27T01:23:51.644697042Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:04:15.410057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217276, - "rtt_ms": 1.217276, + "rtt_ns": 1638041, + "rtt_ms": 1.638041, "checkpoint": 0, "vertex_from": "397", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.644716812Z" + "timestamp": "2025-11-27T04:04:15.410092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639016, - "rtt_ms": 1.639016, + "rtt_ns": 1123250, + "rtt_ms": 1.12325, "checkpoint": 0, - "vertex_from": "400", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:51.645216151Z" + "vertex_from": "398", + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:15.410151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749285, - "rtt_ms": 1.749285, + "rtt_ns": 2056709, + "rtt_ms": 2.056709, "checkpoint": 0, "vertex_from": "397", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.645247521Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:04:15.410528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722765, - "rtt_ms": 1.722765, + "rtt_ns": 2208625, + "rtt_ms": 2.208625, "checkpoint": 0, "vertex_from": "397", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.645249661Z" + "timestamp": "2025-11-27T04:04:15.410701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699175, - "rtt_ms": 1.699175, + "rtt_ns": 1231917, + "rtt_ms": 1.231917, "checkpoint": 0, - "vertex_from": "399", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.645257941Z" + "vertex_from": "400", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.411271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745505, - "rtt_ms": 1.745505, + "rtt_ns": 1178542, + "rtt_ms": 1.178542, "checkpoint": 0, - "vertex_from": "398", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.645275551Z" + "vertex_from": "400", + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:15.41133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683435, - "rtt_ms": 1.683435, + "rtt_ns": 1521000, + "rtt_ms": 1.521, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.64533716Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.411614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404506, - "rtt_ms": 1.404506, + "rtt_ns": 1658834, + "rtt_ms": 1.658834, "checkpoint": 0, - "vertex_from": "400", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.646122908Z" + "vertex_from": "399", + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.411631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462156, - "rtt_ms": 1.462156, + "rtt_ns": 943375, + "rtt_ms": 0.943375, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.646161268Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:04:15.411645-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320774, - "rtt_ms": 2.320774, + "rtt_ns": 1670708, + "rtt_ms": 1.670708, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.646687697Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:04:15.41166-08:00" }, { "operation": "add_edge", - "rtt_ns": 2299433, - "rtt_ms": 2.299433, + "rtt_ns": 1153625, + "rtt_ms": 1.153625, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.646766706Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:04:15.411682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587795, - "rtt_ms": 1.587795, + "rtt_ns": 1731375, + "rtt_ms": 1.731375, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.646804956Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.411793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469156, - "rtt_ms": 1.469156, + "rtt_ns": 1796708, + "rtt_ms": 1.796708, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:51.646807196Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.411826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594855, - "rtt_ms": 1.594855, + "rtt_ns": 1826750, + "rtt_ms": 1.82675, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.646853986Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.411833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633615, - "rtt_ms": 1.633615, + "rtt_ns": 1574542, + "rtt_ms": 1.574542, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "716", - "timestamp": "2025-11-27T01:23:51.646885056Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:15.412846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637015, - "rtt_ms": 1.637015, + "rtt_ns": 1570625, + "rtt_ms": 1.570625, "checkpoint": 0, "vertex_from": "400", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.646913316Z" + "timestamp": "2025-11-27T04:04:15.412902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684285, - "rtt_ms": 1.684285, + "rtt_ns": 1463542, + "rtt_ms": 1.463542, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:51.646933196Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:04:15.413081-08:00" }, { "operation": "add_edge", - "rtt_ns": 885518, - "rtt_ms": 0.885518, + "rtt_ns": 1253125, + "rtt_ms": 1.253125, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "962", - "timestamp": "2025-11-27T01:23:51.647654064Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:15.413087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045437, - "rtt_ms": 1.045437, + "rtt_ns": 1455625, + "rtt_ms": 1.455625, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.647733984Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:15.413101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672156, - "rtt_ms": 1.672156, + "rtt_ns": 1475125, + "rtt_ms": 1.475125, "checkpoint": 0, "vertex_from": "400", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.647796894Z" + "timestamp": "2025-11-27T04:04:15.413107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092807, - "rtt_ms": 1.092807, + "rtt_ns": 1583542, + "rtt_ms": 1.583542, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.647978713Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:04:15.413267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057977, - "rtt_ms": 1.057977, + "rtt_ns": 1627125, + "rtt_ms": 1.627125, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.647991983Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.413288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627796, - "rtt_ms": 1.627796, + "rtt_ns": 1484792, + "rtt_ms": 1.484792, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.648434022Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:04:15.413312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364544, - "rtt_ms": 2.364544, + "rtt_ns": 1530084, + "rtt_ms": 1.530084, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.648526782Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:15.413326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625756, - "rtt_ms": 1.625756, + "rtt_ns": 1358209, + "rtt_ms": 1.358209, "checkpoint": 0, "vertex_from": "400", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.648539762Z" + "timestamp": "2025-11-27T04:04:15.414261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779765, - "rtt_ms": 1.779765, + "rtt_ns": 1208250, + "rtt_ms": 1.20825, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:51.648588121Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:15.41429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736055, - "rtt_ms": 1.736055, + "rtt_ns": 1552916, + "rtt_ms": 1.552916, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.648591351Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.41466-08:00" }, { "operation": "add_edge", - "rtt_ns": 780188, - "rtt_ms": 0.780188, + "rtt_ns": 1389583, + "rtt_ms": 1.389583, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.64921542Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:15.414679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597556, - "rtt_ms": 1.597556, + "rtt_ns": 1846208, + "rtt_ms": 1.846208, + "checkpoint": 0, + "vertex_from": "400", + "vertex_to": "561", + "timestamp": "2025-11-27T04:04:15.414695-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1621375, + "rtt_ms": 1.621375, "checkpoint": 0, "vertex_from": "400", "vertex_to": "625", - "timestamp": "2025-11-27T01:23:51.64925341Z" + "timestamp": "2025-11-27T04:04:15.41471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571715, - "rtt_ms": 1.571715, + "rtt_ns": 1456375, + "rtt_ms": 1.456375, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.649369409Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:04:15.414725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664945, - "rtt_ms": 1.664945, + "rtt_ns": 1638709, + "rtt_ms": 1.638709, "checkpoint": 0, "vertex_from": "400", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.649399749Z" + "timestamp": "2025-11-27T04:04:15.414741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463816, - "rtt_ms": 1.463816, + "rtt_ns": 1445958, + "rtt_ms": 1.445958, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "685", - "timestamp": "2025-11-27T01:23:51.649443779Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:15.41476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619576, - "rtt_ms": 1.619576, + "rtt_ns": 1816083, + "rtt_ms": 1.816083, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.649612459Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:04:15.415143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643655, - "rtt_ms": 1.643655, + "rtt_ns": 1994000, + "rtt_ms": 1.994, "checkpoint": 0, - "vertex_from": "400", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.650183927Z" + "vertex_from": "401", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:15.416673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629386, - "rtt_ms": 1.629386, + "rtt_ns": 2129417, + "rtt_ms": 2.129417, "checkpoint": 0, "vertex_from": "401", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.650221867Z" + "timestamp": "2025-11-27T04:04:15.416792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655506, - "rtt_ms": 1.655506, + "rtt_ns": 2113333, + "rtt_ms": 2.113333, "checkpoint": 0, - "vertex_from": "400", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.650244257Z" + "vertex_from": "401", + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.416809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779585, - "rtt_ms": 1.779585, + "rtt_ns": 2113167, + "rtt_ms": 2.113167, "checkpoint": 0, - "vertex_from": "400", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:51.650307277Z" + "vertex_from": "401", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:15.416824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283973, - "rtt_ms": 2.283973, + "rtt_ns": 2220292, + "rtt_ms": 2.220292, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.651499933Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:04:15.416946-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135874, - "rtt_ms": 2.135874, + "rtt_ns": 1821917, + "rtt_ms": 1.821917, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.651506043Z" + "vertex_to": "873", + "timestamp": "2025-11-27T04:04:15.416966-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491503, - "rtt_ms": 2.491503, + "rtt_ns": 2682250, + "rtt_ms": 2.68225, "checkpoint": 0, - "vertex_from": "401", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.651745943Z" + "vertex_from": "400", + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:15.416975-08:00" }, { "operation": "add_edge", - "rtt_ns": 2401783, - "rtt_ms": 2.401783, + "rtt_ns": 2222458, + "rtt_ms": 2.222458, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.651846482Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:04:15.416983-08:00" }, { "operation": "add_edge", - "rtt_ns": 711888, - "rtt_ms": 0.711888, + "rtt_ns": 2724333, + "rtt_ms": 2.724333, "checkpoint": 0, - "vertex_from": "402", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.652219711Z" + "vertex_from": "400", + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:15.416987-08:00" }, { "operation": "add_edge", - "rtt_ns": 769138, - "rtt_ms": 0.769138, + "rtt_ns": 2250000, + "rtt_ms": 2.25, "checkpoint": 0, - "vertex_from": "402", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.652270381Z" + "vertex_from": "401", + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:15.416992-08:00" }, { "operation": "add_edge", - "rtt_ns": 555398, - "rtt_ms": 0.555398, + "rtt_ns": 1502959, + "rtt_ms": 1.502959, "checkpoint": 0, "vertex_from": "402", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.652301891Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:04:15.418479-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173894, - "rtt_ms": 2.173894, + "rtt_ns": 1749917, + "rtt_ms": 1.749917, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "873", - "timestamp": "2025-11-27T01:23:51.652358961Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:15.418543-08:00" }, { "operation": "add_edge", - "rtt_ns": 614488, - "rtt_ms": 0.614488, + "rtt_ns": 1611792, + "rtt_ms": 1.611792, "checkpoint": 0, "vertex_from": "402", - "vertex_to": "793", - "timestamp": "2025-11-27T01:23:51.65246181Z" + "vertex_to": "483", + "timestamp": "2025-11-27T04:04:15.418598-08:00" }, { "operation": "add_edge", - "rtt_ns": 3695530, - "rtt_ms": 3.69553, + "rtt_ns": 1869750, + "rtt_ms": 1.86975, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.653096439Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:04:15.41868-08:00" }, { "operation": "add_edge", - "rtt_ns": 2824541, - "rtt_ms": 2.824541, + "rtt_ns": 2054250, + "rtt_ms": 2.05425, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "844", - "timestamp": "2025-11-27T01:23:51.653132958Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:15.418729-08:00" }, { "operation": "add_edge", - "rtt_ns": 830447, - "rtt_ms": 0.830447, + "rtt_ns": 1957000, + "rtt_ms": 1.957, "checkpoint": 0, - "vertex_from": "403", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:51.653133178Z" + "vertex_from": "402", + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.418782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028687, - "rtt_ms": 1.028687, + "rtt_ns": 1828375, + "rtt_ms": 1.828375, "checkpoint": 0, "vertex_from": "402", - "vertex_to": "483", - "timestamp": "2025-11-27T01:23:51.653249278Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.418796-08:00" }, { "operation": "add_edge", - "rtt_ns": 3030181, - "rtt_ms": 3.030181, + "rtt_ns": 1891458, + "rtt_ms": 1.891458, "checkpoint": 0, - "vertex_from": "401", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.653275308Z" + "vertex_from": "402", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.418839-08:00" }, { "operation": "add_edge", - "rtt_ns": 3055261, - "rtt_ms": 3.055261, + "rtt_ns": 2070584, + "rtt_ms": 2.070584, "checkpoint": 0, - "vertex_from": "401", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.653277728Z" + "vertex_from": "402", + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:15.419058-08:00" }, { "operation": "add_edge", - "rtt_ns": 3669229, - "rtt_ms": 3.669229, + "rtt_ns": 2075666, + "rtt_ms": 2.075666, "checkpoint": 0, - "vertex_from": "401", - "vertex_to": "457", - "timestamp": "2025-11-27T01:23:51.653282658Z" + "vertex_from": "403", + "vertex_to": "789", + "timestamp": "2025-11-27T04:04:15.419068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118037, - "rtt_ms": 1.118037, + "rtt_ns": 5723250, + "rtt_ms": 5.72325, "checkpoint": 0, - "vertex_from": "402", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.653388848Z" + "vertex_from": "403", + "vertex_to": "456", + "timestamp": "2025-11-27T04:04:15.424205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614565, - "rtt_ms": 1.614565, + "rtt_ns": 5438583, + "rtt_ms": 5.438583, "checkpoint": 0, - "vertex_from": "403", - "vertex_to": "456", - "timestamp": "2025-11-27T01:23:51.653974236Z" + "vertex_from": "405", + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.424236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601476, - "rtt_ms": 1.601476, + "rtt_ns": 5651791, + "rtt_ms": 5.651791, "checkpoint": 0, "vertex_from": "404", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:51.654064076Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:15.424333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241987, - "rtt_ms": 1.241987, + "rtt_ns": 5835916, + "rtt_ms": 5.835916, "checkpoint": 0, "vertex_from": "404", "vertex_to": "542", - "timestamp": "2025-11-27T01:23:51.654340145Z" + "timestamp": "2025-11-27T04:04:15.424436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278326, - "rtt_ms": 1.278326, + "rtt_ns": 5905458, + "rtt_ms": 5.905458, "checkpoint": 0, - "vertex_from": "406", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.654562354Z" + "vertex_from": "404", + "vertex_to": "707", + "timestamp": "2025-11-27T04:04:15.424451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213666, - "rtt_ms": 1.213666, + "rtt_ns": 5781792, + "rtt_ms": 5.781792, "checkpoint": 0, - "vertex_from": "406", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.654603234Z" + "vertex_from": "404", + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:15.424565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377046, - "rtt_ms": 1.377046, + "rtt_ns": 512953834, + "rtt_ms": 512.953834, "checkpoint": 0, - "vertex_from": "404", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.654626844Z" + "vertex_from": "405", + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:15.931794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494686, - "rtt_ms": 1.494686, + "rtt_ns": 515110500, + "rtt_ms": 515.1105, "checkpoint": 0, "vertex_from": "404", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.654628174Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.933839-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014424, - "rtt_ms": 2.014424, + "rtt_ns": 514844250, + "rtt_ms": 514.84425, "checkpoint": 0, - "vertex_from": "405", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.655292992Z" + "vertex_from": "406", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.933912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252916, - "rtt_ms": 1.252916, + "rtt_ns": 514907417, + "rtt_ms": 514.907417, "checkpoint": 0, - "vertex_from": "408", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:51.655317712Z" + "vertex_from": "406", + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:15.933967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070027, - "rtt_ms": 1.070027, + "rtt_ns": 512841541, + "rtt_ms": 512.841541, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "597", - "timestamp": "2025-11-27T01:23:51.655411152Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.937047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446526, - "rtt_ms": 1.446526, + "rtt_ns": 512503416, + "rtt_ms": 512.503416, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.655421502Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:04:15.937068-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173143, - "rtt_ms": 2.173143, + "rtt_ns": 3726375, + "rtt_ms": 3.726375, "checkpoint": 0, - "vertex_from": "405", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.655449521Z" + "vertex_from": "408", + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:15.937641-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319913, - "rtt_ms": 2.319913, + "rtt_ns": 513476667, + "rtt_ms": 513.476667, "checkpoint": 0, - "vertex_from": "404", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.655453771Z" + "vertex_from": "408", + "vertex_to": "452", + "timestamp": "2025-11-27T04:04:15.937712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663185, - "rtt_ms": 1.663185, + "rtt_ns": 5918500, + "rtt_ms": 5.9185, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:51.656267379Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:15.937719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671575, - "rtt_ms": 1.671575, + "rtt_ns": 513286042, + "rtt_ms": 513.286042, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.656300319Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.937721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924955, - "rtt_ms": 1.924955, + "rtt_ns": 513274458, + "rtt_ms": 513.274458, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.656487959Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:04:15.937724-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011964, - "rtt_ms": 2.011964, + "rtt_ns": 3800708, + "rtt_ms": 3.800708, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:51.656639618Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:04:15.93777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814405, - "rtt_ms": 1.814405, + "rtt_ns": 513448708, + "rtt_ms": 513.448708, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.657108297Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:04:15.937781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914734, - "rtt_ms": 1.914734, + "rtt_ns": 3938541, + "rtt_ms": 3.938541, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.657234226Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:15.937781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027375, - "rtt_ms": 2.027375, + "rtt_ns": 3336042, + "rtt_ms": 3.336042, "checkpoint": 0, "vertex_from": "408", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.657479186Z" + "timestamp": "2025-11-27T04:04:15.940407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089624, - "rtt_ms": 2.089624, + "rtt_ns": 3486125, + "rtt_ms": 3.486125, "checkpoint": 0, "vertex_from": "408", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.657511666Z" + "timestamp": "2025-11-27T04:04:15.940537-08:00" }, { "operation": "add_edge", - "rtt_ns": 2216434, - "rtt_ms": 2.216434, + "rtt_ns": 3038334, + "rtt_ms": 3.038334, "checkpoint": 0, - "vertex_from": "408", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.657670835Z" + "vertex_from": "409", + "vertex_to": "850", + "timestamp": "2025-11-27T04:04:15.940761-08:00" }, { "operation": "add_edge", - "rtt_ns": 750068, - "rtt_ms": 0.750068, + "rtt_ns": 3272000, + "rtt_ms": 3.272, "checkpoint": 0, - "vertex_from": "410", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.657859605Z" + "vertex_from": "408", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.940917-08:00" }, { "operation": "add_edge", - "rtt_ns": 730508, - "rtt_ms": 0.730508, + "rtt_ns": 3176458, + "rtt_ms": 3.176458, "checkpoint": 0, "vertex_from": "410", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.657965704Z" + "timestamp": "2025-11-27T04:04:15.940959-08:00" }, { "operation": "add_edge", - "rtt_ns": 701008, - "rtt_ms": 0.701008, + "rtt_ns": 3186083, + "rtt_ms": 3.186083, "checkpoint": 0, "vertex_from": "410", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.658181824Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.940959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073554, - "rtt_ms": 2.073554, + "rtt_ns": 3731333, + "rtt_ms": 3.731333, "checkpoint": 0, "vertex_from": "409", - "vertex_to": "850", - "timestamp": "2025-11-27T01:23:51.658376113Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.941446-08:00" }, { "operation": "add_edge", - "rtt_ns": 2976021, - "rtt_ms": 2.976021, + "rtt_ns": 3757542, + "rtt_ms": 3.757542, "checkpoint": 0, - "vertex_from": "408", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:51.658387983Z" + "vertex_from": "409", + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.941484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165074, - "rtt_ms": 2.165074, + "rtt_ns": 3953125, + "rtt_ms": 3.953125, "checkpoint": 0, - "vertex_from": "409", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.658434023Z" + "vertex_from": "410", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.941737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998864, - "rtt_ms": 1.998864, + "rtt_ns": 4065250, + "rtt_ms": 4.06525, "checkpoint": 0, "vertex_from": "409", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.658487913Z" + "timestamp": "2025-11-27T04:04:15.941788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870945, - "rtt_ms": 1.870945, + "rtt_ns": 3563375, + "rtt_ms": 3.563375, "checkpoint": 0, - "vertex_from": "409", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.658512043Z" + "vertex_from": "411", + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:15.943976-08:00" }, { "operation": "add_edge", - "rtt_ns": 687138, - "rtt_ms": 0.687138, + "rtt_ns": 3472000, + "rtt_ms": 3.472, "checkpoint": 0, - "vertex_from": "412", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.658548933Z" + "vertex_from": "411", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.94401-08:00" }, { "operation": "add_edge", - "rtt_ns": 638039, - "rtt_ms": 0.638039, + "rtt_ns": 3378625, + "rtt_ms": 3.378625, "checkpoint": 0, - "vertex_from": "412", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.658604723Z" + "vertex_from": "413", + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:15.944345-08:00" }, { "operation": "add_edge", - "rtt_ns": 628928, - "rtt_ms": 0.628928, + "rtt_ns": 3451792, + "rtt_ms": 3.451792, "checkpoint": 0, "vertex_from": "413", "vertex_to": "753", - "timestamp": "2025-11-27T01:23:51.658811762Z" + "timestamp": "2025-11-27T04:04:15.944416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164347, - "rtt_ms": 1.164347, + "rtt_ns": 3046209, + "rtt_ms": 3.046209, "checkpoint": 0, - "vertex_from": "411", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.658836292Z" + "vertex_from": "414", + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:15.944494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342566, - "rtt_ms": 1.342566, + "rtt_ns": 3618917, + "rtt_ms": 3.618917, "checkpoint": 0, - "vertex_from": "411", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.658855492Z" + "vertex_from": "412", + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:15.944538-08:00" }, { "operation": "add_edge", - "rtt_ns": 794058, - "rtt_ms": 0.794058, + "rtt_ns": 3226583, + "rtt_ms": 3.226583, "checkpoint": 0, "vertex_from": "414", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.659182981Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:15.944712-08:00" }, { "operation": "add_edge", - "rtt_ns": 782548, - "rtt_ms": 0.782548, + "rtt_ns": 3988125, + "rtt_ms": 3.988125, "checkpoint": 0, - "vertex_from": "414", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.659217611Z" + "vertex_from": "412", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:15.944751-08:00" }, { "operation": "add_edge", - "rtt_ns": 874548, - "rtt_ms": 0.874548, + "rtt_ns": 3074041, + "rtt_ms": 3.074041, "checkpoint": 0, - "vertex_from": "413", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.659252661Z" + "vertex_from": "416", + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:15.944865-08:00" }, { "operation": "add_edge", - "rtt_ns": 843888, - "rtt_ms": 0.843888, + "rtt_ns": 3179875, + "rtt_ms": 3.179875, "checkpoint": 0, "vertex_from": "416", "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.659332961Z" + "timestamp": "2025-11-27T04:04:15.944919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336166, - "rtt_ms": 1.336166, + "rtt_ns": 2938041, + "rtt_ms": 2.938041, "checkpoint": 0, "vertex_from": "416", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.659885859Z" + "timestamp": "2025-11-27T04:04:15.946916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555435, - "rtt_ms": 1.555435, + "rtt_ns": 2399250, + "rtt_ms": 2.39925, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.660068268Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:04:15.946939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232126, - "rtt_ms": 1.232126, + "rtt_ns": 2987750, + "rtt_ms": 2.98775, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.660069548Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:15.947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469615, - "rtt_ms": 1.469615, + "rtt_ns": 2617583, + "rtt_ms": 2.617583, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.660075458Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:15.947035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273596, - "rtt_ms": 1.273596, + "rtt_ns": 2869541, + "rtt_ms": 2.869541, "checkpoint": 0, "vertex_from": "416", "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.660130128Z" + "timestamp": "2025-11-27T04:04:15.947366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354536, - "rtt_ms": 1.354536, + "rtt_ns": 2557792, + "rtt_ms": 2.557792, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:51.660167298Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.947479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833725, - "rtt_ms": 1.833725, + "rtt_ns": 3255167, + "rtt_ms": 3.255167, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.661017826Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:04:15.947604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835864, - "rtt_ms": 1.835864, + "rtt_ns": 2776958, + "rtt_ms": 2.776958, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "854", - "timestamp": "2025-11-27T01:23:51.661055395Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:15.947648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019917, - "rtt_ms": 1.019917, + "rtt_ns": 3040958, + "rtt_ms": 3.040958, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.661090465Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:15.947795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915354, - "rtt_ms": 1.915354, + "rtt_ns": 3109959, + "rtt_ms": 3.109959, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.661168635Z" + "vertex_to": "854", + "timestamp": "2025-11-27T04:04:15.947824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113917, - "rtt_ms": 1.113917, + "rtt_ns": 3026542, + "rtt_ms": 3.026542, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "418", - "timestamp": "2025-11-27T01:23:51.661183145Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.949968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302576, - "rtt_ms": 1.302576, + "rtt_ns": 2994292, + "rtt_ms": 2.994292, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.661189305Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:04:15.950031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156587, - "rtt_ms": 1.156587, + "rtt_ns": 3269625, + "rtt_ms": 3.269625, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "718", - "timestamp": "2025-11-27T01:23:51.661233125Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:04:15.950189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902894, - "rtt_ms": 1.902894, + "rtt_ns": 3330334, + "rtt_ms": 3.330334, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.661237035Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:04:15.950332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778195, - "rtt_ms": 1.778195, + "rtt_ns": 3094708, + "rtt_ms": 3.094708, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.661909433Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:04:15.950462-08:00" }, { "operation": "add_edge", - "rtt_ns": 930307, - "rtt_ms": 0.930307, + "rtt_ns": 3015083, + "rtt_ms": 3.015083, "checkpoint": 0, "vertex_from": "416", "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.661948943Z" + "timestamp": "2025-11-27T04:04:15.950496-08:00" }, { "operation": "add_edge", - "rtt_ns": 996987, - "rtt_ms": 0.996987, + "rtt_ns": 2797625, + "rtt_ms": 2.797625, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:51.662054142Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.950623-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019334, - "rtt_ms": 2.019334, + "rtt_ns": 3028542, + "rtt_ms": 3.028542, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "464", - "timestamp": "2025-11-27T01:23:51.662188752Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.95068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098587, - "rtt_ms": 1.098587, + "rtt_ns": 3113083, + "rtt_ms": 3.113083, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.662189862Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:04:15.950718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128557, - "rtt_ms": 1.128557, + "rtt_ns": 3058500, + "rtt_ms": 3.0585, "checkpoint": 0, "vertex_from": "416", "vertex_to": "523", - "timestamp": "2025-11-27T01:23:51.662298062Z" + "timestamp": "2025-11-27T04:04:15.950855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508575, - "rtt_ms": 1.508575, + "rtt_ns": 2354292, + "rtt_ms": 2.354292, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.66274665Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.952387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629505, - "rtt_ms": 1.629505, + "rtt_ns": 2536583, + "rtt_ms": 2.536583, "checkpoint": 0, "vertex_from": "416", "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.66281999Z" + "timestamp": "2025-11-27T04:04:15.952508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736305, - "rtt_ms": 1.736305, + "rtt_ns": 2676417, + "rtt_ms": 2.676417, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.66292023Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:04:15.952867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793205, - "rtt_ms": 1.793205, + "rtt_ns": 2560959, + "rtt_ms": 2.560959, "checkpoint": 0, - "vertex_from": "416", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.66302744Z" + "vertex_from": "417", + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:15.952896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920834, - "rtt_ms": 1.920834, + "rtt_ns": 2480459, + "rtt_ms": 2.480459, "checkpoint": 0, "vertex_from": "417", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.663870517Z" + "timestamp": "2025-11-27T04:04:15.952945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679435, - "rtt_ms": 1.679435, + "rtt_ns": 2468750, + "rtt_ms": 2.46875, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "749", - "timestamp": "2025-11-27T01:23:51.663871067Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:15.953095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056747, - "rtt_ms": 1.056747, + "rtt_ns": 2634250, + "rtt_ms": 2.63425, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.663878347Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:04:15.953131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834485, - "rtt_ms": 1.834485, + "rtt_ns": 2312000, + "rtt_ms": 2.312, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:51.663899227Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.953169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710505, - "rtt_ms": 1.710505, + "rtt_ns": 2571167, + "rtt_ms": 2.571167, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.663900587Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:04:15.953291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995094, - "rtt_ms": 1.995094, + "rtt_ns": 2682375, + "rtt_ms": 2.682375, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.663905777Z" + "vertex_to": "749", + "timestamp": "2025-11-27T04:04:15.953364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845084, - "rtt_ms": 1.845084, + "rtt_ns": 2757708, + "rtt_ms": 2.757708, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:51.664144036Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.955267-08:00" }, { "operation": "add_edge", - "rtt_ns": 2264364, - "rtt_ms": 2.264364, + "rtt_ns": 2903334, + "rtt_ms": 2.903334, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.665011964Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:15.955294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186454, - "rtt_ms": 2.186454, + "rtt_ns": 2436083, + "rtt_ms": 2.436083, "checkpoint": 0, - "vertex_from": "417", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.665107614Z" + "vertex_from": "418", + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:15.955608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108224, - "rtt_ms": 2.108224, + "rtt_ns": 2339750, + "rtt_ms": 2.33975, "checkpoint": 0, - "vertex_from": "417", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.665138454Z" + "vertex_from": "419", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.955632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279887, - "rtt_ms": 1.279887, + "rtt_ns": 2689333, + "rtt_ms": 2.689333, "checkpoint": 0, "vertex_from": "418", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.665152384Z" + "timestamp": "2025-11-27T04:04:15.955635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266156, - "rtt_ms": 1.266156, + "rtt_ns": 2364875, + "rtt_ms": 2.364875, "checkpoint": 0, - "vertex_from": "418", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.665168003Z" + "vertex_from": "419", + "vertex_to": "708", + "timestamp": "2025-11-27T04:04:15.95573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393616, - "rtt_ms": 1.393616, + "rtt_ns": 2888666, + "rtt_ms": 2.888666, "checkpoint": 0, - "vertex_from": "418", - "vertex_to": "841", - "timestamp": "2025-11-27T01:23:51.665276013Z" + "vertex_from": "417", + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:15.955757-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2892958, + "rtt_ms": 2.892958, + "checkpoint": 0, + "vertex_from": "417", + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:15.95579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398926, - "rtt_ms": 1.398926, + "rtt_ns": 2894541, + "rtt_ms": 2.894541, "checkpoint": 0, "vertex_from": "418", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.665299443Z" + "timestamp": "2025-11-27T04:04:15.956027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938125, - "rtt_ms": 1.938125, + "rtt_ns": 3027541, + "rtt_ms": 3.027541, "checkpoint": 0, - "vertex_from": "419", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.665845912Z" + "vertex_from": "418", + "vertex_to": "841", + "timestamp": "2025-11-27T04:04:15.956125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768625, - "rtt_ms": 1.768625, + "rtt_ns": 2373708, + "rtt_ms": 2.373708, "checkpoint": 0, - "vertex_from": "419", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.665914251Z" + "vertex_from": "420", + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:15.957983-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2061394, - "rtt_ms": 2.061394, + "operation": "add_vertex", + "rtt_ns": 2741875, + "rtt_ms": 2.741875, "checkpoint": 0, - "vertex_from": "417", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.665933251Z" + "vertex_from": "734", + "timestamp": "2025-11-27T04:04:15.958038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534636, - "rtt_ms": 1.534636, + "rtt_ns": 2779250, + "rtt_ms": 2.77925, "checkpoint": 0, "vertex_from": "419", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:51.66654817Z" + "timestamp": "2025-11-27T04:04:15.958048-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1506925, - "rtt_ms": 1.506925, + "operation": "add_edge", + "rtt_ns": 2380750, + "rtt_ms": 2.38075, "checkpoint": 0, - "vertex_from": "734", - "timestamp": "2025-11-27T01:23:51.666617029Z" + "vertex_from": "420", + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:15.958172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513445, - "rtt_ms": 1.513445, + "rtt_ns": 2567458, + "rtt_ms": 2.567458, "checkpoint": 0, "vertex_from": "420", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.666667059Z" + "timestamp": "2025-11-27T04:04:15.958201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535566, - "rtt_ms": 1.535566, + "rtt_ns": 2657750, + "rtt_ms": 2.65775, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:51.666704919Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:04:15.958389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639195, - "rtt_ms": 1.639195, + "rtt_ns": 2727833, + "rtt_ms": 2.727833, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.666780059Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:15.958486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489806, - "rtt_ms": 1.489806, + "rtt_ns": 2896542, + "rtt_ms": 2.896542, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.666790229Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:04:15.958533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561326, - "rtt_ms": 1.561326, + "rtt_ns": 2544917, + "rtt_ms": 2.544917, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:51.666838389Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.958575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059567, - "rtt_ms": 1.059567, + "rtt_ns": 2564458, + "rtt_ms": 2.564458, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.666906419Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.958691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473996, - "rtt_ms": 1.473996, + "rtt_ns": 2361542, + "rtt_ms": 2.361542, "checkpoint": 0, - "vertex_from": "420", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.667389517Z" + "vertex_from": "421", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:15.960564-08:00" }, { "operation": "add_edge", - "rtt_ns": 736028, - "rtt_ms": 0.736028, + "rtt_ns": 2550166, + "rtt_ms": 2.550166, "checkpoint": 0, - "vertex_from": "421", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.667405317Z" + "vertex_from": "419", + "vertex_to": "734", + "timestamp": "2025-11-27T04:04:15.960589-08:00" }, { "operation": "add_edge", - "rtt_ns": 954537, - "rtt_ms": 0.954537, + "rtt_ns": 2626167, + "rtt_ms": 2.626167, "checkpoint": 0, "vertex_from": "420", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.667503937Z" + "timestamp": "2025-11-27T04:04:15.960611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631606, - "rtt_ms": 1.631606, + "rtt_ns": 2450333, + "rtt_ms": 2.450333, "checkpoint": 0, - "vertex_from": "420", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.667565737Z" + "vertex_from": "422", + "vertex_to": "792", + "timestamp": "2025-11-27T04:04:15.961027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223937, - "rtt_ms": 1.223937, + "rtt_ns": 2689959, + "rtt_ms": 2.689959, "checkpoint": 0, - "vertex_from": "419", - "vertex_to": "734", - "timestamp": "2025-11-27T01:23:51.667841356Z" + "vertex_from": "421", + "vertex_to": "579", + "timestamp": "2025-11-27T04:04:15.96108-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1645436, - "rtt_ms": 1.645436, + "rtt_ns": 2921750, + "rtt_ms": 2.92175, "checkpoint": 0, "vertex_from": "502", - "timestamp": "2025-11-27T01:23:51.668352245Z" + "timestamp": "2025-11-27T04:04:15.961098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578125, - "rtt_ms": 1.578125, + "rtt_ns": 3086500, + "rtt_ms": 3.0865, "checkpoint": 0, "vertex_from": "421", - "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.668369074Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:15.961137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594865, - "rtt_ms": 1.594865, + "rtt_ns": 2622000, + "rtt_ms": 2.622, "checkpoint": 0, "vertex_from": "421", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.668375974Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.961156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558335, - "rtt_ms": 1.558335, + "rtt_ns": 2795000, + "rtt_ms": 2.795, "checkpoint": 0, "vertex_from": "421", "vertex_to": "448", - "timestamp": "2025-11-27T01:23:51.668397904Z" + "timestamp": "2025-11-27T04:04:15.961284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160067, - "rtt_ms": 1.160067, + "rtt_ns": 2638750, + "rtt_ms": 2.63875, "checkpoint": 0, "vertex_from": "422", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.668566334Z" + "timestamp": "2025-11-27T04:04:15.96133-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2353959, + "rtt_ms": 2.353959, + "checkpoint": 0, + "vertex_from": "424", + "vertex_to": "480", + "timestamp": "2025-11-27T04:04:15.962966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157687, - "rtt_ms": 1.157687, + "rtt_ns": 2438125, + "rtt_ms": 2.438125, "checkpoint": 0, "vertex_from": "422", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.668724284Z" + "timestamp": "2025-11-27T04:04:15.963028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843954, - "rtt_ms": 1.843954, + "rtt_ns": 2491084, + "rtt_ms": 2.491084, "checkpoint": 0, - "vertex_from": "421", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.668751953Z" + "vertex_from": "422", + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.963056-08:00" }, { "operation": "add_edge", - "rtt_ns": 904098, - "rtt_ms": 0.904098, + "rtt_ns": 2191083, + "rtt_ms": 2.191083, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.669302982Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:04:15.963273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485476, - "rtt_ms": 1.485476, + "rtt_ns": 2139333, + "rtt_ms": 2.139333, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "480", - "timestamp": "2025-11-27T01:23:51.669328452Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.963298-08:00" }, { "operation": "add_edge", - "rtt_ns": 977007, - "rtt_ms": 0.977007, + "rtt_ns": 2243917, + "rtt_ms": 2.243917, "checkpoint": 0, "vertex_from": "421", "vertex_to": "502", - "timestamp": "2025-11-27T01:23:51.669329532Z" + "timestamp": "2025-11-27T04:04:15.963342-08:00" }, { "operation": "add_edge", - "rtt_ns": 775758, - "rtt_ms": 0.775758, + "rtt_ns": 2321542, + "rtt_ms": 2.321542, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.669342742Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:15.963607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858665, - "rtt_ms": 1.858665, + "rtt_ns": 2303458, + "rtt_ms": 2.303458, "checkpoint": 0, - "vertex_from": "422", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.669364072Z" + "vertex_from": "424", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.963635-08:00" }, { "operation": "add_edge", - "rtt_ns": 990998, - "rtt_ms": 0.990998, + "rtt_ns": 2519792, + "rtt_ms": 2.519792, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:51.669367922Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:15.963658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073057, - "rtt_ms": 1.073057, + "rtt_ns": 2776042, + "rtt_ms": 2.776042, "checkpoint": 0, "vertex_from": "424", "vertex_to": "604", - "timestamp": "2025-11-27T01:23:51.669443801Z" + "timestamp": "2025-11-27T04:04:15.963807-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114574, - "rtt_ms": 2.114574, - "checkpoint": 0, - "vertex_from": "422", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.669506281Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1356476, - "rtt_ms": 1.356476, + "rtt_ns": 2179084, + "rtt_ms": 2.179084, "checkpoint": 0, "vertex_from": "425", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.670687888Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.965209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431646, - "rtt_ms": 1.431646, + "rtt_ns": 2198000, + "rtt_ms": 2.198, "checkpoint": 0, "vertex_from": "425", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.670762228Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:15.965255-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180283, - "rtt_ms": 2.180283, + "rtt_ns": 2502958, + "rtt_ms": 2.502958, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.670905607Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:04:15.965471-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200474, - "rtt_ms": 2.200474, + "rtt_ns": 2248292, + "rtt_ms": 2.248292, "checkpoint": 0, - "vertex_from": "424", + "vertex_from": "426", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.670953057Z" + "timestamp": "2025-11-27T04:04:15.965547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680685, - "rtt_ms": 1.680685, + "rtt_ns": 2334958, + "rtt_ms": 2.334958, "checkpoint": 0, - "vertex_from": "424", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.670984857Z" + "vertex_from": "426", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.965611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668085, - "rtt_ms": 1.668085, + "rtt_ns": 2065292, + "rtt_ms": 2.065292, "checkpoint": 0, - "vertex_from": "426", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.671033017Z" + "vertex_from": "428", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.965874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705885, - "rtt_ms": 1.705885, + "rtt_ns": 2322292, + "rtt_ms": 2.322292, "checkpoint": 0, - "vertex_from": "426", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.671075037Z" + "vertex_from": "427", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.965982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656636, - "rtt_ms": 1.656636, + "rtt_ns": 2638459, + "rtt_ms": 2.638459, "checkpoint": 0, "vertex_from": "426", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.671105577Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:15.965992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624606, - "rtt_ms": 1.624606, + "rtt_ns": 2665833, + "rtt_ms": 2.665833, "checkpoint": 0, "vertex_from": "427", "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.671133907Z" + "timestamp": "2025-11-27T04:04:15.966302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866105, - "rtt_ms": 1.866105, + "rtt_ns": 2737625, + "rtt_ms": 2.737625, "checkpoint": 0, "vertex_from": "426", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.671210587Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:15.966346-08:00" }, { "operation": "add_edge", - "rtt_ns": 610268, - "rtt_ms": 0.610268, + "rtt_ns": 2163750, + "rtt_ms": 2.16375, "checkpoint": 0, - "vertex_from": "427", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.671301106Z" + "vertex_from": "429", + "vertex_to": "540", + "timestamp": "2025-11-27T04:04:15.967714-08:00" }, { "operation": "add_edge", - "rtt_ns": 586358, - "rtt_ms": 0.586358, + "rtt_ns": 2514625, + "rtt_ms": 2.514625, "checkpoint": 0, "vertex_from": "428", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.671350406Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:15.967772-08:00" }, { "operation": "add_edge", - "rtt_ns": 758538, - "rtt_ms": 0.758538, + "rtt_ns": 2709084, + "rtt_ms": 2.709084, "checkpoint": 0, "vertex_from": "428", "vertex_to": "614", - "timestamp": "2025-11-27T01:23:51.671666625Z" - }, - { - "operation": "add_edge", - "rtt_ns": 731868, - "rtt_ms": 0.731868, - "checkpoint": 0, - "vertex_from": "428", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.671718065Z" + "timestamp": "2025-11-27T04:04:15.967921-08:00" }, { "operation": "add_edge", - "rtt_ns": 700868, - "rtt_ms": 0.700868, + "rtt_ns": 2131541, + "rtt_ms": 2.131541, "checkpoint": 0, - "vertex_from": "429", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:51.671736305Z" + "vertex_from": "432", + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.968126-08:00" }, { "operation": "add_edge", - "rtt_ns": 660038, - "rtt_ms": 0.660038, + "rtt_ns": 2249041, + "rtt_ms": 2.249041, "checkpoint": 0, "vertex_from": "432", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.671794795Z" + "timestamp": "2025-11-27T04:04:15.968232-08:00" }, { "operation": "add_edge", - "rtt_ns": 880098, - "rtt_ms": 0.880098, + "rtt_ns": 2782458, + "rtt_ms": 2.782458, "checkpoint": 0, "vertex_from": "428", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.671834675Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.968255-08:00" }, { "operation": "add_edge", - "rtt_ns": 792888, - "rtt_ms": 0.792888, + "rtt_ns": 2379166, + "rtt_ms": 2.379166, "checkpoint": 0, "vertex_from": "430", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.671870215Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:04:15.968256-08:00" }, { "operation": "add_edge", - "rtt_ns": 661198, - "rtt_ms": 0.661198, + "rtt_ns": 2012000, + "rtt_ms": 2.012, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.671872895Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:04:15.968315-08:00" }, { "operation": "add_edge", - "rtt_ns": 773478, - "rtt_ms": 0.773478, + "rtt_ns": 2885292, + "rtt_ms": 2.885292, "checkpoint": 0, "vertex_from": "430", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:51.671880185Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:15.968498-08:00" }, { "operation": "add_edge", - "rtt_ns": 578288, - "rtt_ms": 0.578288, + "rtt_ns": 2234958, + "rtt_ms": 2.234958, "checkpoint": 0, "vertex_from": "432", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.671930384Z" + "timestamp": "2025-11-27T04:04:15.968583-08:00" }, { "operation": "add_edge", - "rtt_ns": 712728, - "rtt_ms": 0.712728, + "rtt_ns": 2234083, + "rtt_ms": 2.234083, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "454", - "timestamp": "2025-11-27T01:23:51.672014804Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:15.970007-08:00" }, { "operation": "add_edge", - "rtt_ns": 813438, - "rtt_ms": 0.813438, + "rtt_ns": 1902459, + "rtt_ms": 1.902459, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.672532623Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.970031-08:00" }, { "operation": "add_edge", - "rtt_ns": 822358, - "rtt_ms": 0.822358, + "rtt_ns": 2125750, + "rtt_ms": 2.12575, "checkpoint": 0, "vertex_from": "432", "vertex_to": "825", - "timestamp": "2025-11-27T01:23:51.672560233Z" + "timestamp": "2025-11-27T04:04:15.970049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048227, - "rtt_ms": 1.048227, + "rtt_ns": 2402667, + "rtt_ms": 2.402667, "checkpoint": 0, "vertex_from": "432", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.672717982Z" + "timestamp": "2025-11-27T04:04:15.970118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553875, - "rtt_ms": 1.553875, + "rtt_ns": 2062334, + "rtt_ms": 2.062334, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.67335048Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:15.970297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534175, - "rtt_ms": 1.534175, + "rtt_ns": 2018167, + "rtt_ms": 2.018167, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.67337032Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.970335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612445, - "rtt_ms": 1.612445, + "rtt_ns": 2150083, + "rtt_ms": 2.150083, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.67348663Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:15.970407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499636, - "rtt_ms": 1.499636, + "rtt_ns": 1838333, + "rtt_ms": 1.838333, "checkpoint": 0, "vertex_from": "433", "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.67351615Z" + "timestamp": "2025-11-27T04:04:15.970422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637426, - "rtt_ms": 1.637426, + "rtt_ns": 1961125, + "rtt_ms": 1.961125, "checkpoint": 0, "vertex_from": "433", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.67356992Z" + "timestamp": "2025-11-27T04:04:15.97046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713644, - "rtt_ms": 1.713644, + "rtt_ns": 2219541, + "rtt_ms": 2.219541, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.673596749Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:15.970476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063336, - "rtt_ms": 1.063336, + "rtt_ns": 2025625, + "rtt_ms": 2.025625, "checkpoint": 0, "vertex_from": "433", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.673597309Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:15.972058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796314, - "rtt_ms": 1.796314, + "rtt_ns": 2176542, + "rtt_ms": 2.176542, "checkpoint": 0, - "vertex_from": "432", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.673667829Z" + "vertex_from": "433", + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.972185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748844, - "rtt_ms": 1.748844, + "rtt_ns": 1765583, + "rtt_ms": 1.765583, "checkpoint": 0, - "vertex_from": "433", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.674310517Z" + "vertex_from": "438", + "vertex_to": "706", + "timestamp": "2025-11-27T04:04:15.972243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001447, - "rtt_ms": 1.001447, + "rtt_ns": 2258000, + "rtt_ms": 2.258, "checkpoint": 0, "vertex_from": "434", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.674373777Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:04:15.972378-08:00" }, { "operation": "add_edge", - "rtt_ns": 967407, - "rtt_ms": 0.967407, + "rtt_ns": 1939333, + "rtt_ms": 1.939333, "checkpoint": 0, - "vertex_from": "434", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:51.674455097Z" + "vertex_from": "438", + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.9724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153997, - "rtt_ms": 1.153997, + "rtt_ns": 2368500, + "rtt_ms": 2.3685, "checkpoint": 0, "vertex_from": "434", - "vertex_to": "621", - "timestamp": "2025-11-27T01:23:51.674506057Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:15.972418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623905, - "rtt_ms": 1.623905, + "rtt_ns": 2115833, + "rtt_ms": 2.115833, "checkpoint": 0, "vertex_from": "436", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.675141535Z" + "timestamp": "2025-11-27T04:04:15.972524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606125, - "rtt_ms": 1.606125, + "rtt_ns": 2250209, + "rtt_ms": 2.250209, "checkpoint": 0, "vertex_from": "437", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.675177655Z" + "timestamp": "2025-11-27T04:04:15.972677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618386, - "rtt_ms": 1.618386, + "rtt_ns": 2447875, + "rtt_ms": 2.447875, "checkpoint": 0, - "vertex_from": "438", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.675217725Z" + "vertex_from": "434", + "vertex_to": "781", + "timestamp": "2025-11-27T04:04:15.972784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627146, - "rtt_ms": 1.627146, + "rtt_ns": 2572292, + "rtt_ms": 2.572292, "checkpoint": 0, - "vertex_from": "438", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.675225635Z" + "vertex_from": "434", + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:15.972871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737195, - "rtt_ms": 1.737195, + "rtt_ns": 1976417, + "rtt_ms": 1.976417, "checkpoint": 0, - "vertex_from": "440", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.675406534Z" + "vertex_from": "442", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.974181-08:00" }, { "operation": "add_edge", - "rtt_ns": 2695472, - "rtt_ms": 2.695472, + "rtt_ns": 1838708, + "rtt_ms": 1.838708, "checkpoint": 0, - "vertex_from": "434", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.675416614Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1250126, - "rtt_ms": 1.250126, - "checkpoint": 0, - "vertex_from": "446", - "timestamp": "2025-11-27T01:23:51.675630103Z" + "vertex_from": "448", + "vertex_to": "668", + "timestamp": "2025-11-27T04:04:15.974258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356216, - "rtt_ms": 1.356216, + "rtt_ns": 1856084, + "rtt_ms": 1.856084, "checkpoint": 0, - "vertex_from": "442", + "vertex_from": "448", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.675668333Z" + "timestamp": "2025-11-27T04:04:15.974536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413036, - "rtt_ms": 1.413036, + "rtt_ns": 2181375, + "rtt_ms": 2.181375, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.675920463Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.97456-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1481836, - "rtt_ms": 1.481836, + "operation": "add_vertex", + "rtt_ns": 2336333, + "rtt_ms": 2.336333, "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.675937893Z" + "vertex_from": "446", + "timestamp": "2025-11-27T04:04:15.974582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286036, - "rtt_ms": 1.286036, + "rtt_ns": 2181875, + "rtt_ms": 2.181875, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:51.676429041Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:04:15.974583-08:00" }, { "operation": "add_edge", - "rtt_ns": 757748, - "rtt_ms": 0.757748, + "rtt_ns": 2543916, + "rtt_ms": 2.543916, "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.676440251Z" + "vertex_from": "440", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:15.974603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312736, - "rtt_ms": 1.312736, + "rtt_ns": 2095500, + "rtt_ms": 2.0955, "checkpoint": 0, "vertex_from": "448", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.676491241Z" + "timestamp": "2025-11-27T04:04:15.974622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279536, - "rtt_ms": 1.279536, + "rtt_ns": 2094542, + "rtt_ms": 2.094542, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.676498191Z" - }, - { - "operation": "add_edge", - "rtt_ns": 888728, - "rtt_ms": 0.888728, - "checkpoint": 0, - "vertex_from": "446", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.676519311Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:15.97488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163487, - "rtt_ms": 1.163487, + "rtt_ns": 2029625, + "rtt_ms": 2.029625, "checkpoint": 0, "vertex_from": "448", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.676571271Z" + "timestamp": "2025-11-27T04:04:15.974902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183487, - "rtt_ms": 1.183487, + "rtt_ns": 1863541, + "rtt_ms": 1.863541, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.676601211Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:15.976124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506475, - "rtt_ms": 1.506475, + "rtt_ns": 1974250, + "rtt_ms": 1.97425, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.67673359Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:15.976156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573965, - "rtt_ms": 1.573965, + "rtt_ns": 1765792, + "rtt_ms": 1.765792, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.677495648Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.97635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086237, - "rtt_ms": 1.086237, + "rtt_ns": 1512708, + "rtt_ms": 1.512708, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.677527958Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:15.976416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104497, - "rtt_ms": 1.104497, + "rtt_ns": 1909208, + "rtt_ms": 1.909208, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.677534508Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:15.97647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606705, - "rtt_ms": 1.606705, + "rtt_ns": 1893083, + "rtt_ms": 1.893083, "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.677545818Z" + "vertex_from": "446", + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:15.976475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224747, - "rtt_ms": 1.224747, + "rtt_ns": 1803000, + "rtt_ms": 1.803, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.677716828Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:15.976685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351486, - "rtt_ms": 1.351486, + "rtt_ns": 2222000, + "rtt_ms": 2.222, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.677872117Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:15.976762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387046, - "rtt_ms": 1.387046, + "rtt_ns": 2167833, + "rtt_ms": 2.167833, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.677886167Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:15.976791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380886, - "rtt_ms": 1.380886, + "rtt_ns": 2304416, + "rtt_ms": 2.304416, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.677953027Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.97691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354696, - "rtt_ms": 1.354696, + "rtt_ns": 1960958, + "rtt_ms": 1.960958, "checkpoint": 0, "vertex_from": "448", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.677957137Z" + "timestamp": "2025-11-27T04:04:15.978118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239047, - "rtt_ms": 1.239047, + "rtt_ns": 1723458, + "rtt_ms": 1.723458, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "452", - "timestamp": "2025-11-27T01:23:51.677980517Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:04:15.978141-08:00" }, { "operation": "add_edge", - "rtt_ns": 605178, - "rtt_ms": 0.605178, + "rtt_ns": 2016250, + "rtt_ms": 2.01625, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:51.678105056Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:15.978142-08:00" }, { "operation": "add_edge", - "rtt_ns": 598098, - "rtt_ms": 0.598098, + "rtt_ns": 1878416, + "rtt_ms": 1.878416, "checkpoint": 0, "vertex_from": "448", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.678126976Z" + "timestamp": "2025-11-27T04:04:15.97835-08:00" }, { "operation": "add_edge", - "rtt_ns": 818178, - "rtt_ms": 0.818178, + "rtt_ns": 1894417, + "rtt_ms": 1.894417, "checkpoint": 0, "vertex_from": "448", "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.678353716Z" + "timestamp": "2025-11-27T04:04:15.978371-08:00" }, { "operation": "add_edge", - "rtt_ns": 670188, - "rtt_ms": 0.670188, + "rtt_ns": 1707333, + "rtt_ms": 1.707333, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.678388346Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.978393-08:00" }, { "operation": "add_edge", - "rtt_ns": 884768, - "rtt_ms": 0.884768, + "rtt_ns": 1500500, + "rtt_ms": 1.5005, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.678431506Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.978411-08:00" }, { "operation": "add_edge", - "rtt_ns": 657298, - "rtt_ms": 0.657298, + "rtt_ns": 2063833, + "rtt_ms": 2.063833, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.678544335Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:04:15.978417-08:00" }, { "operation": "add_edge", - "rtt_ns": 633348, - "rtt_ms": 0.633348, + "rtt_ns": 1740709, + "rtt_ms": 1.740709, "checkpoint": 0, - "vertex_from": "449", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.678616635Z" + "vertex_from": "448", + "vertex_to": "708", + "timestamp": "2025-11-27T04:04:15.978533-08:00" }, { "operation": "add_edge", - "rtt_ns": 790738, - "rtt_ms": 0.790738, + "rtt_ns": 1935292, + "rtt_ms": 1.935292, "checkpoint": 0, - "vertex_from": "449", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.679146604Z" + "vertex_from": "448", + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:15.978698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194387, - "rtt_ms": 1.194387, + "rtt_ns": 1779459, + "rtt_ms": 1.779459, "checkpoint": 0, "vertex_from": "449", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.679148824Z" + "timestamp": "2025-11-27T04:04:15.979899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345046, - "rtt_ms": 1.345046, + "rtt_ns": 1536708, + "rtt_ms": 1.536708, "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.679218063Z" + "vertex_from": "449", + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:15.97993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100937, - "rtt_ms": 1.100937, + "rtt_ns": 1577000, + "rtt_ms": 1.577, "checkpoint": 0, "vertex_from": "449", "vertex_to": "589", - "timestamp": "2025-11-27T01:23:51.679229053Z" + "timestamp": "2025-11-27T04:04:15.979949-08:00" }, { "operation": "add_edge", - "rtt_ns": 880897, - "rtt_ms": 0.880897, + "rtt_ns": 1921458, + "rtt_ms": 1.921458, "checkpoint": 0, "vertex_from": "449", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.679270723Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:15.980064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356436, - "rtt_ms": 1.356436, + "rtt_ns": 1945333, + "rtt_ms": 1.945333, "checkpoint": 0, "vertex_from": "449", "vertex_to": "684", - "timestamp": "2025-11-27T01:23:51.679314883Z" + "timestamp": "2025-11-27T04:04:15.980087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285537, - "rtt_ms": 1.285537, + "rtt_ns": 1666375, + "rtt_ms": 1.666375, "checkpoint": 0, "vertex_from": "449", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.679391893Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:04:15.980201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329906, - "rtt_ms": 1.329906, + "rtt_ns": 1805583, + "rtt_ms": 1.805583, "checkpoint": 0, - "vertex_from": "450", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:51.679948111Z" + "vertex_from": "449", + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:15.980225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563336, - "rtt_ms": 1.563336, + "rtt_ns": 1917584, + "rtt_ms": 1.917584, "checkpoint": 0, "vertex_from": "449", - "vertex_to": "965", - "timestamp": "2025-11-27T01:23:51.680109111Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.980269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028667, - "rtt_ms": 1.028667, + "rtt_ns": 1962542, + "rtt_ms": 1.962542, "checkpoint": 0, - "vertex_from": "450", - "vertex_to": "665", - "timestamp": "2025-11-27T01:23:51.680179921Z" + "vertex_from": "449", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.980375-08:00" }, { "operation": "add_edge", - "rtt_ns": 963478, - "rtt_ms": 0.963478, + "rtt_ns": 1696084, + "rtt_ms": 1.696084, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.680194421Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:04:15.980395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765735, - "rtt_ms": 1.765735, + "rtt_ns": 1374000, + "rtt_ms": 1.374, "checkpoint": 0, - "vertex_from": "449", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.680198831Z" + "vertex_from": "450", + "vertex_to": "585", + "timestamp": "2025-11-27T04:04:15.981575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070027, - "rtt_ms": 1.070027, + "rtt_ns": 1645125, + "rtt_ms": 1.645125, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.6803861Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:04:15.981596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214787, - "rtt_ms": 1.214787, + "rtt_ns": 1720084, + "rtt_ms": 1.720084, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.68043408Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.98162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313826, - "rtt_ms": 1.313826, + "rtt_ns": 1691583, + "rtt_ms": 1.691583, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.68046137Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:04:15.981623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220407, - "rtt_ms": 1.220407, + "rtt_ns": 1801250, + "rtt_ms": 1.80125, "checkpoint": 0, "vertex_from": "450", "vertex_to": "573", - "timestamp": "2025-11-27T01:23:51.68049248Z" + "timestamp": "2025-11-27T04:04:15.98189-08:00" }, { "operation": "add_edge", - "rtt_ns": 726658, - "rtt_ms": 0.726658, + "rtt_ns": 1695834, + "rtt_ms": 1.695834, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.680676429Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:15.981922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304896, - "rtt_ms": 1.304896, + "rtt_ns": 1892417, + "rtt_ms": 1.892417, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.680698589Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:15.981958-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1711208, + "rtt_ms": 1.711208, + "checkpoint": 0, + "vertex_from": "450", + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:15.98198-08:00" }, { "operation": "add_edge", - "rtt_ns": 750908, - "rtt_ms": 0.750908, + "rtt_ns": 1645666, + "rtt_ms": 1.645666, "checkpoint": 0, "vertex_from": "450", "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.680861249Z" + "timestamp": "2025-11-27T04:04:15.982021-08:00" }, { "operation": "add_edge", - "rtt_ns": 803407, - "rtt_ms": 0.803407, + "rtt_ns": 1648208, + "rtt_ms": 1.648208, "checkpoint": 0, "vertex_from": "451", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.680984288Z" + "timestamp": "2025-11-27T04:04:15.982044-08:00" }, { "operation": "add_edge", - "rtt_ns": 815477, - "rtt_ms": 0.815477, + "rtt_ns": 1527875, + "rtt_ms": 1.527875, "checkpoint": 0, "vertex_from": "452", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.681011198Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:15.983125-08:00" }, { "operation": "add_edge", - "rtt_ns": 833767, - "rtt_ms": 0.833767, + "rtt_ns": 1628416, + "rtt_ms": 1.628416, "checkpoint": 0, "vertex_from": "452", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.681033388Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:15.983205-08:00" }, { "operation": "add_edge", - "rtt_ns": 807078, - "rtt_ms": 0.807078, + "rtt_ns": 1731958, + "rtt_ms": 1.731958, "checkpoint": 0, "vertex_from": "452", - "vertex_to": "753", - "timestamp": "2025-11-27T01:23:51.681195078Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.983356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153776, - "rtt_ms": 1.153776, + "rtt_ns": 1754291, + "rtt_ms": 1.754291, "checkpoint": 0, "vertex_from": "452", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.681589076Z" + "vertex_to": "753", + "timestamp": "2025-11-27T04:04:15.983375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255316, - "rtt_ms": 1.255316, + "rtt_ns": 1484375, + "rtt_ms": 1.484375, "checkpoint": 0, "vertex_from": "452", "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.681717976Z" + "timestamp": "2025-11-27T04:04:15.983377-08:00" }, { "operation": "add_edge", - "rtt_ns": 880777, - "rtt_ms": 0.880777, + "rtt_ns": 1588750, + "rtt_ms": 1.58875, "checkpoint": 0, "vertex_from": "453", - "vertex_to": "972", - "timestamp": "2025-11-27T01:23:51.681743976Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:15.983512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325826, - "rtt_ms": 1.325826, + "rtt_ns": 1570709, + "rtt_ms": 1.570709, "checkpoint": 0, "vertex_from": "453", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.681819376Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.983615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198637, - "rtt_ms": 1.198637, + "rtt_ns": 1661667, + "rtt_ms": 1.661667, "checkpoint": 0, "vertex_from": "453", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.681876146Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:04:15.983643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193416, - "rtt_ms": 1.193416, + "rtt_ns": 1843875, + "rtt_ms": 1.843875, "checkpoint": 0, "vertex_from": "453", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.681894425Z" + "vertex_to": "972", + "timestamp": "2025-11-27T04:04:15.983866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667045, - "rtt_ms": 1.667045, + "rtt_ns": 1931083, + "rtt_ms": 1.931083, "checkpoint": 0, "vertex_from": "453", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.682652883Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:04:15.98389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705495, - "rtt_ms": 1.705495, + "rtt_ns": 1632084, + "rtt_ms": 1.632084, "checkpoint": 0, "vertex_from": "454", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.682740003Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:15.985008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585445, - "rtt_ms": 1.585445, + "rtt_ns": 1380541, + "rtt_ms": 1.380541, + "checkpoint": 0, + "vertex_from": "456", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.985026-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1668292, + "rtt_ms": 1.668292, "checkpoint": 0, "vertex_from": "454", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.682781223Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.985046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789285, - "rtt_ms": 1.789285, + "rtt_ns": 1936291, + "rtt_ms": 1.936291, "checkpoint": 0, "vertex_from": "454", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.682801733Z" + "timestamp": "2025-11-27T04:04:15.985064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059677, - "rtt_ms": 1.059677, + "rtt_ns": 1873959, + "rtt_ms": 1.873959, "checkpoint": 0, "vertex_from": "454", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.682804973Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:15.98508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326216, - "rtt_ms": 1.326216, + "rtt_ns": 1743250, + "rtt_ms": 1.74325, "checkpoint": 0, "vertex_from": "454", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.682916302Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.9851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311226, - "rtt_ms": 1.311226, + "rtt_ns": 1604167, + "rtt_ms": 1.604167, "checkpoint": 0, - "vertex_from": "455", - "vertex_to": "810", - "timestamp": "2025-11-27T01:23:51.683132012Z" + "vertex_from": "454", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:15.985117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413896, - "rtt_ms": 1.413896, + "rtt_ns": 1739208, + "rtt_ms": 1.739208, "checkpoint": 0, - "vertex_from": "454", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.683132532Z" + "vertex_from": "455", + "vertex_to": "810", + "timestamp": "2025-11-27T04:04:15.985356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287686, - "rtt_ms": 1.287686, + "rtt_ns": 1749292, + "rtt_ms": 1.749292, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.683165702Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:15.98564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474126, - "rtt_ms": 1.474126, + "rtt_ns": 1810209, + "rtt_ms": 1.810209, "checkpoint": 0, "vertex_from": "456", "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.683370011Z" + "timestamp": "2025-11-27T04:04:15.985677-08:00" }, { "operation": "add_edge", - "rtt_ns": 731648, - "rtt_ms": 0.731648, + "rtt_ns": 1354083, + "rtt_ms": 1.354083, "checkpoint": 0, - "vertex_from": "456", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.683386541Z" + "vertex_from": "458", + "vertex_to": "527", + "timestamp": "2025-11-27T04:04:15.986711-08:00" }, { "operation": "add_edge", - "rtt_ns": 689838, - "rtt_ms": 0.689838, + "rtt_ns": 1820125, + "rtt_ms": 1.820125, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.683430821Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:04:15.986867-08:00" }, { "operation": "add_edge", - "rtt_ns": 831737, - "rtt_ms": 0.831737, + "rtt_ns": 1770417, + "rtt_ms": 1.770417, "checkpoint": 0, "vertex_from": "458", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.683966469Z" + "timestamp": "2025-11-27T04:04:15.986888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261036, - "rtt_ms": 1.261036, + "rtt_ns": 1898875, + "rtt_ms": 1.898875, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:51.684043759Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.986907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315316, - "rtt_ms": 1.315316, + "rtt_ns": 1826250, + "rtt_ms": 1.82625, "checkpoint": 0, - "vertex_from": "456", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.684121619Z" + "vertex_from": "457", + "vertex_to": "585", + "timestamp": "2025-11-27T04:04:15.986927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237787, - "rtt_ms": 1.237787, + "rtt_ns": 1509958, + "rtt_ms": 1.509958, "checkpoint": 0, - "vertex_from": "456", - "vertex_to": "567", - "timestamp": "2025-11-27T01:23:51.684156369Z" + "vertex_from": "458", + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:15.987151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050107, - "rtt_ms": 1.050107, + "rtt_ns": 2086250, + "rtt_ms": 2.08625, "checkpoint": 0, - "vertex_from": "457", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.684184189Z" + "vertex_from": "456", + "vertex_to": "567", + "timestamp": "2025-11-27T04:04:15.987169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389236, - "rtt_ms": 1.389236, + "rtt_ns": 2121875, + "rtt_ms": 2.121875, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:51.684192729Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:15.987186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027557, - "rtt_ms": 1.027557, + "rtt_ns": 2166625, + "rtt_ms": 2.166625, "checkpoint": 0, - "vertex_from": "458", - "vertex_to": "527", - "timestamp": "2025-11-27T01:23:51.684194809Z" + "vertex_from": "456", + "vertex_to": "549", + "timestamp": "2025-11-27T04:04:15.987194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643175, - "rtt_ms": 1.643175, + "rtt_ns": 1694500, + "rtt_ms": 1.6945, "checkpoint": 0, "vertex_from": "458", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.685030866Z" + "timestamp": "2025-11-27T04:04:15.987373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679645, - "rtt_ms": 1.679645, + "rtt_ns": 1494125, + "rtt_ms": 1.494125, "checkpoint": 0, - "vertex_from": "458", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.685050766Z" + "vertex_from": "459", + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.988362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622355, - "rtt_ms": 1.622355, + "rtt_ns": 1532125, + "rtt_ms": 1.532125, "checkpoint": 0, - "vertex_from": "458", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.685054076Z" + "vertex_from": "464", + "vertex_to": "570", + "timestamp": "2025-11-27T04:04:15.988727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186327, - "rtt_ms": 1.186327, + "rtt_ns": 1848250, + "rtt_ms": 1.84825, "checkpoint": 0, "vertex_from": "461", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.685308806Z" + "timestamp": "2025-11-27T04:04:15.988757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333766, - "rtt_ms": 1.333766, + "rtt_ns": 1877792, + "rtt_ms": 1.877792, "checkpoint": 0, "vertex_from": "460", "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.685378645Z" + "timestamp": "2025-11-27T04:04:15.988767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526625, - "rtt_ms": 1.526625, + "rtt_ns": 1856042, + "rtt_ms": 1.856042, "checkpoint": 0, - "vertex_from": "463", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.685723574Z" + "vertex_from": "461", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.988784-08:00" }, { "operation": "add_edge", - "rtt_ns": 866348, - "rtt_ms": 0.866348, + "rtt_ns": 1604917, + "rtt_ms": 1.604917, "checkpoint": 0, - "vertex_from": "464", - "vertex_to": "570", - "timestamp": "2025-11-27T01:23:51.685898264Z" + "vertex_from": "463", + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:15.988792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942955, - "rtt_ms": 1.942955, + "rtt_ns": 2090542, + "rtt_ms": 2.090542, "checkpoint": 0, - "vertex_from": "459", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.685910384Z" + "vertex_from": "458", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.988804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816695, - "rtt_ms": 1.816695, + "rtt_ns": 1816917, + "rtt_ms": 1.816917, "checkpoint": 0, "vertex_from": "462", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.686002154Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.988986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847735, - "rtt_ms": 1.847735, + "rtt_ns": 1635500, + "rtt_ms": 1.6355, "checkpoint": 0, - "vertex_from": "461", + "vertex_from": "464", "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.686004784Z" + "timestamp": "2025-11-27T04:04:15.989009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947424, - "rtt_ms": 1.947424, + "rtt_ns": 1881417, + "rtt_ms": 1.881417, "checkpoint": 0, "vertex_from": "462", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.686141323Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:15.989033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128957, - "rtt_ms": 1.128957, + "rtt_ns": 1723417, + "rtt_ms": 1.723417, "checkpoint": 0, "vertex_from": "464", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.686181563Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:15.990087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617225, - "rtt_ms": 1.617225, + "rtt_ns": 1350083, + "rtt_ms": 1.350083, "checkpoint": 0, - "vertex_from": "465", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:51.687528299Z" + "vertex_from": "464", + "vertex_to": "541", + "timestamp": "2025-11-27T04:04:15.990107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705045, - "rtt_ms": 1.705045, + "rtt_ns": 1525250, + "rtt_ms": 1.52525, "checkpoint": 0, - "vertex_from": "465", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.687605729Z" + "vertex_from": "464", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.990293-08:00" }, { "operation": "add_edge", - "rtt_ns": 2968472, - "rtt_ms": 2.968472, + "rtt_ns": 1587500, + "rtt_ms": 1.5875, "checkpoint": 0, - "vertex_from": "464", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.688024178Z" + "vertex_from": "465", + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.990373-08:00" }, { "operation": "add_edge", - "rtt_ns": 690438, - "rtt_ms": 0.690438, + "rtt_ns": 1589333, + "rtt_ms": 1.589333, "checkpoint": 0, - "vertex_from": "467", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.688219597Z" + "vertex_from": "465", + "vertex_to": "620", + "timestamp": "2025-11-27T04:04:15.990382-08:00" }, { "operation": "add_edge", - "rtt_ns": 2905102, - "rtt_ms": 2.905102, + "rtt_ns": 1662292, + "rtt_ms": 1.662292, "checkpoint": 0, "vertex_from": "464", - "vertex_to": "541", - "timestamp": "2025-11-27T01:23:51.688284237Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 718158, - "rtt_ms": 0.718158, - "checkpoint": 0, - "vertex_from": "469", - "timestamp": "2025-11-27T01:23:51.688745956Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.99039-08:00" }, { "operation": "add_edge", - "rtt_ns": 3529540, - "rtt_ms": 3.52954, + "rtt_ns": 1595083, + "rtt_ms": 1.595083, "checkpoint": 0, - "vertex_from": "464", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.688839576Z" + "vertex_from": "466", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.9904-08:00" }, { "operation": "add_edge", - "rtt_ns": 3117882, - "rtt_ms": 3.117882, + "rtt_ns": 1520125, + "rtt_ms": 1.520125, "checkpoint": 0, - "vertex_from": "464", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.688842166Z" + "vertex_from": "466", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.990555-08:00" }, { "operation": "add_edge", - "rtt_ns": 2847792, - "rtt_ms": 2.847792, + "rtt_ns": 1585875, + "rtt_ms": 1.585875, "checkpoint": 0, "vertex_from": "466", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.688851086Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:15.990573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2729063, - "rtt_ms": 2.729063, + "rtt_ns": 1583250, + "rtt_ms": 1.58325, "checkpoint": 0, "vertex_from": "466", "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.688871266Z" + "timestamp": "2025-11-27T04:04:15.990593-08:00" }, { "operation": "add_edge", - "rtt_ns": 2769562, - "rtt_ms": 2.769562, + "rtt_ns": 1636084, + "rtt_ms": 1.636084, "checkpoint": 0, - "vertex_from": "466", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.688952235Z" + "vertex_from": "467", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.991724-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1347456, - "rtt_ms": 1.347456, + "rtt_ns": 1638125, + "rtt_ms": 1.638125, "checkpoint": 0, "vertex_from": "469", - "timestamp": "2025-11-27T01:23:51.688954475Z" + "timestamp": "2025-11-27T04:04:15.991747-08:00" }, { "operation": "add_edge", - "rtt_ns": 3005931, - "rtt_ms": 3.005931, - "checkpoint": 0, - "vertex_from": "466", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.689011655Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 817478, - "rtt_ms": 0.817478, + "rtt_ns": 1762875, + "rtt_ms": 1.762875, "checkpoint": 0, - "vertex_from": "469", - "timestamp": "2025-11-27T01:23:51.689038565Z" + "vertex_from": "470", + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:15.992147-08:00" }, { "operation": "add_edge", - "rtt_ns": 773758, - "rtt_ms": 0.773758, + "rtt_ns": 1767167, + "rtt_ms": 1.767167, "checkpoint": 0, "vertex_from": "470", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.689060975Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:15.992168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092507, - "rtt_ms": 1.092507, + "rtt_ns": 1610458, + "rtt_ms": 1.610458, "checkpoint": 0, - "vertex_from": "469", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.689839393Z" + "vertex_from": "472", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.992184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068687, - "rtt_ms": 1.068687, + "rtt_ns": 1645000, + "rtt_ms": 1.645, "checkpoint": 0, - "vertex_from": "470", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:51.689910113Z" + "vertex_from": "472", + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.992201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203036, - "rtt_ms": 1.203036, + "rtt_ns": 1836125, + "rtt_ms": 1.836125, "checkpoint": 0, "vertex_from": "470", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.690046502Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:04:15.992227-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1177686, - "rtt_ms": 1.177686, + "operation": "add_vertex", + "rtt_ns": 1947875, + "rtt_ms": 1.947875, "checkpoint": 0, - "vertex_from": "472", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.690049862Z" + "vertex_from": "469", + "timestamp": "2025-11-27T04:04:15.992243-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1364026, - "rtt_ms": 1.364026, + "operation": "add_vertex", + "rtt_ns": 1886125, + "rtt_ms": 1.886125, "checkpoint": 0, - "vertex_from": "472", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.690217032Z" + "vertex_from": "469", + "timestamp": "2025-11-27T04:04:15.99226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682006, - "rtt_ms": 1.682006, + "rtt_ns": 2033208, + "rtt_ms": 2.033208, "checkpoint": 0, "vertex_from": "472", "vertex_to": "866", - "timestamp": "2025-11-27T01:23:51.690635531Z" + "timestamp": "2025-11-27T04:04:15.992627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743855, - "rtt_ms": 1.743855, + "rtt_ns": 1692625, + "rtt_ms": 1.692625, "checkpoint": 0, "vertex_from": "469", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.6907829Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:04:15.993441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805785, - "rtt_ms": 1.805785, + "rtt_ns": 1779167, + "rtt_ms": 1.779167, "checkpoint": 0, "vertex_from": "473", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.69081868Z" + "timestamp": "2025-11-27T04:04:15.993504-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2702834, + "rtt_ms": 2.702834, + "checkpoint": 0, + "vertex_from": "477", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.994872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895535, - "rtt_ms": 1.895535, + "rtt_ns": 2683167, + "rtt_ms": 2.683167, "checkpoint": 0, "vertex_from": "469", - "vertex_to": "621", - "timestamp": "2025-11-27T01:23:51.69085105Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.994927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791755, - "rtt_ms": 1.791755, + "rtt_ns": 2793625, + "rtt_ms": 2.793625, "checkpoint": 0, "vertex_from": "474", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.69085393Z" + "timestamp": "2025-11-27T04:04:15.994942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469806, - "rtt_ms": 1.469806, + "rtt_ns": 2722667, + "rtt_ms": 2.722667, "checkpoint": 0, - "vertex_from": "477", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.691310969Z" + "vertex_from": "480", + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:15.994951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423276, - "rtt_ms": 1.423276, + "rtt_ns": 2847834, + "rtt_ms": 2.847834, "checkpoint": 0, - "vertex_from": "480", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.691471138Z" + "vertex_from": "469", + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:15.995108-08:00" }, { "operation": "add_edge", - "rtt_ns": 852337, - "rtt_ms": 0.852337, + "rtt_ns": 2783958, + "rtt_ms": 2.783958, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.691488638Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:04:15.995412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611925, - "rtt_ms": 1.611925, + "rtt_ns": 3229583, + "rtt_ms": 3.229583, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.691522968Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.995431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492866, - "rtt_ms": 1.492866, + "rtt_ns": 3896167, + "rtt_ms": 3.896167, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.691544308Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:15.996081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527406, - "rtt_ms": 1.527406, + "rtt_ns": 2933541, + "rtt_ms": 2.933541, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "669", - "timestamp": "2025-11-27T01:23:51.691745468Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:15.996439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470136, - "rtt_ms": 1.470136, + "rtt_ns": 1675917, + "rtt_ms": 1.675917, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.692255256Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:04:15.996604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639805, - "rtt_ms": 1.639805, + "rtt_ns": 3181417, + "rtt_ms": 3.181417, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.692459875Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:15.996625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165426, - "rtt_ms": 1.165426, + "rtt_ns": 1690208, + "rtt_ms": 1.690208, "checkpoint": 0, "vertex_from": "480", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.692477795Z" + "timestamp": "2025-11-27T04:04:15.996642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642745, - "rtt_ms": 1.642745, + "rtt_ns": 2182292, + "rtt_ms": 2.182292, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:51.692495045Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:04:15.997057-08:00" }, { "operation": "add_edge", - "rtt_ns": 964687, - "rtt_ms": 0.964687, + "rtt_ns": 1965541, + "rtt_ms": 1.965541, "checkpoint": 0, - "vertex_from": "484", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.693443602Z" + "vertex_from": "481", + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:15.997075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945954, - "rtt_ms": 1.945954, + "rtt_ns": 2324375, + "rtt_ms": 2.324375, "checkpoint": 0, - "vertex_from": "482", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.693471402Z" + "vertex_from": "480", + "vertex_to": "588", + "timestamp": "2025-11-27T04:04:15.997268-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010324, - "rtt_ms": 2.010324, + "rtt_ns": 1894083, + "rtt_ms": 1.894083, "checkpoint": 0, - "vertex_from": "481", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.693483022Z" + "vertex_from": "482", + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:15.997326-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003624, - "rtt_ms": 2.003624, + "rtt_ns": 1243292, + "rtt_ms": 1.243292, "checkpoint": 0, - "vertex_from": "481", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.693494302Z" + "vertex_from": "482", + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:15.997326-08:00" }, { "operation": "add_edge", - "rtt_ns": 2654792, - "rtt_ms": 2.654792, + "rtt_ns": 1916208, + "rtt_ms": 1.916208, "checkpoint": 0, - "vertex_from": "480", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:51.693509462Z" + "vertex_from": "481", + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:15.997329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218177, - "rtt_ms": 1.218177, + "rtt_ns": 1686291, + "rtt_ms": 1.686291, "checkpoint": 0, - "vertex_from": "486", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.693714672Z" + "vertex_from": "484", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:15.998126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599305, - "rtt_ms": 1.599305, + "rtt_ns": 1788750, + "rtt_ms": 1.78875, "checkpoint": 0, "vertex_from": "484", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.693855521Z" + "timestamp": "2025-11-27T04:04:15.998394-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121653, - "rtt_ms": 2.121653, + "rtt_ns": 1788833, + "rtt_ms": 1.788833, "checkpoint": 0, "vertex_from": "484", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.693868621Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:15.998415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414356, - "rtt_ms": 1.414356, + "rtt_ns": 1787708, + "rtt_ms": 1.787708, "checkpoint": 0, "vertex_from": "484", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.693875441Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:15.99843-08:00" }, { "operation": "add_edge", - "rtt_ns": 2725862, - "rtt_ms": 2.725862, + "rtt_ns": 1903166, + "rtt_ms": 1.903166, "checkpoint": 0, - "vertex_from": "482", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.69427155Z" + "vertex_from": "486", + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:15.998961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328556, - "rtt_ms": 1.328556, + "rtt_ns": 2247458, + "rtt_ms": 2.247458, "checkpoint": 0, - "vertex_from": "492", - "vertex_to": "918", - "timestamp": "2025-11-27T01:23:51.694825078Z" + "vertex_from": "486", + "vertex_to": "539", + "timestamp": "2025-11-27T04:04:15.999324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434636, - "rtt_ms": 1.434636, + "rtt_ns": 2080208, + "rtt_ms": 2.080208, "checkpoint": 0, - "vertex_from": "492", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.694945298Z" + "vertex_from": "486", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:15.99935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250346, - "rtt_ms": 1.250346, + "rtt_ns": 1459041, + "rtt_ms": 1.459041, "checkpoint": 0, "vertex_from": "496", "vertex_to": "966", - "timestamp": "2025-11-27T01:23:51.694967208Z" + "timestamp": "2025-11-27T04:04:15.999589-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2278584, + "rtt_ms": 2.278584, + "checkpoint": 0, + "vertex_from": "492", + "vertex_to": "918", + "timestamp": "2025-11-27T04:04:15.999607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603686, - "rtt_ms": 1.603686, + "rtt_ns": 2295041, + "rtt_ms": 2.295041, "checkpoint": 0, "vertex_from": "492", "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.695087788Z" + "timestamp": "2025-11-27T04:04:15.999622-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2307542, + "rtt_ms": 2.307542, + "checkpoint": 0, + "vertex_from": "492", + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:15.999638-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1537196, - "rtt_ms": 1.537196, + "rtt_ns": 1583666, + "rtt_ms": 1.583666, "checkpoint": 0, "vertex_from": "499", - "timestamp": "2025-11-27T01:23:51.695414807Z" + "timestamp": "2025-11-27T04:04:16.000016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584315, - "rtt_ms": 1.584315, + "rtt_ns": 1882125, + "rtt_ms": 1.882125, "checkpoint": 0, "vertex_from": "498", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.695456656Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:04:16.000277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234326, - "rtt_ms": 1.234326, + "rtt_ns": 1879500, + "rtt_ms": 1.8795, "checkpoint": 0, - "vertex_from": "500", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.695506836Z" + "vertex_from": "498", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.000295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2127094, - "rtt_ms": 2.127094, + "rtt_ns": 1358625, + "rtt_ms": 1.358625, "checkpoint": 0, - "vertex_from": "486", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.695600486Z" + "vertex_from": "500", + "vertex_to": "512", + "timestamp": "2025-11-27T04:04:16.000683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798645, - "rtt_ms": 1.798645, + "rtt_ns": 1739500, + "rtt_ms": 1.7395, "checkpoint": 0, - "vertex_from": "498", - "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.695656086Z" + "vertex_from": "500", + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:16.000702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328384, - "rtt_ms": 2.328384, + "rtt_ns": 1360833, + "rtt_ms": 1.360833, "checkpoint": 0, - "vertex_from": "486", - "vertex_to": "539", - "timestamp": "2025-11-27T01:23:51.695773996Z" + "vertex_from": "505", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.000714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399556, - "rtt_ms": 1.399556, + "rtt_ns": 1411458, + "rtt_ms": 1.411458, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "513", - "timestamp": "2025-11-27T01:23:51.696907312Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.001035-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1961894, - "rtt_ms": 1.961894, + "operation": "add_edge", + "rtt_ns": 1452125, + "rtt_ms": 1.452125, "checkpoint": 0, - "vertex_from": "510", - "timestamp": "2025-11-27T01:23:51.696934852Z" + "vertex_from": "512", + "vertex_to": "513", + "timestamp": "2025-11-27T04:04:16.00109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527585, - "rtt_ms": 1.527585, + "rtt_ns": 1225625, + "rtt_ms": 1.225625, "checkpoint": 0, "vertex_from": "499", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.696943092Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2070184, - "rtt_ms": 2.070184, - "checkpoint": 0, - "vertex_from": "505", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.697016922Z" + "timestamp": "2025-11-27T04:04:16.001242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010444, - "rtt_ms": 2.010444, + "rtt_ns": 1677625, + "rtt_ms": 1.677625, "checkpoint": 0, "vertex_from": "512", "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.697099172Z" + "timestamp": "2025-11-27T04:04:16.001286-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1656436, - "rtt_ms": 1.656436, + "operation": "add_vertex", + "rtt_ns": 1903083, + "rtt_ms": 1.903083, "checkpoint": 0, - "vertex_from": "512", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.697116122Z" + "vertex_from": "510", + "timestamp": "2025-11-27T04:04:16.001494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832295, - "rtt_ms": 1.832295, + "rtt_ns": 1493583, + "rtt_ms": 1.493583, "checkpoint": 0, "vertex_from": "512", "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.697433601Z" + "timestamp": "2025-11-27T04:04:16.001772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787415, - "rtt_ms": 1.787415, + "rtt_ns": 1492750, + "rtt_ms": 1.49275, "checkpoint": 0, "vertex_from": "512", "vertex_to": "562", - "timestamp": "2025-11-27T01:23:51.697445111Z" + "timestamp": "2025-11-27T04:04:16.001788-08:00" }, { "operation": "add_edge", - "rtt_ns": 2626013, - "rtt_ms": 2.626013, + "rtt_ns": 1483667, + "rtt_ms": 1.483667, "checkpoint": 0, - "vertex_from": "500", - "vertex_to": "512", - "timestamp": "2025-11-27T01:23:51.697453151Z" + "vertex_from": "512", + "vertex_to": "598", + "timestamp": "2025-11-27T04:04:16.002187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145117, - "rtt_ms": 1.145117, + "rtt_ns": 1488792, + "rtt_ms": 1.488792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.698246339Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.002205-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1425806, - "rtt_ms": 1.425806, + "operation": "add_vertex", + "rtt_ns": 1538125, + "rtt_ms": 1.538125, "checkpoint": 0, - "vertex_from": "512", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.698369928Z" + "vertex_from": "863", + "timestamp": "2025-11-27T04:04:16.002222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508766, - "rtt_ms": 1.508766, + "rtt_ns": 1289750, + "rtt_ms": 1.28975, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:51.698417558Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:16.002381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399946, - "rtt_ms": 1.399946, + "rtt_ns": 1446958, + "rtt_ms": 1.446958, "checkpoint": 0, "vertex_from": "512", "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.698417898Z" + "timestamp": "2025-11-27T04:04:16.002482-08:00" }, { "operation": "add_edge", - "rtt_ns": 976837, - "rtt_ms": 0.976837, + "rtt_ns": 1463083, + "rtt_ms": 1.463083, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:51.698422898Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2646032, - "rtt_ms": 2.646032, - "checkpoint": 0, - "vertex_from": "863", - "timestamp": "2025-11-27T01:23:51.698423088Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:16.002706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312766, - "rtt_ms": 1.312766, + "rtt_ns": 1441583, + "rtt_ms": 1.441583, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.698430238Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.002728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517386, - "rtt_ms": 1.517386, + "rtt_ns": 1478250, + "rtt_ms": 1.47825, "checkpoint": 0, "vertex_from": "510", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.698452978Z" + "timestamp": "2025-11-27T04:04:16.002973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347376, - "rtt_ms": 1.347376, + "rtt_ns": 1233541, + "rtt_ms": 1.233541, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.698802037Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:04:16.003006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910485, - "rtt_ms": 1.910485, + "rtt_ns": 1532042, + "rtt_ms": 1.532042, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.699346706Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:04:16.003321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008467, - "rtt_ms": 1.008467, + "rtt_ns": 1437084, + "rtt_ms": 1.437084, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "863", - "timestamp": "2025-11-27T01:23:51.699432195Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:04:16.003625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054477, - "rtt_ms": 1.054477, + "rtt_ns": 1419209, + "rtt_ms": 1.419209, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.699509095Z" + "vertex_to": "863", + "timestamp": "2025-11-27T04:04:16.003642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090947, - "rtt_ms": 1.090947, + "rtt_ns": 1453834, + "rtt_ms": 1.453834, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.699522905Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:04:16.00366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285586, - "rtt_ms": 1.285586, + "rtt_ns": 1428375, + "rtt_ms": 1.428375, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "538", - "timestamp": "2025-11-27T01:23:51.699533745Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.00381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169747, - "rtt_ms": 1.169747, + "rtt_ns": 1346334, + "rtt_ms": 1.346334, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:51.699540725Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.003829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158897, - "rtt_ms": 1.158897, + "rtt_ns": 1454166, + "rtt_ms": 1.454166, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.699577705Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:16.004184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384116, - "rtt_ms": 1.384116, + "rtt_ns": 1518833, + "rtt_ms": 1.518833, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.699803094Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:04:16.004226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464006, - "rtt_ms": 1.464006, + "rtt_ns": 1442416, + "rtt_ms": 1.442416, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "918", - "timestamp": "2025-11-27T01:23:51.699888484Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:04:16.004416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272006, - "rtt_ms": 1.272006, + "rtt_ns": 1457416, + "rtt_ms": 1.457416, "checkpoint": 0, "vertex_from": "512", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.700075273Z" + "timestamp": "2025-11-27T04:04:16.004465-08:00" }, { "operation": "add_edge", - "rtt_ns": 752568, - "rtt_ms": 0.752568, + "rtt_ns": 1138291, + "rtt_ms": 1.138291, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "517", - "timestamp": "2025-11-27T01:23:51.700101353Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:04:16.0048-08:00" }, { "operation": "add_edge", - "rtt_ns": 799268, - "rtt_ms": 0.799268, + "rtt_ns": 1187625, + "rtt_ms": 1.187625, "checkpoint": 0, "vertex_from": "512", "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.700232273Z" + "timestamp": "2025-11-27T04:04:16.004813-08:00" }, { "operation": "add_edge", - "rtt_ns": 759448, - "rtt_ms": 0.759448, + "rtt_ns": 1189459, + "rtt_ms": 1.189459, "checkpoint": 0, "vertex_from": "512", "vertex_to": "514", - "timestamp": "2025-11-27T01:23:51.700269473Z" + "timestamp": "2025-11-27T04:04:16.004832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123287, - "rtt_ms": 1.123287, + "rtt_ns": 1388667, + "rtt_ms": 1.388667, "checkpoint": 0, "vertex_from": "512", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.700658162Z" + "timestamp": "2025-11-27T04:04:16.0052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109517, - "rtt_ms": 1.109517, + "rtt_ns": 1905333, + "rtt_ms": 1.905333, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "738", - "timestamp": "2025-11-27T01:23:51.700688892Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:04:16.005227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010337, - "rtt_ms": 1.010337, + "rtt_ns": 1718000, + "rtt_ms": 1.718, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.700900061Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:16.005548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415576, - "rtt_ms": 1.415576, + "rtt_ns": 1450208, + "rtt_ms": 1.450208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:51.700939691Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:04:16.005637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491756, - "rtt_ms": 1.491756, + "rtt_ns": 1382125, + "rtt_ms": 1.382125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.701033341Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:16.0058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287096, - "rtt_ms": 1.287096, + "rtt_ns": 1788292, + "rtt_ms": 1.788292, "checkpoint": 0, "vertex_from": "512", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.70109124Z" + "timestamp": "2025-11-27T04:04:16.006016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640455, - "rtt_ms": 1.640455, + "rtt_ns": 1623000, + "rtt_ms": 1.623, "checkpoint": 0, "vertex_from": "512", "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.701716658Z" + "timestamp": "2025-11-27T04:04:16.006088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269036, - "rtt_ms": 1.269036, + "rtt_ns": 1411292, + "rtt_ms": 1.411292, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "534", - "timestamp": "2025-11-27T01:23:51.701959688Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:16.006225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752245, - "rtt_ms": 1.752245, + "rtt_ns": 1444167, + "rtt_ms": 1.444167, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.701985758Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:04:16.006245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720695, - "rtt_ms": 1.720695, + "rtt_ns": 1453500, + "rtt_ms": 1.4535, "checkpoint": 0, "vertex_from": "512", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.701991348Z" + "timestamp": "2025-11-27T04:04:16.006286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333206, - "rtt_ms": 1.333206, + "rtt_ns": 1341833, + "rtt_ms": 1.341833, "checkpoint": 0, "vertex_from": "512", "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.701992518Z" + "timestamp": "2025-11-27T04:04:16.006544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895655, - "rtt_ms": 1.895655, + "rtt_ns": 1346916, + "rtt_ms": 1.346916, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:51.701998328Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:04:16.006575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414246, - "rtt_ms": 1.414246, + "rtt_ns": 1336292, + "rtt_ms": 1.336292, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:51.702315577Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.006974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271937, - "rtt_ms": 1.271937, + "rtt_ns": 1199833, + "rtt_ms": 1.199833, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.702363847Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:16.007488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403745, - "rtt_ms": 1.403745, + "rtt_ns": 1486166, + "rtt_ms": 1.486166, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:51.702438496Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:16.007504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087976, - "rtt_ms": 1.087976, + "rtt_ns": 1717916, + "rtt_ms": 1.717916, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.703081644Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:04:16.007519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082986, - "rtt_ms": 1.082986, + "rtt_ns": 2241042, + "rtt_ms": 2.241042, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.703083014Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:04:16.0078-08:00" }, { "operation": "add_edge", - "rtt_ns": 2216293, - "rtt_ms": 2.216293, + "rtt_ns": 1407750, + "rtt_ms": 1.40775, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.703156854Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:04:16.007954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486656, - "rtt_ms": 1.486656, + "rtt_ns": 2062458, + "rtt_ms": 2.062458, "checkpoint": 0, "vertex_from": "512", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.703204024Z" + "timestamp": "2025-11-27T04:04:16.008152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255356, - "rtt_ms": 1.255356, + "rtt_ns": 1923416, + "rtt_ms": 1.923416, "checkpoint": 0, "vertex_from": "512", "vertex_to": "617", - "timestamp": "2025-11-27T01:23:51.703242224Z" + "timestamp": "2025-11-27T04:04:16.008169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287746, - "rtt_ms": 1.287746, + "rtt_ns": 1954792, + "rtt_ms": 1.954792, "checkpoint": 0, "vertex_from": "512", "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.703248234Z" + "timestamp": "2025-11-27T04:04:16.008184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418175, - "rtt_ms": 1.418175, + "rtt_ns": 1925084, + "rtt_ms": 1.925084, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.703411683Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:16.008501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725304, - "rtt_ms": 1.725304, + "rtt_ns": 1751958, + "rtt_ms": 1.751958, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.704090461Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.009257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781524, - "rtt_ms": 1.781524, + "rtt_ns": 1471208, + "rtt_ms": 1.471208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.704098911Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:04:16.009273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725685, - "rtt_ms": 1.725685, + "rtt_ns": 1855709, + "rtt_ms": 1.855709, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.704165411Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:16.009344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916285, - "rtt_ms": 1.916285, + "rtt_ns": 1327042, + "rtt_ms": 1.327042, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.704998859Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:16.009497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121114, - "rtt_ms": 2.121114, + "rtt_ns": 1013709, + "rtt_ms": 1.013709, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "602", - "timestamp": "2025-11-27T01:23:51.705205618Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:16.009516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191934, - "rtt_ms": 2.191934, + "rtt_ns": 2011750, + "rtt_ms": 2.01175, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.705349718Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.009531-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164304, - "rtt_ms": 2.164304, + "rtt_ns": 2572084, + "rtt_ms": 2.572084, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "633", - "timestamp": "2025-11-27T01:23:51.705370038Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:04:16.009547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286083, - "rtt_ms": 2.286083, + "rtt_ns": 1871042, + "rtt_ms": 1.871042, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.705535387Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:16.009826-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356833, - "rtt_ms": 2.356833, + "rtt_ns": 1690667, + "rtt_ms": 1.690667, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.705600127Z" + "vertex_to": "633", + "timestamp": "2025-11-27T04:04:16.009844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678356, - "rtt_ms": 1.678356, + "rtt_ns": 1810125, + "rtt_ms": 1.810125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.705844717Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:16.009995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785875, - "rtt_ms": 1.785875, + "rtt_ns": 1182583, + "rtt_ms": 1.182583, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:51.705877366Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:04:16.010528-08:00" }, { "operation": "add_edge", - "rtt_ns": 3367491, - "rtt_ms": 3.367491, + "rtt_ns": 1295042, + "rtt_ms": 1.295042, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.706780204Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:04:16.010569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810255, - "rtt_ms": 1.810255, + "rtt_ns": 1621709, + "rtt_ms": 1.621709, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:51.706810224Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:04:16.01088-08:00" }, { "operation": "add_edge", - "rtt_ns": 2710553, - "rtt_ms": 2.710553, + "rtt_ns": 1428459, + "rtt_ms": 1.428459, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:51.706810424Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:16.010945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669016, - "rtt_ms": 1.669016, + "rtt_ns": 1473417, + "rtt_ms": 1.473417, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.706876214Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:16.011005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542246, - "rtt_ms": 1.542246, + "rtt_ns": 1492833, + "rtt_ms": 1.492833, "checkpoint": 0, "vertex_from": "512", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.706913484Z" + "timestamp": "2025-11-27T04:04:16.01104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565306, - "rtt_ms": 1.565306, + "rtt_ns": 1446125, + "rtt_ms": 1.446125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.706915984Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:04:16.011291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983745, - "rtt_ms": 1.983745, + "rtt_ns": 1809667, + "rtt_ms": 1.809667, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.707521382Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:04:16.011308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734845, - "rtt_ms": 1.734845, + "rtt_ns": 1327667, + "rtt_ms": 1.327667, "checkpoint": 0, "vertex_from": "512", "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.707581392Z" + "timestamp": "2025-11-27T04:04:16.011323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747276, - "rtt_ms": 1.747276, + "rtt_ns": 2037917, + "rtt_ms": 2.037917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "723", - "timestamp": "2025-11-27T01:23:51.707627142Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.011864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058224, - "rtt_ms": 2.058224, + "rtt_ns": 1097000, + "rtt_ms": 1.097, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "789", - "timestamp": "2025-11-27T01:23:51.707659401Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.012139-08:00" }, { "operation": "add_edge", - "rtt_ns": 929407, - "rtt_ms": 0.929407, + "rtt_ns": 1530917, + "rtt_ms": 1.530917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "663", - "timestamp": "2025-11-27T01:23:51.707711301Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:04:16.012414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025867, - "rtt_ms": 1.025867, + "rtt_ns": 1472250, + "rtt_ms": 1.47225, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "531", - "timestamp": "2025-11-27T01:23:51.707837251Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:04:16.012419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528825, - "rtt_ms": 1.528825, + "rtt_ns": 1278583, + "rtt_ms": 1.278583, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.708446409Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:04:16.012587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563105, - "rtt_ms": 1.563105, + "rtt_ns": 1313542, + "rtt_ms": 1.313542, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.708477439Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:16.012605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668255, - "rtt_ms": 1.668255, + "rtt_ns": 1295250, + "rtt_ms": 1.29525, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.708545709Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:04:16.012619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737535, - "rtt_ms": 1.737535, + "rtt_ns": 1627708, + "rtt_ms": 1.627708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "613", - "timestamp": "2025-11-27T01:23:51.708549909Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:16.012634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323726, - "rtt_ms": 1.323726, + "rtt_ns": 2122000, + "rtt_ms": 2.122, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.708845808Z" + "vertex_to": "723", + "timestamp": "2025-11-27T04:04:16.012651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237086, - "rtt_ms": 1.237086, + "rtt_ns": 2095000, + "rtt_ms": 2.095, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:51.708865178Z" + "vertex_to": "663", + "timestamp": "2025-11-27T04:04:16.012665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208357, - "rtt_ms": 1.208357, + "rtt_ns": 1500833, + "rtt_ms": 1.500833, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.708921638Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:04:16.013366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371486, - "rtt_ms": 1.371486, + "rtt_ns": 1207667, + "rtt_ms": 1.207667, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:51.708954588Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:16.013623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161267, - "rtt_ms": 1.161267, + "rtt_ns": 1258500, + "rtt_ms": 1.2585, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "934", - "timestamp": "2025-11-27T01:23:51.709000168Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:04:16.013864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352697, - "rtt_ms": 1.352697, + "rtt_ns": 1743375, + "rtt_ms": 1.743375, "checkpoint": 0, "vertex_from": "512", "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.709013058Z" + "timestamp": "2025-11-27T04:04:16.013885-08:00" }, { "operation": "add_edge", - "rtt_ns": 702338, - "rtt_ms": 0.702338, + "rtt_ns": 1294834, + "rtt_ms": 1.294834, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.709149437Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:04:16.013915-08:00" }, { "operation": "add_edge", - "rtt_ns": 628188, - "rtt_ms": 0.628188, + "rtt_ns": 1480208, + "rtt_ms": 1.480208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:51.709174797Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:04:16.014068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190317, - "rtt_ms": 1.190317, + "rtt_ns": 1685666, + "rtt_ms": 1.685666, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "611", - "timestamp": "2025-11-27T01:23:51.709669616Z" + "vertex_to": "934", + "timestamp": "2025-11-27T04:04:16.014105-08:00" }, { "operation": "add_edge", - "rtt_ns": 837218, - "rtt_ms": 0.837218, + "rtt_ns": 1525625, + "rtt_ms": 1.525625, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "753", - "timestamp": "2025-11-27T01:23:51.709703706Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:04:16.014161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193977, - "rtt_ms": 1.193977, + "rtt_ns": 1704458, + "rtt_ms": 1.704458, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "519", - "timestamp": "2025-11-27T01:23:51.709745326Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:16.014356-08:00" }, { "operation": "add_edge", - "rtt_ns": 852398, - "rtt_ms": 0.852398, + "rtt_ns": 2305792, + "rtt_ms": 2.305792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:51.709775336Z" + "vertex_to": "753", + "timestamp": "2025-11-27T04:04:16.014971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025987, - "rtt_ms": 1.025987, + "rtt_ns": 2046500, + "rtt_ms": 2.0465, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.709872775Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:04:16.015414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064467, - "rtt_ms": 1.064467, + "rtt_ns": 1859709, + "rtt_ms": 1.859709, "checkpoint": 0, "vertex_from": "512", "vertex_to": "713", - "timestamp": "2025-11-27T01:23:51.710020035Z" + "timestamp": "2025-11-27T04:04:16.015483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513365, - "rtt_ms": 1.513365, + "rtt_ns": 1210000, + "rtt_ms": 1.21, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "798", - "timestamp": "2025-11-27T01:23:51.710514833Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:04:16.015567-08:00" }, { "operation": "add_edge", - "rtt_ns": 917347, - "rtt_ms": 0.917347, + "rtt_ns": 1552333, + "rtt_ms": 1.552333, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.710622183Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:16.015622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506286, - "rtt_ms": 1.506286, + "rtt_ns": 1721542, + "rtt_ms": 1.721542, "checkpoint": 0, "vertex_from": "512", "vertex_to": "610", - "timestamp": "2025-11-27T01:23:51.710656653Z" + "timestamp": "2025-11-27T04:04:16.015637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496566, - "rtt_ms": 1.496566, + "rtt_ns": 1774292, + "rtt_ms": 1.774292, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.710672263Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.01566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681975, - "rtt_ms": 1.681975, + "rtt_ns": 2290292, + "rtt_ms": 2.290292, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.710696143Z" + "vertex_to": "798", + "timestamp": "2025-11-27T04:04:16.016155-08:00" }, { "operation": "add_edge", - "rtt_ns": 795928, - "rtt_ms": 0.795928, + "rtt_ns": 2358083, + "rtt_ms": 2.358083, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.711419221Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:04:16.01652-08:00" }, { "operation": "add_edge", - "rtt_ns": 761598, - "rtt_ms": 0.761598, + "rtt_ns": 2430083, + "rtt_ms": 2.430083, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "850", - "timestamp": "2025-11-27T01:23:51.711419601Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:16.016536-08:00" }, { "operation": "add_edge", - "rtt_ns": 934708, - "rtt_ms": 0.934708, + "rtt_ns": 1801834, + "rtt_ms": 1.801834, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.711451061Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:04:16.016774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742155, - "rtt_ms": 1.742155, + "rtt_ns": 1418958, + "rtt_ms": 1.418958, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:51.711488691Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.016988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738965, - "rtt_ms": 1.738965, + "rtt_ns": 1574250, + "rtt_ms": 1.57425, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.71161291Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:04:16.017059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610805, - "rtt_ms": 1.610805, + "rtt_ns": 1423416, + "rtt_ms": 1.423416, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.71163273Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.017085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865204, - "rtt_ms": 1.865204, + "rtt_ns": 1598042, + "rtt_ms": 1.598042, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.71164173Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:04:16.017236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971754, - "rtt_ms": 1.971754, + "rtt_ns": 1834708, + "rtt_ms": 1.834708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.71164356Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.017252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507066, - "rtt_ms": 1.507066, + "rtt_ns": 1646375, + "rtt_ms": 1.646375, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:51.712204279Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.017269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584625, - "rtt_ms": 1.584625, + "rtt_ns": 1380125, + "rtt_ms": 1.380125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.712258598Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:04:16.017536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227956, - "rtt_ms": 1.227956, + "rtt_ns": 1250875, + "rtt_ms": 1.250875, "checkpoint": 0, "vertex_from": "512", "vertex_to": "963", - "timestamp": "2025-11-27T01:23:51.712649917Z" + "timestamp": "2025-11-27T04:04:16.017772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405606, - "rtt_ms": 1.405606, + "rtt_ns": 1250709, + "rtt_ms": 1.250709, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "775", - "timestamp": "2025-11-27T01:23:51.712858327Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:04:16.017788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492346, - "rtt_ms": 1.492346, + "rtt_ns": 1273125, + "rtt_ms": 1.273125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "773", - "timestamp": "2025-11-27T01:23:51.712913997Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:04:16.01805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484685, - "rtt_ms": 1.484685, + "rtt_ns": 1236792, + "rtt_ms": 1.236792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "946", - "timestamp": "2025-11-27T01:23:51.712975086Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.018324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474016, - "rtt_ms": 1.474016, + "rtt_ns": 1316584, + "rtt_ms": 1.316584, "checkpoint": 0, "vertex_from": "512", "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.713088146Z" + "timestamp": "2025-11-27T04:04:16.018376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482156, - "rtt_ms": 1.482156, + "rtt_ns": 1568375, + "rtt_ms": 1.568375, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "699", - "timestamp": "2025-11-27T01:23:51.713127486Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:04:16.018557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468025, - "rtt_ms": 1.468025, + "rtt_ns": 1309583, + "rtt_ms": 1.309583, "checkpoint": 0, "vertex_from": "512", "vertex_to": "590", - "timestamp": "2025-11-27T01:23:51.713673584Z" + "timestamp": "2025-11-27T04:04:16.01858-08:00" }, { "operation": "add_edge", - "rtt_ns": 892677, - "rtt_ms": 0.892677, + "rtt_ns": 1528083, + "rtt_ms": 1.528083, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.713751934Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:04:16.018765-08:00" }, { "operation": "add_edge", - "rtt_ns": 2154014, - "rtt_ms": 2.154014, + "rtt_ns": 1532792, + "rtt_ms": 1.532792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.713788964Z" + "vertex_to": "699", + "timestamp": "2025-11-27T04:04:16.018785-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173564, - "rtt_ms": 2.173564, + "rtt_ns": 1361416, + "rtt_ms": 1.361416, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.713816794Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:04:16.018899-08:00" }, { "operation": "add_edge", - "rtt_ns": 901457, - "rtt_ms": 0.901457, + "rtt_ns": 1469041, + "rtt_ms": 1.469041, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:51.713817794Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.019242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606226, - "rtt_ms": 1.606226, + "rtt_ns": 1533541, + "rtt_ms": 1.533541, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:51.713866774Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.019322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255737, - "rtt_ms": 1.255737, + "rtt_ns": 1095708, + "rtt_ms": 1.095708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.713907044Z" + "vertex_to": "917", + "timestamp": "2025-11-27T04:04:16.019474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069447, - "rtt_ms": 1.069447, + "rtt_ns": 1167167, + "rtt_ms": 1.167167, "checkpoint": 0, "vertex_from": "512", "vertex_to": "838", - "timestamp": "2025-11-27T01:23:51.714045903Z" + "timestamp": "2025-11-27T04:04:16.019494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430916, - "rtt_ms": 1.430916, + "rtt_ns": 1620083, + "rtt_ms": 1.620083, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "739", - "timestamp": "2025-11-27T01:23:51.714560042Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:04:16.019672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499466, - "rtt_ms": 1.499466, + "rtt_ns": 1181167, + "rtt_ms": 1.181167, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "917", - "timestamp": "2025-11-27T01:23:51.714588772Z" - }, - { - "operation": "add_edge", - "rtt_ns": 811677, - "rtt_ms": 0.811677, - "checkpoint": 0, - "vertex_from": "513", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.714630481Z" + "vertex_to": "739", + "timestamp": "2025-11-27T04:04:16.01974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248207, - "rtt_ms": 1.248207, + "rtt_ns": 1499667, + "rtt_ms": 1.499667, "checkpoint": 0, "vertex_from": "512", "vertex_to": "948", - "timestamp": "2025-11-27T01:23:51.714923321Z" + "timestamp": "2025-11-27T04:04:16.020082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180246, - "rtt_ms": 1.180246, + "rtt_ns": 1332625, + "rtt_ms": 1.332625, "checkpoint": 0, "vertex_from": "512", "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.71493326Z" + "timestamp": "2025-11-27T04:04:16.020099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282066, - "rtt_ms": 1.282066, + "rtt_ns": 1261375, + "rtt_ms": 1.261375, "checkpoint": 0, "vertex_from": "513", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.71509995Z" + "timestamp": "2025-11-27T04:04:16.020162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344956, - "rtt_ms": 1.344956, + "rtt_ns": 1394333, + "rtt_ms": 1.394333, "checkpoint": 0, "vertex_from": "513", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.71513485Z" + "timestamp": "2025-11-27T04:04:16.020181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313946, - "rtt_ms": 1.313946, + "rtt_ns": 1168584, + "rtt_ms": 1.168584, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "515", - "timestamp": "2025-11-27T01:23:51.71522165Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.020492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280406, - "rtt_ms": 1.280406, + "rtt_ns": 1267750, + "rtt_ms": 1.26775, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "598", - "timestamp": "2025-11-27T01:23:51.715326969Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.02051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492075, - "rtt_ms": 1.492075, + "rtt_ns": 1394542, + "rtt_ms": 1.394542, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.715359629Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:04:16.02087-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1390166, + "rtt_ms": 1.390166, + "checkpoint": 0, + "vertex_from": "513", + "vertex_to": "598", + "timestamp": "2025-11-27T04:04:16.020885-08:00" }, { "operation": "add_edge", - "rtt_ns": 839937, - "rtt_ms": 0.839937, + "rtt_ns": 1643750, + "rtt_ms": 1.64375, "checkpoint": 0, "vertex_from": "513", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.715429629Z" + "timestamp": "2025-11-27T04:04:16.021385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056376, - "rtt_ms": 1.056376, + "rtt_ns": 1725500, + "rtt_ms": 1.7255, "checkpoint": 0, "vertex_from": "513", "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.715617328Z" + "timestamp": "2025-11-27T04:04:16.0214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023417, - "rtt_ms": 1.023417, + "rtt_ns": 1552834, + "rtt_ms": 1.552834, "checkpoint": 0, "vertex_from": "513", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.715655608Z" + "timestamp": "2025-11-27T04:04:16.021636-08:00" }, { "operation": "add_edge", - "rtt_ns": 828517, - "rtt_ms": 0.828517, + "rtt_ns": 1492750, + "rtt_ms": 1.49275, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.715753128Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.021656-08:00" }, { "operation": "add_edge", - "rtt_ns": 931298, - "rtt_ms": 0.931298, + "rtt_ns": 1495542, + "rtt_ms": 1.495542, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.715866628Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:16.021677-08:00" }, { "operation": "add_edge", - "rtt_ns": 881007, - "rtt_ms": 0.881007, + "rtt_ns": 1593083, + "rtt_ms": 1.593083, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.715981667Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:16.021693-08:00" }, { "operation": "add_edge", - "rtt_ns": 911017, - "rtt_ms": 0.911017, + "rtt_ns": 1554666, + "rtt_ms": 1.554666, "checkpoint": 0, "vertex_from": "513", "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.716046617Z" + "timestamp": "2025-11-27T04:04:16.022047-08:00" }, { "operation": "add_edge", - "rtt_ns": 919037, - "rtt_ms": 0.919037, + "rtt_ns": 1591625, + "rtt_ms": 1.591625, "checkpoint": 0, "vertex_from": "513", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.716141637Z" + "timestamp": "2025-11-27T04:04:16.022103-08:00" }, { "operation": "add_edge", - "rtt_ns": 938128, - "rtt_ms": 0.938128, + "rtt_ns": 1448250, + "rtt_ms": 1.44825, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.716265947Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.022334-08:00" }, { "operation": "add_edge", - "rtt_ns": 968837, - "rtt_ms": 0.968837, + "rtt_ns": 1627041, + "rtt_ms": 1.627041, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.716330406Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.022498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037477, - "rtt_ms": 1.037477, + "rtt_ns": 1260875, + "rtt_ms": 1.260875, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.716904995Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:04:16.022649-08:00" }, { "operation": "add_edge", - "rtt_ns": 883808, - "rtt_ms": 0.883808, + "rtt_ns": 1264333, + "rtt_ms": 1.264333, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "903", - "timestamp": "2025-11-27T01:23:51.716931435Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:16.022665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179437, - "rtt_ms": 1.179437, + "rtt_ns": 1446709, + "rtt_ms": 1.446709, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.716933605Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:04:16.023158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398287, - "rtt_ms": 1.398287, + "rtt_ns": 1533792, + "rtt_ms": 1.533792, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.717018055Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:04:16.023171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393606, - "rtt_ms": 1.393606, + "rtt_ns": 1529167, + "rtt_ms": 1.529167, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "525", - "timestamp": "2025-11-27T01:23:51.717050184Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:16.023186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103777, - "rtt_ms": 1.103777, + "rtt_ns": 1524042, + "rtt_ms": 1.524042, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.717086504Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:16.023202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662545, - "rtt_ms": 1.662545, + "rtt_ns": 1481000, + "rtt_ms": 1.481, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.717093044Z" + "vertex_to": "903", + "timestamp": "2025-11-27T04:04:16.023531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482346, - "rtt_ms": 1.482346, + "rtt_ns": 1441459, + "rtt_ms": 1.441459, "checkpoint": 0, "vertex_from": "513", "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.717624753Z" + "timestamp": "2025-11-27T04:04:16.023546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503365, - "rtt_ms": 1.503365, + "rtt_ns": 1521458, + "rtt_ms": 1.521458, "checkpoint": 0, "vertex_from": "513", "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.717770662Z" + "timestamp": "2025-11-27T04:04:16.023856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028227, - "rtt_ms": 1.028227, + "rtt_ns": 1921542, + "rtt_ms": 1.921542, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.717960352Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:04:16.02442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068217, - "rtt_ms": 1.068217, + "rtt_ns": 1772750, + "rtt_ms": 1.77275, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:51.718004352Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:16.024439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206346, - "rtt_ms": 1.206346, + "rtt_ns": 1934875, + "rtt_ms": 1.934875, "checkpoint": 0, "vertex_from": "513", "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.718112271Z" + "timestamp": "2025-11-27T04:04:16.024585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541933, - "rtt_ms": 2.541933, + "rtt_ns": 1742791, + "rtt_ms": 1.742791, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.718873279Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:04:16.024929-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012874, - "rtt_ms": 2.012874, + "rtt_ns": 1786959, + "rtt_ms": 1.786959, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.719031969Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:04:16.024947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995055, - "rtt_ms": 1.995055, + "rtt_ns": 1433209, + "rtt_ms": 1.433209, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:51.719083069Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:16.024965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585275, - "rtt_ms": 1.585275, + "rtt_ns": 1483292, + "rtt_ms": 1.483292, "checkpoint": 0, "vertex_from": "513", "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.719211368Z" + "timestamp": "2025-11-27T04:04:16.02503-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316324, - "rtt_ms": 2.316324, + "rtt_ns": 1853917, + "rtt_ms": 1.853917, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:51.719367378Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:04:16.025057-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381634, - "rtt_ms": 2.381634, + "rtt_ns": 1899041, + "rtt_ms": 1.899041, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.719475908Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.02507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617925, - "rtt_ms": 1.617925, + "rtt_ns": 1512500, + "rtt_ms": 1.5125, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.719579167Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:16.02537-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115814, - "rtt_ms": 2.115814, + "rtt_ns": 999125, + "rtt_ms": 0.999125, "checkpoint": 0, "vertex_from": "513", "vertex_to": "690", - "timestamp": "2025-11-27T01:23:51.720229335Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2477083, - "rtt_ms": 2.477083, - "checkpoint": 0, - "vertex_from": "513", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.720248685Z" + "timestamp": "2025-11-27T04:04:16.025586-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283293, - "rtt_ms": 2.283293, + "rtt_ns": 1218167, + "rtt_ms": 1.218167, "checkpoint": 0, "vertex_from": "513", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.720288385Z" + "timestamp": "2025-11-27T04:04:16.02566-08:00" }, { "operation": "add_edge", - "rtt_ns": 2070074, - "rtt_ms": 2.070074, + "rtt_ns": 1523917, + "rtt_ms": 1.523917, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.721153983Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:16.025945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176023, - "rtt_ms": 2.176023, + "rtt_ns": 999333, + "rtt_ms": 0.999333, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "566", - "timestamp": "2025-11-27T01:23:51.721209462Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:04:16.02607-08:00" }, { "operation": "add_edge", - "rtt_ns": 2350803, - "rtt_ms": 2.350803, + "rtt_ns": 1292334, + "rtt_ms": 1.292334, "checkpoint": 0, "vertex_from": "513", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.721225952Z" + "timestamp": "2025-11-27T04:04:16.026223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016904, - "rtt_ms": 2.016904, + "rtt_ns": 1283583, + "rtt_ms": 1.283583, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.721229122Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.026249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663005, - "rtt_ms": 1.663005, + "rtt_ns": 1391416, + "rtt_ms": 1.391416, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.721242942Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:04:16.026339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883134, - "rtt_ms": 1.883134, + "rtt_ns": 1443292, + "rtt_ms": 1.443292, "checkpoint": 0, "vertex_from": "513", "vertex_to": "568", - "timestamp": "2025-11-27T01:23:51.721252042Z" + "timestamp": "2025-11-27T04:04:16.026501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799084, - "rtt_ms": 1.799084, + "rtt_ns": 1488917, + "rtt_ms": 1.488917, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.721275882Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:16.026522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275997, - "rtt_ms": 1.275997, + "rtt_ns": 1168958, + "rtt_ms": 1.168958, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "779", - "timestamp": "2025-11-27T01:23:51.721506102Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.02654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615086, - "rtt_ms": 1.615086, + "rtt_ns": 1281292, + "rtt_ms": 1.281292, "checkpoint": 0, "vertex_from": "513", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.721864551Z" + "timestamp": "2025-11-27T04:04:16.026942-08:00" }, { "operation": "add_edge", - "rtt_ns": 914277, - "rtt_ms": 0.914277, + "rtt_ns": 1508750, + "rtt_ms": 1.50875, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.72206941Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:04:16.027095-08:00" }, { "operation": "add_edge", - "rtt_ns": 829548, - "rtt_ms": 0.829548, + "rtt_ns": 1349292, + "rtt_ms": 1.349292, "checkpoint": 0, - "vertex_from": "514", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.72207406Z" + "vertex_from": "513", + "vertex_to": "812", + "timestamp": "2025-11-27T04:04:16.027573-08:00" }, { "operation": "add_edge", - "rtt_ns": 917228, - "rtt_ms": 0.917228, + "rtt_ns": 1249375, + "rtt_ms": 1.249375, "checkpoint": 0, "vertex_from": "513", "vertex_to": "682", - "timestamp": "2025-11-27T01:23:51.72214762Z" + "timestamp": "2025-11-27T04:04:16.027591-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1615166, + "rtt_ms": 1.615166, + "checkpoint": 0, + "vertex_from": "513", + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:16.027686-08:00" }, { "operation": "add_edge", - "rtt_ns": 970848, - "rtt_ms": 0.970848, + "rtt_ns": 1452458, + "rtt_ms": 1.452458, "checkpoint": 0, "vertex_from": "513", "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.7221977Z" + "timestamp": "2025-11-27T04:04:16.027702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067174, - "rtt_ms": 2.067174, + "rtt_ns": 1795042, + "rtt_ms": 1.795042, "checkpoint": 0, "vertex_from": "513", "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.722356279Z" + "timestamp": "2025-11-27T04:04:16.027741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639185, - "rtt_ms": 1.639185, + "rtt_ns": 1504250, + "rtt_ms": 1.50425, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.722916087Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.028006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674885, - "rtt_ms": 1.674885, + "rtt_ns": 1566709, + "rtt_ms": 1.566709, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.722927787Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:16.028107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762405, - "rtt_ms": 1.762405, + "rtt_ns": 1679000, + "rtt_ms": 1.679, "checkpoint": 0, - "vertex_from": "513", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:51.722973847Z" + "vertex_from": "514", + "vertex_to": "593", + "timestamp": "2025-11-27T04:04:16.028201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120396, - "rtt_ms": 1.120396, + "rtt_ns": 1335542, + "rtt_ms": 1.335542, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.722986437Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:04:16.028278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528925, - "rtt_ms": 1.528925, + "rtt_ns": 1225709, + "rtt_ms": 1.225709, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:51.723035597Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.028322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228276, - "rtt_ms": 1.228276, + "rtt_ns": 1350375, + "rtt_ms": 1.350375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.723377296Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.028943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406056, - "rtt_ms": 1.406056, + "rtt_ns": 1388250, + "rtt_ms": 1.38825, "checkpoint": 0, "vertex_from": "514", "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.723476476Z" + "timestamp": "2025-11-27T04:04:16.028962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407966, - "rtt_ms": 1.407966, + "rtt_ns": 1633833, + "rtt_ms": 1.633833, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.723483436Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:04:16.029321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323746, - "rtt_ms": 1.323746, + "rtt_ns": 1636583, + "rtt_ms": 1.636583, "checkpoint": 0, "vertex_from": "514", "vertex_to": "595", - "timestamp": "2025-11-27T01:23:51.723522716Z" + "timestamp": "2025-11-27T04:04:16.02934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710605, - "rtt_ms": 1.710605, + "rtt_ns": 1367791, + "rtt_ms": 1.367791, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.724067814Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:16.029375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185887, - "rtt_ms": 1.185887, + "rtt_ns": 1825125, + "rtt_ms": 1.825125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.724103244Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:16.029569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191747, - "rtt_ms": 1.191747, + "rtt_ns": 1478917, + "rtt_ms": 1.478917, "checkpoint": 0, "vertex_from": "514", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.724120294Z" + "timestamp": "2025-11-27T04:04:16.029587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179797, - "rtt_ms": 1.179797, + "rtt_ns": 1349916, + "rtt_ms": 1.349916, "checkpoint": 0, "vertex_from": "514", "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.724167384Z" + "timestamp": "2025-11-27T04:04:16.029629-08:00" }, { "operation": "add_edge", - "rtt_ns": 890657, - "rtt_ms": 0.890657, + "rtt_ns": 1459291, + "rtt_ms": 1.459291, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.724268833Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:16.029661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452506, - "rtt_ms": 1.452506, + "rtt_ns": 1489959, + "rtt_ms": 1.489959, "checkpoint": 0, "vertex_from": "514", "vertex_to": "618", - "timestamp": "2025-11-27T01:23:51.724489193Z" + "timestamp": "2025-11-27T04:04:16.029814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425886, - "rtt_ms": 1.425886, + "rtt_ns": 1150541, + "rtt_ms": 1.150541, "checkpoint": 0, "vertex_from": "514", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.724903322Z" + "timestamp": "2025-11-27T04:04:16.030113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943045, - "rtt_ms": 1.943045, + "rtt_ns": 1420625, + "rtt_ms": 1.420625, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.724917752Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1515245, - "rtt_ms": 1.515245, - "checkpoint": 0, - "vertex_from": "514", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.724999621Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:16.030364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339426, - "rtt_ms": 1.339426, + "rtt_ns": 1250417, + "rtt_ms": 1.250417, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.7255085Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:04:16.030626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096124, - "rtt_ms": 2.096124, + "rtt_ns": 1425875, + "rtt_ms": 1.425875, "checkpoint": 0, "vertex_from": "514", "vertex_to": "961", - "timestamp": "2025-11-27T01:23:51.72562002Z" + "timestamp": "2025-11-27T04:04:16.030766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132577, - "rtt_ms": 1.132577, + "rtt_ns": 1183292, + "rtt_ms": 1.183292, "checkpoint": 0, "vertex_from": "514", "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.72562282Z" + "timestamp": "2025-11-27T04:04:16.030998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034614, - "rtt_ms": 2.034614, + "rtt_ns": 1692375, + "rtt_ms": 1.692375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "850", - "timestamp": "2025-11-27T01:23:51.726111148Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.031014-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026964, - "rtt_ms": 2.026964, + "rtt_ns": 1669792, + "rtt_ms": 1.669792, "checkpoint": 0, "vertex_from": "514", "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.726149088Z" + "timestamp": "2025-11-27T04:04:16.031258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922585, - "rtt_ms": 1.922585, + "rtt_ns": 1644958, + "rtt_ms": 1.644958, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:51.726193088Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:04:16.031275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187844, - "rtt_ms": 2.187844, + "rtt_ns": 1721958, + "rtt_ms": 1.721958, "checkpoint": 0, "vertex_from": "514", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.726292698Z" + "timestamp": "2025-11-27T04:04:16.031292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467116, - "rtt_ms": 1.467116, + "rtt_ns": 1029042, + "rtt_ms": 1.029042, "checkpoint": 0, "vertex_from": "514", "vertex_to": "668", - "timestamp": "2025-11-27T01:23:51.726385978Z" + "timestamp": "2025-11-27T04:04:16.031395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523525, - "rtt_ms": 1.523525, + "rtt_ns": 1335167, + "rtt_ms": 1.335167, "checkpoint": 0, "vertex_from": "514", "vertex_to": "888", - "timestamp": "2025-11-27T01:23:51.726428797Z" + "timestamp": "2025-11-27T04:04:16.031449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456476, - "rtt_ms": 1.456476, + "rtt_ns": 1823750, + "rtt_ms": 1.82375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.726457737Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:04:16.031486-08:00" }, { "operation": "add_edge", - "rtt_ns": 987097, - "rtt_ms": 0.987097, + "rtt_ns": 917708, + "rtt_ms": 0.917708, "checkpoint": 0, "vertex_from": "514", "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.726497107Z" + "timestamp": "2025-11-27T04:04:16.031685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461386, - "rtt_ms": 1.461386, + "rtt_ns": 1251125, + "rtt_ms": 1.251125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.727082606Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.031878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604605, - "rtt_ms": 1.604605, + "rtt_ns": 1447000, + "rtt_ms": 1.447, "checkpoint": 0, "vertex_from": "514", "vertex_to": "872", - "timestamp": "2025-11-27T01:23:51.727228965Z" + "timestamp": "2025-11-27T04:04:16.032462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064707, - "rtt_ms": 1.064707, + "rtt_ns": 1488542, + "rtt_ms": 1.488542, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.727258935Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.032488-08:00" }, { "operation": "add_edge", - "rtt_ns": 994907, - "rtt_ms": 0.994907, + "rtt_ns": 1214875, + "rtt_ms": 1.214875, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.727288895Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.032701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159827, - "rtt_ms": 1.159827, + "rtt_ns": 1037500, + "rtt_ms": 1.0375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.727309975Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:04:16.032723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225707, - "rtt_ms": 1.225707, + "rtt_ns": 1764667, + "rtt_ms": 1.764667, "checkpoint": 0, "vertex_from": "514", "vertex_to": "923", - "timestamp": "2025-11-27T01:23:51.727339265Z" + "timestamp": "2025-11-27T04:04:16.033023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155117, - "rtt_ms": 1.155117, + "rtt_ns": 1753375, + "rtt_ms": 1.753375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:51.727653474Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:04:16.033029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225007, - "rtt_ms": 1.225007, + "rtt_ns": 1754958, + "rtt_ms": 1.754958, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:51.727685144Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:16.033047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781045, - "rtt_ms": 1.781045, + "rtt_ns": 1624917, + "rtt_ms": 1.624917, "checkpoint": 0, "vertex_from": "514", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.728168043Z" + "timestamp": "2025-11-27T04:04:16.033076-08:00" }, { "operation": "add_edge", - "rtt_ns": 908168, - "rtt_ms": 0.908168, + "rtt_ns": 1757250, + "rtt_ms": 1.75725, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.728167993Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:16.033155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121816, - "rtt_ms": 1.121816, + "rtt_ns": 1749167, + "rtt_ms": 1.749167, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.728206322Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:04:16.033628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834745, - "rtt_ms": 1.834745, + "rtt_ns": 1169750, + "rtt_ms": 1.16975, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.728264712Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:04:16.033894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002447, - "rtt_ms": 1.002447, + "rtt_ns": 1601083, + "rtt_ms": 1.601083, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:51.728292532Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:04:16.03409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337266, - "rtt_ms": 1.337266, + "rtt_ns": 1991333, + "rtt_ms": 1.991333, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:51.728567871Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:16.034455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277736, - "rtt_ms": 1.277736, + "rtt_ns": 1779667, + "rtt_ms": 1.779667, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.728619341Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.034482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347346, - "rtt_ms": 1.347346, + "rtt_ns": 1420917, + "rtt_ms": 1.420917, "checkpoint": 0, "vertex_from": "514", "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.72903352Z" + "timestamp": "2025-11-27T04:04:16.034499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873975, - "rtt_ms": 1.873975, + "rtt_ns": 1551291, + "rtt_ms": 1.551291, "checkpoint": 0, "vertex_from": "514", "vertex_to": "690", - "timestamp": "2025-11-27T01:23:51.72918507Z" + "timestamp": "2025-11-27T04:04:16.034575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562126, - "rtt_ms": 1.562126, + "rtt_ns": 1533292, + "rtt_ms": 1.533292, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.72921753Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:16.03469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157106, - "rtt_ms": 1.157106, + "rtt_ns": 1675041, + "rtt_ms": 1.675041, + "checkpoint": 0, + "vertex_from": "514", + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.034706-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1717208, + "rtt_ms": 1.717208, "checkpoint": 0, "vertex_from": "514", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.729327449Z" + "timestamp": "2025-11-27T04:04:16.035347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462596, - "rtt_ms": 1.462596, + "rtt_ns": 1510333, + "rtt_ms": 1.510333, "checkpoint": 0, - "vertex_from": "515", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.730083617Z" + "vertex_from": "514", + "vertex_to": "906", + "timestamp": "2025-11-27T04:04:16.035405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879085, - "rtt_ms": 1.879085, + "rtt_ns": 1367666, + "rtt_ms": 1.367666, "checkpoint": 0, "vertex_from": "514", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.730144937Z" + "timestamp": "2025-11-27T04:04:16.03546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922085, - "rtt_ms": 1.922085, + "rtt_ns": 2526375, + "rtt_ms": 2.526375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "698", - "timestamp": "2025-11-27T01:23:51.730215687Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.035575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089137, - "rtt_ms": 1.089137, + "rtt_ns": 1297917, + "rtt_ms": 1.297917, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.730275527Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:04:16.036005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249793, - "rtt_ms": 2.249793, + "rtt_ns": 1448667, + "rtt_ms": 1.448667, "checkpoint": 0, - "vertex_from": "514", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.730418906Z" + "vertex_from": "515", + "vertex_to": "931", + "timestamp": "2025-11-27T04:04:16.036025-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253434, - "rtt_ms": 2.253434, + "rtt_ns": 1529209, + "rtt_ms": 1.529209, "checkpoint": 0, - "vertex_from": "514", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:51.730461186Z" + "vertex_from": "515", + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:16.036029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892905, - "rtt_ms": 1.892905, + "rtt_ns": 1582500, + "rtt_ms": 1.5825, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "728", - "timestamp": "2025-11-27T01:23:51.730462396Z" + "vertex_to": "698", + "timestamp": "2025-11-27T04:04:16.036039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451696, - "rtt_ms": 1.451696, + "rtt_ns": 1670542, + "rtt_ms": 1.670542, "checkpoint": 0, - "vertex_from": "515", - "vertex_to": "931", - "timestamp": "2025-11-27T01:23:51.730486566Z" + "vertex_from": "514", + "vertex_to": "728", + "timestamp": "2025-11-27T04:04:16.036154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350886, - "rtt_ms": 1.350886, + "rtt_ns": 1485125, + "rtt_ms": 1.485125, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.730569296Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.036176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291547, - "rtt_ms": 1.291547, + "rtt_ns": 1106959, + "rtt_ms": 1.106959, "checkpoint": 0, "vertex_from": "515", "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.730619836Z" + "timestamp": "2025-11-27T04:04:16.036455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749605, - "rtt_ms": 1.749605, + "rtt_ns": 1445917, + "rtt_ms": 1.445917, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:51.731834912Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:16.037451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492726, - "rtt_ms": 1.492726, + "rtt_ns": 1279333, + "rtt_ms": 1.279333, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:51.731956952Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.037456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739745, - "rtt_ms": 1.739745, + "rtt_ns": 2010166, + "rtt_ms": 2.010166, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "556", - "timestamp": "2025-11-27T01:23:51.731957632Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:04:16.037472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592246, - "rtt_ms": 1.592246, + "rtt_ns": 1432958, + "rtt_ms": 1.432958, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:51.732012512Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:04:16.037473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607526, - "rtt_ms": 1.607526, + "rtt_ns": 1898083, + "rtt_ms": 1.898083, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.732069412Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:04:16.037475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553115, - "rtt_ms": 1.553115, + "rtt_ns": 1099083, + "rtt_ms": 1.099083, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.732123511Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:16.037556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664075, - "rtt_ms": 1.664075, + "rtt_ns": 2206875, + "rtt_ms": 2.206875, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.732151901Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:04:16.037615-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065864, - "rtt_ms": 2.065864, + "rtt_ns": 1481125, + "rtt_ms": 1.481125, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:51.732212661Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.037637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1950754, - "rtt_ms": 1.950754, + "rtt_ns": 1611875, + "rtt_ms": 1.611875, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.732227411Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:16.037642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613015, - "rtt_ms": 1.613015, + "rtt_ns": 1660666, + "rtt_ms": 1.660666, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.732234451Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:04:16.037686-08:00" }, { "operation": "add_edge", - "rtt_ns": 869257, - "rtt_ms": 0.869257, + "rtt_ns": 958875, + "rtt_ms": 0.958875, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.732883069Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:16.038601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355516, - "rtt_ms": 1.355516, + "rtt_ns": 1366792, + "rtt_ms": 1.366792, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.733191668Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:04:16.038824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554965, - "rtt_ms": 1.554965, + "rtt_ns": 1373584, + "rtt_ms": 1.373584, "checkpoint": 0, "vertex_from": "516", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.733516447Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2039764, - "rtt_ms": 2.039764, - "checkpoint": 0, - "vertex_from": "515", - "vertex_to": "516", - "timestamp": "2025-11-27T01:23:51.734000206Z" + "timestamp": "2025-11-27T04:04:16.038846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940304, - "rtt_ms": 1.940304, + "rtt_ns": 1246500, + "rtt_ms": 1.2465, "checkpoint": 0, "vertex_from": "516", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.734154885Z" + "timestamp": "2025-11-27T04:04:16.038884-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135703, - "rtt_ms": 2.135703, + "rtt_ns": 1462583, + "rtt_ms": 1.462583, "checkpoint": 0, "vertex_from": "516", "vertex_to": "521", - "timestamp": "2025-11-27T01:23:51.734206295Z" + "timestamp": "2025-11-27T04:04:16.03894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006414, - "rtt_ms": 2.006414, + "rtt_ns": 1269042, + "rtt_ms": 1.269042, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.734235095Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.038956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084674, - "rtt_ms": 2.084674, + "rtt_ns": 1392958, + "rtt_ms": 1.392958, "checkpoint": 0, "vertex_from": "516", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.734239595Z" + "timestamp": "2025-11-27T04:04:16.039009-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146494, - "rtt_ms": 2.146494, + "rtt_ns": 1470250, + "rtt_ms": 1.47025, "checkpoint": 0, "vertex_from": "516", "vertex_to": "534", - "timestamp": "2025-11-27T01:23:51.734271885Z" + "timestamp": "2025-11-27T04:04:16.039027-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1689792, + "rtt_ms": 1.689792, + "checkpoint": 0, + "vertex_from": "515", + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:16.039142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192054, - "rtt_ms": 2.192054, + "rtt_ns": 1699125, + "rtt_ms": 1.699125, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "647", - "timestamp": "2025-11-27T01:23:51.735386382Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:16.039173-08:00" }, { "operation": "add_edge", - "rtt_ns": 3251250, - "rtt_ms": 3.25125, + "rtt_ns": 1462333, + "rtt_ms": 1.462333, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.735489271Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:04:16.040065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653115, - "rtt_ms": 1.653115, + "rtt_ns": 1185041, + "rtt_ms": 1.185041, "checkpoint": 0, "vertex_from": "516", "vertex_to": "906", - "timestamp": "2025-11-27T01:23:51.73586044Z" + "timestamp": "2025-11-27T04:04:16.040142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2469273, - "rtt_ms": 2.469273, + "rtt_ns": 1530125, + "rtt_ms": 1.530125, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "518", - "timestamp": "2025-11-27T01:23:51.7359872Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:04:16.040558-08:00" }, { "operation": "add_edge", - "rtt_ns": 3161351, - "rtt_ms": 3.161351, + "rtt_ns": 1799417, + "rtt_ms": 1.799417, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "920", - "timestamp": "2025-11-27T01:23:51.73604715Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:16.040686-08:00" }, { "operation": "add_edge", - "rtt_ns": 2612033, - "rtt_ms": 2.612033, + "rtt_ns": 1698666, + "rtt_ms": 1.698666, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.736768448Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.040708-08:00" }, { "operation": "add_edge", - "rtt_ns": 3405160, - "rtt_ms": 3.40516, + "rtt_ns": 1900584, + "rtt_ms": 1.900584, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.737407356Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:04:16.040725-08:00" }, { "operation": "add_edge", - "rtt_ns": 3277041, - "rtt_ms": 3.277041, + "rtt_ns": 1879625, + "rtt_ms": 1.879625, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "740", - "timestamp": "2025-11-27T01:23:51.737550396Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:04:16.040726-08:00" }, { "operation": "add_edge", - "rtt_ns": 3358990, - "rtt_ms": 3.35899, + "rtt_ns": 1787375, + "rtt_ms": 1.787375, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "661", - "timestamp": "2025-11-27T01:23:51.737600665Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.040728-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259723, - "rtt_ms": 2.259723, + "rtt_ns": 1569292, + "rtt_ms": 1.569292, "checkpoint": 0, "vertex_from": "516", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.737648505Z" + "timestamp": "2025-11-27T04:04:16.040743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665925, - "rtt_ms": 1.665925, + "rtt_ns": 1601708, + "rtt_ms": 1.601708, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:51.737654505Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:04:16.040745-08:00" }, { "operation": "add_edge", - "rtt_ns": 3427370, - "rtt_ms": 3.42737, + "rtt_ns": 1562291, + "rtt_ms": 1.562291, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.737663805Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:16.041628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629155, - "rtt_ms": 1.629155, + "rtt_ns": 1680209, + "rtt_ms": 1.680209, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.737677695Z" + "vertex_to": "882", + "timestamp": "2025-11-27T04:04:16.041825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823135, - "rtt_ms": 1.823135, + "rtt_ns": 1159250, + "rtt_ms": 1.15925, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "882", - "timestamp": "2025-11-27T01:23:51.737685415Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.041846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195794, - "rtt_ms": 2.195794, + "rtt_ns": 1295083, + "rtt_ms": 1.295083, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.737688135Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:04:16.042024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195496, - "rtt_ms": 1.195496, + "rtt_ns": 1520125, + "rtt_ms": 1.520125, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.737965284Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:04:16.04208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060267, - "rtt_ms": 1.060267, + "rtt_ns": 1578083, + "rtt_ms": 1.578083, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.738612343Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:16.042323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033027, - "rtt_ms": 1.033027, + "rtt_ns": 1613708, + "rtt_ms": 1.613708, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.738685172Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:04:16.04234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082927, - "rtt_ms": 1.082927, + "rtt_ns": 1793667, + "rtt_ms": 1.793667, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "678", - "timestamp": "2025-11-27T01:23:51.738689792Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:16.042521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039727, - "rtt_ms": 1.039727, + "rtt_ns": 1841459, + "rtt_ms": 1.841459, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "535", - "timestamp": "2025-11-27T01:23:51.738729212Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:16.042585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769655, - "rtt_ms": 1.769655, + "rtt_ns": 814500, + "rtt_ms": 0.8145, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.7394268Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:04:16.042662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043404, - "rtt_ms": 2.043404, + "rtt_ns": 2009292, + "rtt_ms": 2.009292, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.73945257Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.042718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489946, - "rtt_ms": 1.489946, + "rtt_ns": 1242000, + "rtt_ms": 1.242, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.73945705Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:04:16.042871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781425, - "rtt_ms": 1.781425, + "rtt_ns": 1414750, + "rtt_ms": 1.41475, "checkpoint": 0, "vertex_from": "516", "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.73946125Z" + "timestamp": "2025-11-27T04:04:16.043241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816875, - "rtt_ms": 1.816875, + "rtt_ns": 1184875, + "rtt_ms": 1.184875, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:51.73948243Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:16.043268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800475, - "rtt_ms": 1.800475, + "rtt_ns": 1404792, + "rtt_ms": 1.404792, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:51.73948948Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:04:16.043429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567826, - "rtt_ms": 1.567826, + "rtt_ns": 1329542, + "rtt_ms": 1.329542, "checkpoint": 0, "vertex_from": "516", "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.740260828Z" + "timestamp": "2025-11-27T04:04:16.043853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575896, - "rtt_ms": 1.575896, + "rtt_ns": 1586917, + "rtt_ms": 1.586917, "checkpoint": 0, "vertex_from": "516", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.740264398Z" + "timestamp": "2025-11-27T04:04:16.043927-08:00" }, { "operation": "add_edge", - "rtt_ns": 787958, - "rtt_ms": 0.787958, + "rtt_ns": 1676709, + "rtt_ms": 1.676709, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.740271678Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:04:16.044002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693125, - "rtt_ms": 1.693125, + "rtt_ns": 1363875, + "rtt_ms": 1.363875, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.740313328Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:16.044028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632616, - "rtt_ms": 1.632616, + "rtt_ns": 1592042, + "rtt_ms": 1.592042, "checkpoint": 0, "vertex_from": "516", "vertex_to": "626", - "timestamp": "2025-11-27T01:23:51.740363968Z" + "timestamp": "2025-11-27T04:04:16.044178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095157, - "rtt_ms": 1.095157, + "rtt_ns": 1861958, + "rtt_ms": 1.861958, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.740553187Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:16.044582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551666, - "rtt_ms": 1.551666, + "rtt_ns": 1354583, + "rtt_ms": 1.354583, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.741006146Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:16.044598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663905, - "rtt_ms": 1.663905, + "rtt_ns": 1295459, + "rtt_ms": 1.295459, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.741127525Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.044726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697435, - "rtt_ms": 1.697435, + "rtt_ns": 1911542, + "rtt_ms": 1.911542, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.741188575Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:16.044783-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1955292, + "rtt_ms": 1.955292, + "checkpoint": 0, + "vertex_from": "516", + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:16.045884-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1872416, + "rtt_ms": 1.872416, + "checkpoint": 0, + "vertex_from": "517", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.045901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764295, - "rtt_ms": 1.764295, + "rtt_ns": 1914125, + "rtt_ms": 1.914125, "checkpoint": 0, - "vertex_from": "516", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.741192625Z" + "vertex_from": "517", + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.045917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186666, - "rtt_ms": 1.186666, + "rtt_ns": 2221959, + "rtt_ms": 2.221959, "checkpoint": 0, - "vertex_from": "516", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.741449404Z" + "vertex_from": "517", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.046401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205276, - "rtt_ms": 1.205276, + "rtt_ns": 1636083, + "rtt_ms": 1.636083, "checkpoint": 0, - "vertex_from": "516", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.741471504Z" + "vertex_from": "517", + "vertex_to": "658", + "timestamp": "2025-11-27T04:04:16.04642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188796, - "rtt_ms": 1.188796, + "rtt_ns": 1711417, + "rtt_ms": 1.711417, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.741553914Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:16.046438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258046, - "rtt_ms": 1.258046, + "rtt_ns": 3522917, + "rtt_ms": 3.522917, "checkpoint": 0, - "vertex_from": "517", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.741572704Z" + "vertex_from": "516", + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.046792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069187, - "rtt_ms": 1.069187, + "rtt_ns": 2226000, + "rtt_ms": 2.226, "checkpoint": 0, "vertex_from": "517", "vertex_to": "676", - "timestamp": "2025-11-27T01:23:51.741624724Z" + "timestamp": "2025-11-27T04:04:16.046808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372236, - "rtt_ms": 1.372236, + "rtt_ns": 2961333, + "rtt_ms": 2.961333, "checkpoint": 0, - "vertex_from": "517", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.741647774Z" + "vertex_from": "516", + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:16.046815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064926, - "rtt_ms": 1.064926, + "rtt_ns": 2225083, + "rtt_ms": 2.225083, "checkpoint": 0, "vertex_from": "517", "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.742072622Z" + "timestamp": "2025-11-27T04:04:16.046823-08:00" }, { "operation": "add_edge", - "rtt_ns": 761638, - "rtt_ms": 0.761638, + "rtt_ns": 1395958, + "rtt_ms": 1.395958, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.742212362Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:04:16.047281-08:00" }, { "operation": "add_edge", - "rtt_ns": 778438, - "rtt_ms": 0.778438, + "rtt_ns": 1539625, + "rtt_ms": 1.539625, "checkpoint": 0, "vertex_from": "517", "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.742252852Z" + "timestamp": "2025-11-27T04:04:16.047457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186496, - "rtt_ms": 1.186496, + "rtt_ns": 1608541, + "rtt_ms": 1.608541, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.742378351Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:16.04751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203226, - "rtt_ms": 1.203226, + "rtt_ns": 1651042, + "rtt_ms": 1.651042, "checkpoint": 0, - "vertex_from": "517", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.742397011Z" + "vertex_from": "518", + "vertex_to": "778", + "timestamp": "2025-11-27T04:04:16.048072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376926, - "rtt_ms": 1.376926, + "rtt_ns": 1336625, + "rtt_ms": 1.336625, "checkpoint": 0, - "vertex_from": "517", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.742505641Z" + "vertex_from": "518", + "vertex_to": "937", + "timestamp": "2025-11-27T04:04:16.048146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467785, - "rtt_ms": 1.467785, + "rtt_ns": 1801459, + "rtt_ms": 1.801459, "checkpoint": 0, "vertex_from": "518", "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.743093769Z" + "timestamp": "2025-11-27T04:04:16.04824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562085, - "rtt_ms": 1.562085, + "rtt_ns": 1837875, + "rtt_ms": 1.837875, "checkpoint": 0, "vertex_from": "517", "vertex_to": "903", - "timestamp": "2025-11-27T01:23:51.743117519Z" + "timestamp": "2025-11-27T04:04:16.04824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545735, - "rtt_ms": 1.545735, + "rtt_ns": 1457417, + "rtt_ms": 1.457417, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.743120609Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.048273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508255, - "rtt_ms": 1.508255, + "rtt_ns": 1690292, + "rtt_ms": 1.690292, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.743157489Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.048515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089567, - "rtt_ms": 1.089567, + "rtt_ns": 1825166, + "rtt_ms": 1.825166, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "937", - "timestamp": "2025-11-27T01:23:51.743163939Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.048618-08:00" }, { "operation": "add_edge", - "rtt_ns": 941758, - "rtt_ms": 0.941758, + "rtt_ns": 1472167, + "rtt_ms": 1.472167, "checkpoint": 0, "vertex_from": "518", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.743321279Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1060277, - "rtt_ms": 1.060277, - "checkpoint": 0, - "vertex_from": "518", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.743458648Z" + "timestamp": "2025-11-27T04:04:16.048754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269466, - "rtt_ms": 1.269466, + "rtt_ns": 1152583, + "rtt_ms": 1.152583, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.743484248Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.049225-08:00" }, { "operation": "add_edge", - "rtt_ns": 999257, - "rtt_ms": 0.999257, + "rtt_ns": 2054584, + "rtt_ms": 2.054584, "checkpoint": 0, "vertex_from": "518", "vertex_to": "556", - "timestamp": "2025-11-27T01:23:51.743505788Z" + "timestamp": "2025-11-27T04:04:16.049567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299936, - "rtt_ms": 1.299936, + "rtt_ns": 1447791, + "rtt_ms": 1.447791, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.743554178Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:16.049691-08:00" }, { "operation": "add_edge", - "rtt_ns": 642028, - "rtt_ms": 0.642028, + "rtt_ns": 1630208, + "rtt_ms": 1.630208, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.743737087Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:04:16.049884-08:00" }, { "operation": "add_edge", - "rtt_ns": 632798, - "rtt_ms": 0.632798, + "rtt_ns": 1385292, + "rtt_ms": 1.385292, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.743798457Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:16.049901-08:00" }, { "operation": "add_edge", - "rtt_ns": 719528, - "rtt_ms": 0.719528, + "rtt_ns": 1631917, + "rtt_ms": 1.631917, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.743838267Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.049906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021237, - "rtt_ms": 1.021237, + "rtt_ns": 2437291, + "rtt_ms": 2.437291, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.744181016Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:16.049913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060337, - "rtt_ms": 1.060337, + "rtt_ns": 1795375, + "rtt_ms": 1.795375, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "522", - "timestamp": "2025-11-27T01:23:51.744182366Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.049942-08:00" }, { "operation": "add_edge", - "rtt_ns": 853097, - "rtt_ms": 0.853097, + "rtt_ns": 1198375, + "rtt_ms": 1.198375, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.744175976Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:04:16.049953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050717, - "rtt_ms": 1.050717, + "rtt_ns": 1376792, + "rtt_ms": 1.376792, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:51.744536355Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.049997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066467, - "rtt_ms": 1.066467, + "rtt_ns": 1193125, + "rtt_ms": 1.193125, "checkpoint": 0, "vertex_from": "518", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.744573315Z" + "timestamp": "2025-11-27T04:04:16.050421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022667, - "rtt_ms": 1.022667, + "rtt_ns": 1418708, + "rtt_ms": 1.418708, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.744577735Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:16.051877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145567, - "rtt_ms": 1.145567, + "rtt_ns": 1566542, + "rtt_ms": 1.566542, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.744605395Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:16.051995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342607, - "rtt_ms": 1.342607, + "rtt_ns": 1523542, + "rtt_ms": 1.523542, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "844", - "timestamp": "2025-11-27T01:23:51.745081114Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:04:16.052016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316247, - "rtt_ms": 1.316247, + "rtt_ns": 1575917, + "rtt_ms": 1.575917, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.745115654Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:04:16.052149-08:00" }, { "operation": "add_edge", - "rtt_ns": 936747, - "rtt_ms": 0.936747, + "rtt_ns": 1612625, + "rtt_ms": 1.612625, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:51.746709639Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:16.052164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083107, - "rtt_ms": 1.083107, + "rtt_ns": 1717166, + "rtt_ms": 1.717166, "checkpoint": 0, "vertex_from": "518", "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.746795049Z" + "timestamp": "2025-11-27T04:04:16.052182-08:00" }, { "operation": "add_edge", - "rtt_ns": 998517, - "rtt_ms": 0.998517, + "rtt_ns": 1686500, + "rtt_ms": 1.6865, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.746810319Z" + "vertex_to": "679", + "timestamp": "2025-11-27T04:04:16.052197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003417, - "rtt_ms": 1.003417, + "rtt_ns": 1799959, + "rtt_ms": 1.799959, "checkpoint": 0, - "vertex_from": "519", - "vertex_to": "520", - "timestamp": "2025-11-27T01:23:51.746844309Z" + "vertex_from": "518", + "vertex_to": "844", + "timestamp": "2025-11-27T04:04:16.052244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174767, - "rtt_ms": 1.174767, + "rtt_ns": 1768625, + "rtt_ms": 1.768625, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.746906249Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:04:16.05225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158126, - "rtt_ms": 1.158126, + "rtt_ns": 1444000, + "rtt_ms": 1.444, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "523", - "timestamp": "2025-11-27T01:23:51.746948338Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:16.05344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289916, - "rtt_ms": 1.289916, + "rtt_ns": 1583250, + "rtt_ms": 1.58325, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.747106158Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:16.053461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308136, - "rtt_ms": 1.308136, + "rtt_ns": 1410958, + "rtt_ms": 1.410958, "checkpoint": 0, - "vertex_from": "518", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.747134688Z" + "vertex_from": "520", + "vertex_to": "530", + "timestamp": "2025-11-27T04:04:16.053608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310966, - "rtt_ms": 1.310966, + "rtt_ns": 1371750, + "rtt_ms": 1.37175, "checkpoint": 0, - "vertex_from": "518", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.747140368Z" + "vertex_from": "520", + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:16.053624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339526, - "rtt_ms": 1.339526, + "rtt_ns": 1622333, + "rtt_ms": 1.622333, "checkpoint": 0, - "vertex_from": "518", - "vertex_to": "679", - "timestamp": "2025-11-27T01:23:51.747141718Z" + "vertex_from": "519", + "vertex_to": "520", + "timestamp": "2025-11-27T04:04:16.053639-08:00" }, { "operation": "add_edge", - "rtt_ns": 981617, - "rtt_ms": 0.981617, + "rtt_ns": 1506375, + "rtt_ms": 1.506375, "checkpoint": 0, "vertex_from": "519", "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.747694456Z" + "timestamp": "2025-11-27T04:04:16.053656-08:00" }, { "operation": "add_edge", - "rtt_ns": 920757, - "rtt_ms": 0.920757, + "rtt_ns": 1474084, + "rtt_ms": 1.474084, "checkpoint": 0, "vertex_from": "520", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.747732966Z" + "timestamp": "2025-11-27T04:04:16.053657-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1468084, + "rtt_ms": 1.468084, + "checkpoint": 0, + "vertex_from": "520", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.053712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249156, - "rtt_ms": 1.249156, + "rtt_ns": 1643334, + "rtt_ms": 1.643334, "checkpoint": 0, "vertex_from": "519", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.748047305Z" + "timestamp": "2025-11-27T04:04:16.053808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192146, - "rtt_ms": 1.192146, + "rtt_ns": 3373042, + "rtt_ms": 3.373042, "checkpoint": 0, - "vertex_from": "520", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.748100375Z" + "vertex_from": "518", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.053845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199977, - "rtt_ms": 1.199977, + "rtt_ns": 1415333, + "rtt_ms": 1.415333, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.748151465Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.054877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346676, - "rtt_ms": 1.346676, + "rtt_ns": 1448167, + "rtt_ms": 1.448167, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "530", - "timestamp": "2025-11-27T01:23:51.748192065Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.05489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099347, - "rtt_ms": 1.099347, + "rtt_ns": 1376625, + "rtt_ms": 1.376625, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "717", - "timestamp": "2025-11-27T01:23:51.748242755Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:04:16.054985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160937, - "rtt_ms": 1.160937, + "rtt_ns": 1437083, + "rtt_ms": 1.437083, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.748268615Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:04:16.055062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598555, - "rtt_ms": 1.598555, + "rtt_ns": 1426334, + "rtt_ms": 1.426334, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.748734663Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:04:16.055066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650005, - "rtt_ms": 1.650005, + "rtt_ns": 1378041, + "rtt_ms": 1.378041, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "794", - "timestamp": "2025-11-27T01:23:51.748791793Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:04:16.055224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103037, - "rtt_ms": 1.103037, + "rtt_ns": 1447708, + "rtt_ms": 1.447708, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "524", - "timestamp": "2025-11-27T01:23:51.748800893Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.055259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090077, - "rtt_ms": 1.090077, + "rtt_ns": 1705250, + "rtt_ms": 1.70525, "checkpoint": 0, "vertex_from": "520", "vertex_to": "595", - "timestamp": "2025-11-27T01:23:51.748825793Z" + "timestamp": "2025-11-27T04:04:16.055361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646126, - "rtt_ms": 1.646126, + "rtt_ns": 1703541, + "rtt_ms": 1.703541, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:51.749695181Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:16.055417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620456, - "rtt_ms": 1.620456, + "rtt_ns": 1788417, + "rtt_ms": 1.788417, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.749721811Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:04:16.055446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477956, - "rtt_ms": 1.477956, + "rtt_ns": 1239000, + "rtt_ms": 1.239, "checkpoint": 0, "vertex_from": "520", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.749747531Z" + "timestamp": "2025-11-27T04:04:16.056131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062007, - "rtt_ms": 1.062007, + "rtt_ns": 1129250, + "rtt_ms": 1.12925, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.74979754Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:16.056192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659705, - "rtt_ms": 1.659705, + "rtt_ns": 1426250, + "rtt_ms": 1.42625, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "669", - "timestamp": "2025-11-27T01:23:51.74985274Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:16.056412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629285, - "rtt_ms": 1.629285, + "rtt_ns": 1627458, + "rtt_ms": 1.627458, "checkpoint": 0, "vertex_from": "520", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.74987309Z" + "timestamp": "2025-11-27T04:04:16.056505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839335, - "rtt_ms": 1.839335, + "rtt_ns": 1457708, + "rtt_ms": 1.457708, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.74999181Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.056525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279507, - "rtt_ms": 1.279507, + "rtt_ns": 1315625, + "rtt_ms": 1.315625, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.75007179Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.056733-08:00" }, { "operation": "add_edge", - "rtt_ns": 957857, - "rtt_ms": 0.957857, + "rtt_ns": 1389416, + "rtt_ms": 1.389416, "checkpoint": 0, "vertex_from": "520", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.750682688Z" + "timestamp": "2025-11-27T04:04:16.056751-08:00" }, { "operation": "add_edge", - "rtt_ns": 986657, - "rtt_ms": 0.986657, + "rtt_ns": 1319459, + "rtt_ms": 1.319459, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.750682848Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:16.056766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893005, - "rtt_ms": 1.893005, + "rtt_ns": 1524792, + "rtt_ms": 1.524792, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.750696238Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.056785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965725, - "rtt_ms": 1.965725, + "rtt_ns": 1767833, + "rtt_ms": 1.767833, "checkpoint": 0, "vertex_from": "520", "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.750792388Z" + "timestamp": "2025-11-27T04:04:16.056994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060877, - "rtt_ms": 1.060877, + "rtt_ns": 1263541, + "rtt_ms": 1.263541, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.750810308Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:04:16.057396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026977, - "rtt_ms": 1.026977, + "rtt_ns": 1223833, + "rtt_ms": 1.223833, "checkpoint": 0, "vertex_from": "520", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.750901107Z" + "timestamp": "2025-11-27T04:04:16.057416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120297, - "rtt_ms": 1.120297, + "rtt_ns": 1245375, + "rtt_ms": 1.245375, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.750918887Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:16.057752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956325, - "rtt_ms": 1.956325, + "rtt_ns": 1459000, + "rtt_ms": 1.459, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.751810015Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.057872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859085, - "rtt_ms": 1.859085, + "rtt_ns": 1264792, + "rtt_ms": 1.264792, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.751852055Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:04:16.058017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798695, - "rtt_ms": 1.798695, + "rtt_ns": 1278208, + "rtt_ms": 1.278208, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.751871755Z" + "vertex_to": "795", + "timestamp": "2025-11-27T04:04:16.058064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919144, - "rtt_ms": 1.919144, + "rtt_ns": 1429083, + "rtt_ms": 1.429083, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.752712522Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:04:16.058163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104584, - "rtt_ms": 2.104584, + "rtt_ns": 1483042, + "rtt_ms": 1.483042, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "554", - "timestamp": "2025-11-27T01:23:51.752788512Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.05825-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137424, - "rtt_ms": 2.137424, + "rtt_ns": 1266542, + "rtt_ms": 1.266542, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.753058011Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.058263-08:00" }, { "operation": "add_edge", - "rtt_ns": 3218161, - "rtt_ms": 3.218161, + "rtt_ns": 1753375, + "rtt_ms": 1.753375, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:51.753915249Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:04:16.058279-08:00" }, { "operation": "add_edge", - "rtt_ns": 3312610, - "rtt_ms": 3.31261, + "rtt_ns": 1354750, + "rtt_ms": 1.35475, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.753998148Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:16.058752-08:00" }, { "operation": "add_edge", - "rtt_ns": 3191210, - "rtt_ms": 3.19121, + "rtt_ns": 1369333, + "rtt_ms": 1.369333, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "795", - "timestamp": "2025-11-27T01:23:51.754003358Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:04:16.058786-08:00" }, { "operation": "add_edge", - "rtt_ns": 3141721, - "rtt_ms": 3.141721, + "rtt_ns": 1339458, + "rtt_ms": 1.339458, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.754043708Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:04:16.059214-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328553, - "rtt_ms": 2.328553, + "rtt_ns": 1206541, + "rtt_ms": 1.206541, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "708", - "timestamp": "2025-11-27T01:23:51.754140958Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:16.059225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340593, - "rtt_ms": 2.340593, + "rtt_ns": 1532417, + "rtt_ms": 1.532417, "checkpoint": 0, "vertex_from": "520", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.754193748Z" + "timestamp": "2025-11-27T04:04:16.059285-08:00" }, { "operation": "add_edge", - "rtt_ns": 2370963, - "rtt_ms": 2.370963, + "rtt_ns": 1121834, + "rtt_ms": 1.121834, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "537", - "timestamp": "2025-11-27T01:23:51.754246348Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:16.059386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214686, - "rtt_ms": 1.214686, + "rtt_ns": 1381750, + "rtt_ms": 1.38175, "checkpoint": 0, "vertex_from": "520", "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.754274727Z" + "timestamp": "2025-11-27T04:04:16.059545-08:00" }, { "operation": "add_edge", - "rtt_ns": 884407, - "rtt_ms": 0.884407, - "checkpoint": 0, - "vertex_from": "520", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.754800606Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2091874, - "rtt_ms": 2.091874, + "rtt_ns": 1537542, + "rtt_ms": 1.537542, "checkpoint": 0, "vertex_from": "520", "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.754881386Z" + "timestamp": "2025-11-27T04:04:16.059602-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175794, - "rtt_ms": 2.175794, + "rtt_ns": 1472458, + "rtt_ms": 1.472458, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.754890656Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.059723-08:00" }, { "operation": "add_edge", - "rtt_ns": 931357, - "rtt_ms": 0.931357, + "rtt_ns": 1537459, + "rtt_ms": 1.537459, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.754935905Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:16.06029-08:00" }, { "operation": "add_edge", - "rtt_ns": 958907, - "rtt_ms": 0.958907, + "rtt_ns": 2105458, + "rtt_ms": 2.105458, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.755003645Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:16.060385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276606, - "rtt_ms": 1.276606, + "rtt_ns": 1465042, + "rtt_ms": 1.465042, "checkpoint": 0, - "vertex_from": "520", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.755275944Z" + "vertex_from": "521", + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.060751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781774, - "rtt_ms": 1.781774, + "rtt_ns": 1591833, + "rtt_ms": 1.591833, "checkpoint": 0, "vertex_from": "521", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.756030082Z" + "timestamp": "2025-11-27T04:04:16.060818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148406, - "rtt_ms": 1.148406, + "rtt_ns": 1286125, + "rtt_ms": 1.286125, "checkpoint": 0, "vertex_from": "521", "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.756030992Z" + "timestamp": "2025-11-27T04:04:16.060832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841144, - "rtt_ms": 1.841144, + "rtt_ns": 1234833, + "rtt_ms": 1.234833, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.756037952Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:04:16.060839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771235, - "rtt_ms": 1.771235, + "rtt_ns": 1559083, + "rtt_ms": 1.559083, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.756047062Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:04:16.060945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132637, - "rtt_ms": 1.132637, + "rtt_ns": 1234458, + "rtt_ms": 1.234458, "checkpoint": 0, "vertex_from": "521", "vertex_to": "550", - "timestamp": "2025-11-27T01:23:51.756070032Z" + "timestamp": "2025-11-27T04:04:16.060959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273496, - "rtt_ms": 1.273496, + "rtt_ns": 2174166, + "rtt_ms": 2.174166, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:51.756076102Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:16.060961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219726, - "rtt_ms": 1.219726, + "rtt_ns": 1747875, + "rtt_ms": 1.747875, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:51.756112022Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.060965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971004, - "rtt_ms": 1.971004, + "rtt_ns": 1719708, + "rtt_ms": 1.719708, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.756112902Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.062685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641036, - "rtt_ms": 1.641036, + "rtt_ns": 1863917, + "rtt_ms": 1.863917, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.75691814Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:16.062704-08:00" }, { "operation": "add_edge", - "rtt_ns": 902778, - "rtt_ms": 0.902778, + "rtt_ns": 1964250, + "rtt_ms": 1.96425, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.75694367Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.062718-08:00" }, { "operation": "add_edge", - "rtt_ns": 883798, - "rtt_ms": 0.883798, + "rtt_ns": 1885000, + "rtt_ms": 1.885, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "662", - "timestamp": "2025-11-27T01:23:51.75696141Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:16.062719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023064, - "rtt_ms": 2.023064, + "rtt_ns": 2347375, + "rtt_ms": 2.347375, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.757028379Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.062734-08:00" }, { "operation": "add_edge", - "rtt_ns": 976577, - "rtt_ms": 0.976577, + "rtt_ns": 2462916, + "rtt_ms": 2.462916, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.757090679Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.062754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075967, - "rtt_ms": 1.075967, + "rtt_ns": 1959042, + "rtt_ms": 1.959042, "checkpoint": 0, "vertex_from": "521", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.757108399Z" + "timestamp": "2025-11-27T04:04:16.062778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088447, - "rtt_ms": 1.088447, + "rtt_ns": 2010167, + "rtt_ms": 2.010167, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.757137949Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.062956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087857, - "rtt_ms": 1.087857, + "rtt_ns": 2002833, + "rtt_ms": 2.002833, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.757202819Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.062965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195787, - "rtt_ms": 1.195787, + "rtt_ns": 2060709, + "rtt_ms": 2.060709, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.757227259Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:04:16.06302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854575, - "rtt_ms": 1.854575, + "rtt_ns": 1256541, + "rtt_ms": 1.256541, "checkpoint": 0, - "vertex_from": "521", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.757927847Z" + "vertex_from": "522", + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.064222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420776, - "rtt_ms": 1.420776, + "rtt_ns": 1661458, + "rtt_ms": 1.661458, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.758342486Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:04:16.064366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285797, - "rtt_ms": 1.285797, + "rtt_ns": 1415792, + "rtt_ms": 1.415792, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.758382666Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:16.064373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385776, - "rtt_ms": 1.385776, + "rtt_ns": 1689042, + "rtt_ms": 1.689042, "checkpoint": 0, - "vertex_from": "522", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.758495905Z" + "vertex_from": "521", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.064375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576416, - "rtt_ms": 1.576416, + "rtt_ns": 1662541, + "rtt_ms": 1.662541, "checkpoint": 0, "vertex_from": "521", "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.758606145Z" + "timestamp": "2025-11-27T04:04:16.064383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403546, - "rtt_ms": 1.403546, + "rtt_ns": 1637208, + "rtt_ms": 1.637208, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.758608075Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:04:16.064392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477936, - "rtt_ms": 1.477936, + "rtt_ns": 1661375, + "rtt_ms": 1.661375, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.758617925Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.064396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667155, - "rtt_ms": 1.667155, + "rtt_ns": 1632958, + "rtt_ms": 1.632958, "checkpoint": 0, - "vertex_from": "521", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.758631305Z" + "vertex_from": "522", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.064413-08:00" }, { "operation": "add_edge", - "rtt_ns": 723198, - "rtt_ms": 0.723198, + "rtt_ns": 1546709, + "rtt_ms": 1.546709, "checkpoint": 0, "vertex_from": "522", "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.758652355Z" + "timestamp": "2025-11-27T04:04:16.064569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727975, - "rtt_ms": 1.727975, + "rtt_ns": 1876917, + "rtt_ms": 1.876917, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.758674615Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2648792, - "rtt_ms": 2.648792, - "checkpoint": 0, - "vertex_from": "522", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.759877191Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.064597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647265, - "rtt_ms": 1.647265, + "rtt_ns": 1476542, + "rtt_ms": 1.476542, "checkpoint": 0, "vertex_from": "522", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.759991121Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1702575, - "rtt_ms": 1.702575, - "checkpoint": 0, - "vertex_from": "522", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.760087931Z" + "timestamp": "2025-11-27T04:04:16.065699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622156, - "rtt_ms": 1.622156, + "rtt_ns": 1319333, + "rtt_ms": 1.319333, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.760119921Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.065703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054474, - "rtt_ms": 2.054474, + "rtt_ns": 1237500, + "rtt_ms": 1.2375, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.760663919Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.065809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083354, - "rtt_ms": 2.083354, + "rtt_ns": 1434958, + "rtt_ms": 1.434958, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.760690939Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:04:16.065827-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106824, - "rtt_ms": 2.106824, + "rtt_ns": 1439583, + "rtt_ms": 1.439583, "checkpoint": 0, "vertex_from": "522", "vertex_to": "852", - "timestamp": "2025-11-27T01:23:51.760760539Z" + "timestamp": "2025-11-27T04:04:16.065853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261353, - "rtt_ms": 2.261353, + "rtt_ns": 1489083, + "rtt_ms": 1.489083, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:51.760895818Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.065857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035857, - "rtt_ms": 1.035857, + "rtt_ns": 1278584, + "rtt_ms": 1.278584, "checkpoint": 0, "vertex_from": "523", "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.760915448Z" + "timestamp": "2025-11-27T04:04:16.065877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2296683, - "rtt_ms": 2.296683, + "rtt_ns": 1641541, + "rtt_ms": 1.641541, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "668", - "timestamp": "2025-11-27T01:23:51.760916178Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.066018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275573, - "rtt_ms": 2.275573, + "rtt_ns": 1630000, + "rtt_ms": 1.63, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.760951508Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:04:16.066027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539165, - "rtt_ms": 1.539165, + "rtt_ns": 1664041, + "rtt_ms": 1.664041, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.761660316Z" + "vertex_from": "522", + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.066038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097827, - "rtt_ms": 1.097827, + "rtt_ns": 1148000, + "rtt_ms": 1.148, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "568", - "timestamp": "2025-11-27T01:23:51.761762596Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:04:16.067025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803055, - "rtt_ms": 1.803055, + "rtt_ns": 1419375, + "rtt_ms": 1.419375, "checkpoint": 0, "vertex_from": "523", "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.761795376Z" + "timestamp": "2025-11-27T04:04:16.067122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876854, - "rtt_ms": 1.876854, + "rtt_ns": 1376292, + "rtt_ms": 1.376292, "checkpoint": 0, - "vertex_from": "523", - "vertex_to": "540", - "timestamp": "2025-11-27T01:23:51.761966055Z" + "vertex_from": "524", + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:16.06723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303646, - "rtt_ms": 1.303646, + "rtt_ns": 1501542, + "rtt_ms": 1.501542, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.761995355Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.067311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728385, - "rtt_ms": 1.728385, + "rtt_ns": 1311666, + "rtt_ms": 1.311666, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.762490204Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:04:16.067331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666055, - "rtt_ms": 1.666055, + "rtt_ns": 1489625, + "rtt_ms": 1.489625, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "675", - "timestamp": "2025-11-27T01:23:51.762582793Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:04:16.067347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735555, - "rtt_ms": 1.735555, + "rtt_ns": 1643792, + "rtt_ms": 1.643792, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.762633993Z" + "vertex_from": "523", + "vertex_to": "540", + "timestamp": "2025-11-27T04:04:16.067348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740475, - "rtt_ms": 1.740475, + "rtt_ns": 1639584, + "rtt_ms": 1.639584, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.762657623Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:04:16.067468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699655, - "rtt_ms": 1.699655, + "rtt_ns": 1592209, + "rtt_ms": 1.592209, "checkpoint": 0, "vertex_from": "524", "vertex_to": "929", - "timestamp": "2025-11-27T01:23:51.762658033Z" + "timestamp": "2025-11-27T04:04:16.067631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275266, - "rtt_ms": 1.275266, + "rtt_ns": 1630375, + "rtt_ms": 1.630375, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "669", - "timestamp": "2025-11-27T01:23:51.762938662Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.067658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268896, - "rtt_ms": 1.268896, + "rtt_ns": 1329500, + "rtt_ms": 1.3295, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "796", - "timestamp": "2025-11-27T01:23:51.763032902Z" + "vertex_to": "860", + "timestamp": "2025-11-27T04:04:16.068677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288186, - "rtt_ms": 1.288186, + "rtt_ns": 1697083, + "rtt_ms": 1.697083, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "526", - "timestamp": "2025-11-27T01:23:51.763084502Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:04:16.068723-08:00" }, { "operation": "add_edge", - "rtt_ns": 952907, - "rtt_ms": 0.952907, + "rtt_ns": 1594667, + "rtt_ms": 1.594667, "checkpoint": 0, - "vertex_from": "525", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.76361388Z" + "vertex_from": "524", + "vertex_to": "526", + "timestamp": "2025-11-27T04:04:16.068826-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1542708, + "rtt_ms": 1.542708, + "checkpoint": 0, + "vertex_from": "1012", + "timestamp": "2025-11-27T04:04:16.068855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650505, - "rtt_ms": 1.650505, + "rtt_ns": 1579792, + "rtt_ms": 1.579792, "checkpoint": 0, "vertex_from": "524", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.76364672Z" + "timestamp": "2025-11-27T04:04:16.068912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110457, - "rtt_ms": 1.110457, + "rtt_ns": 1328167, + "rtt_ms": 1.328167, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.76369456Z" + "vertex_from": "525", + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:16.068987-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1762045, - "rtt_ms": 1.762045, + "operation": "add_edge", + "rtt_ns": 1605500, + "rtt_ms": 1.6055, "checkpoint": 0, - "vertex_from": "1012", - "timestamp": "2025-11-27T01:23:51.76373448Z" + "vertex_from": "524", + "vertex_to": "908", + "timestamp": "2025-11-27T04:04:16.069074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281186, - "rtt_ms": 1.281186, + "rtt_ns": 1963709, + "rtt_ms": 1.963709, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.763916249Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:04:16.069088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453255, - "rtt_ms": 1.453255, + "rtt_ns": 1759833, + "rtt_ms": 1.759833, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "860", - "timestamp": "2025-11-27T01:23:51.763944889Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.069109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285026, - "rtt_ms": 1.285026, + "rtt_ns": 1696375, + "rtt_ms": 1.696375, "checkpoint": 0, "vertex_from": "525", "vertex_to": "564", - "timestamp": "2025-11-27T01:23:51.763945789Z" + "timestamp": "2025-11-27T04:04:16.069329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207077, - "rtt_ms": 1.207077, + "rtt_ns": 1415042, + "rtt_ms": 1.415042, "checkpoint": 0, - "vertex_from": "525", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.764149179Z" + "vertex_from": "526", + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.070242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721515, - "rtt_ms": 1.721515, + "rtt_ns": 1523584, + "rtt_ms": 1.523584, "checkpoint": 0, "vertex_from": "525", "vertex_to": "616", - "timestamp": "2025-11-27T01:23:51.764755917Z" + "timestamp": "2025-11-27T04:04:16.070248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070737, - "rtt_ms": 1.070737, + "rtt_ns": 1776791, + "rtt_ms": 1.776791, "checkpoint": 0, - "vertex_from": "526", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.764777207Z" + "vertex_from": "525", + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:16.070455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701625, - "rtt_ms": 1.701625, + "rtt_ns": 1700000, + "rtt_ms": 1.7, "checkpoint": 0, "vertex_from": "526", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.764788177Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:16.070777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140247, - "rtt_ms": 1.140247, + "rtt_ns": 1801875, + "rtt_ms": 1.801875, "checkpoint": 0, "vertex_from": "526", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.764790537Z" + "timestamp": "2025-11-27T04:04:16.07079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180287, - "rtt_ms": 1.180287, + "rtt_ns": 1779209, + "rtt_ms": 1.779209, "checkpoint": 0, "vertex_from": "526", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.764795947Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:04:16.070868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580366, - "rtt_ms": 1.580366, + "rtt_ns": 1777292, + "rtt_ms": 1.777292, "checkpoint": 0, - "vertex_from": "526", - "vertex_to": "528", - "timestamp": "2025-11-27T01:23:51.765498365Z" + "vertex_from": "527", + "vertex_to": "610", + "timestamp": "2025-11-27T04:04:16.070887-08:00" }, { "operation": "add_edge", - "rtt_ns": 785528, - "rtt_ms": 0.785528, + "rtt_ns": 1778584, + "rtt_ms": 1.778584, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.765543195Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:04:16.071109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858105, - "rtt_ms": 1.858105, + "rtt_ns": 2197166, + "rtt_ms": 2.197166, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "1012", - "timestamp": "2025-11-27T01:23:51.765593085Z" + "vertex_from": "526", + "vertex_to": "585", + "timestamp": "2025-11-27T04:04:16.07111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524646, - "rtt_ms": 1.524646, + "rtt_ns": 2284958, + "rtt_ms": 2.284958, "checkpoint": 0, - "vertex_from": "528", - "vertex_to": "549", - "timestamp": "2025-11-27T01:23:51.765676105Z" + "vertex_from": "524", + "vertex_to": "1012", + "timestamp": "2025-11-27T04:04:16.07114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886585, - "rtt_ms": 1.886585, + "rtt_ns": 1512750, + "rtt_ms": 1.51275, "checkpoint": 0, - "vertex_from": "527", - "vertex_to": "610", - "timestamp": "2025-11-27T01:23:51.765834014Z" + "vertex_from": "528", + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:16.071762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458036, - "rtt_ms": 1.458036, + "rtt_ns": 1556458, + "rtt_ms": 1.556458, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.766249023Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:04:16.0718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594366, - "rtt_ms": 1.594366, + "rtt_ns": 1210750, + "rtt_ms": 1.21075, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.766388143Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.071989-08:00" }, { "operation": "add_edge", - "rtt_ns": 909887, - "rtt_ms": 0.909887, + "rtt_ns": 1286500, + "rtt_ms": 1.2865, "checkpoint": 0, "vertex_from": "528", "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.766410502Z" + "timestamp": "2025-11-27T04:04:16.072174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2467283, - "rtt_ms": 2.467283, + "rtt_ns": 1735125, + "rtt_ms": 1.735125, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.766415612Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1617975, - "rtt_ms": 1.617975, - "checkpoint": 0, - "vertex_from": "693", - "timestamp": "2025-11-27T01:23:51.766416562Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.072191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662685, - "rtt_ms": 1.662685, + "rtt_ns": 1417625, + "rtt_ms": 1.417625, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.766441072Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.072208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274556, - "rtt_ms": 1.274556, + "rtt_ns": 1328000, + "rtt_ms": 1.328, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "818", - "timestamp": "2025-11-27T01:23:51.76711176Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.072438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055967, - "rtt_ms": 1.055967, + "rtt_ns": 1395500, + "rtt_ms": 1.3955, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.76730612Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:04:16.072506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629035, - "rtt_ms": 1.629035, + "rtt_ns": 1862542, + "rtt_ms": 1.862542, "checkpoint": 0, "vertex_from": "528", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.76730804Z" + "timestamp": "2025-11-27T04:04:16.073003-08:00" }, { "operation": "add_edge", - "rtt_ns": 2369303, - "rtt_ms": 2.369303, + "rtt_ns": 1219542, + "rtt_ms": 1.219542, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.767964498Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:04:16.073021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554626, - "rtt_ms": 1.554626, + "rtt_ns": 1128000, + "rtt_ms": 1.128, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "734", - "timestamp": "2025-11-27T01:23:51.767966958Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:04:16.073118-08:00" }, { "operation": "add_edge", - "rtt_ns": 2429203, - "rtt_ms": 2.429203, + "rtt_ns": 1425833, + "rtt_ms": 1.425833, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.767973518Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:04:16.073191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586196, - "rtt_ms": 1.586196, + "rtt_ns": 1182750, + "rtt_ms": 1.18275, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.768003548Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:04:16.073392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587216, - "rtt_ms": 1.587216, + "rtt_ns": 1212917, + "rtt_ms": 1.212917, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "693", - "timestamp": "2025-11-27T01:23:51.768004428Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:16.07372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563966, - "rtt_ms": 1.563966, + "rtt_ns": 1546209, + "rtt_ms": 1.546209, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "653", - "timestamp": "2025-11-27T01:23:51.768006618Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.073738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625765, - "rtt_ms": 1.625765, + "rtt_ns": 1683917, + "rtt_ms": 1.683917, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "532", - "timestamp": "2025-11-27T01:23:51.768015258Z" + "vertex_to": "734", + "timestamp": "2025-11-27T04:04:16.073859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521876, - "rtt_ms": 1.521876, + "rtt_ns": 1430375, + "rtt_ms": 1.430375, "checkpoint": 0, "vertex_from": "528", "vertex_to": "651", - "timestamp": "2025-11-27T01:23:51.768635316Z" + "timestamp": "2025-11-27T04:04:16.073869-08:00" }, { "operation": "add_edge", - "rtt_ns": 792318, - "rtt_ms": 0.792318, + "rtt_ns": 1685833, + "rtt_ms": 1.685833, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.768760356Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.07469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675535, - "rtt_ms": 1.675535, + "rtt_ns": 1584125, + "rtt_ms": 1.584125, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.768983125Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:04:16.074778-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 4092542, + "rtt_ms": 4.092542, + "checkpoint": 0, + "vertex_from": "693", + "timestamp": "2025-11-27T04:04:16.074962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717355, - "rtt_ms": 1.717355, + "rtt_ns": 1613375, + "rtt_ms": 1.613375, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.769027895Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.075006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495215, - "rtt_ms": 1.495215, + "rtt_ns": 2096959, + "rtt_ms": 2.096959, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.769501193Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:16.075119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629435, - "rtt_ms": 1.629435, + "rtt_ns": 1405042, + "rtt_ms": 1.405042, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "805", - "timestamp": "2025-11-27T01:23:51.769605503Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:16.075126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658555, - "rtt_ms": 1.658555, + "rtt_ns": 2009208, + "rtt_ms": 2.009208, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.769624953Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:16.075128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613575, - "rtt_ms": 1.613575, + "rtt_ns": 1416958, + "rtt_ms": 1.416958, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.769630153Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:04:16.075287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631735, - "rtt_ms": 1.631735, + "rtt_ns": 1173667, + "rtt_ms": 1.173667, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.769636623Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:04:16.075866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648665, - "rtt_ms": 1.648665, + "rtt_ns": 2154916, + "rtt_ms": 2.154916, "checkpoint": 0, "vertex_from": "528", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.769656333Z" + "timestamp": "2025-11-27T04:04:16.075894-08:00" }, { "operation": "add_edge", - "rtt_ns": 926797, - "rtt_ms": 0.926797, + "rtt_ns": 1340167, + "rtt_ms": 1.340167, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "961", - "timestamp": "2025-11-27T01:23:51.769688823Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:04:16.076467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052117, - "rtt_ms": 1.052117, + "rtt_ns": 1702375, + "rtt_ms": 1.702375, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "533", - "timestamp": "2025-11-27T01:23:51.769689623Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:04:16.076481-08:00" }, { "operation": "add_edge", - "rtt_ns": 875058, - "rtt_ms": 0.875058, + "rtt_ns": 1484417, + "rtt_ms": 1.484417, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.770377671Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:16.076493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454486, - "rtt_ms": 1.454486, + "rtt_ns": 1720958, + "rtt_ms": 1.720958, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "561", - "timestamp": "2025-11-27T01:23:51.770438611Z" + "vertex_to": "693", + "timestamp": "2025-11-27T04:04:16.076683-08:00" }, { "operation": "add_edge", - "rtt_ns": 828228, - "rtt_ms": 0.828228, + "rtt_ns": 1686042, + "rtt_ms": 1.686042, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "812", - "timestamp": "2025-11-27T01:23:51.770460431Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:04:16.076815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440476, - "rtt_ms": 1.440476, + "rtt_ns": 1610292, + "rtt_ms": 1.610292, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.770470551Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:04:16.076899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008207, - "rtt_ms": 1.008207, + "rtt_ns": 1853500, + "rtt_ms": 1.8535, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "529", - "timestamp": "2025-11-27T01:23:51.77061513Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.076973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356836, - "rtt_ms": 1.356836, + "rtt_ns": 1667250, + "rtt_ms": 1.66725, "checkpoint": 0, "vertex_from": "528", "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.771014539Z" + "timestamp": "2025-11-27T04:04:16.077562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557125, - "rtt_ms": 1.557125, + "rtt_ns": 1786917, + "rtt_ms": 1.786917, "checkpoint": 0, "vertex_from": "528", "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.771195158Z" + "timestamp": "2025-11-27T04:04:16.077654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532305, - "rtt_ms": 1.532305, + "rtt_ns": 1406375, + "rtt_ms": 1.406375, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:51.771223558Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:16.0779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613205, - "rtt_ms": 1.613205, + "rtt_ns": 1503834, + "rtt_ms": 1.503834, "checkpoint": 0, "vertex_from": "528", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.771303348Z" + "timestamp": "2025-11-27T04:04:16.077975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723155, - "rtt_ms": 1.723155, + "rtt_ns": 1476458, + "rtt_ms": 1.476458, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "557", - "timestamp": "2025-11-27T01:23:51.771349988Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:04:16.078161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665135, - "rtt_ms": 1.665135, + "rtt_ns": 4537417, + "rtt_ms": 4.537417, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:51.772104996Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:04:16.0784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683545, - "rtt_ms": 1.683545, + "rtt_ns": 1463042, + "rtt_ms": 1.463042, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:51.772155786Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:04:16.078438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732235, - "rtt_ms": 1.732235, + "rtt_ns": 1628541, + "rtt_ms": 1.628541, "checkpoint": 0, "vertex_from": "528", "vertex_to": "933", - "timestamp": "2025-11-27T01:23:51.772195796Z" + "timestamp": "2025-11-27T04:04:16.078444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096744, - "rtt_ms": 2.096744, + "rtt_ns": 1581375, + "rtt_ms": 1.581375, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:51.772713134Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:04:16.078482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2407013, - "rtt_ms": 2.407013, + "rtt_ns": 2174208, + "rtt_ms": 2.174208, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.772786744Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:04:16.078657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806075, - "rtt_ms": 1.806075, + "rtt_ns": 1180792, + "rtt_ms": 1.180792, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.772822344Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:04:16.078838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659396, - "rtt_ms": 1.659396, + "rtt_ns": 1089625, + "rtt_ms": 1.089625, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.772856254Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:16.078991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559666, - "rtt_ms": 1.559666, + "rtt_ns": 1442833, + "rtt_ms": 1.442833, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "752", - "timestamp": "2025-11-27T01:23:51.772865664Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:04:16.079006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677766, - "rtt_ms": 1.677766, + "rtt_ns": 1232833, + "rtt_ms": 1.232833, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.772903114Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:04:16.079208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590125, - "rtt_ms": 1.590125, + "rtt_ns": 1172958, + "rtt_ms": 1.172958, "checkpoint": 0, "vertex_from": "528", "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.772942943Z" + "timestamp": "2025-11-27T04:04:16.079335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422176, - "rtt_ms": 1.422176, + "rtt_ns": 1060167, + "rtt_ms": 1.060167, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "742", - "timestamp": "2025-11-27T01:23:51.773579392Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:16.079462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503856, - "rtt_ms": 1.503856, + "rtt_ns": 2197166, + "rtt_ms": 2.197166, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.773610432Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:16.080642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107207, - "rtt_ms": 1.107207, + "rtt_ns": 1827042, + "rtt_ms": 1.827042, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:51.773821631Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:04:16.080666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719625, - "rtt_ms": 1.719625, + "rtt_ns": 1690375, + "rtt_ms": 1.690375, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.773916941Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:04:16.080682-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059124, - "rtt_ms": 2.059124, + "rtt_ns": 1373834, + "rtt_ms": 1.373834, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.774847148Z" + "vertex_to": "679", + "timestamp": "2025-11-27T04:04:16.08071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956314, - "rtt_ms": 1.956314, + "rtt_ns": 1721500, + "rtt_ms": 1.7215, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.774861638Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.080729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107795, - "rtt_ms": 2.107795, + "rtt_ns": 2079375, + "rtt_ms": 2.079375, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "679", - "timestamp": "2025-11-27T01:23:51.775052398Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.080737-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240943, - "rtt_ms": 2.240943, + "rtt_ns": 2342375, + "rtt_ms": 2.342375, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.775098277Z" + "vertex_to": "742", + "timestamp": "2025-11-27T04:04:16.080782-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386443, - "rtt_ms": 2.386443, + "rtt_ns": 2340584, + "rtt_ms": 2.340584, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.775210657Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:04:16.080824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2521913, - "rtt_ms": 2.521913, + "rtt_ns": 1376875, + "rtt_ms": 1.376875, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.775388807Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.08084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011754, - "rtt_ms": 2.011754, + "rtt_ns": 1763792, + "rtt_ms": 1.763792, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.775592786Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.080973-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091024, - "rtt_ms": 2.091024, + "rtt_ns": 1306250, + "rtt_ms": 1.30625, "checkpoint": 0, "vertex_from": "529", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.775703586Z" + "timestamp": "2025-11-27T04:04:16.081951-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1146458, + "rtt_ms": 1.146458, + "checkpoint": 0, + "vertex_from": "530", + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:16.081987-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064694, - "rtt_ms": 2.064694, + "rtt_ns": 1609292, + "rtt_ms": 1.609292, "checkpoint": 0, "vertex_from": "529", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.775887785Z" + "timestamp": "2025-11-27T04:04:16.082276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2505933, - "rtt_ms": 2.505933, + "rtt_ns": 1605208, + "rtt_ms": 1.605208, "checkpoint": 0, "vertex_from": "529", "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.776424114Z" + "timestamp": "2025-11-27T04:04:16.082289-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1553209, + "rtt_ms": 1.553209, + "checkpoint": 0, + "vertex_from": "530", + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:16.082528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627165, - "rtt_ms": 1.627165, + "rtt_ns": 1798417, + "rtt_ms": 1.798417, "checkpoint": 0, "vertex_from": "529", "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.776490393Z" + "timestamp": "2025-11-27T04:04:16.08253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655635, - "rtt_ms": 1.655635, + "rtt_ns": 1775541, + "rtt_ms": 1.775541, "checkpoint": 0, - "vertex_from": "529", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:51.776507853Z" + "vertex_from": "530", + "vertex_to": "597", + "timestamp": "2025-11-27T04:04:16.082558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523485, - "rtt_ms": 1.523485, + "rtt_ns": 1894375, + "rtt_ms": 1.894375, "checkpoint": 0, "vertex_from": "530", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.776577173Z" + "timestamp": "2025-11-27T04:04:16.082633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459116, - "rtt_ms": 1.459116, + "rtt_ns": 2029500, + "rtt_ms": 2.0295, "checkpoint": 0, - "vertex_from": "530", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.776670613Z" + "vertex_from": "529", + "vertex_to": "736", + "timestamp": "2025-11-27T04:04:16.082741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029995, - "rtt_ms": 2.029995, + "rtt_ns": 2002875, + "rtt_ms": 2.002875, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "597", - "timestamp": "2025-11-27T01:23:51.777129842Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.082829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788575, - "rtt_ms": 1.788575, + "rtt_ns": 899625, + "rtt_ms": 0.899625, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.777384551Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:04:16.082852-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001194, - "rtt_ms": 2.001194, + "rtt_ns": 961500, + "rtt_ms": 0.9615, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.777391191Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:04:16.08324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698935, - "rtt_ms": 1.698935, + "rtt_ns": 1047667, + "rtt_ms": 1.047667, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "552", - "timestamp": "2025-11-27T01:23:51.777403821Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:16.083338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580846, - "rtt_ms": 1.580846, + "rtt_ns": 1915417, + "rtt_ms": 1.915417, "checkpoint": 0, "vertex_from": "530", "vertex_to": "972", - "timestamp": "2025-11-27T01:23:51.777470271Z" + "timestamp": "2025-11-27T04:04:16.083905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700955, - "rtt_ms": 1.700955, + "rtt_ns": 1187542, + "rtt_ms": 1.187542, "checkpoint": 0, - "vertex_from": "530", - "vertex_to": "536", - "timestamp": "2025-11-27T01:23:51.778126339Z" + "vertex_from": "531", + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:16.084018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478856, - "rtt_ms": 1.478856, + "rtt_ns": 1387791, + "rtt_ms": 1.387791, "checkpoint": 0, - "vertex_from": "530", - "vertex_to": "963", - "timestamp": "2025-11-27T01:23:51.778153639Z" + "vertex_from": "531", + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.08424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577126, - "rtt_ms": 1.577126, + "rtt_ns": 1825250, + "rtt_ms": 1.82525, "checkpoint": 0, "vertex_from": "530", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.778156119Z" + "timestamp": "2025-11-27T04:04:16.084356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648766, - "rtt_ms": 1.648766, + "rtt_ns": 1918500, + "rtt_ms": 1.9185, "checkpoint": 0, "vertex_from": "530", "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.778158339Z" + "timestamp": "2025-11-27T04:04:16.084447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671866, - "rtt_ms": 1.671866, + "rtt_ns": 1915833, + "rtt_ms": 1.915833, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.778163699Z" + "vertex_to": "963", + "timestamp": "2025-11-27T04:04:16.084476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686515, - "rtt_ms": 1.686515, + "rtt_ns": 1975375, + "rtt_ms": 1.975375, "checkpoint": 0, "vertex_from": "530", "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.778819417Z" + "timestamp": "2025-11-27T04:04:16.084609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613315, - "rtt_ms": 1.613315, + "rtt_ns": 1894542, + "rtt_ms": 1.894542, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.779007446Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.084638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613845, - "rtt_ms": 1.613845, + "rtt_ns": 1471292, + "rtt_ms": 1.471292, "checkpoint": 0, "vertex_from": "531", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.779086876Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1769985, - "rtt_ms": 1.769985, - "checkpoint": 0, - "vertex_from": "531", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.779177026Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1833325, - "rtt_ms": 1.833325, - "checkpoint": 0, - "vertex_from": "531", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.779220026Z" + "timestamp": "2025-11-27T04:04:16.084713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098917, - "rtt_ms": 1.098917, + "rtt_ns": 1456167, + "rtt_ms": 1.456167, "checkpoint": 0, "vertex_from": "531", "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.779226546Z" + "timestamp": "2025-11-27T04:04:16.084795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218556, - "rtt_ms": 1.218556, + "rtt_ns": 1246333, + "rtt_ms": 1.246333, "checkpoint": 0, "vertex_from": "531", "vertex_to": "803", - "timestamp": "2025-11-27T01:23:51.779376045Z" + "timestamp": "2025-11-27T04:04:16.085265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334756, - "rtt_ms": 1.334756, + "rtt_ns": 1159250, + "rtt_ms": 1.15925, "checkpoint": 0, "vertex_from": "531", "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.779494945Z" + "timestamp": "2025-11-27T04:04:16.085401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546565, - "rtt_ms": 1.546565, + "rtt_ns": 1548958, + "rtt_ms": 1.548958, "checkpoint": 0, "vertex_from": "531", "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.779701374Z" + "timestamp": "2025-11-27T04:04:16.085455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549175, - "rtt_ms": 1.549175, + "rtt_ns": 1016875, + "rtt_ms": 1.016875, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.779716864Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:04:16.085465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018438, - "rtt_ms": 1.018438, + "rtt_ns": 1342666, + "rtt_ms": 1.342666, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.780027534Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:16.085699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243056, - "rtt_ms": 1.243056, + "rtt_ns": 1469250, + "rtt_ms": 1.46925, "checkpoint": 0, - "vertex_from": "531", - "vertex_to": "646", - "timestamp": "2025-11-27T01:23:51.780064063Z" + "vertex_from": "532", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.086185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007607, - "rtt_ms": 1.007607, + "rtt_ns": 1780583, + "rtt_ms": 1.780583, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.780095843Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:16.086419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099617, - "rtt_ms": 1.099617, + "rtt_ns": 1965792, + "rtt_ms": 1.965792, "checkpoint": 0, - "vertex_from": "532", - "vertex_to": "695", - "timestamp": "2025-11-27T01:23:51.780804461Z" + "vertex_from": "531", + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.086443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125457, - "rtt_ms": 1.125457, + "rtt_ns": 1467375, + "rtt_ms": 1.467375, "checkpoint": 0, "vertex_from": "532", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.780845101Z" + "timestamp": "2025-11-27T04:04:16.086933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365916, - "rtt_ms": 1.365916, + "rtt_ns": 2344625, + "rtt_ms": 2.344625, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "678", - "timestamp": "2025-11-27T01:23:51.780862231Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:16.086955-08:00" }, { "operation": "add_edge", - "rtt_ns": 803378, - "rtt_ms": 0.803378, + "rtt_ns": 2176041, + "rtt_ms": 2.176041, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.780868621Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:16.086972-08:00" }, { "operation": "add_edge", - "rtt_ns": 884478, - "rtt_ms": 0.884478, + "rtt_ns": 1653459, + "rtt_ms": 1.653459, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.780913431Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:04:16.087056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730975, - "rtt_ms": 1.730975, + "rtt_ns": 1776542, + "rtt_ms": 1.776542, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.780959231Z" + "vertex_to": "695", + "timestamp": "2025-11-27T04:04:16.087232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063997, - "rtt_ms": 1.063997, + "rtt_ns": 2131334, + "rtt_ms": 2.131334, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.78116112Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.087403-08:00" }, { "operation": "add_edge", - "rtt_ns": 2045054, - "rtt_ms": 2.045054, + "rtt_ns": 1723291, + "rtt_ms": 1.723291, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.78126624Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.087425-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297233, - "rtt_ms": 2.297233, + "rtt_ns": 1963583, + "rtt_ms": 1.963583, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.781476629Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.088385-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113594, - "rtt_ms": 2.113594, + "rtt_ns": 2087542, + "rtt_ms": 2.087542, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.781490999Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:16.088531-08:00" }, { "operation": "add_edge", - "rtt_ns": 741488, - "rtt_ms": 0.741488, + "rtt_ns": 1201708, + "rtt_ms": 1.201708, "checkpoint": 0, - "vertex_from": "532", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.781548309Z" + "vertex_from": "533", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.088605-08:00" }, { "operation": "add_edge", - "rtt_ns": 716278, - "rtt_ms": 0.716278, + "rtt_ns": 1716250, + "rtt_ms": 1.71625, "checkpoint": 0, "vertex_from": "532", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.781562699Z" + "timestamp": "2025-11-27T04:04:16.08865-08:00" }, { "operation": "add_edge", - "rtt_ns": 728698, - "rtt_ms": 0.728698, + "rtt_ns": 2531625, + "rtt_ms": 2.531625, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:51.781598869Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:16.088718-08:00" }, { "operation": "add_edge", - "rtt_ns": 752148, - "rtt_ms": 0.752148, + "rtt_ns": 1310416, + "rtt_ms": 1.310416, "checkpoint": 0, - "vertex_from": "532", - "vertex_to": "618", - "timestamp": "2025-11-27T01:23:51.781616789Z" + "vertex_from": "534", + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:16.088736-08:00" }, { "operation": "add_edge", - "rtt_ns": 784598, - "rtt_ms": 0.784598, + "rtt_ns": 1860792, + "rtt_ms": 1.860792, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:51.781699319Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:04:16.088817-08:00" }, { "operation": "add_edge", - "rtt_ns": 606558, - "rtt_ms": 0.606558, + "rtt_ns": 1646875, + "rtt_ms": 1.646875, "checkpoint": 0, "vertex_from": "533", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.781768368Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:16.08888-08:00" }, { "operation": "add_edge", - "rtt_ns": 819887, - "rtt_ms": 0.819887, + "rtt_ns": 1922250, + "rtt_ms": 1.92225, "checkpoint": 0, - "vertex_from": "533", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.781780048Z" + "vertex_from": "532", + "vertex_to": "676", + "timestamp": "2025-11-27T04:04:16.088895-08:00" }, { "operation": "add_edge", - "rtt_ns": 604568, - "rtt_ms": 0.604568, + "rtt_ns": 2527125, + "rtt_ms": 2.527125, "checkpoint": 0, - "vertex_from": "534", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.781873468Z" + "vertex_from": "532", + "vertex_to": "553", + "timestamp": "2025-11-27T04:04:16.089584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241206, - "rtt_ms": 1.241206, + "rtt_ns": 1061083, + "rtt_ms": 1.061083, "checkpoint": 0, - "vertex_from": "535", - "vertex_to": "594", - "timestamp": "2025-11-27T01:23:51.782719295Z" + "vertex_from": "536", + "vertex_to": "833", + "timestamp": "2025-11-27T04:04:16.089593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685715, - "rtt_ms": 1.685715, + "rtt_ns": 1307542, + "rtt_ms": 1.307542, "checkpoint": 0, - "vertex_from": "536", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.783177644Z" + "vertex_from": "535", + "vertex_to": "594", + "timestamp": "2025-11-27T04:04:16.089693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798865, - "rtt_ms": 1.798865, + "rtt_ns": 1049834, + "rtt_ms": 1.049834, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.783349954Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.089701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842374, - "rtt_ms": 1.842374, + "rtt_ns": 1106416, + "rtt_ms": 1.106416, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "553", - "timestamp": "2025-11-27T01:23:51.783442013Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.089712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829424, - "rtt_ms": 1.829424, + "rtt_ns": 1899333, + "rtt_ms": 1.899333, "checkpoint": 0, "vertex_from": "536", "vertex_to": "550", - "timestamp": "2025-11-27T01:23:51.783447643Z" + "timestamp": "2025-11-27T04:04:16.090636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907534, - "rtt_ms": 1.907534, + "rtt_ns": 1218792, + "rtt_ms": 1.218792, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.783471563Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:16.090805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787565, - "rtt_ms": 1.787565, + "rtt_ns": 2117500, + "rtt_ms": 2.1175, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.783489983Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:04:16.090836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730525, - "rtt_ms": 1.730525, + "rtt_ns": 1244625, + "rtt_ms": 1.244625, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.783500073Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:16.090839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668535, - "rtt_ms": 1.668535, + "rtt_ns": 2114791, + "rtt_ms": 2.114791, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.783542843Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:16.090932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2459413, - "rtt_ms": 2.459413, + "rtt_ns": 1451125, + "rtt_ms": 1.451125, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:51.784241771Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:04:16.091153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075187, - "rtt_ms": 1.075187, + "rtt_ns": 1459292, + "rtt_ms": 1.459292, "checkpoint": 0, - "vertex_from": "538", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.78456733Z" + "vertex_from": "536", + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:16.091173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947635, - "rtt_ms": 1.947635, + "rtt_ns": 2277833, + "rtt_ms": 2.277833, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.78467171Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:04:16.091173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320386, - "rtt_ms": 1.320386, + "rtt_ns": 1511500, + "rtt_ms": 1.5115, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "546", - "timestamp": "2025-11-27T01:23:51.78467225Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:04:16.091206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644515, - "rtt_ms": 1.644515, + "rtt_ns": 2423792, + "rtt_ms": 2.423792, "checkpoint": 0, - "vertex_from": "538", + "vertex_from": "536", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.785146878Z" + "timestamp": "2025-11-27T04:04:16.091305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737935, - "rtt_ms": 1.737935, + "rtt_ns": 1120208, + "rtt_ms": 1.120208, "checkpoint": 0, - "vertex_from": "536", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.785181718Z" + "vertex_from": "538", + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.092053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764205, - "rtt_ms": 1.764205, + "rtt_ns": 1250667, + "rtt_ms": 1.250667, "checkpoint": 0, - "vertex_from": "536", + "vertex_from": "537", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.785213798Z" + "timestamp": "2025-11-27T04:04:16.092059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773855, - "rtt_ms": 1.773855, + "rtt_ns": 1421667, + "rtt_ms": 1.421667, "checkpoint": 0, - "vertex_from": "537", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.785246788Z" + "vertex_from": "538", + "vertex_to": "544", + "timestamp": "2025-11-27T04:04:16.092261-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091664, - "rtt_ms": 2.091664, + "rtt_ns": 1654416, + "rtt_ms": 1.654416, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "601", - "timestamp": "2025-11-27T01:23:51.785271588Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.092291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732145, - "rtt_ms": 1.732145, + "rtt_ns": 1495709, + "rtt_ms": 1.495709, "checkpoint": 0, "vertex_from": "538", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.785276938Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.092332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406026, - "rtt_ms": 1.406026, + "rtt_ns": 1724875, + "rtt_ms": 1.724875, "checkpoint": 0, - "vertex_from": "540", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.786080666Z" + "vertex_from": "541", + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.092933-08:00" }, { "operation": "add_edge", - "rtt_ns": 955878, - "rtt_ms": 0.955878, + "rtt_ns": 1913458, + "rtt_ms": 1.913458, "checkpoint": 0, - "vertex_from": "541", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:51.786105186Z" + "vertex_from": "538", + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.093068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588936, - "rtt_ms": 1.588936, + "rtt_ns": 1920459, + "rtt_ms": 1.920459, "checkpoint": 0, "vertex_from": "540", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.786157846Z" + "timestamp": "2025-11-27T04:04:16.093094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955285, - "rtt_ms": 1.955285, + "rtt_ns": 1402250, + "rtt_ms": 1.40225, "checkpoint": 0, - "vertex_from": "538", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.786199856Z" + "vertex_from": "542", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.093462-08:00" }, { "operation": "add_edge", - "rtt_ns": 949737, - "rtt_ms": 0.949737, + "rtt_ns": 1232375, + "rtt_ms": 1.232375, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "912", - "timestamp": "2025-11-27T01:23:51.786226265Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:04:16.093565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050117, - "rtt_ms": 1.050117, + "rtt_ns": 2281917, + "rtt_ms": 2.281917, "checkpoint": 0, - "vertex_from": "542", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.786265015Z" + "vertex_from": "541", + "vertex_to": "835", + "timestamp": "2025-11-27T04:04:16.093587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622056, - "rtt_ms": 1.622056, + "rtt_ns": 1634291, + "rtt_ms": 1.634291, "checkpoint": 0, "vertex_from": "542", "vertex_to": "544", - "timestamp": "2025-11-27T01:23:51.786805694Z" + "timestamp": "2025-11-27T04:04:16.093689-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134164, - "rtt_ms": 2.134164, + "rtt_ns": 1961459, + "rtt_ms": 1.961459, "checkpoint": 0, - "vertex_from": "541", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.786809324Z" + "vertex_from": "544", + "vertex_to": "912", + "timestamp": "2025-11-27T04:04:16.094253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584756, - "rtt_ms": 1.584756, + "rtt_ns": 3093916, + "rtt_ms": 3.093916, "checkpoint": 0, - "vertex_from": "544", - "vertex_to": "906", - "timestamp": "2025-11-27T01:23:51.786863284Z" + "vertex_from": "540", + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:16.094268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678775, - "rtt_ms": 1.678775, + "rtt_ns": 1311500, + "rtt_ms": 1.3115, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.786926743Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:04:16.094383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225256, - "rtt_ms": 1.225256, + "rtt_ns": 2137041, + "rtt_ms": 2.137041, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.787332442Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.094398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200816, - "rtt_ms": 1.200816, + "rtt_ns": 1501791, + "rtt_ms": 1.501791, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.787402272Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:04:16.094436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2166464, - "rtt_ms": 2.166464, + "rtt_ns": 1340417, + "rtt_ms": 1.340417, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "781", - "timestamp": "2025-11-27T01:23:51.78824917Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:04:16.094436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418736, - "rtt_ms": 1.418736, + "rtt_ns": 1136708, + "rtt_ms": 1.136708, "checkpoint": 0, "vertex_from": "544", "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.78828396Z" + "timestamp": "2025-11-27T04:04:16.095406-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057525, - "rtt_ms": 2.057525, + "rtt_ns": 1959250, + "rtt_ms": 1.95925, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.788285Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:04:16.095422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356747, - "rtt_ms": 1.356747, + "rtt_ns": 1982583, + "rtt_ms": 1.982583, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.78828573Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.095549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487766, - "rtt_ms": 1.487766, + "rtt_ns": 1969666, + "rtt_ms": 1.969666, "checkpoint": 0, "vertex_from": "544", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.78829582Z" + "timestamp": "2025-11-27T04:04:16.095659-08:00" }, { "operation": "add_edge", - "rtt_ns": 2136204, - "rtt_ms": 2.136204, + "rtt_ns": 2080042, + "rtt_ms": 2.080042, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "545", - "timestamp": "2025-11-27T01:23:51.78829919Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:04:16.095668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490286, - "rtt_ms": 1.490286, + "rtt_ns": 1285042, + "rtt_ms": 1.285042, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.78830302Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.095684-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066564, - "rtt_ms": 2.066564, + "rtt_ns": 1341750, + "rtt_ms": 1.34175, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "659", - "timestamp": "2025-11-27T01:23:51.788334979Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.095725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543676, - "rtt_ms": 1.543676, + "rtt_ns": 1339125, + "rtt_ms": 1.339125, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.788947438Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.095778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634696, - "rtt_ms": 1.634696, + "rtt_ns": 1400958, + "rtt_ms": 1.400958, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.788969288Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.095837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112706, - "rtt_ms": 1.112706, + "rtt_ns": 1584625, + "rtt_ms": 1.584625, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.789363706Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.095839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145836, - "rtt_ms": 1.145836, + "rtt_ns": 1419750, + "rtt_ms": 1.41975, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.789433406Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:04:16.096827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163446, - "rtt_ms": 1.163446, + "rtt_ns": 1268375, + "rtt_ms": 1.268375, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "585", - "timestamp": "2025-11-27T01:23:51.789448906Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.096938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504945, - "rtt_ms": 1.504945, + "rtt_ns": 1282500, + "rtt_ms": 1.2825, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:51.789810945Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:04:16.096944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660835, - "rtt_ms": 1.660835, + "rtt_ns": 1382000, + "rtt_ms": 1.382, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.789962905Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:04:16.097067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768545, - "rtt_ms": 1.768545, + "rtt_ns": 1355666, + "rtt_ms": 1.355666, "checkpoint": 0, "vertex_from": "544", "vertex_to": "807", - "timestamp": "2025-11-27T01:23:51.790104944Z" + "timestamp": "2025-11-27T04:04:16.097082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144686, - "rtt_ms": 1.144686, + "rtt_ns": 1244459, + "rtt_ms": 1.244459, "checkpoint": 0, "vertex_from": "544", "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.790116004Z" + "timestamp": "2025-11-27T04:04:16.097082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823614, - "rtt_ms": 1.823614, + "rtt_ns": 1662042, + "rtt_ms": 1.662042, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "583", - "timestamp": "2025-11-27T01:23:51.790122044Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:04:16.097084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861834, - "rtt_ms": 1.861834, + "rtt_ns": 1325042, + "rtt_ms": 1.325042, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:51.790148294Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.097104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332896, - "rtt_ms": 1.332896, + "rtt_ns": 1675625, + "rtt_ms": 1.675625, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.790281794Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:04:16.097225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386636, - "rtt_ms": 1.386636, + "rtt_ns": 1396833, + "rtt_ms": 1.396833, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.790821892Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.097236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390306, - "rtt_ms": 1.390306, + "rtt_ns": 1216708, + "rtt_ms": 1.216708, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.790841332Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.098322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034727, - "rtt_ms": 1.034727, + "rtt_ns": 1275042, + "rtt_ms": 1.275042, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.790847272Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:04:16.098343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803685, - "rtt_ms": 1.803685, + "rtt_ns": 1615833, + "rtt_ms": 1.615833, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.791168571Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:16.098443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255496, - "rtt_ms": 1.255496, + "rtt_ns": 1378833, + "rtt_ms": 1.378833, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "548", - "timestamp": "2025-11-27T01:23:51.791219901Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:04:16.098464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195487, - "rtt_ms": 1.195487, + "rtt_ns": 1528583, + "rtt_ms": 1.528583, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.791315641Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.098467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235366, - "rtt_ms": 1.235366, + "rtt_ns": 1451000, + "rtt_ms": 1.451, "checkpoint": 0, "vertex_from": "544", "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.79134153Z" + "timestamp": "2025-11-27T04:04:16.098533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260266, - "rtt_ms": 1.260266, + "rtt_ns": 1678167, + "rtt_ms": 1.678167, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:51.79138372Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:16.098623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161156, - "rtt_ms": 1.161156, + "rtt_ns": 1556750, + "rtt_ms": 1.55675, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.79144536Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:16.09864-08:00" }, { "operation": "add_edge", - "rtt_ns": 642028, - "rtt_ms": 0.642028, + "rtt_ns": 1413917, + "rtt_ms": 1.413917, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:51.79146507Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.09864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672005, - "rtt_ms": 1.672005, + "rtt_ns": 1474833, + "rtt_ms": 1.474833, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.791821479Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:04:16.098712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214326, - "rtt_ms": 1.214326, + "rtt_ns": 1276458, + "rtt_ms": 1.276458, "checkpoint": 0, "vertex_from": "545", "vertex_to": "547", - "timestamp": "2025-11-27T01:23:51.792064918Z" + "timestamp": "2025-11-27T04:04:16.099623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307296, - "rtt_ms": 1.307296, + "rtt_ns": 1340042, + "rtt_ms": 1.340042, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.792150348Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:04:16.099808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554556, - "rtt_ms": 1.554556, + "rtt_ns": 1424375, + "rtt_ms": 1.424375, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.792725787Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:16.100048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633665, - "rtt_ms": 1.633665, + "rtt_ns": 1415083, + "rtt_ms": 1.415083, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.792854386Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:04:16.100056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623385, - "rtt_ms": 1.623385, + "rtt_ns": 1764833, + "rtt_ms": 1.764833, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:51.792940426Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.100087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698836, - "rtt_ms": 1.698836, + "rtt_ns": 1740500, + "rtt_ms": 1.7405, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.793083896Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.100185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857985, - "rtt_ms": 1.857985, + "rtt_ns": 1775167, + "rtt_ms": 1.775167, + "checkpoint": 0, + "vertex_from": "545", + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.10024-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1723416, + "rtt_ms": 1.723416, "checkpoint": 0, "vertex_from": "545", "vertex_to": "557", - "timestamp": "2025-11-27T01:23:51.793202275Z" + "timestamp": "2025-11-27T04:04:16.100258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768675, - "rtt_ms": 1.768675, + "rtt_ns": 1628333, + "rtt_ms": 1.628333, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:51.793234915Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:04:16.100269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477406, - "rtt_ms": 1.477406, + "rtt_ns": 1671416, + "rtt_ms": 1.671416, "checkpoint": 0, "vertex_from": "545", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.793299945Z" + "timestamp": "2025-11-27T04:04:16.100384-08:00" }, { "operation": "add_edge", - "rtt_ns": 2493563, - "rtt_ms": 2.493563, + "rtt_ns": 1146167, + "rtt_ms": 1.146167, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.793940683Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:16.10077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309666, - "rtt_ms": 1.309666, + "rtt_ns": 1063333, + "rtt_ms": 1.063333, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.794036993Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.101304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052525, - "rtt_ms": 2.052525, + "rtt_ns": 1450625, + "rtt_ms": 1.450625, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.794126483Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:04:16.101539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286057, - "rtt_ms": 1.286057, + "rtt_ns": 1495542, + "rtt_ms": 1.495542, "checkpoint": 0, "vertex_from": "545", "vertex_to": "560", - "timestamp": "2025-11-27T01:23:51.794143203Z" + "timestamp": "2025-11-27T04:04:16.101552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994645, - "rtt_ms": 1.994645, + "rtt_ns": 1441333, + "rtt_ms": 1.441333, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.794147233Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:16.101629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348426, - "rtt_ms": 1.348426, + "rtt_ns": 1381875, + "rtt_ms": 1.381875, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "692", - "timestamp": "2025-11-27T01:23:51.794290572Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:16.10164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368236, - "rtt_ms": 1.368236, + "rtt_ns": 1301458, + "rtt_ms": 1.301458, "checkpoint": 0, - "vertex_from": "545", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.794453422Z" + "vertex_from": "546", + "vertex_to": "645", + "timestamp": "2025-11-27T04:04:16.101686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195007, - "rtt_ms": 1.195007, + "rtt_ns": 1956166, + "rtt_ms": 1.956166, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.794495892Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:16.101765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394816, - "rtt_ms": 1.394816, + "rtt_ns": 1733708, + "rtt_ms": 1.733708, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.794631031Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.101783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546976, - "rtt_ms": 1.546976, + "rtt_ns": 2408083, + "rtt_ms": 2.408083, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.794750601Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:16.102677-08:00" }, { "operation": "add_edge", - "rtt_ns": 852068, - "rtt_ms": 0.852068, + "rtt_ns": 1441875, + "rtt_ms": 1.441875, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "645", - "timestamp": "2025-11-27T01:23:51.794798631Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:04:16.102749-08:00" }, { "operation": "add_edge", - "rtt_ns": 818927, - "rtt_ms": 0.818927, + "rtt_ns": 1512292, + "rtt_ms": 1.512292, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:51.7949473Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:04:16.103154-08:00" }, { "operation": "add_edge", - "rtt_ns": 932197, - "rtt_ms": 0.932197, + "rtt_ns": 1545334, + "rtt_ms": 1.545334, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "562", - "timestamp": "2025-11-27T01:23:51.79497092Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:04:16.103176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001717, - "rtt_ms": 1.001717, + "rtt_ns": 2406250, + "rtt_ms": 2.40625, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "555", - "timestamp": "2025-11-27T01:23:51.79514709Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:04:16.103178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071447, - "rtt_ms": 1.071447, + "rtt_ns": 1674458, + "rtt_ms": 1.674458, "checkpoint": 0, "vertex_from": "546", "vertex_to": "600", - "timestamp": "2025-11-27T01:23:51.79522042Z" + "timestamp": "2025-11-27T04:04:16.103228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040297, - "rtt_ms": 1.040297, + "rtt_ns": 1463125, + "rtt_ms": 1.463125, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.795332209Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.103247-08:00" }, { "operation": "add_edge", - "rtt_ns": 907617, - "rtt_ms": 0.907617, + "rtt_ns": 1729167, + "rtt_ms": 1.729167, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.795362069Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:04:16.103269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014077, - "rtt_ms": 1.014077, + "rtt_ns": 1666875, + "rtt_ms": 1.666875, "checkpoint": 0, "vertex_from": "546", "vertex_to": "791", - "timestamp": "2025-11-27T01:23:51.795511269Z" + "timestamp": "2025-11-27T04:04:16.103354-08:00" }, { "operation": "add_edge", - "rtt_ns": 930088, - "rtt_ms": 0.930088, + "rtt_ns": 1683875, + "rtt_ms": 1.683875, "checkpoint": 0, "vertex_from": "546", "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.795562459Z" + "timestamp": "2025-11-27T04:04:16.103449-08:00" }, { "operation": "add_edge", - "rtt_ns": 900177, - "rtt_ms": 0.900177, + "rtt_ns": 1019000, + "rtt_ms": 1.019, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.795657428Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:04:16.103698-08:00" }, { "operation": "add_edge", - "rtt_ns": 960667, - "rtt_ms": 0.960667, + "rtt_ns": 1273208, + "rtt_ms": 1.273208, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:51.795760708Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.10445-08:00" }, { "operation": "add_edge", - "rtt_ns": 920888, - "rtt_ms": 0.920888, + "rtt_ns": 1223250, + "rtt_ms": 1.22325, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "913", - "timestamp": "2025-11-27T01:23:51.795870198Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.104494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021147, - "rtt_ms": 1.021147, + "rtt_ns": 1848417, + "rtt_ms": 1.848417, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.795994437Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:04:16.104598-08:00" }, { "operation": "add_edge", - "rtt_ns": 969767, - "rtt_ms": 0.969767, + "rtt_ns": 1481417, + "rtt_ms": 1.481417, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.796119367Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:16.104662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011517, - "rtt_ms": 1.011517, + "rtt_ns": 1539958, + "rtt_ms": 1.539958, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.796232707Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.104694-08:00" }, { "operation": "add_edge", - "rtt_ns": 911608, - "rtt_ms": 0.911608, + "rtt_ns": 1403083, + "rtt_ms": 1.403083, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.796274917Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.104759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070507, - "rtt_ms": 1.070507, + "rtt_ns": 1358166, + "rtt_ms": 1.358166, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.796404476Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:04:16.104809-08:00" }, { "operation": "add_edge", - "rtt_ns": 883887, - "rtt_ms": 0.883887, + "rtt_ns": 1673167, + "rtt_ms": 1.673167, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.796447616Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:16.104921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109347, - "rtt_ms": 1.109347, + "rtt_ns": 1246583, + "rtt_ms": 1.246583, "checkpoint": 0, - "vertex_from": "546", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.796621946Z" + "vertex_from": "547", + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.105743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033787, - "rtt_ms": 1.033787, + "rtt_ns": 1413917, + "rtt_ms": 1.413917, "checkpoint": 0, - "vertex_from": "546", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.796692475Z" + "vertex_from": "548", + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.106109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066447, - "rtt_ms": 1.066447, + "rtt_ns": 1335459, + "rtt_ms": 1.335459, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "600", - "timestamp": "2025-11-27T01:23:51.797301234Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:16.106145-08:00" }, { "operation": "add_edge", - "rtt_ns": 911538, - "rtt_ms": 0.911538, + "rtt_ns": 1550250, + "rtt_ms": 1.55025, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.797317564Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:04:16.106213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568856, - "rtt_ms": 1.568856, + "rtt_ns": 1656958, + "rtt_ms": 1.656958, "checkpoint": 0, "vertex_from": "547", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.797331194Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:16.106256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349897, - "rtt_ms": 1.349897, + "rtt_ns": 1813209, + "rtt_ms": 1.813209, "checkpoint": 0, "vertex_from": "547", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.797345404Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.106264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137906, - "rtt_ms": 1.137906, + "rtt_ns": 1530500, + "rtt_ms": 1.5305, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.797414013Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.10629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335146, - "rtt_ms": 1.335146, + "rtt_ns": 3205375, + "rtt_ms": 3.205375, "checkpoint": 0, - "vertex_from": "547", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.797457963Z" + "vertex_from": "546", + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.106434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636865, - "rtt_ms": 1.636865, + "rtt_ns": 2744042, + "rtt_ms": 2.744042, "checkpoint": 0, "vertex_from": "547", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.797508573Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.106454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263557, - "rtt_ms": 1.263557, + "rtt_ns": 1753042, + "rtt_ms": 1.753042, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.797712733Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:04:16.106675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534386, - "rtt_ms": 1.534386, + "rtt_ns": 1108166, + "rtt_ms": 1.108166, "checkpoint": 0, "vertex_from": "548", "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.798228211Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1765765, - "rtt_ms": 1.765765, - "checkpoint": 0, - "vertex_from": "548", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:51.798389081Z" + "timestamp": "2025-11-27T04:04:16.106852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340266, - "rtt_ms": 1.340266, + "rtt_ns": 1148750, + "rtt_ms": 1.14875, "checkpoint": 0, "vertex_from": "548", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.79865916Z" + "timestamp": "2025-11-27T04:04:16.107296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411336, - "rtt_ms": 1.411336, + "rtt_ns": 1326250, + "rtt_ms": 1.32625, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.798828269Z" + "vertex_to": "854", + "timestamp": "2025-11-27T04:04:16.107541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500235, - "rtt_ms": 1.500235, + "rtt_ns": 1496375, + "rtt_ms": 1.496375, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:51.798846989Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.107606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422836, - "rtt_ms": 1.422836, + "rtt_ns": 1330250, + "rtt_ms": 1.33025, "checkpoint": 0, "vertex_from": "548", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.798932699Z" + "timestamp": "2025-11-27T04:04:16.107765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497736, - "rtt_ms": 1.497736, + "rtt_ns": 1199625, + "rtt_ms": 1.199625, "checkpoint": 0, - "vertex_from": "548", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.798957089Z" + "vertex_from": "549", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.107876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645375, - "rtt_ms": 1.645375, + "rtt_ns": 1458625, + "rtt_ms": 1.458625, "checkpoint": 0, - "vertex_from": "548", - "vertex_to": "854", - "timestamp": "2025-11-27T01:23:51.798979729Z" + "vertex_from": "549", + "vertex_to": "588", + "timestamp": "2025-11-27T04:04:16.107914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692935, - "rtt_ms": 1.692935, + "rtt_ns": 2120209, + "rtt_ms": 2.120209, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.798995359Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:04:16.108386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352766, - "rtt_ms": 1.352766, + "rtt_ns": 2115292, + "rtt_ms": 2.115292, "checkpoint": 0, - "vertex_from": "549", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.799582557Z" + "vertex_from": "548", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.108407-08:00" }, { "operation": "add_edge", - "rtt_ns": 989507, - "rtt_ms": 0.989507, + "rtt_ns": 2163584, + "rtt_ms": 2.163584, "checkpoint": 0, - "vertex_from": "549", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.799649817Z" + "vertex_from": "548", + "vertex_to": "620", + "timestamp": "2025-11-27T04:04:16.108421-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067134, - "rtt_ms": 2.067134, + "rtt_ns": 1403459, + "rtt_ms": 1.403459, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "588", - "timestamp": "2025-11-27T01:23:51.799780867Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:16.109318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461306, - "rtt_ms": 1.461306, + "rtt_ns": 2082084, + "rtt_ms": 2.082084, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "586", - "timestamp": "2025-11-27T01:23:51.799851677Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.109379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639745, - "rtt_ms": 1.639745, + "rtt_ns": 2421541, + "rtt_ms": 2.421541, "checkpoint": 0, - "vertex_from": "550", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.800639314Z" + "vertex_from": "549", + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:16.109963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730275, - "rtt_ms": 1.730275, + "rtt_ns": 2274000, + "rtt_ms": 2.274, "checkpoint": 0, "vertex_from": "549", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.800664314Z" + "timestamp": "2025-11-27T04:04:16.110041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837335, - "rtt_ms": 1.837335, + "rtt_ns": 3206042, + "rtt_ms": 3.206042, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.800685924Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:04:16.11006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739565, - "rtt_ms": 1.739565, + "rtt_ns": 2296625, + "rtt_ms": 2.296625, "checkpoint": 0, "vertex_from": "549", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.800698304Z" + "timestamp": "2025-11-27T04:04:16.110174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736335, - "rtt_ms": 1.736335, + "rtt_ns": 2447625, + "rtt_ms": 2.447625, "checkpoint": 0, - "vertex_from": "549", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.800717924Z" + "vertex_from": "552", + "vertex_to": "609", + "timestamp": "2025-11-27T04:04:16.11087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892815, - "rtt_ms": 1.892815, + "rtt_ns": 1633250, + "rtt_ms": 1.63325, "checkpoint": 0, - "vertex_from": "549", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.800722354Z" + "vertex_from": "552", + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.111021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183847, - "rtt_ms": 1.183847, + "rtt_ns": 3500000, + "rtt_ms": 3.5, "checkpoint": 0, - "vertex_from": "552", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.800767804Z" + "vertex_from": "549", + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.111112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313016, - "rtt_ms": 1.313016, + "rtt_ns": 2735666, + "rtt_ms": 2.735666, "checkpoint": 0, - "vertex_from": "552", - "vertex_to": "609", - "timestamp": "2025-11-27T01:23:51.800964123Z" + "vertex_from": "550", + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:16.111123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204296, - "rtt_ms": 1.204296, + "rtt_ns": 2120250, + "rtt_ms": 2.12025, "checkpoint": 0, "vertex_from": "552", "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.800986143Z" + "timestamp": "2025-11-27T04:04:16.11144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319996, - "rtt_ms": 1.319996, + "rtt_ns": 3258583, + "rtt_ms": 3.258583, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.801172853Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.111666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186567, - "rtt_ms": 1.186567, + "rtt_ns": 1299208, + "rtt_ms": 1.299208, "checkpoint": 0, - "vertex_from": "552", - "vertex_to": "596", - "timestamp": "2025-11-27T01:23:51.801828141Z" + "vertex_from": "553", + "vertex_to": "736", + "timestamp": "2025-11-27T04:04:16.112742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180787, - "rtt_ms": 1.180787, + "rtt_ns": 1941333, + "rtt_ms": 1.941333, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.801846601Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:16.112812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126497, - "rtt_ms": 1.126497, + "rtt_ns": 2698875, + "rtt_ms": 2.698875, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.801847651Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:16.112874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129097, - "rtt_ms": 1.129097, + "rtt_ns": 1946250, + "rtt_ms": 1.94625, "checkpoint": 0, "vertex_from": "552", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.801852821Z" + "timestamp": "2025-11-27T04:04:16.112968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187586, - "rtt_ms": 1.187586, + "rtt_ns": 2938917, + "rtt_ms": 2.938917, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "565", - "timestamp": "2025-11-27T01:23:51.80187671Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:04:16.11298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137716, - "rtt_ms": 1.137716, + "rtt_ns": 3016917, + "rtt_ms": 3.016917, "checkpoint": 0, - "vertex_from": "553", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.80190823Z" + "vertex_from": "552", + "vertex_to": "596", + "timestamp": "2025-11-27T04:04:16.112982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313686, - "rtt_ms": 1.313686, + "rtt_ns": 1879917, + "rtt_ms": 1.879917, "checkpoint": 0, - "vertex_from": "552", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.80201309Z" + "vertex_from": "553", + "vertex_to": "722", + "timestamp": "2025-11-27T04:04:16.113006-08:00" }, { "operation": "add_edge", - "rtt_ns": 784717, - "rtt_ms": 0.784717, + "rtt_ns": 2968250, + "rtt_ms": 2.96825, "checkpoint": 0, - "vertex_from": "553", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.802615718Z" + "vertex_from": "552", + "vertex_to": "565", + "timestamp": "2025-11-27T04:04:16.113029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753605, - "rtt_ms": 1.753605, + "rtt_ns": 1918417, + "rtt_ms": 1.918417, "checkpoint": 0, "vertex_from": "553", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:51.802719448Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.113032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596435, - "rtt_ms": 1.596435, + "rtt_ns": 1492958, + "rtt_ms": 1.492958, "checkpoint": 0, "vertex_from": "553", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.802770508Z" + "timestamp": "2025-11-27T04:04:16.11316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785305, - "rtt_ms": 1.785305, + "rtt_ns": 1505625, + "rtt_ms": 1.505625, "checkpoint": 0, "vertex_from": "553", - "vertex_to": "736", - "timestamp": "2025-11-27T01:23:51.802774518Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:16.114248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352216, - "rtt_ms": 1.352216, + "rtt_ns": 1119125, + "rtt_ms": 1.119125, "checkpoint": 0, - "vertex_from": "554", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.803231586Z" + "vertex_from": "556", + "vertex_to": "813", + "timestamp": "2025-11-27T04:04:16.11428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440305, - "rtt_ms": 1.440305, + "rtt_ns": 1562750, + "rtt_ms": 1.56275, "checkpoint": 0, "vertex_from": "554", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.803289116Z" + "timestamp": "2025-11-27T04:04:16.114376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285956, - "rtt_ms": 1.285956, - "checkpoint": 0, - "vertex_from": "555", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.803301696Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1487595, - "rtt_ms": 1.487595, + "rtt_ns": 1514708, + "rtt_ms": 1.514708, "checkpoint": 0, "vertex_from": "554", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.803342206Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:04:16.11439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500145, - "rtt_ms": 1.500145, + "rtt_ns": 1374500, + "rtt_ms": 1.3745, "checkpoint": 0, - "vertex_from": "554", - "vertex_to": "582", - "timestamp": "2025-11-27T01:23:51.803349326Z" + "vertex_from": "556", + "vertex_to": "624", + "timestamp": "2025-11-27T04:04:16.114407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492106, - "rtt_ms": 1.492106, + "rtt_ns": 1488167, + "rtt_ms": 1.488167, "checkpoint": 0, "vertex_from": "555", - "vertex_to": "872", - "timestamp": "2025-11-27T01:23:51.803403316Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.114518-08:00" }, { "operation": "add_edge", - "rtt_ns": 817798, - "rtt_ms": 0.817798, + "rtt_ns": 1559459, + "rtt_ms": 1.559459, "checkpoint": 0, - "vertex_from": "555", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.803434786Z" + "vertex_from": "554", + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.11453-08:00" }, { "operation": "add_edge", - "rtt_ns": 808398, - "rtt_ms": 0.808398, + "rtt_ns": 1531834, + "rtt_ms": 1.531834, "checkpoint": 0, - "vertex_from": "556", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.803531006Z" + "vertex_from": "555", + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.114538-08:00" }, { "operation": "add_edge", - "rtt_ns": 755318, - "rtt_ms": 0.755318, + "rtt_ns": 1671042, + "rtt_ms": 1.671042, "checkpoint": 0, - "vertex_from": "558", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.803531526Z" + "vertex_from": "554", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.114653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254826, - "rtt_ms": 1.254826, + "rtt_ns": 1684833, + "rtt_ms": 1.684833, "checkpoint": 0, - "vertex_from": "556", - "vertex_to": "813", - "timestamp": "2025-11-27T01:23:51.804026784Z" + "vertex_from": "555", + "vertex_to": "872", + "timestamp": "2025-11-27T04:04:16.114668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006628, - "rtt_ms": 1.006628, + "rtt_ns": 1497208, + "rtt_ms": 1.497208, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "680", - "timestamp": "2025-11-27T01:23:51.804240594Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:16.115904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732645, - "rtt_ms": 1.732645, + "rtt_ns": 1697000, + "rtt_ms": 1.697, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "902", - "timestamp": "2025-11-27T01:23:51.805023231Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:04:16.115978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489035, - "rtt_ms": 1.489035, + "rtt_ns": 1508042, + "rtt_ms": 1.508042, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.805023491Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:04:16.116028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690325, - "rtt_ms": 1.690325, + "rtt_ns": 1834417, + "rtt_ms": 1.834417, "checkpoint": 0, - "vertex_from": "560", - "vertex_to": "595", - "timestamp": "2025-11-27T01:23:51.805041401Z" + "vertex_from": "558", + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:16.116083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702575, - "rtt_ms": 1.702575, + "rtt_ns": 1449083, + "rtt_ms": 1.449083, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.805046491Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:16.116117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647045, - "rtt_ms": 1.647045, + "rtt_ns": 1601208, + "rtt_ms": 1.601208, "checkpoint": 0, "vertex_from": "560", "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.805051991Z" + "timestamp": "2025-11-27T04:04:16.116132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039927, - "rtt_ms": 1.039927, + "rtt_ns": 1616625, + "rtt_ms": 1.616625, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.805068871Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.116156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767705, - "rtt_ms": 1.767705, + "rtt_ns": 1779333, + "rtt_ms": 1.779333, "checkpoint": 0, "vertex_from": "560", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.805071671Z" + "timestamp": "2025-11-27T04:04:16.11617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539975, - "rtt_ms": 1.539975, + "rtt_ns": 1572916, + "rtt_ms": 1.572916, "checkpoint": 0, "vertex_from": "560", "vertex_to": "805", - "timestamp": "2025-11-27T01:23:51.805073801Z" + "timestamp": "2025-11-27T04:04:16.116227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645045, - "rtt_ms": 1.645045, + "rtt_ns": 2149125, + "rtt_ms": 2.149125, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.805081151Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:04:16.116525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822554, - "rtt_ms": 1.822554, + "rtt_ns": 1106417, + "rtt_ms": 1.106417, "checkpoint": 0, - "vertex_from": "560", + "vertex_from": "561", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.806066368Z" + "timestamp": "2025-11-27T04:04:16.117263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254687, - "rtt_ms": 1.254687, + "rtt_ns": 1195375, + "rtt_ms": 1.195375, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "797", - "timestamp": "2025-11-27T01:23:51.806297978Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:04:16.11728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318146, - "rtt_ms": 1.318146, + "rtt_ns": 1162292, + "rtt_ms": 1.162292, "checkpoint": 0, - "vertex_from": "561", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.806400627Z" + "vertex_from": "560", + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.117295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455556, - "rtt_ms": 1.455556, + "rtt_ns": 1291834, + "rtt_ms": 1.291834, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:51.806481487Z" + "vertex_to": "797", + "timestamp": "2025-11-27T04:04:16.11741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2090634, - "rtt_ms": 2.090634, + "rtt_ns": 1250833, + "rtt_ms": 1.250833, "checkpoint": 0, "vertex_from": "561", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.807144115Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.117778-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102854, - "rtt_ms": 2.102854, + "rtt_ns": 2026458, + "rtt_ms": 2.026458, "checkpoint": 0, - "vertex_from": "561", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.807173605Z" + "vertex_from": "560", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.117934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112314, - "rtt_ms": 2.112314, + "rtt_ns": 1968209, + "rtt_ms": 1.968209, "checkpoint": 0, - "vertex_from": "561", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.807187265Z" + "vertex_from": "560", + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.117947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143317, - "rtt_ms": 1.143317, + "rtt_ns": 1932542, + "rtt_ms": 1.932542, + "checkpoint": 0, + "vertex_from": "560", + "vertex_to": "820", + "timestamp": "2025-11-27T04:04:16.117961-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1912583, + "rtt_ms": 1.912583, "checkpoint": 0, "vertex_from": "561", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.807212035Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.118083-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151254, - "rtt_ms": 2.151254, + "rtt_ns": 1922375, + "rtt_ms": 1.922375, "checkpoint": 0, "vertex_from": "561", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.807224595Z" + "timestamp": "2025-11-27T04:04:16.118151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179024, - "rtt_ms": 2.179024, + "rtt_ns": 1590916, + "rtt_ms": 1.590916, "checkpoint": 0, - "vertex_from": "560", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.807227225Z" + "vertex_from": "562", + "vertex_to": "578", + "timestamp": "2025-11-27T04:04:16.119002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201124, - "rtt_ms": 2.201124, + "rtt_ns": 1787792, + "rtt_ms": 1.787792, "checkpoint": 0, - "vertex_from": "560", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:51.807228815Z" + "vertex_from": "561", + "vertex_to": "649", + "timestamp": "2025-11-27T04:04:16.119069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694515, - "rtt_ms": 1.694515, + "rtt_ns": 1826250, + "rtt_ms": 1.82625, "checkpoint": 0, "vertex_from": "561", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.807994393Z" + "timestamp": "2025-11-27T04:04:16.119122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545076, - "rtt_ms": 1.545076, + "rtt_ns": 1369625, + "rtt_ms": 1.369625, "checkpoint": 0, "vertex_from": "563", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.808027653Z" + "timestamp": "2025-11-27T04:04:16.11915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653876, - "rtt_ms": 1.653876, + "rtt_ns": 2440667, + "rtt_ms": 2.440667, "checkpoint": 0, - "vertex_from": "562", - "vertex_to": "578", - "timestamp": "2025-11-27T01:23:51.808056183Z" + "vertex_from": "561", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.119704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652965, - "rtt_ms": 1.652965, + "rtt_ns": 1697000, + "rtt_ms": 1.697, "checkpoint": 0, "vertex_from": "564", - "vertex_to": "838", - "timestamp": "2025-11-27T01:23:51.80887948Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:16.119781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684735, - "rtt_ms": 1.684735, + "rtt_ns": 1889583, + "rtt_ms": 1.889583, "checkpoint": 0, - "vertex_from": "565", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.8089156Z" + "vertex_from": "564", + "vertex_to": "838", + "timestamp": "2025-11-27T04:04:16.120041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745775, - "rtt_ms": 1.745775, + "rtt_ns": 937459, + "rtt_ms": 0.937459, "checkpoint": 0, - "vertex_from": "564", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:51.8089212Z" + "vertex_from": "566", + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:16.120062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721955, - "rtt_ms": 1.721955, + "rtt_ns": 2267167, + "rtt_ms": 2.267167, "checkpoint": 0, "vertex_from": "564", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.80893523Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:04:16.120229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791875, - "rtt_ms": 1.791875, + "rtt_ns": 1387208, + "rtt_ms": 1.387208, "checkpoint": 0, - "vertex_from": "563", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.80893763Z" + "vertex_from": "566", + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:16.120538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767255, - "rtt_ms": 1.767255, + "rtt_ns": 2695916, + "rtt_ms": 2.695916, "checkpoint": 0, - "vertex_from": "564", - "vertex_to": "576", - "timestamp": "2025-11-27T01:23:51.80895776Z" + "vertex_from": "563", + "vertex_to": "660", + "timestamp": "2025-11-27T04:04:16.120631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737345, - "rtt_ms": 1.737345, + "rtt_ns": 2865917, + "rtt_ms": 2.865917, "checkpoint": 0, "vertex_from": "564", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.80896593Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:04:16.120816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487775, - "rtt_ms": 1.487775, + "rtt_ns": 1341000, + "rtt_ms": 1.341, "checkpoint": 0, - "vertex_from": "566", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.809516488Z" + "vertex_from": "568", + "vertex_to": "577", + "timestamp": "2025-11-27T04:04:16.121404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806445, - "rtt_ms": 1.806445, + "rtt_ns": 2471000, + "rtt_ms": 2.471, "checkpoint": 0, - "vertex_from": "566", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.809802488Z" + "vertex_from": "564", + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:16.121476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806764, - "rtt_ms": 1.806764, + "rtt_ns": 1445125, + "rtt_ms": 1.445125, "checkpoint": 0, - "vertex_from": "566", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.809863747Z" + "vertex_from": "568", + "vertex_to": "744", + "timestamp": "2025-11-27T04:04:16.121488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741655, - "rtt_ms": 1.741655, + "rtt_ns": 1825250, + "rtt_ms": 1.82525, "checkpoint": 0, "vertex_from": "566", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.810621965Z" + "timestamp": "2025-11-27T04:04:16.121609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714925, - "rtt_ms": 1.714925, + "rtt_ns": 1107125, + "rtt_ms": 1.107125, "checkpoint": 0, "vertex_from": "568", "vertex_to": "579", - "timestamp": "2025-11-27T01:23:51.810653545Z" + "timestamp": "2025-11-27T04:04:16.121647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702325, - "rtt_ms": 1.702325, + "rtt_ns": 1992708, + "rtt_ms": 1.992708, "checkpoint": 0, - "vertex_from": "574", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.810671985Z" + "vertex_from": "566", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.121698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764735, - "rtt_ms": 1.764735, + "rtt_ns": 2728459, + "rtt_ms": 2.728459, "checkpoint": 0, - "vertex_from": "568", - "vertex_to": "577", - "timestamp": "2025-11-27T01:23:51.810688435Z" + "vertex_from": "565", + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.121799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735065, - "rtt_ms": 1.735065, + "rtt_ns": 1695167, + "rtt_ms": 1.695167, "checkpoint": 0, "vertex_from": "568", - "vertex_to": "775", - "timestamp": "2025-11-27T01:23:51.810693895Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.121925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783675, - "rtt_ms": 1.783675, + "rtt_ns": 1230542, + "rtt_ms": 1.230542, "checkpoint": 0, - "vertex_from": "568", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:51.810700575Z" + "vertex_from": "576", + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.12272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776395, - "rtt_ms": 1.776395, + "rtt_ns": 1419083, + "rtt_ms": 1.419083, "checkpoint": 0, - "vertex_from": "568", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.810714455Z" + "vertex_from": "574", + "vertex_to": "709", + "timestamp": "2025-11-27T04:04:16.122824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386166, - "rtt_ms": 1.386166, + "rtt_ns": 2074708, + "rtt_ms": 2.074708, "checkpoint": 0, "vertex_from": "574", - "vertex_to": "709", - "timestamp": "2025-11-27T01:23:51.810904164Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.122892-08:00" }, { "operation": "add_edge", - "rtt_ns": 814218, - "rtt_ms": 0.814218, + "rtt_ns": 1337333, + "rtt_ms": 1.337333, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.811468533Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:04:16.123037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664955, - "rtt_ms": 1.664955, + "rtt_ns": 1575750, + "rtt_ms": 1.57575, "checkpoint": 0, "vertex_from": "576", "vertex_to": "618", - "timestamp": "2025-11-27T01:23:51.811469333Z" + "timestamp": "2025-11-27T04:04:16.123054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628515, - "rtt_ms": 1.628515, + "rtt_ns": 1290334, + "rtt_ms": 1.290334, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.811493342Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:16.12309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656235, - "rtt_ms": 1.656235, + "rtt_ns": 2462375, + "rtt_ms": 2.462375, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:51.81233175Z" + "vertex_from": "568", + "vertex_to": "775", + "timestamp": "2025-11-27T04:04:16.123094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709475, - "rtt_ms": 1.709475, + "rtt_ns": 1515208, + "rtt_ms": 1.515208, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:51.81233298Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:16.123163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618195, - "rtt_ms": 1.618195, + "rtt_ns": 1575042, + "rtt_ms": 1.575042, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.81233395Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:04:16.123186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697605, - "rtt_ms": 1.697605, + "rtt_ns": 1304583, + "rtt_ms": 1.304583, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.81238779Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:04:16.124025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716305, - "rtt_ms": 1.716305, + "rtt_ns": 2213709, + "rtt_ms": 2.213709, "checkpoint": 0, "vertex_from": "576", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.81241156Z" + "timestamp": "2025-11-27T04:04:16.12414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711055, - "rtt_ms": 1.711055, + "rtt_ns": 2130000, + "rtt_ms": 2.13, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "782", - "timestamp": "2025-11-27T01:23:51.81241432Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.125221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514676, - "rtt_ms": 1.514676, + "rtt_ns": 2077667, + "rtt_ms": 2.077667, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.8124214Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:04:16.125244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114897, - "rtt_ms": 1.114897, + "rtt_ns": 2221583, + "rtt_ms": 2.221583, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.812609649Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:04:16.125277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527975, - "rtt_ms": 1.527975, + "rtt_ns": 2185458, + "rtt_ms": 2.185458, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "666", - "timestamp": "2025-11-27T01:23:51.812998788Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.12528-08:00" }, { "operation": "add_edge", - "rtt_ns": 943067, - "rtt_ms": 0.943067, + "rtt_ns": 2171167, + "rtt_ms": 2.171167, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:51.813277557Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.125358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911524, - "rtt_ms": 1.911524, + "rtt_ns": 2588792, + "rtt_ms": 2.588792, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.813381237Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.125414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601486, - "rtt_ms": 1.601486, + "rtt_ns": 2533042, + "rtt_ms": 2.533042, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.813935076Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:16.125425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564046, - "rtt_ms": 1.564046, + "rtt_ns": 2646000, + "rtt_ms": 2.646, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.813953596Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.125684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592695, - "rtt_ms": 1.592695, + "rtt_ns": 2172458, + "rtt_ms": 2.172458, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "632", - "timestamp": "2025-11-27T01:23:51.814008405Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.126199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746645, - "rtt_ms": 1.746645, + "rtt_ns": 2083792, + "rtt_ms": 2.083792, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.814082285Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:04:16.126225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490676, - "rtt_ms": 1.490676, + "rtt_ns": 1356083, + "rtt_ms": 1.356083, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.814101905Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:04:16.126578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680005, - "rtt_ms": 1.680005, + "rtt_ns": 1316334, + "rtt_ms": 1.316334, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.814103275Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:04:16.126596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698815, - "rtt_ms": 1.698815, + "rtt_ns": 1619750, + "rtt_ms": 1.61975, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "964", - "timestamp": "2025-11-27T01:23:51.814112195Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.126865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113177, - "rtt_ms": 1.113177, + "rtt_ns": 1553541, + "rtt_ms": 1.553541, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.814112995Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.126913-08:00" }, { "operation": "add_edge", - "rtt_ns": 839818, - "rtt_ms": 0.839818, + "rtt_ns": 1654084, + "rtt_ms": 1.654084, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.814118475Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.126936-08:00" }, { "operation": "add_edge", - "rtt_ns": 814488, - "rtt_ms": 0.814488, + "rtt_ns": 1535208, + "rtt_ms": 1.535208, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "592", - "timestamp": "2025-11-27T01:23:51.814824083Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:04:16.12722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536986, - "rtt_ms": 1.536986, + "rtt_ns": 1913542, + "rtt_ms": 1.913542, "checkpoint": 0, "vertex_from": "576", "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.814919073Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1138856, - "rtt_ms": 1.138856, - "checkpoint": 0, - "vertex_from": "762", - "timestamp": "2025-11-27T01:23:51.815079582Z" + "timestamp": "2025-11-27T04:04:16.127328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744595, - "rtt_ms": 1.744595, + "rtt_ns": 1378542, + "rtt_ms": 1.378542, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:51.815699821Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:16.128316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763105, - "rtt_ms": 1.763105, + "rtt_ns": 1509167, + "rtt_ms": 1.509167, "checkpoint": 0, "vertex_from": "576", "vertex_to": "913", - "timestamp": "2025-11-27T01:23:51.8158776Z" + "timestamp": "2025-11-27T04:04:16.128425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799515, - "rtt_ms": 1.799515, + "rtt_ns": 1863625, + "rtt_ms": 1.863625, "checkpoint": 0, "vertex_from": "576", "vertex_to": "961", - "timestamp": "2025-11-27T01:23:51.81590282Z" + "timestamp": "2025-11-27T04:04:16.128443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937575, - "rtt_ms": 1.937575, + "rtt_ns": 2405000, + "rtt_ms": 2.405, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "681", - "timestamp": "2025-11-27T01:23:51.81605186Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:04:16.128605-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2051734, - "rtt_ms": 2.051734, + "operation": "add_vertex", + "rtt_ns": 3250334, + "rtt_ms": 3.250334, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.816134709Z" + "vertex_from": "762", + "timestamp": "2025-11-27T04:04:16.128677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605146, - "rtt_ms": 1.605146, + "rtt_ns": 2503750, + "rtt_ms": 2.50375, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "744", - "timestamp": "2025-11-27T01:23:51.816431179Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.128729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359524, - "rtt_ms": 2.359524, + "rtt_ns": 2185083, + "rtt_ms": 2.185083, "checkpoint": 0, "vertex_from": "576", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.816463969Z" + "timestamp": "2025-11-27T04:04:16.128783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386513, - "rtt_ms": 2.386513, + "rtt_ns": 1567125, + "rtt_ms": 1.567125, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.816506748Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:04:16.128789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687445, - "rtt_ms": 1.687445, + "rtt_ns": 1472375, + "rtt_ms": 1.472375, "checkpoint": 0, "vertex_from": "576", "vertex_to": "738", - "timestamp": "2025-11-27T01:23:51.816607628Z" + "timestamp": "2025-11-27T04:04:16.128801-08:00" }, { "operation": "add_edge", - "rtt_ns": 992827, - "rtt_ms": 0.992827, + "rtt_ns": 2093750, + "rtt_ms": 2.09375, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.816696468Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:04:16.128959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691966, - "rtt_ms": 1.691966, + "rtt_ns": 1272875, + "rtt_ms": 1.272875, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "762", - "timestamp": "2025-11-27T01:23:51.816771908Z" + "vertex_from": "577", + "vertex_to": "581", + "timestamp": "2025-11-27T04:04:16.130075-08:00" }, { "operation": "add_edge", - "rtt_ns": 608178, - "rtt_ms": 0.608178, + "rtt_ns": 1374875, + "rtt_ms": 1.374875, "checkpoint": 0, - "vertex_from": "577", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:51.817073477Z" + "vertex_from": "576", + "vertex_to": "676", + "timestamp": "2025-11-27T04:04:16.130105-08:00" }, { "operation": "add_edge", - "rtt_ns": 669178, - "rtt_ms": 0.669178, + "rtt_ns": 1369125, + "rtt_ms": 1.369125, "checkpoint": 0, "vertex_from": "577", "vertex_to": "716", - "timestamp": "2025-11-27T01:23:51.817101807Z" + "timestamp": "2025-11-27T04:04:16.130161-08:00" }, { "operation": "add_edge", - "rtt_ns": 667359, - "rtt_ms": 0.667359, + "rtt_ns": 1920875, + "rtt_ms": 1.920875, "checkpoint": 0, - "vertex_from": "577", - "vertex_to": "581", - "timestamp": "2025-11-27T01:23:51.817178197Z" + "vertex_from": "576", + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:16.130238-08:00" }, { "operation": "add_edge", - "rtt_ns": 598808, - "rtt_ms": 0.598808, + "rtt_ns": 1811209, + "rtt_ms": 1.811209, "checkpoint": 0, - "vertex_from": "577", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.817208126Z" + "vertex_from": "576", + "vertex_to": "650", + "timestamp": "2025-11-27T04:04:16.130255-08:00" }, { "operation": "add_edge", - "rtt_ns": 550378, - "rtt_ms": 0.550378, + "rtt_ns": 1852167, + "rtt_ms": 1.852167, "checkpoint": 0, - "vertex_from": "577", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.817323526Z" + "vertex_from": "576", + "vertex_to": "914", + "timestamp": "2025-11-27T04:04:16.130278-08:00" }, { "operation": "add_edge", - "rtt_ns": 652648, - "rtt_ms": 0.652648, + "rtt_ns": 1615583, + "rtt_ms": 1.615583, "checkpoint": 0, - "vertex_from": "577", - "vertex_to": "587", - "timestamp": "2025-11-27T01:23:51.817350666Z" + "vertex_from": "576", + "vertex_to": "762", + "timestamp": "2025-11-27T04:04:16.130293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781415, - "rtt_ms": 1.781415, + "rtt_ns": 1789084, + "rtt_ms": 1.789084, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.817660535Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:04:16.130395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787095, - "rtt_ms": 1.787095, + "rtt_ns": 1657625, + "rtt_ms": 1.657625, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.817692375Z" + "vertex_from": "577", + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:16.130618-08:00" }, { "operation": "add_edge", - "rtt_ns": 641418, - "rtt_ms": 0.641418, + "rtt_ns": 1862667, + "rtt_ms": 1.862667, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.817717785Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:04:16.130653-08:00" }, { "operation": "add_edge", - "rtt_ns": 653188, - "rtt_ms": 0.653188, + "rtt_ns": 1703875, + "rtt_ms": 1.703875, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.817756405Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:04:16.13178-08:00" }, { "operation": "add_edge", - "rtt_ns": 560639, - "rtt_ms": 0.560639, + "rtt_ns": 1527750, + "rtt_ms": 1.52775, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.817774165Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:16.131784-08:00" }, { "operation": "add_edge", - "rtt_ns": 638508, - "rtt_ms": 0.638508, + "rtt_ns": 1558750, + "rtt_ms": 1.55875, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.817817835Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.131798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701306, - "rtt_ms": 1.701306, + "rtt_ns": 1197542, + "rtt_ms": 1.197542, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "676", - "timestamp": "2025-11-27T01:23:51.817838185Z" + "vertex_from": "578", + "vertex_to": "638", + "timestamp": "2025-11-27T04:04:16.131816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784055, - "rtt_ms": 1.784055, + "rtt_ns": 1630625, + "rtt_ms": 1.630625, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.817839745Z" + "vertex_from": "577", + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.13191-08:00" }, { "operation": "add_edge", - "rtt_ns": 628828, - "rtt_ms": 0.628828, + "rtt_ns": 1831667, + "rtt_ms": 1.831667, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.817981924Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.131938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321596, - "rtt_ms": 1.321596, + "rtt_ns": 1560209, + "rtt_ms": 1.560209, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "740", - "timestamp": "2025-11-27T01:23:51.818647112Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.131956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053827, - "rtt_ms": 1.053827, + "rtt_ns": 1679333, + "rtt_ms": 1.679333, "checkpoint": 0, - "vertex_from": "578", - "vertex_to": "638", - "timestamp": "2025-11-27T01:23:51.818716242Z" + "vertex_from": "577", + "vertex_to": "740", + "timestamp": "2025-11-27T04:04:16.131974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034747, - "rtt_ms": 1.034747, + "rtt_ns": 1377959, + "rtt_ms": 1.377959, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:51.818754762Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:16.132031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250626, - "rtt_ms": 1.250626, + "rtt_ns": 1871625, + "rtt_ms": 1.871625, "checkpoint": 0, - "vertex_from": "578", - "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.819091821Z" + "vertex_from": "577", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.132035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879335, - "rtt_ms": 1.879335, + "rtt_ns": 1276875, + "rtt_ms": 1.276875, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.8196378Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.133094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842135, - "rtt_ms": 1.842135, + "rtt_ns": 1378000, + "rtt_ms": 1.378, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.81968373Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:04:16.133159-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003614, - "rtt_ms": 2.003614, + "rtt_ns": 1228416, + "rtt_ms": 1.228416, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.819700689Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:04:16.133265-08:00" }, { "operation": "add_edge", - "rtt_ns": 2061324, - "rtt_ms": 2.061324, + "rtt_ns": 1301041, + "rtt_ms": 1.301041, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.819880229Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:04:16.133276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155564, - "rtt_ms": 2.155564, + "rtt_ns": 1251291, + "rtt_ms": 1.251291, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:51.819931419Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:04:16.133284-08:00" }, { "operation": "add_edge", - "rtt_ns": 2309194, - "rtt_ms": 2.309194, + "rtt_ns": 1437875, + "rtt_ms": 1.437875, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.820292998Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:04:16.133376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613445, - "rtt_ms": 1.613445, + "rtt_ns": 1430583, + "rtt_ms": 1.430583, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "745", - "timestamp": "2025-11-27T01:23:51.820371817Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:04:16.133387-08:00" }, { "operation": "add_edge", - "rtt_ns": 759088, - "rtt_ms": 0.759088, + "rtt_ns": 1602625, + "rtt_ms": 1.602625, "checkpoint": 0, - "vertex_from": "579", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.820462607Z" + "vertex_from": "578", + "vertex_to": "929", + "timestamp": "2025-11-27T04:04:16.133402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884725, - "rtt_ms": 1.884725, + "rtt_ns": 1622541, + "rtt_ms": 1.622541, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.820602667Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:16.133407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531166, - "rtt_ms": 1.531166, + "rtt_ns": 1693541, + "rtt_ms": 1.693541, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.820624837Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:04:16.133604-08:00" }, { "operation": "add_edge", - "rtt_ns": 990977, - "rtt_ms": 0.990977, + "rtt_ns": 1400041, + "rtt_ms": 1.400041, "checkpoint": 0, - "vertex_from": "578", - "vertex_to": "856", - "timestamp": "2025-11-27T01:23:51.820630257Z" + "vertex_from": "579", + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.134677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986045, - "rtt_ms": 1.986045, + "rtt_ns": 1422708, + "rtt_ms": 1.422708, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "669", - "timestamp": "2025-11-27T01:23:51.820643627Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.134688-08:00" }, { "operation": "add_edge", - "rtt_ns": 779838, - "rtt_ms": 0.779838, + "rtt_ns": 1367459, + "rtt_ms": 1.367459, "checkpoint": 0, "vertex_from": "579", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.820666077Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:16.134745-08:00" }, { "operation": "add_edge", - "rtt_ns": 735188, - "rtt_ms": 0.735188, + "rtt_ns": 1402917, + "rtt_ms": 1.402917, "checkpoint": 0, "vertex_from": "579", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.820668917Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:04:16.134811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005297, - "rtt_ms": 1.005297, + "rtt_ns": 1483208, + "rtt_ms": 1.483208, "checkpoint": 0, - "vertex_from": "578", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.820690127Z" + "vertex_from": "579", + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.134886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362416, - "rtt_ms": 1.362416, + "rtt_ns": 1526458, + "rtt_ms": 1.526458, "checkpoint": 0, "vertex_from": "579", "vertex_to": "652", - "timestamp": "2025-11-27T01:23:51.821656924Z" + "timestamp": "2025-11-27T04:04:16.134914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339566, - "rtt_ms": 1.339566, + "rtt_ns": 1632792, + "rtt_ms": 1.632792, "checkpoint": 0, "vertex_from": "579", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.821714313Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.134917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322256, - "rtt_ms": 1.322256, + "rtt_ns": 1773292, + "rtt_ms": 1.773292, "checkpoint": 0, - "vertex_from": "579", - "vertex_to": "580", - "timestamp": "2025-11-27T01:23:51.821786393Z" + "vertex_from": "578", + "vertex_to": "856", + "timestamp": "2025-11-27T04:04:16.134933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645495, - "rtt_ms": 1.645495, + "rtt_ns": 1886709, + "rtt_ms": 1.886709, "checkpoint": 0, - "vertex_from": "580", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.822251152Z" + "vertex_from": "578", + "vertex_to": "640", + "timestamp": "2025-11-27T04:04:16.134982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655815, - "rtt_ms": 1.655815, + "rtt_ns": 1890375, + "rtt_ms": 1.890375, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.822288572Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.135498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640185, - "rtt_ms": 1.640185, + "rtt_ns": 1573750, + "rtt_ms": 1.57375, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.822332132Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:16.136252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729154, - "rtt_ms": 1.729154, + "rtt_ns": 1525417, + "rtt_ms": 1.525417, "checkpoint": 0, "vertex_from": "580", "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.822375161Z" + "timestamp": "2025-11-27T04:04:16.13627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733954, - "rtt_ms": 1.733954, + "rtt_ns": 1585334, + "rtt_ms": 1.585334, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.822401761Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:16.136274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771634, - "rtt_ms": 1.771634, + "rtt_ns": 1615167, + "rtt_ms": 1.615167, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "785", - "timestamp": "2025-11-27T01:23:51.822442491Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:16.136427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864794, - "rtt_ms": 1.864794, + "rtt_ns": 1555583, + "rtt_ms": 1.555583, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.822492211Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:04:16.136444-08:00" }, { "operation": "add_edge", - "rtt_ns": 854477, - "rtt_ms": 0.854477, + "rtt_ns": 1619459, + "rtt_ms": 1.619459, "checkpoint": 0, "vertex_from": "580", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.822512781Z" + "timestamp": "2025-11-27T04:04:16.136538-08:00" }, { "operation": "add_edge", - "rtt_ns": 748618, - "rtt_ms": 0.748618, + "rtt_ns": 1810292, + "rtt_ms": 1.810292, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.822535931Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.136725-08:00" }, { "operation": "add_edge", - "rtt_ns": 897338, - "rtt_ms": 0.897338, + "rtt_ns": 1761667, + "rtt_ms": 1.761667, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.822612321Z" - }, - { - "operation": "add_edge", - "rtt_ns": 947568, - "rtt_ms": 0.947568, - "checkpoint": 0, - "vertex_from": "581", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.823325989Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.136744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034167, - "rtt_ms": 1.034167, + "rtt_ns": 1857166, + "rtt_ms": 1.857166, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.823328029Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.136791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174266, - "rtt_ms": 1.174266, + "rtt_ns": 1334625, + "rtt_ms": 1.334625, "checkpoint": 0, "vertex_from": "580", "vertex_to": "593", - "timestamp": "2025-11-27T01:23:51.823426888Z" + "timestamp": "2025-11-27T04:04:16.136836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632135, - "rtt_ms": 1.632135, + "rtt_ns": 1351500, + "rtt_ms": 1.3515, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "584", - "timestamp": "2025-11-27T01:23:51.823967187Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:16.137605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539956, - "rtt_ms": 1.539956, + "rtt_ns": 1041959, + "rtt_ms": 1.041959, "checkpoint": 0, "vertex_from": "584", "vertex_to": "617", - "timestamp": "2025-11-27T01:23:51.824053907Z" + "timestamp": "2025-11-27T04:04:16.137768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609665, - "rtt_ms": 1.609665, + "rtt_ns": 1246417, + "rtt_ms": 1.246417, "checkpoint": 0, "vertex_from": "583", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.824103586Z" + "timestamp": "2025-11-27T04:04:16.137785-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1425625, + "rtt_ms": 1.425625, + "checkpoint": 0, + "vertex_from": "581", + "vertex_to": "657", + "timestamp": "2025-11-27T04:04:16.137853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682175, - "rtt_ms": 1.682175, + "rtt_ns": 1424333, + "rtt_ms": 1.424333, "checkpoint": 0, "vertex_from": "582", "vertex_to": "609", - "timestamp": "2025-11-27T01:23:51.824125846Z" + "timestamp": "2025-11-27T04:04:16.137869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723015, - "rtt_ms": 1.723015, + "rtt_ns": 1647625, + "rtt_ms": 1.647625, "checkpoint": 0, "vertex_from": "581", - "vertex_to": "657", - "timestamp": "2025-11-27T01:23:51.824126106Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:16.137923-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1684833, + "rtt_ms": 1.684833, + "checkpoint": 0, + "vertex_from": "580", + "vertex_to": "584", + "timestamp": "2025-11-27T04:04:16.137956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596685, - "rtt_ms": 1.596685, + "rtt_ns": 2239250, + "rtt_ms": 2.23925, "checkpoint": 0, "vertex_from": "584", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.824133336Z" + "timestamp": "2025-11-27T04:04:16.138984-08:00" }, { "operation": "add_edge", - "rtt_ns": 891537, - "rtt_ms": 0.891537, + "rtt_ns": 1135041, + "rtt_ms": 1.135041, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "827", - "timestamp": "2025-11-27T01:23:51.824860414Z" + "vertex_to": "637", + "timestamp": "2025-11-27T04:04:16.139092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548785, - "rtt_ms": 1.548785, + "rtt_ns": 1243334, + "rtt_ms": 1.243334, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.824878254Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:16.139097-08:00" }, { "operation": "add_edge", - "rtt_ns": 2292173, - "rtt_ms": 2.292173, + "rtt_ns": 1336042, + "rtt_ms": 1.336042, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.824907104Z" + "vertex_to": "827", + "timestamp": "2025-11-27T04:04:16.139122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535096, - "rtt_ms": 1.535096, + "rtt_ns": 1369500, + "rtt_ms": 1.3695, "checkpoint": 0, "vertex_from": "584", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.824965364Z" + "timestamp": "2025-11-27T04:04:16.139138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651765, - "rtt_ms": 1.651765, + "rtt_ns": 2446791, + "rtt_ms": 2.446791, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.824979294Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:16.139239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427746, - "rtt_ms": 1.427746, + "rtt_ns": 1391292, + "rtt_ms": 1.391292, "checkpoint": 0, "vertex_from": "584", "vertex_to": "849", - "timestamp": "2025-11-27T01:23:51.825533452Z" + "timestamp": "2025-11-27T04:04:16.139261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512545, - "rtt_ms": 1.512545, + "rtt_ns": 1657958, + "rtt_ms": 1.657958, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.825567702Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.139264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448436, - "rtt_ms": 1.448436, + "rtt_ns": 1375917, + "rtt_ms": 1.375917, "checkpoint": 0, "vertex_from": "584", "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.825576142Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1466366, - "rtt_ms": 1.466366, - "checkpoint": 0, - "vertex_from": "585", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.825600972Z" + "timestamp": "2025-11-27T04:04:16.139299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483776, - "rtt_ms": 1.483776, + "rtt_ns": 2506625, + "rtt_ms": 2.506625, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "637", - "timestamp": "2025-11-27T01:23:51.825612522Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:04:16.139343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210277, - "rtt_ms": 1.210277, + "rtt_ns": 1122208, + "rtt_ms": 1.122208, "checkpoint": 0, "vertex_from": "585", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.826118791Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:16.140108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346666, - "rtt_ms": 1.346666, + "rtt_ns": 1300333, + "rtt_ms": 1.300333, "checkpoint": 0, "vertex_from": "585", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.82620909Z" + "timestamp": "2025-11-27T04:04:16.140393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357976, - "rtt_ms": 1.357976, + "rtt_ns": 1549167, + "rtt_ms": 1.549167, "checkpoint": 0, "vertex_from": "585", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.8262378Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:16.140674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317936, - "rtt_ms": 1.317936, + "rtt_ns": 1598667, + "rtt_ms": 1.598667, "checkpoint": 0, "vertex_from": "586", "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.82628502Z" + "timestamp": "2025-11-27T04:04:16.140738-08:00" }, { "operation": "add_edge", - "rtt_ns": 782398, - "rtt_ms": 0.782398, + "rtt_ns": 1522958, + "rtt_ms": 1.522958, "checkpoint": 0, "vertex_from": "587", - "vertex_to": "881", - "timestamp": "2025-11-27T01:23:51.82631804Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.140764-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1468166, + "rtt_ms": 1.468166, + "checkpoint": 0, + "vertex_from": "588", + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.140813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370146, - "rtt_ms": 1.370146, + "rtt_ns": 1563958, + "rtt_ms": 1.563958, "checkpoint": 0, "vertex_from": "587", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.82635209Z" + "vertex_to": "881", + "timestamp": "2025-11-27T04:04:16.140826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197857, - "rtt_ms": 1.197857, + "rtt_ns": 1799375, + "rtt_ms": 1.799375, "checkpoint": 0, - "vertex_from": "589", - "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.826811159Z" + "vertex_from": "585", + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.140899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347916, - "rtt_ms": 1.347916, + "rtt_ns": 1654500, + "rtt_ms": 1.6545, "checkpoint": 0, "vertex_from": "588", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.826949438Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:16.140919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387606, - "rtt_ms": 1.387606, + "rtt_ns": 1930916, + "rtt_ms": 1.930916, "checkpoint": 0, "vertex_from": "588", "vertex_to": "650", - "timestamp": "2025-11-27T01:23:51.826965078Z" + "timestamp": "2025-11-27T04:04:16.141231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419536, - "rtt_ms": 1.419536, + "rtt_ns": 1917958, + "rtt_ms": 1.917958, "checkpoint": 0, - "vertex_from": "588", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.826989758Z" + "vertex_from": "589", + "vertex_to": "644", + "timestamp": "2025-11-27T04:04:16.142029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223736, - "rtt_ms": 1.223736, + "rtt_ns": 1318334, + "rtt_ms": 1.318334, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.827345067Z" + "vertex_to": "977", + "timestamp": "2025-11-27T04:04:16.142083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218597, - "rtt_ms": 1.218597, + "rtt_ns": 1694375, + "rtt_ms": 1.694375, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.827428787Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:16.14209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233877, - "rtt_ms": 1.233877, + "rtt_ns": 1449292, + "rtt_ms": 1.449292, "checkpoint": 0, "vertex_from": "592", "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.827474457Z" + "timestamp": "2025-11-27T04:04:16.142188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160267, - "rtt_ms": 1.160267, + "rtt_ns": 1457125, + "rtt_ms": 1.457125, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.827479127Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.142285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664555, - "rtt_ms": 1.664555, + "rtt_ns": 1609750, + "rtt_ms": 1.60975, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.828019095Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.142285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789985, - "rtt_ms": 1.789985, + "rtt_ns": 1406417, + "rtt_ms": 1.406417, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "977", - "timestamp": "2025-11-27T01:23:51.828076915Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.142326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289847, - "rtt_ms": 1.289847, + "rtt_ns": 1579833, + "rtt_ms": 1.579833, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.828280185Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.142395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516525, - "rtt_ms": 1.516525, + "rtt_ns": 1560375, + "rtt_ms": 1.560375, "checkpoint": 0, "vertex_from": "592", "vertex_to": "669", - "timestamp": "2025-11-27T01:23:51.828328744Z" + "timestamp": "2025-11-27T04:04:16.14246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392986, - "rtt_ms": 1.392986, + "rtt_ns": 2245250, + "rtt_ms": 2.24525, "checkpoint": 0, "vertex_from": "592", "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.828359864Z" + "timestamp": "2025-11-27T04:04:16.143477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015757, - "rtt_ms": 1.015757, + "rtt_ns": 1535084, + "rtt_ms": 1.535084, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.828361914Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:04:16.143566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467176, - "rtt_ms": 1.467176, + "rtt_ns": 1559667, + "rtt_ms": 1.559667, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.828417584Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.143649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420796, - "rtt_ms": 1.420796, + "rtt_ns": 1592083, + "rtt_ms": 1.592083, "checkpoint": 0, "vertex_from": "592", "vertex_to": "913", - "timestamp": "2025-11-27T01:23:51.828851443Z" + "timestamp": "2025-11-27T04:04:16.143683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475106, - "rtt_ms": 1.475106, + "rtt_ns": 1505292, + "rtt_ms": 1.505292, "checkpoint": 0, "vertex_from": "593", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.828950663Z" + "timestamp": "2025-11-27T04:04:16.143695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485306, - "rtt_ms": 1.485306, + "rtt_ns": 1453250, + "rtt_ms": 1.45325, + "checkpoint": 0, + "vertex_from": "593", + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.14378-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1557834, + "rtt_ms": 1.557834, "checkpoint": 0, "vertex_from": "593", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.828965663Z" + "timestamp": "2025-11-27T04:04:16.143844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316326, - "rtt_ms": 1.316326, + "rtt_ns": 1656541, + "rtt_ms": 1.656541, "checkpoint": 0, "vertex_from": "593", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.829337481Z" + "timestamp": "2025-11-27T04:04:16.143942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207486, - "rtt_ms": 1.207486, + "rtt_ns": 1616917, + "rtt_ms": 1.616917, "checkpoint": 0, - "vertex_from": "593", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.829489361Z" + "vertex_from": "594", + "vertex_to": "1009", + "timestamp": "2025-11-27T04:04:16.144078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444996, - "rtt_ms": 1.444996, + "rtt_ns": 1762917, + "rtt_ms": 1.762917, "checkpoint": 0, "vertex_from": "593", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.829523881Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.144158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193327, - "rtt_ms": 1.193327, + "rtt_ns": 1317042, + "rtt_ms": 1.317042, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "673", - "timestamp": "2025-11-27T01:23:51.829554451Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:04:16.145014-08:00" }, { "operation": "add_edge", - "rtt_ns": 725648, - "rtt_ms": 0.725648, + "rtt_ns": 1559541, + "rtt_ms": 1.559541, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.829578221Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:04:16.145128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270207, - "rtt_ms": 1.270207, + "rtt_ns": 1671958, + "rtt_ms": 1.671958, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "1009", - "timestamp": "2025-11-27T01:23:51.829600371Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:04:16.145152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300146, - "rtt_ms": 1.300146, + "rtt_ns": 1512417, + "rtt_ms": 1.512417, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "705", - "timestamp": "2025-11-27T01:23:51.82966662Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:16.145163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344006, - "rtt_ms": 1.344006, + "rtt_ns": 1480125, + "rtt_ms": 1.480125, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.82976359Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:16.145169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171726, - "rtt_ms": 1.171726, + "rtt_ns": 1622708, + "rtt_ms": 1.622708, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "608", - "timestamp": "2025-11-27T01:23:51.830123789Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.145467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211846, - "rtt_ms": 1.211846, + "rtt_ns": 1309500, + "rtt_ms": 1.3095, "checkpoint": 0, - "vertex_from": "594", + "vertex_from": "596", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.830179069Z" + "timestamp": "2025-11-27T04:04:16.145469-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1392500, + "rtt_ms": 1.3925, + "checkpoint": 0, + "vertex_from": "596", + "vertex_to": "737", + "timestamp": "2025-11-27T04:04:16.145472-08:00" }, { "operation": "add_edge", - "rtt_ns": 814238, - "rtt_ms": 0.814238, + "rtt_ns": 1539125, + "rtt_ms": 1.539125, "checkpoint": 0, "vertex_from": "596", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.830305059Z" + "timestamp": "2025-11-27T04:04:16.145482-08:00" }, { "operation": "add_edge", - "rtt_ns": 982877, - "rtt_ms": 0.982877, + "rtt_ns": 1739792, + "rtt_ms": 1.739792, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.830322038Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.145521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307766, - "rtt_ms": 1.307766, + "rtt_ns": 1164333, + "rtt_ms": 1.164333, "checkpoint": 0, "vertex_from": "596", "vertex_to": "934", - "timestamp": "2025-11-27T01:23:51.830887127Z" + "timestamp": "2025-11-27T04:04:16.146179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380036, - "rtt_ms": 1.380036, + "rtt_ns": 1050708, + "rtt_ms": 1.050708, "checkpoint": 0, "vertex_from": "596", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:51.830905347Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:04:16.146204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454515, - "rtt_ms": 1.454515, + "rtt_ns": 2045958, + "rtt_ms": 2.045958, "checkpoint": 0, - "vertex_from": "596", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.831010076Z" + "vertex_from": "597", + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:16.147212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413026, - "rtt_ms": 1.413026, + "rtt_ns": 1767000, + "rtt_ms": 1.767, "checkpoint": 0, - "vertex_from": "596", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:51.831080716Z" + "vertex_from": "598", + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:16.147235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492905, - "rtt_ms": 1.492905, + "rtt_ns": 2128209, + "rtt_ms": 2.128209, "checkpoint": 0, "vertex_from": "596", "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.831094236Z" + "timestamp": "2025-11-27T04:04:16.147256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779865, - "rtt_ms": 1.779865, + "rtt_ns": 1735416, + "rtt_ms": 1.735416, "checkpoint": 0, - "vertex_from": "597", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.831544895Z" + "vertex_from": "600", + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.147257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271996, - "rtt_ms": 1.271996, + "rtt_ns": 1797584, + "rtt_ms": 1.797584, "checkpoint": 0, - "vertex_from": "599", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.831580755Z" + "vertex_from": "600", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.147281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896404, - "rtt_ms": 1.896404, + "rtt_ns": 2120583, + "rtt_ms": 2.120583, "checkpoint": 0, "vertex_from": "598", "vertex_to": "736", - "timestamp": "2025-11-27T01:23:51.832029473Z" + "timestamp": "2025-11-27T04:04:16.147291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947614, - "rtt_ms": 1.947614, + "rtt_ns": 1911334, + "rtt_ms": 1.911334, "checkpoint": 0, - "vertex_from": "598", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.832128453Z" + "vertex_from": "600", + "vertex_to": "664", + "timestamp": "2025-11-27T04:04:16.147384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914895, - "rtt_ms": 1.914895, + "rtt_ns": 1981541, + "rtt_ms": 1.981541, "checkpoint": 0, - "vertex_from": "600", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:51.832238693Z" + "vertex_from": "599", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.147451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1982074, - "rtt_ms": 1.982074, + "rtt_ns": 1578459, + "rtt_ms": 1.578459, "checkpoint": 0, - "vertex_from": "600", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.832888841Z" + "vertex_from": "602", + "vertex_to": "810", + "timestamp": "2025-11-27T04:04:16.148836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833035, - "rtt_ms": 1.833035, + "rtt_ns": 2650792, + "rtt_ms": 2.650792, "checkpoint": 0, "vertex_from": "601", "vertex_to": "612", - "timestamp": "2025-11-27T01:23:51.832915211Z" + "timestamp": "2025-11-27T04:04:16.148856-08:00" }, { "operation": "add_edge", - "rtt_ns": 899028, - "rtt_ms": 0.899028, - "checkpoint": 0, - "vertex_from": "604", - "vertex_to": "929", - "timestamp": "2025-11-27T01:23:51.832932361Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1844815, - "rtt_ms": 1.844815, + "rtt_ns": 2691958, + "rtt_ms": 2.691958, "checkpoint": 0, - "vertex_from": "978", - "timestamp": "2025-11-27T01:23:51.832943711Z" + "vertex_from": "600", + "vertex_to": "643", + "timestamp": "2025-11-27T04:04:16.148872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064094, - "rtt_ms": 2.064094, + "rtt_ns": 1591417, + "rtt_ms": 1.591417, "checkpoint": 0, - "vertex_from": "600", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.832953621Z" + "vertex_from": "608", + "vertex_to": "620", + "timestamp": "2025-11-27T04:04:16.148978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450776, - "rtt_ms": 1.450776, + "rtt_ns": 1752250, + "rtt_ms": 1.75225, "checkpoint": 0, "vertex_from": "602", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.832997911Z" + "timestamp": "2025-11-27T04:04:16.148988-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024195, - "rtt_ms": 2.024195, + "rtt_ns": 1555000, + "rtt_ms": 1.555, "checkpoint": 0, - "vertex_from": "600", - "vertex_to": "643", - "timestamp": "2025-11-27T01:23:51.833035781Z" + "vertex_from": "608", + "vertex_to": "641", + "timestamp": "2025-11-27T04:04:16.149007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612096, - "rtt_ms": 1.612096, + "rtt_ns": 1770958, + "rtt_ms": 1.770958, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "722", - "timestamp": "2025-11-27T01:23:51.833742209Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.149064-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2190814, - "rtt_ms": 2.190814, + "operation": "add_vertex", + "rtt_ns": 1959791, + "rtt_ms": 1.959791, "checkpoint": 0, - "vertex_from": "602", - "vertex_to": "810", - "timestamp": "2025-11-27T01:23:51.833772949Z" + "vertex_from": "978", + "timestamp": "2025-11-27T04:04:16.149177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577645, - "rtt_ms": 1.577645, + "rtt_ns": 1904416, + "rtt_ms": 1.904416, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.833817288Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:04:16.149188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425436, - "rtt_ms": 1.425436, + "rtt_ns": 1113709, + "rtt_ms": 1.113709, "checkpoint": 0, - "vertex_from": "608", - "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.834344597Z" + "vertex_from": "602", + "vertex_to": "978", + "timestamp": "2025-11-27T04:04:16.150291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384336, - "rtt_ms": 1.384336, + "rtt_ns": 1758625, + "rtt_ms": 1.758625, "checkpoint": 0, "vertex_from": "608", "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.834384367Z" + "timestamp": "2025-11-27T04:04:16.150631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514336, - "rtt_ms": 1.514336, + "rtt_ns": 3389042, + "rtt_ms": 3.389042, "checkpoint": 0, - "vertex_from": "608", - "vertex_to": "620", - "timestamp": "2025-11-27T01:23:51.834404347Z" + "vertex_from": "604", + "vertex_to": "929", + "timestamp": "2025-11-27T04:04:16.150647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485426, - "rtt_ms": 1.485426, + "rtt_ns": 1616500, + "rtt_ms": 1.6165, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "734", - "timestamp": "2025-11-27T01:23:51.834422057Z" + "vertex_to": "637", + "timestamp": "2025-11-27T04:04:16.150681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487096, - "rtt_ms": 1.487096, + "rtt_ns": 1890750, + "rtt_ms": 1.89075, "checkpoint": 0, - "vertex_from": "602", - "vertex_to": "978", - "timestamp": "2025-11-27T01:23:51.834431467Z" + "vertex_from": "608", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.150871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861865, - "rtt_ms": 1.861865, + "rtt_ns": 2027625, + "rtt_ms": 2.027625, "checkpoint": 0, "vertex_from": "608", "vertex_to": "644", - "timestamp": "2025-11-27T01:23:51.834817216Z" + "timestamp": "2025-11-27T04:04:16.150884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345886, - "rtt_ms": 1.345886, + "rtt_ns": 1890416, + "rtt_ms": 1.890416, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "625", - "timestamp": "2025-11-27T01:23:51.835090585Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:04:16.150898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282247, - "rtt_ms": 1.282247, + "rtt_ns": 1726000, + "rtt_ms": 1.726, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "637", - "timestamp": "2025-11-27T01:23:51.835101275Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:04:16.150914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064364, - "rtt_ms": 2.064364, + "rtt_ns": 2003584, + "rtt_ms": 2.003584, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.835102025Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:04:16.150993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515445, - "rtt_ms": 1.515445, + "rtt_ns": 2177166, + "rtt_ms": 2.177166, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.835291084Z" + "vertex_to": "734", + "timestamp": "2025-11-27T04:04:16.151014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081297, - "rtt_ms": 1.081297, + "rtt_ns": 2236708, + "rtt_ms": 2.236708, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "684", - "timestamp": "2025-11-27T01:23:51.835427474Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:04:16.152529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013957, - "rtt_ms": 1.013957, + "rtt_ns": 1836208, + "rtt_ms": 1.836208, "checkpoint": 0, "vertex_from": "609", "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.836105862Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1719795, - "rtt_ms": 1.719795, - "checkpoint": 0, - "vertex_from": "608", - "vertex_to": "660", - "timestamp": "2025-11-27T01:23:51.836106032Z" + "timestamp": "2025-11-27T04:04:16.152721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673905, - "rtt_ms": 1.673905, + "rtt_ns": 2552750, + "rtt_ms": 2.55275, "checkpoint": 0, "vertex_from": "609", "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.836106982Z" + "timestamp": "2025-11-27T04:04:16.153235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718815, - "rtt_ms": 1.718815, + "rtt_ns": 2614834, + "rtt_ms": 2.614834, "checkpoint": 0, "vertex_from": "608", "vertex_to": "640", - "timestamp": "2025-11-27T01:23:51.836125262Z" + "timestamp": "2025-11-27T04:04:16.153247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723675, - "rtt_ms": 1.723675, + "rtt_ns": 2612084, + "rtt_ms": 2.612084, "checkpoint": 0, "vertex_from": "608", "vertex_to": "872", - "timestamp": "2025-11-27T01:23:51.836147822Z" + "timestamp": "2025-11-27T04:04:16.15326-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2360625, + "rtt_ms": 2.360625, + "checkpoint": 0, + "vertex_from": "610", + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:16.153275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355516, - "rtt_ms": 1.355516, + "rtt_ns": 2451458, + "rtt_ms": 2.451458, "checkpoint": 0, "vertex_from": "609", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.836175022Z" + "timestamp": "2025-11-27T04:04:16.153324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658356, - "rtt_ms": 1.658356, + "rtt_ns": 2383583, + "rtt_ms": 2.383583, "checkpoint": 0, "vertex_from": "610", "vertex_to": "803", - "timestamp": "2025-11-27T01:23:51.83695166Z" + "timestamp": "2025-11-27T04:04:16.153383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849015, - "rtt_ms": 1.849015, + "rtt_ns": 2543084, + "rtt_ms": 2.543084, "checkpoint": 0, "vertex_from": "610", "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.83695257Z" + "timestamp": "2025-11-27T04:04:16.153442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578766, - "rtt_ms": 1.578766, + "rtt_ns": 2676959, + "rtt_ms": 2.676959, "checkpoint": 0, "vertex_from": "610", "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.83700742Z" + "timestamp": "2025-11-27T04:04:16.153692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938964, - "rtt_ms": 1.938964, - "checkpoint": 0, - "vertex_from": "610", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.837044439Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1081747, - "rtt_ms": 1.081747, + "rtt_ns": 1050208, + "rtt_ms": 1.050208, "checkpoint": 0, "vertex_from": "610", "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.837189989Z" + "timestamp": "2025-11-27T04:04:16.153772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616155, - "rtt_ms": 1.616155, + "rtt_ns": 1485250, + "rtt_ms": 1.48525, "checkpoint": 0, - "vertex_from": "610", - "vertex_to": "624", - "timestamp": "2025-11-27T01:23:51.837725967Z" + "vertex_from": "612", + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.15481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636765, - "rtt_ms": 1.636765, + "rtt_ns": 2340875, + "rtt_ms": 2.340875, "checkpoint": 0, "vertex_from": "610", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.837745257Z" + "timestamp": "2025-11-27T04:04:16.154871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639435, - "rtt_ms": 1.639435, + "rtt_ns": 1525166, + "rtt_ms": 1.525166, "checkpoint": 0, - "vertex_from": "610", + "vertex_from": "612", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.837765777Z" + "timestamp": "2025-11-27T04:04:16.154908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642865, - "rtt_ms": 1.642865, + "rtt_ns": 1717583, + "rtt_ms": 1.717583, "checkpoint": 0, - "vertex_from": "611", - "vertex_to": "626", - "timestamp": "2025-11-27T01:23:51.837794267Z" + "vertex_from": "610", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.154966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628415, - "rtt_ms": 1.628415, + "rtt_ns": 1718334, + "rtt_ms": 1.718334, "checkpoint": 0, "vertex_from": "611", - "vertex_to": "628", - "timestamp": "2025-11-27T01:23:51.837805657Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:04:16.154979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144697, - "rtt_ms": 1.144697, + "rtt_ns": 1261167, + "rtt_ms": 1.261167, "checkpoint": 0, "vertex_from": "613", "vertex_to": "641", - "timestamp": "2025-11-27T01:23:51.838336696Z" + "timestamp": "2025-11-27T04:04:16.155036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526335, - "rtt_ms": 1.526335, + "rtt_ns": 1629542, + "rtt_ms": 1.629542, "checkpoint": 0, "vertex_from": "612", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.838481045Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:04:16.155072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604425, - "rtt_ms": 1.604425, + "rtt_ns": 1394750, + "rtt_ms": 1.39475, "checkpoint": 0, "vertex_from": "612", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.838558815Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:16.155089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549666, - "rtt_ms": 1.549666, + "rtt_ns": 1838125, + "rtt_ms": 1.838125, "checkpoint": 0, - "vertex_from": "612", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.838596385Z" + "vertex_from": "611", + "vertex_to": "628", + "timestamp": "2025-11-27T04:04:16.155115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575276, - "rtt_ms": 1.575276, + "rtt_ns": 1922375, + "rtt_ms": 1.922375, "checkpoint": 0, - "vertex_from": "614", - "vertex_to": "792", - "timestamp": "2025-11-27T01:23:51.839324783Z" + "vertex_from": "610", + "vertex_to": "624", + "timestamp": "2025-11-27T04:04:16.15516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557026, - "rtt_ms": 1.557026, + "rtt_ns": 1334917, + "rtt_ms": 1.334917, "checkpoint": 0, - "vertex_from": "616", - "vertex_to": "996", - "timestamp": "2025-11-27T01:23:51.839364173Z" + "vertex_from": "617", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.156372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600226, - "rtt_ms": 1.600226, + "rtt_ns": 1708208, + "rtt_ms": 1.708208, "checkpoint": 0, - "vertex_from": "616", - "vertex_to": "655", - "timestamp": "2025-11-27T01:23:51.839396553Z" + "vertex_from": "613", + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.156521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637356, - "rtt_ms": 1.637356, + "rtt_ns": 1460875, + "rtt_ms": 1.460875, "checkpoint": 0, - "vertex_from": "614", - "vertex_to": "642", - "timestamp": "2025-11-27T01:23:51.839404723Z" + "vertex_from": "624", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.156534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681226, - "rtt_ms": 1.681226, + "rtt_ns": 1377500, + "rtt_ms": 1.3775, "checkpoint": 0, - "vertex_from": "613", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.839408543Z" + "vertex_from": "624", + "vertex_to": "753", + "timestamp": "2025-11-27T04:04:16.156539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086787, - "rtt_ms": 1.086787, + "rtt_ns": 1691542, + "rtt_ms": 1.691542, "checkpoint": 0, - "vertex_from": "617", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.839425683Z" + "vertex_from": "614", + "vertex_to": "792", + "timestamp": "2025-11-27T04:04:16.156565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2417793, - "rtt_ms": 2.417793, + "rtt_ns": 1650166, + "rtt_ms": 1.650166, "checkpoint": 0, - "vertex_from": "612", - "vertex_to": "616", - "timestamp": "2025-11-27T01:23:51.839427423Z" + "vertex_from": "616", + "vertex_to": "996", + "timestamp": "2025-11-27T04:04:16.156631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182177, - "rtt_ms": 1.182177, + "rtt_ns": 1555084, + "rtt_ms": 1.555084, "checkpoint": 0, "vertex_from": "624", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.839664352Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:04:16.156645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676455, - "rtt_ms": 1.676455, + "rtt_ns": 1677250, + "rtt_ms": 1.67725, "checkpoint": 0, - "vertex_from": "624", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.840274Z" + "vertex_from": "616", + "vertex_to": "655", + "timestamp": "2025-11-27T04:04:16.156646-08:00" }, { "operation": "add_edge", - "rtt_ns": 976137, - "rtt_ms": 0.976137, + "rtt_ns": 1529917, + "rtt_ms": 1.529917, "checkpoint": 0, "vertex_from": "624", - "vertex_to": "753", - "timestamp": "2025-11-27T01:23:51.84030281Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.156647-08:00" }, { "operation": "add_edge", - "rtt_ns": 962297, - "rtt_ms": 0.962297, + "rtt_ns": 1818917, + "rtt_ms": 1.818917, "checkpoint": 0, - "vertex_from": "625", - "vertex_to": "753", - "timestamp": "2025-11-27T01:23:51.84032776Z" + "vertex_from": "614", + "vertex_to": "642", + "timestamp": "2025-11-27T04:04:16.156728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024027, - "rtt_ms": 1.024027, + "rtt_ns": 1476750, + "rtt_ms": 1.47675, "checkpoint": 0, "vertex_from": "625", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.84042137Z" + "vertex_to": "753", + "timestamp": "2025-11-27T04:04:16.15785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995624, - "rtt_ms": 1.995624, + "rtt_ns": 1343792, + "rtt_ms": 1.343792, "checkpoint": 0, - "vertex_from": "624", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.840557479Z" + "vertex_from": "625", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.157868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262056, - "rtt_ms": 1.262056, + "rtt_ns": 1472708, + "rtt_ms": 1.472708, "checkpoint": 0, - "vertex_from": "626", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.840669089Z" + "vertex_from": "628", + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.158044-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1789004, - "rtt_ms": 1.789004, + "rtt_ns": 1428333, + "rtt_ms": 1.428333, "checkpoint": 0, "vertex_from": "631", - "timestamp": "2025-11-27T01:23:51.841220017Z" + "timestamp": "2025-11-27T04:04:16.158062-08:00" }, { "operation": "add_edge", - "rtt_ns": 965057, - "rtt_ms": 0.965057, + "rtt_ns": 1538166, + "rtt_ms": 1.538166, "checkpoint": 0, "vertex_from": "640", "vertex_to": "697", - "timestamp": "2025-11-27T01:23:51.841240717Z" + "timestamp": "2025-11-27T04:04:16.158196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818644, - "rtt_ms": 1.818644, - "checkpoint": 0, - "vertex_from": "628", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.841245747Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1841624, - "rtt_ms": 1.841624, + "rtt_ns": 1672458, + "rtt_ms": 1.672458, "checkpoint": 0, "vertex_from": "628", "vertex_to": "992", - "timestamp": "2025-11-27T01:23:51.841252237Z" + "timestamp": "2025-11-27T04:04:16.158212-08:00" }, { "operation": "add_edge", - "rtt_ns": 970937, - "rtt_ms": 0.970937, + "rtt_ns": 1502791, + "rtt_ms": 1.502791, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "772", - "timestamp": "2025-11-27T01:23:51.841274877Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.158232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608825, - "rtt_ms": 1.608825, + "rtt_ns": 1672875, + "rtt_ms": 1.672875, "checkpoint": 0, "vertex_from": "640", "vertex_to": "718", - "timestamp": "2025-11-27T01:23:51.841275397Z" + "timestamp": "2025-11-27T04:04:16.158319-08:00" }, { "operation": "add_edge", - "rtt_ns": 959287, - "rtt_ms": 0.959287, + "rtt_ns": 1814917, + "rtt_ms": 1.814917, "checkpoint": 0, - "vertex_from": "640", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.841288277Z" + "vertex_from": "626", + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.15835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048397, - "rtt_ms": 1.048397, + "rtt_ns": 1715041, + "rtt_ms": 1.715041, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "777", - "timestamp": "2025-11-27T01:23:51.841471387Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:04:16.158363-08:00" }, { "operation": "add_edge", - "rtt_ns": 793538, - "rtt_ms": 0.793538, + "rtt_ns": 1212250, + "rtt_ms": 1.21225, "checkpoint": 0, - "vertex_from": "640", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.842041075Z" + "vertex_from": "631", + "vertex_to": "898", + "timestamp": "2025-11-27T04:04:16.159275-08:00" }, { "operation": "add_edge", - "rtt_ns": 896998, - "rtt_ms": 0.896998, + "rtt_ns": 1123125, + "rtt_ms": 1.123125, "checkpoint": 0, "vertex_from": "640", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.842154795Z" + "timestamp": "2025-11-27T04:04:16.159355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517086, - "rtt_ms": 1.517086, + "rtt_ns": 1754541, + "rtt_ms": 1.754541, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.842187335Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:04:16.159605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659665, - "rtt_ms": 1.659665, + "rtt_ns": 1740458, + "rtt_ms": 1.740458, "checkpoint": 0, "vertex_from": "640", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.842219224Z" + "timestamp": "2025-11-27T04:04:16.159609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026587, - "rtt_ms": 1.026587, + "rtt_ns": 1564166, + "rtt_ms": 1.564166, "checkpoint": 0, - "vertex_from": "631", - "vertex_to": "898", - "timestamp": "2025-11-27T01:23:51.842247654Z" + "vertex_from": "640", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.159609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672405, - "rtt_ms": 1.672405, + "rtt_ns": 1266542, + "rtt_ms": 1.266542, "checkpoint": 0, "vertex_from": "640", "vertex_to": "648", - "timestamp": "2025-11-27T01:23:51.842964292Z" + "timestamp": "2025-11-27T04:04:16.159631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726445, - "rtt_ms": 1.726445, + "rtt_ns": 1301000, + "rtt_ms": 1.301, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "865", - "timestamp": "2025-11-27T01:23:51.842971062Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:04:16.159652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710895, - "rtt_ms": 1.710895, + "rtt_ns": 1494375, + "rtt_ms": 1.494375, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "674", - "timestamp": "2025-11-27T01:23:51.842987642Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:04:16.159691-08:00" }, { "operation": "add_edge", - "rtt_ns": 957957, - "rtt_ms": 0.957957, + "rtt_ns": 1694083, + "rtt_ms": 1.694083, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.843000322Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.159907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731665, - "rtt_ms": 1.731665, + "rtt_ns": 1615791, + "rtt_ms": 1.615791, "checkpoint": 0, "vertex_from": "640", "vertex_to": "803", - "timestamp": "2025-11-27T01:23:51.843008542Z" + "timestamp": "2025-11-27T04:04:16.159938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745314, - "rtt_ms": 1.745314, + "rtt_ns": 1101500, + "rtt_ms": 1.1015, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "739", - "timestamp": "2025-11-27T01:23:51.843219931Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:16.160458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160336, - "rtt_ms": 1.160336, + "rtt_ns": 1303042, + "rtt_ms": 1.303042, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "930", - "timestamp": "2025-11-27T01:23:51.843348691Z" + "vertex_to": "739", + "timestamp": "2025-11-27T04:04:16.160579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385595, - "rtt_ms": 1.385595, + "rtt_ns": 1488208, + "rtt_ms": 1.488208, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.84354222Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:04:16.1611-08:00" }, { "operation": "add_edge", - "rtt_ns": 882178, - "rtt_ms": 0.882178, + "rtt_ns": 1427083, + "rtt_ms": 1.427083, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.844103549Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:04:16.161119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901165, - "rtt_ms": 1.901165, + "rtt_ns": 1668041, + "rtt_ms": 1.668041, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "649", - "timestamp": "2025-11-27T01:23:51.844150759Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:04:16.16128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199117, - "rtt_ms": 1.199117, + "rtt_ns": 1717708, + "rtt_ms": 1.717708, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.844188129Z" + "vertex_to": "903", + "timestamp": "2025-11-27T04:04:16.16137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272046, - "rtt_ms": 1.272046, + "rtt_ns": 1738375, + "rtt_ms": 1.738375, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.844244778Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:04:16.16137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302406, - "rtt_ms": 1.302406, + "rtt_ns": 1950458, + "rtt_ms": 1.950458, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "903", - "timestamp": "2025-11-27T01:23:51.844268098Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:04:16.161557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180004, - "rtt_ms": 2.180004, + "rtt_ns": 1725542, + "rtt_ms": 1.725542, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "916", - "timestamp": "2025-11-27T01:23:51.844400508Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:16.161664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083127, - "rtt_ms": 1.083127, + "rtt_ns": 1207625, + "rtt_ms": 1.207625, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "821", - "timestamp": "2025-11-27T01:23:51.844433168Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:04:16.161668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460906, - "rtt_ms": 1.460906, + "rtt_ns": 1262292, + "rtt_ms": 1.262292, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.844470438Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.161842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496136, - "rtt_ms": 1.496136, + "rtt_ns": 2012625, + "rtt_ms": 2.012625, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.844498338Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.161921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651456, - "rtt_ms": 1.651456, + "rtt_ns": 1983000, + "rtt_ms": 1.983, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "672", - "timestamp": "2025-11-27T01:23:51.845194546Z" + "vertex_to": "821", + "timestamp": "2025-11-27T04:04:16.163084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027008, - "rtt_ms": 1.027008, + "rtt_ns": 1430791, + "rtt_ms": 1.430791, "checkpoint": 0, "vertex_from": "641", - "vertex_to": "835", - "timestamp": "2025-11-27T01:23:51.845297266Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.1631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126066, - "rtt_ms": 1.126066, + "rtt_ns": 1556584, + "rtt_ms": 1.556584, + "checkpoint": 0, + "vertex_from": "641", + "vertex_to": "712", + "timestamp": "2025-11-27T04:04:16.163116-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1866250, + "rtt_ms": 1.86625, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.845314965Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:04:16.163238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214496, - "rtt_ms": 1.214496, + "rtt_ns": 2154834, + "rtt_ms": 2.154834, "checkpoint": 0, "vertex_from": "640", "vertex_to": "744", - "timestamp": "2025-11-27T01:23:51.845319005Z" + "timestamp": "2025-11-27T04:04:16.163435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176146, - "rtt_ms": 1.176146, + "rtt_ns": 2386625, + "rtt_ms": 2.386625, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.845327915Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:04:16.163507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410356, - "rtt_ms": 1.410356, + "rtt_ns": 2211250, + "rtt_ms": 2.21125, "checkpoint": 0, - "vertex_from": "641", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.845846144Z" + "vertex_from": "640", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.163583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433476, - "rtt_ms": 1.433476, + "rtt_ns": 2112958, + "rtt_ms": 2.112958, "checkpoint": 0, "vertex_from": "641", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.845932914Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:04:16.163778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532776, - "rtt_ms": 1.532776, + "rtt_ns": 1018167, + "rtt_ms": 1.018167, "checkpoint": 0, - "vertex_from": "641", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.845934164Z" + "vertex_from": "642", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.164604-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 741338, - "rtt_ms": 0.741338, + "operation": "add_edge", + "rtt_ns": 1506583, + "rtt_ms": 1.506583, "checkpoint": 0, - "vertex_from": "926", - "timestamp": "2025-11-27T01:23:51.845938174Z" + "vertex_from": "642", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.164745-08:00" }, { "operation": "add_edge", - "rtt_ns": 644298, - "rtt_ms": 0.644298, + "rtt_ns": 1691792, + "rtt_ms": 1.691792, "checkpoint": 0, "vertex_from": "641", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.845942594Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.164777-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1477708, + "rtt_ms": 1.477708, + "checkpoint": 0, + "vertex_from": "642", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.164914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484746, - "rtt_ms": 1.484746, + "rtt_ns": 3081709, + "rtt_ms": 3.081709, "checkpoint": 0, "vertex_from": "641", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.845956434Z" + "timestamp": "2025-11-27T04:04:16.165004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713746, - "rtt_ms": 1.713746, + "rtt_ns": 1893416, + "rtt_ms": 1.893416, "checkpoint": 0, "vertex_from": "641", - "vertex_to": "712", - "timestamp": "2025-11-27T01:23:51.845960994Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.16501-08:00" }, { "operation": "add_edge", - "rtt_ns": 691739, - "rtt_ms": 0.691739, + "rtt_ns": 3176584, + "rtt_ms": 3.176584, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.846012144Z" + "vertex_from": "641", + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:16.16502-08:00" }, { "operation": "add_edge", - "rtt_ns": 731308, - "rtt_ms": 0.731308, + "rtt_ns": 1323250, + "rtt_ms": 1.32325, "checkpoint": 0, "vertex_from": "642", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.846047073Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.165103-08:00" }, { "operation": "add_edge", - "rtt_ns": 737968, - "rtt_ms": 0.737968, + "rtt_ns": 1676375, + "rtt_ms": 1.676375, "checkpoint": 0, "vertex_from": "642", "vertex_to": "653", - "timestamp": "2025-11-27T01:23:51.846066833Z" + "timestamp": "2025-11-27T04:04:16.165184-08:00" }, { - "operation": "add_edge", - "rtt_ns": 989827, - "rtt_ms": 0.989827, + "operation": "add_vertex", + "rtt_ns": 2205375, + "rtt_ms": 2.205375, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.846837211Z" + "vertex_from": "926", + "timestamp": "2025-11-27T04:04:16.165307-08:00" }, { "operation": "add_edge", - "rtt_ns": 953597, - "rtt_ms": 0.953597, + "rtt_ns": 1309583, + "rtt_ms": 1.309583, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "658", - "timestamp": "2025-11-27T01:23:51.846910971Z" + "vertex_from": "642", + "vertex_to": "728", + "timestamp": "2025-11-27T04:04:16.165915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709615, - "rtt_ms": 1.709615, + "rtt_ns": 1185042, + "rtt_ms": 1.185042, "checkpoint": 0, - "vertex_from": "641", - "vertex_to": "926", - "timestamp": "2025-11-27T01:23:51.847648129Z" + "vertex_from": "643", + "vertex_to": "833", + "timestamp": "2025-11-27T04:04:16.165931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580086, - "rtt_ms": 1.580086, + "rtt_ns": 960458, + "rtt_ms": 0.960458, "checkpoint": 0, "vertex_from": "644", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.847648389Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:04:16.166064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637935, - "rtt_ms": 1.637935, + "rtt_ns": 1436750, + "rtt_ms": 1.43675, "checkpoint": 0, "vertex_from": "644", - "vertex_to": "802", - "timestamp": "2025-11-27T01:23:51.847651869Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.166351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720495, - "rtt_ms": 1.720495, + "rtt_ns": 1519375, + "rtt_ms": 1.519375, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.847654659Z" + "vertex_from": "644", + "vertex_to": "788", + "timestamp": "2025-11-27T04:04:16.166532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762385, - "rtt_ms": 1.762385, + "rtt_ns": 1532416, + "rtt_ms": 1.532416, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "728", - "timestamp": "2025-11-27T01:23:51.847698109Z" + "vertex_from": "644", + "vertex_to": "802", + "timestamp": "2025-11-27T04:04:16.166537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739155, - "rtt_ms": 1.739155, + "rtt_ns": 1732500, + "rtt_ms": 1.7325, "checkpoint": 0, "vertex_from": "644", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.847702519Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:16.166753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671276, - "rtt_ms": 1.671276, + "rtt_ns": 2266208, + "rtt_ms": 2.266208, "checkpoint": 0, "vertex_from": "644", - "vertex_to": "788", - "timestamp": "2025-11-27T01:23:51.847723869Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:04:16.167451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783665, - "rtt_ms": 1.783665, + "rtt_ns": 2767208, + "rtt_ms": 2.767208, "checkpoint": 0, - "vertex_from": "643", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.847727879Z" + "vertex_from": "644", + "vertex_to": "658", + "timestamp": "2025-11-27T04:04:16.167545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663645, - "rtt_ms": 1.663645, + "rtt_ns": 2276041, + "rtt_ms": 2.276041, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "868", - "timestamp": "2025-11-27T01:23:51.848502966Z" + "vertex_from": "641", + "vertex_to": "926", + "timestamp": "2025-11-27T04:04:16.167584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651375, - "rtt_ms": 1.651375, + "rtt_ns": 1747958, + "rtt_ms": 1.747958, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "651", - "timestamp": "2025-11-27T01:23:51.848564336Z" + "vertex_from": "645", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.167664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457686, - "rtt_ms": 1.457686, + "rtt_ns": 1749500, + "rtt_ms": 1.7495, "checkpoint": 0, "vertex_from": "645", - "vertex_to": "677", - "timestamp": "2025-11-27T01:23:51.849114335Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:16.167682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622505, - "rtt_ms": 1.622505, + "rtt_ns": 1641083, + "rtt_ms": 1.641083, "checkpoint": 0, - "vertex_from": "646", - "vertex_to": "656", - "timestamp": "2025-11-27T01:23:51.849348884Z" + "vertex_from": "645", + "vertex_to": "864", + "timestamp": "2025-11-27T04:04:16.167706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653505, - "rtt_ms": 1.653505, + "rtt_ns": 1284958, + "rtt_ms": 1.284958, "checkpoint": 0, "vertex_from": "646", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.849354664Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1689045, - "rtt_ms": 1.689045, - "checkpoint": 0, - "vertex_from": "647", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.849417904Z" + "timestamp": "2025-11-27T04:04:16.167818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774854, - "rtt_ms": 1.774854, + "rtt_ns": 1306583, + "rtt_ms": 1.306583, "checkpoint": 0, "vertex_from": "646", "vertex_to": "720", - "timestamp": "2025-11-27T01:23:51.849479253Z" + "timestamp": "2025-11-27T04:04:16.167845-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019124, - "rtt_ms": 2.019124, + "rtt_ns": 1558709, + "rtt_ms": 1.558709, "checkpoint": 0, "vertex_from": "645", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.849668943Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:04:16.167911-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214293, - "rtt_ms": 2.214293, + "rtt_ns": 1278833, + "rtt_ms": 1.278833, "checkpoint": 0, - "vertex_from": "645", - "vertex_to": "864", - "timestamp": "2025-11-27T01:23:51.849868762Z" + "vertex_from": "648", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.168945-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2262233, - "rtt_ms": 2.262233, + "operation": "add_vertex", + "rtt_ns": 1164792, + "rtt_ms": 1.164792, "checkpoint": 0, - "vertex_from": "645", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.849911662Z" + "vertex_from": "757", + "timestamp": "2025-11-27T04:04:16.168985-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 803907, - "rtt_ms": 0.803907, + "operation": "add_edge", + "rtt_ns": 1599000, + "rtt_ms": 1.599, "checkpoint": 0, - "vertex_from": "757", - "timestamp": "2025-11-27T01:23:51.850224891Z" + "vertex_from": "647", + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:16.169051-08:00" }, { "operation": "add_edge", - "rtt_ns": 646368, - "rtt_ms": 0.646368, + "rtt_ns": 1532042, + "rtt_ms": 1.532042, "checkpoint": 0, - "vertex_from": "649", - "vertex_to": "664", - "timestamp": "2025-11-27T01:23:51.850317621Z" + "vertex_from": "648", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.169078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771515, - "rtt_ms": 1.771515, + "rtt_ns": 1550916, + "rtt_ms": 1.550916, "checkpoint": 0, "vertex_from": "648", "vertex_to": "778", - "timestamp": "2025-11-27T01:23:51.850338031Z" + "timestamp": "2025-11-27T04:04:16.169137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848695, - "rtt_ms": 1.848695, + "rtt_ns": 1454667, + "rtt_ms": 1.454667, "checkpoint": 0, "vertex_from": "648", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.850352681Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.169138-08:00" }, { "operation": "add_edge", - "rtt_ns": 756968, - "rtt_ms": 0.756968, + "rtt_ns": 1260667, + "rtt_ms": 1.260667, "checkpoint": 0, "vertex_from": "649", - "vertex_to": "791", - "timestamp": "2025-11-27T01:23:51.85062805Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:04:16.169173-08:00" }, { "operation": "add_edge", - "rtt_ns": 759368, - "rtt_ms": 0.759368, + "rtt_ns": 1469666, + "rtt_ms": 1.469666, "checkpoint": 0, - "vertex_from": "650", - "vertex_to": "897", - "timestamp": "2025-11-27T01:23:51.85067321Z" + "vertex_from": "648", + "vertex_to": "932", + "timestamp": "2025-11-27T04:04:16.169177-08:00" }, { "operation": "add_edge", - "rtt_ns": 679898, - "rtt_ms": 0.679898, + "rtt_ns": 2468792, + "rtt_ms": 2.468792, "checkpoint": 0, - "vertex_from": "653", - "vertex_to": "724", - "timestamp": "2025-11-27T01:23:51.851035539Z" + "vertex_from": "646", + "vertex_to": "656", + "timestamp": "2025-11-27T04:04:16.169223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791105, - "rtt_ms": 1.791105, + "rtt_ns": 1408917, + "rtt_ms": 1.408917, "checkpoint": 0, "vertex_from": "648", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.851141279Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:04:16.169254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944494, - "rtt_ms": 1.944494, + "rtt_ns": 1271750, + "rtt_ms": 1.27175, "checkpoint": 0, "vertex_from": "648", - "vertex_to": "932", - "timestamp": "2025-11-27T01:23:51.851302208Z" + "vertex_to": "757", + "timestamp": "2025-11-27T04:04:16.170258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960545, - "rtt_ms": 1.960545, + "rtt_ns": 1220917, + "rtt_ms": 1.220917, "checkpoint": 0, - "vertex_from": "648", - "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.851442108Z" + "vertex_from": "650", + "vertex_to": "897", + "timestamp": "2025-11-27T04:04:16.170273-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349043, - "rtt_ms": 2.349043, + "rtt_ns": 1407584, + "rtt_ms": 1.407584, "checkpoint": 0, - "vertex_from": "648", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.851464778Z" + "vertex_from": "653", + "vertex_to": "724", + "timestamp": "2025-11-27T04:04:16.170546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191286, - "rtt_ms": 1.191286, + "rtt_ns": 1614833, + "rtt_ms": 1.614833, "checkpoint": 0, - "vertex_from": "652", - "vertex_to": "704", - "timestamp": "2025-11-27T01:23:51.851530777Z" + "vertex_from": "649", + "vertex_to": "791", + "timestamp": "2025-11-27T04:04:16.170563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022747, - "rtt_ms": 1.022747, + "rtt_ns": 1401959, + "rtt_ms": 1.401959, "checkpoint": 0, - "vertex_from": "656", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.851697957Z" + "vertex_from": "655", + "vertex_to": "914", + "timestamp": "2025-11-27T04:04:16.170576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505516, - "rtt_ms": 1.505516, + "rtt_ns": 1440083, + "rtt_ms": 1.440083, "checkpoint": 0, - "vertex_from": "648", - "vertex_to": "757", - "timestamp": "2025-11-27T01:23:51.851730757Z" + "vertex_from": "652", + "vertex_to": "704", + "timestamp": "2025-11-27T04:04:16.170579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225066, - "rtt_ms": 1.225066, + "rtt_ns": 1416041, + "rtt_ms": 1.416041, "checkpoint": 0, - "vertex_from": "655", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.851854706Z" + "vertex_from": "656", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.170594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607355, - "rtt_ms": 1.607355, + "rtt_ns": 1504250, + "rtt_ms": 1.50425, "checkpoint": 0, - "vertex_from": "652", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.851927746Z" + "vertex_from": "656", + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:16.17076-08:00" }, { "operation": "add_edge", - "rtt_ns": 946407, - "rtt_ms": 0.946407, + "rtt_ns": 1583833, + "rtt_ms": 1.583833, "checkpoint": 0, "vertex_from": "656", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.851983786Z" + "timestamp": "2025-11-27T04:04:16.170808-08:00" }, { "operation": "add_edge", - "rtt_ns": 895787, - "rtt_ms": 0.895787, + "rtt_ns": 2593292, + "rtt_ms": 2.593292, "checkpoint": 0, - "vertex_from": "656", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.852040386Z" + "vertex_from": "652", + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:16.171673-08:00" }, { "operation": "add_edge", - "rtt_ns": 822818, - "rtt_ms": 0.822818, + "rtt_ns": 1532000, + "rtt_ms": 1.532, "checkpoint": 0, "vertex_from": "656", "vertex_to": "872", - "timestamp": "2025-11-27T01:23:51.852126716Z" + "timestamp": "2025-11-27T04:04:16.171791-08:00" }, { "operation": "add_edge", - "rtt_ns": 761877, - "rtt_ms": 0.761877, + "rtt_ns": 1542292, + "rtt_ms": 1.542292, "checkpoint": 0, "vertex_from": "656", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.852205485Z" + "timestamp": "2025-11-27T04:04:16.171816-08:00" }, { "operation": "add_edge", - "rtt_ns": 726508, - "rtt_ms": 0.726508, + "rtt_ns": 1398625, + "rtt_ms": 1.398625, "checkpoint": 0, "vertex_from": "660", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.852258345Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:04:16.171976-08:00" }, { "operation": "add_edge", - "rtt_ns": 873657, - "rtt_ms": 0.873657, + "rtt_ns": 1500083, + "rtt_ms": 1.500083, "checkpoint": 0, "vertex_from": "658", "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.852340195Z" + "timestamp": "2025-11-27T04:04:16.172047-08:00" }, { "operation": "add_edge", - "rtt_ns": 691618, - "rtt_ms": 0.691618, + "rtt_ns": 1675834, + "rtt_ms": 1.675834, "checkpoint": 0, "vertex_from": "660", - "vertex_to": "771", - "timestamp": "2025-11-27T01:23:51.852391445Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:04:16.172271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217666, - "rtt_ms": 1.217666, + "rtt_ns": 1707792, + "rtt_ms": 1.707792, "checkpoint": 0, "vertex_from": "660", "vertex_to": "850", - "timestamp": "2025-11-27T01:23:51.852949703Z" + "timestamp": "2025-11-27T04:04:16.172287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050717, - "rtt_ms": 1.050717, + "rtt_ns": 1480709, + "rtt_ms": 1.480709, "checkpoint": 0, "vertex_from": "664", "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.853037953Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1195397, - "rtt_ms": 1.195397, - "checkpoint": 0, - "vertex_from": "660", - "vertex_to": "806", - "timestamp": "2025-11-27T01:23:51.853051733Z" + "timestamp": "2025-11-27T04:04:16.172289-08:00" }, { "operation": "add_edge", - "rtt_ns": 813498, - "rtt_ms": 0.813498, + "rtt_ns": 1540375, + "rtt_ms": 1.540375, "checkpoint": 0, - "vertex_from": "665", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.853073363Z" + "vertex_from": "662", + "vertex_to": "707", + "timestamp": "2025-11-27T04:04:16.172303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169317, - "rtt_ms": 1.169317, + "rtt_ns": 1756500, + "rtt_ms": 1.7565, "checkpoint": 0, - "vertex_from": "662", - "vertex_to": "707", - "timestamp": "2025-11-27T01:23:51.853098093Z" + "vertex_from": "660", + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:16.17232-08:00" }, { "operation": "add_edge", - "rtt_ns": 899868, - "rtt_ms": 0.899868, + "rtt_ns": 1151375, + "rtt_ms": 1.151375, "checkpoint": 0, "vertex_from": "665", "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.853106703Z" + "timestamp": "2025-11-27T04:04:16.172969-08:00" }, { "operation": "add_edge", - "rtt_ns": 978797, - "rtt_ms": 0.978797, + "rtt_ns": 1359417, + "rtt_ms": 1.359417, "checkpoint": 0, "vertex_from": "664", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.853106993Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.173034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101017, - "rtt_ms": 1.101017, + "rtt_ns": 1356666, + "rtt_ms": 1.356666, "checkpoint": 0, "vertex_from": "664", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.853142763Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:16.173148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316606, - "rtt_ms": 1.316606, + "rtt_ns": 1278000, + "rtt_ms": 1.278, "checkpoint": 0, "vertex_from": "672", - "vertex_to": "944", - "timestamp": "2025-11-27T01:23:51.853709001Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1515986, - "rtt_ms": 1.515986, - "checkpoint": 0, - "vertex_from": "668", - "vertex_to": "824", - "timestamp": "2025-11-27T01:23:51.853857021Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:16.173598-08:00" }, { "operation": "add_edge", - "rtt_ns": 942447, - "rtt_ms": 0.942447, + "rtt_ns": 1342458, + "rtt_ms": 1.342458, "checkpoint": 0, "vertex_from": "672", - "vertex_to": "811", - "timestamp": "2025-11-27T01:23:51.85399577Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:04:16.173614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188777, - "rtt_ms": 1.188777, + "rtt_ns": 1325459, + "rtt_ms": 1.325459, "checkpoint": 0, "vertex_from": "672", - "vertex_to": "688", - "timestamp": "2025-11-27T01:23:51.85413951Z" + "vertex_to": "811", + "timestamp": "2025-11-27T04:04:16.17363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154477, - "rtt_ms": 1.154477, + "rtt_ns": 1470667, + "rtt_ms": 1.470667, "checkpoint": 0, "vertex_from": "672", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.85419513Z" + "timestamp": "2025-11-27T04:04:16.173761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165847, - "rtt_ms": 1.165847, + "rtt_ns": 1806333, + "rtt_ms": 1.806333, "checkpoint": 0, - "vertex_from": "672", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.85424031Z" + "vertex_from": "665", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.173782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265006, - "rtt_ms": 1.265006, + "rtt_ns": 1541666, + "rtt_ms": 1.541666, "checkpoint": 0, "vertex_from": "672", - "vertex_to": "737", - "timestamp": "2025-11-27T01:23:51.854374119Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:04:16.17383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329126, - "rtt_ms": 1.329126, + "rtt_ns": 1914084, + "rtt_ms": 1.914084, "checkpoint": 0, - "vertex_from": "672", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.854437689Z" + "vertex_from": "668", + "vertex_to": "824", + "timestamp": "2025-11-27T04:04:16.173962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366626, - "rtt_ms": 1.366626, + "rtt_ns": 1145791, + "rtt_ms": 1.145791, "checkpoint": 0, "vertex_from": "672", "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.854466219Z" + "timestamp": "2025-11-27T04:04:16.174116-08:00" }, { "operation": "add_edge", - "rtt_ns": 867248, - "rtt_ms": 0.867248, + "rtt_ns": 911500, + "rtt_ms": 0.9115, "checkpoint": 0, - "vertex_from": "674", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.854577049Z" + "vertex_from": "673", + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.174511-08:00" }, { "operation": "add_edge", - "rtt_ns": 790938, - "rtt_ms": 0.790938, + "rtt_ns": 1554334, + "rtt_ms": 1.554334, "checkpoint": 0, - "vertex_from": "674", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.854649049Z" + "vertex_from": "672", + "vertex_to": "737", + "timestamp": "2025-11-27T04:04:16.174703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578105, - "rtt_ms": 1.578105, + "rtt_ns": 1960125, + "rtt_ms": 1.960125, "checkpoint": 0, - "vertex_from": "673", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.854726788Z" + "vertex_from": "672", + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:16.174995-08:00" }, { "operation": "add_edge", - "rtt_ns": 708818, - "rtt_ms": 0.708818, + "rtt_ns": 1932459, + "rtt_ms": 1.932459, "checkpoint": 0, - "vertex_from": "676", - "vertex_to": "809", - "timestamp": "2025-11-27T01:23:51.854850168Z" + "vertex_from": "674", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.175548-08:00" }, { "operation": "add_edge", - "rtt_ns": 852618, - "rtt_ms": 0.852618, + "rtt_ns": 1735583, + "rtt_ms": 1.735583, "checkpoint": 0, - "vertex_from": "674", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:51.854850658Z" + "vertex_from": "677", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.175566-08:00" }, { "operation": "add_edge", - "rtt_ns": 699128, - "rtt_ms": 0.699128, + "rtt_ns": 2023708, + "rtt_ms": 2.023708, "checkpoint": 0, - "vertex_from": "677", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.854895828Z" + "vertex_from": "674", + "vertex_to": "936", + "timestamp": "2025-11-27T04:04:16.175785-08:00" }, { "operation": "add_edge", - "rtt_ns": 707958, - "rtt_ms": 0.707958, + "rtt_ns": 2172000, + "rtt_ms": 2.172, "checkpoint": 0, - "vertex_from": "679", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.854950268Z" + "vertex_from": "674", + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.175803-08:00" }, { "operation": "add_edge", - "rtt_ns": 610439, - "rtt_ms": 0.610439, + "rtt_ns": 1845959, + "rtt_ms": 1.845959, "checkpoint": 0, "vertex_from": "680", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.854985678Z" + "timestamp": "2025-11-27T04:04:16.175963-08:00" }, { "operation": "add_edge", - "rtt_ns": 741128, - "rtt_ms": 0.741128, + "rtt_ns": 1467833, + "rtt_ms": 1.467833, "checkpoint": 0, "vertex_from": "680", "vertex_to": "706", - "timestamp": "2025-11-27T01:23:51.855181357Z" + "timestamp": "2025-11-27T04:04:16.17598-08:00" }, { "operation": "add_edge", - "rtt_ns": 727438, - "rtt_ms": 0.727438, + "rtt_ns": 1448541, + "rtt_ms": 1.448541, "checkpoint": 0, "vertex_from": "680", "vertex_to": "920", - "timestamp": "2025-11-27T01:23:51.855194787Z" + "timestamp": "2025-11-27T04:04:16.176152-08:00" }, { "operation": "add_edge", - "rtt_ns": 631858, - "rtt_ms": 0.631858, + "rtt_ns": 2205584, + "rtt_ms": 2.205584, "checkpoint": 0, - "vertex_from": "685", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.855282327Z" + "vertex_from": "679", + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.176169-08:00" }, { "operation": "add_edge", - "rtt_ns": 724168, - "rtt_ms": 0.724168, + "rtt_ns": 1412792, + "rtt_ms": 1.412792, "checkpoint": 0, "vertex_from": "684", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.855302907Z" + "timestamp": "2025-11-27T04:04:16.176409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139067, - "rtt_ms": 1.139067, + "rtt_ns": 3457792, + "rtt_ms": 3.457792, "checkpoint": 0, - "vertex_from": "688", - "vertex_to": "978", - "timestamp": "2025-11-27T01:23:51.855867045Z" + "vertex_from": "676", + "vertex_to": "809", + "timestamp": "2025-11-27T04:04:16.177241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136917, - "rtt_ms": 1.136917, + "rtt_ns": 1797792, + "rtt_ms": 1.797792, "checkpoint": 0, - "vertex_from": "693", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.855990155Z" + "vertex_from": "688", + "vertex_to": "978", + "timestamp": "2025-11-27T04:04:16.177364-08:00" }, { "operation": "add_edge", - "rtt_ns": 844708, - "rtt_ms": 0.844708, + "rtt_ns": 1715083, + "rtt_ms": 1.715083, "checkpoint": 0, - "vertex_from": "704", + "vertex_from": "689", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.856027115Z" + "timestamp": "2025-11-27T04:04:16.177501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120407, - "rtt_ms": 1.120407, + "rtt_ns": 1566625, + "rtt_ms": 1.566625, "checkpoint": 0, - "vertex_from": "704", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:51.856106885Z" + "vertex_from": "698", + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:16.177547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307826, - "rtt_ms": 1.307826, + "rtt_ns": 2073375, + "rtt_ms": 2.073375, "checkpoint": 0, - "vertex_from": "689", + "vertex_from": "685", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.856159704Z" + "timestamp": "2025-11-27T04:04:16.177622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209916, - "rtt_ms": 1.209916, - "checkpoint": 0, - "vertex_from": "698", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.856161684Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1270186, - "rtt_ms": 1.270186, + "rtt_ns": 2523042, + "rtt_ms": 2.523042, "checkpoint": 0, "vertex_from": "696", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.856168564Z" + "timestamp": "2025-11-27T04:04:16.178487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728535, - "rtt_ms": 1.728535, + "rtt_ns": 1159000, + "rtt_ms": 1.159, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.856925292Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:04:16.178709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634495, - "rtt_ms": 1.634495, + "rtt_ns": 1299041, + "rtt_ms": 1.299041, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "774", - "timestamp": "2025-11-27T01:23:51.856939422Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.178922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097017, - "rtt_ms": 1.097017, + "rtt_ns": 3135833, + "rtt_ms": 3.135833, "checkpoint": 0, - "vertex_from": "704", - "vertex_to": "884", - "timestamp": "2025-11-27T01:23:51.856965602Z" + "vertex_from": "693", + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.178939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727695, - "rtt_ms": 1.727695, + "rtt_ns": 2704083, + "rtt_ms": 2.704083, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "946", - "timestamp": "2025-11-27T01:23:51.857011642Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:04:16.179116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236786, - "rtt_ms": 1.236786, + "rtt_ns": 2952375, + "rtt_ms": 2.952375, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.857265471Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.179122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318047, - "rtt_ms": 1.318047, + "rtt_ns": 3022208, + "rtt_ms": 3.022208, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.857480951Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:04:16.179175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328697, - "rtt_ms": 1.328697, + "rtt_ns": 1781209, + "rtt_ms": 1.781209, "checkpoint": 0, - "vertex_from": "705", - "vertex_to": "758", - "timestamp": "2025-11-27T01:23:51.857498971Z" + "vertex_from": "704", + "vertex_to": "884", + "timestamp": "2025-11-27T04:04:16.179284-08:00" }, { "operation": "add_edge", - "rtt_ns": 609278, - "rtt_ms": 0.609278, + "rtt_ns": 1938083, + "rtt_ms": 1.938083, "checkpoint": 0, - "vertex_from": "706", - "vertex_to": "848", - "timestamp": "2025-11-27T01:23:51.85754993Z" + "vertex_from": "704", + "vertex_to": "774", + "timestamp": "2025-11-27T04:04:16.179303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391216, - "rtt_ms": 1.391216, + "rtt_ns": 2154625, + "rtt_ms": 2.154625, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "836", - "timestamp": "2025-11-27T01:23:51.85755159Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:04:16.179398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818944, - "rtt_ms": 1.818944, + "rtt_ns": 1290292, + "rtt_ms": 1.290292, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.857926649Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.180213-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001664, - "rtt_ms": 2.001664, + "rtt_ns": 1531917, + "rtt_ms": 1.531917, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "721", - "timestamp": "2025-11-27T01:23:51.857992949Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:04:16.180242-08:00" }, { "operation": "add_edge", - "rtt_ns": 787538, - "rtt_ms": 0.787538, + "rtt_ns": 1317542, + "rtt_ms": 1.317542, "checkpoint": 0, - "vertex_from": "712", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.858054149Z" + "vertex_from": "705", + "vertex_to": "758", + "timestamp": "2025-11-27T04:04:16.180258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058727, - "rtt_ms": 1.058727, + "rtt_ns": 1783708, + "rtt_ms": 1.783708, "checkpoint": 0, - "vertex_from": "710", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.858071789Z" + "vertex_from": "704", + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.180272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287897, - "rtt_ms": 1.287897, + "rtt_ns": 1451500, + "rtt_ms": 1.4515, "checkpoint": 0, "vertex_from": "706", "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.858215389Z" + "timestamp": "2025-11-27T04:04:16.180569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267117, - "rtt_ms": 1.267117, + "rtt_ns": 1860416, + "rtt_ms": 1.860416, "checkpoint": 0, "vertex_from": "708", "vertex_to": "818", - "timestamp": "2025-11-27T01:23:51.858233859Z" + "timestamp": "2025-11-27T04:04:16.181037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332147, - "rtt_ms": 1.332147, + "rtt_ns": 2059708, + "rtt_ms": 2.059708, "checkpoint": 0, - "vertex_from": "716", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.858883427Z" + "vertex_from": "706", + "vertex_to": "848", + "timestamp": "2025-11-27T04:04:16.181182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348147, - "rtt_ms": 1.348147, + "rtt_ns": 2396292, + "rtt_ms": 2.396292, "checkpoint": 0, - "vertex_from": "718", - "vertex_to": "904", - "timestamp": "2025-11-27T01:23:51.858901217Z" + "vertex_from": "712", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.181795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049677, - "rtt_ms": 1.049677, + "rtt_ns": 1621917, + "rtt_ms": 1.621917, "checkpoint": 0, - "vertex_from": "720", - "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.858977296Z" + "vertex_from": "716", + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.181865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524425, - "rtt_ms": 1.524425, + "rtt_ns": 2626500, + "rtt_ms": 2.6265, "checkpoint": 0, "vertex_from": "712", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.859006546Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:16.181931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522215, - "rtt_ms": 1.522215, + "rtt_ns": 1839125, + "rtt_ms": 1.839125, "checkpoint": 0, "vertex_from": "715", "vertex_to": "768", - "timestamp": "2025-11-27T01:23:51.859022256Z" + "timestamp": "2025-11-27T04:04:16.182053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361776, - "rtt_ms": 1.361776, + "rtt_ns": 1945125, + "rtt_ms": 1.945125, "checkpoint": 0, - "vertex_from": "748", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.859578225Z" + "vertex_from": "720", + "vertex_to": "768", + "timestamp": "2025-11-27T04:04:16.182219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452495, - "rtt_ms": 1.452495, + "rtt_ns": 2040000, + "rtt_ms": 2.04, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "801", - "timestamp": "2025-11-27T01:23:51.859687394Z" + "vertex_from": "718", + "vertex_to": "904", + "timestamp": "2025-11-27T04:04:16.182299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614315, - "rtt_ms": 1.614315, + "rtt_ns": 3034875, + "rtt_ms": 3.034875, "checkpoint": 0, - "vertex_from": "736", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.859687824Z" + "vertex_from": "710", + "vertex_to": "960", + "timestamp": "2025-11-27T04:04:16.182319-08:00" }, { "operation": "add_edge", - "rtt_ns": 812067, - "rtt_ms": 0.812067, + "rtt_ns": 2078292, + "rtt_ms": 2.078292, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.859696034Z" + "vertex_from": "723", + "vertex_to": "784", + "timestamp": "2025-11-27T04:04:16.18265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693305, - "rtt_ms": 1.693305, + "rtt_ns": 2324000, + "rtt_ms": 2.324, "checkpoint": 0, "vertex_from": "725", "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.859748664Z" + "timestamp": "2025-11-27T04:04:16.183362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778915, - "rtt_ms": 1.778915, + "rtt_ns": 1331334, + "rtt_ms": 1.331334, "checkpoint": 0, - "vertex_from": "723", - "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.859772834Z" + "vertex_from": "768", + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:16.183385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689786, - "rtt_ms": 1.689786, + "rtt_ns": 1606459, + "rtt_ms": 1.606459, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "769", - "timestamp": "2025-11-27T01:23:51.860667882Z" + "vertex_from": "748", + "vertex_to": "801", + "timestamp": "2025-11-27T04:04:16.183402-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2299917, + "rtt_ms": 2.299917, + "checkpoint": 0, + "vertex_from": "736", + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:16.183483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679236, - "rtt_ms": 1.679236, + "rtt_ns": 1636084, + "rtt_ms": 1.636084, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:51.860687192Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:04:16.183501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795434, - "rtt_ms": 1.795434, + "rtt_ns": 1712625, + "rtt_ms": 1.712625, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.860697981Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.183644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689855, - "rtt_ms": 1.689855, + "rtt_ns": 1378834, + "rtt_ms": 1.378834, "checkpoint": 0, "vertex_from": "768", "vertex_to": "850", - "timestamp": "2025-11-27T01:23:51.860713751Z" + "timestamp": "2025-11-27T04:04:16.183699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052157, - "rtt_ms": 1.052157, + "rtt_ns": 1479292, + "rtt_ms": 1.479292, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.860749261Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:04:16.1837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187726, - "rtt_ms": 1.187726, + "rtt_ns": 1662084, + "rtt_ms": 1.662084, + "checkpoint": 0, + "vertex_from": "768", + "vertex_to": "992", + "timestamp": "2025-11-27T04:04:16.183962-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1328375, + "rtt_ms": 1.328375, "checkpoint": 0, "vertex_from": "768", "vertex_to": "838", - "timestamp": "2025-11-27T01:23:51.860767331Z" + "timestamp": "2025-11-27T04:04:16.183979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027197, - "rtt_ms": 1.027197, + "rtt_ns": 1536000, + "rtt_ms": 1.536, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "770", - "timestamp": "2025-11-27T01:23:51.860777981Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:04:16.184899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005757, - "rtt_ms": 1.005757, + "rtt_ns": 1405958, + "rtt_ms": 1.405958, "checkpoint": 0, "vertex_from": "768", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.860780531Z" + "timestamp": "2025-11-27T04:04:16.184908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092287, - "rtt_ms": 1.092287, + "rtt_ns": 1239709, + "rtt_ms": 1.239709, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "780", - "timestamp": "2025-11-27T01:23:51.860780991Z" + "vertex_from": "769", + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:16.184941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283707, - "rtt_ms": 1.283707, + "rtt_ns": 1243458, + "rtt_ms": 1.243458, + "checkpoint": 0, + "vertex_from": "769", + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:16.184945-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1648167, + "rtt_ms": 1.648167, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.860971881Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:04:16.185051-08:00" }, { "operation": "add_edge", - "rtt_ns": 943308, - "rtt_ms": 0.943308, + "rtt_ns": 1734625, + "rtt_ms": 1.734625, "checkpoint": 0, - "vertex_from": "769", - "vertex_to": "981", - "timestamp": "2025-11-27T01:23:51.861658629Z" + "vertex_from": "768", + "vertex_to": "780", + "timestamp": "2025-11-27T04:04:16.185121-08:00" }, { "operation": "add_edge", - "rtt_ns": 902498, - "rtt_ms": 0.902498, + "rtt_ns": 1732333, + "rtt_ms": 1.732333, "checkpoint": 0, - "vertex_from": "770", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.861686189Z" + "vertex_from": "768", + "vertex_to": "770", + "timestamp": "2025-11-27T04:04:16.185216-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1019977, - "rtt_ms": 1.019977, + "rtt_ns": 1582167, + "rtt_ms": 1.582167, "checkpoint": 0, "vertex_from": "1013", - "timestamp": "2025-11-27T01:23:51.861692239Z" + "timestamp": "2025-11-27T04:04:16.185227-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2007291, + "rtt_ms": 2.007291, + "checkpoint": 0, + "vertex_from": "886", + "timestamp": "2025-11-27T04:04:16.185987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032647, - "rtt_ms": 1.032647, + "rtt_ns": 2129875, + "rtt_ms": 2.129875, "checkpoint": 0, "vertex_from": "769", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.861731628Z" + "vertex_to": "981", + "timestamp": "2025-11-27T04:04:16.186093-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1046837, - "rtt_ms": 1.046837, + "operation": "add_edge", + "rtt_ns": 1208417, + "rtt_ms": 1.208417, "checkpoint": 0, - "vertex_from": "886", - "timestamp": "2025-11-27T01:23:51.861797728Z" + "vertex_from": "770", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.18615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145877, - "rtt_ms": 1.145877, + "rtt_ns": 1491959, + "rtt_ms": 1.491959, "checkpoint": 0, "vertex_from": "769", "vertex_to": "806", - "timestamp": "2025-11-27T01:23:51.861925128Z" + "timestamp": "2025-11-27T04:04:16.186401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277426, - "rtt_ms": 1.277426, + "rtt_ns": 1544958, + "rtt_ms": 1.544958, "checkpoint": 0, "vertex_from": "769", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.861965548Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:04:16.186444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759355, - "rtt_ms": 1.759355, + "rtt_ns": 1318542, + "rtt_ms": 1.318542, "checkpoint": 0, - "vertex_from": "769", - "vertex_to": "776", - "timestamp": "2025-11-27T01:23:51.862527906Z" + "vertex_from": "771", + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.186538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599675, - "rtt_ms": 1.599675, + "rtt_ns": 1558666, + "rtt_ms": 1.558666, "checkpoint": 0, "vertex_from": "770", "vertex_to": "840", - "timestamp": "2025-11-27T01:23:51.862572666Z" + "timestamp": "2025-11-27T04:04:16.18661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804815, - "rtt_ms": 1.804815, + "rtt_ns": 1818959, + "rtt_ms": 1.818959, "checkpoint": 0, "vertex_from": "770", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.862586976Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:16.186764-08:00" }, { "operation": "add_edge", - "rtt_ns": 971007, - "rtt_ms": 0.971007, + "rtt_ns": 2030458, + "rtt_ms": 2.030458, "checkpoint": 0, "vertex_from": "771", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.862658486Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:04:16.187152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035657, - "rtt_ms": 1.035657, + "rtt_ns": 2034833, + "rtt_ms": 2.034833, "checkpoint": 0, - "vertex_from": "771", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:51.862695436Z" + "vertex_from": "768", + "vertex_to": "1013", + "timestamp": "2025-11-27T04:04:16.187263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263757, - "rtt_ms": 1.263757, + "rtt_ns": 1244167, + "rtt_ms": 1.244167, "checkpoint": 0, "vertex_from": "772", - "vertex_to": "833", - "timestamp": "2025-11-27T01:23:51.862996825Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:04:16.187855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431465, - "rtt_ms": 1.431465, + "rtt_ns": 1720625, + "rtt_ms": 1.720625, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "1013", - "timestamp": "2025-11-27T01:23:51.863124274Z" + "vertex_from": "772", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.187872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433706, - "rtt_ms": 1.433706, + "rtt_ns": 1903458, + "rtt_ms": 1.903458, "checkpoint": 0, "vertex_from": "769", "vertex_to": "886", - "timestamp": "2025-11-27T01:23:51.863231664Z" + "timestamp": "2025-11-27T04:04:16.187891-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043044, - "rtt_ms": 2.043044, + "rtt_ns": 1729708, + "rtt_ms": 1.729708, "checkpoint": 0, "vertex_from": "772", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.863968972Z" + "vertex_to": "843", + "timestamp": "2025-11-27T04:04:16.188175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483455, - "rtt_ms": 1.483455, + "rtt_ns": 1653791, + "rtt_ms": 1.653791, "checkpoint": 0, "vertex_from": "772", - "vertex_to": "880", - "timestamp": "2025-11-27T01:23:51.864071601Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:04:16.188192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475135, - "rtt_ms": 1.475135, + "rtt_ns": 1176916, + "rtt_ms": 1.176916, "checkpoint": 0, - "vertex_from": "773", - "vertex_to": "808", - "timestamp": "2025-11-27T01:23:51.864135011Z" + "vertex_from": "775", + "vertex_to": "992", + "timestamp": "2025-11-27T04:04:16.188332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2189503, - "rtt_ms": 2.189503, + "rtt_ns": 2282916, + "rtt_ms": 2.282916, "checkpoint": 0, "vertex_from": "772", - "vertex_to": "834", - "timestamp": "2025-11-27T01:23:51.864156531Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:04:16.188377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165966, - "rtt_ms": 1.165966, + "rtt_ns": 1664417, + "rtt_ms": 1.664417, "checkpoint": 0, - "vertex_from": "776", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.864163611Z" + "vertex_from": "773", + "vertex_to": "808", + "timestamp": "2025-11-27T04:04:16.18843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639105, - "rtt_ms": 1.639105, + "rtt_ns": 2117000, + "rtt_ms": 2.117, "checkpoint": 0, "vertex_from": "772", - "vertex_to": "843", - "timestamp": "2025-11-27T01:23:51.864168571Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:04:16.188519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611025, - "rtt_ms": 1.611025, + "rtt_ns": 2360333, + "rtt_ms": 2.360333, "checkpoint": 0, - "vertex_from": "772", - "vertex_to": "816", - "timestamp": "2025-11-27T01:23:51.864184701Z" + "vertex_from": "776", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.189624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492275, - "rtt_ms": 1.492275, + "rtt_ns": 1301709, + "rtt_ms": 1.301709, "checkpoint": 0, - "vertex_from": "775", - "vertex_to": "992", - "timestamp": "2025-11-27T01:23:51.864188991Z" + "vertex_from": "782", + "vertex_to": "870", + "timestamp": "2025-11-27T04:04:16.189636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747965, - "rtt_ms": 1.747965, + "rtt_ns": 1787084, + "rtt_ms": 1.787084, "checkpoint": 0, "vertex_from": "777", "vertex_to": "784", - "timestamp": "2025-11-27T01:23:51.864873469Z" + "timestamp": "2025-11-27T04:04:16.189645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188927, - "rtt_ms": 1.188927, + "rtt_ns": 1502833, + "rtt_ms": 1.502833, "checkpoint": 0, "vertex_from": "780", - "vertex_to": "849", - "timestamp": "2025-11-27T01:23:51.865325428Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1278057, - "rtt_ms": 1.278057, - "checkpoint": 0, - "vertex_from": "780", - "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.865350638Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2135144, - "rtt_ms": 2.135144, - "checkpoint": 0, - "vertex_from": "779", "vertex_to": "786", - "timestamp": "2025-11-27T01:23:51.865368298Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1439316, - "rtt_ms": 1.439316, - "checkpoint": 0, - "vertex_from": "779", - "vertex_to": "854", - "timestamp": "2025-11-27T01:23:51.865409918Z" + "timestamp": "2025-11-27T04:04:16.189678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273557, - "rtt_ms": 1.273557, + "rtt_ns": 1348292, + "rtt_ms": 1.348292, "checkpoint": 0, "vertex_from": "784", - "vertex_to": "800", - "timestamp": "2025-11-27T01:23:51.865459138Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:16.189779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318706, - "rtt_ms": 1.318706, + "rtt_ns": 1419375, + "rtt_ms": 1.419375, "checkpoint": 0, "vertex_from": "784", - "vertex_to": "852", - "timestamp": "2025-11-27T01:23:51.865510237Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:04:16.189798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789365, - "rtt_ms": 1.789365, + "rtt_ns": 1675791, + "rtt_ms": 1.675791, "checkpoint": 0, - "vertex_from": "782", - "vertex_to": "870", - "timestamp": "2025-11-27T01:23:51.865947426Z" + "vertex_from": "780", + "vertex_to": "849", + "timestamp": "2025-11-27T04:04:16.189869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878105, - "rtt_ms": 1.878105, + "rtt_ns": 2012125, + "rtt_ms": 2.012125, "checkpoint": 0, - "vertex_from": "784", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.866047636Z" + "vertex_from": "779", + "vertex_to": "786", + "timestamp": "2025-11-27T04:04:16.189885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204317, - "rtt_ms": 1.204317, + "rtt_ns": 1993916, + "rtt_ms": 1.993916, "checkpoint": 0, - "vertex_from": "785", - "vertex_to": "901", - "timestamp": "2025-11-27T01:23:51.866078936Z" + "vertex_from": "779", + "vertex_to": "854", + "timestamp": "2025-11-27T04:04:16.189886-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091654, - "rtt_ms": 2.091654, + "rtt_ns": 1973958, + "rtt_ms": 1.973958, "checkpoint": 0, "vertex_from": "784", - "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.866256925Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:04:16.190493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126307, - "rtt_ms": 1.126307, + "rtt_ns": 1473125, + "rtt_ms": 1.473125, "checkpoint": 0, "vertex_from": "790", "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.866452715Z" + "timestamp": "2025-11-27T04:04:16.191119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696665, - "rtt_ms": 1.696665, + "rtt_ns": 1453416, + "rtt_ms": 1.453416, "checkpoint": 0, "vertex_from": "792", "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.867048623Z" + "timestamp": "2025-11-27T04:04:16.191132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712815, - "rtt_ms": 1.712815, + "rtt_ns": 1406625, + "rtt_ms": 1.406625, "checkpoint": 0, "vertex_from": "793", "vertex_to": "962", - "timestamp": "2025-11-27T01:23:51.867082183Z" + "timestamp": "2025-11-27T04:04:16.191187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863434, - "rtt_ms": 1.863434, + "rtt_ns": 1566416, + "rtt_ms": 1.566416, "checkpoint": 0, - "vertex_from": "800", - "vertex_to": "923", - "timestamp": "2025-11-27T01:23:51.867275522Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1694205, - "rtt_ms": 1.694205, - "checkpoint": 0, - "vertex_from": "801", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.867743051Z" + "vertex_from": "784", + "vertex_to": "852", + "timestamp": "2025-11-27T04:04:16.191191-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316954, - "rtt_ms": 2.316954, + "rtt_ns": 1322792, + "rtt_ms": 1.322792, "checkpoint": 0, "vertex_from": "800", "vertex_to": "835", - "timestamp": "2025-11-27T01:23:51.867828541Z" + "timestamp": "2025-11-27T04:04:16.191208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2387053, - "rtt_ms": 2.387053, + "rtt_ns": 1575125, + "rtt_ms": 1.575125, "checkpoint": 0, - "vertex_from": "800", - "vertex_to": "820", - "timestamp": "2025-11-27T01:23:51.867847391Z" + "vertex_from": "785", + "vertex_to": "901", + "timestamp": "2025-11-27T04:04:16.191215-08:00" }, { "operation": "add_edge", - "rtt_ns": 877018, - "rtt_ms": 0.877018, + "rtt_ns": 1446958, + "rtt_ms": 1.446958, "checkpoint": 0, - "vertex_from": "810", - "vertex_to": "911", - "timestamp": "2025-11-27T01:23:51.867927141Z" + "vertex_from": "800", + "vertex_to": "804", + "timestamp": "2025-11-27T04:04:16.191333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995165, - "rtt_ms": 1.995165, + "rtt_ns": 1546042, + "rtt_ms": 1.546042, "checkpoint": 0, "vertex_from": "800", - "vertex_to": "804", - "timestamp": "2025-11-27T01:23:51.867943801Z" + "vertex_to": "923", + "timestamp": "2025-11-27T04:04:16.191344-08:00" }, { "operation": "add_edge", - "rtt_ns": 746568, - "rtt_ms": 0.746568, + "rtt_ns": 1526500, + "rtt_ms": 1.5265, "checkpoint": 0, - "vertex_from": "816", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.86802306Z" + "vertex_from": "800", + "vertex_to": "820", + "timestamp": "2025-11-27T04:04:16.191396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216986, - "rtt_ms": 1.216986, + "rtt_ns": 1814041, + "rtt_ms": 1.814041, "checkpoint": 0, - "vertex_from": "820", - "vertex_to": "972", - "timestamp": "2025-11-27T01:23:51.869066327Z" + "vertex_from": "801", + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.19231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181126, - "rtt_ms": 1.181126, + "rtt_ns": 1113458, + "rtt_ms": 1.113458, "checkpoint": 0, - "vertex_from": "826", + "vertex_from": "816", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.869110217Z" + "timestamp": "2025-11-27T04:04:16.192329-08:00" }, { "operation": "add_edge", - "rtt_ns": 3033081, - "rtt_ms": 3.033081, + "rtt_ns": 1531958, + "rtt_ms": 1.531958, "checkpoint": 0, "vertex_from": "808", - "vertex_to": "832", - "timestamp": "2025-11-27T01:23:51.869113077Z" + "vertex_to": "993", + "timestamp": "2025-11-27T04:04:16.192666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2693302, - "rtt_ms": 2.693302, + "rtt_ns": 1604417, + "rtt_ms": 1.604417, "checkpoint": 0, "vertex_from": "808", "vertex_to": "820", - "timestamp": "2025-11-27T01:23:51.869147037Z" + "timestamp": "2025-11-27T04:04:16.192792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2889572, - "rtt_ms": 2.889572, + "rtt_ns": 1685250, + "rtt_ms": 1.68525, "checkpoint": 0, "vertex_from": "808", - "vertex_to": "993", - "timestamp": "2025-11-27T01:23:51.869148607Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:04:16.192805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067464, - "rtt_ms": 2.067464, + "rtt_ns": 1722000, + "rtt_ms": 1.722, "checkpoint": 0, "vertex_from": "812", "vertex_to": "961", - "timestamp": "2025-11-27T01:23:51.869151267Z" + "timestamp": "2025-11-27T04:04:16.192931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319926, - "rtt_ms": 1.319926, + "rtt_ns": 1759375, + "rtt_ms": 1.759375, + "checkpoint": 0, + "vertex_from": "810", + "vertex_to": "911", + "timestamp": "2025-11-27T04:04:16.192952-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1781833, + "rtt_ms": 1.781833, "checkpoint": 0, "vertex_from": "817", "vertex_to": "912", - "timestamp": "2025-11-27T01:23:51.869151327Z" + "timestamp": "2025-11-27T04:04:16.193128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593615, - "rtt_ms": 1.593615, + "rtt_ns": 1817417, + "rtt_ms": 1.817417, "checkpoint": 0, - "vertex_from": "832", - "vertex_to": "905", - "timestamp": "2025-11-27T01:23:51.869538566Z" + "vertex_from": "820", + "vertex_to": "972", + "timestamp": "2025-11-27T04:04:16.193214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795365, - "rtt_ms": 1.795365, + "rtt_ns": 1907459, + "rtt_ms": 1.907459, "checkpoint": 0, "vertex_from": "817", "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.869541016Z" + "timestamp": "2025-11-27T04:04:16.193243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775885, - "rtt_ms": 1.775885, + "rtt_ns": 1054916, + "rtt_ms": 1.054916, "checkpoint": 0, - "vertex_from": "834", - "vertex_to": "899", - "timestamp": "2025-11-27T01:23:51.869800845Z" + "vertex_from": "832", + "vertex_to": "905", + "timestamp": "2025-11-27T04:04:16.193385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499916, - "rtt_ms": 1.499916, + "rtt_ns": 1089875, + "rtt_ms": 1.089875, "checkpoint": 0, - "vertex_from": "838", - "vertex_to": "946", - "timestamp": "2025-11-27T01:23:51.870612773Z" + "vertex_from": "826", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.193401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493266, - "rtt_ms": 1.493266, + "rtt_ns": 1094167, + "rtt_ms": 1.094167, "checkpoint": 0, - "vertex_from": "857", - "vertex_to": "896", - "timestamp": "2025-11-27T01:23:51.870643453Z" + "vertex_from": "896", + "vertex_to": "928", + "timestamp": "2025-11-27T04:04:16.194311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747765, - "rtt_ms": 1.747765, + "rtt_ns": 1284375, + "rtt_ms": 1.284375, "checkpoint": 0, - "vertex_from": "856", - "vertex_to": "908", - "timestamp": "2025-11-27T01:23:51.870862232Z" + "vertex_from": "857", + "vertex_to": "896", + "timestamp": "2025-11-27T04:04:16.194413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745865, - "rtt_ms": 1.745865, + "rtt_ns": 1236625, + "rtt_ms": 1.236625, "checkpoint": 0, "vertex_from": "896", "vertex_to": "901", - "timestamp": "2025-11-27T01:23:51.870898432Z" + "timestamp": "2025-11-27T04:04:16.194481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777345, - "rtt_ms": 1.777345, + "rtt_ns": 1163458, + "rtt_ms": 1.163458, "checkpoint": 0, "vertex_from": "896", - "vertex_to": "928", - "timestamp": "2025-11-27T01:23:51.870929512Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:04:16.194549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921534, - "rtt_ms": 1.921534, + "rtt_ns": 1795167, + "rtt_ms": 1.795167, + "checkpoint": 0, + "vertex_from": "838", + "vertex_to": "946", + "timestamp": "2025-11-27T04:04:16.194602-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2026125, + "rtt_ms": 2.026125, "checkpoint": 0, "vertex_from": "836", "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.870989861Z" + "timestamp": "2025-11-27T04:04:16.194818-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165853, - "rtt_ms": 2.165853, + "rtt_ns": 1991458, + "rtt_ms": 1.991458, + "checkpoint": 0, + "vertex_from": "856", + "vertex_to": "914", + "timestamp": "2025-11-27T04:04:16.194944-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1736375, + "rtt_ms": 1.736375, "checkpoint": 0, "vertex_from": "896", "vertex_to": "900", - "timestamp": "2025-11-27T01:23:51.871708279Z" + "timestamp": "2025-11-27T04:04:16.195137-08:00" }, { "operation": "add_edge", - "rtt_ns": 2678232, - "rtt_ms": 2.678232, + "rtt_ns": 2525125, + "rtt_ms": 2.525125, "checkpoint": 0, - "vertex_from": "856", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.871828249Z" + "vertex_from": "834", + "vertex_to": "899", + "timestamp": "2025-11-27T04:04:16.195192-08:00" }, { "operation": "add_edge", - "rtt_ns": 938547, - "rtt_ms": 0.938547, + "rtt_ns": 2383167, + "rtt_ms": 2.383167, "checkpoint": 0, - "vertex_from": "904", - "vertex_to": "910", - "timestamp": "2025-11-27T01:23:51.871838609Z" + "vertex_from": "856", + "vertex_to": "908", + "timestamp": "2025-11-27T04:04:16.195316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228626, - "rtt_ms": 1.228626, + "rtt_ns": 1016041, + "rtt_ms": 1.016041, "checkpoint": 0, - "vertex_from": "897", - "vertex_to": "968", - "timestamp": "2025-11-27T01:23:51.871843989Z" + "vertex_from": "908", + "vertex_to": "936", + "timestamp": "2025-11-27T04:04:16.195835-08:00" }, { "operation": "add_edge", - "rtt_ns": 2309813, - "rtt_ms": 2.309813, + "rtt_ns": 1363042, + "rtt_ms": 1.363042, "checkpoint": 0, - "vertex_from": "896", - "vertex_to": "968", - "timestamp": "2025-11-27T01:23:51.871850759Z" + "vertex_from": "898", + "vertex_to": "914", + "timestamp": "2025-11-27T04:04:16.195845-08:00" }, { "operation": "add_edge", - "rtt_ns": 868838, - "rtt_ms": 0.868838, + "rtt_ns": 1718875, + "rtt_ms": 1.718875, "checkpoint": 0, - "vertex_from": "944", - "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.871860029Z" + "vertex_from": "896", + "vertex_to": "956", + "timestamp": "2025-11-27T04:04:16.196031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005637, - "rtt_ms": 1.005637, + "rtt_ns": 1552375, + "rtt_ms": 1.552375, "checkpoint": 0, "vertex_from": "902", "vertex_to": "960", - "timestamp": "2025-11-27T01:23:51.871869809Z" + "timestamp": "2025-11-27T04:04:16.196102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093604, - "rtt_ms": 2.093604, + "rtt_ns": 1540791, + "rtt_ms": 1.540791, "checkpoint": 0, - "vertex_from": "896", - "vertex_to": "956", - "timestamp": "2025-11-27T01:23:51.871898699Z" + "vertex_from": "904", + "vertex_to": "910", + "timestamp": "2025-11-27T04:04:16.196143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001497, - "rtt_ms": 1.001497, + "rtt_ns": 1852833, + "rtt_ms": 1.852833, "checkpoint": 0, - "vertex_from": "908", - "vertex_to": "936", - "timestamp": "2025-11-27T01:23:51.871932309Z" + "vertex_from": "897", + "vertex_to": "968", + "timestamp": "2025-11-27T04:04:16.196268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734834, - "rtt_ms": 1.734834, + "rtt_ns": 1432958, + "rtt_ms": 1.432958, "checkpoint": 0, - "vertex_from": "898", - "vertex_to": "914", - "timestamp": "2025-11-27T01:23:51.872381227Z" + "vertex_from": "944", + "vertex_to": "960", + "timestamp": "2025-11-27T04:04:16.196378-08:00" } ], "summary": { - "total_operations": 17369, - "total_add_vertices": 960, + "total_operations": 17372, + "total_add_vertices": 963, "total_add_edges": 16384, "total_bfs_queries": 25, - "avg_rtt_ms": 2.109359, - "min_rtt_ms": 0.509659, - "max_rtt_ms": 439.877623, - "total_duration_ns": 22469844272, - "total_duration_ms": 22469.844272 + "avg_rtt_ms": 5.533154, + "min_rtt_ms": 0.687542, + "max_rtt_ms": 20531.103166, + "total_duration_ns": 65097545541, + "total_duration_ms": 65097.545541 } } \ No newline at end of file diff --git a/notebooks/benchmark_parallel_optimized.json b/notebooks/benchmark_parallel_optimized.json index 119fffb..97ae60d 100644 --- a/notebooks/benchmark_parallel_optimized.json +++ b/notebooks/benchmark_parallel_optimized.json @@ -14,175040 +14,155474 @@ "measurements": [ { "operation": "add_vertex", - "rtt_ns": 3836977, - "rtt_ms": 3.836977, + "rtt_ns": 3084250, + "rtt_ms": 3.08425, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888654239Z" + "timestamp": "2025-11-27T04:01:46.187612-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3777097, - "rtt_ms": 3.777097, + "rtt_ns": 4234459, + "rtt_ms": 4.234459, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888657429Z" + "timestamp": "2025-11-27T04:01:46.188796-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3837117, - "rtt_ms": 3.837117, + "rtt_ns": 4243916, + "rtt_ms": 4.243916, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888658589Z" + "timestamp": "2025-11-27T04:01:46.188812-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3841098, - "rtt_ms": 3.841098, + "rtt_ns": 4547542, + "rtt_ms": 4.547542, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888738599Z" + "timestamp": "2025-11-27T04:01:46.189133-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3927517, - "rtt_ms": 3.927517, + "rtt_ns": 4638209, + "rtt_ms": 4.638209, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888768579Z" + "timestamp": "2025-11-27T04:01:46.189165-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3933357, - "rtt_ms": 3.933357, + "rtt_ns": 4692333, + "rtt_ms": 4.692333, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888803899Z" + "timestamp": "2025-11-27T04:01:46.189201-08:00" }, { "operation": "add_vertex", - "rtt_ns": 4121896, - "rtt_ms": 4.121896, + "rtt_ns": 4684792, + "rtt_ms": 4.684792, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888950348Z" + "timestamp": "2025-11-27T04:01:46.18921-08:00" }, { "operation": "add_vertex", - "rtt_ns": 4129966, - "rtt_ms": 4.129966, + "rtt_ns": 5190125, + "rtt_ms": 5.190125, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.888951858Z" + "timestamp": "2025-11-27T04:01:46.189696-08:00" }, { "operation": "add_vertex", - "rtt_ns": 4164776, - "rtt_ms": 4.164776, + "rtt_ns": 5576000, + "rtt_ms": 5.576, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.889032428Z" + "timestamp": "2025-11-27T04:01:46.190159-08:00" }, { "operation": "add_vertex", - "rtt_ns": 4181277, - "rtt_ms": 4.181277, + "rtt_ns": 5686417, + "rtt_ms": 5.686417, "checkpoint": 0, "vertex_from": "0", - "timestamp": "2025-11-27T01:21:47.889075508Z" + "timestamp": "2025-11-27T04:01:46.190268-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2459982, - "rtt_ms": 2.459982, + "rtt_ns": 3526041, + "rtt_ms": 3.526041, "checkpoint": 0, - "vertex_from": "165", - "timestamp": "2025-11-27T01:21:47.891201751Z" + "vertex_from": "512", + "timestamp": "2025-11-27T04:01:46.19114-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2565682, - "rtt_ms": 2.565682, + "rtt_ns": 3636667, + "rtt_ms": 3.636667, "checkpoint": 0, - "vertex_from": "1", - "timestamp": "2025-11-27T01:21:47.891240281Z" + "vertex_from": "161", + "timestamp": "2025-11-27T04:01:46.193905-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2622822, - "rtt_ms": 2.622822, + "rtt_ns": 4792458, + "rtt_ms": 4.792458, "checkpoint": 0, - "vertex_from": "208", - "timestamp": "2025-11-27T01:21:47.891285311Z" + "vertex_from": "304", + "timestamp": "2025-11-27T04:01:46.193995-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2782871, - "rtt_ms": 2.782871, + "rtt_ns": 4921959, + "rtt_ms": 4.921959, "checkpoint": 0, - "vertex_from": "20", - "timestamp": "2025-11-27T01:21:47.891819339Z" + "vertex_from": "165", + "timestamp": "2025-11-27T04:01:46.194056-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3191750, - "rtt_ms": 3.19175, + "rtt_ns": 4913375, + "rtt_ms": 4.913375, "checkpoint": 0, - "vertex_from": "161", - "timestamp": "2025-11-27T01:21:47.891852809Z" + "vertex_from": "1", + "timestamp": "2025-11-27T04:01:46.194124-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3175609, - "rtt_ms": 3.175609, + "rtt_ns": 5422917, + "rtt_ms": 5.422917, "checkpoint": 0, - "vertex_from": "257", - "timestamp": "2025-11-27T01:21:47.891982138Z" + "vertex_from": "20", + "timestamp": "2025-11-27T04:01:46.19422-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3235999, - "rtt_ms": 3.235999, + "rtt_ns": 5482917, + "rtt_ms": 5.482917, "checkpoint": 0, - "vertex_from": "512", - "timestamp": "2025-11-27T01:21:47.892008098Z" + "vertex_from": "257", + "timestamp": "2025-11-27T04:01:46.194297-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2963620, - "rtt_ms": 2.96362, + "rtt_ns": 4835500, + "rtt_ms": 4.8355, "checkpoint": 0, "vertex_from": "320", - "timestamp": "2025-11-27T01:21:47.892040858Z" + "timestamp": "2025-11-27T04:01:46.194996-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3197660, - "rtt_ms": 3.19766, + "rtt_ns": 5365167, + "rtt_ms": 5.365167, "checkpoint": 0, - "vertex_from": "33", - "timestamp": "2025-11-27T01:21:47.892150168Z" + "vertex_from": "208", + "timestamp": "2025-11-27T04:01:46.195062-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3291650, - "rtt_ms": 3.29165, + "rtt_ns": 5973792, + "rtt_ms": 5.973792, "checkpoint": 0, - "vertex_from": "304", - "timestamp": "2025-11-27T01:21:47.892244698Z" + "vertex_from": "33", + "timestamp": "2025-11-27T04:01:46.195142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271546, - "rtt_ms": 1.271546, + "rtt_ns": 4263667, + "rtt_ms": 4.263667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:47.892474337Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.195404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317776, - "rtt_ms": 1.317776, + "rtt_ns": 3740167, + "rtt_ms": 3.740167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "1", - "timestamp": "2025-11-27T01:21:47.892558947Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:46.197735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362085, - "rtt_ms": 1.362085, + "rtt_ns": 3884167, + "rtt_ms": 3.884167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:47.892648226Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 910387, - "rtt_ms": 0.910387, - "checkpoint": 0, - "vertex_from": "708", - "timestamp": "2025-11-27T01:21:47.893388664Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:46.19779-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 912477, - "rtt_ms": 0.912477, + "operation": "add_edge", + "rtt_ns": 4403458, + "rtt_ms": 4.403458, "checkpoint": 0, - "vertex_from": "64", - "timestamp": "2025-11-27T01:21:47.893474093Z" + "vertex_from": "0", + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:46.198459-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 895267, - "rtt_ms": 0.895267, + "operation": "add_edge", + "rtt_ns": 4258958, + "rtt_ms": 4.258958, "checkpoint": 0, - "vertex_from": "641", - "timestamp": "2025-11-27T01:21:47.893547593Z" + "vertex_from": "0", + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.198556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988113, - "rtt_ms": 1.988113, + "rtt_ns": 4400667, + "rtt_ms": 4.400667, "checkpoint": 0, "vertex_from": "0", "vertex_to": "20", - "timestamp": "2025-11-27T01:21:47.893808142Z" + "timestamp": "2025-11-27T04:01:46.198621-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 907667, - "rtt_ms": 0.907667, + "operation": "add_edge", + "rtt_ns": 3674041, + "rtt_ms": 3.674041, "checkpoint": 0, - "vertex_from": "32", - "timestamp": "2025-11-27T01:21:47.894718269Z" + "vertex_from": "0", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.198671-08:00" }, { "operation": "add_edge", - "rtt_ns": 3041370, - "rtt_ms": 3.04137, + "rtt_ns": 4606750, + "rtt_ms": 4.60675, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:47.895024438Z" + "vertex_to": "1", + "timestamp": "2025-11-27T04:01:46.19873-08:00" }, { "operation": "add_edge", - "rtt_ns": 2871940, - "rtt_ms": 2.87194, + "rtt_ns": 3756959, + "rtt_ms": 3.756959, "checkpoint": 0, "vertex_from": "0", "vertex_to": "33", - "timestamp": "2025-11-27T01:21:47.895026148Z" + "timestamp": "2025-11-27T04:01:46.198899-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2813960, - "rtt_ms": 2.81396, + "operation": "add_vertex", + "rtt_ns": 3567875, + "rtt_ms": 3.567875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:47.895059278Z" + "vertex_from": "708", + "timestamp": "2025-11-27T04:01:46.198974-08:00" }, { "operation": "add_edge", - "rtt_ns": 3129970, - "rtt_ms": 3.12997, + "rtt_ns": 4587125, + "rtt_ms": 4.587125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:47.895171668Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:46.199651-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3470999, - "rtt_ms": 3.470999, + "operation": "add_vertex", + "rtt_ns": 4117542, + "rtt_ms": 4.117542, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:47.895479947Z" + "vertex_from": "641", + "timestamp": "2025-11-27T04:01:46.201908-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 4315250, + "rtt_ms": 4.31525, + "checkpoint": 0, + "vertex_from": "64", + "timestamp": "2025-11-27T04:01:46.202051-08:00" }, { "operation": "add_vertex", - "rtt_ns": 990357, - "rtt_ms": 0.990357, + "rtt_ns": 4219250, + "rtt_ms": 4.21925, "checkpoint": 0, "vertex_from": "385", - "timestamp": "2025-11-27T01:21:47.896019015Z" + "timestamp": "2025-11-27T04:01:46.202776-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 4400625, + "rtt_ms": 4.400625, + "checkpoint": 0, + "vertex_from": "32", + "timestamp": "2025-11-27T04:01:46.202861-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1048877, - "rtt_ms": 1.048877, + "rtt_ns": 4308500, + "rtt_ms": 4.3085, "checkpoint": 0, "vertex_from": "50", - "timestamp": "2025-11-27T01:21:47.896111985Z" + "timestamp": "2025-11-27T04:01:46.20298-08:00" }, { "operation": "add_vertex", - "rtt_ns": 951187, - "rtt_ms": 0.951187, + "rtt_ns": 4477208, + "rtt_ms": 4.477208, "checkpoint": 0, - "vertex_from": "10", - "timestamp": "2025-11-27T01:21:47.896126135Z" + "vertex_from": "72", + "timestamp": "2025-11-27T04:01:46.203099-08:00" }, { "operation": "add_vertex", - "rtt_ns": 823507, - "rtt_ms": 0.823507, + "rtt_ns": 4382291, + "rtt_ms": 4.382291, "checkpoint": 0, "vertex_from": "92", - "timestamp": "2025-11-27T01:21:47.896306274Z" + "timestamp": "2025-11-27T04:01:46.203282-08:00" }, { "operation": "add_edge", - "rtt_ns": 3437298, - "rtt_ms": 3.437298, + "rtt_ns": 4379708, + "rtt_ms": 4.379708, "checkpoint": 0, "vertex_from": "0", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:47.896826572Z" + "timestamp": "2025-11-27T04:01:46.203353-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 5338833, + "rtt_ms": 5.338833, + "checkpoint": 0, + "vertex_from": "10", + "timestamp": "2025-11-27T04:01:46.20407-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 4624917, + "rtt_ms": 4.624917, + "checkpoint": 0, + "vertex_from": "136", + "timestamp": "2025-11-27T04:01:46.204276-08:00" }, { "operation": "add_edge", - "rtt_ns": 3315919, - "rtt_ms": 3.315919, + "rtt_ns": 4026917, + "rtt_ms": 4.026917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:47.896863872Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.206079-08:00" }, { "operation": "add_edge", - "rtt_ns": 3398829, - "rtt_ms": 3.398829, + "rtt_ns": 4315625, + "rtt_ms": 4.315625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:47.896873592Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:46.206224-08:00" }, { "operation": "add_edge", - "rtt_ns": 5077993, - "rtt_ms": 5.077993, + "rtt_ns": 3977417, + "rtt_ms": 3.977417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:47.896931462Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.206754-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328683, - "rtt_ms": 2.328683, + "rtt_ns": 3955708, + "rtt_ms": 3.955708, "checkpoint": 0, "vertex_from": "0", "vertex_to": "32", - "timestamp": "2025-11-27T01:21:47.897047512Z" + "timestamp": "2025-11-27T04:01:46.206817-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2100943, - "rtt_ms": 2.100943, + "operation": "add_edge", + "rtt_ns": 4014000, + "rtt_ms": 4.014, "checkpoint": 0, - "vertex_from": "72", - "timestamp": "2025-11-27T01:21:47.897129521Z" + "vertex_from": "0", + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:46.206994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127156, - "rtt_ms": 1.127156, + "rtt_ns": 4512542, + "rtt_ms": 4.512542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "10", - "timestamp": "2025-11-27T01:21:47.897253771Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:46.207612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251726, - "rtt_ms": 1.251726, + "rtt_ns": 4392125, + "rtt_ms": 4.392125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:47.897271461Z" + "vertex_to": "92", + "timestamp": "2025-11-27T04:01:46.207676-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 4440667, + "rtt_ms": 4.440667, + "checkpoint": 0, + "vertex_from": "128", + "timestamp": "2025-11-27T04:01:46.207796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017457, - "rtt_ms": 1.017457, + "rtt_ns": 3594750, + "rtt_ms": 3.59475, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "92", - "timestamp": "2025-11-27T01:21:47.897324101Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.207871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239006, - "rtt_ms": 1.239006, + "rtt_ns": 3881709, + "rtt_ms": 3.881709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:47.897351931Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:01:46.207952-08:00" }, { "operation": "add_vertex", - "rtt_ns": 674188, - "rtt_ms": 0.674188, + "rtt_ns": 2722000, + "rtt_ms": 2.722, "checkpoint": 0, - "vertex_from": "8", - "timestamp": "2025-11-27T01:21:47.897930699Z" + "vertex_from": "153", + "timestamp": "2025-11-27T04:01:46.208947-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2880708, + "rtt_ms": 2.880708, + "checkpoint": 0, + "vertex_from": "390", + "timestamp": "2025-11-27T04:01:46.20896-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2548333, + "rtt_ms": 2.548333, + "checkpoint": 0, + "vertex_from": "16", + "timestamp": "2025-11-27T04:01:46.209303-08:00" }, { "operation": "add_vertex", - "rtt_ns": 912787, - "rtt_ms": 0.912787, + "rtt_ns": 2321958, + "rtt_ms": 2.321958, "checkpoint": 0, "vertex_from": "518", - "timestamp": "2025-11-27T01:21:47.898188328Z" + "timestamp": "2025-11-27T04:01:46.209317-08:00" }, { "operation": "add_vertex", - "rtt_ns": 837517, - "rtt_ms": 0.837517, + "rtt_ns": 2637875, + "rtt_ms": 2.637875, "checkpoint": 0, - "vertex_from": "788", - "timestamp": "2025-11-27T01:21:47.898193128Z" + "vertex_from": "8", + "timestamp": "2025-11-27T04:01:46.209456-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1719215, - "rtt_ms": 1.719215, + "rtt_ns": 1758791, + "rtt_ms": 1.758791, "checkpoint": 0, - "vertex_from": "128", - "timestamp": "2025-11-27T01:21:47.898585987Z" + "vertex_from": "416", + "timestamp": "2025-11-27T04:01:46.209631-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1949954, - "rtt_ms": 1.949954, + "rtt_ns": 1690500, + "rtt_ms": 1.6905, "checkpoint": 0, - "vertex_from": "136", - "timestamp": "2025-11-27T01:21:47.898784746Z" + "vertex_from": "384", + "timestamp": "2025-11-27T04:01:46.209646-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2060994, - "rtt_ms": 2.060994, + "rtt_ns": 2045750, + "rtt_ms": 2.04575, "checkpoint": 0, - "vertex_from": "390", - "timestamp": "2025-11-27T01:21:47.898937006Z" + "vertex_from": "6", + "timestamp": "2025-11-27T04:01:46.209659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886464, - "rtt_ms": 1.886464, + "rtt_ns": 2058084, + "rtt_ms": 2.058084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:47.899016485Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.209854-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2101923, - "rtt_ms": 2.101923, + "rtt_ns": 2241958, + "rtt_ms": 2.241958, "checkpoint": 0, - "vertex_from": "153", - "timestamp": "2025-11-27T01:21:47.899035405Z" + "vertex_from": "788", + "timestamp": "2025-11-27T04:01:46.209921-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1138292, + "rtt_ms": 1.138292, + "checkpoint": 0, + "vertex_from": "880", + "timestamp": "2025-11-27T04:01:46.210994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209366, - "rtt_ms": 1.209366, + "rtt_ns": 2557667, + "rtt_ms": 2.557667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "8", - "timestamp": "2025-11-27T01:21:47.899140765Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:46.211505-08:00" }, { "operation": "add_edge", - "rtt_ns": 987227, - "rtt_ms": 0.987227, + "rtt_ns": 1873792, + "rtt_ms": 1.873792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:47.899175945Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:46.21152-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2144603, - "rtt_ms": 2.144603, + "operation": "add_edge", + "rtt_ns": 2571041, + "rtt_ms": 2.571041, "checkpoint": 0, - "vertex_from": "16", - "timestamp": "2025-11-27T01:21:47.899195905Z" + "vertex_from": "0", + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:46.211532-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1875664, - "rtt_ms": 1.875664, + "operation": "add_edge", + "rtt_ns": 2086333, + "rtt_ms": 2.086333, "checkpoint": 0, - "vertex_from": "6", - "timestamp": "2025-11-27T01:21:47.899203165Z" + "vertex_from": "0", + "vertex_to": "8", + "timestamp": "2025-11-27T04:01:46.211542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043517, - "rtt_ms": 1.043517, + "rtt_ns": 2275917, + "rtt_ms": 2.275917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:47.899237095Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.211579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511435, - "rtt_ms": 1.511435, + "rtt_ns": 1942583, + "rtt_ms": 1.942583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:47.900098072Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:01:46.211602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253636, - "rtt_ms": 1.253636, + "rtt_ns": 1719500, + "rtt_ms": 1.7195, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:47.900191272Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:46.211641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866564, - "rtt_ms": 1.866564, + "rtt_ns": 2384209, + "rtt_ms": 2.384209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:47.90065179Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:46.211701-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1781685, - "rtt_ms": 1.781685, + "operation": "add_edge", + "rtt_ns": 2080416, + "rtt_ms": 2.080416, "checkpoint": 0, - "vertex_from": "416", - "timestamp": "2025-11-27T01:21:47.90080155Z" + "vertex_from": "0", + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:46.211712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800854, - "rtt_ms": 1.800854, + "rtt_ns": 1401583, + "rtt_ms": 1.401583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:47.900836859Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:01:46.212395-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1751354, - "rtt_ms": 1.751354, + "rtt_ns": 1269500, + "rtt_ms": 1.2695, "checkpoint": 0, - "vertex_from": "384", - "timestamp": "2025-11-27T01:21:47.900895729Z" + "vertex_from": "66", + "timestamp": "2025-11-27T04:01:46.212982-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2061623, - "rtt_ms": 2.061623, + "rtt_ns": 1463208, + "rtt_ms": 1.463208, "checkpoint": 0, - "vertex_from": "880", - "timestamp": "2025-11-27T01:21:47.901242168Z" + "vertex_from": "308", + "timestamp": "2025-11-27T04:01:46.212996-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1476917, + "rtt_ms": 1.476917, + "checkpoint": 0, + "vertex_from": "43", + "timestamp": "2025-11-27T04:01:46.213179-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2122993, - "rtt_ms": 2.122993, + "rtt_ns": 1686375, + "rtt_ms": 1.686375, "checkpoint": 0, "vertex_from": "528", - "timestamp": "2025-11-27T01:21:47.901363038Z" + "timestamp": "2025-11-27T04:01:46.213192-08:00" }, { "operation": "add_vertex", - "rtt_ns": 842667, - "rtt_ms": 0.842667, + "rtt_ns": 1628000, + "rtt_ms": 1.628, "checkpoint": 0, - "vertex_from": "162", - "timestamp": "2025-11-27T01:21:47.901498387Z" + "vertex_from": "4", + "timestamp": "2025-11-27T04:01:46.213208-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1323535, - "rtt_ms": 1.323535, + "rtt_ns": 1814333, + "rtt_ms": 1.814333, "checkpoint": 0, - "vertex_from": "308", - "timestamp": "2025-11-27T01:21:47.901516827Z" + "vertex_from": "17", + "timestamp": "2025-11-27T04:01:46.213338-08:00" }, { "operation": "add_vertex", - "rtt_ns": 876418, - "rtt_ms": 0.876418, + "rtt_ns": 1730125, + "rtt_ms": 1.730125, "checkpoint": 0, - "vertex_from": "4", - "timestamp": "2025-11-27T01:21:47.901717857Z" + "vertex_from": "34", + "timestamp": "2025-11-27T04:01:46.213373-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2283802, - "rtt_ms": 2.283802, + "rtt_ns": 1898875, + "rtt_ms": 1.898875, "checkpoint": 0, - "vertex_from": "17", - "timestamp": "2025-11-27T01:21:47.902385084Z" + "vertex_from": "162", + "timestamp": "2025-11-27T04:01:46.213442-08:00" }, { - "operation": "add_edge", - "rtt_ns": 4129946, - "rtt_ms": 4.129946, + "operation": "add_vertex", + "rtt_ns": 1876666, + "rtt_ms": 1.876666, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "6", - "timestamp": "2025-11-27T01:21:47.903333421Z" + "vertex_from": "22", + "timestamp": "2025-11-27T04:01:46.213479-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2932560, - "rtt_ms": 2.93256, + "operation": "add_vertex", + "rtt_ns": 1087708, + "rtt_ms": 1.087708, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:47.903828729Z" + "vertex_from": "256", + "timestamp": "2025-11-27T04:01:46.213485-08:00" }, { "operation": "add_edge", - "rtt_ns": 4731994, - "rtt_ms": 4.731994, + "rtt_ns": 1836208, + "rtt_ms": 1.836208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:47.903928409Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:01:46.215045-08:00" }, { "operation": "add_edge", - "rtt_ns": 3152969, - "rtt_ms": 3.152969, + "rtt_ns": 1609458, + "rtt_ms": 1.609458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:47.903954999Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:46.215052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2726671, - "rtt_ms": 2.726671, + "rtt_ns": 1883209, + "rtt_ms": 1.883209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "880", - "timestamp": "2025-11-27T01:21:47.903969909Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:01:46.215062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2688541, - "rtt_ms": 2.688541, + "rtt_ns": 1869291, + "rtt_ms": 1.869291, "checkpoint": 0, "vertex_from": "0", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:47.904051989Z" + "timestamp": "2025-11-27T04:01:46.215066-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539522, - "rtt_ms": 2.539522, + "rtt_ns": 2247833, + "rtt_ms": 2.247833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "308", - "timestamp": "2025-11-27T01:21:47.904056919Z" + "timestamp": "2025-11-27T04:01:46.215244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2576632, - "rtt_ms": 2.576632, + "rtt_ns": 1875250, + "rtt_ms": 1.87525, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:47.904075699Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:46.215248-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444491, - "rtt_ms": 2.444491, + "rtt_ns": 1913292, + "rtt_ms": 1.913292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "4", - "timestamp": "2025-11-27T01:21:47.904162888Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:46.215252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778474, - "rtt_ms": 1.778474, + "rtt_ns": 2295208, + "rtt_ms": 2.295208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:47.904164378Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.215278-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 862627, - "rtt_ms": 0.862627, + "operation": "add_edge", + "rtt_ns": 1823916, + "rtt_ms": 1.823916, "checkpoint": 0, - "vertex_from": "22", - "timestamp": "2025-11-27T01:21:47.904199308Z" + "vertex_from": "0", + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:46.215304-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 731528, - "rtt_ms": 0.731528, + "operation": "add_edge", + "rtt_ns": 1820042, + "rtt_ms": 1.820042, "checkpoint": 0, - "vertex_from": "34", - "timestamp": "2025-11-27T01:21:47.904564107Z" + "vertex_from": "0", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:46.215305-08:00" }, { "operation": "add_vertex", - "rtt_ns": 750558, - "rtt_ms": 0.750558, + "rtt_ns": 1649250, + "rtt_ms": 1.64925, "checkpoint": 0, - "vertex_from": "66", - "timestamp": "2025-11-27T01:21:47.904727697Z" + "vertex_from": "424", + "timestamp": "2025-11-27T04:01:46.216696-08:00" }, { "operation": "add_vertex", - "rtt_ns": 774368, - "rtt_ms": 0.774368, + "rtt_ns": 1646292, + "rtt_ms": 1.646292, "checkpoint": 0, - "vertex_from": "65", - "timestamp": "2025-11-27T01:21:47.904941366Z" + "vertex_from": "144", + "timestamp": "2025-11-27T04:01:46.216709-08:00" }, { "operation": "add_vertex", - "rtt_ns": 923417, - "rtt_ms": 0.923417, + "rtt_ns": 1469500, + "rtt_ms": 1.4695, "checkpoint": 0, - "vertex_from": "424", - "timestamp": "2025-11-27T01:21:47.904979266Z" + "vertex_from": "137", + "timestamp": "2025-11-27T04:01:46.216722-08:00" }, { "operation": "add_vertex", - "rtt_ns": 837868, - "rtt_ms": 0.837868, + "rtt_ns": 1454334, + "rtt_ms": 1.454334, "checkpoint": 0, - "vertex_from": "292", - "timestamp": "2025-11-27T01:21:47.905003986Z" + "vertex_from": "306", + "timestamp": "2025-11-27T04:01:46.216733-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1900734, - "rtt_ms": 1.900734, + "rtt_ns": 1481750, + "rtt_ms": 1.48175, "checkpoint": 0, - "vertex_from": "43", - "timestamp": "2025-11-27T01:21:47.905832493Z" + "vertex_from": "545", + "timestamp": "2025-11-27T04:01:46.216733-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2048063, - "rtt_ms": 2.048063, + "rtt_ns": 1692125, + "rtt_ms": 1.692125, "checkpoint": 0, - "vertex_from": "256", - "timestamp": "2025-11-27T01:21:47.906024272Z" + "vertex_from": "576", + "timestamp": "2025-11-27T04:01:46.216745-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2018723, - "rtt_ms": 2.018723, + "rtt_ns": 1751167, + "rtt_ms": 1.751167, "checkpoint": 0, - "vertex_from": "576", - "timestamp": "2025-11-27T01:21:47.906078162Z" + "vertex_from": "65", + "timestamp": "2025-11-27T04:01:46.216997-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1929324, - "rtt_ms": 1.929324, + "operation": "add_vertex", + "rtt_ns": 1708958, + "rtt_ms": 1.708958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:47.906129112Z" + "vertex_from": "961", + "timestamp": "2025-11-27T04:01:46.217013-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2060153, - "rtt_ms": 2.060153, + "rtt_ns": 1947000, + "rtt_ms": 1.947, "checkpoint": 0, - "vertex_from": "144", - "timestamp": "2025-11-27T01:21:47.906138152Z" + "vertex_from": "292", + "timestamp": "2025-11-27T04:01:46.217014-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1567145, - "rtt_ms": 1.567145, + "operation": "add_vertex", + "rtt_ns": 1779000, + "rtt_ms": 1.779, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:47.906295582Z" + "vertex_from": "536", + "timestamp": "2025-11-27T04:01:46.217087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335956, - "rtt_ms": 1.335956, + "rtt_ns": 1131250, + "rtt_ms": 1.13125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:47.906315812Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.217877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481725, - "rtt_ms": 1.481725, + "rtt_ns": 1003792, + "rtt_ms": 1.003792, "checkpoint": 0, "vertex_from": "0", "vertex_to": "65", - "timestamp": "2025-11-27T01:21:47.906423651Z" + "timestamp": "2025-11-27T04:01:46.218001-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 720348, - "rtt_ms": 0.720348, + "operation": "add_edge", + "rtt_ns": 1432417, + "rtt_ms": 1.432417, "checkpoint": 0, - "vertex_from": "545", - "timestamp": "2025-11-27T01:21:47.90685404Z" + "vertex_from": "0", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:46.218142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2480852, - "rtt_ms": 2.480852, + "rtt_ns": 1460042, + "rtt_ms": 1.460042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:47.907045479Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:46.218193-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 777507, - "rtt_ms": 0.777507, + "operation": "add_edge", + "rtt_ns": 1511792, + "rtt_ms": 1.511792, "checkpoint": 0, - "vertex_from": "306", - "timestamp": "2025-11-27T01:21:47.907095569Z" + "vertex_from": "0", + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:46.218208-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 775808, - "rtt_ms": 0.775808, + "operation": "add_edge", + "rtt_ns": 1674625, + "rtt_ms": 1.674625, "checkpoint": 0, - "vertex_from": "961", - "timestamp": "2025-11-27T01:21:47.907201359Z" + "vertex_from": "0", + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.218397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2755801, - "rtt_ms": 2.755801, + "rtt_ns": 1719250, + "rtt_ms": 1.71925, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:47.907760147Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:46.218453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782675, - "rtt_ms": 1.782675, + "rtt_ns": 1384208, + "rtt_ms": 1.384208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:47.907807177Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:46.218472-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009004, - "rtt_ms": 2.009004, + "rtt_ns": 1567750, + "rtt_ms": 1.56775, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "43", - "timestamp": "2025-11-27T01:21:47.907841767Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:46.218581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906984, - "rtt_ms": 1.906984, + "rtt_ns": 1639709, + "rtt_ms": 1.639709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:47.907985456Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:46.218654-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1859824, - "rtt_ms": 1.859824, + "operation": "add_vertex", + "rtt_ns": 1515666, + "rtt_ms": 1.515666, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:47.907998156Z" + "vertex_from": "326", + "timestamp": "2025-11-27T04:01:46.219394-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1642384, - "rtt_ms": 1.642384, + "operation": "add_vertex", + "rtt_ns": 1366250, + "rtt_ms": 1.36625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:47.908497134Z" + "vertex_from": "18", + "timestamp": "2025-11-27T04:01:46.219509-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2331322, - "rtt_ms": 2.331322, + "rtt_ns": 1581292, + "rtt_ms": 1.581292, "checkpoint": 0, - "vertex_from": "137", - "timestamp": "2025-11-27T01:21:47.908630174Z" + "vertex_from": "640", + "timestamp": "2025-11-27T04:01:46.21979-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1650965, - "rtt_ms": 1.650965, + "operation": "add_vertex", + "rtt_ns": 1188791, + "rtt_ms": 1.188791, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:47.908747044Z" + "vertex_from": "644", + "timestamp": "2025-11-27T04:01:46.219845-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1640294, - "rtt_ms": 1.640294, + "operation": "add_vertex", + "rtt_ns": 1690750, + "rtt_ms": 1.69075, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "961", - "timestamp": "2025-11-27T01:21:47.908841963Z" + "vertex_from": "514", + "timestamp": "2025-11-27T04:01:46.219885-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1824564, - "rtt_ms": 1.824564, + "rtt_ns": 1526750, + "rtt_ms": 1.52675, "checkpoint": 0, - "vertex_from": "536", - "timestamp": "2025-11-27T01:21:47.908873973Z" + "vertex_from": "160", + "timestamp": "2025-11-27T04:01:46.220109-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1762094, - "rtt_ms": 1.762094, + "rtt_ns": 1692916, + "rtt_ms": 1.692916, "checkpoint": 0, - "vertex_from": "326", - "timestamp": "2025-11-27T01:21:47.909526641Z" + "vertex_from": "176", + "timestamp": "2025-11-27T04:01:46.220148-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1866914, - "rtt_ms": 1.866914, + "rtt_ns": 2243000, + "rtt_ms": 2.243, "checkpoint": 0, "vertex_from": "25", - "timestamp": "2025-11-27T01:21:47.909676441Z" + "timestamp": "2025-11-27T04:01:46.220247-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1849643, - "rtt_ms": 1.849643, + "rtt_ns": 1891959, + "rtt_ms": 1.891959, "checkpoint": 0, - "vertex_from": "18", - "timestamp": "2025-11-27T01:21:47.90969398Z" + "vertex_from": "513", + "timestamp": "2025-11-27T04:01:46.22029-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1897634, - "rtt_ms": 1.897634, + "rtt_ns": 2040250, + "rtt_ms": 2.04025, "checkpoint": 0, - "vertex_from": "640", - "timestamp": "2025-11-27T01:21:47.9098987Z" + "vertex_from": "56", + "timestamp": "2025-11-27T04:01:46.220515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333876, - "rtt_ms": 1.333876, + "rtt_ns": 1566083, + "rtt_ms": 1.566083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:47.9099647Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:46.221076-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1254165, - "rtt_ms": 1.254165, + "operation": "add_edge", + "rtt_ns": 1721875, + "rtt_ms": 1.721875, "checkpoint": 0, - "vertex_from": "176", - "timestamp": "2025-11-27T01:21:47.910004669Z" + "vertex_from": "0", + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:46.221116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225486, - "rtt_ms": 1.225486, + "rtt_ns": 1307167, + "rtt_ms": 1.307167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:47.910099769Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.221193-08:00" }, { "operation": "add_edge", - "rtt_ns": 769867, - "rtt_ms": 0.769867, + "rtt_ns": 1513084, + "rtt_ms": 1.513084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:47.910296888Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:46.221358-08:00" }, { "operation": "add_edge", - "rtt_ns": 741748, - "rtt_ms": 0.741748, + "rtt_ns": 1585708, + "rtt_ms": 1.585708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:47.910435998Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.221695-08:00" }, { "operation": "add_edge", - "rtt_ns": 835817, - "rtt_ms": 0.835817, + "rtt_ns": 1603291, + "rtt_ms": 1.603291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:47.910512918Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:46.221753-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2547502, - "rtt_ms": 2.547502, + "operation": "add_edge", + "rtt_ns": 1976167, + "rtt_ms": 1.976167, "checkpoint": 0, - "vertex_from": "514", - "timestamp": "2025-11-27T01:21:47.910535388Z" + "vertex_from": "0", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:46.221766-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 531918, - "rtt_ms": 0.531918, + "operation": "add_edge", + "rtt_ns": 1508167, + "rtt_ms": 1.508167, "checkpoint": 0, - "vertex_from": "644", - "timestamp": "2025-11-27T01:21:47.910635547Z" + "vertex_from": "0", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:46.221798-08:00" }, { "operation": "add_edge", - "rtt_ns": 789177, - "rtt_ms": 0.789177, + "rtt_ns": 1701167, + "rtt_ms": 1.701167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:47.910688617Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:46.221949-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1476500, + "rtt_ms": 1.4765, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.221992-08:00" }, { "operation": "add_vertex", - "rtt_ns": 765657, - "rtt_ms": 0.765657, + "rtt_ns": 1535125, + "rtt_ms": 1.535125, "checkpoint": 0, - "vertex_from": "160", - "timestamp": "2025-11-27T01:21:47.910734927Z" + "vertex_from": "195", + "timestamp": "2025-11-27T04:01:46.222613-08:00" }, { - "operation": "add_edge", - "rtt_ns": 766958, - "rtt_ms": 0.766958, + "operation": "add_vertex", + "rtt_ns": 1522709, + "rtt_ms": 1.522709, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:47.910772147Z" + "vertex_from": "68", + "timestamp": "2025-11-27T04:01:46.222882-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2253353, - "rtt_ms": 2.253353, + "rtt_ns": 1780375, + "rtt_ms": 1.780375, "checkpoint": 0, - "vertex_from": "56", - "timestamp": "2025-11-27T01:21:47.911097946Z" + "vertex_from": "2", + "timestamp": "2025-11-27T04:01:46.222897-08:00" }, { "operation": "add_vertex", - "rtt_ns": 672267, - "rtt_ms": 0.672267, + "rtt_ns": 1714583, + "rtt_ms": 1.714583, "checkpoint": 0, "vertex_from": "832", - "timestamp": "2025-11-27T01:21:47.911186685Z" + "timestamp": "2025-11-27T04:01:46.222908-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2752291, - "rtt_ms": 2.752291, + "rtt_ns": 1338000, + "rtt_ms": 1.338, "checkpoint": 0, - "vertex_from": "513", - "timestamp": "2025-11-27T01:21:47.911251185Z" + "vertex_from": "356", + "timestamp": "2025-11-27T04:01:46.223092-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1369896, - "rtt_ms": 1.369896, + "rtt_ns": 1258625, + "rtt_ms": 1.258625, "checkpoint": 0, - "vertex_from": "195", - "timestamp": "2025-11-27T01:21:47.911668714Z" + "vertex_from": "5", + "timestamp": "2025-11-27T04:01:46.22321-08:00" }, { "operation": "add_vertex", - "rtt_ns": 979747, - "rtt_ms": 0.979747, + "rtt_ns": 1535875, + "rtt_ms": 1.535875, "checkpoint": 0, "vertex_from": "388", - "timestamp": "2025-11-27T01:21:47.911754414Z" + "timestamp": "2025-11-27T04:01:46.223233-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1350935, - "rtt_ms": 1.350935, + "rtt_ns": 1476291, + "rtt_ms": 1.476291, "checkpoint": 0, - "vertex_from": "2", - "timestamp": "2025-11-27T01:21:47.911789363Z" + "vertex_from": "58", + "timestamp": "2025-11-27T04:01:46.223245-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1231506, - "rtt_ms": 1.231506, + "rtt_ns": 1424750, + "rtt_ms": 1.42475, "checkpoint": 0, - "vertex_from": "68", - "timestamp": "2025-11-27T01:21:47.911921543Z" + "vertex_from": "790", + "timestamp": "2025-11-27T04:01:46.223418-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1393025, - "rtt_ms": 1.393025, + "operation": "add_vertex", + "rtt_ns": 1680209, + "rtt_ms": 1.680209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:47.911928783Z" + "vertex_from": "36", + "timestamp": "2025-11-27T04:01:46.223482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866864, - "rtt_ms": 1.866864, + "rtt_ns": 1640542, + "rtt_ms": 1.640542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:47.912602571Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:46.224253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004894, - "rtt_ms": 2.004894, + "rtt_ns": 1175208, + "rtt_ms": 1.175208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:47.912640711Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:46.224267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845454, - "rtt_ms": 1.845454, + "rtt_ns": 1482833, + "rtt_ms": 1.482833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:47.913096989Z" + "vertex_to": "2", + "timestamp": "2025-11-27T04:01:46.22438-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 681158, - "rtt_ms": 0.681158, + "operation": "add_edge", + "rtt_ns": 1147959, + "rtt_ms": 1.147959, "checkpoint": 0, - "vertex_from": "58", - "timestamp": "2025-11-27T01:21:47.913286729Z" + "vertex_from": "0", + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:46.224393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2310243, - "rtt_ms": 2.310243, + "rtt_ns": 1496166, + "rtt_ms": 1.496166, "checkpoint": 0, "vertex_from": "0", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:47.913497428Z" + "timestamp": "2025-11-27T04:01:46.224404-08:00" }, { "operation": "add_edge", - "rtt_ns": 2472322, - "rtt_ms": 2.472322, + "rtt_ns": 1802750, + "rtt_ms": 1.80275, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:47.913570568Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.224685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444312, - "rtt_ms": 2.444312, + "rtt_ns": 1487250, + "rtt_ms": 1.48725, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:47.914199006Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:01:46.224697-08:00" }, { "operation": "add_edge", - "rtt_ns": 2561182, - "rtt_ms": 2.561182, + "rtt_ns": 1228375, + "rtt_ms": 1.228375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:47.914230186Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2389972, - "rtt_ms": 2.389972, - "checkpoint": 0, - "vertex_from": "356", - "timestamp": "2025-11-27T01:21:47.914320885Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.22471-08:00" }, { "operation": "add_edge", - "rtt_ns": 2588892, - "rtt_ms": 2.588892, + "rtt_ns": 1602750, + "rtt_ms": 1.60275, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "2", - "timestamp": "2025-11-27T01:21:47.914378605Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:46.224836-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491332, - "rtt_ms": 2.491332, + "rtt_ns": 1669833, + "rtt_ms": 1.669833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:47.914413175Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:01:46.225088-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1801904, - "rtt_ms": 1.801904, + "rtt_ns": 1494875, + "rtt_ms": 1.494875, "checkpoint": 0, - "vertex_from": "36", - "timestamp": "2025-11-27T01:21:47.914444635Z" + "vertex_from": "9", + "timestamp": "2025-11-27T04:01:46.225889-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1437906, - "rtt_ms": 1.437906, + "rtt_ns": 1650000, + "rtt_ms": 1.65, "checkpoint": 0, - "vertex_from": "5", - "timestamp": "2025-11-27T01:21:47.914536675Z" + "vertex_from": "266", + "timestamp": "2025-11-27T04:01:46.225904-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1293326, - "rtt_ms": 1.293326, + "operation": "add_vertex", + "rtt_ns": 1652333, + "rtt_ms": 1.652333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:47.914580365Z" + "vertex_from": "645", + "timestamp": "2025-11-27T04:01:46.22592-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1025207, - "rtt_ms": 1.025207, + "rtt_ns": 1430208, + "rtt_ms": 1.430208, "checkpoint": 0, - "vertex_from": "266", - "timestamp": "2025-11-27T01:21:47.914597845Z" + "vertex_from": "194", + "timestamp": "2025-11-27T04:01:46.226129-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1112917, - "rtt_ms": 1.112917, + "rtt_ns": 1455208, + "rtt_ms": 1.455208, "checkpoint": 0, - "vertex_from": "790", - "timestamp": "2025-11-27T01:21:47.914614245Z" + "vertex_from": "264", + "timestamp": "2025-11-27T04:01:46.226166-08:00" }, { "operation": "add_vertex", - "rtt_ns": 764027, - "rtt_ms": 0.764027, + "rtt_ns": 1498083, + "rtt_ms": 1.498083, "checkpoint": 0, - "vertex_from": "645", - "timestamp": "2025-11-27T01:21:47.914965673Z" + "vertex_from": "896", + "timestamp": "2025-11-27T04:01:46.226184-08:00" }, { "operation": "add_vertex", - "rtt_ns": 792637, - "rtt_ms": 0.792637, + "rtt_ns": 1806916, + "rtt_ms": 1.806916, "checkpoint": 0, "vertex_from": "26", - "timestamp": "2025-11-27T01:21:47.915024543Z" + "timestamp": "2025-11-27T04:01:46.226188-08:00" }, { "operation": "add_vertex", - "rtt_ns": 764168, - "rtt_ms": 0.764168, + "rtt_ns": 1858666, + "rtt_ms": 1.858666, "checkpoint": 0, - "vertex_from": "9", - "timestamp": "2025-11-27T01:21:47.915145563Z" - }, - { - "operation": "add_edge", - "rtt_ns": 716318, - "rtt_ms": 0.716318, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:47.915161303Z" + "vertex_from": "352", + "timestamp": "2025-11-27T04:01:46.226266-08:00" }, { - "operation": "add_edge", - "rtt_ns": 878198, - "rtt_ms": 0.878198, + "operation": "add_vertex", + "rtt_ns": 1463333, + "rtt_ms": 1.463333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:47.915199363Z" + "vertex_from": "3", + "timestamp": "2025-11-27T04:01:46.2263-08:00" }, { "operation": "add_vertex", - "rtt_ns": 803778, - "rtt_ms": 0.803778, + "rtt_ns": 1531917, + "rtt_ms": 1.531917, "checkpoint": 0, - "vertex_from": "352", - "timestamp": "2025-11-27T01:21:47.915218963Z" + "vertex_from": "642", + "timestamp": "2025-11-27T04:01:46.226626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925113, - "rtt_ms": 1.925113, + "rtt_ns": 890792, + "rtt_ms": 0.890792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "790", - "timestamp": "2025-11-27T01:21:47.916539878Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:46.227075-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2046623, - "rtt_ms": 2.046623, + "operation": "add_edge", + "rtt_ns": 1243417, + "rtt_ms": 1.243417, "checkpoint": 0, - "vertex_from": "896", - "timestamp": "2025-11-27T01:21:47.916630688Z" + "vertex_from": "0", + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:46.227148-08:00" }, { "operation": "add_edge", - "rtt_ns": 2439992, - "rtt_ms": 2.439992, + "rtt_ns": 1994792, + "rtt_ms": 1.994792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:47.917038307Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:46.228124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2677941, - "rtt_ms": 2.677941, + "rtt_ns": 2240750, + "rtt_ms": 2.24075, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "5", - "timestamp": "2025-11-27T01:21:47.917215146Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:01:46.22813-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134193, - "rtt_ms": 2.134193, + "rtt_ns": 1882666, + "rtt_ms": 1.882666, "checkpoint": 0, "vertex_from": "0", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:47.917353526Z" + "timestamp": "2025-11-27T04:01:46.228149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2407022, - "rtt_ms": 2.407022, + "rtt_ns": 2240708, + "rtt_ms": 2.240708, "checkpoint": 0, "vertex_from": "0", "vertex_to": "645", - "timestamp": "2025-11-27T01:21:47.917373205Z" + "timestamp": "2025-11-27T04:01:46.228161-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1997125, + "rtt_ms": 1.997125, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:46.228163-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2210292, - "rtt_ms": 2.210292, + "rtt_ns": 1267667, + "rtt_ms": 1.267667, "checkpoint": 0, - "vertex_from": "194", - "timestamp": "2025-11-27T01:21:47.917401025Z" + "vertex_from": "962", + "timestamp": "2025-11-27T04:01:46.228345-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2200802, - "rtt_ms": 2.200802, + "rtt_ns": 1212375, + "rtt_ms": 1.212375, "checkpoint": 0, - "vertex_from": "264", - "timestamp": "2025-11-27T01:21:47.917402705Z" + "vertex_from": "130", + "timestamp": "2025-11-27T04:01:46.228361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2264692, - "rtt_ms": 2.264692, + "rtt_ns": 2187958, + "rtt_ms": 2.187958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "9", - "timestamp": "2025-11-27T01:21:47.917437695Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:46.228376-08:00" }, { "operation": "add_edge", - "rtt_ns": 2481492, - "rtt_ms": 2.481492, + "rtt_ns": 2218084, + "rtt_ms": 2.218084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:47.917506525Z" + "vertex_to": "3", + "timestamp": "2025-11-27T04:01:46.228519-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 927237, - "rtt_ms": 0.927237, + "operation": "add_edge", + "rtt_ns": 1905875, + "rtt_ms": 1.905875, "checkpoint": 0, - "vertex_from": "962", - "timestamp": "2025-11-27T01:21:47.918146173Z" + "vertex_from": "0", + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:46.228533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532065, - "rtt_ms": 1.532065, + "rtt_ns": 1285500, + "rtt_ms": 1.2855, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:47.918163403Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:46.229631-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1629135, - "rtt_ms": 1.629135, + "rtt_ns": 1481500, + "rtt_ms": 1.4815, "checkpoint": 0, - "vertex_from": "3", - "timestamp": "2025-11-27T01:21:47.918172723Z" + "vertex_from": "944", + "timestamp": "2025-11-27T04:01:46.229633-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1115017, - "rtt_ms": 1.115017, + "operation": "add_vertex", + "rtt_ns": 1309375, + "rtt_ms": 1.309375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:47.918516392Z" + "vertex_from": "45", + "timestamp": "2025-11-27T04:01:46.229686-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1559104, - "rtt_ms": 1.559104, + "rtt_ns": 1528084, + "rtt_ms": 1.528084, "checkpoint": 0, - "vertex_from": "642", - "timestamp": "2025-11-27T01:21:47.918601081Z" + "vertex_from": "28", + "timestamp": "2025-11-27T04:01:46.22969-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1412415, - "rtt_ms": 1.412415, + "rtt_ns": 1525167, + "rtt_ms": 1.525167, "checkpoint": 0, - "vertex_from": "130", - "timestamp": "2025-11-27T01:21:47.918768171Z" + "vertex_from": "192", + "timestamp": "2025-11-27T04:01:46.229691-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1042056, - "rtt_ms": 1.042056, + "rtt_ns": 1262167, + "rtt_ms": 1.262167, "checkpoint": 0, - "vertex_from": "28", - "timestamp": "2025-11-27T01:21:47.919210029Z" + "vertex_from": "321", + "timestamp": "2025-11-27T04:01:46.229783-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2764261, - "rtt_ms": 2.764261, + "rtt_ns": 1310500, + "rtt_ms": 1.3105, "checkpoint": 0, - "vertex_from": "277", - "timestamp": "2025-11-27T01:21:47.920140716Z" + "vertex_from": "42", + "timestamp": "2025-11-27T04:01:46.229845-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2040093, - "rtt_ms": 2.040093, + "operation": "add_vertex", + "rtt_ns": 1731458, + "rtt_ms": 1.731458, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "3", - "timestamp": "2025-11-27T01:21:47.920213206Z" + "vertex_from": "67", + "timestamp": "2025-11-27T04:01:46.229863-08:00" }, { "operation": "add_edge", - "rtt_ns": 2812181, - "rtt_ms": 2.812181, + "rtt_ns": 1502209, + "rtt_ms": 1.502209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:47.920215276Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:46.229864-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2085053, - "rtt_ms": 2.085053, + "operation": "add_vertex", + "rtt_ns": 1849750, + "rtt_ms": 1.84975, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:47.920232026Z" + "vertex_from": "277", + "timestamp": "2025-11-27T04:01:46.229979-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2722051, - "rtt_ms": 2.722051, + "rtt_ns": 1361417, + "rtt_ms": 1.361417, "checkpoint": 0, - "vertex_from": "944", - "timestamp": "2025-11-27T01:21:47.920233926Z" + "vertex_from": "452", + "timestamp": "2025-11-27T04:01:46.230995-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1821624, - "rtt_ms": 1.821624, + "rtt_ns": 1878583, + "rtt_ms": 1.878583, "checkpoint": 0, - "vertex_from": "192", - "timestamp": "2025-11-27T01:21:47.920343306Z" + "vertex_from": "421", + "timestamp": "2025-11-27T04:01:46.231744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2254113, - "rtt_ms": 2.254113, + "rtt_ns": 1977000, + "rtt_ms": 1.977, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:47.920855484Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:46.231761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334362, - "rtt_ms": 2.334362, + "rtt_ns": 2090875, + "rtt_ms": 2.090875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:47.921102883Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:46.231777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894234, - "rtt_ms": 1.894234, + "rtt_ns": 1927458, + "rtt_ms": 1.927458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "28", - "timestamp": "2025-11-27T01:21:47.921105003Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:46.231907-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 907707, - "rtt_ms": 0.907707, + "operation": "add_edge", + "rtt_ns": 2191459, + "rtt_ms": 2.191459, "checkpoint": 0, - "vertex_from": "321", - "timestamp": "2025-11-27T01:21:47.921126493Z" + "vertex_from": "0", + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:46.232037-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 3687618, - "rtt_ms": 3.687618, + "operation": "add_edge", + "rtt_ns": 2407750, + "rtt_ms": 2.40775, "checkpoint": 0, - "vertex_from": "67", - "timestamp": "2025-11-27T01:21:47.921127283Z" + "vertex_from": "0", + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:46.232041-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 936257, - "rtt_ms": 0.936257, + "operation": "add_edge", + "rtt_ns": 2405917, + "rtt_ms": 2.405917, "checkpoint": 0, - "vertex_from": "45", - "timestamp": "2025-11-27T01:21:47.921151713Z" + "vertex_from": "0", + "vertex_to": "28", + "timestamp": "2025-11-27T04:01:46.232097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012797, - "rtt_ms": 1.012797, + "rtt_ns": 2239208, + "rtt_ms": 2.239208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:47.921154043Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:46.232102-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1633735, - "rtt_ms": 1.633735, + "operation": "add_edge", + "rtt_ns": 2411625, + "rtt_ms": 2.411625, "checkpoint": 0, - "vertex_from": "42", - "timestamp": "2025-11-27T01:21:47.921867771Z" + "vertex_from": "0", + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.232103-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135633, - "rtt_ms": 2.135633, + "rtt_ns": 1960250, + "rtt_ms": 1.96025, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:47.922370149Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:46.232956-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1560075, - "rtt_ms": 1.560075, + "rtt_ns": 1821958, + "rtt_ms": 1.821958, "checkpoint": 0, - "vertex_from": "452", - "timestamp": "2025-11-27T01:21:47.922417789Z" + "vertex_from": "668", + "timestamp": "2025-11-27T04:01:46.233601-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1377536, - "rtt_ms": 1.377536, + "rtt_ns": 1581083, + "rtt_ms": 1.581083, "checkpoint": 0, - "vertex_from": "11", - "timestamp": "2025-11-27T01:21:47.922484339Z" + "vertex_from": "48", + "timestamp": "2025-11-27T04:01:46.233619-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2451822, - "rtt_ms": 2.451822, + "operation": "add_vertex", + "rtt_ns": 1536958, + "rtt_ms": 1.536958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:47.922795608Z" + "vertex_from": "769", + "timestamp": "2025-11-27T04:01:46.233635-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2236603, - "rtt_ms": 2.236603, + "rtt_ns": 1891375, + "rtt_ms": 1.891375, "checkpoint": 0, - "vertex_from": "421", - "timestamp": "2025-11-27T01:21:47.923341016Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2310683, - "rtt_ms": 2.310683, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:47.923462656Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2355403, - "rtt_ms": 2.355403, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:47.923482946Z" + "vertex_from": "11", + "timestamp": "2025-11-27T04:01:46.233653-08:00" }, { "operation": "add_vertex", - "rtt_ns": 743797, - "rtt_ms": 0.743797, + "rtt_ns": 1761042, + "rtt_ms": 1.761042, "checkpoint": 0, - "vertex_from": "48", - "timestamp": "2025-11-27T01:21:47.923542165Z" + "vertex_from": "349", + "timestamp": "2025-11-27T04:01:46.233668-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2489752, - "rtt_ms": 2.489752, + "rtt_ns": 1752791, + "rtt_ms": 1.752791, "checkpoint": 0, - "vertex_from": "668", - "timestamp": "2025-11-27T01:21:47.923646485Z" + "vertex_from": "583", + "timestamp": "2025-11-27T04:01:46.23386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904114, - "rtt_ms": 1.904114, + "rtt_ns": 2132333, + "rtt_ms": 2.132333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:47.923772155Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:01:46.233876-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3094790, - "rtt_ms": 3.09479, + "operation": "add_vertex", + "rtt_ns": 1777459, + "rtt_ms": 1.777459, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:47.924221753Z" + "vertex_from": "259", + "timestamp": "2025-11-27T04:01:46.233882-08:00" }, { "operation": "add_vertex", - "rtt_ns": 803837, - "rtt_ms": 0.803837, + "rtt_ns": 1850125, + "rtt_ms": 1.850125, "checkpoint": 0, - "vertex_from": "769", - "timestamp": "2025-11-27T01:21:47.924288793Z" + "vertex_from": "834", + "timestamp": "2025-11-27T04:01:46.233892-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022843, - "rtt_ms": 2.022843, + "rtt_ns": 827292, + "rtt_ms": 0.827292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:47.924440912Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 679567, - "rtt_ms": 0.679567, - "checkpoint": 0, - "vertex_from": "259", - "timestamp": "2025-11-27T01:21:47.924453172Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:46.234429-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2154503, - "rtt_ms": 2.154503, + "rtt_ns": 1651167, + "rtt_ms": 1.651167, "checkpoint": 0, - "vertex_from": "349", - "timestamp": "2025-11-27T01:21:47.924527612Z" + "vertex_from": "809", + "timestamp": "2025-11-27T04:01:46.234608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063593, - "rtt_ms": 2.063593, + "rtt_ns": 1047875, + "rtt_ms": 1.047875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "11", - "timestamp": "2025-11-27T01:21:47.924548372Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:46.234931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215786, - "rtt_ms": 1.215786, + "rtt_ns": 1484958, + "rtt_ms": 1.484958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "421", - "timestamp": "2025-11-27T01:21:47.924557322Z" + "vertex_to": "349", + "timestamp": "2025-11-27T04:01:46.235154-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1268915, - "rtt_ms": 1.268915, - "checkpoint": 0, - "vertex_from": "834", - "timestamp": "2025-11-27T01:21:47.924734531Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1267856, - "rtt_ms": 1.267856, + "rtt_ns": 1406666, + "rtt_ms": 1.406666, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:47.924810411Z" + "vertex_from": "464", + "timestamp": "2025-11-27T04:01:46.235286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181236, - "rtt_ms": 1.181236, + "rtt_ns": 1692458, + "rtt_ms": 1.692458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "668", - "timestamp": "2025-11-27T01:21:47.924828181Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:46.235585-08:00" }, { "operation": "add_vertex", - "rtt_ns": 711178, - "rtt_ms": 0.711178, + "rtt_ns": 1178167, + "rtt_ms": 1.178167, "checkpoint": 0, - "vertex_from": "583", - "timestamp": "2025-11-27T01:21:47.924935521Z" + "vertex_from": "35", + "timestamp": "2025-11-27T04:01:46.235608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129967, - "rtt_ms": 1.129967, + "rtt_ns": 2044041, + "rtt_ms": 2.044041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:47.925583629Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1032837, - "rtt_ms": 1.032837, - "checkpoint": 0, - "vertex_from": "35", - "timestamp": "2025-11-27T01:21:47.925592649Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:01:46.235697-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1089676, - "rtt_ms": 1.089676, + "operation": "add_edge", + "rtt_ns": 1877667, + "rtt_ms": 1.877667, "checkpoint": 0, - "vertex_from": "464", - "timestamp": "2025-11-27T01:21:47.925639598Z" + "vertex_from": "0", + "vertex_to": "583", + "timestamp": "2025-11-27T04:01:46.235738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113786, - "rtt_ms": 1.113786, + "rtt_ns": 1475541, + "rtt_ms": 1.475541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "349", - "timestamp": "2025-11-27T01:21:47.925641868Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:01:46.236084-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1198976, - "rtt_ms": 1.198976, + "operation": "add_edge", + "rtt_ns": 2594167, + "rtt_ms": 2.594167, "checkpoint": 0, - "vertex_from": "809", - "timestamp": "2025-11-27T01:21:47.925642228Z" + "vertex_from": "0", + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.236213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359495, - "rtt_ms": 1.359495, + "rtt_ns": 2616541, + "rtt_ms": 2.616541, "checkpoint": 0, "vertex_from": "0", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:47.925648698Z" + "timestamp": "2025-11-27T04:01:46.236252-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1701794, - "rtt_ms": 1.701794, + "rtt_ns": 1587167, + "rtt_ms": 1.587167, "checkpoint": 0, "vertex_from": "577", - "timestamp": "2025-11-27T01:21:47.926532635Z" + "timestamp": "2025-11-27T04:01:46.236743-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251633, - "rtt_ms": 2.251633, + "rtt_ns": 1463125, + "rtt_ms": 1.463125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:47.926986634Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1401226, - "rtt_ms": 1.401226, - "checkpoint": 0, - "vertex_from": "890", - "timestamp": "2025-11-27T01:21:47.927060284Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:46.23675-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1441646, - "rtt_ms": 1.441646, + "rtt_ns": 1841209, + "rtt_ms": 1.841209, "checkpoint": 0, - "vertex_from": "453", - "timestamp": "2025-11-27T01:21:47.927085954Z" + "vertex_from": "533", + "timestamp": "2025-11-27T04:01:46.236773-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158673, - "rtt_ms": 2.158673, + "rtt_ns": 1260625, + "rtt_ms": 1.260625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "583", - "timestamp": "2025-11-27T01:21:47.927094654Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:46.236869-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2401542, - "rtt_ms": 2.401542, + "rtt_ns": 1203459, + "rtt_ms": 1.203459, "checkpoint": 0, - "vertex_from": "533", - "timestamp": "2025-11-27T01:21:47.927216643Z" + "vertex_from": "12", + "timestamp": "2025-11-27T04:01:46.237289-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2021953, - "rtt_ms": 2.021953, + "rtt_ns": 1765708, + "rtt_ms": 1.765708, "checkpoint": 0, "vertex_from": "258", - "timestamp": "2025-11-27T01:21:47.927610402Z" + "timestamp": "2025-11-27T04:01:46.237353-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2025543, - "rtt_ms": 2.025543, + "operation": "add_vertex", + "rtt_ns": 1613958, + "rtt_ms": 1.613958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:47.927618582Z" + "vertex_from": "890", + "timestamp": "2025-11-27T04:01:46.237354-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2005134, - "rtt_ms": 2.005134, + "operation": "add_vertex", + "rtt_ns": 1886208, + "rtt_ms": 1.886208, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:47.927645022Z" + "vertex_from": "453", + "timestamp": "2025-11-27T04:01:46.237587-08:00" }, { "operation": "add_vertex", - "rtt_ns": 678668, - "rtt_ms": 0.678668, + "rtt_ns": 1345334, + "rtt_ms": 1.345334, "checkpoint": 0, - "vertex_from": "12", - "timestamp": "2025-11-27T01:21:47.927669852Z" + "vertex_from": "532", + "timestamp": "2025-11-27T04:01:46.237599-08:00" }, { "operation": "add_vertex", - "rtt_ns": 772217, - "rtt_ms": 0.772217, + "rtt_ns": 1523084, + "rtt_ms": 1.523084, "checkpoint": 0, "vertex_from": "122", - "timestamp": "2025-11-27T01:21:47.927869741Z" + "timestamp": "2025-11-27T04:01:46.237739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615855, - "rtt_ms": 1.615855, + "rtt_ns": 1285833, + "rtt_ms": 1.285833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:47.92814907Z" + "timestamp": "2025-11-27T04:01:46.238029-08:00" }, { "operation": "add_edge", - "rtt_ns": 2534382, - "rtt_ms": 2.534382, + "rtt_ns": 1281416, + "rtt_ms": 1.281416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "809", - "timestamp": "2025-11-27T01:21:47.92817702Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 812407, - "rtt_ms": 0.812407, - "checkpoint": 0, - "vertex_from": "532", - "timestamp": "2025-11-27T01:21:47.928433619Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:46.238055-08:00" }, { "operation": "add_vertex", - "rtt_ns": 799407, - "rtt_ms": 0.799407, + "rtt_ns": 1783916, + "rtt_ms": 1.783916, "checkpoint": 0, "vertex_from": "648", - "timestamp": "2025-11-27T01:21:47.928446199Z" + "timestamp": "2025-11-27T04:01:46.238537-08:00" }, { "operation": "add_vertex", - "rtt_ns": 762058, - "rtt_ms": 0.762058, + "rtt_ns": 1689917, + "rtt_ms": 1.689917, "checkpoint": 0, - "vertex_from": "288", - "timestamp": "2025-11-27T01:21:47.928942208Z" + "vertex_from": "368", + "timestamp": "2025-11-27T04:01:46.23856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887344, - "rtt_ms": 1.887344, + "rtt_ns": 1221583, + "rtt_ms": 1.221583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:47.929104437Z" + "vertex_to": "890", + "timestamp": "2025-11-27T04:01:46.238576-08:00" }, { "operation": "add_edge", - "rtt_ns": 2069923, - "rtt_ms": 2.069923, + "rtt_ns": 1302917, + "rtt_ms": 1.302917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "890", - "timestamp": "2025-11-27T01:21:47.929130787Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:01:46.238592-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093293, - "rtt_ms": 2.093293, + "rtt_ns": 1553166, + "rtt_ms": 1.553166, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:47.929179757Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:46.238907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825104, - "rtt_ms": 1.825104, + "rtt_ns": 1267792, + "rtt_ms": 1.267792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:47.929436536Z" + "vertex_to": "122", + "timestamp": "2025-11-27T04:01:46.239008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927154, - "rtt_ms": 1.927154, + "rtt_ns": 1827083, + "rtt_ms": 1.827083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "12", - "timestamp": "2025-11-27T01:21:47.929597246Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:46.239427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744114, - "rtt_ms": 1.744114, + "rtt_ns": 1912917, + "rtt_ms": 1.912917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "122", - "timestamp": "2025-11-27T01:21:47.929614305Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:46.2395-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1517245, - "rtt_ms": 1.517245, + "rtt_ns": 1522458, + "rtt_ms": 1.522458, "checkpoint": 0, - "vertex_from": "368", - "timestamp": "2025-11-27T01:21:47.929668695Z" + "vertex_from": "288", + "timestamp": "2025-11-27T04:01:46.239553-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1257726, - "rtt_ms": 1.257726, + "operation": "add_vertex", + "rtt_ns": 1510542, + "rtt_ms": 1.510542, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:47.929691875Z" + "vertex_from": "323", + "timestamp": "2025-11-27T04:01:46.239568-08:00" }, { - "operation": "add_edge", - "rtt_ns": 869987, - "rtt_ms": 0.869987, + "operation": "add_vertex", + "rtt_ns": 1337708, + "rtt_ms": 1.337708, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:47.929812885Z" + "vertex_from": "96", + "timestamp": "2025-11-27T04:01:46.239915-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1513666, + "rtt_ms": 1.513666, + "checkpoint": 0, + "vertex_from": "354", + "timestamp": "2025-11-27T04:01:46.240108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373846, - "rtt_ms": 1.373846, + "rtt_ns": 1562667, + "rtt_ms": 1.562667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:47.929820555Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:46.240123-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 729458, - "rtt_ms": 0.729458, + "operation": "add_edge", + "rtt_ns": 1601041, + "rtt_ms": 1.601041, "checkpoint": 0, - "vertex_from": "520", - "timestamp": "2025-11-27T01:21:47.930170154Z" + "vertex_from": "0", + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:46.240138-08:00" }, { "operation": "add_vertex", - "rtt_ns": 799748, - "rtt_ms": 0.799748, + "rtt_ns": 1445791, + "rtt_ms": 1.445791, "checkpoint": 0, "vertex_from": "525", - "timestamp": "2025-11-27T01:21:47.930496133Z" + "timestamp": "2025-11-27T04:01:46.240947-08:00" }, { "operation": "add_edge", - "rtt_ns": 861648, - "rtt_ms": 0.861648, + "rtt_ns": 1389125, + "rtt_ms": 1.389125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:47.930530803Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.241305-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1978714, - "rtt_ms": 1.978714, + "rtt_ns": 2415459, + "rtt_ms": 2.415459, "checkpoint": 0, - "vertex_from": "354", - "timestamp": "2025-11-27T01:21:47.931164631Z" + "vertex_from": "520", + "timestamp": "2025-11-27T04:01:46.241323-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2120903, - "rtt_ms": 2.120903, + "rtt_ns": 2329750, + "rtt_ms": 2.32975, "checkpoint": 0, - "vertex_from": "323", - "timestamp": "2025-11-27T01:21:47.93122861Z" + "vertex_from": "97", + "timestamp": "2025-11-27T04:01:46.241339-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1639644, - "rtt_ms": 1.639644, + "rtt_ns": 1915375, + "rtt_ms": 1.915375, "checkpoint": 0, - "vertex_from": "97", - "timestamp": "2025-11-27T01:21:47.93123945Z" + "vertex_from": "848", + "timestamp": "2025-11-27T04:01:46.24136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070046, - "rtt_ms": 1.070046, + "rtt_ns": 1831209, + "rtt_ms": 1.831209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:47.93124075Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2117403, - "rtt_ms": 2.117403, - "checkpoint": 0, - "vertex_from": "96", - "timestamp": "2025-11-27T01:21:47.93125236Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:46.241399-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1491715, - "rtt_ms": 1.491715, + "operation": "add_edge", + "rtt_ns": 1893500, + "rtt_ms": 1.8935, "checkpoint": 0, - "vertex_from": "800", - "timestamp": "2025-11-27T01:21:47.93130731Z" + "vertex_from": "0", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.241447-08:00" }, { "operation": "add_vertex", - "rtt_ns": 787477, - "rtt_ms": 0.787477, + "rtt_ns": 1883041, + "rtt_ms": 1.883041, "checkpoint": 0, - "vertex_from": "612", - "timestamp": "2025-11-27T01:21:47.93132137Z" + "vertex_from": "785", + "timestamp": "2025-11-27T04:01:46.242022-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1522895, - "rtt_ms": 1.522895, + "operation": "add_edge", + "rtt_ns": 1417208, + "rtt_ms": 1.417208, "checkpoint": 0, - "vertex_from": "785", - "timestamp": "2025-11-27T01:21:47.93134655Z" + "vertex_from": "0", + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:46.242365-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1749795, - "rtt_ms": 1.749795, + "operation": "add_edge", + "rtt_ns": 1057708, + "rtt_ms": 1.057708, "checkpoint": 0, - "vertex_from": "848", - "timestamp": "2025-11-27T01:21:47.93136696Z" + "vertex_from": "0", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:46.242381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731514, - "rtt_ms": 1.731514, + "rtt_ns": 1327417, + "rtt_ms": 1.327417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:47.932228307Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:46.242666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484655, - "rtt_ms": 1.484655, + "rtt_ns": 2575875, + "rtt_ms": 2.575875, "checkpoint": 0, "vertex_from": "0", "vertex_to": "354", - "timestamp": "2025-11-27T01:21:47.932650496Z" + "timestamp": "2025-11-27T04:01:46.242684-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1455095, - "rtt_ms": 1.455095, + "rtt_ns": 1250500, + "rtt_ms": 1.2505, "checkpoint": 0, - "vertex_from": "140", - "timestamp": "2025-11-27T01:21:47.932704075Z" + "vertex_from": "139", + "timestamp": "2025-11-27T04:01:46.242699-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1676845, - "rtt_ms": 1.676845, + "operation": "add_vertex", + "rtt_ns": 1418875, + "rtt_ms": 1.418875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:47.932905775Z" + "vertex_from": "140", + "timestamp": "2025-11-27T04:01:46.242821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971503, - "rtt_ms": 1.971503, + "rtt_ns": 1620750, + "rtt_ms": 1.62075, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:47.933318553Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1168406, - "rtt_ms": 1.168406, - "checkpoint": 0, - "vertex_from": "139", - "timestamp": "2025-11-27T01:21:47.933400383Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:46.242981-08:00" }, { "operation": "add_vertex", - "rtt_ns": 794267, - "rtt_ms": 0.794267, + "rtt_ns": 3035917, + "rtt_ms": 3.035917, "checkpoint": 0, - "vertex_from": "610", - "timestamp": "2025-11-27T01:21:47.933449963Z" + "vertex_from": "800", + "timestamp": "2025-11-27T04:01:46.243162-08:00" }, { "operation": "add_vertex", - "rtt_ns": 713137, - "rtt_ms": 0.713137, + "rtt_ns": 2047292, + "rtt_ms": 2.047292, "checkpoint": 0, - "vertex_from": "523", - "timestamp": "2025-11-27T01:21:47.933623712Z" + "vertex_from": "612", + "timestamp": "2025-11-27T04:01:46.243353-08:00" }, { "operation": "add_edge", - "rtt_ns": 2531332, - "rtt_ms": 2.531332, + "rtt_ns": 1614750, + "rtt_ms": 1.61475, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:47.933784312Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:46.243637-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2503042, - "rtt_ms": 2.503042, + "operation": "add_vertex", + "rtt_ns": 1288083, + "rtt_ms": 1.288083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:47.933810882Z" + "vertex_from": "610", + "timestamp": "2025-11-27T04:01:46.243654-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2593432, - "rtt_ms": 2.593432, + "operation": "add_vertex", + "rtt_ns": 1393334, + "rtt_ms": 1.393334, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:47.933833552Z" + "vertex_from": "523", + "timestamp": "2025-11-27T04:01:46.243775-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2503122, - "rtt_ms": 2.503122, + "operation": "add_vertex", + "rtt_ns": 1492959, + "rtt_ms": 1.492959, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:47.933870692Z" + "vertex_from": "193", + "timestamp": "2025-11-27T04:01:46.244178-08:00" }, { "operation": "add_vertex", - "rtt_ns": 586418, - "rtt_ms": 0.586418, + "rtt_ns": 1211291, + "rtt_ms": 1.211291, "checkpoint": 0, - "vertex_from": "355", - "timestamp": "2025-11-27T01:21:47.933906941Z" + "vertex_from": "80", + "timestamp": "2025-11-27T04:01:46.244194-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2609221, - "rtt_ms": 2.609221, + "operation": "add_vertex", + "rtt_ns": 1542584, + "rtt_ms": 1.542584, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:47.933931431Z" + "vertex_from": "355", + "timestamp": "2025-11-27T04:01:46.24421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351906, - "rtt_ms": 1.351906, + "rtt_ns": 1617875, + "rtt_ms": 1.617875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:47.934056431Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:46.244317-08:00" }, { "operation": "add_edge", - "rtt_ns": 705448, - "rtt_ms": 0.705448, + "rtt_ns": 1699625, + "rtt_ms": 1.699625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:47.934155931Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:46.244521-08:00" }, { "operation": "add_edge", - "rtt_ns": 785978, - "rtt_ms": 0.785978, + "rtt_ns": 1708000, + "rtt_ms": 1.708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:47.934187341Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:46.244871-08:00" }, { "operation": "add_edge", - "rtt_ns": 763898, - "rtt_ms": 0.763898, + "rtt_ns": 1532458, + "rtt_ms": 1.532458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:47.93438806Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 712217, - "rtt_ms": 0.712217, - "checkpoint": 0, - "vertex_from": "193", - "timestamp": "2025-11-27T01:21:47.934499899Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:46.244885-08:00" }, { "operation": "add_vertex", - "rtt_ns": 678547, - "rtt_ms": 0.678547, + "rtt_ns": 1261791, + "rtt_ms": 1.261791, "checkpoint": 0, "vertex_from": "768", - "timestamp": "2025-11-27T01:21:47.934515349Z" + "timestamp": "2025-11-27T04:01:46.2449-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 707167, - "rtt_ms": 0.707167, + "operation": "add_edge", + "rtt_ns": 1393584, + "rtt_ms": 1.393584, "checkpoint": 0, - "vertex_from": "80", - "timestamp": "2025-11-27T01:21:47.934520039Z" + "vertex_from": "0", + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:46.245169-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 741327, - "rtt_ms": 0.741327, + "operation": "add_edge", + "rtt_ns": 1773375, + "rtt_ms": 1.773375, "checkpoint": 0, - "vertex_from": "99", - "timestamp": "2025-11-27T01:21:47.934613749Z" + "vertex_from": "0", + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:46.245427-08:00" }, { "operation": "add_edge", - "rtt_ns": 721138, - "rtt_ms": 0.721138, + "rtt_ns": 1428417, + "rtt_ms": 1.428417, "checkpoint": 0, "vertex_from": "0", "vertex_to": "355", - "timestamp": "2025-11-27T01:21:47.934628459Z" + "timestamp": "2025-11-27T04:01:46.245639-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 748768, - "rtt_ms": 0.748768, + "operation": "add_edge", + "rtt_ns": 1467708, + "rtt_ms": 1.467708, "checkpoint": 0, - "vertex_from": "76", - "timestamp": "2025-11-27T01:21:47.934684229Z" + "vertex_from": "0", + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.245662-08:00" }, { "operation": "add_vertex", - "rtt_ns": 658538, - "rtt_ms": 0.658538, + "rtt_ns": 1632166, + "rtt_ms": 1.632166, "checkpoint": 0, - "vertex_from": "262", - "timestamp": "2025-11-27T01:21:47.934717829Z" + "vertex_from": "99", + "timestamp": "2025-11-27T04:01:46.245951-08:00" }, { "operation": "add_vertex", - "rtt_ns": 661048, - "rtt_ms": 0.661048, + "rtt_ns": 1486500, + "rtt_ms": 1.4865, "checkpoint": 0, - "vertex_from": "713", - "timestamp": "2025-11-27T01:21:47.934852648Z" + "vertex_from": "76", + "timestamp": "2025-11-27T04:01:46.246009-08:00" }, { "operation": "add_vertex", - "rtt_ns": 717287, - "rtt_ms": 0.717287, + "rtt_ns": 1495000, + "rtt_ms": 1.495, "checkpoint": 0, - "vertex_from": "282", - "timestamp": "2025-11-27T01:21:47.934876578Z" + "vertex_from": "262", + "timestamp": "2025-11-27T04:01:46.246367-08:00" }, { "operation": "add_vertex", - "rtt_ns": 700757, - "rtt_ms": 0.700757, + "rtt_ns": 1377750, + "rtt_ms": 1.37775, "checkpoint": 0, - "vertex_from": "888", - "timestamp": "2025-11-27T01:21:47.935092227Z" + "vertex_from": "713", + "timestamp": "2025-11-27T04:01:46.246548-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003444, - "rtt_ms": 2.003444, + "rtt_ns": 1883500, + "rtt_ms": 1.8835, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:47.936523903Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.246783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2090624, - "rtt_ms": 2.090624, + "rtt_ns": 2622750, + "rtt_ms": 2.62275, "checkpoint": 0, "vertex_from": "0", "vertex_to": "193", - "timestamp": "2025-11-27T01:21:47.936591383Z" + "timestamp": "2025-11-27T04:01:46.246801-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2104164, - "rtt_ms": 2.104164, + "operation": "add_vertex", + "rtt_ns": 2208791, + "rtt_ms": 2.208791, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:47.936619953Z" + "vertex_from": "282", + "timestamp": "2025-11-27T04:01:46.247095-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2023683, - "rtt_ms": 2.023683, + "rtt_ns": 1512250, + "rtt_ms": 1.51225, "checkpoint": 0, - "vertex_from": "340", - "timestamp": "2025-11-27T01:21:47.936656912Z" + "vertex_from": "588", + "timestamp": "2025-11-27T04:01:46.247177-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107363, - "rtt_ms": 2.107363, + "rtt_ns": 1417667, + "rtt_ms": 1.417667, "checkpoint": 0, "vertex_from": "0", "vertex_to": "99", - "timestamp": "2025-11-27T01:21:47.936721482Z" + "timestamp": "2025-11-27T04:01:46.247369-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093933, - "rtt_ms": 2.093933, + "rtt_ns": 1719000, + "rtt_ms": 1.719, "checkpoint": 0, "vertex_from": "0", "vertex_to": "76", - "timestamp": "2025-11-27T01:21:47.936778632Z" + "timestamp": "2025-11-27T04:01:46.247729-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2094433, - "rtt_ms": 2.094433, + "operation": "add_vertex", + "rtt_ns": 2128042, + "rtt_ms": 2.128042, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:47.936812822Z" + "vertex_from": "340", + "timestamp": "2025-11-27T04:01:46.247771-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2291973, - "rtt_ms": 2.291973, + "operation": "add_vertex", + "rtt_ns": 2406958, + "rtt_ms": 2.406958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "888", - "timestamp": "2025-11-27T01:21:47.93738471Z" + "vertex_from": "888", + "timestamp": "2025-11-27T04:01:46.247835-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1663541, + "rtt_ms": 1.663541, + "checkpoint": 0, + "vertex_from": "547", + "timestamp": "2025-11-27T04:01:46.248448-08:00" }, { "operation": "add_edge", - "rtt_ns": 2540892, - "rtt_ms": 2.540892, + "rtt_ns": 2100167, + "rtt_ms": 2.100167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:47.9374178Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:46.248467-08:00" }, { "operation": "add_vertex", - "rtt_ns": 883477, - "rtt_ms": 0.883477, + "rtt_ns": 1688667, + "rtt_ms": 1.688667, "checkpoint": 0, - "vertex_from": "547", - "timestamp": "2025-11-27T01:21:47.93747748Z" + "vertex_from": "107", + "timestamp": "2025-11-27T04:01:46.24849-08:00" }, { "operation": "add_edge", - "rtt_ns": 3096170, - "rtt_ms": 3.09617, + "rtt_ns": 1996250, + "rtt_ms": 1.99625, "checkpoint": 0, "vertex_from": "0", "vertex_to": "713", - "timestamp": "2025-11-27T01:21:47.937949328Z" + "timestamp": "2025-11-27T04:01:46.248544-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1443375, - "rtt_ms": 1.443375, + "operation": "add_edge", + "rtt_ns": 2273916, + "rtt_ms": 2.273916, "checkpoint": 0, - "vertex_from": "588", - "timestamp": "2025-11-27T01:21:47.937970838Z" + "vertex_from": "0", + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:46.249451-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1634666, + "rtt_ms": 1.634666, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "888", + "timestamp": "2025-11-27T04:01:46.24947-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1347536, - "rtt_ms": 1.347536, + "rtt_ns": 2118000, + "rtt_ms": 2.118, "checkpoint": 0, "vertex_from": "24", - "timestamp": "2025-11-27T01:21:47.938071628Z" + "timestamp": "2025-11-27T04:01:46.249488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448206, - "rtt_ms": 1.448206, + "rtt_ns": 1989584, + "rtt_ms": 1.989584, "checkpoint": 0, "vertex_from": "0", "vertex_to": "340", - "timestamp": "2025-11-27T01:21:47.938105678Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1512135, - "rtt_ms": 1.512135, - "checkpoint": 0, - "vertex_from": "107", - "timestamp": "2025-11-27T01:21:47.938138068Z" + "timestamp": "2025-11-27T04:01:46.249762-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1017867, - "rtt_ms": 1.017867, + "rtt_ns": 2049917, + "rtt_ms": 2.049917, "checkpoint": 0, - "vertex_from": "369", - "timestamp": "2025-11-27T01:21:47.938437747Z" + "vertex_from": "272", + "timestamp": "2025-11-27T04:01:46.24978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004447, - "rtt_ms": 1.004447, + "rtt_ns": 2699291, + "rtt_ms": 2.699291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:47.938482477Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:46.249795-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1817484, - "rtt_ms": 1.817484, + "rtt_ns": 1706083, + "rtt_ms": 1.706083, "checkpoint": 0, - "vertex_from": "276", - "timestamp": "2025-11-27T01:21:47.938635056Z" + "vertex_from": "270", + "timestamp": "2025-11-27T04:01:46.250252-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1344906, - "rtt_ms": 1.344906, + "operation": "add_edge", + "rtt_ns": 1820250, + "rtt_ms": 1.82025, "checkpoint": 0, - "vertex_from": "270", - "timestamp": "2025-11-27T01:21:47.938731706Z" + "vertex_from": "0", + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:46.250268-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1974574, - "rtt_ms": 1.974574, + "rtt_ns": 1871791, + "rtt_ms": 1.871791, "checkpoint": 0, - "vertex_from": "272", - "timestamp": "2025-11-27T01:21:47.938755586Z" + "vertex_from": "276", + "timestamp": "2025-11-27T04:01:46.250341-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 811878, - "rtt_ms": 0.811878, + "operation": "add_edge", + "rtt_ns": 2259208, + "rtt_ms": 2.259208, "checkpoint": 0, - "vertex_from": "112", - "timestamp": "2025-11-27T01:21:47.938764916Z" + "vertex_from": "0", + "vertex_to": "107", + "timestamp": "2025-11-27T04:01:46.250749-08:00" }, { "operation": "add_vertex", - "rtt_ns": 702018, - "rtt_ms": 0.702018, + "rtt_ns": 1282334, + "rtt_ms": 1.282334, "checkpoint": 0, "vertex_from": "370", - "timestamp": "2025-11-27T01:21:47.938811126Z" + "timestamp": "2025-11-27T04:01:46.251046-08:00" }, { "operation": "add_edge", - "rtt_ns": 908757, - "rtt_ms": 0.908757, + "rtt_ns": 1280459, + "rtt_ms": 1.280459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:47.938880165Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.25106-08:00" }, { "operation": "add_vertex", - "rtt_ns": 653718, - "rtt_ms": 0.653718, + "rtt_ns": 1277292, + "rtt_ms": 1.277292, "checkpoint": 0, "vertex_from": "298", - "timestamp": "2025-11-27T01:21:47.939141005Z" + "timestamp": "2025-11-27T04:01:46.251075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385446, - "rtt_ms": 1.385446, + "rtt_ns": 1602000, + "rtt_ms": 1.602, "checkpoint": 0, "vertex_from": "0", "vertex_to": "24", - "timestamp": "2025-11-27T01:21:47.939457524Z" + "timestamp": "2025-11-27T04:01:46.251091-08:00" }, { "operation": "add_vertex", - "rtt_ns": 618568, - "rtt_ms": 0.618568, - "checkpoint": 0, - "vertex_from": "13", - "timestamp": "2025-11-27T01:21:47.939502033Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2042213, - "rtt_ms": 2.042213, + "rtt_ns": 2000083, + "rtt_ms": 2.000083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "107", - "timestamp": "2025-11-27T01:21:47.940181001Z" + "vertex_from": "112", + "timestamp": "2025-11-27T04:01:46.251472-08:00" }, { "operation": "add_vertex", - "rtt_ns": 790057, - "rtt_ms": 0.790057, + "rtt_ns": 2039750, + "rtt_ms": 2.03975, "checkpoint": 0, - "vertex_from": "135", - "timestamp": "2025-11-27T01:21:47.940251181Z" + "vertex_from": "369", + "timestamp": "2025-11-27T04:01:46.251492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837794, - "rtt_ms": 1.837794, + "rtt_ns": 1881958, + "rtt_ms": 1.881958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "369", - "timestamp": "2025-11-27T01:21:47.940276021Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:46.252223-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1549505, - "rtt_ms": 1.549505, + "operation": "add_vertex", + "rtt_ns": 1815250, + "rtt_ms": 1.81525, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:47.940305411Z" + "vertex_from": "135", + "timestamp": "2025-11-27T04:01:46.252566-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1677444, - "rtt_ms": 1.677444, + "operation": "add_vertex", + "rtt_ns": 2478958, + "rtt_ms": 2.478958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:47.94040978Z" + "vertex_from": "13", + "timestamp": "2025-11-27T04:01:46.252749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791434, - "rtt_ms": 1.791434, + "rtt_ns": 2586917, + "rtt_ms": 2.586917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:47.94042715Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:46.252839-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1703914, - "rtt_ms": 1.703914, + "operation": "add_vertex", + "rtt_ns": 2354542, + "rtt_ms": 2.354542, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "370", - "timestamp": "2025-11-27T01:21:47.94051558Z" + "vertex_from": "652", + "timestamp": "2025-11-27T04:01:46.253416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2234692, - "rtt_ms": 2.234692, + "rtt_ns": 2386958, + "rtt_ms": 2.386958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:47.940999968Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:01:46.253433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525295, - "rtt_ms": 1.525295, + "rtt_ns": 2889291, + "rtt_ms": 2.889291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "13", - "timestamp": "2025-11-27T01:21:47.941027828Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:46.253965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039183, - "rtt_ms": 2.039183, + "rtt_ns": 2510791, + "rtt_ms": 2.510791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:47.941181008Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.253983-08:00" }, { "operation": "add_edge", - "rtt_ns": 962517, - "rtt_ms": 0.962517, + "rtt_ns": 2508625, + "rtt_ms": 2.508625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:47.941214188Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:01:46.254001-08:00" }, { "operation": "add_vertex", - "rtt_ns": 937407, - "rtt_ms": 0.937407, + "rtt_ns": 3146417, + "rtt_ms": 3.146417, "checkpoint": 0, "vertex_from": "275", - "timestamp": "2025-11-27T01:21:47.941217168Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1125586, - "rtt_ms": 1.125586, - "checkpoint": 0, - "vertex_from": "652", - "timestamp": "2025-11-27T01:21:47.941309087Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1047097, - "rtt_ms": 1.047097, - "checkpoint": 0, - "vertex_from": "405", - "timestamp": "2025-11-27T01:21:47.942086385Z" + "timestamp": "2025-11-27T04:01:46.254238-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1970373, - "rtt_ms": 1.970373, + "rtt_ns": 2032000, + "rtt_ms": 2.032, "checkpoint": 0, "vertex_from": "922", - "timestamp": "2025-11-27T01:21:47.942277894Z" + "timestamp": "2025-11-27T04:01:46.254256-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1250226, - "rtt_ms": 1.250226, + "operation": "add_edge", + "rtt_ns": 1702708, + "rtt_ms": 1.702708, "checkpoint": 0, - "vertex_from": "529", - "timestamp": "2025-11-27T01:21:47.942434404Z" + "vertex_from": "0", + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:46.254269-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1313135, - "rtt_ms": 1.313135, + "rtt_ns": 1890000, + "rtt_ms": 1.89, "checkpoint": 0, - "vertex_from": "656", - "timestamp": "2025-11-27T01:21:47.942531523Z" + "vertex_from": "73", + "timestamp": "2025-11-27T04:01:46.25473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245396, - "rtt_ms": 1.245396, + "rtt_ns": 1996334, + "rtt_ms": 1.996334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:47.942554813Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:01:46.254745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385765, - "rtt_ms": 1.385765, + "rtt_ns": 1665792, + "rtt_ms": 1.665792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:47.942603473Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:46.255082-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2429692, - "rtt_ms": 2.429692, + "rtt_ns": 1732709, + "rtt_ms": 1.732709, "checkpoint": 0, - "vertex_from": "73", - "timestamp": "2025-11-27T01:21:47.942843562Z" + "vertex_from": "600", + "timestamp": "2025-11-27T04:01:46.255168-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2341262, - "rtt_ms": 2.341262, + "rtt_ns": 1643666, + "rtt_ms": 1.643666, "checkpoint": 0, - "vertex_from": "449", - "timestamp": "2025-11-27T01:21:47.942861422Z" + "vertex_from": "405", + "timestamp": "2025-11-27T04:01:46.255645-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1423292, + "rtt_ms": 1.423292, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:46.255661-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2488692, - "rtt_ms": 2.488692, + "rtt_ns": 1405208, + "rtt_ms": 1.405208, "checkpoint": 0, - "vertex_from": "600", - "timestamp": "2025-11-27T01:21:47.942919312Z" + "vertex_from": "529", + "timestamp": "2025-11-27T04:01:46.255678-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1946314, - "rtt_ms": 1.946314, + "rtt_ns": 1903916, + "rtt_ms": 1.903916, "checkpoint": 0, "vertex_from": "901", - "timestamp": "2025-11-27T01:21:47.942949872Z" + "timestamp": "2025-11-27T04:01:46.255887-08:00" }, { "operation": "add_vertex", - "rtt_ns": 721288, - "rtt_ms": 0.721288, + "rtt_ns": 1971417, + "rtt_ms": 1.971417, "checkpoint": 0, - "vertex_from": "522", - "timestamp": "2025-11-27T01:21:47.943327081Z" + "vertex_from": "449", + "timestamp": "2025-11-27T04:01:46.255937-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1783814, - "rtt_ms": 1.783814, + "operation": "add_vertex", + "rtt_ns": 1212125, + "rtt_ms": 1.212125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "922", - "timestamp": "2025-11-27T01:21:47.944062268Z" + "vertex_from": "656", + "timestamp": "2025-11-27T04:01:46.255958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608425, - "rtt_ms": 1.608425, + "rtt_ns": 1707167, + "rtt_ms": 1.707167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:47.944140828Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:01:46.255964-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081123, - "rtt_ms": 2.081123, + "rtt_ns": 1502500, + "rtt_ms": 1.5025, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:47.944168218Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:46.256233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439365, - "rtt_ms": 1.439365, + "rtt_ns": 1720250, + "rtt_ms": 1.72025, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:47.944301387Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:46.256889-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1864824, - "rtt_ms": 1.864824, + "rtt_ns": 1827333, + "rtt_ms": 1.827333, "checkpoint": 0, "vertex_from": "148", - "timestamp": "2025-11-27T01:21:47.944422737Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 674148, - "rtt_ms": 0.674148, - "checkpoint": 0, - "vertex_from": "801", - "timestamp": "2025-11-27T01:21:47.944816846Z" + "timestamp": "2025-11-27T04:01:46.25691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948574, - "rtt_ms": 1.948574, + "rtt_ns": 1299833, + "rtt_ms": 1.299833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:47.944868576Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:46.256979-08:00" }, { "operation": "add_vertex", - "rtt_ns": 596089, - "rtt_ms": 0.596089, + "rtt_ns": 1524459, + "rtt_ms": 1.524459, "checkpoint": 0, - "vertex_from": "300", - "timestamp": "2025-11-27T01:21:47.944898846Z" + "vertex_from": "522", + "timestamp": "2025-11-27T04:01:46.257187-08:00" }, { "operation": "add_edge", - "rtt_ns": 2514821, - "rtt_ms": 2.514821, + "rtt_ns": 1558209, + "rtt_ms": 1.558209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:47.944949575Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:46.257203-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1721804, - "rtt_ms": 1.721804, + "operation": "add_vertex", + "rtt_ns": 1372333, + "rtt_ms": 1.372333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:47.945049365Z" + "vertex_from": "278", + "timestamp": "2025-11-27T04:01:46.257337-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428972, - "rtt_ms": 2.428972, + "rtt_ns": 1649958, + "rtt_ms": 1.649958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:47.945273434Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 648048, - "rtt_ms": 0.648048, - "checkpoint": 0, - "vertex_from": "285", - "timestamp": "2025-11-27T01:21:47.945600513Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.257608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2832531, - "rtt_ms": 2.832531, + "rtt_ns": 1760000, + "rtt_ms": 1.76, "checkpoint": 0, "vertex_from": "0", "vertex_to": "901", - "timestamp": "2025-11-27T01:21:47.945782813Z" + "timestamp": "2025-11-27T04:01:46.257648-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1746415, - "rtt_ms": 1.746415, + "rtt_ns": 1737625, + "rtt_ms": 1.737625, "checkpoint": 0, - "vertex_from": "278", - "timestamp": "2025-11-27T01:21:47.945812023Z" + "vertex_from": "801", + "timestamp": "2025-11-27T04:01:46.257971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308056, - "rtt_ms": 1.308056, + "rtt_ns": 2060292, + "rtt_ms": 2.060292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:47.946125222Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:46.257998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710525, - "rtt_ms": 1.710525, + "rtt_ns": 1388167, + "rtt_ms": 1.388167, "checkpoint": 0, "vertex_from": "0", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:47.946133592Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1380555, - "rtt_ms": 1.380555, - "checkpoint": 0, - "vertex_from": "706", - "timestamp": "2025-11-27T01:21:47.946251231Z" + "timestamp": "2025-11-27T04:01:46.258298-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2149473, - "rtt_ms": 2.149473, + "rtt_ns": 1430083, + "rtt_ms": 1.430083, "checkpoint": 0, "vertex_from": "960", - "timestamp": "2025-11-27T01:21:47.946319761Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1308476, - "rtt_ms": 1.308476, - "checkpoint": 0, - "vertex_from": "120", - "timestamp": "2025-11-27T01:21:47.946362111Z" + "timestamp": "2025-11-27T04:01:46.25832-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1102697, - "rtt_ms": 1.102697, + "rtt_ns": 1362125, + "rtt_ms": 1.362125, "checkpoint": 0, - "vertex_from": "561", - "timestamp": "2025-11-27T01:21:47.946378141Z" + "vertex_from": "300", + "timestamp": "2025-11-27T04:01:46.258343-08:00" }, { "operation": "add_edge", - "rtt_ns": 836268, - "rtt_ms": 0.836268, + "rtt_ns": 1167208, + "rtt_ms": 1.167208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:47.946437161Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:46.258355-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1556175, - "rtt_ms": 1.556175, + "operation": "add_vertex", + "rtt_ns": 1165167, + "rtt_ms": 1.165167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:47.946455341Z" + "vertex_from": "285", + "timestamp": "2025-11-27T04:01:46.258777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174046, - "rtt_ms": 1.174046, + "rtt_ns": 1501542, + "rtt_ms": 1.501542, "checkpoint": 0, "vertex_from": "0", "vertex_to": "278", - "timestamp": "2025-11-27T01:21:47.946986779Z" + "timestamp": "2025-11-27T04:01:46.258839-08:00" }, { "operation": "add_vertex", - "rtt_ns": 863647, - "rtt_ms": 0.863647, + "rtt_ns": 1636708, + "rtt_ms": 1.636708, "checkpoint": 0, - "vertex_from": "261", - "timestamp": "2025-11-27T01:21:47.946992919Z" + "vertex_from": "706", + "timestamp": "2025-11-27T04:01:46.258841-08:00" }, { "operation": "add_vertex", - "rtt_ns": 862867, - "rtt_ms": 0.862867, + "rtt_ns": 1585458, + "rtt_ms": 1.585458, "checkpoint": 0, - "vertex_from": "420", - "timestamp": "2025-11-27T01:21:47.947000389Z" + "vertex_from": "120", + "timestamp": "2025-11-27T04:01:46.259238-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1297776, - "rtt_ms": 1.297776, + "rtt_ns": 1057833, + "rtt_ms": 1.057833, "checkpoint": 0, "vertex_from": "772", - "timestamp": "2025-11-27T01:21:47.947105199Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 742217, - "rtt_ms": 0.742217, - "checkpoint": 0, - "vertex_from": "392", - "timestamp": "2025-11-27T01:21:47.947201738Z" + "timestamp": "2025-11-27T04:01:46.259359-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1852714, - "rtt_ms": 1.852714, + "rtt_ns": 1621000, + "rtt_ms": 1.621, "checkpoint": 0, - "vertex_from": "596", - "timestamp": "2025-11-27T01:21:47.948293855Z" + "vertex_from": "561", + "timestamp": "2025-11-27T04:01:46.259621-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021933, - "rtt_ms": 2.021933, + "rtt_ns": 2106292, + "rtt_ms": 2.106292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:47.948342264Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:46.260078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526065, - "rtt_ms": 1.526065, + "rtt_ns": 1771042, + "rtt_ms": 1.771042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:47.948527194Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:46.260096-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1565795, - "rtt_ms": 1.565795, + "rtt_ns": 1755917, + "rtt_ms": 1.755917, "checkpoint": 0, - "vertex_from": "105", - "timestamp": "2025-11-27T01:21:47.948555994Z" + "vertex_from": "261", + "timestamp": "2025-11-27T04:01:46.260113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566065, - "rtt_ms": 1.566065, + "rtt_ns": 891000, + "rtt_ms": 0.891, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:47.948559824Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:46.26013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199733, - "rtt_ms": 2.199733, + "rtt_ns": 1885834, + "rtt_ms": 1.885834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:47.948562394Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:46.260229-08:00" }, { "operation": "add_edge", - "rtt_ns": 2333853, - "rtt_ms": 2.333853, + "rtt_ns": 1592750, + "rtt_ms": 1.59275, "checkpoint": 0, "vertex_from": "0", "vertex_to": "706", - "timestamp": "2025-11-27T01:21:47.948585454Z" + "timestamp": "2025-11-27T04:01:46.260435-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1517005, - "rtt_ms": 1.517005, + "operation": "add_vertex", + "rtt_ns": 1780209, + "rtt_ms": 1.780209, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:47.948622834Z" + "vertex_from": "420", + "timestamp": "2025-11-27T04:01:46.260621-08:00" }, { "operation": "add_edge", - "rtt_ns": 2295862, - "rtt_ms": 2.295862, + "rtt_ns": 1025000, + "rtt_ms": 1.025, "checkpoint": 0, "vertex_from": "0", "vertex_to": "561", - "timestamp": "2025-11-27T01:21:47.948674513Z" + "timestamp": "2025-11-27T04:01:46.260646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682565, - "rtt_ms": 1.682565, + "rtt_ns": 1305125, + "rtt_ms": 1.305125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:47.948885233Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:46.260664-08:00" }, { "operation": "add_edge", - "rtt_ns": 853187, - "rtt_ms": 0.853187, + "rtt_ns": 1907084, + "rtt_ms": 1.907084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:47.949147452Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:46.260684-08:00" }, { "operation": "add_vertex", - "rtt_ns": 692128, - "rtt_ms": 0.692128, + "rtt_ns": 1574333, + "rtt_ms": 1.574333, "checkpoint": 0, - "vertex_from": "296", - "timestamp": "2025-11-27T01:21:47.949222892Z" + "vertex_from": "596", + "timestamp": "2025-11-27T04:01:46.261653-08:00" }, { "operation": "add_vertex", - "rtt_ns": 916497, - "rtt_ms": 0.916497, + "rtt_ns": 1233250, + "rtt_ms": 1.23325, "checkpoint": 0, - "vertex_from": "156", - "timestamp": "2025-11-27T01:21:47.949484491Z" + "vertex_from": "296", + "timestamp": "2025-11-27T04:01:46.261669-08:00" }, { "operation": "add_vertex", - "rtt_ns": 975686, - "rtt_ms": 0.975686, + "rtt_ns": 1454500, + "rtt_ms": 1.4545, "checkpoint": 0, - "vertex_from": "874", - "timestamp": "2025-11-27T01:21:47.94956345Z" + "vertex_from": "657", + "timestamp": "2025-11-27T04:01:46.261685-08:00" }, { "operation": "add_vertex", - "rtt_ns": 970016, - "rtt_ms": 0.970016, + "rtt_ns": 1570375, + "rtt_ms": 1.570375, "checkpoint": 0, - "vertex_from": "689", - "timestamp": "2025-11-27T01:21:47.949597Z" + "vertex_from": "105", + "timestamp": "2025-11-27T04:01:46.261701-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1075766, - "rtt_ms": 1.075766, + "rtt_ns": 1295625, + "rtt_ms": 1.295625, "checkpoint": 0, - "vertex_from": "516", - "timestamp": "2025-11-27T01:21:47.94963952Z" + "vertex_from": "874", + "timestamp": "2025-11-27T04:01:46.261983-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 991077, - "rtt_ms": 0.991077, + "operation": "add_edge", + "rtt_ns": 1890167, + "rtt_ms": 1.890167, "checkpoint": 0, - "vertex_from": "732", - "timestamp": "2025-11-27T01:21:47.94966862Z" + "vertex_from": "0", + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:46.262004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875673, - "rtt_ms": 1.875673, + "rtt_ns": 1403209, + "rtt_ms": 1.403209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:47.950432297Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:46.262025-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2104133, - "rtt_ms": 2.104133, + "rtt_ns": 1945083, + "rtt_ms": 1.945083, "checkpoint": 0, - "vertex_from": "657", - "timestamp": "2025-11-27T01:21:47.950452317Z" + "vertex_from": "392", + "timestamp": "2025-11-27T04:01:46.262042-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1679974, - "rtt_ms": 1.679974, + "rtt_ns": 1402708, + "rtt_ms": 1.402708, "checkpoint": 0, - "vertex_from": "224", - "timestamp": "2025-11-27T01:21:47.950830766Z" + "vertex_from": "156", + "timestamp": "2025-11-27T04:01:46.262069-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1341516, - "rtt_ms": 1.341516, + "operation": "add_vertex", + "rtt_ns": 1583041, + "rtt_ms": 1.583041, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "689", - "timestamp": "2025-11-27T01:21:47.950939166Z" + "vertex_from": "516", + "timestamp": "2025-11-27T04:01:46.26223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493125, - "rtt_ms": 1.493125, + "rtt_ns": 1373208, + "rtt_ms": 1.373208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:47.950978726Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:46.263043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424216, - "rtt_ms": 1.424216, + "rtt_ns": 1375583, + "rtt_ms": 1.375583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "874", - "timestamp": "2025-11-27T01:21:47.950988126Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:46.263061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766614, - "rtt_ms": 1.766614, + "rtt_ns": 1548916, + "rtt_ms": 1.548916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:47.950989926Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:46.26325-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2121173, - "rtt_ms": 2.121173, + "operation": "add_edge", + "rtt_ns": 1604583, + "rtt_ms": 1.604583, "checkpoint": 0, - "vertex_from": "133", - "timestamp": "2025-11-27T01:21:47.951011556Z" + "vertex_from": "0", + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:46.263259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389965, - "rtt_ms": 1.389965, + "rtt_ns": 1285333, + "rtt_ms": 1.285333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:47.951029925Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:46.263328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672114, - "rtt_ms": 1.672114, + "rtt_ns": 1358042, + "rtt_ms": 1.358042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "732", - "timestamp": "2025-11-27T01:21:47.951341184Z" + "vertex_to": "874", + "timestamp": "2025-11-27T04:01:46.263341-08:00" }, { "operation": "add_vertex", - "rtt_ns": 687857, - "rtt_ms": 0.687857, + "rtt_ns": 1322583, + "rtt_ms": 1.322583, "checkpoint": 0, - "vertex_from": "39", - "timestamp": "2025-11-27T01:21:47.951630233Z" + "vertex_from": "732", + "timestamp": "2025-11-27T04:01:46.263349-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 702687, - "rtt_ms": 0.702687, + "operation": "add_edge", + "rtt_ns": 1364958, + "rtt_ms": 1.364958, "checkpoint": 0, - "vertex_from": "544", - "timestamp": "2025-11-27T01:21:47.951696183Z" + "vertex_from": "0", + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:46.263435-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1112477, - "rtt_ms": 1.112477, + "rtt_ns": 1473958, + "rtt_ms": 1.473958, "checkpoint": 0, - "vertex_from": "7", - "timestamp": "2025-11-27T01:21:47.952457361Z" + "vertex_from": "689", + "timestamp": "2025-11-27T04:01:46.26348-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1366917, + "rtt_ms": 1.366917, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:46.263597-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2365243, - "rtt_ms": 2.365243, + "rtt_ns": 1576000, + "rtt_ms": 1.576, "checkpoint": 0, - "vertex_from": "90", - "timestamp": "2025-11-27T01:21:47.95280033Z" + "vertex_from": "224", + "timestamp": "2025-11-27T04:01:46.264638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139753, - "rtt_ms": 2.139753, + "rtt_ns": 1177416, + "rtt_ms": 1.177416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:47.952971359Z" + "vertex_to": "689", + "timestamp": "2025-11-27T04:01:46.264657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2555182, - "rtt_ms": 2.555182, + "rtt_ns": 1347333, + "rtt_ms": 1.347333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:47.953008219Z" + "vertex_to": "732", + "timestamp": "2025-11-27T04:01:46.264697-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1503375, + "rtt_ms": 1.503375, + "checkpoint": 0, + "vertex_from": "39", + "timestamp": "2025-11-27T04:01:46.264765-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1724791, + "rtt_ms": 1.724791, + "checkpoint": 0, + "vertex_from": "133", + "timestamp": "2025-11-27T04:01:46.264769-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1680166, + "rtt_ms": 1.680166, + "checkpoint": 0, + "vertex_from": "90", + "timestamp": "2025-11-27T04:01:46.264932-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2075363, - "rtt_ms": 2.075363, + "rtt_ns": 1626500, + "rtt_ms": 1.6265, "checkpoint": 0, "vertex_from": "928", - "timestamp": "2025-11-27T01:21:47.953056399Z" + "timestamp": "2025-11-27T04:01:46.264956-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2115273, - "rtt_ms": 2.115273, + "rtt_ns": 1654875, + "rtt_ms": 1.654875, "checkpoint": 0, "vertex_from": "129", - "timestamp": "2025-11-27T01:21:47.953106019Z" + "timestamp": "2025-11-27T04:01:46.264998-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2117073, - "rtt_ms": 2.117073, + "operation": "add_vertex", + "rtt_ns": 1437250, + "rtt_ms": 1.43725, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:47.953129149Z" + "vertex_from": "201", + "timestamp": "2025-11-27T04:01:46.265036-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2110144, - "rtt_ms": 2.110144, + "rtt_ns": 1737875, + "rtt_ms": 1.737875, "checkpoint": 0, - "vertex_from": "201", - "timestamp": "2025-11-27T01:21:47.953142009Z" + "vertex_from": "544", + "timestamp": "2025-11-27T04:01:46.265174-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1249292, + "rtt_ms": 1.249292, + "checkpoint": 0, + "vertex_from": "7", + "timestamp": "2025-11-27T04:01:46.265909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567905, - "rtt_ms": 1.567905, + "rtt_ns": 1361709, + "rtt_ms": 1.361709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "39", - "timestamp": "2025-11-27T01:21:47.953198578Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:46.266132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229036, - "rtt_ms": 1.229036, + "rtt_ns": 1834709, + "rtt_ms": 1.834709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "7", - "timestamp": "2025-11-27T01:21:47.953686807Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:46.266767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012714, - "rtt_ms": 2.012714, + "rtt_ns": 2019542, + "rtt_ms": 2.019542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:47.953709497Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:01:46.266784-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2104583, + "rtt_ms": 2.104583, + "checkpoint": 0, + "vertex_from": "325", + "timestamp": "2025-11-27T04:01:46.266803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156446, - "rtt_ms": 1.156446, + "rtt_ns": 1818709, + "rtt_ms": 1.818709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:47.953957116Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:46.266818-08:00" }, { "operation": "add_vertex", - "rtt_ns": 949637, - "rtt_ms": 0.949637, + "rtt_ns": 703083, + "rtt_ms": 0.703083, "checkpoint": 0, "vertex_from": "456", - "timestamp": "2025-11-27T01:21:47.953960806Z" + "timestamp": "2025-11-27T04:01:46.266837-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1420415, - "rtt_ms": 1.420415, + "operation": "add_edge", + "rtt_ns": 1946709, + "rtt_ms": 1.946709, "checkpoint": 0, - "vertex_from": "113", - "timestamp": "2025-11-27T01:21:47.954552884Z" + "vertex_from": "0", + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:46.266903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436315, - "rtt_ms": 1.436315, + "rtt_ns": 2422542, + "rtt_ms": 2.422542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:47.954578664Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:46.267061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475865, - "rtt_ms": 1.475865, + "rtt_ns": 2087167, + "rtt_ms": 2.087167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:47.954582314Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:46.267123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534985, - "rtt_ms": 1.534985, + "rtt_ns": 1986833, + "rtt_ms": 1.986833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:47.954591594Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:46.267162-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1623385, - "rtt_ms": 1.623385, + "operation": "add_edge", + "rtt_ns": 1271917, + "rtt_ms": 1.271917, "checkpoint": 0, - "vertex_from": "325", - "timestamp": "2025-11-27T01:21:47.954599374Z" + "vertex_from": "0", + "vertex_to": "7", + "timestamp": "2025-11-27T04:01:46.267181-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1315156, - "rtt_ms": 1.315156, + "rtt_ns": 1388292, + "rtt_ms": 1.388292, "checkpoint": 0, - "vertex_from": "812", - "timestamp": "2025-11-27T01:21:47.955005663Z" + "vertex_from": "113", + "timestamp": "2025-11-27T04:01:46.268156-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1313016, - "rtt_ms": 1.313016, + "rtt_ns": 1268500, + "rtt_ms": 1.2685, "checkpoint": 0, "vertex_from": "395", - "timestamp": "2025-11-27T01:21:47.955025433Z" + "timestamp": "2025-11-27T04:01:46.268174-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1829495, - "rtt_ms": 1.829495, + "rtt_ns": 1636750, + "rtt_ms": 1.63675, "checkpoint": 0, "vertex_from": "407", - "timestamp": "2025-11-27T01:21:47.955032433Z" + "timestamp": "2025-11-27T04:01:46.268422-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1083357, - "rtt_ms": 1.083357, + "operation": "add_edge", + "rtt_ns": 1635125, + "rtt_ms": 1.635125, "checkpoint": 0, - "vertex_from": "89", - "timestamp": "2025-11-27T01:21:47.955043133Z" + "vertex_from": "0", + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:46.268439-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1133396, - "rtt_ms": 1.133396, + "operation": "add_vertex", + "rtt_ns": 1638500, + "rtt_ms": 1.6385, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:47.955094652Z" + "vertex_from": "812", + "timestamp": "2025-11-27T04:01:46.268457-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1076437, - "rtt_ms": 1.076437, + "rtt_ns": 1410000, + "rtt_ms": 1.41, "checkpoint": 0, - "vertex_from": "568", - "timestamp": "2025-11-27T01:21:47.955659791Z" + "vertex_from": "89", + "timestamp": "2025-11-27T04:01:46.268472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325176, - "rtt_ms": 1.325176, + "rtt_ns": 1650875, + "rtt_ms": 1.650875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:47.95587868Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:46.268488-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1760394, - "rtt_ms": 1.760394, + "rtt_ns": 1316667, + "rtt_ms": 1.316667, "checkpoint": 0, - "vertex_from": "57", - "timestamp": "2025-11-27T01:21:47.956346268Z" + "vertex_from": "267", + "timestamp": "2025-11-27T04:01:46.2685-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1278276, - "rtt_ms": 1.278276, + "rtt_ns": 1425667, + "rtt_ms": 1.425667, "checkpoint": 0, - "vertex_from": "202", - "timestamp": "2025-11-27T01:21:47.956377248Z" + "vertex_from": "57", + "timestamp": "2025-11-27T04:01:46.268591-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1970174, - "rtt_ms": 1.970174, + "operation": "add_vertex", + "rtt_ns": 1520250, + "rtt_ms": 1.52025, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:47.956570448Z" + "vertex_from": "568", + "timestamp": "2025-11-27T04:01:46.268645-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2079893, - "rtt_ms": 2.079893, + "rtt_ns": 1266667, + "rtt_ms": 1.266667, "checkpoint": 0, - "vertex_from": "267", - "timestamp": "2025-11-27T01:21:47.956673487Z" + "vertex_from": "202", + "timestamp": "2025-11-27T04:01:46.269706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872964, - "rtt_ms": 1.872964, + "rtt_ns": 1254375, + "rtt_ms": 1.254375, "checkpoint": 0, "vertex_from": "0", "vertex_to": "812", - "timestamp": "2025-11-27T01:21:47.956879537Z" + "timestamp": "2025-11-27T04:01:46.269712-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1015687, - "rtt_ms": 1.015687, + "rtt_ns": 1246042, + "rtt_ms": 1.246042, "checkpoint": 0, "vertex_from": "281", - "timestamp": "2025-11-27T01:21:47.956899087Z" + "timestamp": "2025-11-27T04:01:46.269734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886593, - "rtt_ms": 1.886593, + "rtt_ns": 1283833, + "rtt_ms": 1.283833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "395", - "timestamp": "2025-11-27T01:21:47.956912576Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:46.269784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330275, - "rtt_ms": 1.330275, + "rtt_ns": 1766250, + "rtt_ms": 1.76625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:47.956991376Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:01:46.26994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981543, - "rtt_ms": 1.981543, + "rtt_ns": 1521666, + "rtt_ms": 1.521666, "checkpoint": 0, "vertex_from": "0", "vertex_to": "407", - "timestamp": "2025-11-27T01:21:47.957014346Z" + "timestamp": "2025-11-27T04:01:46.269944-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029063, - "rtt_ms": 2.029063, + "rtt_ns": 1792875, + "rtt_ms": 1.792875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:47.957072926Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:46.26995-08:00" }, { "operation": "add_edge", - "rtt_ns": 883247, - "rtt_ms": 0.883247, + "rtt_ns": 1466500, + "rtt_ms": 1.4665, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:47.957261025Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:01:46.270058-08:00" }, { "operation": "add_edge", - "rtt_ns": 944417, - "rtt_ms": 0.944417, + "rtt_ns": 1430625, + "rtt_ms": 1.430625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "57", - "timestamp": "2025-11-27T01:21:47.957291155Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 744567, - "rtt_ms": 0.744567, - "checkpoint": 0, - "vertex_from": "273", - "timestamp": "2025-11-27T01:21:47.957318115Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:46.270076-08:00" }, { "operation": "add_edge", - "rtt_ns": 732318, - "rtt_ms": 0.732318, + "rtt_ns": 1619542, + "rtt_ms": 1.619542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:47.957406315Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:46.270091-08:00" }, { - "operation": "add_edge", - "rtt_ns": 571288, - "rtt_ms": 0.571288, + "operation": "add_vertex", + "rtt_ns": 1534750, + "rtt_ms": 1.53475, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:47.957470715Z" + "vertex_from": "624", + "timestamp": "2025-11-27T04:01:46.27132-08:00" }, { "operation": "add_vertex", - "rtt_ns": 674838, - "rtt_ms": 0.674838, + "rtt_ns": 1624417, + "rtt_ms": 1.624417, "checkpoint": 0, - "vertex_from": "164", - "timestamp": "2025-11-27T01:21:47.957589864Z" + "vertex_from": "273", + "timestamp": "2025-11-27T04:01:46.271339-08:00" }, { "operation": "add_vertex", - "rtt_ns": 711327, - "rtt_ms": 0.711327, + "rtt_ns": 1392959, + "rtt_ms": 1.392959, "checkpoint": 0, - "vertex_from": "624", - "timestamp": "2025-11-27T01:21:47.957595674Z" + "vertex_from": "274", + "timestamp": "2025-11-27T04:01:46.271345-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1637959, + "rtt_ms": 1.637959, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:46.271345-08:00" }, { "operation": "add_vertex", - "rtt_ns": 745867, - "rtt_ms": 0.745867, + "rtt_ns": 1402791, + "rtt_ms": 1.402791, "checkpoint": 0, - "vertex_from": "19", - "timestamp": "2025-11-27T01:21:47.957821113Z" + "vertex_from": "164", + "timestamp": "2025-11-27T04:01:46.271346-08:00" }, { "operation": "add_vertex", - "rtt_ns": 655068, - "rtt_ms": 0.655068, + "rtt_ns": 1480417, + "rtt_ms": 1.480417, "checkpoint": 0, "vertex_from": "290", - "timestamp": "2025-11-27T01:21:47.957919033Z" + "timestamp": "2025-11-27T04:01:46.271557-08:00" }, { "operation": "add_vertex", - "rtt_ns": 714038, - "rtt_ms": 0.714038, + "rtt_ns": 1516917, + "rtt_ms": 1.516917, "checkpoint": 0, - "vertex_from": "49", - "timestamp": "2025-11-27T01:21:47.958008103Z" + "vertex_from": "19", + "timestamp": "2025-11-27T04:01:46.271575-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1109946, - "rtt_ms": 1.109946, + "operation": "add_edge", + "rtt_ns": 1874542, + "rtt_ms": 1.874542, "checkpoint": 0, - "vertex_from": "268", - "timestamp": "2025-11-27T01:21:47.958105432Z" + "vertex_from": "0", + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:46.271609-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1797204, - "rtt_ms": 1.797204, + "rtt_ns": 1688958, + "rtt_ms": 1.688958, "checkpoint": 0, - "vertex_from": "274", - "timestamp": "2025-11-27T01:21:47.95881365Z" + "vertex_from": "268", + "timestamp": "2025-11-27T04:01:46.271634-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1858144, - "rtt_ms": 1.858144, + "rtt_ns": 1621292, + "rtt_ms": 1.621292, "checkpoint": 0, - "vertex_from": "198", - "timestamp": "2025-11-27T01:21:47.959267379Z" + "vertex_from": "49", + "timestamp": "2025-11-27T04:01:46.271713-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1875243, - "rtt_ms": 1.875243, + "rtt_ns": 1305917, + "rtt_ms": 1.305917, "checkpoint": 0, "vertex_from": "400", - "timestamp": "2025-11-27T01:21:47.959348668Z" + "timestamp": "2025-11-27T04:01:46.272916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765644, - "rtt_ms": 1.765644, + "rtt_ns": 1846000, + "rtt_ms": 1.846, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:47.959361988Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:46.273404-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133393, - "rtt_ms": 2.133393, + "rtt_ns": 2090667, + "rtt_ms": 2.090667, "checkpoint": 0, "vertex_from": "0", "vertex_to": "273", - "timestamp": "2025-11-27T01:21:47.959451948Z" + "timestamp": "2025-11-27T04:01:46.27343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905254, - "rtt_ms": 1.905254, + "rtt_ns": 2175125, + "rtt_ms": 2.175125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:47.959495348Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:46.27352-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2187791, + "rtt_ms": 2.187791, + "checkpoint": 0, + "vertex_from": "198", + "timestamp": "2025-11-27T04:01:46.273535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711705, - "rtt_ms": 1.711705, + "rtt_ns": 1978625, + "rtt_ms": 1.978625, "checkpoint": 0, "vertex_from": "0", "vertex_to": "19", - "timestamp": "2025-11-27T01:21:47.959533458Z" + "timestamp": "2025-11-27T04:01:46.273554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539825, - "rtt_ms": 1.539825, + "rtt_ns": 2315208, + "rtt_ms": 2.315208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:47.959548438Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:46.273636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506275, - "rtt_ms": 1.506275, + "rtt_ns": 1941916, + "rtt_ms": 1.941916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:47.959612077Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:46.273655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776424, - "rtt_ms": 1.776424, + "rtt_ns": 2036708, + "rtt_ms": 2.036708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:47.959695777Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:46.273671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018727, - "rtt_ms": 1.018727, + "rtt_ns": 2344375, + "rtt_ms": 2.344375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:47.959833017Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:46.273691-08:00" }, { "operation": "add_edge", - "rtt_ns": 892527, - "rtt_ms": 0.892527, + "rtt_ns": 1173083, + "rtt_ms": 1.173083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:47.960160256Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:46.274089-08:00" }, { "operation": "add_edge", - "rtt_ns": 863077, - "rtt_ms": 0.863077, + "rtt_ns": 1363375, + "rtt_ms": 1.363375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:47.960212305Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:46.274899-08:00" }, { "operation": "add_vertex", - "rtt_ns": 785847, - "rtt_ms": 0.785847, + "rtt_ns": 1435458, + "rtt_ms": 1.435458, "checkpoint": 0, "vertex_from": "152", - "timestamp": "2025-11-27T01:21:47.960284245Z" + "timestamp": "2025-11-27T04:01:46.274957-08:00" }, { "operation": "add_vertex", - "rtt_ns": 955837, - "rtt_ms": 0.955837, + "rtt_ns": 1588625, + "rtt_ms": 1.588625, "checkpoint": 0, - "vertex_from": "146", - "timestamp": "2025-11-27T01:21:47.960320105Z" + "vertex_from": "658", + "timestamp": "2025-11-27T04:01:46.275021-08:00" }, { "operation": "add_vertex", - "rtt_ns": 846827, - "rtt_ms": 0.846827, + "rtt_ns": 1481375, + "rtt_ms": 1.481375, "checkpoint": 0, - "vertex_from": "517", - "timestamp": "2025-11-27T01:21:47.960397305Z" + "vertex_from": "88", + "timestamp": "2025-11-27T04:01:46.275038-08:00" }, { "operation": "add_vertex", - "rtt_ns": 737728, - "rtt_ms": 0.737728, + "rtt_ns": 1465542, + "rtt_ms": 1.465542, "checkpoint": 0, "vertex_from": "412", - "timestamp": "2025-11-27T01:21:47.960436835Z" + "timestamp": "2025-11-27T04:01:46.275138-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1039227, - "rtt_ms": 1.039227, + "rtt_ns": 1920042, + "rtt_ms": 1.920042, "checkpoint": 0, - "vertex_from": "658", - "timestamp": "2025-11-27T01:21:47.960494435Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1588995, - "rtt_ms": 1.588995, - "checkpoint": 0, - "vertex_from": "14", - "timestamp": "2025-11-27T01:21:47.961751321Z" + "vertex_from": "146", + "timestamp": "2025-11-27T04:01:46.275325-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2203183, - "rtt_ms": 2.203183, + "rtt_ns": 1763584, + "rtt_ms": 1.763584, "checkpoint": 0, - "vertex_from": "180", - "timestamp": "2025-11-27T01:21:47.96181745Z" + "vertex_from": "517", + "timestamp": "2025-11-27T04:01:46.2754-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1603785, - "rtt_ms": 1.603785, + "rtt_ns": 2094625, + "rtt_ms": 2.094625, "checkpoint": 0, - "vertex_from": "138", - "timestamp": "2025-11-27T01:21:47.96182121Z" + "vertex_from": "14", + "timestamp": "2025-11-27T04:01:46.276185-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2007723, - "rtt_ms": 2.007723, + "rtt_ns": 2514833, + "rtt_ms": 2.514833, "checkpoint": 0, "vertex_from": "177", - "timestamp": "2025-11-27T01:21:47.96184346Z" + "timestamp": "2025-11-27T04:01:46.276206-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2312212, - "rtt_ms": 2.312212, + "rtt_ns": 2556833, + "rtt_ms": 2.556833, "checkpoint": 0, - "vertex_from": "88", - "timestamp": "2025-11-27T01:21:47.96184877Z" + "vertex_from": "180", + "timestamp": "2025-11-27T04:01:46.276215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575045, - "rtt_ms": 1.575045, + "rtt_ns": 1344042, + "rtt_ms": 1.344042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:47.96186001Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:46.276483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525035, - "rtt_ms": 1.525035, + "rtt_ns": 1460292, + "rtt_ms": 1.460292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:47.96192269Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:46.276499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624055, - "rtt_ms": 1.624055, + "rtt_ns": 1555958, + "rtt_ms": 1.555958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:47.96194457Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 697098, - "rtt_ms": 0.697098, - "checkpoint": 0, - "vertex_from": "353", - "timestamp": "2025-11-27T01:21:47.962622948Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:46.276513-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 824268, - "rtt_ms": 0.824268, + "operation": "add_edge", + "rtt_ns": 1127542, + "rtt_ms": 1.127542, "checkpoint": 0, - "vertex_from": "328", - "timestamp": "2025-11-27T01:21:47.962688258Z" + "vertex_from": "0", + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:46.276528-08:00" }, { "operation": "add_edge", - "rtt_ns": 3193740, - "rtt_ms": 3.19374, + "rtt_ns": 1332458, + "rtt_ms": 1.332458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "412", - "timestamp": "2025-11-27T01:21:47.963630835Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.276658-08:00" }, { "operation": "add_edge", - "rtt_ns": 3222069, - "rtt_ms": 3.222069, + "rtt_ns": 1651459, + "rtt_ms": 1.651459, "checkpoint": 0, "vertex_from": "0", "vertex_to": "658", - "timestamp": "2025-11-27T01:21:47.963716764Z" + "timestamp": "2025-11-27T04:01:46.276673-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1995463, - "rtt_ms": 1.995463, + "operation": "add_vertex", + "rtt_ns": 1972292, + "rtt_ms": 1.972292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "14", - "timestamp": "2025-11-27T01:21:47.963747244Z" + "vertex_from": "138", + "timestamp": "2025-11-27T04:01:46.276874-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1965204, - "rtt_ms": 1.965204, + "operation": "add_vertex", + "rtt_ns": 1234667, + "rtt_ms": 1.234667, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:47.963809074Z" + "vertex_from": "328", + "timestamp": "2025-11-27T04:01:46.277719-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1236041, + "rtt_ms": 1.236041, + "checkpoint": 0, + "vertex_from": "353", + "timestamp": "2025-11-27T04:01:46.277736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012144, - "rtt_ms": 2.012144, + "rtt_ns": 1555875, + "rtt_ms": 1.555875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:47.963861374Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:46.277763-08:00" }, { "operation": "add_vertex", - "rtt_ns": 883997, - "rtt_ms": 0.883997, + "rtt_ns": 1454458, + "rtt_ms": 1.454458, "checkpoint": 0, "vertex_from": "956", - "timestamp": "2025-11-27T01:21:47.964517602Z" + "timestamp": "2025-11-27T04:01:46.277984-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2594242, - "rtt_ms": 2.594242, + "rtt_ns": 1342958, + "rtt_ms": 1.342958, "checkpoint": 0, - "vertex_from": "23", - "timestamp": "2025-11-27T01:21:47.964540682Z" + "vertex_from": "556", + "timestamp": "2025-11-27T04:01:46.278001-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1867194, - "rtt_ms": 1.867194, + "operation": "add_vertex", + "rtt_ns": 1569792, + "rtt_ms": 1.569792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:47.964556122Z" + "vertex_from": "51", + "timestamp": "2025-11-27T04:01:46.278243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955243, - "rtt_ms": 1.955243, + "rtt_ns": 1763375, + "rtt_ms": 1.763375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:47.964578721Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:46.278638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2775141, - "rtt_ms": 2.775141, + "rtt_ns": 2676042, + "rtt_ms": 2.676042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:47.964596681Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:01:46.278863-08:00" }, { "operation": "add_edge", - "rtt_ns": 2854431, - "rtt_ms": 2.854431, + "rtt_ns": 2696042, + "rtt_ms": 2.696042, "checkpoint": 0, "vertex_from": "0", "vertex_to": "180", - "timestamp": "2025-11-27T01:21:47.964672371Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1605585, - "rtt_ms": 1.605585, - "checkpoint": 0, - "vertex_from": "556", - "timestamp": "2025-11-27T01:21:47.965325249Z" + "timestamp": "2025-11-27T04:01:46.278912-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1579755, - "rtt_ms": 1.579755, + "rtt_ns": 2427500, + "rtt_ms": 2.4275, "checkpoint": 0, - "vertex_from": "51", - "timestamp": "2025-11-27T01:21:47.965329839Z" + "vertex_from": "23", + "timestamp": "2025-11-27T04:01:46.278942-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1519245, - "rtt_ms": 1.519245, + "rtt_ns": 1450875, + "rtt_ms": 1.450875, "checkpoint": 0, "vertex_from": "217", - "timestamp": "2025-11-27T01:21:47.965333689Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1854414, - "rtt_ms": 1.854414, - "checkpoint": 0, - "vertex_from": "172", - "timestamp": "2025-11-27T01:21:47.965718778Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1296755, - "rtt_ms": 1.296755, - "checkpoint": 0, - "vertex_from": "389", - "timestamp": "2025-11-27T01:21:47.965855307Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1340736, - "rtt_ms": 1.340736, - "checkpoint": 0, - "vertex_from": "84", - "timestamp": "2025-11-27T01:21:47.965940557Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1401115, - "rtt_ms": 1.401115, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "23", - "timestamp": "2025-11-27T01:21:47.965942167Z" + "timestamp": "2025-11-27T04:01:46.279216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449625, - "rtt_ms": 1.449625, + "rtt_ns": 1108166, + "rtt_ms": 1.108166, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "956", - "timestamp": "2025-11-27T01:21:47.965967697Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:01:46.279352-08:00" }, { "operation": "add_edge", - "rtt_ns": 767397, - "rtt_ms": 0.767397, + "rtt_ns": 1369750, + "rtt_ms": 1.36975, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "51", - "timestamp": "2025-11-27T01:21:47.966097676Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:46.279371-08:00" }, { "operation": "add_edge", - "rtt_ns": 803757, - "rtt_ms": 0.803757, + "rtt_ns": 1436416, + "rtt_ms": 1.436416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:47.966129756Z" + "vertex_to": "956", + "timestamp": "2025-11-27T04:01:46.27942-08:00" }, { "operation": "add_edge", - "rtt_ns": 799737, - "rtt_ms": 0.799737, + "rtt_ns": 1690709, + "rtt_ms": 1.690709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "217", - "timestamp": "2025-11-27T01:21:47.966134016Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:46.279427-08:00" }, { "operation": "add_edge", - "rtt_ns": 687237, - "rtt_ms": 0.687237, + "rtt_ns": 1720625, + "rtt_ms": 1.720625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:47.966406435Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:46.27944-08:00" }, { - "operation": "add_edge", - "rtt_ns": 656008, - "rtt_ms": 0.656008, + "operation": "add_vertex", + "rtt_ns": 1477417, + "rtt_ms": 1.477417, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:47.966511745Z" + "vertex_from": "172", + "timestamp": "2025-11-27T04:01:46.280118-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1134507, - "rtt_ms": 1.134507, + "rtt_ns": 1270500, + "rtt_ms": 1.2705, "checkpoint": 0, - "vertex_from": "417", - "timestamp": "2025-11-27T01:21:47.967233713Z" + "vertex_from": "389", + "timestamp": "2025-11-27T04:01:46.280135-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1121906, - "rtt_ms": 1.121906, + "rtt_ns": 1470458, + "rtt_ms": 1.470458, "checkpoint": 0, - "vertex_from": "586", - "timestamp": "2025-11-27T01:21:47.967258602Z" + "vertex_from": "592", + "timestamp": "2025-11-27T04:01:46.280384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326965, - "rtt_ms": 1.326965, + "rtt_ns": 1460417, + "rtt_ms": 1.460417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:47.967268112Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:01:46.280403-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1459795, - "rtt_ms": 1.459795, + "rtt_ns": 1186917, + "rtt_ms": 1.186917, "checkpoint": 0, - "vertex_from": "132", - "timestamp": "2025-11-27T01:21:47.967404992Z" + "vertex_from": "417", + "timestamp": "2025-11-27T04:01:46.280628-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2745511, - "rtt_ms": 2.745511, + "rtt_ns": 1270166, + "rtt_ms": 1.270166, "checkpoint": 0, "vertex_from": "117", - "timestamp": "2025-11-27T01:21:47.967420822Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1459755, - "rtt_ms": 1.459755, - "checkpoint": 0, - "vertex_from": "134", - "timestamp": "2025-11-27T01:21:47.967430842Z" + "timestamp": "2025-11-27T04:01:46.280643-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1306676, - "rtt_ms": 1.306676, + "rtt_ns": 1355584, + "rtt_ms": 1.355584, "checkpoint": 0, - "vertex_from": "40", - "timestamp": "2025-11-27T01:21:47.967438172Z" + "vertex_from": "84", + "timestamp": "2025-11-27T04:01:46.280711-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2927071, - "rtt_ms": 2.927071, + "rtt_ns": 1316542, + "rtt_ms": 1.316542, "checkpoint": 0, - "vertex_from": "592", - "timestamp": "2025-11-27T01:21:47.967509052Z" + "vertex_from": "134", + "timestamp": "2025-11-27T04:01:46.280745-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1587425, - "rtt_ms": 1.587425, + "rtt_ns": 1481542, + "rtt_ms": 1.481542, "checkpoint": 0, - "vertex_from": "124", - "timestamp": "2025-11-27T01:21:47.96810045Z" + "vertex_from": "132", + "timestamp": "2025-11-27T04:01:46.280904-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1716445, - "rtt_ms": 1.716445, + "rtt_ns": 1202333, + "rtt_ms": 1.202333, "checkpoint": 0, - "vertex_from": "521", - "timestamp": "2025-11-27T01:21:47.96812557Z" + "vertex_from": "40", + "timestamp": "2025-11-27T04:01:46.281607-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1297676, - "rtt_ms": 1.297676, + "operation": "add_edge", + "rtt_ns": 2665042, + "rtt_ms": 2.665042, "checkpoint": 0, - "vertex_from": "301", - "timestamp": "2025-11-27T01:21:47.968568428Z" + "vertex_from": "0", + "vertex_to": "217", + "timestamp": "2025-11-27T04:01:46.281881-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541282, - "rtt_ms": 2.541282, + "rtt_ns": 1274167, + "rtt_ms": 1.274167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:47.969979814Z" + "vertex_to": "117", + "timestamp": "2025-11-27T04:01:46.281917-08:00" }, { "operation": "add_edge", - "rtt_ns": 2582792, - "rtt_ms": 2.582792, + "rtt_ns": 1801459, + "rtt_ms": 1.801459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:47.970014064Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:46.28192-08:00" }, { "operation": "add_edge", - "rtt_ns": 2779362, - "rtt_ms": 2.779362, + "rtt_ns": 1815292, + "rtt_ms": 1.815292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:47.970038584Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:46.2822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515575, - "rtt_ms": 1.515575, + "rtt_ns": 1509375, + "rtt_ms": 1.509375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:47.970084363Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:46.282255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980433, - "rtt_ms": 1.980433, + "rtt_ns": 1560208, + "rtt_ms": 1.560208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:47.970106543Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:46.282272-08:00" }, { "operation": "add_edge", - "rtt_ns": 3154380, - "rtt_ms": 3.15438, + "rtt_ns": 1466166, + "rtt_ms": 1.466166, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "117", - "timestamp": "2025-11-27T01:21:47.970575712Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:46.28237-08:00" }, { "operation": "add_edge", - "rtt_ns": 3262319, - "rtt_ms": 3.262319, + "rtt_ns": 2237083, + "rtt_ms": 2.237083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:47.970771861Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:46.282372-08:00" }, { "operation": "add_edge", - "rtt_ns": 3559948, - "rtt_ms": 3.559948, + "rtt_ns": 1828833, + "rtt_ms": 1.828833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "417", - "timestamp": "2025-11-27T01:21:47.970794071Z" + "timestamp": "2025-11-27T04:01:46.282457-08:00" }, { "operation": "add_edge", - "rtt_ns": 3392789, - "rtt_ms": 3.392789, + "rtt_ns": 1528459, + "rtt_ms": 1.528459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:47.970798311Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:46.283136-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2803341, - "rtt_ms": 2.803341, + "operation": "add_vertex", + "rtt_ns": 1394917, + "rtt_ms": 1.394917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "124", - "timestamp": "2025-11-27T01:21:47.970904141Z" + "vertex_from": "124", + "timestamp": "2025-11-27T04:01:46.283316-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1675024, - "rtt_ms": 1.675024, + "rtt_ns": 1434750, + "rtt_ms": 1.43475, "checkpoint": 0, - "vertex_from": "329", - "timestamp": "2025-11-27T01:21:47.971718198Z" + "vertex_from": "586", + "timestamp": "2025-11-27T04:01:46.283318-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1724644, - "rtt_ms": 1.724644, + "rtt_ns": 1264833, + "rtt_ms": 1.264833, "checkpoint": 0, "vertex_from": "538", - "timestamp": "2025-11-27T01:21:47.971740768Z" + "timestamp": "2025-11-27T04:01:46.283538-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1760974, - "rtt_ms": 1.760974, + "rtt_ns": 1298209, + "rtt_ms": 1.298209, "checkpoint": 0, "vertex_from": "725", - "timestamp": "2025-11-27T01:21:47.971744928Z" + "timestamp": "2025-11-27T04:01:46.283554-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1906004, - "rtt_ms": 1.906004, + "rtt_ns": 1648500, + "rtt_ms": 1.6485, "checkpoint": 0, - "vertex_from": "680", - "timestamp": "2025-11-27T01:21:47.972016357Z" + "vertex_from": "521", + "timestamp": "2025-11-27T04:01:46.283568-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1998834, - "rtt_ms": 1.998834, + "rtt_ns": 1467750, + "rtt_ms": 1.46775, "checkpoint": 0, - "vertex_from": "75", - "timestamp": "2025-11-27T01:21:47.972086647Z" + "vertex_from": "301", + "timestamp": "2025-11-27T04:01:46.28367-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1546435, - "rtt_ms": 1.546435, + "rtt_ns": 1668375, + "rtt_ms": 1.668375, "checkpoint": 0, - "vertex_from": "868", - "timestamp": "2025-11-27T01:21:47.972125197Z" + "vertex_from": "329", + "timestamp": "2025-11-27T04:01:46.284039-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1389206, - "rtt_ms": 1.389206, + "rtt_ns": 1683250, + "rtt_ms": 1.68325, "checkpoint": 0, - "vertex_from": "616", - "timestamp": "2025-11-27T01:21:47.972189057Z" + "vertex_from": "75", + "timestamp": "2025-11-27T04:01:46.284057-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1453016, - "rtt_ms": 1.453016, + "rtt_ns": 1613916, + "rtt_ms": 1.613916, "checkpoint": 0, - "vertex_from": "337", - "timestamp": "2025-11-27T01:21:47.972228797Z" + "vertex_from": "680", + "timestamp": "2025-11-27T04:01:46.284072-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1360325, - "rtt_ms": 1.360325, + "rtt_ns": 1322333, + "rtt_ms": 1.322333, "checkpoint": 0, - "vertex_from": "260", - "timestamp": "2025-11-27T01:21:47.972266456Z" + "vertex_from": "868", + "timestamp": "2025-11-27T04:01:46.28446-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1498565, - "rtt_ms": 1.498565, + "operation": "add_edge", + "rtt_ns": 1605583, + "rtt_ms": 1.605583, "checkpoint": 0, - "vertex_from": "448", - "timestamp": "2025-11-27T01:21:47.972299706Z" + "vertex_from": "0", + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:46.284924-08:00" }, { "operation": "add_edge", - "rtt_ns": 829827, - "rtt_ms": 0.829827, + "rtt_ns": 1699583, + "rtt_ms": 1.699583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:47.972548905Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:01:46.285016-08:00" }, { "operation": "add_edge", - "rtt_ns": 823837, - "rtt_ms": 0.823837, + "rtt_ns": 1934208, + "rtt_ms": 1.934208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:47.972565055Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:46.285605-08:00" }, { "operation": "add_edge", - "rtt_ns": 840067, - "rtt_ms": 0.840067, + "rtt_ns": 2067750, + "rtt_ms": 2.06775, "checkpoint": 0, "vertex_from": "0", "vertex_to": "725", - "timestamp": "2025-11-27T01:21:47.972585445Z" + "timestamp": "2025-11-27T04:01:46.285622-08:00" }, { "operation": "add_edge", - "rtt_ns": 759808, - "rtt_ms": 0.759808, + "rtt_ns": 2067667, + "rtt_ms": 2.067667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:47.972776695Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 663228, - "rtt_ms": 0.663228, - "checkpoint": 0, - "vertex_from": "579", - "timestamp": "2025-11-27T01:21:47.973231203Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 709958, - "rtt_ms": 0.709958, - "checkpoint": 0, - "vertex_from": "29", - "timestamp": "2025-11-27T01:21:47.973263363Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:46.285636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330046, - "rtt_ms": 1.330046, + "rtt_ns": 2114208, + "rtt_ms": 2.114208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:47.973417453Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 728067, - "rtt_ms": 0.728067, - "checkpoint": 0, - "vertex_from": "131", - "timestamp": "2025-11-27T01:21:47.973507762Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:46.285652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415395, - "rtt_ms": 1.415395, + "rtt_ns": 1206167, + "rtt_ms": 1.206167, "checkpoint": 0, "vertex_from": "0", "vertex_to": "868", - "timestamp": "2025-11-27T01:21:47.973540962Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 601408, - "rtt_ms": 0.601408, - "checkpoint": 0, - "vertex_from": "104", - "timestamp": "2025-11-27T01:21:47.974021691Z" + "timestamp": "2025-11-27T04:01:46.285667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428652, - "rtt_ms": 2.428652, + "rtt_ns": 1738875, + "rtt_ms": 1.738875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:47.974618269Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:46.285796-08:00" }, { "operation": "add_edge", - "rtt_ns": 2453001, - "rtt_ms": 2.453001, + "rtt_ns": 1771708, + "rtt_ms": 1.771708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:47.974682188Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:46.285812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444925, - "rtt_ms": 1.444925, + "rtt_ns": 1742625, + "rtt_ms": 1.742625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "29", - "timestamp": "2025-11-27T01:21:47.974708848Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:46.285814-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1271696, - "rtt_ms": 1.271696, - "checkpoint": 0, - "vertex_from": "784", - "timestamp": "2025-11-27T01:21:47.974816798Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1396526, - "rtt_ms": 1.396526, + "rtt_ns": 1129917, + "rtt_ms": 1.129917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:47.974905088Z" + "vertex_from": "616", + "timestamp": "2025-11-27T04:01:46.286147-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2638942, - "rtt_ms": 2.638942, + "operation": "add_vertex", + "rtt_ns": 1328000, + "rtt_ms": 1.328, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:47.974906218Z" + "vertex_from": "337", + "timestamp": "2025-11-27T04:01:46.286253-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2604842, - "rtt_ms": 2.604842, + "operation": "add_vertex", + "rtt_ns": 1630667, + "rtt_ms": 1.630667, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:47.974905098Z" + "vertex_from": "784", + "timestamp": "2025-11-27T04:01:46.287448-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1696324, - "rtt_ms": 1.696324, + "operation": "add_vertex", + "rtt_ns": 1885959, + "rtt_ms": 1.885959, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:47.974928037Z" + "vertex_from": "260", + "timestamp": "2025-11-27T04:01:46.287509-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2387212, - "rtt_ms": 2.387212, + "rtt_ns": 1895917, + "rtt_ms": 1.895917, "checkpoint": 0, "vertex_from": "299", - "timestamp": "2025-11-27T01:21:47.974976327Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1556424, - "rtt_ms": 1.556424, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:47.975578545Z" + "timestamp": "2025-11-27T04:01:46.287565-08:00" }, { "operation": "add_vertex", - "rtt_ns": 961767, - "rtt_ms": 0.961767, + "rtt_ns": 1770958, + "rtt_ms": 1.770958, "checkpoint": 0, - "vertex_from": "166", - "timestamp": "2025-11-27T01:21:47.975647195Z" + "vertex_from": "131", + "timestamp": "2025-11-27T04:01:46.287568-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1451835, - "rtt_ms": 1.451835, + "operation": "add_edge", + "rtt_ns": 1427625, + "rtt_ms": 1.427625, "checkpoint": 0, - "vertex_from": "530", - "timestamp": "2025-11-27T01:21:47.976077764Z" + "vertex_from": "0", + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:46.287575-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1369586, - "rtt_ms": 1.369586, + "rtt_ns": 1975750, + "rtt_ms": 1.97575, "checkpoint": 0, - "vertex_from": "404", - "timestamp": "2025-11-27T01:21:47.976301043Z" + "vertex_from": "448", + "timestamp": "2025-11-27T04:01:46.287582-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1430395, - "rtt_ms": 1.430395, + "rtt_ns": 1773583, + "rtt_ms": 1.773583, "checkpoint": 0, - "vertex_from": "771", - "timestamp": "2025-11-27T01:21:47.976341013Z" + "vertex_from": "104", + "timestamp": "2025-11-27T04:01:46.287588-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1522894, - "rtt_ms": 1.522894, + "rtt_ns": 1957541, + "rtt_ms": 1.957541, "checkpoint": 0, - "vertex_from": "158", - "timestamp": "2025-11-27T01:21:47.976431572Z" + "vertex_from": "29", + "timestamp": "2025-11-27T04:01:46.287594-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 885147, - "rtt_ms": 0.885147, + "operation": "add_edge", + "rtt_ns": 1352500, + "rtt_ms": 1.3525, "checkpoint": 0, - "vertex_from": "988", - "timestamp": "2025-11-27T01:21:47.976466752Z" + "vertex_from": "0", + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:46.287606-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1890354, - "rtt_ms": 1.890354, + "rtt_ns": 2002333, + "rtt_ms": 2.002333, "checkpoint": 0, - "vertex_from": "774", - "timestamp": "2025-11-27T01:21:47.976601872Z" + "vertex_from": "579", + "timestamp": "2025-11-27T04:01:46.287655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914653, - "rtt_ms": 1.914653, + "rtt_ns": 1157625, + "rtt_ms": 1.157625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:47.976732181Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:46.288813-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2415441, - "rtt_ms": 2.415441, + "rtt_ns": 1244875, + "rtt_ms": 1.244875, "checkpoint": 0, - "vertex_from": "145", - "timestamp": "2025-11-27T01:21:47.977325939Z" + "vertex_from": "166", + "timestamp": "2025-11-27T04:01:46.288853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2418752, - "rtt_ms": 2.418752, + "rtt_ns": 1613334, + "rtt_ms": 1.613334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "299", - "timestamp": "2025-11-27T01:21:47.977395599Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.289062-08:00" }, { "operation": "add_vertex", - "rtt_ns": 681598, - "rtt_ms": 0.681598, + "rtt_ns": 1692125, + "rtt_ms": 1.692125, "checkpoint": 0, - "vertex_from": "305", - "timestamp": "2025-11-27T01:21:47.977416129Z" + "vertex_from": "530", + "timestamp": "2025-11-27T04:01:46.289268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391835, - "rtt_ms": 1.391835, + "rtt_ns": 1699459, + "rtt_ms": 1.699459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:47.977470199Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:46.289287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861944, - "rtt_ms": 1.861944, + "rtt_ns": 1711583, + "rtt_ms": 1.711583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:47.977509579Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:46.289294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348455, - "rtt_ms": 1.348455, + "rtt_ns": 1732208, + "rtt_ms": 1.732208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:47.977650258Z" + "vertex_to": "299", + "timestamp": "2025-11-27T04:01:46.289298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709354, - "rtt_ms": 1.709354, + "rtt_ns": 1841417, + "rtt_ms": 1.841417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:47.978050787Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:46.28941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841304, - "rtt_ms": 1.841304, + "rtt_ns": 2505416, + "rtt_ms": 2.505416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:47.978273416Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:01:46.2901-08:00" }, { "operation": "add_edge", - "rtt_ns": 958027, - "rtt_ms": 0.958027, + "rtt_ns": 2608167, + "rtt_ms": 2.608167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:47.978284336Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:46.290118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830224, - "rtt_ms": 1.830224, + "rtt_ns": 1562583, + "rtt_ms": 1.562583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "988", - "timestamp": "2025-11-27T01:21:47.978297726Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:46.290417-08:00" }, { "operation": "add_vertex", - "rtt_ns": 787887, - "rtt_ms": 0.787887, + "rtt_ns": 1620250, + "rtt_ms": 1.62025, "checkpoint": 0, - "vertex_from": "265", - "timestamp": "2025-11-27T01:21:47.978298496Z" + "vertex_from": "774", + "timestamp": "2025-11-27T04:01:46.290435-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1710184, - "rtt_ms": 1.710184, + "operation": "add_vertex", + "rtt_ns": 1162000, + "rtt_ms": 1.162, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:47.978312566Z" + "vertex_from": "145", + "timestamp": "2025-11-27T04:01:46.29045-08:00" }, { "operation": "add_edge", - "rtt_ns": 899637, - "rtt_ms": 0.899637, + "rtt_ns": 1414750, + "rtt_ms": 1.41475, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:47.978316256Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1056527, - "rtt_ms": 1.056527, - "checkpoint": 0, - "vertex_from": "93", - "timestamp": "2025-11-27T01:21:47.978455086Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:46.290683-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1498635, - "rtt_ms": 1.498635, + "rtt_ns": 1405375, + "rtt_ms": 1.405375, "checkpoint": 0, - "vertex_from": "484", - "timestamp": "2025-11-27T01:21:47.978971564Z" + "vertex_from": "771", + "timestamp": "2025-11-27T04:01:46.290701-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1861734, - "rtt_ms": 1.861734, + "rtt_ns": 1697125, + "rtt_ms": 1.697125, "checkpoint": 0, - "vertex_from": "515", - "timestamp": "2025-11-27T01:21:47.98013892Z" + "vertex_from": "158", + "timestamp": "2025-11-27T04:01:46.290763-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2817881, - "rtt_ms": 2.817881, + "rtt_ns": 1419208, + "rtt_ms": 1.419208, "checkpoint": 0, - "vertex_from": "27", - "timestamp": "2025-11-27T01:21:47.980470789Z" + "vertex_from": "988", + "timestamp": "2025-11-27T04:01:46.29083-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2369102, - "rtt_ms": 2.369102, + "rtt_ns": 1531541, + "rtt_ms": 1.531541, "checkpoint": 0, - "vertex_from": "74", - "timestamp": "2025-11-27T01:21:47.980683618Z" + "vertex_from": "404", + "timestamp": "2025-11-27T04:01:46.290831-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2455622, - "rtt_ms": 2.455622, + "rtt_ns": 1492208, + "rtt_ms": 1.492208, "checkpoint": 0, - "vertex_from": "548", - "timestamp": "2025-11-27T01:21:47.980774068Z" + "vertex_from": "305", + "timestamp": "2025-11-27T04:01:46.291595-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2740871, - "rtt_ms": 2.740871, + "rtt_ns": 1435292, + "rtt_ms": 1.435292, "checkpoint": 0, - "vertex_from": "676", - "timestamp": "2025-11-27T01:21:47.980793528Z" + "vertex_from": "484", + "timestamp": "2025-11-27T04:01:46.291853-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 3007590, - "rtt_ms": 3.00759, + "operation": "add_edge", + "rtt_ns": 1419375, + "rtt_ms": 1.419375, "checkpoint": 0, - "vertex_from": "992", - "timestamp": "2025-11-27T01:21:47.981307576Z" + "vertex_from": "0", + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:46.29187-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3029100, - "rtt_ms": 3.0291, + "rtt_ns": 1826625, + "rtt_ms": 1.826625, "checkpoint": 0, - "vertex_from": "563", - "timestamp": "2025-11-27T01:21:47.981317316Z" + "vertex_from": "93", + "timestamp": "2025-11-27T04:01:46.291945-08:00" }, { "operation": "add_edge", - "rtt_ns": 3241110, - "rtt_ms": 3.24111, + "rtt_ns": 1686167, + "rtt_ms": 1.686167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:47.981540016Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:46.292122-08:00" }, { "operation": "add_edge", - "rtt_ns": 2587362, - "rtt_ms": 2.587362, + "rtt_ns": 1539417, + "rtt_ms": 1.539417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "484", - "timestamp": "2025-11-27T01:21:47.981559176Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:46.292241-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3108550, - "rtt_ms": 3.10855, + "operation": "add_vertex", + "rtt_ns": 1898333, + "rtt_ms": 1.898333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "93", - "timestamp": "2025-11-27T01:21:47.981564026Z" + "vertex_from": "265", + "timestamp": "2025-11-27T04:01:46.292583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107907, - "rtt_ms": 1.107907, + "rtt_ns": 1768167, + "rtt_ms": 1.768167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "27", - "timestamp": "2025-11-27T01:21:47.981579076Z" + "vertex_to": "988", + "timestamp": "2025-11-27T04:01:46.292598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457985, - "rtt_ms": 1.457985, + "rtt_ns": 1782917, + "rtt_ms": 1.782917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:47.981597605Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:46.292614-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1627945, - "rtt_ms": 1.627945, + "operation": "add_vertex", + "rtt_ns": 989792, + "rtt_ms": 0.989792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:47.982311963Z" + "vertex_from": "515", + "timestamp": "2025-11-27T04:01:46.293232-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1629995, - "rtt_ms": 1.629995, + "operation": "add_vertex", + "rtt_ns": 1061000, + "rtt_ms": 1.061, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:47.982404383Z" + "vertex_from": "563", + "timestamp": "2025-11-27T04:01:46.293662-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1591542, + "rtt_ms": 1.591542, + "checkpoint": 0, + "vertex_from": "676", + "timestamp": "2025-11-27T04:01:46.293717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616815, - "rtt_ms": 1.616815, + "rtt_ns": 1150708, + "rtt_ms": 1.150708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:47.982410803Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:46.293734-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1865750, + "rtt_ms": 1.86575, + "checkpoint": 0, + "vertex_from": "27", + "timestamp": "2025-11-27T04:01:46.293737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100507, - "rtt_ms": 1.100507, + "rtt_ns": 2989250, + "rtt_ms": 2.98925, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "563", - "timestamp": "2025-11-27T01:21:47.982418493Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:46.293753-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1150577, - "rtt_ms": 1.150577, + "operation": "add_edge", + "rtt_ns": 1906917, + "rtt_ms": 1.906917, "checkpoint": 0, - "vertex_from": "394", - "timestamp": "2025-11-27T01:21:47.982751532Z" + "vertex_from": "0", + "vertex_to": "484", + "timestamp": "2025-11-27T04:01:46.29376-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1260846, - "rtt_ms": 1.260846, + "rtt_ns": 1151375, + "rtt_ms": 1.151375, "checkpoint": 0, - "vertex_from": "226", - "timestamp": "2025-11-27T01:21:47.982823162Z" + "vertex_from": "992", + "timestamp": "2025-11-27T04:01:46.293767-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 686818, - "rtt_ms": 0.686818, + "operation": "add_edge", + "rtt_ns": 2171500, + "rtt_ms": 2.1715, "checkpoint": 0, - "vertex_from": "179", - "timestamp": "2025-11-27T01:21:47.983101221Z" + "vertex_from": "0", + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:46.293767-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 757057, - "rtt_ms": 0.757057, + "operation": "add_edge", + "rtt_ns": 2038791, + "rtt_ms": 2.038791, "checkpoint": 0, - "vertex_from": "336", - "timestamp": "2025-11-27T01:21:47.98317864Z" + "vertex_from": "0", + "vertex_to": "93", + "timestamp": "2025-11-27T04:01:46.293984-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2115803, - "rtt_ms": 2.115803, + "rtt_ns": 1176166, + "rtt_ms": 1.176166, "checkpoint": 0, - "vertex_from": "312", - "timestamp": "2025-11-27T01:21:47.983696379Z" + "vertex_from": "226", + "timestamp": "2025-11-27T04:01:46.294945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2435343, - "rtt_ms": 2.435343, + "rtt_ns": 1240167, + "rtt_ms": 1.240167, "checkpoint": 0, "vertex_from": "0", "vertex_to": "992", - "timestamp": "2025-11-27T01:21:47.983743279Z" + "timestamp": "2025-11-27T04:01:46.295008-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1376208, + "rtt_ms": 1.376208, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "563", + "timestamp": "2025-11-27T04:01:46.295039-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2206133, - "rtt_ms": 2.206133, + "rtt_ns": 1265208, + "rtt_ms": 1.265208, "checkpoint": 0, "vertex_from": "100", - "timestamp": "2025-11-27T01:21:47.983772749Z" + "timestamp": "2025-11-27T04:01:46.295252-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1505465, - "rtt_ms": 1.505465, + "operation": "add_edge", + "rtt_ns": 2023375, + "rtt_ms": 2.023375, "checkpoint": 0, - "vertex_from": "856", - "timestamp": "2025-11-27T01:21:47.983819638Z" + "vertex_from": "0", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:46.295256-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2385012, - "rtt_ms": 2.385012, + "rtt_ns": 1519417, + "rtt_ms": 1.519417, "checkpoint": 0, "vertex_from": "150", - "timestamp": "2025-11-27T01:21:47.983927308Z" + "timestamp": "2025-11-27T04:01:46.295281-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1522775, - "rtt_ms": 1.522775, + "rtt_ns": 1887875, + "rtt_ms": 1.887875, "checkpoint": 0, - "vertex_from": "82", - "timestamp": "2025-11-27T01:21:47.983929458Z" + "vertex_from": "74", + "timestamp": "2025-11-27T04:01:46.295644-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1290526, - "rtt_ms": 1.290526, + "operation": "add_vertex", + "rtt_ns": 1891958, + "rtt_ms": 1.891958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:47.984042878Z" + "vertex_from": "548", + "timestamp": "2025-11-27T04:01:46.295646-08:00" }, { "operation": "add_edge", - "rtt_ns": 975267, - "rtt_ms": 0.975267, + "rtt_ns": 1948875, + "rtt_ms": 1.948875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:47.984076848Z" + "vertex_to": "27", + "timestamp": "2025-11-27T04:01:46.295686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283305, - "rtt_ms": 1.283305, + "rtt_ns": 2090709, + "rtt_ms": 2.090709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:47.984107007Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:46.295809-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1342667, + "rtt_ms": 1.342667, + "checkpoint": 0, + "vertex_from": "394", + "timestamp": "2025-11-27T04:01:46.296383-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1453833, + "rtt_ms": 1.453833, + "checkpoint": 0, + "vertex_from": "856", + "timestamp": "2025-11-27T04:01:46.296713-08:00" }, { "operation": "add_edge", - "rtt_ns": 958557, - "rtt_ms": 0.958557, + "rtt_ns": 1825000, + "rtt_ms": 1.825, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:47.984137447Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:46.296771-08:00" }, { "operation": "add_edge", - "rtt_ns": 984107, - "rtt_ms": 0.984107, + "rtt_ns": 1552959, + "rtt_ms": 1.552959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:47.984913915Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:46.296834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167946, - "rtt_ms": 1.167946, + "rtt_ns": 1602125, + "rtt_ms": 1.602125, "checkpoint": 0, "vertex_from": "0", "vertex_to": "100", - "timestamp": "2025-11-27T01:21:47.984941045Z" + "timestamp": "2025-11-27T04:01:46.296855-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1123377, - "rtt_ms": 1.123377, + "operation": "add_vertex", + "rtt_ns": 1846083, + "rtt_ms": 1.846083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:47.984943395Z" + "vertex_from": "312", + "timestamp": "2025-11-27T04:01:46.296856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257336, - "rtt_ms": 1.257336, + "rtt_ns": 1804417, + "rtt_ms": 1.804417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:47.984954145Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:46.297452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029347, - "rtt_ms": 1.029347, + "rtt_ns": 1865875, + "rtt_ms": 1.865875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:47.984957095Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:46.29751-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1273495, - "rtt_ms": 1.273495, + "rtt_ns": 1873833, + "rtt_ms": 1.873833, "checkpoint": 0, - "vertex_from": "102", - "timestamp": "2025-11-27T01:21:47.985021254Z" + "vertex_from": "82", + "timestamp": "2025-11-27T04:01:46.297562-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1589124, - "rtt_ms": 1.589124, + "rtt_ns": 1805209, + "rtt_ms": 1.805209, "checkpoint": 0, - "vertex_from": "170", - "timestamp": "2025-11-27T01:21:47.985669922Z" + "vertex_from": "179", + "timestamp": "2025-11-27T04:01:46.297616-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1585485, - "rtt_ms": 1.585485, + "rtt_ns": 1031625, + "rtt_ms": 1.031625, "checkpoint": 0, - "vertex_from": "204", - "timestamp": "2025-11-27T01:21:47.985695392Z" + "vertex_from": "336", + "timestamp": "2025-11-27T04:01:46.297804-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1643485, - "rtt_ms": 1.643485, + "rtt_ns": 1182667, + "rtt_ms": 1.182667, "checkpoint": 0, - "vertex_from": "168", - "timestamp": "2025-11-27T01:21:47.985783072Z" + "vertex_from": "102", + "timestamp": "2025-11-27T04:01:46.298018-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1752574, - "rtt_ms": 1.752574, + "operation": "add_edge", + "rtt_ns": 1245333, + "rtt_ms": 1.245333, "checkpoint": 0, - "vertex_from": "81", - "timestamp": "2025-11-27T01:21:47.985798222Z" + "vertex_from": "0", + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:46.298101-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1475215, - "rtt_ms": 1.475215, + "operation": "add_edge", + "rtt_ns": 1770000, + "rtt_ms": 1.77, "checkpoint": 0, - "vertex_from": "564", - "timestamp": "2025-11-27T01:21:47.98643295Z" + "vertex_from": "0", + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:46.298153-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2203222, - "rtt_ms": 2.203222, + "operation": "add_edge", + "rtt_ns": 1475542, + "rtt_ms": 1.475542, "checkpoint": 0, - "vertex_from": "780", - "timestamp": "2025-11-27T01:21:47.987148537Z" + "vertex_from": "0", + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:46.298189-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2288292, - "rtt_ms": 2.288292, + "rtt_ns": 1345834, + "rtt_ms": 1.345834, "checkpoint": 0, - "vertex_from": "200", - "timestamp": "2025-11-27T01:21:47.987248607Z" + "vertex_from": "81", + "timestamp": "2025-11-27T04:01:46.298202-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2309872, - "rtt_ms": 2.309872, - "checkpoint": 0, - "vertex_from": "408", - "timestamp": "2025-11-27T01:21:47.987257357Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2245763, - "rtt_ms": 2.245763, + "rtt_ns": 1494375, + "rtt_ms": 1.494375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:47.987267867Z" + "vertex_from": "170", + "timestamp": "2025-11-27T04:01:46.29895-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2370172, - "rtt_ms": 2.370172, + "rtt_ns": 1227125, + "rtt_ms": 1.227125, "checkpoint": 0, "vertex_from": "366", - "timestamp": "2025-11-27T01:21:47.987286767Z" + "timestamp": "2025-11-27T04:01:46.299382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651605, - "rtt_ms": 1.651605, + "rtt_ns": 1331834, + "rtt_ms": 1.331834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:47.987347327Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:46.299534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723154, - "rtt_ms": 1.723154, + "rtt_ns": 1920208, + "rtt_ms": 1.920208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:47.987393696Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:46.299725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634984, - "rtt_ms": 1.634984, + "rtt_ns": 1723875, + "rtt_ms": 1.723875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:47.987433446Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:46.299742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652544, - "rtt_ms": 1.652544, + "rtt_ns": 2142750, + "rtt_ms": 2.14275, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:47.987435986Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:46.299759-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1653164, - "rtt_ms": 1.653164, + "operation": "add_vertex", + "rtt_ns": 1648042, + "rtt_ms": 1.648042, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:47.988086654Z" + "vertex_from": "780", + "timestamp": "2025-11-27T04:01:46.299839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023857, - "rtt_ms": 1.023857, + "rtt_ns": 2370042, + "rtt_ms": 2.370042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:47.988172814Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:46.299932-08:00" }, { "operation": "add_vertex", - "rtt_ns": 950827, - "rtt_ms": 0.950827, + "rtt_ns": 2085042, + "rtt_ms": 2.085042, "checkpoint": 0, - "vertex_from": "61", - "timestamp": "2025-11-27T01:21:47.988221894Z" + "vertex_from": "168", + "timestamp": "2025-11-27T04:01:46.300188-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1016317, - "rtt_ms": 1.016317, + "operation": "add_vertex", + "rtt_ns": 2784292, + "rtt_ms": 2.784292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:47.988265354Z" + "vertex_from": "204", + "timestamp": "2025-11-27T04:01:46.300296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058176, - "rtt_ms": 1.058176, + "rtt_ns": 1425958, + "rtt_ms": 1.425958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:47.988316503Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:46.300376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633804, - "rtt_ms": 1.633804, + "rtt_ns": 1281917, + "rtt_ms": 1.281917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "366", - "timestamp": "2025-11-27T01:21:47.988921211Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:46.301121-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1512845, - "rtt_ms": 1.512845, + "rtt_ns": 1604208, + "rtt_ms": 1.604208, "checkpoint": 0, - "vertex_from": "584", - "timestamp": "2025-11-27T01:21:47.988947781Z" + "vertex_from": "408", + "timestamp": "2025-11-27T04:01:46.301139-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1580995, - "rtt_ms": 1.580995, + "rtt_ns": 1393625, + "rtt_ms": 1.393625, "checkpoint": 0, - "vertex_from": "324", - "timestamp": "2025-11-27T01:21:47.988977161Z" + "vertex_from": "61", + "timestamp": "2025-11-27T04:01:46.301154-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1628704, - "rtt_ms": 1.628704, + "operation": "add_edge", + "rtt_ns": 1774834, + "rtt_ms": 1.774834, "checkpoint": 0, - "vertex_from": "590", - "timestamp": "2025-11-27T01:21:47.988977381Z" + "vertex_from": "0", + "vertex_to": "366", + "timestamp": "2025-11-27T04:01:46.301157-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1548255, - "rtt_ms": 1.548255, + "rtt_ns": 1530125, + "rtt_ms": 1.530125, "checkpoint": 0, - "vertex_from": "810", - "timestamp": "2025-11-27T01:21:47.988987501Z" + "vertex_from": "564", + "timestamp": "2025-11-27T04:01:46.301256-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1223586, - "rtt_ms": 1.223586, + "rtt_ns": 1552792, + "rtt_ms": 1.552792, "checkpoint": 0, - "vertex_from": "549", - "timestamp": "2025-11-27T01:21:47.98931304Z" + "vertex_from": "590", + "timestamp": "2025-11-27T04:01:46.301488-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1205656, - "rtt_ms": 1.205656, + "operation": "add_edge", + "rtt_ns": 1575959, + "rtt_ms": 1.575959, "checkpoint": 0, - "vertex_from": "118", - "timestamp": "2025-11-27T01:21:47.98938223Z" + "vertex_from": "0", + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:46.301872-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1129727, - "rtt_ms": 1.129727, + "rtt_ns": 1591916, + "rtt_ms": 1.591916, "checkpoint": 0, - "vertex_from": "396", - "timestamp": "2025-11-27T01:21:47.98944993Z" + "vertex_from": "324", + "timestamp": "2025-11-27T04:01:46.301971-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1787417, + "rtt_ms": 1.787417, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:46.301976-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1213666, - "rtt_ms": 1.213666, + "rtt_ns": 2244250, + "rtt_ms": 2.24425, "checkpoint": 0, - "vertex_from": "183", - "timestamp": "2025-11-27T01:21:47.98948358Z" + "vertex_from": "200", + "timestamp": "2025-11-27T04:01:46.301987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273936, - "rtt_ms": 1.273936, + "rtt_ns": 2041000, + "rtt_ms": 2.041, "checkpoint": 0, "vertex_from": "0", "vertex_to": "61", - "timestamp": "2025-11-27T01:21:47.98949642Z" + "timestamp": "2025-11-27T04:01:46.303195-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2073208, + "rtt_ms": 2.073208, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:46.303213-08:00" }, { "operation": "add_vertex", - "rtt_ns": 704388, - "rtt_ms": 0.704388, + "rtt_ns": 2071625, + "rtt_ms": 2.071625, "checkpoint": 0, - "vertex_from": "714", - "timestamp": "2025-11-27T01:21:47.989629219Z" + "vertex_from": "810", + "timestamp": "2025-11-27T04:01:46.30323-08:00" }, { "operation": "add_edge", - "rtt_ns": 833298, - "rtt_ms": 0.833298, + "rtt_ns": 1945167, + "rtt_ms": 1.945167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:47.989781399Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:01:46.303434-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 706237, - "rtt_ms": 0.706237, + "operation": "add_edge", + "rtt_ns": 2193833, + "rtt_ms": 2.193833, "checkpoint": 0, - "vertex_from": "147", - "timestamp": "2025-11-27T01:21:47.990205457Z" + "vertex_from": "0", + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:46.30345-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1704291, + "rtt_ms": 1.704291, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.303693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289926, - "rtt_ms": 1.289926, + "rtt_ns": 1787458, + "rtt_ms": 1.787458, "checkpoint": 0, "vertex_from": "0", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:47.990267497Z" + "timestamp": "2025-11-27T04:01:46.303759-08:00" }, { "operation": "add_vertex", - "rtt_ns": 692088, - "rtt_ms": 0.692088, + "rtt_ns": 2682208, + "rtt_ms": 2.682208, "checkpoint": 0, - "vertex_from": "54", - "timestamp": "2025-11-27T01:21:47.990477697Z" + "vertex_from": "584", + "timestamp": "2025-11-27T04:01:46.303804-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1514115, - "rtt_ms": 1.514115, + "operation": "add_vertex", + "rtt_ns": 2000166, + "rtt_ms": 2.000166, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "810", - "timestamp": "2025-11-27T01:21:47.990502496Z" + "vertex_from": "118", + "timestamp": "2025-11-27T04:01:46.303979-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1555785, - "rtt_ms": 1.555785, + "operation": "add_vertex", + "rtt_ns": 2278125, + "rtt_ms": 2.278125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "590", - "timestamp": "2025-11-27T01:21:47.990533496Z" + "vertex_from": "549", + "timestamp": "2025-11-27T04:01:46.304152-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1187208, + "rtt_ms": 1.187208, + "checkpoint": 0, + "vertex_from": "147", + "timestamp": "2025-11-27T04:01:46.304639-08:00" }, { "operation": "add_vertex", - "rtt_ns": 731578, - "rtt_ms": 0.731578, + "rtt_ns": 1199292, + "rtt_ms": 1.199292, "checkpoint": 0, "vertex_from": "196", - "timestamp": "2025-11-27T01:21:47.991025935Z" + "timestamp": "2025-11-27T04:01:46.304963-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1841894, - "rtt_ms": 1.841894, + "operation": "add_vertex", + "rtt_ns": 1584916, + "rtt_ms": 1.584916, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "118", - "timestamp": "2025-11-27T01:21:47.991224884Z" + "vertex_from": "714", + "timestamp": "2025-11-27T04:01:46.305021-08:00" }, { "operation": "add_vertex", - "rtt_ns": 750238, - "rtt_ms": 0.750238, + "rtt_ns": 2015459, + "rtt_ms": 2.015459, "checkpoint": 0, - "vertex_from": "738", - "timestamp": "2025-11-27T01:21:47.991256384Z" + "vertex_from": "183", + "timestamp": "2025-11-27T04:01:46.305212-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1960074, - "rtt_ms": 1.960074, + "operation": "add_vertex", + "rtt_ns": 2137417, + "rtt_ms": 2.137417, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:47.991273694Z" + "vertex_from": "54", + "timestamp": "2025-11-27T04:01:46.305831-08:00" }, { "operation": "add_vertex", - "rtt_ns": 740028, - "rtt_ms": 0.740028, + "rtt_ns": 2922667, + "rtt_ms": 2.922667, "checkpoint": 0, - "vertex_from": "212", - "timestamp": "2025-11-27T01:21:47.991276794Z" + "vertex_from": "396", + "timestamp": "2025-11-27T04:01:46.306136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981494, - "rtt_ms": 1.981494, + "rtt_ns": 3006250, + "rtt_ms": 3.00625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:47.991431934Z" + "vertex_to": "810", + "timestamp": "2025-11-27T04:01:46.306237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520515, - "rtt_ms": 1.520515, + "rtt_ns": 2437666, + "rtt_ms": 2.437666, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "54", - "timestamp": "2025-11-27T01:21:47.991998962Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:46.306243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009747, - "rtt_ms": 1.009747, + "rtt_ns": 2005750, + "rtt_ms": 2.00575, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:47.992036392Z" + "vertex_to": "714", + "timestamp": "2025-11-27T04:01:46.307027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864984, - "rtt_ms": 1.864984, + "rtt_ns": 2104333, + "rtt_ms": 2.104333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:47.992071171Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:46.307069-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449842, - "rtt_ms": 2.449842, + "rtt_ns": 1245166, + "rtt_ms": 1.245166, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "714", - "timestamp": "2025-11-27T01:21:47.992079601Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:01:46.307077-08:00" }, { "operation": "add_edge", - "rtt_ns": 2636461, - "rtt_ms": 2.636461, + "rtt_ns": 2928459, + "rtt_ms": 2.928459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "183", - "timestamp": "2025-11-27T01:21:47.992120481Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:46.30708-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1428195, - "rtt_ms": 1.428195, + "operation": "add_edge", + "rtt_ns": 3460041, + "rtt_ms": 3.460041, "checkpoint": 0, - "vertex_from": "535", - "timestamp": "2025-11-27T01:21:47.992704949Z" + "vertex_from": "0", + "vertex_to": "118", + "timestamp": "2025-11-27T04:01:46.307439-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1598105, - "rtt_ms": 1.598105, + "operation": "add_edge", + "rtt_ns": 2051291, + "rtt_ms": 2.051291, "checkpoint": 0, - "vertex_from": "178", - "timestamp": "2025-11-27T01:21:47.992826819Z" + "vertex_from": "0", + "vertex_to": "183", + "timestamp": "2025-11-27T04:01:46.307512-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1409045, - "rtt_ms": 1.409045, + "operation": "add_edge", + "rtt_ns": 2894208, + "rtt_ms": 2.894208, "checkpoint": 0, - "vertex_from": "672", - "timestamp": "2025-11-27T01:21:47.992846359Z" + "vertex_from": "0", + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:46.307533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594435, - "rtt_ms": 1.594435, + "rtt_ns": 1520750, + "rtt_ms": 1.52075, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "738", - "timestamp": "2025-11-27T01:21:47.992851209Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:46.307658-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1574045, - "rtt_ms": 1.574045, + "operation": "add_vertex", + "rtt_ns": 1423750, + "rtt_ms": 1.42375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:47.992851499Z" + "vertex_from": "738", + "timestamp": "2025-11-27T04:01:46.307665-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1164736, - "rtt_ms": 1.164736, + "rtt_ns": 1421750, + "rtt_ms": 1.42175, "checkpoint": 0, - "vertex_from": "232", - "timestamp": "2025-11-27T01:21:47.993203548Z" + "vertex_from": "212", + "timestamp": "2025-11-27T04:01:46.307666-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1254735, - "rtt_ms": 1.254735, + "rtt_ns": 1923291, + "rtt_ms": 1.923291, "checkpoint": 0, - "vertex_from": "31", - "timestamp": "2025-11-27T01:21:47.993261757Z" + "vertex_from": "535", + "timestamp": "2025-11-27T04:01:46.308994-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1272196, - "rtt_ms": 1.272196, + "rtt_ns": 1477959, + "rtt_ms": 1.477959, "checkpoint": 0, "vertex_from": "481", - "timestamp": "2025-11-27T01:21:47.993353967Z" + "timestamp": "2025-11-27T04:01:46.309013-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1356875, + "rtt_ms": 1.356875, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "738", + "timestamp": "2025-11-27T04:01:46.309022-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1302526, - "rtt_ms": 1.302526, + "rtt_ns": 1514208, + "rtt_ms": 1.514208, "checkpoint": 0, "vertex_from": "722", - "timestamp": "2025-11-27T01:21:47.993377037Z" + "timestamp": "2025-11-27T04:01:46.309028-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1422917, + "rtt_ms": 1.422917, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:46.30909-08:00" }, { "operation": "add_vertex", - "rtt_ns": 689707, - "rtt_ms": 0.689707, + "rtt_ns": 2158542, + "rtt_ms": 2.158542, "checkpoint": 0, - "vertex_from": "778", - "timestamp": "2025-11-27T01:21:47.993543416Z" + "vertex_from": "178", + "timestamp": "2025-11-27T04:01:46.309188-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2189863, - "rtt_ms": 2.189863, + "rtt_ns": 1585666, + "rtt_ms": 1.585666, "checkpoint": 0, "vertex_from": "114", - "timestamp": "2025-11-27T01:21:47.994312174Z" + "timestamp": "2025-11-27T04:01:46.309244-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1957434, - "rtt_ms": 1.957434, + "operation": "add_vertex", + "rtt_ns": 1812708, + "rtt_ms": 1.812708, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:47.994662723Z" + "vertex_from": "232", + "timestamp": "2025-11-27T04:01:46.309254-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1913583, - "rtt_ms": 1.913583, + "operation": "add_vertex", + "rtt_ns": 2179250, + "rtt_ms": 2.17925, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:47.994760432Z" + "vertex_from": "31", + "timestamp": "2025-11-27T04:01:46.309261-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2245917, + "rtt_ms": 2.245917, + "checkpoint": 0, + "vertex_from": "672", + "timestamp": "2025-11-27T04:01:46.309323-08:00" }, { "operation": "add_edge", - "rtt_ns": 2153953, - "rtt_ms": 2.153953, + "rtt_ns": 1120708, + "rtt_ms": 1.120708, "checkpoint": 0, "vertex_from": "0", "vertex_to": "178", - "timestamp": "2025-11-27T01:21:47.994981552Z" + "timestamp": "2025-11-27T04:01:46.310309-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1402666, + "rtt_ms": 1.402666, + "checkpoint": 0, + "vertex_from": "778", + "timestamp": "2025-11-27T04:01:46.310495-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2152943, - "rtt_ms": 2.152943, + "rtt_ns": 1636250, + "rtt_ms": 1.63625, "checkpoint": 0, "vertex_from": "849", - "timestamp": "2025-11-27T01:21:47.995006802Z" + "timestamp": "2025-11-27T04:01:46.31066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874353, - "rtt_ms": 1.874353, + "rtt_ns": 1957167, + "rtt_ms": 1.957167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:47.995078261Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:46.310951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729024, - "rtt_ms": 1.729024, + "rtt_ns": 1939542, + "rtt_ms": 1.939542, "checkpoint": 0, "vertex_from": "0", "vertex_to": "722", - "timestamp": "2025-11-27T01:21:47.995106721Z" + "timestamp": "2025-11-27T04:01:46.310968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929354, - "rtt_ms": 1.929354, + "rtt_ns": 1969792, + "rtt_ms": 1.969792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "31", - "timestamp": "2025-11-27T01:21:47.995191771Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:01:46.310983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846834, - "rtt_ms": 1.846834, + "rtt_ns": 1864708, + "rtt_ms": 1.864708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "481", - "timestamp": "2025-11-27T01:21:47.995201191Z" + "vertex_to": "31", + "timestamp": "2025-11-27T04:01:46.311126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673285, - "rtt_ms": 1.673285, + "rtt_ns": 1866958, + "rtt_ms": 1.866958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:47.995217181Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.311191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034136, - "rtt_ms": 1.034136, + "rtt_ns": 2052667, + "rtt_ms": 2.052667, "checkpoint": 0, "vertex_from": "0", "vertex_to": "114", - "timestamp": "2025-11-27T01:21:47.9953468Z" + "timestamp": "2025-11-27T04:01:46.311297-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 745078, - "rtt_ms": 0.745078, + "operation": "add_edge", + "rtt_ns": 2060625, + "rtt_ms": 2.060625, "checkpoint": 0, - "vertex_from": "21", - "timestamp": "2025-11-27T01:21:47.99550806Z" + "vertex_from": "0", + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:46.311315-08:00" }, { "operation": "add_vertex", - "rtt_ns": 854707, - "rtt_ms": 0.854707, + "rtt_ns": 1459542, + "rtt_ms": 1.459542, "checkpoint": 0, "vertex_from": "98", - "timestamp": "2025-11-27T01:21:47.99552295Z" + "timestamp": "2025-11-27T04:01:46.31177-08:00" }, { "operation": "add_edge", - "rtt_ns": 861327, - "rtt_ms": 0.861327, + "rtt_ns": 1562417, + "rtt_ms": 1.562417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "849", - "timestamp": "2025-11-27T01:21:47.995868629Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:46.312058-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 810528, - "rtt_ms": 0.810528, + "operation": "add_edge", + "rtt_ns": 1616459, + "rtt_ms": 1.616459, "checkpoint": 0, - "vertex_from": "52", - "timestamp": "2025-11-27T01:21:47.995890639Z" + "vertex_from": "0", + "vertex_to": "849", + "timestamp": "2025-11-27T04:01:46.312277-08:00" }, { "operation": "add_vertex", - "rtt_ns": 912177, - "rtt_ms": 0.912177, + "rtt_ns": 1670167, + "rtt_ms": 1.670167, "checkpoint": 0, - "vertex_from": "70", - "timestamp": "2025-11-27T01:21:47.995896329Z" + "vertex_from": "21", + "timestamp": "2025-11-27T04:01:46.312622-08:00" }, { "operation": "add_vertex", - "rtt_ns": 744998, - "rtt_ms": 0.744998, + "rtt_ns": 1450292, + "rtt_ms": 1.450292, "checkpoint": 0, "vertex_from": "704", - "timestamp": "2025-11-27T01:21:47.995938519Z" + "timestamp": "2025-11-27T04:01:46.312643-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1258736, - "rtt_ms": 1.258736, + "rtt_ns": 1681000, + "rtt_ms": 1.681, "checkpoint": 0, - "vertex_from": "402", - "timestamp": "2025-11-27T01:21:47.996479067Z" + "vertex_from": "70", + "timestamp": "2025-11-27T04:01:46.312653-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1452946, - "rtt_ms": 1.452946, + "rtt_ns": 1673125, + "rtt_ms": 1.673125, "checkpoint": 0, - "vertex_from": "902", - "timestamp": "2025-11-27T01:21:47.996566977Z" + "vertex_from": "52", + "timestamp": "2025-11-27T04:01:46.312656-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1388805, - "rtt_ms": 1.388805, + "rtt_ns": 1544959, + "rtt_ms": 1.544959, "checkpoint": 0, - "vertex_from": "562", - "timestamp": "2025-11-27T01:21:47.996592936Z" + "vertex_from": "902", + "timestamp": "2025-11-27T04:01:46.312672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098946, - "rtt_ms": 1.098946, + "rtt_ns": 1487083, + "rtt_ms": 1.487083, "checkpoint": 0, "vertex_from": "0", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:47.996622636Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1293546, - "rtt_ms": 1.293546, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:47.996802046Z" + "timestamp": "2025-11-27T04:01:46.313257-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1466436, - "rtt_ms": 1.466436, + "rtt_ns": 1275375, + "rtt_ms": 1.275375, "checkpoint": 0, - "vertex_from": "833", - "timestamp": "2025-11-27T01:21:47.996815226Z" + "vertex_from": "814", + "timestamp": "2025-11-27T04:01:46.313557-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1569185, - "rtt_ms": 1.569185, + "rtt_ns": 2306542, + "rtt_ms": 2.306542, "checkpoint": 0, - "vertex_from": "814", - "timestamp": "2025-11-27T01:21:47.997440904Z" + "vertex_from": "402", + "timestamp": "2025-11-27T04:01:46.313624-08:00" }, { "operation": "add_vertex", - "rtt_ns": 848438, - "rtt_ms": 0.848438, + "rtt_ns": 2337583, + "rtt_ms": 2.337583, "checkpoint": 0, - "vertex_from": "546", - "timestamp": "2025-11-27T01:21:47.997474074Z" + "vertex_from": "562", + "timestamp": "2025-11-27T04:01:46.313636-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1142776, - "rtt_ms": 1.142776, + "rtt_ns": 1820292, + "rtt_ms": 1.820292, "checkpoint": 0, - "vertex_from": "263", - "timestamp": "2025-11-27T01:21:47.997947542Z" + "vertex_from": "833", + "timestamp": "2025-11-27T04:01:46.313879-08:00" }, { "operation": "add_edge", - "rtt_ns": 2488642, - "rtt_ms": 2.488642, + "rtt_ns": 1468333, + "rtt_ms": 1.468333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:47.998427661Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:46.314091-08:00" }, { "operation": "add_edge", - "rtt_ns": 2593801, - "rtt_ms": 2.593801, + "rtt_ns": 1451125, + "rtt_ms": 1.451125, "checkpoint": 0, "vertex_from": "0", "vertex_to": "52", - "timestamp": "2025-11-27T01:21:47.99848492Z" + "timestamp": "2025-11-27T04:01:46.314108-08:00" }, { "operation": "add_edge", - "rtt_ns": 2636101, - "rtt_ms": 2.636101, + "rtt_ns": 1483875, + "rtt_ms": 1.483875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:47.99853279Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:46.314127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109643, - "rtt_ms": 2.109643, + "rtt_ns": 1582833, + "rtt_ms": 1.582833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:47.99858902Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:46.314237-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176593, - "rtt_ms": 2.176593, + "rtt_ns": 1580791, + "rtt_ms": 1.580791, "checkpoint": 0, "vertex_from": "0", "vertex_to": "902", - "timestamp": "2025-11-27T01:21:47.99874399Z" + "timestamp": "2025-11-27T04:01:46.314253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2198133, - "rtt_ms": 2.198133, + "rtt_ns": 1102333, + "rtt_ms": 1.102333, "checkpoint": 0, "vertex_from": "0", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:47.998791529Z" + "timestamp": "2025-11-27T04:01:46.314739-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028193, - "rtt_ms": 2.028193, + "rtt_ns": 1136292, + "rtt_ms": 1.136292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:47.998843729Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:46.31476-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1386475, - "rtt_ms": 1.386475, + "operation": "add_vertex", + "rtt_ns": 1519792, + "rtt_ms": 1.519792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:47.998860949Z" + "vertex_from": "546", + "timestamp": "2025-11-27T04:01:46.314778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478545, - "rtt_ms": 1.478545, + "rtt_ns": 1482583, + "rtt_ms": 1.482583, "checkpoint": 0, "vertex_from": "0", "vertex_to": "814", - "timestamp": "2025-11-27T01:21:47.998919839Z" + "timestamp": "2025-11-27T04:01:46.31504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022767, - "rtt_ms": 1.022767, + "rtt_ns": 1490000, + "rtt_ms": 1.49, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:47.998970669Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:46.315369-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1538083, + "rtt_ms": 1.538083, + "checkpoint": 0, + "vertex_from": "936", + "timestamp": "2025-11-27T04:01:46.315794-08:00" }, { "operation": "add_vertex", - "rtt_ns": 750068, - "rtt_ms": 0.750068, + "rtt_ns": 1566125, + "rtt_ms": 1.566125, "checkpoint": 0, "vertex_from": "569", - "timestamp": "2025-11-27T01:21:47.999285468Z" + "timestamp": "2025-11-27T04:01:46.315804-08:00" }, { "operation": "add_vertex", - "rtt_ns": 811208, - "rtt_ms": 0.811208, + "rtt_ns": 1709292, + "rtt_ms": 1.709292, "checkpoint": 0, "vertex_from": "580", - "timestamp": "2025-11-27T01:21:47.999298378Z" + "timestamp": "2025-11-27T04:01:46.315838-08:00" }, { "operation": "add_vertex", - "rtt_ns": 765708, - "rtt_ms": 0.765708, + "rtt_ns": 1964042, + "rtt_ms": 1.964042, "checkpoint": 0, - "vertex_from": "936", - "timestamp": "2025-11-27T01:21:47.999355918Z" + "vertex_from": "776", + "timestamp": "2025-11-27T04:01:46.316074-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1313000, + "rtt_ms": 1.313, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:46.316091-08:00" }, { "operation": "add_vertex", - "rtt_ns": 926267, - "rtt_ms": 0.926267, + "rtt_ns": 2111792, + "rtt_ms": 2.111792, "checkpoint": 0, - "vertex_from": "776", - "timestamp": "2025-11-27T01:21:47.999356068Z" + "vertex_from": "263", + "timestamp": "2025-11-27T04:01:46.316203-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1108750, + "rtt_ms": 1.10875, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "569", + "timestamp": "2025-11-27T04:01:46.316913-08:00" }, { "operation": "add_vertex", - "rtt_ns": 701677, - "rtt_ms": 0.701677, + "rtt_ns": 1564000, + "rtt_ms": 1.564, "checkpoint": 0, - "vertex_from": "659", - "timestamp": "2025-11-27T01:21:47.999448167Z" + "vertex_from": "969", + "timestamp": "2025-11-27T04:01:46.316935-08:00" }, { "operation": "add_vertex", - "rtt_ns": 670768, - "rtt_ms": 0.670768, + "rtt_ns": 2192250, + "rtt_ms": 2.19225, "checkpoint": 0, "vertex_from": "578", - "timestamp": "2025-11-27T01:21:47.999463847Z" + "timestamp": "2025-11-27T04:01:46.316953-08:00" }, { "operation": "add_vertex", - "rtt_ns": 693218, - "rtt_ms": 0.693218, + "rtt_ns": 1919125, + "rtt_ms": 1.919125, "checkpoint": 0, "vertex_from": "552", - "timestamp": "2025-11-27T01:21:47.999539017Z" + "timestamp": "2025-11-27T04:01:46.316961-08:00" }, { "operation": "add_vertex", - "rtt_ns": 758888, - "rtt_ms": 0.758888, + "rtt_ns": 2473417, + "rtt_ms": 2.473417, "checkpoint": 0, - "vertex_from": "969", - "timestamp": "2025-11-27T01:21:47.999621767Z" + "vertex_from": "659", + "timestamp": "2025-11-27T04:01:46.317214-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1394834, + "rtt_ms": 1.394834, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:46.317233-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1552167, + "rtt_ms": 1.552167, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:46.317347-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1290958, + "rtt_ms": 1.290958, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:46.317365-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1389958, + "rtt_ms": 1.389958, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:46.317594-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1438075, - "rtt_ms": 1.438075, + "rtt_ns": 1529125, + "rtt_ms": 1.529125, "checkpoint": 0, "vertex_from": "289", - "timestamp": "2025-11-27T01:21:48.000359244Z" + "timestamp": "2025-11-27T04:01:46.317624-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1532583, + "rtt_ms": 1.532583, + "checkpoint": 0, + "vertex_from": "344", + "timestamp": "2025-11-27T04:01:46.318767-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1501855, - "rtt_ms": 1.501855, + "rtt_ns": 1419417, + "rtt_ms": 1.419417, + "checkpoint": 0, + "vertex_from": "374", + "timestamp": "2025-11-27T04:01:46.318785-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1888083, + "rtt_ms": 1.888083, "checkpoint": 0, "vertex_from": "854", - "timestamp": "2025-11-27T01:21:48.000477594Z" + "timestamp": "2025-11-27T04:01:46.318807-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1889974, - "rtt_ms": 1.889974, + "operation": "add_vertex", + "rtt_ns": 1752625, + "rtt_ms": 1.752625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "569", - "timestamp": "2025-11-27T01:21:48.001175762Z" + "vertex_from": "37", + "timestamp": "2025-11-27T04:01:46.319102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920593, - "rtt_ms": 1.920593, + "rtt_ns": 2265375, + "rtt_ms": 2.265375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:48.001219191Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:46.319227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945633, - "rtt_ms": 1.945633, + "rtt_ns": 2028416, + "rtt_ms": 2.028416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "936", - "timestamp": "2025-11-27T01:21:48.001301741Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:01:46.319243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873404, - "rtt_ms": 1.873404, + "rtt_ns": 2293834, + "rtt_ms": 2.293834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "659", - "timestamp": "2025-11-27T01:21:48.001321991Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:46.319247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979923, - "rtt_ms": 1.979923, + "rtt_ns": 1766250, + "rtt_ms": 1.76625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:48.001336121Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:46.31939-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1813917, + "rtt_ms": 1.813917, + "checkpoint": 0, + "vertex_from": "721", + "timestamp": "2025-11-27T04:01:46.319409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978514, - "rtt_ms": 1.978514, + "rtt_ns": 2474042, + "rtt_ms": 2.474042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.001442531Z" + "vertex_to": "969", + "timestamp": "2025-11-27T04:01:46.319409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913574, - "rtt_ms": 1.913574, + "rtt_ns": 1104750, + "rtt_ms": 1.10475, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.001452731Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:46.320207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875824, - "rtt_ms": 1.875824, + "rtt_ns": 1624291, + "rtt_ms": 1.624291, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "969", - "timestamp": "2025-11-27T01:21:48.001497741Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:46.320392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168306, - "rtt_ms": 1.168306, + "rtt_ns": 1624500, + "rtt_ms": 1.6245, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:48.00152785Z" + "vertex_to": "374", + "timestamp": "2025-11-27T04:01:46.32041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054486, - "rtt_ms": 1.054486, + "rtt_ns": 1618250, + "rtt_ms": 1.61825, "checkpoint": 0, "vertex_from": "0", "vertex_to": "854", - "timestamp": "2025-11-27T01:21:48.00153236Z" + "timestamp": "2025-11-27T04:01:46.320426-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 850317, - "rtt_ms": 0.850317, + "operation": "add_edge", + "rtt_ns": 1307250, + "rtt_ms": 1.30725, "checkpoint": 0, - "vertex_from": "344", - "timestamp": "2025-11-27T01:21:48.002028169Z" + "vertex_from": "0", + "vertex_to": "721", + "timestamp": "2025-11-27T04:01:46.320717-08:00" }, { "operation": "add_vertex", - "rtt_ns": 744908, - "rtt_ms": 0.744908, + "rtt_ns": 1529584, + "rtt_ms": 1.529584, "checkpoint": 0, - "vertex_from": "374", - "timestamp": "2025-11-27T01:21:48.002048629Z" + "vertex_from": "101", + "timestamp": "2025-11-27T04:01:46.320774-08:00" }, { "operation": "add_vertex", - "rtt_ns": 731888, - "rtt_ms": 0.731888, + "rtt_ns": 1588709, + "rtt_ms": 1.588709, "checkpoint": 0, - "vertex_from": "60", - "timestamp": "2025-11-27T01:21:48.002068949Z" + "vertex_from": "78", + "timestamp": "2025-11-27T04:01:46.320837-08:00" }, { "operation": "add_vertex", - "rtt_ns": 746728, - "rtt_ms": 0.746728, + "rtt_ns": 1739875, + "rtt_ms": 1.739875, "checkpoint": 0, - "vertex_from": "721", - "timestamp": "2025-11-27T01:21:48.002069609Z" + "vertex_from": "60", + "timestamp": "2025-11-27T04:01:46.320969-08:00" }, { "operation": "add_vertex", - "rtt_ns": 736968, - "rtt_ms": 0.736968, + "rtt_ns": 1593959, + "rtt_ms": 1.593959, "checkpoint": 0, - "vertex_from": "826", - "timestamp": "2025-11-27T01:21:48.002273118Z" + "vertex_from": "459", + "timestamp": "2025-11-27T04:01:46.320986-08:00" }, { "operation": "add_vertex", - "rtt_ns": 758088, - "rtt_ms": 0.758088, + "rtt_ns": 1682750, + "rtt_ms": 1.68275, "checkpoint": 0, "vertex_from": "346", - "timestamp": "2025-11-27T01:21:48.002286928Z" + "timestamp": "2025-11-27T04:01:46.321094-08:00" }, { "operation": "add_vertex", - "rtt_ns": 808297, - "rtt_ms": 0.808297, + "rtt_ns": 1529625, + "rtt_ms": 1.529625, "checkpoint": 0, - "vertex_from": "459", - "timestamp": "2025-11-27T01:21:48.002307718Z" + "vertex_from": "826", + "timestamp": "2025-11-27T04:01:46.321739-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1779165, - "rtt_ms": 1.779165, + "rtt_ns": 1314375, + "rtt_ms": 1.314375, "checkpoint": 0, - "vertex_from": "37", - "timestamp": "2025-11-27T01:21:48.002999595Z" + "vertex_from": "126", + "timestamp": "2025-11-27T04:01:46.321741-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2099823, - "rtt_ms": 2.099823, + "rtt_ns": 1408291, + "rtt_ms": 1.408291, "checkpoint": 0, - "vertex_from": "78", - "timestamp": "2025-11-27T01:21:48.003554574Z" + "vertex_from": "770", + "timestamp": "2025-11-27T04:01:46.321802-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2138793, - "rtt_ms": 2.138793, + "rtt_ns": 1409041, + "rtt_ms": 1.409041, "checkpoint": 0, - "vertex_from": "101", - "timestamp": "2025-11-27T01:21:48.003583114Z" + "vertex_from": "333", + "timestamp": "2025-11-27T04:01:46.321819-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1919743, - "rtt_ms": 1.919743, + "operation": "add_vertex", + "rtt_ns": 1378250, + "rtt_ms": 1.37825, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "60", - "timestamp": "2025-11-27T01:21:48.003988972Z" + "vertex_from": "142", + "timestamp": "2025-11-27T04:01:46.322099-08:00" }, { "operation": "add_edge", - "rtt_ns": 2009713, - "rtt_ms": 2.009713, + "rtt_ns": 1338333, + "rtt_ms": 1.338333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "721", - "timestamp": "2025-11-27T01:21:48.004079652Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:01:46.322112-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053773, - "rtt_ms": 2.053773, + "rtt_ns": 1295792, + "rtt_ms": 1.295792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:48.004082352Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:01:46.322265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807574, - "rtt_ms": 1.807574, + "rtt_ns": 1318583, + "rtt_ms": 1.318583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "346", - "timestamp": "2025-11-27T01:21:48.004094862Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:01:46.322305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2090853, - "rtt_ms": 2.090853, + "rtt_ns": 1903458, + "rtt_ms": 1.903458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "374", - "timestamp": "2025-11-27T01:21:48.004139882Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:46.322741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957163, - "rtt_ms": 1.957163, + "rtt_ns": 1499500, + "rtt_ms": 1.4995, "checkpoint": 0, "vertex_from": "0", "vertex_to": "826", - "timestamp": "2025-11-27T01:21:48.004230771Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1927473, - "rtt_ms": 1.927473, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "459", - "timestamp": "2025-11-27T01:21:48.004235561Z" + "timestamp": "2025-11-27T04:01:46.323239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254786, - "rtt_ms": 1.254786, + "rtt_ns": 2163334, + "rtt_ms": 2.163334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:48.004254631Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:01:46.323258-08:00" }, { - "operation": "add_edge", - "rtt_ns": 803037, - "rtt_ms": 0.803037, + "operation": "add_vertex", + "rtt_ns": 1313083, + "rtt_ms": 1.313083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "101", - "timestamp": "2025-11-27T01:21:48.004386661Z" + "vertex_from": "230", + "timestamp": "2025-11-27T04:01:46.323427-08:00" }, { "operation": "add_edge", - "rtt_ns": 846427, - "rtt_ms": 0.846427, + "rtt_ns": 1701750, + "rtt_ms": 1.70175, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:48.004401291Z" + "vertex_to": "126", + "timestamp": "2025-11-27T04:01:46.323443-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1184256, - "rtt_ms": 1.184256, + "rtt_ns": 1256125, + "rtt_ms": 1.256125, "checkpoint": 0, - "vertex_from": "770", - "timestamp": "2025-11-27T01:21:48.005176838Z" + "vertex_from": "197", + "timestamp": "2025-11-27T04:01:46.323522-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1121626, - "rtt_ms": 1.121626, + "operation": "add_edge", + "rtt_ns": 1766125, + "rtt_ms": 1.766125, "checkpoint": 0, - "vertex_from": "126", - "timestamp": "2025-11-27T01:21:48.005205928Z" + "vertex_from": "0", + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:46.323568-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1128096, - "rtt_ms": 1.128096, + "operation": "add_edge", + "rtt_ns": 2169083, + "rtt_ms": 2.169083, "checkpoint": 0, - "vertex_from": "333", - "timestamp": "2025-11-27T01:21:48.005211898Z" + "vertex_from": "0", + "vertex_to": "333", + "timestamp": "2025-11-27T04:01:46.323989-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1128266, - "rtt_ms": 1.128266, + "rtt_ns": 1746500, + "rtt_ms": 1.7465, "checkpoint": 0, - "vertex_from": "142", - "timestamp": "2025-11-27T01:21:48.005225018Z" + "vertex_from": "386", + "timestamp": "2025-11-27T04:01:46.324054-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1102516, - "rtt_ms": 1.102516, + "operation": "add_edge", + "rtt_ns": 2296000, + "rtt_ms": 2.296, "checkpoint": 0, - "vertex_from": "230", - "timestamp": "2025-11-27T01:21:48.005245258Z" + "vertex_from": "0", + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:46.324396-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1453766, - "rtt_ms": 1.453766, + "rtt_ns": 1710375, + "rtt_ms": 1.710375, "checkpoint": 0, - "vertex_from": "386", - "timestamp": "2025-11-27T01:21:48.005691647Z" + "vertex_from": "632", + "timestamp": "2025-11-27T04:01:46.324453-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1749105, - "rtt_ms": 1.749105, + "rtt_ns": 1126917, + "rtt_ms": 1.126917, "checkpoint": 0, - "vertex_from": "197", - "timestamp": "2025-11-27T01:21:48.005985426Z" + "vertex_from": "802", + "timestamp": "2025-11-27T04:01:46.324572-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1968884, - "rtt_ms": 1.968884, + "rtt_ns": 1502041, + "rtt_ms": 1.502041, "checkpoint": 0, - "vertex_from": "632", - "timestamp": "2025-11-27T01:21:48.006249645Z" + "vertex_from": "709", + "timestamp": "2025-11-27T04:01:46.324742-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2011704, - "rtt_ms": 2.011704, + "rtt_ns": 1212250, + "rtt_ms": 1.21225, "checkpoint": 0, - "vertex_from": "709", - "timestamp": "2025-11-27T01:21:48.006402455Z" + "vertex_from": "284", + "timestamp": "2025-11-27T04:01:46.324781-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2040533, - "rtt_ms": 2.040533, + "rtt_ns": 1815208, + "rtt_ms": 1.815208, "checkpoint": 0, "vertex_from": "450", - "timestamp": "2025-11-27T01:21:48.006444804Z" + "timestamp": "2025-11-27T04:01:46.325076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565546, - "rtt_ms": 1.565546, + "rtt_ns": 1798791, + "rtt_ms": 1.798791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.006742954Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1986194, - "rtt_ms": 1.986194, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "126", - "timestamp": "2025-11-27T01:21:48.007192542Z" + "vertex_to": "230", + "timestamp": "2025-11-27T04:01:46.325226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057534, - "rtt_ms": 2.057534, + "rtt_ns": 1714334, + "rtt_ms": 1.714334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "333", - "timestamp": "2025-11-27T01:21:48.007270032Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:46.325237-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122154, - "rtt_ms": 2.122154, + "rtt_ns": 1433708, + "rtt_ms": 1.433708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "230", - "timestamp": "2025-11-27T01:21:48.007367652Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:46.325488-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191813, - "rtt_ms": 2.191813, + "rtt_ns": 921792, + "rtt_ms": 0.921792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:48.007417341Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:46.325703-08:00" }, { "operation": "add_vertex", - "rtt_ns": 673298, - "rtt_ms": 0.673298, + "rtt_ns": 1769833, + "rtt_ms": 1.769833, "checkpoint": 0, - "vertex_from": "802", - "timestamp": "2025-11-27T01:21:48.007423021Z" + "vertex_from": "924", + "timestamp": "2025-11-27T04:01:46.326169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525435, - "rtt_ms": 1.525435, + "rtt_ns": 1446708, + "rtt_ms": 1.446708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:48.007511381Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 648988, - "rtt_ms": 0.648988, - "checkpoint": 0, - "vertex_from": "779", - "timestamp": "2025-11-27T01:21:48.00792412Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:46.326189-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 751998, - "rtt_ms": 0.751998, + "operation": "add_edge", + "rtt_ns": 1752083, + "rtt_ms": 1.752083, "checkpoint": 0, - "vertex_from": "284", - "timestamp": "2025-11-27T01:21:48.00794941Z" + "vertex_from": "0", + "vertex_to": "632", + "timestamp": "2025-11-27T04:01:46.326205-08:00" }, { "operation": "add_edge", - "rtt_ns": 2344832, - "rtt_ms": 2.344832, + "rtt_ns": 1694417, + "rtt_ms": 1.694417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:48.008036969Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:46.326266-08:00" }, { "operation": "add_vertex", - "rtt_ns": 673107, - "rtt_ms": 0.673107, + "rtt_ns": 1039166, + "rtt_ms": 1.039166, "checkpoint": 0, - "vertex_from": "924", - "timestamp": "2025-11-27T01:21:48.008042989Z" + "vertex_from": "585", + "timestamp": "2025-11-27T04:01:46.326283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836014, - "rtt_ms": 1.836014, + "rtt_ns": 1458083, + "rtt_ms": 1.458083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "632", - "timestamp": "2025-11-27T01:21:48.008086629Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:46.326535-08:00" }, { "operation": "add_vertex", - "rtt_ns": 708058, - "rtt_ms": 0.708058, + "rtt_ns": 1399958, + "rtt_ms": 1.399958, "checkpoint": 0, "vertex_from": "480", - "timestamp": "2025-11-27T01:21:48.008134179Z" + "timestamp": "2025-11-27T04:01:46.326627-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1760774, - "rtt_ms": 1.760774, + "operation": "add_vertex", + "rtt_ns": 1022625, + "rtt_ms": 1.022625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:48.008163799Z" + "vertex_from": "908", + "timestamp": "2025-11-27T04:01:46.326727-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1724205, - "rtt_ms": 1.724205, + "operation": "add_vertex", + "rtt_ns": 1417958, + "rtt_ms": 1.417958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:48.008169819Z" + "vertex_from": "149", + "timestamp": "2025-11-27T04:01:46.326907-08:00" }, { "operation": "add_vertex", - "rtt_ns": 823797, - "rtt_ms": 0.823797, + "rtt_ns": 2946084, + "rtt_ms": 2.946084, "checkpoint": 0, - "vertex_from": "585", - "timestamp": "2025-11-27T01:21:48.008337938Z" + "vertex_from": "779", + "timestamp": "2025-11-27T04:01:46.32694-08:00" }, { - "operation": "add_edge", - "rtt_ns": 939687, - "rtt_ms": 0.939687, + "operation": "add_vertex", + "rtt_ns": 1267500, + "rtt_ms": 1.2675, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:48.008363668Z" + "vertex_from": "524", + "timestamp": "2025-11-27T04:01:46.327535-08:00" }, { "operation": "add_edge", - "rtt_ns": 702977, - "rtt_ms": 0.702977, + "rtt_ns": 1718875, + "rtt_ms": 1.718875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "779", - "timestamp": "2025-11-27T01:21:48.008629627Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:46.328002-08:00" }, { "operation": "add_edge", - "rtt_ns": 721227, - "rtt_ms": 0.721227, + "rtt_ns": 1951417, + "rtt_ms": 1.951417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:48.008671067Z" + "vertex_to": "924", + "timestamp": "2025-11-27T04:01:46.32812-08:00" }, { "operation": "add_edge", - "rtt_ns": 571908, - "rtt_ms": 0.571908, + "rtt_ns": 1218250, + "rtt_ms": 1.21825, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:48.008706517Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:46.328126-08:00" }, { "operation": "add_edge", - "rtt_ns": 667528, - "rtt_ms": 0.667528, + "rtt_ns": 1520791, + "rtt_ms": 1.520791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "924", - "timestamp": "2025-11-27T01:21:48.008711217Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:46.328148-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 635848, - "rtt_ms": 0.635848, + "operation": "add_edge", + "rtt_ns": 1481125, + "rtt_ms": 1.481125, "checkpoint": 0, - "vertex_from": "908", - "timestamp": "2025-11-27T01:21:48.008727717Z" + "vertex_from": "0", + "vertex_to": "908", + "timestamp": "2025-11-27T04:01:46.328208-08:00" }, { "operation": "add_vertex", - "rtt_ns": 611858, - "rtt_ms": 0.611858, - "checkpoint": 0, - "vertex_from": "524", - "timestamp": "2025-11-27T01:21:48.008979906Z" - }, - { - "operation": "add_edge", - "rtt_ns": 665828, - "rtt_ms": 0.665828, + "rtt_ns": 2061792, + "rtt_ms": 2.061792, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:48.009004446Z" + "vertex_from": "462", + "timestamp": "2025-11-27T04:01:46.328252-08:00" }, { "operation": "add_vertex", - "rtt_ns": 562678, - "rtt_ms": 0.562678, + "rtt_ns": 1734000, + "rtt_ms": 1.734, "checkpoint": 0, "vertex_from": "434", - "timestamp": "2025-11-27T01:21:48.009195945Z" + "timestamp": "2025-11-27T04:01:46.328272-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1253276, - "rtt_ms": 1.253276, + "rtt_ns": 2073291, + "rtt_ms": 2.073291, "checkpoint": 0, - "vertex_from": "149", - "timestamp": "2025-11-27T01:21:48.009295985Z" + "vertex_from": "280", + "timestamp": "2025-11-27T04:01:46.328279-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 637348, - "rtt_ms": 0.637348, + "operation": "add_edge", + "rtt_ns": 1915125, + "rtt_ms": 1.915125, "checkpoint": 0, - "vertex_from": "225", - "timestamp": "2025-11-27T01:21:48.009352465Z" + "vertex_from": "0", + "vertex_to": "779", + "timestamp": "2025-11-27T04:01:46.328856-08:00" }, { "operation": "add_edge", - "rtt_ns": 638418, - "rtt_ms": 0.638418, + "rtt_ns": 1769458, + "rtt_ms": 1.769458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "908", - "timestamp": "2025-11-27T01:21:48.009366915Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:46.329305-08:00" }, { "operation": "add_vertex", - "rtt_ns": 594928, - "rtt_ms": 0.594928, + "rtt_ns": 1390167, + "rtt_ms": 1.390167, "checkpoint": 0, - "vertex_from": "792", - "timestamp": "2025-11-27T01:21:48.009602654Z" + "vertex_from": "241", + "timestamp": "2025-11-27T04:01:46.329394-08:00" }, { - "operation": "add_edge", - "rtt_ns": 646298, - "rtt_ms": 0.646298, + "operation": "add_vertex", + "rtt_ns": 1569083, + "rtt_ms": 1.569083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.009626754Z" + "vertex_from": "654", + "timestamp": "2025-11-27T04:01:46.32969-08:00" }, { "operation": "add_edge", - "rtt_ns": 978677, - "rtt_ms": 0.978677, + "rtt_ns": 1719542, + "rtt_ms": 1.719542, "checkpoint": 0, "vertex_from": "0", "vertex_to": "434", - "timestamp": "2025-11-27T01:21:48.010175102Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2155553, - "rtt_ms": 2.155553, - "checkpoint": 0, - "vertex_from": "462", - "timestamp": "2025-11-27T01:21:48.010322802Z" + "timestamp": "2025-11-27T04:01:46.329992-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2269432, - "rtt_ms": 2.269432, + "rtt_ns": 1855209, + "rtt_ms": 1.855209, "checkpoint": 0, - "vertex_from": "280", - "timestamp": "2025-11-27T01:21:48.010443541Z" + "vertex_from": "85", + "timestamp": "2025-11-27T04:01:46.330066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100826, - "rtt_ms": 1.100826, + "rtt_ns": 1801708, + "rtt_ms": 1.801708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:48.010453981Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:46.330081-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1784224, - "rtt_ms": 1.784224, + "rtt_ns": 1932959, + "rtt_ms": 1.932959, "checkpoint": 0, - "vertex_from": "654", - "timestamp": "2025-11-27T01:21:48.010494041Z" + "vertex_from": "792", + "timestamp": "2025-11-27T04:01:46.330082-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1131226, - "rtt_ms": 1.131226, + "operation": "add_edge", + "rtt_ns": 1914625, + "rtt_ms": 1.914625, "checkpoint": 0, - "vertex_from": "85", - "timestamp": "2025-11-27T01:21:48.010503681Z" + "vertex_from": "0", + "vertex_to": "462", + "timestamp": "2025-11-27T04:01:46.330166-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1864074, - "rtt_ms": 1.864074, + "rtt_ns": 1374042, + "rtt_ms": 1.374042, "checkpoint": 0, - "vertex_from": "241", - "timestamp": "2025-11-27T01:21:48.010537821Z" + "vertex_from": "71", + "timestamp": "2025-11-27T04:01:46.330233-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1690054, - "rtt_ms": 1.690054, + "operation": "add_vertex", + "rtt_ns": 1308416, + "rtt_ms": 1.308416, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:48.010987139Z" + "vertex_from": "909", + "timestamp": "2025-11-27T04:01:46.331301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490265, - "rtt_ms": 1.490265, + "rtt_ns": 1627958, + "rtt_ms": 1.627958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:48.011093549Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:46.331318-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1469075, - "rtt_ms": 1.469075, + "rtt_ns": 3207333, + "rtt_ms": 3.207333, "checkpoint": 0, - "vertex_from": "71", - "timestamp": "2025-11-27T01:21:48.011099659Z" + "vertex_from": "225", + "timestamp": "2025-11-27T04:01:46.331334-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1374526, - "rtt_ms": 1.374526, + "rtt_ns": 2042959, + "rtt_ms": 2.042959, "checkpoint": 0, "vertex_from": "550", - "timestamp": "2025-11-27T01:21:48.011552168Z" + "timestamp": "2025-11-27T04:01:46.331348-08:00" }, { "operation": "add_vertex", - "rtt_ns": 712788, - "rtt_ms": 0.712788, - "checkpoint": 0, - "vertex_from": "692", - "timestamp": "2025-11-27T01:21:48.011809647Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1904793, - "rtt_ms": 1.904793, + "rtt_ns": 1331833, + "rtt_ms": 1.331833, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "462", - "timestamp": "2025-11-27T01:21:48.012228145Z" + "vertex_from": "692", + "timestamp": "2025-11-27T04:01:46.331499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320942, - "rtt_ms": 2.320942, + "rtt_ns": 1560459, + "rtt_ms": 1.560459, "checkpoint": 0, "vertex_from": "0", "vertex_to": "85", - "timestamp": "2025-11-27T01:21:48.012825173Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 651958, - "rtt_ms": 0.651958, - "checkpoint": 0, - "vertex_from": "213", - "timestamp": "2025-11-27T01:21:48.012882583Z" + "timestamp": "2025-11-27T04:01:46.331627-08:00" }, { "operation": "add_edge", - "rtt_ns": 2526572, - "rtt_ms": 2.526572, + "rtt_ns": 1563709, + "rtt_ms": 1.563709, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:48.012970583Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:46.331646-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495432, - "rtt_ms": 2.495432, + "rtt_ns": 1464875, + "rtt_ms": 1.464875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:48.012990303Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:46.331699-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2560692, - "rtt_ms": 2.560692, + "rtt_ns": 1686917, + "rtt_ms": 1.686917, "checkpoint": 0, - "vertex_from": "909", - "timestamp": "2025-11-27T01:21:48.013019233Z" + "vertex_from": "608", + "timestamp": "2025-11-27T04:01:46.331769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965894, - "rtt_ms": 1.965894, + "rtt_ns": 2556959, + "rtt_ms": 2.556959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:48.013066073Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:01:46.331951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605721, - "rtt_ms": 2.605721, + "rtt_ns": 1195459, + "rtt_ms": 1.195459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "241", - "timestamp": "2025-11-27T01:21:48.013144062Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:46.332965-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1845064, - "rtt_ms": 1.845064, + "operation": "add_vertex", + "rtt_ns": 1646583, + "rtt_ms": 1.646583, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "692", - "timestamp": "2025-11-27T01:21:48.013655461Z" + "vertex_from": "213", + "timestamp": "2025-11-27T04:01:46.332966-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2702622, - "rtt_ms": 2.702622, + "operation": "add_edge", + "rtt_ns": 1788500, + "rtt_ms": 1.7885, "checkpoint": 0, - "vertex_from": "608", - "timestamp": "2025-11-27T01:21:48.013693491Z" + "vertex_from": "0", + "vertex_to": "909", + "timestamp": "2025-11-27T04:01:46.333091-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186003, - "rtt_ms": 2.186003, + "rtt_ns": 1765208, + "rtt_ms": 1.765208, "checkpoint": 0, "vertex_from": "0", "vertex_to": "550", - "timestamp": "2025-11-27T01:21:48.013738681Z" + "timestamp": "2025-11-27T04:01:46.333114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005487, - "rtt_ms": 1.005487, + "rtt_ns": 2097250, + "rtt_ms": 2.09725, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "213", - "timestamp": "2025-11-27T01:21:48.01388858Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:46.333432-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1084547, - "rtt_ms": 1.084547, + "rtt_ns": 1956959, + "rtt_ms": 1.956959, "checkpoint": 0, "vertex_from": "604", - "timestamp": "2025-11-27T01:21:48.01391452Z" + "timestamp": "2025-11-27T04:01:46.333586-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1679291, + "rtt_ms": 1.679291, + "checkpoint": 0, + "vertex_from": "216", + "timestamp": "2025-11-27T04:01:46.333631-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1489905, - "rtt_ms": 1.489905, + "rtt_ns": 2091333, + "rtt_ms": 2.091333, "checkpoint": 0, "vertex_from": "946", - "timestamp": "2025-11-27T01:21:48.014483918Z" + "timestamp": "2025-11-27T04:01:46.333792-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1416555, - "rtt_ms": 1.416555, + "rtt_ns": 2251208, + "rtt_ms": 2.251208, "checkpoint": 0, - "vertex_from": "216", - "timestamp": "2025-11-27T01:21:48.014486088Z" + "vertex_from": "696", + "timestamp": "2025-11-27T04:01:46.333898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481885, - "rtt_ms": 1.481885, + "rtt_ns": 2455875, + "rtt_ms": 2.455875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "909", - "timestamp": "2025-11-27T01:21:48.014501688Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:01:46.333955-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1562515, - "rtt_ms": 1.562515, + "rtt_ns": 1782333, + "rtt_ms": 1.782333, "checkpoint": 0, - "vertex_from": "696", - "timestamp": "2025-11-27T01:21:48.014536908Z" + "vertex_from": "461", + "timestamp": "2025-11-27T04:01:46.334878-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1305695, - "rtt_ms": 1.305695, + "operation": "add_edge", + "rtt_ns": 1140666, + "rtt_ms": 1.140666, "checkpoint": 0, - "vertex_from": "401", - "timestamp": "2025-11-27T01:21:48.015048946Z" + "vertex_from": "0", + "vertex_to": "946", + "timestamp": "2025-11-27T04:01:46.334933-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1989594, - "rtt_ms": 1.989594, + "rtt_ns": 1995000, + "rtt_ms": 1.995, "checkpoint": 0, "vertex_from": "437", - "timestamp": "2025-11-27T01:21:48.015136996Z" + "timestamp": "2025-11-27T04:01:46.334961-08:00" }, { "operation": "add_vertex", - "rtt_ns": 653648, - "rtt_ms": 0.653648, + "rtt_ns": 1871250, + "rtt_ms": 1.87125, "checkpoint": 0, - "vertex_from": "62", - "timestamp": "2025-11-27T01:21:48.015159036Z" + "vertex_from": "401", + "timestamp": "2025-11-27T04:01:46.334988-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1274116, - "rtt_ms": 1.274116, + "rtt_ns": 1568417, + "rtt_ms": 1.568417, "checkpoint": 0, "vertex_from": "47", - "timestamp": "2025-11-27T01:21:48.015165126Z" + "timestamp": "2025-11-27T04:01:46.335002-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1504415, - "rtt_ms": 1.504415, + "operation": "add_edge", + "rtt_ns": 2345208, + "rtt_ms": 2.345208, "checkpoint": 0, - "vertex_from": "461", - "timestamp": "2025-11-27T01:21:48.015167146Z" + "vertex_from": "0", + "vertex_to": "213", + "timestamp": "2025-11-27T04:01:46.335311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476025, - "rtt_ms": 1.476025, + "rtt_ns": 1429000, + "rtt_ms": 1.429, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:48.015170046Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:01:46.335327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323636, - "rtt_ms": 1.323636, + "rtt_ns": 1916917, + "rtt_ms": 1.916917, "checkpoint": 0, "vertex_from": "0", "vertex_to": "604", - "timestamp": "2025-11-27T01:21:48.015238746Z" + "timestamp": "2025-11-27T04:01:46.335503-08:00" }, { "operation": "add_edge", - "rtt_ns": 783478, - "rtt_ms": 0.783478, + "rtt_ns": 2021084, + "rtt_ms": 2.021084, "checkpoint": 0, "vertex_from": "0", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:48.015270126Z" + "timestamp": "2025-11-27T04:01:46.335652-08:00" }, { - "operation": "add_edge", - "rtt_ns": 815408, - "rtt_ms": 0.815408, + "operation": "add_vertex", + "rtt_ns": 1598000, + "rtt_ms": 1.598, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "946", - "timestamp": "2025-11-27T01:21:48.015299786Z" + "vertex_from": "387", + "timestamp": "2025-11-27T04:01:46.336532-08:00" }, { "operation": "add_edge", - "rtt_ns": 784798, - "rtt_ms": 0.784798, + "rtt_ns": 1672083, + "rtt_ms": 1.672083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "696", - "timestamp": "2025-11-27T01:21:48.015322556Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:01:46.336551-08:00" }, { "operation": "add_edge", - "rtt_ns": 909147, - "rtt_ms": 0.909147, + "rtt_ns": 1557625, + "rtt_ms": 1.557625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:48.015958843Z" + "vertex_to": "47", + "timestamp": "2025-11-27T04:01:46.33656-08:00" }, { "operation": "add_edge", - "rtt_ns": 909207, - "rtt_ms": 0.909207, + "rtt_ns": 1719958, + "rtt_ms": 1.719958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "62", - "timestamp": "2025-11-27T01:21:48.016068753Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:01:46.336681-08:00" }, { - "operation": "add_edge", - "rtt_ns": 930787, - "rtt_ms": 0.930787, + "operation": "add_vertex", + "rtt_ns": 1424084, + "rtt_ms": 1.424084, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "461", - "timestamp": "2025-11-27T01:21:48.016098583Z" + "vertex_from": "41", + "timestamp": "2025-11-27T04:01:46.33708-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1491485, - "rtt_ms": 1.491485, + "rtt_ns": 3195000, + "rtt_ms": 3.195, "checkpoint": 0, - "vertex_from": "387", - "timestamp": "2025-11-27T01:21:48.016666201Z" + "vertex_from": "62", + "timestamp": "2025-11-27T04:01:46.337152-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1448255, - "rtt_ms": 1.448255, + "rtt_ns": 1873958, + "rtt_ms": 1.873958, "checkpoint": 0, "vertex_from": "316", - "timestamp": "2025-11-27T01:21:48.016692151Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1546425, - "rtt_ms": 1.546425, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "47", - "timestamp": "2025-11-27T01:21:48.016712091Z" + "timestamp": "2025-11-27T04:01:46.337188-08:00" }, { "operation": "add_vertex", - "rtt_ns": 783988, - "rtt_ms": 0.783988, + "rtt_ns": 1912208, + "rtt_ms": 1.912208, "checkpoint": 0, - "vertex_from": "44", - "timestamp": "2025-11-27T01:21:48.016747481Z" + "vertex_from": "418", + "timestamp": "2025-11-27T04:01:46.337418-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1613985, - "rtt_ms": 1.613985, + "operation": "add_vertex", + "rtt_ns": 2467625, + "rtt_ms": 2.467625, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "437", - "timestamp": "2025-11-27T01:21:48.016751711Z" + "vertex_from": "283", + "timestamp": "2025-11-27T04:01:46.337797-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1467085, - "rtt_ms": 1.467085, + "rtt_ns": 1308875, + "rtt_ms": 1.308875, "checkpoint": 0, - "vertex_from": "418", - "timestamp": "2025-11-27T01:21:48.016769511Z" + "vertex_from": "44", + "timestamp": "2025-11-27T04:01:46.337861-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1508985, - "rtt_ms": 1.508985, + "operation": "add_edge", + "rtt_ns": 1385916, + "rtt_ms": 1.385916, "checkpoint": 0, - "vertex_from": "283", - "timestamp": "2025-11-27T01:21:48.016781541Z" + "vertex_from": "0", + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:46.337919-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1486645, - "rtt_ms": 1.486645, + "operation": "add_edge", + "rtt_ns": 2988584, + "rtt_ms": 2.988584, "checkpoint": 0, - "vertex_from": "41", - "timestamp": "2025-11-27T01:21:48.016812321Z" + "vertex_from": "0", + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:46.337977-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1249266, - "rtt_ms": 1.249266, + "rtt_ns": 1467792, + "rtt_ms": 1.467792, "checkpoint": 0, "vertex_from": "581", - "timestamp": "2025-11-27T01:21:48.017351159Z" + "timestamp": "2025-11-27T04:01:46.338151-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1285226, - "rtt_ms": 1.285226, + "rtt_ns": 1692625, + "rtt_ms": 1.692625, "checkpoint": 0, "vertex_from": "675", - "timestamp": "2025-11-27T01:21:48.017357459Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 672188, - "rtt_ms": 0.672188, - "checkpoint": 0, - "vertex_from": "898", - "timestamp": "2025-11-27T01:21:48.017426099Z" + "timestamp": "2025-11-27T04:01:46.338256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065073, - "rtt_ms": 2.065073, + "rtt_ns": 1233167, + "rtt_ms": 1.233167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:48.018731624Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:46.338313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2168773, - "rtt_ms": 2.168773, + "rtt_ns": 1485292, + "rtt_ms": 1.485292, "checkpoint": 0, "vertex_from": "0", "vertex_to": "316", - "timestamp": "2025-11-27T01:21:48.018861624Z" + "timestamp": "2025-11-27T04:01:46.338674-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067543, - "rtt_ms": 2.067543, + "rtt_ns": 2178458, + "rtt_ms": 2.178458, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.018880364Z" + "vertex_to": "62", + "timestamp": "2025-11-27T04:01:46.339331-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2148313, - "rtt_ms": 2.148313, + "operation": "add_vertex", + "rtt_ns": 1527750, + "rtt_ms": 1.52775, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.018896044Z" + "vertex_from": "898", + "timestamp": "2025-11-27T04:01:46.339507-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207042, - "rtt_ms": 2.207042, + "rtt_ns": 2099167, + "rtt_ms": 2.099167, "checkpoint": 0, "vertex_from": "0", "vertex_to": "418", - "timestamp": "2025-11-27T01:21:48.018976973Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2342922, - "rtt_ms": 2.342922, - "checkpoint": 0, - "vertex_from": "432", - "timestamp": "2025-11-27T01:21:48.019057413Z" + "timestamp": "2025-11-27T04:01:46.339517-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297042, - "rtt_ms": 2.297042, + "rtt_ns": 1825125, + "rtt_ms": 1.825125, "checkpoint": 0, "vertex_from": "0", "vertex_to": "283", - "timestamp": "2025-11-27T01:21:48.019079173Z" + "timestamp": "2025-11-27T04:01:46.339623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704314, - "rtt_ms": 1.704314, + "rtt_ns": 1488833, + "rtt_ms": 1.488833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:48.019130833Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:46.339641-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1722958, + "rtt_ms": 1.722958, + "checkpoint": 0, + "vertex_from": "432", + "timestamp": "2025-11-27T04:01:46.339644-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1393125, + "rtt_ms": 1.393125, + "checkpoint": 0, + "vertex_from": "184", + "timestamp": "2025-11-27T04:01:46.339708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837194, - "rtt_ms": 1.837194, + "rtt_ns": 1903417, + "rtt_ms": 1.903417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:48.019188773Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:46.339765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850274, - "rtt_ms": 1.850274, + "rtt_ns": 1601875, + "rtt_ms": 1.601875, "checkpoint": 0, "vertex_from": "0", "vertex_to": "675", - "timestamp": "2025-11-27T01:21:48.019208283Z" + "timestamp": "2025-11-27T04:01:46.339858-08:00" }, { "operation": "add_vertex", - "rtt_ns": 805287, - "rtt_ms": 0.805287, + "rtt_ns": 1006833, + "rtt_ms": 1.006833, "checkpoint": 0, - "vertex_from": "184", - "timestamp": "2025-11-27T01:21:48.019542611Z" + "vertex_from": "391", + "timestamp": "2025-11-27T04:01:46.340525-08:00" }, { "operation": "add_vertex", - "rtt_ns": 774977, - "rtt_ms": 0.774977, + "rtt_ns": 1290375, + "rtt_ms": 1.290375, "checkpoint": 0, - "vertex_from": "773", - "timestamp": "2025-11-27T01:21:48.019658531Z" + "vertex_from": "701", + "timestamp": "2025-11-27T04:01:46.340914-08:00" }, { "operation": "add_vertex", - "rtt_ns": 823427, - "rtt_ms": 0.823427, + "rtt_ns": 1278000, + "rtt_ms": 1.278, "checkpoint": 0, - "vertex_from": "360", - "timestamp": "2025-11-27T01:21:48.019688591Z" + "vertex_from": "560", + "timestamp": "2025-11-27T04:01:46.34092-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 787098, - "rtt_ms": 0.787098, + "operation": "add_edge", + "rtt_ns": 1422917, + "rtt_ms": 1.422917, "checkpoint": 0, - "vertex_from": "701", - "timestamp": "2025-11-27T01:21:48.019767191Z" + "vertex_from": "0", + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:46.340931-08:00" }, { "operation": "add_edge", - "rtt_ns": 723628, - "rtt_ms": 0.723628, + "rtt_ns": 1293083, + "rtt_ms": 1.293083, "checkpoint": 0, "vertex_from": "0", "vertex_to": "432", - "timestamp": "2025-11-27T01:21:48.019781571Z" + "timestamp": "2025-11-27T04:01:46.340937-08:00" }, { "operation": "add_vertex", - "rtt_ns": 943656, - "rtt_ms": 0.943656, + "rtt_ns": 2263833, + "rtt_ms": 2.263833, "checkpoint": 0, - "vertex_from": "391", - "timestamp": "2025-11-27T01:21:48.01984163Z" + "vertex_from": "360", + "timestamp": "2025-11-27T04:01:46.340941-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 798207, - "rtt_ms": 0.798207, + "operation": "add_edge", + "rtt_ns": 1423958, + "rtt_ms": 1.423958, "checkpoint": 0, - "vertex_from": "560", - "timestamp": "2025-11-27T01:21:48.01987968Z" + "vertex_from": "0", + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:46.341133-08:00" }, { "operation": "add_vertex", - "rtt_ns": 820237, - "rtt_ms": 0.820237, + "rtt_ns": 1912834, + "rtt_ms": 1.912834, "checkpoint": 0, - "vertex_from": "173", - "timestamp": "2025-11-27T01:21:48.01995315Z" + "vertex_from": "773", + "timestamp": "2025-11-27T04:01:46.341246-08:00" }, { "operation": "add_vertex", - "rtt_ns": 760987, - "rtt_ms": 0.760987, + "rtt_ns": 1728792, + "rtt_ms": 1.728792, "checkpoint": 0, - "vertex_from": "688", - "timestamp": "2025-11-27T01:21:48.01997117Z" + "vertex_from": "173", + "timestamp": "2025-11-27T04:01:46.341495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185276, - "rtt_ms": 1.185276, + "rtt_ns": 1030916, + "rtt_ms": 1.030916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:48.020874487Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:01:46.341556-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1706264, - "rtt_ms": 1.706264, + "rtt_ns": 1510625, + "rtt_ms": 1.510625, "checkpoint": 0, - "vertex_from": "906", - "timestamp": "2025-11-27T01:21:48.020898887Z" + "vertex_from": "688", + "timestamp": "2025-11-27T04:01:46.342444-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1361176, - "rtt_ms": 1.361176, + "operation": "add_vertex", + "rtt_ns": 1564375, + "rtt_ms": 1.564375, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:48.020904327Z" + "vertex_from": "920", + "timestamp": "2025-11-27T04:01:46.342502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098217, - "rtt_ms": 1.098217, + "rtt_ns": 1699500, + "rtt_ms": 1.6995, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "391", - "timestamp": "2025-11-27T01:21:48.020940217Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:46.342946-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1391375, + "rtt_ms": 1.391375, + "checkpoint": 0, + "vertex_from": "553", + "timestamp": "2025-11-27T04:01:46.342949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025147, - "rtt_ms": 1.025147, + "rtt_ns": 2049500, + "rtt_ms": 2.0495, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "173", - "timestamp": "2025-11-27T01:21:48.020978827Z" + "vertex_to": "701", + "timestamp": "2025-11-27T04:01:46.342964-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2059458, + "rtt_ms": 2.059458, + "checkpoint": 0, + "vertex_from": "923", + "timestamp": "2025-11-27T04:01:46.343194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100767, - "rtt_ms": 1.100767, + "rtt_ns": 2366500, + "rtt_ms": 2.3665, "checkpoint": 0, "vertex_from": "0", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.020980917Z" + "timestamp": "2025-11-27T04:01:46.343288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708414, - "rtt_ms": 1.708414, + "rtt_ns": 1192625, + "rtt_ms": 1.192625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "701", - "timestamp": "2025-11-27T01:21:48.021475965Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:46.343637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846144, - "rtt_ms": 1.846144, + "rtt_ns": 2161084, + "rtt_ms": 2.161084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:48.021505365Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:01:46.343656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541455, - "rtt_ms": 1.541455, + "rtt_ns": 2729542, + "rtt_ms": 2.729542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:48.021513105Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:46.343672-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1804494, - "rtt_ms": 1.804494, + "operation": "add_edge", + "rtt_ns": 1674833, + "rtt_ms": 1.674833, "checkpoint": 0, - "vertex_from": "920", - "timestamp": "2025-11-27T01:21:48.021588065Z" + "vertex_from": "0", + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:46.344178-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1283526, - "rtt_ms": 1.283526, + "rtt_ns": 4429000, + "rtt_ms": 4.429, "checkpoint": 0, - "vertex_from": "553", - "timestamp": "2025-11-27T01:21:48.022190893Z" + "vertex_from": "906", + "timestamp": "2025-11-27T04:01:46.34429-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1398376, - "rtt_ms": 1.398376, + "operation": "add_edge", + "rtt_ns": 1490750, + "rtt_ms": 1.49075, "checkpoint": 0, - "vertex_from": "923", - "timestamp": "2025-11-27T01:21:48.022276143Z" + "vertex_from": "0", + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:46.34444-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1391305, - "rtt_ms": 1.391305, + "rtt_ns": 1420708, + "rtt_ms": 1.420708, "checkpoint": 0, - "vertex_from": "361", - "timestamp": "2025-11-27T01:21:48.022371452Z" + "vertex_from": "916", + "timestamp": "2025-11-27T04:01:46.344711-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1442055, - "rtt_ms": 1.442055, + "operation": "add_edge", + "rtt_ns": 1586500, + "rtt_ms": 1.5865, "checkpoint": 0, - "vertex_from": "541", - "timestamp": "2025-11-27T01:21:48.022383582Z" + "vertex_from": "0", + "vertex_to": "923", + "timestamp": "2025-11-27T04:01:46.34478-08:00" }, { "operation": "add_vertex", - "rtt_ns": 954267, - "rtt_ms": 0.954267, + "rtt_ns": 1867917, + "rtt_ms": 1.867917, "checkpoint": 0, - "vertex_from": "892", - "timestamp": "2025-11-27T01:21:48.022431982Z" + "vertex_from": "361", + "timestamp": "2025-11-27T04:01:46.344833-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1511185, - "rtt_ms": 1.511185, + "rtt_ns": 2126250, + "rtt_ms": 2.12625, "checkpoint": 0, - "vertex_from": "916", - "timestamp": "2025-11-27T01:21:48.022494212Z" + "vertex_from": "541", + "timestamp": "2025-11-27T04:01:46.345074-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1009607, - "rtt_ms": 1.009607, + "rtt_ns": 1408167, + "rtt_ms": 1.408167, "checkpoint": 0, - "vertex_from": "307", - "timestamp": "2025-11-27T01:21:48.022516282Z" + "vertex_from": "246", + "timestamp": "2025-11-27T04:01:46.34559-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2212153, - "rtt_ms": 2.212153, + "rtt_ns": 1197667, + "rtt_ms": 1.197667, "checkpoint": 0, - "vertex_from": "620", - "timestamp": "2025-11-27T01:21:48.023727588Z" + "vertex_from": "712", + "timestamp": "2025-11-27T04:01:46.345641-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160653, - "rtt_ms": 2.160653, + "rtt_ns": 1421667, + "rtt_ms": 1.421667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "920", - "timestamp": "2025-11-27T01:21:48.023749158Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:01:46.345712-08:00" }, { "operation": "add_edge", - "rtt_ns": 2849691, - "rtt_ms": 2.849691, + "rtt_ns": 1215750, + "rtt_ms": 1.21575, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "906", - "timestamp": "2025-11-27T01:21:48.023749158Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:46.34605-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1397256, - "rtt_ms": 1.397256, + "operation": "add_vertex", + "rtt_ns": 2425250, + "rtt_ms": 2.42525, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "361", - "timestamp": "2025-11-27T01:21:48.023769268Z" + "vertex_from": "892", + "timestamp": "2025-11-27T04:01:46.346063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378456, - "rtt_ms": 1.378456, + "rtt_ns": 1357833, + "rtt_ms": 1.357833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "892", - "timestamp": "2025-11-27T01:21:48.023810938Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:46.34607-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1644385, - "rtt_ms": 1.644385, + "operation": "add_vertex", + "rtt_ns": 1342833, + "rtt_ms": 1.342833, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:48.023835818Z" + "vertex_from": "297", + "timestamp": "2025-11-27T04:01:46.346127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618335, - "rtt_ms": 1.618335, + "rtt_ns": 1069500, + "rtt_ms": 1.0695, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "923", - "timestamp": "2025-11-27T01:21:48.023894928Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:01:46.346144-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1474985, - "rtt_ms": 1.474985, + "operation": "add_vertex", + "rtt_ns": 2648125, + "rtt_ms": 2.648125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "916", - "timestamp": "2025-11-27T01:21:48.023969607Z" + "vertex_from": "620", + "timestamp": "2025-11-27T04:01:46.346321-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1589535, - "rtt_ms": 1.589535, + "operation": "add_vertex", + "rtt_ns": 3032916, + "rtt_ms": 3.032916, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "541", - "timestamp": "2025-11-27T01:21:48.023973497Z" + "vertex_from": "307", + "timestamp": "2025-11-27T04:01:46.34669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552695, - "rtt_ms": 1.552695, + "rtt_ns": 1116083, + "rtt_ms": 1.116083, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:48.024069387Z" + "vertex_to": "246", + "timestamp": "2025-11-27T04:01:46.346706-08:00" }, { "operation": "add_vertex", - "rtt_ns": 874887, - "rtt_ms": 0.874887, + "rtt_ns": 1618500, + "rtt_ms": 1.6185, "checkpoint": 0, - "vertex_from": "712", - "timestamp": "2025-11-27T01:21:48.024627455Z" + "vertex_from": "341", + "timestamp": "2025-11-27T04:01:46.347331-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1666864, - "rtt_ms": 1.666864, + "rtt_ns": 1546333, + "rtt_ms": 1.546333, "checkpoint": 0, - "vertex_from": "83", - "timestamp": "2025-11-27T01:21:48.025563912Z" + "vertex_from": "309", + "timestamp": "2025-11-27T04:01:46.347691-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2366042, - "rtt_ms": 2.366042, + "rtt_ns": 1660709, + "rtt_ms": 1.660709, "checkpoint": 0, "vertex_from": "582", - "timestamp": "2025-11-27T01:21:48.02620683Z" + "timestamp": "2025-11-27T04:01:46.347713-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2243173, - "rtt_ms": 2.243173, + "rtt_ns": 1225625, + "rtt_ms": 1.225625, "checkpoint": 0, "vertex_from": "322", - "timestamp": "2025-11-27T01:21:48.02621871Z" + "timestamp": "2025-11-27T04:01:46.347933-08:00" }, { "operation": "add_edge", - "rtt_ns": 2522252, - "rtt_ms": 2.522252, + "rtt_ns": 2245917, + "rtt_ms": 2.245917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "620", - "timestamp": "2025-11-27T01:21:48.02625035Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2470002, - "rtt_ms": 2.470002, - "checkpoint": 0, - "vertex_from": "309", - "timestamp": "2025-11-27T01:21:48.026443669Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:46.348373-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2670701, - "rtt_ms": 2.670701, + "rtt_ns": 2334583, + "rtt_ms": 2.334583, "checkpoint": 0, - "vertex_from": "297", - "timestamp": "2025-11-27T01:21:48.026444739Z" + "vertex_from": "83", + "timestamp": "2025-11-27T04:01:46.348405-08:00" }, { "operation": "add_edge", - "rtt_ns": 2212003, - "rtt_ms": 2.212003, + "rtt_ns": 1755208, + "rtt_ms": 1.755208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:48.026839918Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2788481, - "rtt_ms": 2.788481, - "checkpoint": 0, - "vertex_from": "86", - "timestamp": "2025-11-27T01:21:48.026859738Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 3124910, - "rtt_ms": 3.12491, - "checkpoint": 0, - "vertex_from": "246", - "timestamp": "2025-11-27T01:21:48.026877758Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 3068160, - "rtt_ms": 3.06816, - "checkpoint": 0, - "vertex_from": "341", - "timestamp": "2025-11-27T01:21:48.026882288Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:46.348446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847554, - "rtt_ms": 1.847554, + "rtt_ns": 2419875, + "rtt_ms": 2.419875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:48.027411996Z" + "vertex_to": "892", + "timestamp": "2025-11-27T04:01:46.348484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099806, - "rtt_ms": 1.099806, + "rtt_ns": 2848875, + "rtt_ms": 2.848875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:48.027545175Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1390665, - "rtt_ms": 1.390665, - "checkpoint": 0, - "vertex_from": "660", - "timestamp": "2025-11-27T01:21:48.027644945Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:46.34849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455665, - "rtt_ms": 1.455665, + "rtt_ns": 2200125, + "rtt_ms": 2.200125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:48.027663435Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 841007, - "rtt_ms": 0.841007, - "checkpoint": 0, - "vertex_from": "357", - "timestamp": "2025-11-27T01:21:48.027685705Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:01:46.348521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277036, - "rtt_ms": 1.277036, + "rtt_ns": 1351667, + "rtt_ms": 1.351667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "309", - "timestamp": "2025-11-27T01:21:48.027721445Z" + "vertex_to": "341", + "timestamp": "2025-11-27T04:01:46.348683-08:00" }, { "operation": "add_edge", - "rtt_ns": 863137, - "rtt_ms": 0.863137, + "rtt_ns": 1279875, + "rtt_ms": 1.279875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "246", - "timestamp": "2025-11-27T01:21:48.027741445Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:01:46.348971-08:00" }, { "operation": "add_edge", - "rtt_ns": 867297, - "rtt_ms": 0.867297, + "rtt_ns": 1278542, + "rtt_ms": 1.278542, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "341", - "timestamp": "2025-11-27T01:21:48.027750195Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:46.348992-08:00" }, { "operation": "add_edge", - "rtt_ns": 927557, - "rtt_ms": 0.927557, + "rtt_ns": 1245167, + "rtt_ms": 1.245167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:48.027788055Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:46.349178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575145, - "rtt_ms": 1.575145, + "rtt_ns": 2023000, + "rtt_ms": 2.023, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:48.027794445Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1649265, - "rtt_ms": 1.649265, - "checkpoint": 0, - "vertex_from": "601", - "timestamp": "2025-11-27T01:21:48.029064881Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:46.350429-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1352675, - "rtt_ms": 1.352675, + "rtt_ns": 1451042, + "rtt_ms": 1.451042, "checkpoint": 0, "vertex_from": "609", - "timestamp": "2025-11-27T01:21:48.02909841Z" + "timestamp": "2025-11-27T04:01:46.350444-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1317875, - "rtt_ms": 1.317875, + "rtt_ns": 2074250, + "rtt_ms": 2.07425, "checkpoint": 0, - "vertex_from": "531", - "timestamp": "2025-11-27T01:21:48.02911162Z" + "vertex_from": "86", + "timestamp": "2025-11-27T04:01:46.350448-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1360545, - "rtt_ms": 1.360545, + "rtt_ns": 2025625, + "rtt_ms": 2.025625, "checkpoint": 0, - "vertex_from": "486", - "timestamp": "2025-11-27T01:21:48.0291146Z" + "vertex_from": "601", + "timestamp": "2025-11-27T04:01:46.350518-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1386545, - "rtt_ms": 1.386545, + "rtt_ns": 2052375, + "rtt_ms": 2.052375, "checkpoint": 0, - "vertex_from": "77", - "timestamp": "2025-11-27T01:21:48.029115Z" + "vertex_from": "357", + "timestamp": "2025-11-27T04:01:46.350537-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1998174, - "rtt_ms": 1.998174, + "operation": "add_vertex", + "rtt_ns": 1869958, + "rtt_ms": 1.869958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:48.029643799Z" + "vertex_from": "825", + "timestamp": "2025-11-27T04:01:46.350555-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2007084, - "rtt_ms": 2.007084, + "rtt_ns": 2392875, + "rtt_ms": 2.392875, "checkpoint": 0, - "vertex_from": "825", - "timestamp": "2025-11-27T01:21:48.029674619Z" + "vertex_from": "245", + "timestamp": "2025-11-27T04:01:46.350929-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2171163, - "rtt_ms": 2.171163, + "rtt_ns": 1970792, + "rtt_ms": 1.970792, "checkpoint": 0, - "vertex_from": "245", - "timestamp": "2025-11-27T01:21:48.029719328Z" + "vertex_from": "77", + "timestamp": "2025-11-27T04:01:46.350945-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2048003, - "rtt_ms": 2.048003, + "operation": "add_vertex", + "rtt_ns": 1766042, + "rtt_ms": 1.766042, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:48.029734378Z" + "vertex_from": "486", + "timestamp": "2025-11-27T04:01:46.350945-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1947843, - "rtt_ms": 1.947843, + "rtt_ns": 2501167, + "rtt_ms": 2.501167, "checkpoint": 0, - "vertex_from": "912", - "timestamp": "2025-11-27T01:21:48.029746128Z" + "vertex_from": "660", + "timestamp": "2025-11-27T04:01:46.35095-08:00" }, { "operation": "add_edge", - "rtt_ns": 936207, - "rtt_ms": 0.936207, + "rtt_ns": 1097042, + "rtt_ms": 1.097042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:48.030035067Z" + "vertex_to": "245", + "timestamp": "2025-11-27T04:01:46.352026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018706, - "rtt_ms": 1.018706, + "rtt_ns": 1782000, + "rtt_ms": 1.782, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "601", - "timestamp": "2025-11-27T01:21:48.030084087Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:01:46.352337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029537, - "rtt_ms": 1.029537, + "rtt_ns": 2193791, + "rtt_ms": 2.193791, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:48.030141957Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:46.352731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095397, - "rtt_ms": 1.095397, + "rtt_ns": 2300625, + "rtt_ms": 2.300625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "77", - "timestamp": "2025-11-27T01:21:48.030211347Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:46.352749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102087, - "rtt_ms": 1.102087, + "rtt_ns": 2245875, + "rtt_ms": 2.245875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "486", - "timestamp": "2025-11-27T01:21:48.030217417Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:46.352764-08:00" }, { "operation": "add_vertex", - "rtt_ns": 624578, - "rtt_ms": 0.624578, + "rtt_ns": 2381500, + "rtt_ms": 2.3815, "checkpoint": 0, - "vertex_from": "915", - "timestamp": "2025-11-27T01:21:48.030362476Z" + "vertex_from": "531", + "timestamp": "2025-11-27T04:01:46.352814-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 773317, - "rtt_ms": 0.773317, + "operation": "add_edge", + "rtt_ns": 2448583, + "rtt_ms": 2.448583, "checkpoint": 0, - "vertex_from": "269", - "timestamp": "2025-11-27T01:21:48.030420846Z" + "vertex_from": "0", + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:46.352893-08:00" }, { "operation": "add_edge", - "rtt_ns": 852717, - "rtt_ms": 0.852717, + "rtt_ns": 2043334, + "rtt_ms": 2.043334, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "825", - "timestamp": "2025-11-27T01:21:48.030528186Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:46.352993-08:00" }, { "operation": "add_edge", - "rtt_ns": 877968, - "rtt_ms": 0.877968, + "rtt_ns": 2067583, + "rtt_ms": 2.067583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:48.030624946Z" + "vertex_to": "486", + "timestamp": "2025-11-27T04:01:46.353013-08:00" }, { "operation": "add_edge", - "rtt_ns": 905628, - "rtt_ms": 0.905628, + "rtt_ns": 2082667, + "rtt_ms": 2.082667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "245", - "timestamp": "2025-11-27T01:21:48.030625626Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:01:46.353028-08:00" }, { "operation": "add_vertex", - "rtt_ns": 601579, - "rtt_ms": 0.601579, + "rtt_ns": 1275500, + "rtt_ms": 1.2755, "checkpoint": 0, - "vertex_from": "537", - "timestamp": "2025-11-27T01:21:48.030639266Z" + "vertex_from": "912", + "timestamp": "2025-11-27T04:01:46.353303-08:00" }, { "operation": "add_vertex", - "rtt_ns": 674768, - "rtt_ms": 0.674768, + "rtt_ns": 1589542, + "rtt_ms": 1.589542, "checkpoint": 0, "vertex_from": "864", - "timestamp": "2025-11-27T01:21:48.030761605Z" + "timestamp": "2025-11-27T04:01:46.354356-08:00" }, { "operation": "add_vertex", - "rtt_ns": 640828, - "rtt_ms": 0.640828, + "rtt_ns": 1484125, + "rtt_ms": 1.484125, "checkpoint": 0, - "vertex_from": "869", - "timestamp": "2025-11-27T01:21:48.030861565Z" + "vertex_from": "141", + "timestamp": "2025-11-27T04:01:46.354378-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 733468, - "rtt_ms": 0.733468, + "operation": "add_edge", + "rtt_ns": 1673959, + "rtt_ms": 1.673959, "checkpoint": 0, - "vertex_from": "141", - "timestamp": "2025-11-27T01:21:48.030878265Z" + "vertex_from": "0", + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:46.354489-08:00" }, { "operation": "add_vertex", - "rtt_ns": 718018, - "rtt_ms": 0.718018, + "rtt_ns": 1776375, + "rtt_ms": 1.776375, "checkpoint": 0, - "vertex_from": "228", - "timestamp": "2025-11-27T01:21:48.030930915Z" + "vertex_from": "537", + "timestamp": "2025-11-27T04:01:46.354526-08:00" }, { - "operation": "add_edge", - "rtt_ns": 804068, - "rtt_ms": 0.804068, + "operation": "add_vertex", + "rtt_ns": 1706167, + "rtt_ms": 1.706167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "915", - "timestamp": "2025-11-27T01:21:48.031167264Z" + "vertex_from": "228", + "timestamp": "2025-11-27T04:01:46.354703-08:00" }, { "operation": "add_vertex", - "rtt_ns": 756727, - "rtt_ms": 0.756727, + "rtt_ns": 1734000, + "rtt_ms": 1.734, "checkpoint": 0, "vertex_from": "167", - "timestamp": "2025-11-27T01:21:48.031288033Z" + "timestamp": "2025-11-27T04:01:46.354763-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1239356, - "rtt_ms": 1.239356, + "operation": "add_vertex", + "rtt_ns": 2299541, + "rtt_ms": 2.299541, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:48.031660912Z" + "vertex_from": "915", + "timestamp": "2025-11-27T04:01:46.355032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513765, - "rtt_ms": 1.513765, + "rtt_ns": 1733834, + "rtt_ms": 1.733834, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:48.032153601Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1632764, - "rtt_ms": 1.632764, - "checkpoint": 0, - "vertex_from": "836", - "timestamp": "2025-11-27T01:21:48.03226118Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:46.355037-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2145903, - "rtt_ms": 2.145903, + "rtt_ns": 2879125, + "rtt_ms": 2.879125, "checkpoint": 0, - "vertex_from": "905", - "timestamp": "2025-11-27T01:21:48.032773219Z" + "vertex_from": "269", + "timestamp": "2025-11-27T04:01:46.355217-08:00" }, { "operation": "add_vertex", - "rtt_ns": 690157, - "rtt_ms": 0.690157, + "rtt_ns": 1139750, + "rtt_ms": 1.13975, "checkpoint": 0, - "vertex_from": "488", - "timestamp": "2025-11-27T01:21:48.032845868Z" + "vertex_from": "836", + "timestamp": "2025-11-27T04:01:46.355629-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097013, - "rtt_ms": 2.097013, + "rtt_ns": 1217959, + "rtt_ms": 1.217959, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:48.032859008Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1744264, - "rtt_ms": 1.744264, - "checkpoint": 0, - "vertex_from": "210", - "timestamp": "2025-11-27T01:21:48.032913628Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:46.355922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729135, - "rtt_ms": 1.729135, + "rtt_ns": 1414500, + "rtt_ms": 1.4145, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "167", - "timestamp": "2025-11-27T01:21:48.033017578Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:46.355941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2153163, - "rtt_ms": 2.153163, + "rtt_ns": 1595167, + "rtt_ms": 1.595167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:48.033031848Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:46.355951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124773, - "rtt_ms": 2.124773, + "rtt_ns": 1577292, + "rtt_ms": 1.577292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:48.033056038Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:46.355956-08:00" }, { "operation": "add_edge", - "rtt_ns": 868317, - "rtt_ms": 0.868317, + "rtt_ns": 1211000, + "rtt_ms": 1.211, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:48.033129977Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:01:46.355974-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1481685, - "rtt_ms": 1.481685, + "rtt_ns": 965708, + "rtt_ms": 0.965708, "checkpoint": 0, - "vertex_from": "664", - "timestamp": "2025-11-27T01:21:48.033146627Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2769551, - "rtt_ms": 2.769551, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "869", - "timestamp": "2025-11-27T01:21:48.033631556Z" + "vertex_from": "905", + "timestamp": "2025-11-27T04:01:46.356006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088337, - "rtt_ms": 1.088337, + "rtt_ns": 1207625, + "rtt_ms": 1.207625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "488", - "timestamp": "2025-11-27T01:21:48.033934635Z" + "vertex_to": "915", + "timestamp": "2025-11-27T04:01:46.35624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066876, - "rtt_ms": 1.066876, + "rtt_ns": 1120167, + "rtt_ms": 1.120167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:48.033980934Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:46.356337-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1755614, - "rtt_ms": 1.755614, + "rtt_ns": 3344458, + "rtt_ms": 3.344458, "checkpoint": 0, - "vertex_from": "293", - "timestamp": "2025-11-27T01:21:48.034618502Z" + "vertex_from": "869", + "timestamp": "2025-11-27T04:01:46.356358-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1875703, - "rtt_ms": 1.875703, + "operation": "add_vertex", + "rtt_ns": 1219917, + "rtt_ms": 1.219917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:48.034649652Z" + "vertex_from": "488", + "timestamp": "2025-11-27T04:01:46.357175-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1594374, - "rtt_ms": 1.594374, + "rtt_ns": 1271209, + "rtt_ms": 1.271209, "checkpoint": 0, - "vertex_from": "314", - "timestamp": "2025-11-27T01:21:48.034651832Z" + "vertex_from": "210", + "timestamp": "2025-11-27T04:01:46.357194-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1621514, - "rtt_ms": 1.621514, + "operation": "add_edge", + "rtt_ns": 1602041, + "rtt_ms": 1.602041, "checkpoint": 0, - "vertex_from": "220", - "timestamp": "2025-11-27T01:21:48.034655932Z" + "vertex_from": "0", + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:46.357232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702465, - "rtt_ms": 1.702465, + "rtt_ns": 1242167, + "rtt_ms": 1.242167, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:48.034849632Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:46.357249-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1829354, - "rtt_ms": 1.829354, + "rtt_ns": 1293458, + "rtt_ms": 1.293458, "checkpoint": 0, - "vertex_from": "540", - "timestamp": "2025-11-27T01:21:48.034851442Z" + "vertex_from": "293", + "timestamp": "2025-11-27T04:01:46.357251-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1929514, - "rtt_ms": 1.929514, + "rtt_ns": 1357833, + "rtt_ms": 1.357833, "checkpoint": 0, - "vertex_from": "169", - "timestamp": "2025-11-27T01:21:48.035061341Z" + "vertex_from": "540", + "timestamp": "2025-11-27T04:01:46.357334-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1558644, - "rtt_ms": 1.558644, + "rtt_ns": 1422041, + "rtt_ms": 1.422041, "checkpoint": 0, - "vertex_from": "781", - "timestamp": "2025-11-27T01:21:48.03519204Z" + "vertex_from": "664", + "timestamp": "2025-11-27T04:01:46.357364-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1300735, - "rtt_ms": 1.300735, + "rtt_ns": 2183375, + "rtt_ms": 2.183375, "checkpoint": 0, - "vertex_from": "840", - "timestamp": "2025-11-27T01:21:48.03524083Z" + "vertex_from": "314", + "timestamp": "2025-11-27T04:01:46.358522-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1381726, - "rtt_ms": 1.381726, + "operation": "add_edge", + "rtt_ns": 1456584, + "rtt_ms": 1.456584, "checkpoint": 0, - "vertex_from": "821", - "timestamp": "2025-11-27T01:21:48.0353648Z" + "vertex_from": "0", + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:46.358651-08:00" }, { "operation": "add_vertex", - "rtt_ns": 808858, - "rtt_ms": 0.808858, + "rtt_ns": 1452292, + "rtt_ms": 1.452292, "checkpoint": 0, - "vertex_from": "30", - "timestamp": "2025-11-27T01:21:48.03546006Z" + "vertex_from": "781", + "timestamp": "2025-11-27T04:01:46.358702-08:00" }, { "operation": "add_edge", - "rtt_ns": 900817, - "rtt_ms": 0.900817, + "rtt_ns": 2532333, + "rtt_ms": 2.532333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:48.035553089Z" + "vertex_to": "869", + "timestamp": "2025-11-27T04:01:46.358891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030787, - "rtt_ms": 1.030787, + "rtt_ns": 1686417, + "rtt_ms": 1.686417, "checkpoint": 0, "vertex_from": "0", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:48.035650029Z" + "timestamp": "2025-11-27T04:01:46.358937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060537, - "rtt_ms": 1.060537, + "rtt_ns": 1771292, + "rtt_ms": 1.771292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "220", - "timestamp": "2025-11-27T01:21:48.035717089Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:46.358947-08:00" }, { "operation": "add_vertex", - "rtt_ns": 950136, - "rtt_ms": 0.950136, + "rtt_ns": 1846250, + "rtt_ms": 1.84625, "checkpoint": 0, - "vertex_from": "94", - "timestamp": "2025-11-27T01:21:48.035803028Z" + "vertex_from": "169", + "timestamp": "2025-11-27T04:01:46.359081-08:00" }, { "operation": "add_edge", - "rtt_ns": 982846, - "rtt_ms": 0.982846, + "rtt_ns": 2268875, + "rtt_ms": 2.268875, "checkpoint": 0, "vertex_from": "0", "vertex_to": "540", - "timestamp": "2025-11-27T01:21:48.035835428Z" + "timestamp": "2025-11-27T04:01:46.359603-08:00" }, { "operation": "add_edge", - "rtt_ns": 811017, - "rtt_ms": 0.811017, + "rtt_ns": 2256333, + "rtt_ms": 2.256333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:48.035872818Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:46.35962-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 3491250, + "rtt_ms": 3.49125, + "checkpoint": 0, + "vertex_from": "220", + "timestamp": "2025-11-27T04:01:46.359732-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1548458, + "rtt_ms": 1.548458, + "checkpoint": 0, + "vertex_from": "840", + "timestamp": "2025-11-27T04:01:46.360201-08:00" }, { "operation": "add_edge", - "rtt_ns": 836698, - "rtt_ms": 0.836698, + "rtt_ns": 1843917, + "rtt_ms": 1.843917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:48.036077948Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:46.360366-08:00" }, { "operation": "add_vertex", - "rtt_ns": 736918, - "rtt_ms": 0.736918, + "rtt_ns": 1465416, + "rtt_ms": 1.465416, "checkpoint": 0, - "vertex_from": "551", - "timestamp": "2025-11-27T01:21:48.036294677Z" + "vertex_from": "30", + "timestamp": "2025-11-27T04:01:46.360405-08:00" }, { "operation": "add_vertex", - "rtt_ns": 727948, - "rtt_ms": 0.727948, + "rtt_ns": 1540000, + "rtt_ms": 1.54, "checkpoint": 0, - "vertex_from": "673", - "timestamp": "2025-11-27T01:21:48.036380807Z" + "vertex_from": "94", + "timestamp": "2025-11-27T04:01:46.360488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328246, - "rtt_ms": 1.328246, + "rtt_ns": 1902500, + "rtt_ms": 1.9025, "checkpoint": 0, "vertex_from": "0", "vertex_to": "781", - "timestamp": "2025-11-27T01:21:48.036520726Z" + "timestamp": "2025-11-27T04:01:46.360604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167356, - "rtt_ms": 1.167356, + "rtt_ns": 1733541, + "rtt_ms": 1.733541, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "821", - "timestamp": "2025-11-27T01:21:48.036532686Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 723328, - "rtt_ms": 0.723328, - "checkpoint": 0, - "vertex_from": "348", - "timestamp": "2025-11-27T01:21:48.036567316Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 784908, - "rtt_ms": 0.784908, - "checkpoint": 0, - "vertex_from": "594", - "timestamp": "2025-11-27T01:21:48.036660686Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:46.360815-08:00" }, { "operation": "add_vertex", - "rtt_ns": 678157, - "rtt_ms": 0.678157, + "rtt_ns": 2377250, + "rtt_ms": 2.37725, "checkpoint": 0, - "vertex_from": "649", - "timestamp": "2025-11-27T01:21:48.036758715Z" + "vertex_from": "821", + "timestamp": "2025-11-27T04:01:46.361272-08:00" }, { "operation": "add_vertex", - "rtt_ns": 736238, - "rtt_ms": 0.736238, + "rtt_ns": 1057500, + "rtt_ms": 1.0575, "checkpoint": 0, - "vertex_from": "618", - "timestamp": "2025-11-27T01:21:48.037261344Z" + "vertex_from": "628", + "timestamp": "2025-11-27T04:01:46.361425-08:00" }, { "operation": "add_vertex", - "rtt_ns": 772828, - "rtt_ms": 0.772828, + "rtt_ns": 1838875, + "rtt_ms": 1.838875, "checkpoint": 0, - "vertex_from": "574", - "timestamp": "2025-11-27T01:21:48.037308824Z" + "vertex_from": "551", + "timestamp": "2025-11-27T04:01:46.361443-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194413, - "rtt_ms": 2.194413, + "rtt_ns": 1120500, + "rtt_ms": 1.1205, "checkpoint": 0, "vertex_from": "0", "vertex_to": "30", - "timestamp": "2025-11-27T01:21:48.037654913Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2107553, - "rtt_ms": 2.107553, - "checkpoint": 0, - "vertex_from": "628", - "timestamp": "2025-11-27T01:21:48.037827062Z" + "timestamp": "2025-11-27T04:01:46.361526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164894, - "rtt_ms": 2.164894, + "rtt_ns": 1452333, + "rtt_ms": 1.452333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "94", - "timestamp": "2025-11-27T01:21:48.037968202Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:46.361653-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1704434, - "rtt_ms": 1.704434, + "operation": "add_vertex", + "rtt_ns": 978542, + "rtt_ms": 0.978542, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "551", - "timestamp": "2025-11-27T01:21:48.037999661Z" + "vertex_from": "594", + "timestamp": "2025-11-27T04:01:46.361812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717834, - "rtt_ms": 1.717834, + "rtt_ns": 1611250, + "rtt_ms": 1.61125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:48.038099151Z" + "vertex_to": "94", + "timestamp": "2025-11-27T04:01:46.3621-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1535325, - "rtt_ms": 1.535325, + "operation": "add_vertex", + "rtt_ns": 1525458, + "rtt_ms": 1.525458, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:48.038196481Z" + "vertex_from": "348", + "timestamp": "2025-11-27T04:01:46.362132-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084153, - "rtt_ms": 2.084153, + "rtt_ns": 1371333, + "rtt_ms": 1.371333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:48.038651889Z" + "vertex_to": "821", + "timestamp": "2025-11-27T04:01:46.362645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600675, - "rtt_ms": 1.600675, + "rtt_ns": 2968833, + "rtt_ms": 2.968833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "618", - "timestamp": "2025-11-27T01:21:48.038862369Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1248366, - "rtt_ms": 1.248366, - "checkpoint": 0, - "vertex_from": "242", - "timestamp": "2025-11-27T01:21:48.038906289Z" + "vertex_to": "220", + "timestamp": "2025-11-27T04:01:46.362702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608135, - "rtt_ms": 1.608135, + "rtt_ns": 1595625, + "rtt_ms": 1.595625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "574", - "timestamp": "2025-11-27T01:21:48.038917439Z" + "vertex_to": "551", + "timestamp": "2025-11-27T04:01:46.36304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158044, - "rtt_ms": 2.158044, + "rtt_ns": 1279042, + "rtt_ms": 1.279042, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:48.038917539Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:46.363092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111226, - "rtt_ms": 1.111226, + "rtt_ns": 1699334, + "rtt_ms": 1.699334, "checkpoint": 0, "vertex_from": "0", "vertex_to": "628", - "timestamp": "2025-11-27T01:21:48.038939148Z" + "timestamp": "2025-11-27T04:01:46.363125-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1655024, - "rtt_ms": 1.655024, + "rtt_ns": 1616708, + "rtt_ms": 1.616708, "checkpoint": 0, - "vertex_from": "602", - "timestamp": "2025-11-27T01:21:48.039627666Z" + "vertex_from": "649", + "timestamp": "2025-11-27T04:01:46.363144-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1716425, - "rtt_ms": 1.716425, + "rtt_ns": 1593208, + "rtt_ms": 1.593208, "checkpoint": 0, - "vertex_from": "818", - "timestamp": "2025-11-27T01:21:48.039718556Z" + "vertex_from": "618", + "timestamp": "2025-11-27T04:01:46.363247-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1544615, - "rtt_ms": 1.544615, + "rtt_ns": 1368542, + "rtt_ms": 1.368542, "checkpoint": 0, - "vertex_from": "852", - "timestamp": "2025-11-27T01:21:48.039743286Z" + "vertex_from": "574", + "timestamp": "2025-11-27T04:01:46.36347-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1384417, + "rtt_ms": 1.384417, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:46.363518-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1654055, - "rtt_ms": 1.654055, + "rtt_ns": 1483334, + "rtt_ms": 1.483334, "checkpoint": 0, - "vertex_from": "625", - "timestamp": "2025-11-27T01:21:48.039758706Z" + "vertex_from": "242", + "timestamp": "2025-11-27T04:01:46.36413-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1421456, - "rtt_ms": 1.421456, + "rtt_ns": 1678333, + "rtt_ms": 1.678333, "checkpoint": 0, - "vertex_from": "683", - "timestamp": "2025-11-27T01:21:48.040082615Z" + "vertex_from": "602", + "timestamp": "2025-11-27T04:01:46.364381-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1369646, - "rtt_ms": 1.369646, + "rtt_ns": 1597958, + "rtt_ms": 1.597958, "checkpoint": 0, - "vertex_from": "331", - "timestamp": "2025-11-27T01:21:48.040315824Z" + "vertex_from": "818", + "timestamp": "2025-11-27T04:01:46.36464-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1476265, - "rtt_ms": 1.476265, + "rtt_ns": 1569833, + "rtt_ms": 1.569833, "checkpoint": 0, - "vertex_from": "15", - "timestamp": "2025-11-27T01:21:48.040340654Z" + "vertex_from": "625", + "timestamp": "2025-11-27T04:01:46.364663-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1603915, - "rtt_ms": 1.603915, + "rtt_ns": 2038959, + "rtt_ms": 2.038959, "checkpoint": 0, - "vertex_from": "186", - "timestamp": "2025-11-27T01:21:48.040530953Z" + "vertex_from": "852", + "timestamp": "2025-11-27T04:01:46.365165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747494, - "rtt_ms": 1.747494, + "rtt_ns": 1949000, + "rtt_ms": 1.949, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "242", - "timestamp": "2025-11-27T01:21:48.040654323Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:01:46.365197-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1834254, - "rtt_ms": 1.834254, + "rtt_ns": 5634083, + "rtt_ms": 5.634083, "checkpoint": 0, - "vertex_from": "526", - "timestamp": "2025-11-27T01:21:48.040755222Z" + "vertex_from": "673", + "timestamp": "2025-11-27T04:01:46.365255-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 665218, - "rtt_ms": 0.665218, + "operation": "add_edge", + "rtt_ns": 2143416, + "rtt_ms": 2.143416, "checkpoint": 0, - "vertex_from": "233", - "timestamp": "2025-11-27T01:21:48.041322831Z" + "vertex_from": "0", + "vertex_to": "574", + "timestamp": "2025-11-27T04:01:46.365614-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2088423, - "rtt_ms": 2.088423, + "operation": "add_vertex", + "rtt_ns": 2118709, + "rtt_ms": 2.118709, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "602", - "timestamp": "2025-11-27T01:21:48.041716589Z" + "vertex_from": "683", + "timestamp": "2025-11-27T04:01:46.365638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071813, - "rtt_ms": 2.071813, + "rtt_ns": 1527459, + "rtt_ms": 1.527459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:48.041815629Z" + "vertex_to": "242", + "timestamp": "2025-11-27T04:01:46.365658-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135533, - "rtt_ms": 2.135533, + "rtt_ns": 1077083, + "rtt_ms": 1.077083, "checkpoint": 0, "vertex_from": "0", "vertex_to": "625", - "timestamp": "2025-11-27T01:21:48.041894879Z" + "timestamp": "2025-11-27T04:01:46.36574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600595, - "rtt_ms": 1.600595, + "rtt_ns": 2639667, + "rtt_ms": 2.639667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "15", - "timestamp": "2025-11-27T01:21:48.041941699Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:46.365784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719234, - "rtt_ms": 1.719234, + "rtt_ns": 1197916, + "rtt_ms": 1.197916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "331", - "timestamp": "2025-11-27T01:21:48.042035568Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:01:46.365838-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1976603, - "rtt_ms": 1.976603, + "operation": "add_vertex", + "rtt_ns": 1684666, + "rtt_ms": 1.684666, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "683", - "timestamp": "2025-11-27T01:21:48.042059868Z" + "vertex_from": "15", + "timestamp": "2025-11-27T04:01:46.366882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2433532, - "rtt_ms": 2.433532, + "rtt_ns": 1646125, + "rtt_ms": 1.646125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "818", - "timestamp": "2025-11-27T01:21:48.042152738Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:46.366902-08:00" }, { "operation": "add_edge", - "rtt_ns": 906167, - "rtt_ms": 0.906167, + "rtt_ns": 2533917, + "rtt_ms": 2.533917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:48.042229428Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:01:46.366916-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1258542, + "rtt_ms": 1.258542, + "checkpoint": 0, + "vertex_from": "186", + "timestamp": "2025-11-27T04:01:46.366918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560285, - "rtt_ms": 1.560285, + "rtt_ns": 1820500, + "rtt_ms": 1.8205, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:48.042316397Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:46.366986-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1239208, + "rtt_ms": 1.239208, + "checkpoint": 0, + "vertex_from": "233", + "timestamp": "2025-11-27T04:01:46.367025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785814, - "rtt_ms": 1.785814, + "rtt_ns": 1404916, + "rtt_ms": 1.404916, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "186", - "timestamp": "2025-11-27T01:21:48.042317327Z" + "vertex_to": "683", + "timestamp": "2025-11-27T04:01:46.367044-08:00" }, { "operation": "add_vertex", - "rtt_ns": 644308, - "rtt_ms": 0.644308, + "rtt_ns": 1326875, + "rtt_ms": 1.326875, "checkpoint": 0, "vertex_from": "804", - "timestamp": "2025-11-27T01:21:48.042364007Z" + "timestamp": "2025-11-27T04:01:46.367166-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1173796, - "rtt_ms": 1.173796, + "rtt_ns": 1441959, + "rtt_ms": 1.441959, "checkpoint": 0, - "vertex_from": "976", - "timestamp": "2025-11-27T01:21:48.043117955Z" + "vertex_from": "331", + "timestamp": "2025-11-27T04:01:46.367183-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1332195, - "rtt_ms": 1.332195, + "operation": "add_edge", + "rtt_ns": 1272542, + "rtt_ms": 1.272542, "checkpoint": 0, - "vertex_from": "842", - "timestamp": "2025-11-27T01:21:48.043150704Z" + "vertex_from": "0", + "vertex_to": "186", + "timestamp": "2025-11-27T04:01:46.368191-08:00" }, { "operation": "add_vertex", - "rtt_ns": 999806, - "rtt_ms": 0.999806, + "rtt_ns": 2590625, + "rtt_ms": 2.590625, "checkpoint": 0, - "vertex_from": "744", - "timestamp": "2025-11-27T01:21:48.043156394Z" + "vertex_from": "526", + "timestamp": "2025-11-27T04:01:46.368208-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1123036, - "rtt_ms": 1.123036, + "rtt_ns": 1319583, + "rtt_ms": 1.319583, "checkpoint": 0, - "vertex_from": "697", - "timestamp": "2025-11-27T01:21:48.043161034Z" + "vertex_from": "842", + "timestamp": "2025-11-27T04:01:46.368222-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1149076, - "rtt_ms": 1.149076, + "rtt_ns": 1330625, + "rtt_ms": 1.330625, "checkpoint": 0, - "vertex_from": "433", - "timestamp": "2025-11-27T01:21:48.043212144Z" + "vertex_from": "976", + "timestamp": "2025-11-27T04:01:46.368318-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1317625, - "rtt_ms": 1.317625, + "rtt_ns": 1458125, + "rtt_ms": 1.458125, "checkpoint": 0, "vertex_from": "900", - "timestamp": "2025-11-27T01:21:48.043215154Z" + "timestamp": "2025-11-27T04:01:46.368379-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1752244, - "rtt_ms": 1.752244, + "operation": "add_edge", + "rtt_ns": 1276208, + "rtt_ms": 1.276208, "checkpoint": 0, - "vertex_from": "653", - "timestamp": "2025-11-27T01:21:48.043983712Z" + "vertex_from": "0", + "vertex_to": "331", + "timestamp": "2025-11-27T04:01:46.368459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658165, - "rtt_ms": 1.658165, + "rtt_ns": 1631042, + "rtt_ms": 1.631042, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "15", + "timestamp": "2025-11-27T04:01:46.368514-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1414750, + "rtt_ms": 1.41475, "checkpoint": 0, "vertex_from": "0", "vertex_to": "804", - "timestamp": "2025-11-27T01:21:48.044022632Z" + "timestamp": "2025-11-27T04:01:46.368581-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1705945, - "rtt_ms": 1.705945, + "operation": "add_edge", + "rtt_ns": 1575833, + "rtt_ms": 1.575833, "checkpoint": 0, - "vertex_from": "613", - "timestamp": "2025-11-27T01:21:48.044024842Z" + "vertex_from": "0", + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:46.368601-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1749904, - "rtt_ms": 1.749904, + "rtt_ns": 1735125, + "rtt_ms": 1.735125, "checkpoint": 0, - "vertex_from": "897", - "timestamp": "2025-11-27T01:21:48.044069181Z" + "vertex_from": "697", + "timestamp": "2025-11-27T04:01:46.368781-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2219182, - "rtt_ms": 2.219182, + "operation": "add_vertex", + "rtt_ns": 1575125, + "rtt_ms": 1.575125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:48.045337697Z" + "vertex_from": "433", + "timestamp": "2025-11-27T04:01:46.369769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2661022, - "rtt_ms": 2.661022, + "rtt_ns": 2170333, + "rtt_ms": 2.170333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "744", - "timestamp": "2025-11-27T01:21:48.045817936Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:01:46.370393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2734692, - "rtt_ms": 2.734692, + "rtt_ns": 2029625, + "rtt_ms": 2.029625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "697", - "timestamp": "2025-11-27T01:21:48.045896236Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:46.37041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2758382, - "rtt_ms": 2.758382, + "rtt_ns": 2264750, + "rtt_ms": 2.26475, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "842", - "timestamp": "2025-11-27T01:21:48.045909546Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:46.370473-08:00" }, { "operation": "add_edge", - "rtt_ns": 2777791, - "rtt_ms": 2.777791, + "rtt_ns": 2296708, + "rtt_ms": 2.296708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:48.045993385Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:46.370615-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2035123, - "rtt_ms": 2.035123, + "rtt_ns": 2187916, + "rtt_ms": 2.187916, "checkpoint": 0, - "vertex_from": "1008", - "timestamp": "2025-11-27T01:21:48.046059845Z" + "vertex_from": "653", + "timestamp": "2025-11-27T04:01:46.370704-08:00" }, { "operation": "add_edge", - "rtt_ns": 2861151, - "rtt_ms": 2.861151, + "rtt_ns": 1940208, + "rtt_ms": 1.940208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "433", - "timestamp": "2025-11-27T01:21:48.046073725Z" + "vertex_to": "697", + "timestamp": "2025-11-27T04:01:46.370721-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2118173, - "rtt_ms": 2.118173, + "operation": "add_vertex", + "rtt_ns": 2146083, + "rtt_ms": 2.146083, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:48.046143265Z" + "vertex_from": "613", + "timestamp": "2025-11-27T04:01:46.370731-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1304106, - "rtt_ms": 1.304106, + "rtt_ns": 2329458, + "rtt_ms": 2.329458, "checkpoint": 0, - "vertex_from": "598", - "timestamp": "2025-11-27T01:21:48.046644013Z" + "vertex_from": "744", + "timestamp": "2025-11-27T04:01:46.37079-08:00" }, { "operation": "add_edge", - "rtt_ns": 2705482, - "rtt_ms": 2.705482, + "rtt_ns": 1038625, + "rtt_ms": 1.038625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:48.046775013Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:01:46.370808-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2223500, + "rtt_ms": 2.2235, + "checkpoint": 0, + "vertex_from": "897", + "timestamp": "2025-11-27T04:01:46.370826-08:00" }, { "operation": "add_edge", - "rtt_ns": 2826281, - "rtt_ms": 2.826281, + "rtt_ns": 1199333, + "rtt_ms": 1.199333, "checkpoint": 0, "vertex_from": "0", "vertex_to": "653", - "timestamp": "2025-11-27T01:21:48.046810373Z" + "timestamp": "2025-11-27T04:01:46.371904-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1077956, - "rtt_ms": 1.077956, + "rtt_ns": 1199875, + "rtt_ms": 1.199875, "checkpoint": 0, - "vertex_from": "473", - "timestamp": "2025-11-27T01:21:48.046898712Z" + "vertex_from": "705", + "timestamp": "2025-11-27T04:01:46.371922-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1077606, - "rtt_ms": 1.077606, + "rtt_ns": 1542583, + "rtt_ms": 1.542583, "checkpoint": 0, - "vertex_from": "46", - "timestamp": "2025-11-27T01:21:48.046975972Z" + "vertex_from": "1008", + "timestamp": "2025-11-27T04:01:46.371936-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1076306, - "rtt_ms": 1.076306, + "rtt_ns": 1476208, + "rtt_ms": 1.476208, "checkpoint": 0, - "vertex_from": "705", - "timestamp": "2025-11-27T01:21:48.046988042Z" + "vertex_from": "473", + "timestamp": "2025-11-27T04:01:46.37195-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1707815, - "rtt_ms": 1.707815, + "rtt_ns": 1681750, + "rtt_ms": 1.68175, "checkpoint": 0, - "vertex_from": "313", - "timestamp": "2025-11-27T01:21:48.04770318Z" + "vertex_from": "598", + "timestamp": "2025-11-27T04:01:46.372092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085377, - "rtt_ms": 1.085377, + "rtt_ns": 1464500, + "rtt_ms": 1.4645, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "598", - "timestamp": "2025-11-27T01:21:48.04772993Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:46.372196-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1418416, + "rtt_ms": 1.418416, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "744", + "timestamp": "2025-11-27T04:01:46.372209-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1678365, - "rtt_ms": 1.678365, + "rtt_ns": 1422708, + "rtt_ms": 1.422708, "checkpoint": 0, - "vertex_from": "203", - "timestamp": "2025-11-27T01:21:48.04775763Z" + "vertex_from": "313", + "timestamp": "2025-11-27T04:01:46.372232-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1634500, + "rtt_ms": 1.6345, + "checkpoint": 0, + "vertex_from": "46", + "timestamp": "2025-11-27T04:01:46.37225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698205, - "rtt_ms": 1.698205, + "rtt_ns": 1491833, + "rtt_ms": 1.491833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "1008", - "timestamp": "2025-11-27T01:21:48.04775847Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:46.372318-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1281496, - "rtt_ms": 1.281496, + "rtt_ns": 1106041, + "rtt_ms": 1.106041, "checkpoint": 0, "vertex_from": "472", - "timestamp": "2025-11-27T01:21:48.048059629Z" + "timestamp": "2025-11-27T04:01:46.373317-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1946954, - "rtt_ms": 1.946954, + "rtt_ns": 1633208, + "rtt_ms": 1.633208, "checkpoint": 0, - "vertex_from": "805", - "timestamp": "2025-11-27T01:21:48.048092879Z" + "vertex_from": "203", + "timestamp": "2025-11-27T04:01:46.373539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288416, - "rtt_ms": 1.288416, + "rtt_ns": 1740667, + "rtt_ms": 1.740667, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:48.048276698Z" + "vertex_to": "473", + "timestamp": "2025-11-27T04:01:46.373691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310806, - "rtt_ms": 1.310806, + "rtt_ns": 1770041, + "rtt_ms": 1.770041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "46", - "timestamp": "2025-11-27T01:21:48.048287218Z" + "vertex_to": "1008", + "timestamp": "2025-11-27T04:01:46.373706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416406, - "rtt_ms": 1.416406, + "rtt_ns": 1802208, + "rtt_ms": 1.802208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "473", - "timestamp": "2025-11-27T01:21:48.048315318Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:46.373724-08:00" }, { "operation": "add_edge", - "rtt_ns": 677218, - "rtt_ms": 0.677218, + "rtt_ns": 1577292, + "rtt_ms": 1.577292, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "313", - "timestamp": "2025-11-27T01:21:48.048380768Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:01:46.373828-08:00" }, { "operation": "add_edge", - "rtt_ns": 744437, - "rtt_ms": 0.744437, + "rtt_ns": 1867250, + "rtt_ms": 1.86725, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "203", - "timestamp": "2025-11-27T01:21:48.048502357Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:01:46.3741-08:00" }, { "operation": "add_vertex", - "rtt_ns": 796857, - "rtt_ms": 0.796857, + "rtt_ns": 1777500, + "rtt_ms": 1.7775, "checkpoint": 0, - "vertex_from": "209", - "timestamp": "2025-11-27T01:21:48.048558957Z" + "vertex_from": "752", + "timestamp": "2025-11-27T04:01:46.374102-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1088066, - "rtt_ms": 1.088066, + "rtt_ns": 2118792, + "rtt_ms": 2.118792, "checkpoint": 0, - "vertex_from": "817", - "timestamp": "2025-11-27T01:21:48.048820506Z" + "vertex_from": "805", + "timestamp": "2025-11-27T04:01:46.374318-08:00" }, { "operation": "add_edge", - "rtt_ns": 770697, - "rtt_ms": 0.770697, + "rtt_ns": 2217208, + "rtt_ms": 2.217208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "472", - "timestamp": "2025-11-27T01:21:48.048830806Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:01:46.374336-08:00" }, { "operation": "add_edge", - "rtt_ns": 749227, - "rtt_ms": 0.749227, + "rtt_ns": 1417333, + "rtt_ms": 1.417333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "805", - "timestamp": "2025-11-27T01:21:48.048842646Z" + "vertex_to": "203", + "timestamp": "2025-11-27T04:01:46.374956-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2034873, - "rtt_ms": 2.034873, + "operation": "add_edge", + "rtt_ns": 1669500, + "rtt_ms": 1.6695, "checkpoint": 0, - "vertex_from": "752", - "timestamp": "2025-11-27T01:21:48.048846586Z" + "vertex_from": "0", + "vertex_to": "472", + "timestamp": "2025-11-27T04:01:46.374987-08:00" }, { "operation": "add_vertex", - "rtt_ns": 689768, - "rtt_ms": 0.689768, + "rtt_ns": 1253834, + "rtt_ms": 1.253834, "checkpoint": 0, - "vertex_from": "557", - "timestamp": "2025-11-27T01:21:48.048979156Z" + "vertex_from": "209", + "timestamp": "2025-11-27T04:01:46.374962-08:00" }, { "operation": "add_vertex", - "rtt_ns": 770257, - "rtt_ms": 0.770257, + "rtt_ns": 1328333, + "rtt_ms": 1.328333, "checkpoint": 0, "vertex_from": "187", - "timestamp": "2025-11-27T01:21:48.049048855Z" + "timestamp": "2025-11-27T04:01:46.375054-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1153386, - "rtt_ms": 1.153386, + "operation": "add_edge", + "rtt_ns": 1231791, + "rtt_ms": 1.231791, "checkpoint": 0, - "vertex_from": "666", - "timestamp": "2025-11-27T01:21:48.049470094Z" + "vertex_from": "0", + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:46.375334-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1188216, - "rtt_ms": 1.188216, + "rtt_ns": 1660792, + "rtt_ms": 1.660792, "checkpoint": 0, - "vertex_from": "115", - "timestamp": "2025-11-27T01:21:48.049570944Z" + "vertex_from": "817", + "timestamp": "2025-11-27T04:01:46.375353-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1184356, - "rtt_ms": 1.184356, + "rtt_ns": 1541000, + "rtt_ms": 1.541, "checkpoint": 0, - "vertex_from": "111", - "timestamp": "2025-11-27T01:21:48.049687953Z" + "vertex_from": "557", + "timestamp": "2025-11-27T04:01:46.375372-08:00" }, { - "operation": "add_edge", - "rtt_ns": 973377, - "rtt_ms": 0.973377, + "operation": "add_vertex", + "rtt_ns": 1557333, + "rtt_ms": 1.557333, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "817", - "timestamp": "2025-11-27T01:21:48.049794173Z" + "vertex_from": "115", + "timestamp": "2025-11-27T04:01:46.375895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251556, - "rtt_ms": 1.251556, + "rtt_ns": 1590917, + "rtt_ms": 1.590917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:48.049831413Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:01:46.37591-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1560555, - "rtt_ms": 1.560555, + "rtt_ns": 1822791, + "rtt_ms": 1.822791, "checkpoint": 0, - "vertex_from": "970", - "timestamp": "2025-11-27T01:21:48.050406521Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1604235, - "rtt_ms": 1.604235, - "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "752", - "timestamp": "2025-11-27T01:21:48.050451181Z" + "vertex_from": "666", + "timestamp": "2025-11-27T04:01:46.375925-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1793384, - "rtt_ms": 1.793384, + "rtt_ns": 1285792, + "rtt_ms": 1.285792, "checkpoint": 0, - "vertex_from": "291", - "timestamp": "2025-11-27T01:21:48.05062769Z" + "vertex_from": "111", + "timestamp": "2025-11-27T04:01:46.376267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755894, - "rtt_ms": 1.755894, + "rtt_ns": 1267416, + "rtt_ms": 1.267416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "557", - "timestamp": "2025-11-27T01:21:48.0507353Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1176886, - "rtt_ms": 1.176886, - "checkpoint": 0, - "vertex_from": "899", - "timestamp": "2025-11-27T01:21:48.051009539Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 739477, - "rtt_ms": 0.739477, - "checkpoint": 0, - "vertex_from": "410", - "timestamp": "2025-11-27T01:21:48.051194188Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:46.376284-08:00" }, { "operation": "add_vertex", - "rtt_ns": 759937, - "rtt_ms": 0.759937, + "rtt_ns": 1306542, + "rtt_ms": 1.306542, "checkpoint": 0, - "vertex_from": "534", - "timestamp": "2025-11-27T01:21:48.051497187Z" + "vertex_from": "291", + "timestamp": "2025-11-27T04:01:46.376295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2171672, - "rtt_ms": 2.171672, + "rtt_ns": 1081125, + "rtt_ms": 1.081125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "115", - "timestamp": "2025-11-27T01:21:48.051743116Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:01:46.376435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359022, - "rtt_ms": 2.359022, + "rtt_ns": 1622708, + "rtt_ms": 1.622708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "666", - "timestamp": "2025-11-27T01:21:48.051829346Z" + "vertex_to": "187", + "timestamp": "2025-11-27T04:01:46.376677-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179753, - "rtt_ms": 2.179753, + "rtt_ns": 1450166, + "rtt_ms": 1.450166, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "111", - "timestamp": "2025-11-27T01:21:48.051867926Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:46.376822-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2968931, - "rtt_ms": 2.968931, + "operation": "add_vertex", + "rtt_ns": 1633125, + "rtt_ms": 1.633125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "187", - "timestamp": "2025-11-27T01:21:48.052018016Z" + "vertex_from": "970", + "timestamp": "2025-11-27T04:01:46.37697-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2278262, - "rtt_ms": 2.278262, + "rtt_ns": 1198084, + "rtt_ms": 1.198084, "checkpoint": 0, - "vertex_from": "558", - "timestamp": "2025-11-27T01:21:48.052075245Z" + "vertex_from": "410", + "timestamp": "2025-11-27T04:01:46.377633-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1687014, - "rtt_ms": 1.687014, + "operation": "add_vertex", + "rtt_ns": 1363917, + "rtt_ms": 1.363917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "970", - "timestamp": "2025-11-27T01:21:48.052093785Z" + "vertex_from": "899", + "timestamp": "2025-11-27T04:01:46.377649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506065, - "rtt_ms": 1.506065, + "rtt_ns": 1370958, + "rtt_ms": 1.370958, "checkpoint": 0, "vertex_from": "0", "vertex_to": "291", - "timestamp": "2025-11-27T01:21:48.052134025Z" + "timestamp": "2025-11-27T04:01:46.377666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008787, - "rtt_ms": 1.008787, + "rtt_ns": 1785333, + "rtt_ms": 1.785333, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:48.052203515Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:01:46.377681-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1785167, + "rtt_ms": 1.785167, + "checkpoint": 0, + "vertex_from": "558", + "timestamp": "2025-11-27T04:01:46.377695-08:00" }, { "operation": "add_edge", - "rtt_ns": 729478, - "rtt_ms": 0.729478, + "rtt_ns": 1441750, + "rtt_ms": 1.44175, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:48.052226955Z" + "vertex_to": "111", + "timestamp": "2025-11-27T04:01:46.377709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218706, - "rtt_ms": 1.218706, + "rtt_ns": 1870209, + "rtt_ms": 1.870209, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:48.052228515Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:01:46.377795-08:00" }, { "operation": "add_vertex", - "rtt_ns": 742178, - "rtt_ms": 0.742178, + "rtt_ns": 1104333, + "rtt_ms": 1.104333, "checkpoint": 0, "vertex_from": "163", - "timestamp": "2025-11-27T01:21:48.052488784Z" + "timestamp": "2025-11-27T04:01:46.377929-08:00" }, { "operation": "add_vertex", - "rtt_ns": 635028, - "rtt_ms": 0.635028, + "rtt_ns": 1385708, + "rtt_ms": 1.385708, "checkpoint": 0, - "vertex_from": "872", - "timestamp": "2025-11-27T01:21:48.052505464Z" + "vertex_from": "534", + "timestamp": "2025-11-27T04:01:46.378064-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 695968, - "rtt_ms": 0.695968, + "operation": "add_edge", + "rtt_ns": 1036500, + "rtt_ms": 1.0365, "checkpoint": 0, - "vertex_from": "87", - "timestamp": "2025-11-27T01:21:48.052527064Z" + "vertex_from": "0", + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:46.378966-08:00" }, { "operation": "add_vertex", - "rtt_ns": 721397, - "rtt_ms": 0.721397, + "rtt_ns": 1302459, + "rtt_ms": 1.302459, "checkpoint": 0, - "vertex_from": "227", - "timestamp": "2025-11-27T01:21:48.052740783Z" + "vertex_from": "872", + "timestamp": "2025-11-27T04:01:46.378984-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1072626, - "rtt_ms": 1.072626, + "rtt_ns": 1431583, + "rtt_ms": 1.431583, "checkpoint": 0, - "vertex_from": "737", - "timestamp": "2025-11-27T01:21:48.053300901Z" + "vertex_from": "227", + "timestamp": "2025-11-27T04:01:46.379142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355486, - "rtt_ms": 1.355486, + "rtt_ns": 1542917, + "rtt_ms": 1.542917, "checkpoint": 0, "vertex_from": "0", "vertex_to": "558", - "timestamp": "2025-11-27T01:21:48.053431101Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1309086, - "rtt_ms": 1.309086, - "checkpoint": 0, - "vertex_from": "108", - "timestamp": "2025-11-27T01:21:48.053445701Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1261076, - "rtt_ms": 1.261076, - "checkpoint": 0, - "vertex_from": "859", - "timestamp": "2025-11-27T01:21:48.053492211Z" + "timestamp": "2025-11-27T04:01:46.379239-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1305186, - "rtt_ms": 1.305186, + "rtt_ns": 1930916, + "rtt_ms": 1.930916, "checkpoint": 0, - "vertex_from": "816", - "timestamp": "2025-11-27T01:21:48.053511201Z" + "vertex_from": "629", + "timestamp": "2025-11-27T04:01:46.37973-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1415916, - "rtt_ms": 1.415916, + "rtt_ns": 2207250, + "rtt_ms": 2.20725, "checkpoint": 0, - "vertex_from": "629", - "timestamp": "2025-11-27T01:21:48.053512441Z" + "vertex_from": "87", + "timestamp": "2025-11-27T04:01:46.379876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152636, - "rtt_ms": 1.152636, + "rtt_ns": 3432084, + "rtt_ms": 3.432084, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "87", - "timestamp": "2025-11-27T01:21:48.05368Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 925347, - "rtt_ms": 0.925347, - "checkpoint": 0, - "vertex_from": "674", - "timestamp": "2025-11-27T01:21:48.054359328Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:01:46.380402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979144, - "rtt_ms": 1.979144, + "rtt_ns": 2786041, + "rtt_ms": 2.786041, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:48.054484988Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1030397, - "rtt_ms": 1.030397, - "checkpoint": 0, - "vertex_from": "593", - "timestamp": "2025-11-27T01:21:48.054712487Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 697737, - "rtt_ms": 0.697737, - "checkpoint": 0, - "vertex_from": "603", - "timestamp": "2025-11-27T01:21:48.055184415Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:46.38042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942924, - "rtt_ms": 1.942924, + "rtt_ns": 1294917, + "rtt_ms": 1.294917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "737", - "timestamp": "2025-11-27T01:21:48.055244045Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:01:46.380437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2520602, - "rtt_ms": 2.520602, + "rtt_ns": 2807500, + "rtt_ms": 2.8075, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "227", - "timestamp": "2025-11-27T01:21:48.055261865Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:46.380456-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2773641, - "rtt_ms": 2.773641, + "operation": "add_vertex", + "rtt_ns": 1289917, + "rtt_ms": 1.289917, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:48.055262895Z" + "vertex_from": "816", + "timestamp": "2025-11-27T04:01:46.380529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972084, - "rtt_ms": 1.972084, + "rtt_ns": 1777459, + "rtt_ms": 1.777459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:48.055418185Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:46.380762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936904, - "rtt_ms": 1.936904, + "rtt_ns": 2702125, + "rtt_ms": 2.702125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "859", - "timestamp": "2025-11-27T01:21:48.055429425Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:46.380767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043473, - "rtt_ms": 2.043473, + "rtt_ns": 1119417, + "rtt_ms": 1.119417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:48.055555014Z" + "vertex_to": "629", + "timestamp": "2025-11-27T04:01:46.380849-08:00" }, { - "operation": "add_edge", - "rtt_ns": 877017, - "rtt_ms": 0.877017, + "operation": "add_vertex", + "rtt_ns": 2198958, + "rtt_ms": 2.198958, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:48.055589854Z" + "vertex_from": "108", + "timestamp": "2025-11-27T04:01:46.381167-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104923, - "rtt_ms": 2.104923, + "rtt_ns": 1470625, + "rtt_ms": 1.470625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "629", - "timestamp": "2025-11-27T01:21:48.055617844Z" + "vertex_to": "87", + "timestamp": "2025-11-27T04:01:46.381348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285136, - "rtt_ms": 1.285136, + "rtt_ns": 1099417, + "rtt_ms": 1.099417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:48.055644854Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:46.381629-08:00" }, { "operation": "add_vertex", - "rtt_ns": 751398, - "rtt_ms": 0.751398, - "checkpoint": 0, - "vertex_from": "103", - "timestamp": "2025-11-27T01:21:48.056018883Z" - }, - { - "operation": "add_edge", - "rtt_ns": 866738, - "rtt_ms": 0.866738, + "rtt_ns": 1611583, + "rtt_ms": 1.611583, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "603", - "timestamp": "2025-11-27T01:21:48.056051523Z" + "vertex_from": "859", + "timestamp": "2025-11-27T04:01:46.382034-08:00" }, { "operation": "add_vertex", - "rtt_ns": 838277, - "rtt_ms": 0.838277, + "rtt_ns": 1634791, + "rtt_ms": 1.634791, "checkpoint": 0, - "vertex_from": "205", - "timestamp": "2025-11-27T01:21:48.056106432Z" + "vertex_from": "674", + "timestamp": "2025-11-27T04:01:46.382074-08:00" }, { "operation": "add_vertex", - "rtt_ns": 870187, - "rtt_ms": 0.870187, + "rtt_ns": 1357000, + "rtt_ms": 1.357, "checkpoint": 0, "vertex_from": "362", - "timestamp": "2025-11-27T01:21:48.056116752Z" + "timestamp": "2025-11-27T04:01:46.382135-08:00" }, { "operation": "add_vertex", - "rtt_ns": 838697, - "rtt_ms": 0.838697, + "rtt_ns": 1387416, + "rtt_ms": 1.387416, "checkpoint": 0, - "vertex_from": "465", - "timestamp": "2025-11-27T01:21:48.056272762Z" + "vertex_from": "603", + "timestamp": "2025-11-27T04:01:46.382151-08:00" }, { "operation": "add_vertex", - "rtt_ns": 894997, - "rtt_ms": 0.894997, + "rtt_ns": 1314375, + "rtt_ms": 1.314375, "checkpoint": 0, - "vertex_from": "69", - "timestamp": "2025-11-27T01:21:48.056319392Z" + "vertex_from": "205", + "timestamp": "2025-11-27T04:01:46.382166-08:00" }, { "operation": "add_vertex", - "rtt_ns": 755448, - "rtt_ms": 0.755448, + "rtt_ns": 2339792, + "rtt_ms": 2.339792, "checkpoint": 0, - "vertex_from": "38", - "timestamp": "2025-11-27T01:21:48.056375352Z" + "vertex_from": "737", + "timestamp": "2025-11-27T04:01:46.382745-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 840167, - "rtt_ms": 0.840167, + "operation": "add_edge", + "rtt_ns": 1831417, + "rtt_ms": 1.831417, "checkpoint": 0, - "vertex_from": "347", - "timestamp": "2025-11-27T01:21:48.056400251Z" + "vertex_from": "0", + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:46.382998-08:00" }, { "operation": "add_vertex", - "rtt_ns": 770037, - "rtt_ms": 0.770037, + "rtt_ns": 1387375, + "rtt_ms": 1.387375, "checkpoint": 0, - "vertex_from": "930", - "timestamp": "2025-11-27T01:21:48.056417281Z" + "vertex_from": "69", + "timestamp": "2025-11-27T04:01:46.383017-08:00" }, { "operation": "add_vertex", - "rtt_ns": 836807, - "rtt_ms": 0.836807, + "rtt_ns": 3178000, + "rtt_ms": 3.178, "checkpoint": 0, - "vertex_from": "338", - "timestamp": "2025-11-27T01:21:48.056429781Z" + "vertex_from": "103", + "timestamp": "2025-11-27T04:01:46.384527-08:00" }, { "operation": "add_edge", - "rtt_ns": 968386, - "rtt_ms": 0.968386, + "rtt_ns": 2383125, + "rtt_ms": 2.383125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:48.057288538Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:01:46.384534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223216, - "rtt_ms": 1.223216, + "rtt_ns": 2378833, + "rtt_ms": 2.378833, "checkpoint": 0, "vertex_from": "0", "vertex_to": "205", - "timestamp": "2025-11-27T01:21:48.057330318Z" + "timestamp": "2025-11-27T04:01:46.384545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213216, - "rtt_ms": 1.213216, + "rtt_ns": 2486208, + "rtt_ms": 2.486208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "362", - "timestamp": "2025-11-27T01:21:48.057330648Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:46.384561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060126, - "rtt_ms": 1.060126, + "rtt_ns": 2683708, + "rtt_ms": 2.683708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:48.057333888Z" + "vertex_to": "859", + "timestamp": "2025-11-27T04:01:46.384719-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1280335, - "rtt_ms": 1.280335, + "rtt_ns": 4378000, + "rtt_ms": 4.378, "checkpoint": 0, - "vertex_from": "807", - "timestamp": "2025-11-27T01:21:48.057338568Z" + "vertex_from": "593", + "timestamp": "2025-11-27T04:01:46.384836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323945, - "rtt_ms": 1.323945, + "rtt_ns": 2770750, + "rtt_ms": 2.77075, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "103", - "timestamp": "2025-11-27T01:21:48.057343948Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:01:46.384906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548305, - "rtt_ms": 1.548305, + "rtt_ns": 3704208, + "rtt_ms": 3.704208, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "347", - "timestamp": "2025-11-27T01:21:48.057949186Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:01:46.386449-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1569165, - "rtt_ms": 1.569165, + "operation": "add_vertex", + "rtt_ns": 1673167, + "rtt_ms": 1.673167, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "930", - "timestamp": "2025-11-27T01:21:48.057986916Z" + "vertex_from": "807", + "timestamp": "2025-11-27T04:01:46.38658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566055, - "rtt_ms": 1.566055, + "rtt_ns": 1862416, + "rtt_ms": 1.862416, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:48.057996636Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:46.386699-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 3704875, + "rtt_ms": 3.704875, + "checkpoint": 0, + "vertex_from": "465", + "timestamp": "2025-11-27T04:01:46.386705-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1994208, + "rtt_ms": 1.994208, + "checkpoint": 0, + "vertex_from": "930", + "timestamp": "2025-11-27T04:01:46.386713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622664, - "rtt_ms": 1.622664, + "rtt_ns": 3764000, + "rtt_ms": 3.764, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:48.057998386Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:46.386782-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1160986, - "rtt_ms": 1.160986, + "rtt_ns": 2632292, + "rtt_ms": 2.632292, "checkpoint": 0, - "vertex_from": "626", - "timestamp": "2025-11-27T01:21:48.058498064Z" + "vertex_from": "347", + "timestamp": "2025-11-27T04:01:46.387167-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 706718, - "rtt_ms": 0.706718, + "operation": "add_edge", + "rtt_ns": 2820209, + "rtt_ms": 2.820209, "checkpoint": 0, - "vertex_from": "914", - "timestamp": "2025-11-27T01:21:48.058709094Z" + "vertex_from": "0", + "vertex_to": "103", + "timestamp": "2025-11-27T04:01:46.387347-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1382726, - "rtt_ms": 1.382726, + "rtt_ns": 2873291, + "rtt_ms": 2.873291, "checkpoint": 0, - "vertex_from": "345", - "timestamp": "2025-11-27T01:21:48.058730334Z" + "vertex_from": "38", + "timestamp": "2025-11-27T04:01:46.387436-08:00" }, { "operation": "add_vertex", - "rtt_ns": 745828, - "rtt_ms": 0.745828, + "rtt_ns": 1254375, + "rtt_ms": 1.254375, "checkpoint": 0, - "vertex_from": "663", - "timestamp": "2025-11-27T01:21:48.058746644Z" + "vertex_from": "964", + "timestamp": "2025-11-27T04:01:46.387705-08:00" }, { "operation": "add_vertex", - "rtt_ns": 775448, - "rtt_ms": 0.775448, + "rtt_ns": 3725833, + "rtt_ms": 3.725833, "checkpoint": 0, - "vertex_from": "519", - "timestamp": "2025-11-27T01:21:48.058767884Z" + "vertex_from": "338", + "timestamp": "2025-11-27T04:01:46.388274-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2029244, - "rtt_ms": 2.029244, + "operation": "add_edge", + "rtt_ns": 1866958, + "rtt_ms": 1.866958, "checkpoint": 0, - "vertex_from": "554", - "timestamp": "2025-11-27T01:21:48.059363932Z" + "vertex_from": "0", + "vertex_to": "807", + "timestamp": "2025-11-27T04:01:46.388447-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1422645, - "rtt_ms": 1.422645, + "rtt_ns": 1759833, + "rtt_ms": 1.759833, "checkpoint": 0, - "vertex_from": "330", - "timestamp": "2025-11-27T01:21:48.059377261Z" + "vertex_from": "554", + "timestamp": "2025-11-27T04:01:46.38846-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2152443, - "rtt_ms": 2.152443, + "operation": "add_edge", + "rtt_ns": 1574125, + "rtt_ms": 1.574125, "checkpoint": 0, - "vertex_from": "964", - "timestamp": "2025-11-27T01:21:48.059446961Z" + "vertex_from": "0", + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:46.38901-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2165343, - "rtt_ms": 2.165343, + "rtt_ns": 2420625, + "rtt_ms": 2.420625, "checkpoint": 0, "vertex_from": "716", - "timestamp": "2025-11-27T01:21:48.059506251Z" + "timestamp": "2025-11-27T04:01:46.389203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598535, - "rtt_ms": 1.598535, + "rtt_ns": 2494750, + "rtt_ms": 2.49475, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "626", - "timestamp": "2025-11-27T01:21:48.060096999Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:01:46.389208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2815821, - "rtt_ms": 2.815821, + "rtt_ns": 1518750, + "rtt_ms": 1.51875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "807", - "timestamp": "2025-11-27T01:21:48.060155229Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:01:46.389224-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1448995, - "rtt_ms": 1.448995, + "operation": "add_vertex", + "rtt_ns": 1945041, + "rtt_ms": 1.945041, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "663", - "timestamp": "2025-11-27T01:21:48.060196129Z" + "vertex_from": "626", + "timestamp": "2025-11-27T04:01:46.389294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454905, - "rtt_ms": 1.454905, + "rtt_ns": 2605833, + "rtt_ms": 2.605833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:48.060223649Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:46.389311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570065, - "rtt_ms": 1.570065, + "rtt_ns": 2286750, + "rtt_ms": 2.28675, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "914", - "timestamp": "2025-11-27T01:21:48.060279569Z" + "vertex_to": "347", + "timestamp": "2025-11-27T04:01:46.389454-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1817074, - "rtt_ms": 1.817074, + "operation": "add_vertex", + "rtt_ns": 1801334, + "rtt_ms": 1.801334, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "345", - "timestamp": "2025-11-27T01:21:48.060547778Z" + "vertex_from": "345", + "timestamp": "2025-11-27T04:01:46.390251-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1231157, - "rtt_ms": 1.231157, + "operation": "add_vertex", + "rtt_ns": 1158250, + "rtt_ms": 1.15825, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:48.060608908Z" + "vertex_from": "663", + "timestamp": "2025-11-27T04:01:46.390383-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1438875, + "rtt_ms": 1.438875, + "checkpoint": 0, + "vertex_from": "330", + "timestamp": "2025-11-27T04:01:46.39045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284635, - "rtt_ms": 1.284635, + "rtt_ns": 2221333, + "rtt_ms": 2.221333, "checkpoint": 0, "vertex_from": "0", "vertex_to": "554", - "timestamp": "2025-11-27T01:21:48.060649147Z" + "timestamp": "2025-11-27T04:01:46.390682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227126, - "rtt_ms": 1.227126, + "rtt_ns": 2426417, + "rtt_ms": 2.426417, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "964", - "timestamp": "2025-11-27T01:21:48.060674337Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:46.390701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203836, - "rtt_ms": 1.203836, + "rtt_ns": 1554875, + "rtt_ms": 1.554875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "716", - "timestamp": "2025-11-27T01:21:48.060710547Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:01:46.39085-08:00" }, { "operation": "add_vertex", - "rtt_ns": 714868, - "rtt_ms": 0.714868, + "rtt_ns": 1657458, + "rtt_ms": 1.657458, "checkpoint": 0, - "vertex_from": "715", - "timestamp": "2025-11-27T01:21:48.060814567Z" + "vertex_from": "519", + "timestamp": "2025-11-27T04:01:46.390867-08:00" }, { "operation": "add_vertex", - "rtt_ns": 736027, - "rtt_ms": 0.736027, + "rtt_ns": 2095833, + "rtt_ms": 2.095833, "checkpoint": 0, - "vertex_from": "332", - "timestamp": "2025-11-27T01:21:48.060936706Z" + "vertex_from": "914", + "timestamp": "2025-11-27T04:01:46.391408-08:00" }, { "operation": "add_vertex", - "rtt_ns": 806657, - "rtt_ms": 0.806657, + "rtt_ns": 1817625, + "rtt_ms": 1.817625, "checkpoint": 0, "vertex_from": "681", - "timestamp": "2025-11-27T01:21:48.060965666Z" + "timestamp": "2025-11-27T04:01:46.392501-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 700797, - "rtt_ms": 0.700797, + "operation": "add_edge", + "rtt_ns": 2261459, + "rtt_ms": 2.261459, "checkpoint": 0, - "vertex_from": "684", - "timestamp": "2025-11-27T01:21:48.060982816Z" + "vertex_from": "0", + "vertex_to": "663", + "timestamp": "2025-11-27T04:01:46.392645-08:00" }, { "operation": "add_vertex", - "rtt_ns": 762117, - "rtt_ms": 0.762117, + "rtt_ns": 2092542, + "rtt_ms": 2.092542, "checkpoint": 0, - "vertex_from": "378", - "timestamp": "2025-11-27T01:21:48.060989266Z" + "vertex_from": "332", + "timestamp": "2025-11-27T04:01:46.392794-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 678158, - "rtt_ms": 0.678158, + "operation": "add_edge", + "rtt_ns": 2389625, + "rtt_ms": 2.389625, "checkpoint": 0, - "vertex_from": "413", - "timestamp": "2025-11-27T01:21:48.061232686Z" + "vertex_from": "0", + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:46.39284-08:00" }, { "operation": "add_edge", - "rtt_ns": 950427, - "rtt_ms": 0.950427, + "rtt_ns": 2677125, + "rtt_ms": 2.677125, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:48.061916633Z" + "vertex_to": "345", + "timestamp": "2025-11-27T04:01:46.392928-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1203426, - "rtt_ms": 1.203426, + "rtt_ns": 3474541, + "rtt_ms": 3.474541, "checkpoint": 0, - "vertex_from": "458", - "timestamp": "2025-11-27T01:21:48.061920903Z" + "vertex_from": "715", + "timestamp": "2025-11-27T04:01:46.392932-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1192526, - "rtt_ms": 1.192526, + "operation": "add_vertex", + "rtt_ns": 2731250, + "rtt_ms": 2.73125, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "715", - "timestamp": "2025-11-27T01:21:48.062007743Z" + "vertex_from": "378", + "timestamp": "2025-11-27T04:01:46.393582-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1798375, - "rtt_ms": 1.798375, + "operation": "add_edge", + "rtt_ns": 2302333, + "rtt_ms": 2.302333, "checkpoint": 0, - "vertex_from": "838", - "timestamp": "2025-11-27T01:21:48.062475072Z" + "vertex_from": "0", + "vertex_to": "914", + "timestamp": "2025-11-27T04:01:46.393711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511316, - "rtt_ms": 1.511316, + "rtt_ns": 4609250, + "rtt_ms": 4.60925, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "684", - "timestamp": "2025-11-27T01:21:48.062494562Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:46.393813-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1900683, - "rtt_ms": 1.900683, + "rtt_ns": 1203125, + "rtt_ms": 1.203125, "checkpoint": 0, - "vertex_from": "451", - "timestamp": "2025-11-27T01:21:48.062511341Z" + "vertex_from": "684", + "timestamp": "2025-11-27T04:01:46.393849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576775, - "rtt_ms": 1.576775, + "rtt_ns": 1362750, + "rtt_ms": 1.36275, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:48.062514261Z" + "vertex_to": "715", + "timestamp": "2025-11-27T04:01:46.394295-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1904234, - "rtt_ms": 1.904234, + "operation": "add_edge", + "rtt_ns": 3442125, + "rtt_ms": 3.442125, "checkpoint": 0, - "vertex_from": "151", - "timestamp": "2025-11-27T01:21:48.062557581Z" + "vertex_from": "0", + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:46.394309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593395, - "rtt_ms": 1.593395, + "rtt_ns": 1538792, + "rtt_ms": 1.538792, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "378", - "timestamp": "2025-11-27T01:21:48.062583201Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:46.394333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431655, - "rtt_ms": 1.431655, + "rtt_ns": 1892666, + "rtt_ms": 1.892666, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "413", - "timestamp": "2025-11-27T01:21:48.062664821Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:46.394394-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1437656, - "rtt_ms": 1.437656, + "rtt_ns": 1945125, + "rtt_ms": 1.945125, "checkpoint": 0, - "vertex_from": "803", - "timestamp": "2025-11-27T01:21:48.064023957Z" + "vertex_from": "413", + "timestamp": "2025-11-27T04:01:46.394786-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2049744, - "rtt_ms": 2.049744, + "rtt_ns": 1961583, + "rtt_ms": 1.961583, "checkpoint": 0, - "vertex_from": "419", - "timestamp": "2025-11-27T01:21:48.064061567Z" + "vertex_from": "451", + "timestamp": "2025-11-27T04:01:46.394894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200213, - "rtt_ms": 2.200213, + "rtt_ns": 1686875, + "rtt_ms": 1.686875, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "458", - "timestamp": "2025-11-27T01:21:48.064121636Z" + "vertex_to": "378", + "timestamp": "2025-11-27T04:01:46.39527-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1623645, - "rtt_ms": 1.623645, + "rtt_ns": 2031792, + "rtt_ms": 2.031792, "checkpoint": 0, - "vertex_from": "707", - "timestamp": "2025-11-27T01:21:48.064143216Z" + "vertex_from": "151", + "timestamp": "2025-11-27T04:01:46.395744-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1979625, + "rtt_ms": 1.979625, + "checkpoint": 0, + "vertex_from": "838", + "timestamp": "2025-11-27T04:01:46.395796-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2249113, - "rtt_ms": 2.249113, + "rtt_ns": 2130667, + "rtt_ms": 2.130667, "checkpoint": 0, "vertex_from": "236", - "timestamp": "2025-11-27T01:21:48.064168296Z" + "timestamp": "2025-11-27T04:01:46.396441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737864, - "rtt_ms": 1.737864, + "rtt_ns": 2733250, + "rtt_ms": 2.73325, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "838", - "timestamp": "2025-11-27T01:21:48.064213466Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:01:46.396583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752985, - "rtt_ms": 1.752985, + "rtt_ns": 1829375, + "rtt_ms": 1.829375, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "451", - "timestamp": "2025-11-27T01:21:48.064264576Z" + "vertex_to": "413", + "timestamp": "2025-11-27T04:01:46.396615-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1769044, - "rtt_ms": 1.769044, + "rtt_ns": 2347792, + "rtt_ms": 2.347792, "checkpoint": 0, "vertex_from": "643", - "timestamp": "2025-11-27T01:21:48.064266516Z" + "timestamp": "2025-11-27T04:01:46.396743-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2496125, + "rtt_ms": 2.496125, + "checkpoint": 0, + "vertex_from": "458", + "timestamp": "2025-11-27T04:01:46.396793-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1540458, + "rtt_ms": 1.540458, + "checkpoint": 0, + "vertex_from": "707", + "timestamp": "2025-11-27T04:01:46.396811-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2478292, + "rtt_ms": 2.478292, + "checkpoint": 0, + "vertex_from": "419", + "timestamp": "2025-11-27T04:01:46.396813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728555, - "rtt_ms": 1.728555, + "rtt_ns": 2284459, + "rtt_ms": 2.284459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "151", - "timestamp": "2025-11-27T01:21:48.064286526Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:01:46.397179-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1676835, - "rtt_ms": 1.676835, + "rtt_ns": 1609083, + "rtt_ms": 1.609083, "checkpoint": 0, "vertex_from": "317", - "timestamp": "2025-11-27T01:21:48.064343526Z" + "timestamp": "2025-11-27T04:01:46.398226-08:00" }, { "operation": "add_vertex", - "rtt_ns": 758878, - "rtt_ms": 0.758878, + "rtt_ns": 1691500, + "rtt_ms": 1.6915, "checkpoint": 0, - "vertex_from": "806", - "timestamp": "2025-11-27T01:21:48.064883094Z" + "vertex_from": "803", + "timestamp": "2025-11-27T04:01:46.398279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406125, - "rtt_ms": 1.406125, + "rtt_ns": 1564708, + "rtt_ms": 1.564708, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "803", - "timestamp": "2025-11-27T01:21:48.065430462Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:46.398308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304595, - "rtt_ms": 1.304595, + "rtt_ns": 1751833, + "rtt_ms": 1.751833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:48.065571521Z" + "vertex_to": "458", + "timestamp": "2025-11-27T04:01:46.398546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477665, - "rtt_ms": 1.477665, + "rtt_ns": 2272917, + "rtt_ms": 2.272917, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "707", - "timestamp": "2025-11-27T01:21:48.065621231Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:01:46.398714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505245, - "rtt_ms": 1.505245, + "rtt_ns": 3024583, + "rtt_ms": 3.024583, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "236", - "timestamp": "2025-11-27T01:21:48.065673891Z" + "vertex_to": "151", + "timestamp": "2025-11-27T04:01:46.398769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375215, - "rtt_ms": 1.375215, + "rtt_ns": 3006958, + "rtt_ms": 3.006958, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "317", - "timestamp": "2025-11-27T01:21:48.065718991Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:01:46.398804-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1452595, - "rtt_ms": 1.452595, + "rtt_ns": 1735875, + "rtt_ms": 1.735875, "checkpoint": 0, - "vertex_from": "865", - "timestamp": "2025-11-27T01:21:48.065719661Z" + "vertex_from": "806", + "timestamp": "2025-11-27T04:01:46.398916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664674, - "rtt_ms": 1.664674, + "rtt_ns": 2469791, + "rtt_ms": 2.469791, "checkpoint": 0, "vertex_from": "0", "vertex_to": "419", - "timestamp": "2025-11-27T01:21:48.065726561Z" + "timestamp": "2025-11-27T04:01:46.399283-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2527500, + "rtt_ms": 2.5275, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:46.399339-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1524185, - "rtt_ms": 1.524185, + "rtt_ns": 1151542, + "rtt_ms": 1.151542, "checkpoint": 0, "vertex_from": "786", - "timestamp": "2025-11-27T01:21:48.065739211Z" + "timestamp": "2025-11-27T04:01:46.399463-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1453125, - "rtt_ms": 1.453125, + "rtt_ns": 1234625, + "rtt_ms": 1.234625, "checkpoint": 0, "vertex_from": "106", - "timestamp": "2025-11-27T01:21:48.065741651Z" + "timestamp": "2025-11-27T04:01:46.399952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600664, - "rtt_ms": 1.600664, + "rtt_ns": 1771459, + "rtt_ms": 1.771459, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:48.066484068Z" + "vertex_to": "317", + "timestamp": "2025-11-27T04:01:46.399998-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1281616, - "rtt_ms": 1.281616, + "rtt_ns": 1514417, + "rtt_ms": 1.514417, "checkpoint": 0, - "vertex_from": "240", - "timestamp": "2025-11-27T01:21:48.066904787Z" + "vertex_from": "865", + "timestamp": "2025-11-27T04:01:46.400063-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2225291, + "rtt_ms": 2.225291, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "803", + "timestamp": "2025-11-27T04:01:46.400505-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1176936, - "rtt_ms": 1.176936, + "rtt_ns": 1223791, + "rtt_ms": 1.223791, "checkpoint": 0, - "vertex_from": "286", - "timestamp": "2025-11-27T01:21:48.066905797Z" + "vertex_from": "457", + "timestamp": "2025-11-27T04:01:46.400564-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1474895, - "rtt_ms": 1.474895, + "rtt_ns": 1299833, + "rtt_ms": 1.299833, "checkpoint": 0, - "vertex_from": "199", - "timestamp": "2025-11-27T01:21:48.066906747Z" + "vertex_from": "240", + "timestamp": "2025-11-27T04:01:46.400586-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1277526, - "rtt_ms": 1.277526, + "rtt_ns": 1795083, + "rtt_ms": 1.795083, "checkpoint": 0, - "vertex_from": "457", - "timestamp": "2025-11-27T01:21:48.066953707Z" + "vertex_from": "1001", + "timestamp": "2025-11-27T04:01:46.400602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641225, - "rtt_ms": 1.641225, + "rtt_ns": 1403792, + "rtt_ms": 1.403792, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.068126433Z" + "vertex_from": "0", + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:46.400867-08:00" }, { "operation": "add_edge", - "rtt_ns": 2420652, - "rtt_ms": 2.420652, + "rtt_ns": 1968833, + "rtt_ms": 1.968833, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:48.068160043Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:46.400886-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2220083, + "rtt_ms": 2.220083, + "checkpoint": 0, + "vertex_from": "199", + "timestamp": "2025-11-27T04:01:46.40099-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441812, - "rtt_ms": 2.441812, + "rtt_ns": 1245583, + "rtt_ms": 1.245583, "checkpoint": 0, "vertex_from": "0", "vertex_to": "106", - "timestamp": "2025-11-27T01:21:48.068183823Z" + "timestamp": "2025-11-27T04:01:46.401198-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2642412, - "rtt_ms": 2.642412, + "rtt_ns": 1462875, + "rtt_ms": 1.462875, "checkpoint": 0, - "vertex_from": "1001", - "timestamp": "2025-11-27T01:21:48.068215553Z" + "vertex_from": "286", + "timestamp": "2025-11-27T04:01:46.401969-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1539500, + "rtt_ms": 1.5395, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:46.402126-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1551167, + "rtt_ms": 1.551167, + "checkpoint": 0, + "vertex_from": "0", + "vertex_to": "1001", + "timestamp": "2025-11-27T04:01:46.402153-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2594621, - "rtt_ms": 2.594621, + "rtt_ns": 2161083, + "rtt_ms": 2.161083, "checkpoint": 0, "vertex_from": "463", - "timestamp": "2025-11-27T01:21:48.068315092Z" + "timestamp": "2025-11-27T04:01:46.402161-08:00" }, { "operation": "add_edge", - "rtt_ns": 2609321, - "rtt_ms": 2.609321, + "rtt_ns": 2436583, + "rtt_ms": 2.436583, "checkpoint": 0, "vertex_from": "0", "vertex_to": "865", - "timestamp": "2025-11-27T01:21:48.068329282Z" + "timestamp": "2025-11-27T04:01:46.4025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445765, - "rtt_ms": 1.445765, + "rtt_ns": 1724875, + "rtt_ms": 1.724875, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "457", - "timestamp": "2025-11-27T01:21:48.068399932Z" + "vertex_from": "1", + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:46.402611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965534, - "rtt_ms": 1.965534, + "rtt_ns": 1631917, + "rtt_ms": 1.631917, "checkpoint": 0, "vertex_from": "0", "vertex_to": "199", - "timestamp": "2025-11-27T01:21:48.068872511Z" + "timestamp": "2025-11-27T04:01:46.402622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983734, - "rtt_ms": 1.983734, + "rtt_ns": 1954292, + "rtt_ms": 1.954292, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:48.068888761Z" + "vertex_from": "1", + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.402823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021873, - "rtt_ms": 2.021873, + "rtt_ns": 2430625, + "rtt_ms": 2.430625, "checkpoint": 0, "vertex_from": "0", - "vertex_to": "286", - "timestamp": "2025-11-27T01:21:48.06892795Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:01:46.402995-08:00" }, { "operation": "add_edge", - "rtt_ns": 941917, - "rtt_ms": 0.941917, + "rtt_ns": 1929667, + "rtt_ms": 1.929667, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "1001", - "timestamp": "2025-11-27T01:21:48.06915786Z" + "vertex_from": "1", + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:46.403128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040447, - "rtt_ms": 1.040447, + "rtt_ns": 1634500, + "rtt_ms": 1.6345, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:48.06920183Z" + "vertex_from": "0", + "vertex_to": "286", + "timestamp": "2025-11-27T04:01:46.403604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039096, - "rtt_ms": 1.039096, + "rtt_ns": 1173042, + "rtt_ms": 1.173042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:48.069223989Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:46.403674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146206, - "rtt_ms": 1.146206, + "rtt_ns": 1579375, + "rtt_ms": 1.579375, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:48.069274299Z" + "vertex_from": "0", + "vertex_to": "463", + "timestamp": "2025-11-27T04:01:46.40374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562285, - "rtt_ms": 1.562285, + "rtt_ns": 1647583, + "rtt_ms": 1.647583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.069963397Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:46.403776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653465, - "rtt_ms": 1.653465, + "rtt_ns": 2470583, + "rtt_ms": 2.470583, "checkpoint": 0, "vertex_from": "1", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:48.069984677Z" + "timestamp": "2025-11-27T04:01:46.404625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742035, - "rtt_ms": 1.742035, + "rtt_ns": 2330667, + "rtt_ms": 2.330667, "checkpoint": 0, - "vertex_from": "0", - "vertex_to": "463", - "timestamp": "2025-11-27T01:21:48.070057357Z" + "vertex_from": "1", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:46.405156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606714, - "rtt_ms": 1.606714, + "rtt_ns": 2603125, + "rtt_ms": 2.603125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.070480805Z" + "timestamp": "2025-11-27T04:01:46.405215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643985, - "rtt_ms": 1.643985, + "rtt_ns": 2321625, + "rtt_ms": 2.321625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.070573095Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:46.405318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917153, - "rtt_ms": 1.917153, + "rtt_ns": 1659458, + "rtt_ms": 1.659458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.071119943Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:46.405334-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140623, - "rtt_ms": 2.140623, + "rtt_ns": 2242542, + "rtt_ms": 2.242542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.071299763Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.405372-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239463, - "rtt_ms": 2.239463, + "rtt_ns": 1645167, + "rtt_ms": 1.645167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.071464332Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:46.405386-08:00" }, { "operation": "add_vertex", - "rtt_ns": 3052340, - "rtt_ms": 3.05234, + "rtt_ns": 2762959, + "rtt_ms": 2.762959, "checkpoint": 0, "vertex_from": "504", - "timestamp": "2025-11-27T01:21:48.071943001Z" + "timestamp": "2025-11-27T04:01:46.405386-08:00" }, { "operation": "add_edge", - "rtt_ns": 2738882, - "rtt_ms": 2.738882, + "rtt_ns": 1852417, + "rtt_ms": 1.852417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:48.072013921Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.405457-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091673, - "rtt_ms": 2.091673, + "rtt_ns": 1980541, + "rtt_ms": 1.980541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:48.07205633Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.405757-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019983, - "rtt_ms": 2.019983, + "rtt_ns": 1544500, + "rtt_ms": 1.5445, "checkpoint": 0, "vertex_from": "1", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.07207809Z" + "timestamp": "2025-11-27T04:01:46.40617-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169423, - "rtt_ms": 2.169423, + "rtt_ns": 1218250, + "rtt_ms": 1.21825, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.07215637Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:46.406375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681265, - "rtt_ms": 1.681265, + "rtt_ns": 1195625, + "rtt_ms": 1.195625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:48.07216348Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.406412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265136, - "rtt_ms": 1.265136, + "rtt_ns": 1551208, + "rtt_ms": 1.551208, "checkpoint": 0, "vertex_from": "1", "vertex_to": "20", - "timestamp": "2025-11-27T01:21:48.072565709Z" + "timestamp": "2025-11-27T04:01:46.406886-08:00" }, { "operation": "add_edge", - "rtt_ns": 2121423, - "rtt_ms": 2.121423, + "rtt_ns": 1625625, + "rtt_ms": 1.625625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.072695408Z" + "vertex_to": "504", + "timestamp": "2025-11-27T04:01:46.407013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310406, - "rtt_ms": 1.310406, + "rtt_ns": 1791833, + "rtt_ms": 1.791833, "checkpoint": 0, "vertex_from": "1", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.072775788Z" + "timestamp": "2025-11-27T04:01:46.407164-08:00" }, { "operation": "add_edge", - "rtt_ns": 847357, - "rtt_ms": 0.847357, + "rtt_ns": 1912333, + "rtt_ms": 1.912333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "504", - "timestamp": "2025-11-27T01:21:48.072790838Z" + "vertex_to": "3", + "timestamp": "2025-11-27T04:01:46.407231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778025, - "rtt_ms": 1.778025, + "rtt_ns": 1849125, + "rtt_ms": 1.849125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "3", - "timestamp": "2025-11-27T01:21:48.072899358Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:46.407309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994393, - "rtt_ms": 1.994393, + "rtt_ns": 2112458, + "rtt_ms": 2.112458, "checkpoint": 0, "vertex_from": "1", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:48.074009934Z" + "timestamp": "2025-11-27T04:01:46.4075-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2025904, - "rtt_ms": 2.025904, + "rtt_ns": 1799958, + "rtt_ms": 1.799958, "checkpoint": 0, "vertex_from": "796", - "timestamp": "2025-11-27T01:21:48.074105684Z" + "timestamp": "2025-11-27T04:01:46.407558-08:00" }, { "operation": "add_edge", - "rtt_ns": 2262052, - "rtt_ms": 2.262052, + "rtt_ns": 1424416, + "rtt_ms": 1.424416, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:48.074419952Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:01:46.408312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2399752, - "rtt_ms": 2.399752, + "rtt_ns": 1693917, + "rtt_ms": 1.693917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:48.074456982Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.409004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2477912, - "rtt_ms": 2.477912, + "rtt_ns": 1789583, + "rtt_ms": 1.789583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:48.074642032Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:46.409021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133063, - "rtt_ms": 2.133063, + "rtt_ns": 1867417, + "rtt_ms": 1.867417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:48.074699852Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.409033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817823, - "rtt_ms": 1.817823, + "rtt_ns": 1479875, + "rtt_ms": 1.479875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:48.074718231Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:46.409039-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605772, - "rtt_ms": 2.605772, + "rtt_ns": 2666042, + "rtt_ms": 2.666042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "46", - "timestamp": "2025-11-27T01:21:48.07530247Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:46.409042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348195, - "rtt_ms": 1.348195, + "rtt_ns": 2065542, + "rtt_ms": 2.065542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.075359959Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:46.409081-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3367289, - "rtt_ms": 3.367289, + "operation": "add_vertex", + "rtt_ns": 1859917, + "rtt_ms": 1.859917, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:48.076144027Z" + "vertex_from": "932", + "timestamp": "2025-11-27T04:01:46.409363-08:00" }, { "operation": "add_edge", - "rtt_ns": 3422499, - "rtt_ms": 3.422499, + "rtt_ns": 3196500, + "rtt_ms": 3.1965, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.076215497Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:46.409367-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180312, - "rtt_ms": 2.180312, + "rtt_ns": 3103042, + "rtt_ms": 3.103042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:48.076286206Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1905194, - "rtt_ms": 1.905194, - "checkpoint": 0, - "vertex_from": "932", - "timestamp": "2025-11-27T01:21:48.076328936Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:46.409516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696314, - "rtt_ms": 1.696314, + "rtt_ns": 1110750, + "rtt_ms": 1.11075, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "8", - "timestamp": "2025-11-27T01:21:48.076339316Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:46.410146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973034, - "rtt_ms": 1.973034, + "rtt_ns": 1145875, + "rtt_ms": 1.145875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:48.076431076Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:46.410229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721215, - "rtt_ms": 1.721215, + "rtt_ns": 2136750, + "rtt_ms": 2.13675, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.076442526Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:46.410449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805524, - "rtt_ms": 1.805524, + "rtt_ns": 1480583, + "rtt_ms": 1.480583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:48.076506646Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:01:46.410485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171797, - "rtt_ms": 1.171797, + "rtt_ns": 1219417, + "rtt_ms": 1.219417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.076532836Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:01:46.410583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251055, - "rtt_ms": 1.251055, + "rtt_ns": 1564000, + "rtt_ms": 1.564, "checkpoint": 0, "vertex_from": "1", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:48.076554545Z" + "timestamp": "2025-11-27T04:01:46.410604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332786, - "rtt_ms": 1.332786, + "rtt_ns": 1363958, + "rtt_ms": 1.363958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:48.077479223Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:46.410732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313315, - "rtt_ms": 1.313315, + "rtt_ns": 2446042, + "rtt_ms": 2.446042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:48.077531132Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.411489-08:00" }, { "operation": "add_edge", - "rtt_ns": 2608752, - "rtt_ms": 2.608752, + "rtt_ns": 1990334, + "rtt_ms": 1.990334, "checkpoint": 0, "vertex_from": "1", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.078896308Z" + "timestamp": "2025-11-27T04:01:46.411507-08:00" }, { "operation": "add_edge", - "rtt_ns": 2588462, - "rtt_ms": 2.588462, + "rtt_ns": 2525750, + "rtt_ms": 2.52575, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "932", - "timestamp": "2025-11-27T01:21:48.078917968Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:46.411548-08:00" }, { "operation": "add_edge", - "rtt_ns": 2484903, - "rtt_ms": 2.484903, + "rtt_ns": 1900917, + "rtt_ms": 1.900917, "checkpoint": 0, "vertex_from": "1", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.079040478Z" + "timestamp": "2025-11-27T04:01:46.412506-08:00" }, { "operation": "add_edge", - "rtt_ns": 2510782, - "rtt_ms": 2.510782, + "rtt_ns": 2045375, + "rtt_ms": 2.045375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.079045208Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:46.412532-08:00" }, { "operation": "add_edge", - "rtt_ns": 2612242, - "rtt_ms": 2.612242, + "rtt_ns": 2327000, + "rtt_ms": 2.327, "checkpoint": 0, "vertex_from": "1", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.079045218Z" + "timestamp": "2025-11-27T04:01:46.412559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2708322, - "rtt_ms": 2.708322, + "rtt_ns": 1966625, + "rtt_ms": 1.966625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:48.079049248Z" + "vertex_to": "7", + "timestamp": "2025-11-27T04:01:46.4127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627492, - "rtt_ms": 2.627492, + "rtt_ns": 2135792, + "rtt_ms": 2.135792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:48.079071068Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:46.41272-08:00" }, { "operation": "add_edge", - "rtt_ns": 2594991, - "rtt_ms": 2.594991, + "rtt_ns": 1302333, + "rtt_ms": 1.302333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:48.079102677Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:46.41281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572695, - "rtt_ms": 1.572695, + "rtt_ns": 1326083, + "rtt_ms": 1.326083, "checkpoint": 0, "vertex_from": "1", "vertex_to": "150", - "timestamp": "2025-11-27T01:21:48.079105587Z" + "timestamp": "2025-11-27T04:01:46.412817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633884, - "rtt_ms": 1.633884, + "rtt_ns": 2686709, + "rtt_ms": 2.686709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "7", - "timestamp": "2025-11-27T01:21:48.079117567Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:46.412834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203836, - "rtt_ms": 1.203836, + "rtt_ns": 1363875, + "rtt_ms": 1.363875, "checkpoint": 0, "vertex_from": "1", "vertex_to": "54", - "timestamp": "2025-11-27T01:21:48.080125194Z" + "timestamp": "2025-11-27T04:01:46.412913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618605, - "rtt_ms": 1.618605, + "rtt_ns": 2465459, + "rtt_ms": 2.465459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:48.080517413Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:46.412916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486216, - "rtt_ms": 1.486216, + "rtt_ns": 1221125, + "rtt_ms": 1.221125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "10", - "timestamp": "2025-11-27T01:21:48.080558563Z" + "timestamp": "2025-11-27T04:01:46.413942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853544, - "rtt_ms": 1.853544, + "rtt_ns": 1475583, + "rtt_ms": 1.475583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:48.080961591Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:46.41401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937394, - "rtt_ms": 1.937394, + "rtt_ns": 1323333, + "rtt_ms": 1.323333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:48.081058431Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:46.414025-08:00" }, { "operation": "add_edge", - "rtt_ns": 2696911, - "rtt_ms": 2.696911, + "rtt_ns": 1537084, + "rtt_ms": 1.537084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.081744319Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:46.414043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2792050, - "rtt_ms": 2.79205, + "rtt_ns": 1255125, + "rtt_ms": 1.255125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:48.081834178Z" + "vertex_to": "2", + "timestamp": "2025-11-27T04:01:46.414168-08:00" }, { "operation": "add_edge", - "rtt_ns": 2905090, - "rtt_ms": 2.90509, + "rtt_ns": 1633500, + "rtt_ms": 1.6335, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:48.081956358Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:46.414194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2873351, - "rtt_ms": 2.873351, + "rtt_ns": 1623834, + "rtt_ms": 1.623834, "checkpoint": 0, "vertex_from": "1", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:48.081977088Z" + "timestamp": "2025-11-27T04:01:46.414435-08:00" }, { "operation": "add_edge", - "rtt_ns": 3090849, - "rtt_ms": 3.090849, + "rtt_ns": 1891750, + "rtt_ms": 1.89175, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:48.082138697Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:46.414709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036483, - "rtt_ms": 2.036483, + "rtt_ns": 1888916, + "rtt_ms": 1.888916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "2", - "timestamp": "2025-11-27T01:21:48.082164777Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:46.414725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699284, - "rtt_ms": 1.699284, + "rtt_ns": 2292875, + "rtt_ms": 2.292875, "checkpoint": 0, "vertex_from": "1", "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.082219117Z" + "timestamp": "2025-11-27T04:01:46.41521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762824, - "rtt_ms": 1.762824, + "rtt_ns": 1649625, + "rtt_ms": 1.649625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.082322817Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:46.415663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398106, - "rtt_ms": 1.398106, + "rtt_ns": 1510125, + "rtt_ms": 1.510125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:48.082363757Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:46.41568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314626, - "rtt_ms": 1.314626, + "rtt_ns": 1650959, + "rtt_ms": 1.650959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:48.082374757Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:46.415695-08:00" }, { "operation": "add_edge", - "rtt_ns": 732257, - "rtt_ms": 0.732257, + "rtt_ns": 1505584, + "rtt_ms": 1.505584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:48.082479506Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.415701-08:00" }, { "operation": "add_edge", - "rtt_ns": 730948, - "rtt_ms": 0.730948, + "rtt_ns": 1308125, + "rtt_ms": 1.308125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:48.082566406Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.415744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147503, - "rtt_ms": 2.147503, + "rtt_ns": 1797125, + "rtt_ms": 1.797125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.084126331Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:46.415823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215373, - "rtt_ms": 2.215373, + "rtt_ns": 1893750, + "rtt_ms": 1.89375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.084174221Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.415836-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044263, - "rtt_ms": 2.044263, + "rtt_ns": 1154000, + "rtt_ms": 1.154, "checkpoint": 0, "vertex_from": "1", "vertex_to": "23", - "timestamp": "2025-11-27T01:21:48.08421121Z" + "timestamp": "2025-11-27T04:01:46.41588-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1079750, + "rtt_ms": 1.07975, + "checkpoint": 0, + "vertex_from": "572", + "timestamp": "2025-11-27T04:01:46.416918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054493, - "rtt_ms": 2.054493, + "rtt_ns": 1750000, + "rtt_ms": 1.75, "checkpoint": 0, "vertex_from": "1", "vertex_to": "225", - "timestamp": "2025-11-27T01:21:48.08427507Z" + "timestamp": "2025-11-27T04:01:46.416961-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236243, - "rtt_ms": 2.236243, + "rtt_ns": 2851417, + "rtt_ms": 2.851417, "checkpoint": 0, "vertex_from": "1", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.08437732Z" + "timestamp": "2025-11-27T04:01:46.417561-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118503, - "rtt_ms": 2.118503, + "rtt_ns": 1898791, + "rtt_ms": 1.898791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:48.08449552Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:46.4176-08:00" }, { "operation": "add_edge", - "rtt_ns": 2167432, - "rtt_ms": 2.167432, + "rtt_ns": 1935500, + "rtt_ms": 1.9355, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:48.084532749Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:46.417601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241052, - "rtt_ms": 2.241052, + "rtt_ns": 1805208, + "rtt_ms": 1.805208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:48.084565669Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:46.417686-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024243, - "rtt_ms": 2.024243, + "rtt_ns": 1999667, + "rtt_ms": 1.999667, "checkpoint": 0, "vertex_from": "1", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:48.084591989Z" + "timestamp": "2025-11-27T04:01:46.417744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132653, - "rtt_ms": 2.132653, + "rtt_ns": 2165917, + "rtt_ms": 2.165917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:48.084613739Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:46.417847-08:00" }, { "operation": "add_edge", - "rtt_ns": 825888, - "rtt_ms": 0.825888, + "rtt_ns": 2164834, + "rtt_ms": 2.164834, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:48.085039778Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:46.417861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532565, - "rtt_ms": 1.532565, + "rtt_ns": 2153666, + "rtt_ms": 2.153666, "checkpoint": 0, "vertex_from": "1", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.085663066Z" + "timestamp": "2025-11-27T04:01:46.417978-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2187103, - "rtt_ms": 2.187103, + "operation": "add_edge", + "rtt_ns": 1526250, + "rtt_ms": 1.52625, "checkpoint": 0, - "vertex_from": "572", - "timestamp": "2025-11-27T01:21:48.086365514Z" + "vertex_from": "1", + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:46.418445-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149603, - "rtt_ms": 2.149603, + "rtt_ns": 1591458, + "rtt_ms": 1.591458, "checkpoint": 0, "vertex_from": "1", "vertex_to": "594", - "timestamp": "2025-11-27T01:21:48.086426693Z" + "timestamp": "2025-11-27T04:01:46.418555-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145423, - "rtt_ms": 2.145423, + "rtt_ns": 1502333, + "rtt_ms": 1.502333, "checkpoint": 0, "vertex_from": "1", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:48.086524843Z" + "timestamp": "2025-11-27T04:01:46.419065-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091153, - "rtt_ms": 2.091153, + "rtt_ns": 1340625, + "rtt_ms": 1.340625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:48.086587933Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:46.419086-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094134, - "rtt_ms": 2.094134, + "rtt_ns": 1614459, + "rtt_ms": 1.614459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:48.086628493Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:46.419215-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118444, - "rtt_ms": 2.118444, + "rtt_ns": 1469792, + "rtt_ms": 1.469792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:48.086712273Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.419332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147273, - "rtt_ms": 2.147273, + "rtt_ns": 1485584, + "rtt_ms": 1.485584, "checkpoint": 0, "vertex_from": "1", "vertex_to": "156", - "timestamp": "2025-11-27T01:21:48.086763362Z" + "timestamp": "2025-11-27T04:01:46.419335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230813, - "rtt_ms": 2.230813, + "rtt_ns": 1706375, + "rtt_ms": 1.706375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:48.086798012Z" + "timestamp": "2025-11-27T04:01:46.419393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632575, - "rtt_ms": 1.632575, + "rtt_ns": 1933708, + "rtt_ms": 1.933708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:48.087298051Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:46.419535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530826, - "rtt_ms": 1.530826, + "rtt_ns": 1100250, + "rtt_ms": 1.10025, "checkpoint": 0, "vertex_from": "1", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:48.087959599Z" + "timestamp": "2025-11-27T04:01:46.419547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618454, - "rtt_ms": 1.618454, + "rtt_ns": 1632416, + "rtt_ms": 1.632416, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "572", - "timestamp": "2025-11-27T01:21:48.087984738Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:46.419611-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2953980, - "rtt_ms": 2.95398, + "operation": "add_vertex", + "rtt_ns": 2201959, + "rtt_ms": 2.201959, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.087994868Z" + "vertex_from": "853", + "timestamp": "2025-11-27T04:01:46.42129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537575, - "rtt_ms": 1.537575, + "rtt_ns": 1790875, + "rtt_ms": 1.790875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:48.088063938Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:46.421404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433345, - "rtt_ms": 1.433345, + "rtt_ns": 2865291, + "rtt_ms": 2.865291, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:48.088146708Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:46.421422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565685, - "rtt_ms": 1.565685, + "rtt_ns": 1912167, + "rtt_ms": 1.912167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:48.088155908Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:01:46.421448-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1551505, - "rtt_ms": 1.551505, + "operation": "add_edge", + "rtt_ns": 2002375, + "rtt_ms": 2.002375, "checkpoint": 0, - "vertex_from": "853", - "timestamp": "2025-11-27T01:21:48.088182348Z" + "vertex_from": "1", + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:46.421551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390536, - "rtt_ms": 1.390536, + "rtt_ns": 2500000, + "rtt_ms": 2.5, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:48.088190428Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:46.421566-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 745157, - "rtt_ms": 0.745157, + "operation": "add_edge", + "rtt_ns": 2173916, + "rtt_ms": 2.173916, "checkpoint": 0, - "vertex_from": "736", - "timestamp": "2025-11-27T01:21:48.088938475Z" + "vertex_from": "1", + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.421568-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319233, - "rtt_ms": 2.319233, + "rtt_ns": 2239958, + "rtt_ms": 2.239958, "checkpoint": 0, "vertex_from": "1", "vertex_to": "9", - "timestamp": "2025-11-27T01:21:48.089083945Z" + "timestamp": "2025-11-27T04:01:46.421573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2534251, - "rtt_ms": 2.534251, + "rtt_ns": 2279291, + "rtt_ms": 2.279291, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.089834842Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:46.421616-08:00" }, { "operation": "add_edge", - "rtt_ns": 2599102, - "rtt_ms": 2.599102, + "rtt_ns": 2464333, + "rtt_ms": 2.464333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:48.09059046Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:46.421681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2683691, - "rtt_ms": 2.683691, + "rtt_ns": 1302459, + "rtt_ms": 1.302459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "4", - "timestamp": "2025-11-27T01:21:48.09064523Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:46.422751-08:00" }, { "operation": "add_edge", - "rtt_ns": 2593241, - "rtt_ms": 2.593241, + "rtt_ns": 1348125, + "rtt_ms": 1.348125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "100", - "timestamp": "2025-11-27T01:21:48.090741969Z" + "timestamp": "2025-11-27T04:01:46.422771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830714, - "rtt_ms": 1.830714, + "rtt_ns": 1564334, + "rtt_ms": 1.564334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:48.090769779Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:46.422969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2711881, - "rtt_ms": 2.711881, + "rtt_ns": 1444584, + "rtt_ms": 1.444584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:48.090777519Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:01:46.423011-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1744164, - "rtt_ms": 1.744164, + "operation": "add_vertex", + "rtt_ns": 1412500, + "rtt_ms": 1.4125, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "6", - "timestamp": "2025-11-27T01:21:48.090830159Z" + "vertex_from": "595", + "timestamp": "2025-11-27T04:01:46.423094-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2868491, - "rtt_ms": 2.868491, + "operation": "add_vertex", + "rtt_ns": 1495333, + "rtt_ms": 1.495333, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:48.090865639Z" + "vertex_from": "589", + "timestamp": "2025-11-27T04:01:46.423113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2716141, - "rtt_ms": 2.716141, + "rtt_ns": 1541875, + "rtt_ms": 1.541875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:48.090874439Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:46.423115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2700091, - "rtt_ms": 2.700091, + "rtt_ns": 1871167, + "rtt_ms": 1.871167, "checkpoint": 0, "vertex_from": "1", "vertex_to": "853", - "timestamp": "2025-11-27T01:21:48.090882799Z" + "timestamp": "2025-11-27T04:01:46.423162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391296, - "rtt_ms": 1.391296, + "rtt_ns": 1672667, + "rtt_ms": 1.672667, "checkpoint": 0, "vertex_from": "1", "vertex_to": "282", - "timestamp": "2025-11-27T01:21:48.091227888Z" + "timestamp": "2025-11-27T04:01:46.423242-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 780537, - "rtt_ms": 0.780537, + "operation": "add_edge", + "rtt_ns": 1603000, + "rtt_ms": 1.603, "checkpoint": 0, - "vertex_from": "589", - "timestamp": "2025-11-27T01:21:48.091428507Z" + "vertex_from": "1", + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:46.424574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546515, - "rtt_ms": 1.546515, + "rtt_ns": 1704459, + "rtt_ms": 1.704459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:48.092138135Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.424717-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1923344, - "rtt_ms": 1.923344, + "operation": "add_vertex", + "rtt_ns": 3243167, + "rtt_ms": 3.243167, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:48.092695563Z" + "vertex_from": "736", + "timestamp": "2025-11-27T04:01:46.424799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942544, - "rtt_ms": 1.942544, + "rtt_ns": 2062458, + "rtt_ms": 2.062458, "checkpoint": 0, "vertex_from": "1", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:48.092722473Z" + "timestamp": "2025-11-27T04:01:46.424834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2085313, - "rtt_ms": 2.085313, + "rtt_ns": 2104000, + "rtt_ms": 2.104, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.092970682Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:46.424856-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125013, - "rtt_ms": 2.125013, + "rtt_ns": 1879292, + "rtt_ms": 1.879292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.092991492Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:46.424974-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2299093, - "rtt_ms": 2.299093, + "operation": "add_edge", + "rtt_ns": 1895250, + "rtt_ms": 1.89525, "checkpoint": 0, - "vertex_from": "595", - "timestamp": "2025-11-27T01:21:48.093044132Z" + "vertex_from": "1", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.42506-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277793, - "rtt_ms": 2.277793, + "rtt_ns": 1964917, + "rtt_ms": 1.964917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:48.093109482Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:01:46.425081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967033, - "rtt_ms": 1.967033, + "rtt_ns": 1933167, + "rtt_ms": 1.933167, "checkpoint": 0, "vertex_from": "1", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:48.093196661Z" + "timestamp": "2025-11-27T04:01:46.425176-08:00" }, { "operation": "add_edge", - "rtt_ns": 2327782, - "rtt_ms": 2.327782, + "rtt_ns": 2132958, + "rtt_ms": 2.132958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "12", - "timestamp": "2025-11-27T01:21:48.093203501Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:46.425246-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1788754, - "rtt_ms": 1.788754, + "operation": "add_vertex", + "rtt_ns": 1533542, + "rtt_ms": 1.533542, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "589", - "timestamp": "2025-11-27T01:21:48.093217941Z" + "vertex_from": "188", + "timestamp": "2025-11-27T04:01:46.426251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320215, - "rtt_ms": 1.320215, + "rtt_ns": 1268125, + "rtt_ms": 1.268125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.09345994Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:46.42635-08:00" }, { "operation": "add_edge", - "rtt_ns": 871567, - "rtt_ms": 0.871567, + "rtt_ns": 1563625, + "rtt_ms": 1.563625, "checkpoint": 0, "vertex_from": "1", "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.09359635Z" + "timestamp": "2025-11-27T04:01:46.426399-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 931397, - "rtt_ms": 0.931397, + "operation": "add_edge", + "rtt_ns": 1840917, + "rtt_ms": 1.840917, "checkpoint": 0, - "vertex_from": "188", - "timestamp": "2025-11-27T01:21:48.09362976Z" + "vertex_from": "1", + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.426416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385905, - "rtt_ms": 1.385905, + "rtt_ns": 1457875, + "rtt_ms": 1.457875, "checkpoint": 0, "vertex_from": "1", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:48.094379887Z" + "timestamp": "2025-11-27T04:01:46.426433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398065, - "rtt_ms": 1.398065, + "rtt_ns": 1725125, + "rtt_ms": 1.725125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:48.094442597Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:46.426524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504545, - "rtt_ms": 1.504545, + "rtt_ns": 1449083, + "rtt_ms": 1.449083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:48.094476457Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:46.426626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418736, - "rtt_ms": 1.418736, + "rtt_ns": 1488375, + "rtt_ms": 1.488375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:48.094616547Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:46.426735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258072, - "rtt_ms": 2.258072, + "rtt_ns": 1736000, + "rtt_ms": 1.736, "checkpoint": 0, "vertex_from": "1", "vertex_to": "960", - "timestamp": "2025-11-27T01:21:48.095368834Z" + "timestamp": "2025-11-27T04:01:46.426797-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228313, - "rtt_ms": 2.228313, + "rtt_ns": 2123042, + "rtt_ms": 2.123042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:48.095433194Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 818917, - "rtt_ms": 0.818917, - "checkpoint": 0, - "vertex_from": "214", - "timestamp": "2025-11-27T01:21:48.095439254Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:46.42698-08:00" }, { "operation": "add_edge", - "rtt_ns": 2223073, - "rtt_ms": 2.223073, + "rtt_ns": 1481458, + "rtt_ms": 1.481458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:48.095444774Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:46.427833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921824, - "rtt_ms": 1.921824, + "rtt_ns": 1486666, + "rtt_ms": 1.486666, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "92", - "timestamp": "2025-11-27T01:21:48.095519554Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:01:46.42792-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1907094, - "rtt_ms": 1.907094, + "operation": "add_vertex", + "rtt_ns": 1431959, + "rtt_ms": 1.431959, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "188", - "timestamp": "2025-11-27T01:21:48.095537294Z" + "vertex_from": "214", + "timestamp": "2025-11-27T04:01:46.428059-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109284, - "rtt_ms": 2.109284, + "rtt_ns": 1769625, + "rtt_ms": 1.769625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:48.095570654Z" + "vertex_to": "92", + "timestamp": "2025-11-27T04:01:46.428171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123987, - "rtt_ms": 1.123987, + "rtt_ns": 1680292, + "rtt_ms": 1.680292, "checkpoint": 0, "vertex_from": "1", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.095604134Z" + "timestamp": "2025-11-27T04:01:46.428207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215496, - "rtt_ms": 1.215496, + "rtt_ns": 1546083, + "rtt_ms": 1.546083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "992", - "timestamp": "2025-11-27T01:21:48.095660193Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.428282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317366, - "rtt_ms": 1.317366, + "rtt_ns": 2002834, + "rtt_ms": 2.002834, "checkpoint": 0, "vertex_from": "1", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:48.095702683Z" + "timestamp": "2025-11-27T04:01:46.42842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090827, - "rtt_ms": 1.090827, + "rtt_ns": 1679042, + "rtt_ms": 1.679042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.096462911Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.428477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165976, - "rtt_ms": 1.165976, + "rtt_ns": 2229500, + "rtt_ms": 2.2295, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "214", - "timestamp": "2025-11-27T01:21:48.09660604Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:01:46.428481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609365, - "rtt_ms": 1.609365, + "rtt_ns": 1555459, + "rtt_ms": 1.555459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:48.097044749Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:46.428536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625745, - "rtt_ms": 1.625745, + "rtt_ns": 1322458, + "rtt_ms": 1.322458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:48.097147019Z" + "vertex_to": "214", + "timestamp": "2025-11-27T04:01:46.429382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959514, - "rtt_ms": 1.959514, + "rtt_ns": 1622791, + "rtt_ms": 1.622791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:48.097498538Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:46.429457-08:00" }, { "operation": "add_edge", - "rtt_ns": 2891991, - "rtt_ms": 2.891991, + "rtt_ns": 1734958, + "rtt_ms": 1.734958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:48.098338775Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:46.429656-08:00" }, { "operation": "add_edge", - "rtt_ns": 2692992, - "rtt_ms": 2.692992, + "rtt_ns": 1562333, + "rtt_ms": 1.562333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:48.098397685Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:01:46.429734-08:00" }, { "operation": "add_edge", - "rtt_ns": 2797442, - "rtt_ms": 2.797442, + "rtt_ns": 1818792, + "rtt_ms": 1.818792, "checkpoint": 0, "vertex_from": "1", "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.098459715Z" + "timestamp": "2025-11-27T04:01:46.430102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2847331, - "rtt_ms": 2.847331, + "rtt_ns": 1897208, + "rtt_ms": 1.897208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:48.098459855Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:46.430319-08:00" }, { "operation": "add_edge", - "rtt_ns": 2912400, - "rtt_ms": 2.9124, + "rtt_ns": 1852583, + "rtt_ms": 1.852583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "5", - "timestamp": "2025-11-27T01:21:48.098484454Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:46.430334-08:00" }, { "operation": "add_edge", - "rtt_ns": 2068444, - "rtt_ms": 2.068444, + "rtt_ns": 2155541, + "rtt_ms": 2.155541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:48.098677574Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:46.430634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2262423, - "rtt_ms": 2.262423, + "rtt_ns": 2211208, + "rtt_ms": 2.211208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:48.098727554Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:46.430748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656204, - "rtt_ms": 1.656204, + "rtt_ns": 1420125, + "rtt_ms": 1.420125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.098804543Z" + "timestamp": "2025-11-27T04:01:46.430804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774554, - "rtt_ms": 1.774554, + "rtt_ns": 2647209, + "rtt_ms": 2.647209, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:48.098821573Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:46.430855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385645, - "rtt_ms": 1.385645, + "rtt_ns": 1480750, + "rtt_ms": 1.48075, "checkpoint": 0, "vertex_from": "1", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:48.098886233Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 747827, - "rtt_ms": 0.747827, - "checkpoint": 0, - "vertex_from": "677", - "timestamp": "2025-11-27T01:21:48.099478321Z" + "timestamp": "2025-11-27T04:01:46.430939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444495, - "rtt_ms": 1.444495, + "rtt_ns": 2188167, + "rtt_ms": 2.188167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:48.09978484Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:46.431924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825054, - "rtt_ms": 1.825054, + "rtt_ns": 2549833, + "rtt_ms": 2.549833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:48.100224839Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:46.432207-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096103, - "rtt_ms": 2.096103, + "rtt_ns": 2226834, + "rtt_ms": 2.226834, "checkpoint": 0, "vertex_from": "1", "vertex_to": "404", - "timestamp": "2025-11-27T01:21:48.100556888Z" + "timestamp": "2025-11-27T04:01:46.43233-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2156413, - "rtt_ms": 2.156413, + "operation": "add_edge", + "rtt_ns": 1538792, + "rtt_ms": 1.538792, "checkpoint": 0, - "vertex_from": "634", - "timestamp": "2025-11-27T01:21:48.100619098Z" + "vertex_from": "1", + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:46.432344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148273, - "rtt_ms": 2.148273, + "rtt_ns": 2032042, + "rtt_ms": 2.032042, "checkpoint": 0, "vertex_from": "1", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:48.100634227Z" + "timestamp": "2025-11-27T04:01:46.432367-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1991803, - "rtt_ms": 1.991803, + "operation": "add_vertex", + "rtt_ns": 1643167, + "rtt_ms": 1.643167, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:48.100670847Z" + "vertex_from": "677", + "timestamp": "2025-11-27T04:01:46.432392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911484, - "rtt_ms": 1.911484, + "rtt_ns": 1803125, + "rtt_ms": 1.803125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:48.100717407Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:46.432438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965974, - "rtt_ms": 1.965974, + "rtt_ns": 1619125, + "rtt_ms": 1.619125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.100789167Z" + "timestamp": "2025-11-27T04:01:46.432475-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1962844, - "rtt_ms": 1.962844, + "rtt_ns": 1564583, + "rtt_ms": 1.564583, "checkpoint": 0, "vertex_from": "841", - "timestamp": "2025-11-27T01:21:48.100852277Z" + "timestamp": "2025-11-27T04:01:46.432504-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1394296, - "rtt_ms": 1.394296, + "operation": "add_vertex", + "rtt_ns": 2209500, + "rtt_ms": 2.2095, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "677", - "timestamp": "2025-11-27T01:21:48.100873147Z" + "vertex_from": "634", + "timestamp": "2025-11-27T04:01:46.432532-08:00" }, { "operation": "add_edge", - "rtt_ns": 662328, - "rtt_ms": 0.662328, + "rtt_ns": 1505417, + "rtt_ms": 1.505417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:48.100888417Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:46.433431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147246, - "rtt_ms": 1.147246, + "rtt_ns": 1092125, + "rtt_ms": 1.092125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:48.100933956Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:46.433437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518855, - "rtt_ms": 1.518855, + "rtt_ns": 1387583, + "rtt_ms": 1.387583, "checkpoint": 0, "vertex_from": "1", "vertex_to": "170", - "timestamp": "2025-11-27T01:21:48.102078023Z" + "timestamp": "2025-11-27T04:01:46.433719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180772, - "rtt_ms": 2.180772, + "rtt_ns": 1366417, + "rtt_ms": 1.366417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "634", - "timestamp": "2025-11-27T01:21:48.10280029Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:46.433735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2264863, - "rtt_ms": 2.264863, + "rtt_ns": 1969000, + "rtt_ms": 1.969, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:48.10290024Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:46.434177-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192043, - "rtt_ms": 2.192043, + "rtt_ns": 1814834, + "rtt_ms": 1.814834, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.10298214Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:46.434319-08:00" }, { "operation": "add_edge", - "rtt_ns": 2368452, - "rtt_ms": 2.368452, + "rtt_ns": 1991542, + "rtt_ms": 1.991542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:48.103040279Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:46.434384-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340452, - "rtt_ms": 2.340452, + "rtt_ns": 2163208, + "rtt_ms": 2.163208, "checkpoint": 0, "vertex_from": "1", "vertex_to": "596", - "timestamp": "2025-11-27T01:21:48.103058829Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2388102, - "rtt_ms": 2.388102, - "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:48.103262349Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2469771, - "rtt_ms": 2.469771, - "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:48.103322518Z" + "timestamp": "2025-11-27T04:01:46.434601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2559621, - "rtt_ms": 2.559621, + "rtt_ns": 1501292, + "rtt_ms": 1.501292, "checkpoint": 0, "vertex_from": "1", "vertex_to": "138", - "timestamp": "2025-11-27T01:21:48.103450878Z" + "timestamp": "2025-11-27T04:01:46.434941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2514792, - "rtt_ms": 2.514792, + "rtt_ns": 1621417, + "rtt_ms": 1.621417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "39", - "timestamp": "2025-11-27T01:21:48.103452288Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:46.435057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408425, - "rtt_ms": 1.408425, + "rtt_ns": 2619292, + "rtt_ms": 2.619292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:48.103488328Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.435095-08:00" }, { "operation": "add_edge", - "rtt_ns": 742678, - "rtt_ms": 0.742678, + "rtt_ns": 2590083, + "rtt_ms": 2.590083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:48.103545868Z" + "vertex_to": "634", + "timestamp": "2025-11-27T04:01:46.435123-08:00" }, { "operation": "add_edge", - "rtt_ns": 867777, - "rtt_ms": 0.867777, + "rtt_ns": 1698083, + "rtt_ms": 1.698083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:48.103769257Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:46.435434-08:00" }, { "operation": "add_edge", - "rtt_ns": 813447, - "rtt_ms": 0.813447, + "rtt_ns": 1859292, + "rtt_ms": 1.859292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:48.103797457Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:01:46.435579-08:00" }, { "operation": "add_edge", - "rtt_ns": 866848, - "rtt_ms": 0.866848, + "rtt_ns": 1453208, + "rtt_ms": 1.453208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:48.103908417Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:46.435631-08:00" }, { "operation": "add_edge", - "rtt_ns": 669917, - "rtt_ms": 0.669917, + "rtt_ns": 1612750, + "rtt_ms": 1.61275, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:48.103934536Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:46.435935-08:00" }, { "operation": "add_edge", - "rtt_ns": 897927, - "rtt_ms": 0.897927, + "rtt_ns": 1684750, + "rtt_ms": 1.68475, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "203", - "timestamp": "2025-11-27T01:21:48.103957966Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:46.43607-08:00" }, { "operation": "add_edge", - "rtt_ns": 563298, - "rtt_ms": 0.563298, + "rtt_ns": 1293125, + "rtt_ms": 1.293125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "14", - "timestamp": "2025-11-27T01:21:48.104055076Z" + "timestamp": "2025-11-27T04:01:46.436873-08:00" }, { "operation": "add_vertex", - "rtt_ns": 760648, - "rtt_ms": 0.760648, + "rtt_ns": 2044583, + "rtt_ms": 2.044583, "checkpoint": 0, "vertex_from": "929", - "timestamp": "2025-11-27T01:21:48.104085846Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 644887, - "rtt_ms": 0.644887, - "checkpoint": 0, - "vertex_from": "837", - "timestamp": "2025-11-27T01:21:48.104556074Z" + "timestamp": "2025-11-27T04:01:46.437141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358626, - "rtt_ms": 1.358626, + "rtt_ns": 2032125, + "rtt_ms": 2.032125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "153", - "timestamp": "2025-11-27T01:21:48.104811064Z" + "timestamp": "2025-11-27T04:01:46.437157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971573, - "rtt_ms": 1.971573, + "rtt_ns": 2097916, + "rtt_ms": 2.097916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:48.105519191Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:46.437157-08:00" }, { "operation": "add_edge", - "rtt_ns": 2351663, - "rtt_ms": 2.351663, + "rtt_ns": 2218083, + "rtt_ms": 2.218083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.105805061Z" + "vertex_to": "203", + "timestamp": "2025-11-27T04:01:46.43716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892304, - "rtt_ms": 1.892304, + "rtt_ns": 2772250, + "rtt_ms": 2.77225, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.10585141Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:46.437374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949464, - "rtt_ms": 1.949464, + "rtt_ns": 1487375, + "rtt_ms": 1.487375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:48.1058853Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:46.437558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872794, - "rtt_ms": 1.872794, + "rtt_ns": 2218583, + "rtt_ms": 2.218583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "929", - "timestamp": "2025-11-27T01:21:48.10595952Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.437653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206433, - "rtt_ms": 2.206433, + "rtt_ns": 1777000, + "rtt_ms": 1.777, "checkpoint": 0, "vertex_from": "1", "vertex_to": "395", - "timestamp": "2025-11-27T01:21:48.10597727Z" + "timestamp": "2025-11-27T04:01:46.437713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200776, - "rtt_ms": 1.200776, + "rtt_ns": 934833, + "rtt_ms": 0.934833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:48.10601433Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:46.438096-08:00" }, { "operation": "add_edge", - "rtt_ns": 2385482, - "rtt_ms": 2.385482, + "rtt_ns": 2519417, + "rtt_ms": 2.519417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.106184539Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:46.438153-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144563, - "rtt_ms": 2.144563, + "rtt_ns": 1407250, + "rtt_ms": 1.40725, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:48.106200809Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:46.438567-08:00" }, { - "operation": "add_edge", - "rtt_ns": 713938, - "rtt_ms": 0.713938, + "operation": "add_vertex", + "rtt_ns": 1896875, + "rtt_ms": 1.896875, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "309", - "timestamp": "2025-11-27T01:21:48.106234769Z" + "vertex_from": "837", + "timestamp": "2025-11-27T04:01:46.438774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705545, - "rtt_ms": 1.705545, + "rtt_ns": 1945250, + "rtt_ms": 1.94525, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "837", - "timestamp": "2025-11-27T01:21:48.106262059Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:01:46.439087-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 780538, - "rtt_ms": 0.780538, + "operation": "add_edge", + "rtt_ns": 2099250, + "rtt_ms": 2.09925, "checkpoint": 0, - "vertex_from": "116", - "timestamp": "2025-11-27T01:21:48.107019247Z" + "vertex_from": "1", + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:46.439259-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 828927, - "rtt_ms": 0.828927, + "operation": "add_edge", + "rtt_ns": 2026084, + "rtt_ms": 2.026084, "checkpoint": 0, - "vertex_from": "855", - "timestamp": "2025-11-27T01:21:48.107093326Z" + "vertex_from": "1", + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:46.439401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313695, - "rtt_ms": 1.313695, + "rtt_ns": 2663542, + "rtt_ms": 2.663542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:48.107120396Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:01:46.440224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364686, - "rtt_ms": 1.364686, + "rtt_ns": 2574500, + "rtt_ms": 2.5745, "checkpoint": 0, "vertex_from": "1", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:48.107217276Z" + "timestamp": "2025-11-27T04:01:46.440288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580685, - "rtt_ms": 1.580685, + "rtt_ns": 1735625, + "rtt_ms": 1.735625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "916", - "timestamp": "2025-11-27T01:21:48.107468035Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:46.440305-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 720848, - "rtt_ms": 0.720848, + "operation": "add_edge", + "rtt_ns": 1352625, + "rtt_ms": 1.352625, "checkpoint": 0, - "vertex_from": "211", - "timestamp": "2025-11-27T01:21:48.107843244Z" + "vertex_from": "1", + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:46.440441-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034764, - "rtt_ms": 2.034764, + "rtt_ns": 1741792, + "rtt_ms": 1.741792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:48.107996684Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:01:46.440516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163583, - "rtt_ms": 2.163583, + "rtt_ns": 2951334, + "rtt_ms": 2.951334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:48.108142163Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:46.440607-08:00" }, { "operation": "add_edge", - "rtt_ns": 2213663, - "rtt_ms": 2.213663, + "rtt_ns": 1248458, + "rtt_ms": 1.248458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:48.108229383Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:01:46.440651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138353, - "rtt_ms": 2.138353, + "rtt_ns": 1434250, + "rtt_ms": 1.43425, "checkpoint": 0, "vertex_from": "1", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:48.108324272Z" + "timestamp": "2025-11-27T04:01:46.440694-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135843, - "rtt_ms": 2.135843, + "rtt_ns": 2613750, + "rtt_ms": 2.61375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "625", - "timestamp": "2025-11-27T01:21:48.108338472Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:46.440711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365255, - "rtt_ms": 1.365255, + "rtt_ns": 2669833, + "rtt_ms": 2.669833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:48.108385032Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:46.440824-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1577542, + "rtt_ms": 1.577542, + "checkpoint": 0, + "vertex_from": "116", + "timestamp": "2025-11-27T04:01:46.441806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320006, - "rtt_ms": 1.320006, + "rtt_ns": 1347833, + "rtt_ms": 1.347833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "855", - "timestamp": "2025-11-27T01:21:48.108413672Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:01:46.441865-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2049833, + "rtt_ms": 2.049833, + "checkpoint": 0, + "vertex_from": "855", + "timestamp": "2025-11-27T04:01:46.442339-08:00" }, { "operation": "add_edge", - "rtt_ns": 927937, - "rtt_ms": 0.927937, + "rtt_ns": 1913833, + "rtt_ms": 1.913833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:48.10907116Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:46.442355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970973, - "rtt_ms": 1.970973, + "rtt_ns": 1672000, + "rtt_ms": 1.672, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:48.109190399Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:46.442366-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2068292, + "rtt_ms": 2.068292, + "checkpoint": 0, + "vertex_from": "211", + "timestamp": "2025-11-27T04:01:46.442374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364905, - "rtt_ms": 1.364905, + "rtt_ns": 1860000, + "rtt_ms": 1.86, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "211", - "timestamp": "2025-11-27T01:21:48.109208519Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:46.442511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282246, - "rtt_ms": 1.282246, + "rtt_ns": 1822875, + "rtt_ms": 1.822875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:48.109280409Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:46.442648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825914, - "rtt_ms": 1.825914, + "rtt_ns": 2043541, + "rtt_ms": 2.043541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "333", - "timestamp": "2025-11-27T01:21:48.109295429Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:46.442651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671695, - "rtt_ms": 1.671695, + "rtt_ns": 1953917, + "rtt_ms": 1.953917, "checkpoint": 0, "vertex_from": "1", "vertex_to": "901", - "timestamp": "2025-11-27T01:21:48.109997237Z" + "timestamp": "2025-11-27T04:01:46.442665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671175, - "rtt_ms": 1.671175, + "rtt_ns": 1318375, + "rtt_ms": 1.318375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:48.110010767Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:46.443125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790614, - "rtt_ms": 1.790614, + "rtt_ns": 1615792, + "rtt_ms": 1.615792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:48.110021247Z" + "vertex_to": "855", + "timestamp": "2025-11-27T04:01:46.443957-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2143873, - "rtt_ms": 2.143873, + "operation": "add_edge", + "rtt_ns": 1612750, + "rtt_ms": 1.61275, "checkpoint": 0, - "vertex_from": "182", - "timestamp": "2025-11-27T01:21:48.110531555Z" + "vertex_from": "1", + "vertex_to": "211", + "timestamp": "2025-11-27T04:01:46.443987-08:00" }, { "operation": "add_edge", - "rtt_ns": 2295902, - "rtt_ms": 2.295902, + "rtt_ns": 1708042, + "rtt_ms": 1.708042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:48.110711104Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:46.444075-08:00" }, { "operation": "add_edge", - "rtt_ns": 2790361, - "rtt_ms": 2.790361, + "rtt_ns": 1432500, + "rtt_ms": 1.4325, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:48.11208728Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:46.444081-08:00" }, { "operation": "add_edge", - "rtt_ns": 2987651, - "rtt_ms": 2.987651, + "rtt_ns": 1736667, + "rtt_ms": 1.736667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:48.11217928Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:46.444093-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186412, - "rtt_ms": 2.186412, + "rtt_ns": 1435959, + "rtt_ms": 1.435959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "11", - "timestamp": "2025-11-27T01:21:48.112209339Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:46.444102-08:00" }, { "operation": "add_edge", - "rtt_ns": 3148219, - "rtt_ms": 3.148219, + "rtt_ns": 1697584, + "rtt_ms": 1.697584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:48.112221309Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:46.44421-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2951580, - "rtt_ms": 2.95158, + "operation": "add_vertex", + "rtt_ns": 2349084, + "rtt_ms": 2.349084, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:48.112235239Z" + "vertex_from": "182", + "timestamp": "2025-11-27T04:01:46.444217-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288212, - "rtt_ms": 2.288212, + "rtt_ns": 2060375, + "rtt_ms": 2.060375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "163", - "timestamp": "2025-11-27T01:21:48.112288379Z" + "timestamp": "2025-11-27T04:01:46.445186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799954, - "rtt_ms": 1.799954, + "rtt_ns": 2691958, + "rtt_ms": 2.691958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "182", - "timestamp": "2025-11-27T01:21:48.112331979Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:46.445345-08:00" }, { "operation": "add_edge", - "rtt_ns": 2348672, - "rtt_ms": 2.348672, + "rtt_ns": 1317875, + "rtt_ms": 1.317875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:48.112360919Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:46.445421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701985, - "rtt_ms": 1.701985, + "rtt_ns": 1367625, + "rtt_ms": 1.367625, "checkpoint": 0, "vertex_from": "1", "vertex_to": "834", - "timestamp": "2025-11-27T01:21:48.112421259Z" + "timestamp": "2025-11-27T04:01:46.445443-08:00" }, { "operation": "add_edge", - "rtt_ns": 3246610, - "rtt_ms": 3.24661, + "rtt_ns": 1376292, + "rtt_ms": 1.376292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:48.112456309Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:46.445458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034427, - "rtt_ms": 1.034427, + "rtt_ns": 1336417, + "rtt_ms": 1.336417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:48.113123197Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:46.445547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025966, - "rtt_ms": 1.025966, + "rtt_ns": 1588916, + "rtt_ms": 1.588916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:48.113206236Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:01:46.445577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000877, - "rtt_ms": 1.000877, + "rtt_ns": 1494333, + "rtt_ms": 1.494333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "355", - "timestamp": "2025-11-27T01:21:48.113237216Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:46.445588-08:00" }, { "operation": "add_edge", - "rtt_ns": 905767, - "rtt_ms": 0.905767, + "rtt_ns": 1637000, + "rtt_ms": 1.637, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.113239046Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:46.445595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032967, - "rtt_ms": 1.032967, + "rtt_ns": 1464958, + "rtt_ms": 1.464958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.113243406Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:01:46.445682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025367, - "rtt_ms": 1.025367, + "rtt_ns": 1378125, + "rtt_ms": 1.378125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:48.113248456Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:01:46.446567-08:00" }, { "operation": "add_edge", - "rtt_ns": 980197, - "rtt_ms": 0.980197, + "rtt_ns": 1573000, + "rtt_ms": 1.573, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.113270346Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:46.447122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527035, - "rtt_ms": 1.527035, + "rtt_ns": 1540833, + "rtt_ms": 1.540833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:48.113950404Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:46.447224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649864, - "rtt_ms": 1.649864, + "rtt_ns": 1970750, + "rtt_ms": 1.97075, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:48.114107373Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 846027, - "rtt_ms": 0.846027, - "checkpoint": 0, - "vertex_from": "662", - "timestamp": "2025-11-27T01:21:48.114798941Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2701581, - "rtt_ms": 2.701581, - "checkpoint": 0, - "vertex_from": "824", - "timestamp": "2025-11-27T01:21:48.11506531Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:46.447567-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2070154, - "rtt_ms": 2.070154, + "operation": "add_edge", + "rtt_ns": 2145167, + "rtt_ms": 2.145167, "checkpoint": 0, - "vertex_from": "669", - "timestamp": "2025-11-27T01:21:48.115345Z" + "vertex_from": "1", + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:46.447604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276892, - "rtt_ms": 2.276892, + "rtt_ns": 2184959, + "rtt_ms": 2.184959, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "346", - "timestamp": "2025-11-27T01:21:48.115403039Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.447607-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209243, - "rtt_ms": 2.209243, + "rtt_ns": 2050000, + "rtt_ms": 2.05, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:48.115450579Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:46.44764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217933, - "rtt_ms": 2.217933, + "rtt_ns": 2368000, + "rtt_ms": 2.368, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:48.115457429Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:46.447715-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2331343, - "rtt_ms": 2.331343, + "operation": "add_vertex", + "rtt_ns": 2335459, + "rtt_ms": 2.335459, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:48.115538859Z" + "vertex_from": "824", + "timestamp": "2025-11-27T04:01:46.447782-08:00" }, { "operation": "add_edge", - "rtt_ns": 2332863, - "rtt_ms": 2.332863, + "rtt_ns": 1242375, + "rtt_ms": 1.242375, "checkpoint": 0, "vertex_from": "1", "vertex_to": "28", - "timestamp": "2025-11-27T01:21:48.115577799Z" + "timestamp": "2025-11-27T04:01:46.447812-08:00" }, { "operation": "add_edge", - "rtt_ns": 815178, - "rtt_ms": 0.815178, + "rtt_ns": 2248583, + "rtt_ms": 2.248583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "662", - "timestamp": "2025-11-27T01:21:48.115614529Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:01:46.447827-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383933, - "rtt_ms": 2.383933, + "rtt_ns": 940000, + "rtt_ms": 0.94, "checkpoint": 0, "vertex_from": "1", "vertex_to": "696", - "timestamp": "2025-11-27T01:21:48.115634139Z" + "timestamp": "2025-11-27T04:01:46.448063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534736, - "rtt_ms": 1.534736, + "rtt_ns": 1247709, + "rtt_ms": 1.247709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:48.115643289Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:01:46.448888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313356, - "rtt_ms": 1.313356, + "rtt_ns": 1080750, + "rtt_ms": 1.08075, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:48.116379296Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:46.448909-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2129753, - "rtt_ms": 2.129753, + "rtt_ns": 1379750, + "rtt_ms": 1.37975, "checkpoint": 0, "vertex_from": "794", - "timestamp": "2025-11-27T01:21:48.117536712Z" + "timestamp": "2025-11-27T04:01:46.448989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303582, - "rtt_ms": 2.303582, + "rtt_ns": 1715666, + "rtt_ms": 1.715666, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "669", - "timestamp": "2025-11-27T01:21:48.117649092Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:46.449322-08:00" }, { "operation": "add_edge", - "rtt_ns": 2211513, - "rtt_ms": 2.211513, + "rtt_ns": 1617708, + "rtt_ms": 1.617708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "908", - "timestamp": "2025-11-27T01:21:48.117663672Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:46.449339-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265903, - "rtt_ms": 2.265903, + "rtt_ns": 1570667, + "rtt_ms": 1.570667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:48.117725052Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:46.449383-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176472, - "rtt_ms": 2.176472, + "rtt_ns": 1338167, + "rtt_ms": 1.338167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.117755671Z" + "vertex_to": "316", + "timestamp": "2025-11-27T04:01:46.449403-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2176612, - "rtt_ms": 2.176612, + "operation": "add_vertex", + "rtt_ns": 2178458, + "rtt_ms": 2.178458, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "316", - "timestamp": "2025-11-27T01:21:48.117792721Z" + "vertex_from": "669", + "timestamp": "2025-11-27T04:01:46.449405-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272642, - "rtt_ms": 2.272642, + "rtt_ns": 1649125, + "rtt_ms": 1.649125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:48.117814381Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:46.449432-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1606545, - "rtt_ms": 1.606545, + "rtt_ns": 1866125, + "rtt_ms": 1.866125, "checkpoint": 0, - "vertex_from": "787", - "timestamp": "2025-11-27T01:21:48.117989051Z" + "vertex_from": "662", + "timestamp": "2025-11-27T04:01:46.449438-08:00" }, { "operation": "add_edge", - "rtt_ns": 2370372, - "rtt_ms": 2.370372, + "rtt_ns": 1238000, + "rtt_ms": 1.238, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:48.118014881Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:46.450127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2389032, - "rtt_ms": 2.389032, + "rtt_ns": 1226875, + "rtt_ms": 1.226875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:48.118025211Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:46.450137-08:00" }, { "operation": "add_edge", - "rtt_ns": 672048, - "rtt_ms": 0.672048, + "rtt_ns": 1211000, + "rtt_ms": 1.211, "checkpoint": 0, "vertex_from": "1", "vertex_to": "794", - "timestamp": "2025-11-27T01:21:48.11820925Z" + "timestamp": "2025-11-27T04:01:46.4502-08:00" }, { - "operation": "add_edge", - "rtt_ns": 812857, - "rtt_ms": 0.812857, + "operation": "add_vertex", + "rtt_ns": 1548292, + "rtt_ms": 1.548292, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:48.118477659Z" + "vertex_from": "787", + "timestamp": "2025-11-27T04:01:46.450872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324425, - "rtt_ms": 1.324425, + "rtt_ns": 2282042, + "rtt_ms": 2.282042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:48.118975157Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.451715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449995, - "rtt_ms": 1.449995, + "rtt_ns": 2402875, + "rtt_ms": 2.402875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.119176797Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.451787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361516, - "rtt_ms": 1.361516, + "rtt_ns": 2401625, + "rtt_ms": 2.401625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:48.119176947Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:01:46.451806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558275, - "rtt_ms": 1.558275, + "rtt_ns": 1730250, + "rtt_ms": 1.73025, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.119315156Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:46.451858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716485, - "rtt_ms": 1.716485, + "rtt_ns": 1785708, + "rtt_ms": 1.785708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:48.119510246Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:46.451924-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 694397, - "rtt_ms": 0.694397, + "operation": "add_edge", + "rtt_ns": 2563167, + "rtt_ms": 2.563167, "checkpoint": 0, - "vertex_from": "470", - "timestamp": "2025-11-27T01:21:48.119875324Z" + "vertex_from": "1", + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:46.451967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026723, - "rtt_ms": 2.026723, + "rtt_ns": 2551042, + "rtt_ms": 2.551042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "183", - "timestamp": "2025-11-27T01:21:48.120054994Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:46.45199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087753, - "rtt_ms": 2.087753, + "rtt_ns": 1800333, + "rtt_ms": 1.800333, "checkpoint": 0, "vertex_from": "1", "vertex_to": "97", - "timestamp": "2025-11-27T01:21:48.120104144Z" + "timestamp": "2025-11-27T04:01:46.452002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036193, - "rtt_ms": 2.036193, + "rtt_ns": 2707541, + "rtt_ms": 2.707541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:48.120246853Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:46.452047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258282, - "rtt_ms": 2.258282, + "rtt_ns": 1533125, + "rtt_ms": 1.533125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "787", - "timestamp": "2025-11-27T01:21:48.120247623Z" + "timestamp": "2025-11-27T04:01:46.452405-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1225166, + "rtt_ms": 1.225166, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:46.453014-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1777964, - "rtt_ms": 1.777964, + "rtt_ns": 1323083, + "rtt_ms": 1.323083, "checkpoint": 0, "vertex_from": "496", - "timestamp": "2025-11-27T01:21:48.120259383Z" + "timestamp": "2025-11-27T04:01:46.453135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373586, - "rtt_ms": 1.373586, + "rtt_ns": 1518542, + "rtt_ms": 1.518542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:48.120350703Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:46.453509-08:00" }, { "operation": "add_edge", - "rtt_ns": 909117, - "rtt_ms": 0.909117, + "rtt_ns": 1560917, + "rtt_ms": 1.560917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:48.120420723Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:46.453528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169766, - "rtt_ms": 1.169766, + "rtt_ns": 1818375, + "rtt_ms": 1.818375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:48.120488572Z" + "vertex_to": "183", + "timestamp": "2025-11-27T04:01:46.453536-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1339935, - "rtt_ms": 1.339935, + "operation": "add_vertex", + "rtt_ns": 1694500, + "rtt_ms": 1.6945, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:48.120520002Z" + "vertex_from": "470", + "timestamp": "2025-11-27T04:01:46.453619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127527, - "rtt_ms": 1.127527, + "rtt_ns": 1653833, + "rtt_ms": 1.653833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "470", - "timestamp": "2025-11-27T01:21:48.121003191Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.453658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229546, - "rtt_ms": 1.229546, + "rtt_ns": 1641792, + "rtt_ms": 1.641792, "checkpoint": 0, "vertex_from": "1", "vertex_to": "574", - "timestamp": "2025-11-27T01:21:48.12128614Z" + "timestamp": "2025-11-27T04:01:46.453693-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1074297, - "rtt_ms": 1.074297, + "operation": "add_edge", + "rtt_ns": 2249917, + "rtt_ms": 2.249917, "checkpoint": 0, - "vertex_from": "587", - "timestamp": "2025-11-27T01:21:48.12132475Z" + "vertex_from": "1", + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:46.454109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660474, - "rtt_ms": 1.660474, + "rtt_ns": 2089709, + "rtt_ms": 2.089709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:48.121765228Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:01:46.455225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650295, - "rtt_ms": 1.650295, + "rtt_ns": 2916708, + "rtt_ms": 2.916708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:48.121899898Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:46.455324-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1836355, - "rtt_ms": 1.836355, + "rtt_ns": 1703542, + "rtt_ms": 1.703542, "checkpoint": 0, "vertex_from": "570", - "timestamp": "2025-11-27T01:21:48.122328077Z" + "timestamp": "2025-11-27T04:01:46.455362-08:00" }, { "operation": "add_edge", - "rtt_ns": 2085583, - "rtt_ms": 2.085583, + "rtt_ns": 1963709, + "rtt_ms": 1.963709, "checkpoint": 0, "vertex_from": "1", "vertex_to": "173", - "timestamp": "2025-11-27T01:21:48.122437586Z" + "timestamp": "2025-11-27T04:01:46.455493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018903, - "rtt_ms": 2.018903, + "rtt_ns": 1897750, + "rtt_ms": 1.89775, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:48.122440756Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:46.455593-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187253, - "rtt_ms": 2.187253, + "rtt_ns": 2021583, + "rtt_ms": 2.021583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "496", - "timestamp": "2025-11-27T01:21:48.122447436Z" + "vertex_to": "470", + "timestamp": "2025-11-27T04:01:46.455641-08:00" }, { "operation": "add_vertex", - "rtt_ns": 806477, - "rtt_ms": 0.806477, + "rtt_ns": 2638917, + "rtt_ms": 2.638917, "checkpoint": 0, - "vertex_from": "327", - "timestamp": "2025-11-27T01:21:48.122709015Z" + "vertex_from": "587", + "timestamp": "2025-11-27T04:01:46.455657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193593, - "rtt_ms": 2.193593, + "rtt_ns": 2330375, + "rtt_ms": 2.330375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:48.122716185Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:46.455842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886104, - "rtt_ms": 1.886104, + "rtt_ns": 2340000, + "rtt_ms": 2.34, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:48.122892115Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:46.455877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637595, - "rtt_ms": 1.637595, + "rtt_ns": 1373791, + "rtt_ms": 1.373791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:48.122925045Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:46.456698-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1647725, - "rtt_ms": 1.647725, + "operation": "add_vertex", + "rtt_ns": 1265042, + "rtt_ms": 1.265042, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:48.122973025Z" + "vertex_from": "327", + "timestamp": "2025-11-27T04:01:46.456759-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1586209, + "rtt_ms": 1.586209, + "checkpoint": 0, + "vertex_from": "606", + "timestamp": "2025-11-27T04:01:46.457429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232497, - "rtt_ms": 1.232497, + "rtt_ns": 2273459, + "rtt_ms": 2.273459, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:48.122998855Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:46.457499-08:00" }, { "operation": "add_edge", - "rtt_ns": 998646, - "rtt_ms": 0.998646, + "rtt_ns": 3466625, + "rtt_ms": 3.466625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "570", - "timestamp": "2025-11-27T01:21:48.123327213Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:46.457577-08:00" }, { "operation": "add_edge", - "rtt_ns": 955637, - "rtt_ms": 0.955637, + "rtt_ns": 2247084, + "rtt_ms": 2.247084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:48.123397683Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:01:46.45761-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1009757, - "rtt_ms": 1.009757, + "operation": "add_edge", + "rtt_ns": 1753250, + "rtt_ms": 1.75325, "checkpoint": 0, - "vertex_from": "606", - "timestamp": "2025-11-27T01:21:48.123461543Z" + "vertex_from": "1", + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:46.457631-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 724617, - "rtt_ms": 0.724617, + "operation": "add_edge", + "rtt_ns": 2124375, + "rtt_ms": 2.124375, "checkpoint": 0, - "vertex_from": "775", - "timestamp": "2025-11-27T01:21:48.123653622Z" + "vertex_from": "1", + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:46.45772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369416, - "rtt_ms": 1.369416, + "rtt_ns": 2138042, + "rtt_ms": 2.138042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:48.123808922Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:46.45778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440386, - "rtt_ms": 1.440386, + "rtt_ns": 1265416, + "rtt_ms": 1.265416, "checkpoint": 0, "vertex_from": "1", "vertex_to": "327", - "timestamp": "2025-11-27T01:21:48.124150201Z" + "timestamp": "2025-11-27T04:01:46.458025-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 690987, - "rtt_ms": 0.690987, + "operation": "add_edge", + "rtt_ns": 1779583, + "rtt_ms": 1.779583, "checkpoint": 0, - "vertex_from": "339", - "timestamp": "2025-11-27T01:21:48.124844068Z" + "vertex_from": "1", + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:46.458479-08:00" }, { "operation": "add_edge", - "rtt_ns": 2413592, - "rtt_ms": 2.413592, + "rtt_ns": 3144708, + "rtt_ms": 3.144708, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:48.125132157Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:46.458802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2432762, - "rtt_ms": 2.432762, + "rtt_ns": 1328667, + "rtt_ms": 1.328667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.125327087Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:46.458961-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2347282, - "rtt_ms": 2.347282, + "rtt_ns": 1702708, + "rtt_ms": 1.702708, "checkpoint": 0, - "vertex_from": "482", - "timestamp": "2025-11-27T01:21:48.125348217Z" + "vertex_from": "775", + "timestamp": "2025-11-27T04:01:46.459203-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2453741, - "rtt_ms": 2.453741, + "operation": "add_vertex", + "rtt_ns": 1939458, + "rtt_ms": 1.939458, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:48.125428066Z" + "vertex_from": "482", + "timestamp": "2025-11-27T04:01:46.459552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101053, - "rtt_ms": 2.101053, + "rtt_ns": 2366875, + "rtt_ms": 2.366875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:48.125429996Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:46.460088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852204, - "rtt_ms": 1.852204, + "rtt_ns": 1655625, + "rtt_ms": 1.655625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "775", - "timestamp": "2025-11-27T01:21:48.125506256Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:46.460136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2189153, - "rtt_ms": 2.189153, + "rtt_ns": 2434791, + "rtt_ms": 2.434791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:48.125588246Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:46.460216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135773, - "rtt_ms": 2.135773, + "rtt_ns": 2788667, + "rtt_ms": 2.788667, "checkpoint": 0, "vertex_from": "1", "vertex_to": "606", - "timestamp": "2025-11-27T01:21:48.125597756Z" + "timestamp": "2025-11-27T04:01:46.460218-08:00" }, { - "operation": "add_edge", - "rtt_ns": 790058, - "rtt_ms": 0.790058, + "operation": "add_vertex", + "rtt_ns": 2195125, + "rtt_ms": 2.195125, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "339", - "timestamp": "2025-11-27T01:21:48.125634666Z" + "vertex_from": "339", + "timestamp": "2025-11-27T04:01:46.460221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848304, - "rtt_ms": 1.848304, + "rtt_ns": 2798625, + "rtt_ms": 2.798625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:48.125658696Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:46.460377-08:00" }, { "operation": "add_edge", - "rtt_ns": 996477, - "rtt_ms": 0.996477, + "rtt_ns": 1603875, + "rtt_ms": 1.603875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:48.126130094Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:46.460409-08:00" }, { "operation": "add_edge", - "rtt_ns": 993367, - "rtt_ms": 0.993367, + "rtt_ns": 1246750, + "rtt_ms": 1.24675, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:48.126424903Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:01:46.46045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115976, - "rtt_ms": 1.115976, + "rtt_ns": 1057584, + "rtt_ms": 1.057584, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:48.126444623Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:01:46.46061-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1663705, - "rtt_ms": 1.663705, + "rtt_ns": 2413792, + "rtt_ms": 2.413792, "checkpoint": 0, "vertex_from": "647", - "timestamp": "2025-11-27T01:21:48.127094901Z" + "timestamp": "2025-11-27T04:01:46.461376-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1672765, - "rtt_ms": 1.672765, + "rtt_ns": 1256625, + "rtt_ms": 1.256625, "checkpoint": 0, "vertex_from": "55", - "timestamp": "2025-11-27T01:21:48.127182651Z" + "timestamp": "2025-11-27T04:01:46.461395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595885, - "rtt_ms": 1.595885, + "rtt_ns": 1195375, + "rtt_ms": 1.195375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:48.127194481Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:46.461413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847364, - "rtt_ms": 1.847364, + "rtt_ns": 1422833, + "rtt_ms": 1.422833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "482", - "timestamp": "2025-11-27T01:21:48.127195971Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:46.461642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656284, - "rtt_ms": 1.656284, + "rtt_ns": 1498583, + "rtt_ms": 1.498583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:48.12724645Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:01:46.46172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404485, - "rtt_ms": 1.404485, + "rtt_ns": 1780042, + "rtt_ms": 1.780042, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:48.12726433Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:46.461869-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1727724, - "rtt_ms": 1.727724, + "rtt_ns": 1807875, + "rtt_ms": 1.807875, "checkpoint": 0, "vertex_from": "154", - "timestamp": "2025-11-27T01:21:48.127581169Z" + "timestamp": "2025-11-27T04:01:46.462218-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1590945, - "rtt_ms": 1.590945, + "rtt_ns": 1788917, + "rtt_ms": 1.788917, "checkpoint": 0, - "vertex_from": "460", - "timestamp": "2025-11-27T01:21:48.127723919Z" + "vertex_from": "294", + "timestamp": "2025-11-27T04:01:46.4624-08:00" }, { "operation": "add_edge", - "rtt_ns": 710308, - "rtt_ms": 0.710308, + "rtt_ns": 2118541, + "rtt_ms": 2.118541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "647", - "timestamp": "2025-11-27T01:21:48.127805649Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:46.462529-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1390715, - "rtt_ms": 1.390715, + "rtt_ns": 2708375, + "rtt_ms": 2.708375, "checkpoint": 0, - "vertex_from": "294", - "timestamp": "2025-11-27T01:21:48.127818818Z" + "vertex_from": "460", + "timestamp": "2025-11-27T04:01:46.463159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384465, - "rtt_ms": 1.384465, + "rtt_ns": 1134541, + "rtt_ms": 1.134541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:48.127830648Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:01:46.463664-08:00" }, { "operation": "add_edge", - "rtt_ns": 742127, - "rtt_ms": 0.742127, + "rtt_ns": 2453167, + "rtt_ms": 2.453167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:48.127939828Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:01:46.463829-08:00" }, { "operation": "add_edge", - "rtt_ns": 774338, - "rtt_ms": 0.774338, + "rtt_ns": 2451208, + "rtt_ms": 2.451208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "604", - "timestamp": "2025-11-27T01:21:48.128040018Z" + "vertex_to": "55", + "timestamp": "2025-11-27T04:01:46.463847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553295, - "rtt_ms": 1.553295, + "rtt_ns": 2661833, + "rtt_ms": 2.661833, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:48.128749506Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:46.464075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571015, - "rtt_ms": 1.571015, + "rtt_ns": 1692750, + "rtt_ms": 1.69275, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "55", - "timestamp": "2025-11-27T01:21:48.128754076Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:46.464093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987714, - "rtt_ms": 1.987714, + "rtt_ns": 2457125, + "rtt_ms": 2.457125, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:48.129237954Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:46.464099-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2413084, + "rtt_ms": 2.413084, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:46.464134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706225, - "rtt_ms": 1.706225, + "rtt_ns": 1977958, + "rtt_ms": 1.977958, "checkpoint": 0, "vertex_from": "1", "vertex_to": "154", - "timestamp": "2025-11-27T01:21:48.129287954Z" + "timestamp": "2025-11-27T04:01:46.464197-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2019154, - "rtt_ms": 2.019154, + "operation": "add_edge", + "rtt_ns": 2338292, + "rtt_ms": 2.338292, "checkpoint": 0, - "vertex_from": "870", - "timestamp": "2025-11-27T01:21:48.129854702Z" + "vertex_from": "1", + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:46.46421-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151843, - "rtt_ms": 2.151843, + "rtt_ns": 2089333, + "rtt_ms": 2.089333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:48.129960342Z" + "vertex_to": "460", + "timestamp": "2025-11-27T04:01:46.465249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2181904, - "rtt_ms": 2.181904, + "rtt_ns": 1118167, + "rtt_ms": 1.118167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:48.130001412Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:46.465317-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1241766, - "rtt_ms": 1.241766, + "rtt_ns": 1419000, + "rtt_ms": 1.419, "checkpoint": 0, "vertex_from": "243", - "timestamp": "2025-11-27T01:21:48.130002032Z" + "timestamp": "2025-11-27T04:01:46.465521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281763, - "rtt_ms": 2.281763, + "rtt_ns": 2353333, + "rtt_ms": 2.353333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "460", - "timestamp": "2025-11-27T01:21:48.130006142Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:01:46.466489-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2068404, - "rtt_ms": 2.068404, + "operation": "add_vertex", + "rtt_ns": 2679333, + "rtt_ms": 2.679333, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:48.130010402Z" + "vertex_from": "870", + "timestamp": "2025-11-27T04:01:46.466509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337305, - "rtt_ms": 1.337305, + "rtt_ns": 2873750, + "rtt_ms": 2.87375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "51", - "timestamp": "2025-11-27T01:21:48.130089201Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:46.466539-08:00" }, { "operation": "add_edge", - "rtt_ns": 2078343, - "rtt_ms": 2.078343, + "rtt_ns": 2525583, + "rtt_ms": 2.525583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:48.130119551Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:01:46.466621-08:00" }, { "operation": "add_edge", - "rtt_ns": 858727, - "rtt_ms": 0.858727, + "rtt_ns": 2460875, + "rtt_ms": 2.460875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:48.130148011Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:46.466671-08:00" }, { "operation": "add_edge", - "rtt_ns": 940567, - "rtt_ms": 0.940567, + "rtt_ns": 2899916, + "rtt_ms": 2.899916, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "902", - "timestamp": "2025-11-27T01:21:48.130181191Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:46.466747-08:00" }, { "operation": "add_edge", - "rtt_ns": 771208, - "rtt_ms": 0.771208, + "rtt_ns": 1270417, + "rtt_ms": 1.270417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "870", - "timestamp": "2025-11-27T01:21:48.13062658Z" + "vertex_to": "243", + "timestamp": "2025-11-27T04:01:46.466792-08:00" }, { "operation": "add_edge", - "rtt_ns": 825977, - "rtt_ms": 0.825977, + "rtt_ns": 2754291, + "rtt_ms": 2.754291, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:48.130789059Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:46.466831-08:00" }, { "operation": "add_edge", - "rtt_ns": 835027, - "rtt_ms": 0.835027, + "rtt_ns": 1849333, + "rtt_ms": 1.849333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "243", - "timestamp": "2025-11-27T01:21:48.130838839Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:46.467168-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1268186, - "rtt_ms": 1.268186, + "rtt_ns": 2436625, + "rtt_ms": 2.436625, "checkpoint": 0, "vertex_from": "843", - "timestamp": "2025-11-27T01:21:48.131274368Z" + "timestamp": "2025-11-27T04:01:46.467689-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1289435, - "rtt_ms": 1.289435, + "operation": "add_edge", + "rtt_ns": 1355292, + "rtt_ms": 1.355292, "checkpoint": 0, - "vertex_from": "782", - "timestamp": "2025-11-27T01:21:48.131302927Z" + "vertex_from": "1", + "vertex_to": "486", + "timestamp": "2025-11-27T04:01:46.468027-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1448886, - "rtt_ms": 1.448886, + "rtt_ns": 1404625, + "rtt_ms": 1.404625, "checkpoint": 0, - "vertex_from": "430", - "timestamp": "2025-11-27T01:21:48.131541217Z" + "vertex_from": "253", + "timestamp": "2025-11-27T04:01:46.468197-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1733292, + "rtt_ms": 1.733292, + "checkpoint": 0, + "vertex_from": "1", + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:46.468355-08:00" }, { "operation": "add_vertex", - "rtt_ns": 994586, - "rtt_ms": 0.994586, + "rtt_ns": 2045917, + "rtt_ms": 2.045917, "checkpoint": 0, - "vertex_from": "253", - "timestamp": "2025-11-27T01:21:48.131624056Z" + "vertex_from": "782", + "timestamp": "2025-11-27T04:01:46.468537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659954, - "rtt_ms": 1.659954, + "rtt_ns": 1797583, + "rtt_ms": 1.797583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:48.131667896Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:46.468546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576915, - "rtt_ms": 1.576915, + "rtt_ns": 2045083, + "rtt_ms": 2.045083, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "486", - "timestamp": "2025-11-27T01:21:48.131726216Z" + "vertex_to": "870", + "timestamp": "2025-11-27T04:01:46.468555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591025, - "rtt_ms": 1.591025, + "rtt_ns": 1397416, + "rtt_ms": 1.397416, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:48.131774466Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:46.468566-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1738042, + "rtt_ms": 1.738042, + "checkpoint": 0, + "vertex_from": "119", + "timestamp": "2025-11-27T04:01:46.46857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739365, - "rtt_ms": 1.739365, + "rtt_ns": 995709, + "rtt_ms": 0.995709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:48.131860026Z" + "vertex_to": "843", + "timestamp": "2025-11-27T04:01:46.468685-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1653235, - "rtt_ms": 1.653235, + "rtt_ns": 2790917, + "rtt_ms": 2.790917, "checkpoint": 0, - "vertex_from": "119", - "timestamp": "2025-11-27T01:21:48.132444264Z" + "vertex_from": "430", + "timestamp": "2025-11-27T04:01:46.469331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160657, - "rtt_ms": 1.160657, + "rtt_ns": 1568750, + "rtt_ms": 1.56875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:48.132463974Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:46.469597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103713, - "rtt_ms": 2.103713, + "rtt_ns": 1253875, + "rtt_ms": 1.253875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:48.132943922Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.469821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748644, - "rtt_ms": 1.748644, + "rtt_ns": 1623750, + "rtt_ms": 1.62375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "843", - "timestamp": "2025-11-27T01:21:48.133023402Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:46.470171-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1184666, - "rtt_ms": 1.184666, + "operation": "add_edge", + "rtt_ns": 1543542, + "rtt_ms": 1.543542, "checkpoint": 0, - "vertex_from": "393", - "timestamp": "2025-11-27T01:21:48.133046242Z" + "vertex_from": "1", + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:46.470229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766794, - "rtt_ms": 1.766794, + "rtt_ns": 1715334, + "rtt_ms": 1.715334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "430", - "timestamp": "2025-11-27T01:21:48.133308481Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:01:46.470285-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1773333, + "rtt_ms": 1.773333, + "checkpoint": 0, + "vertex_from": "393", + "timestamp": "2025-11-27T04:01:46.47033-08:00" }, { "operation": "add_vertex", - "rtt_ns": 638288, - "rtt_ms": 0.638288, + "rtt_ns": 1191125, + "rtt_ms": 1.191125, "checkpoint": 0, "vertex_from": "913", - "timestamp": "2025-11-27T01:21:48.133951489Z" + "timestamp": "2025-11-27T04:01:46.471013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2454852, - "rtt_ms": 2.454852, + "rtt_ns": 2662958, + "rtt_ms": 2.662958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:48.134124628Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:46.471201-08:00" }, { "operation": "add_edge", - "rtt_ns": 2388632, - "rtt_ms": 2.388632, + "rtt_ns": 1887250, + "rtt_ms": 1.88725, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:48.134164458Z" + "vertex_to": "430", + "timestamp": "2025-11-27T04:01:46.471218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2575832, - "rtt_ms": 2.575832, + "rtt_ns": 1138417, + "rtt_ms": 1.138417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "253", - "timestamp": "2025-11-27T01:21:48.134200188Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:46.471468-08:00" }, { "operation": "add_edge", - "rtt_ns": 2503312, - "rtt_ms": 2.503312, + "rtt_ns": 3400958, + "rtt_ms": 3.400958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "167", - "timestamp": "2025-11-27T01:21:48.134230938Z" + "vertex_to": "253", + "timestamp": "2025-11-27T04:01:46.471599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903823, - "rtt_ms": 1.903823, + "rtt_ns": 3265208, + "rtt_ms": 3.265208, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "119", - "timestamp": "2025-11-27T01:21:48.134348437Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:01:46.471621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885373, - "rtt_ms": 1.885373, + "rtt_ns": 1458542, + "rtt_ms": 1.458542, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.134350977Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:46.47163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417535, - "rtt_ms": 1.417535, + "rtt_ns": 1369375, + "rtt_ms": 1.369375, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:48.134442147Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.471657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519595, - "rtt_ms": 1.519595, + "rtt_ns": 2188625, + "rtt_ms": 2.188625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:48.134465587Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:46.471787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425335, - "rtt_ms": 1.425335, + "rtt_ns": 1563625, + "rtt_ms": 1.563625, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:48.134471947Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:46.471796-08:00" }, { "operation": "add_edge", - "rtt_ns": 707617, - "rtt_ms": 0.707617, + "rtt_ns": 1352125, + "rtt_ms": 1.352125, "checkpoint": 0, "vertex_from": "1", "vertex_to": "913", - "timestamp": "2025-11-27T01:21:48.134659566Z" + "timestamp": "2025-11-27T04:01:46.472366-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1807934, - "rtt_ms": 1.807934, + "operation": "add_vertex", + "rtt_ns": 1208792, + "rtt_ms": 1.208792, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:48.135935392Z" + "vertex_from": "844", + "timestamp": "2025-11-27T04:01:46.473008-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1795394, - "rtt_ms": 1.795394, + "operation": "add_vertex", + "rtt_ns": 1538333, + "rtt_ms": 1.538333, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:48.135961142Z" + "vertex_from": "720", + "timestamp": "2025-11-27T04:01:46.473008-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1420416, - "rtt_ms": 1.420416, + "rtt_ns": 1379333, + "rtt_ms": 1.379333, "checkpoint": 0, "vertex_from": "694", - "timestamp": "2025-11-27T01:21:48.136082712Z" + "timestamp": "2025-11-27T04:01:46.473037-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1780964, - "rtt_ms": 1.780964, + "rtt_ns": 1330292, + "rtt_ms": 1.330292, "checkpoint": 0, - "vertex_from": "720", - "timestamp": "2025-11-27T01:21:48.136135331Z" + "vertex_from": "527", + "timestamp": "2025-11-27T04:01:46.473119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799474, - "rtt_ms": 1.799474, + "rtt_ns": 1948500, + "rtt_ms": 1.9485, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:48.136150221Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:46.473571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925093, - "rtt_ms": 1.925093, + "rtt_ns": 1974250, + "rtt_ms": 1.97425, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "369", - "timestamp": "2025-11-27T01:21:48.136158121Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:01:46.473606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715244, - "rtt_ms": 1.715244, + "rtt_ns": 1194209, + "rtt_ms": 1.194209, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "583", - "timestamp": "2025-11-27T01:21:48.136188701Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:01:46.474203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991083, - "rtt_ms": 1.991083, + "rtt_ns": 2611417, + "rtt_ms": 2.611417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:48.136192711Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:46.474211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726304, - "rtt_ms": 1.726304, + "rtt_ns": 1110416, + "rtt_ms": 1.110416, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:48.136195001Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:46.47423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786544, - "rtt_ms": 1.786544, + "rtt_ns": 3941709, + "rtt_ms": 3.941709, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:48.136231531Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1179036, - "rtt_ms": 1.179036, - "checkpoint": 0, - "vertex_from": "844", - "timestamp": "2025-11-27T01:21:48.137145258Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:46.475161-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1698985, - "rtt_ms": 1.698985, + "operation": "add_edge", + "rtt_ns": 1608333, + "rtt_ms": 1.608333, "checkpoint": 0, - "vertex_from": "527", - "timestamp": "2025-11-27T01:21:48.137640127Z" + "vertex_from": "1", + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:46.475182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532526, - "rtt_ms": 1.532526, + "rtt_ns": 2816917, + "rtt_ms": 2.816917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:48.137668557Z" + "vertex_to": "378", + "timestamp": "2025-11-27T04:01:46.475185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594274, - "rtt_ms": 1.594274, + "rtt_ns": 4388917, + "rtt_ms": 4.388917, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "694", - "timestamp": "2025-11-27T01:21:48.137677256Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:01:46.475591-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1515965, - "rtt_ms": 1.515965, + "rtt_ns": 2019250, + "rtt_ms": 2.01925, "checkpoint": 0, "vertex_from": "229", - "timestamp": "2025-11-27T01:21:48.137707816Z" + "timestamp": "2025-11-27T04:01:46.475628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623495, - "rtt_ms": 1.623495, + "rtt_ns": 2634167, + "rtt_ms": 2.634167, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "378", - "timestamp": "2025-11-27T01:21:48.137776436Z" + "vertex_to": "694", + "timestamp": "2025-11-27T04:01:46.475671-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040704, - "rtt_ms": 2.040704, + "rtt_ns": 1508416, + "rtt_ms": 1.508416, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:48.138237535Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:46.475741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108094, - "rtt_ms": 2.108094, + "rtt_ns": 1584500, + "rtt_ms": 1.5845, "checkpoint": 0, "vertex_from": "1", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:48.138303295Z" + "timestamp": "2025-11-27T04:01:46.475802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072783, - "rtt_ms": 2.072783, + "rtt_ns": 2879334, + "rtt_ms": 2.879334, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:48.138306404Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:46.475888-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2153723, - "rtt_ms": 2.153723, + "operation": "add_vertex", + "rtt_ns": 1833042, + "rtt_ms": 1.833042, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:48.138313674Z" + "vertex_from": "215", + "timestamp": "2025-11-27T04:01:46.476996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481045, - "rtt_ms": 1.481045, + "rtt_ns": 2794958, + "rtt_ms": 2.794958, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "844", - "timestamp": "2025-11-27T01:21:48.138627283Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:46.477007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110446, - "rtt_ms": 1.110446, + "rtt_ns": 1276791, + "rtt_ms": 1.276791, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "527", - "timestamp": "2025-11-27T01:21:48.138751223Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:46.477166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068447, - "rtt_ms": 1.068447, + "rtt_ns": 2003084, + "rtt_ms": 2.003084, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "229", - "timestamp": "2025-11-27T01:21:48.138776603Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.477186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048557, - "rtt_ms": 1.048557, + "rtt_ns": 1643333, + "rtt_ms": 1.643333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:48.138827123Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1212326, - "rtt_ms": 1.212326, - "checkpoint": 0, - "vertex_from": "215", - "timestamp": "2025-11-27T01:21:48.138886303Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:01:46.477272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259976, - "rtt_ms": 1.259976, + "rtt_ns": 1955541, + "rtt_ms": 1.955541, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.138938972Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:01:46.477629-08:00" }, { "operation": "add_edge", - "rtt_ns": 721527, - "rtt_ms": 0.721527, + "rtt_ns": 2460500, + "rtt_ms": 2.4605, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "15", - "timestamp": "2025-11-27T01:21:48.138964072Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:46.477646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277626, - "rtt_ms": 1.277626, + "rtt_ns": 1973709, + "rtt_ms": 1.973709, "checkpoint": 0, "vertex_from": "1", "vertex_to": "554", - "timestamp": "2025-11-27T01:21:48.13958645Z" + "timestamp": "2025-11-27T04:01:46.477716-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1549076, - "rtt_ms": 1.549076, + "rtt_ns": 1940709, + "rtt_ms": 1.940709, "checkpoint": 0, "vertex_from": "867", - "timestamp": "2025-11-27T01:21:48.13986597Z" + "timestamp": "2025-11-27T04:01:46.477744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606265, - "rtt_ms": 1.606265, + "rtt_ns": 2192458, + "rtt_ms": 2.192458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "43", - "timestamp": "2025-11-27T01:21:48.139911169Z" + "vertex_to": "15", + "timestamp": "2025-11-27T04:01:46.477784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185933, - "rtt_ms": 2.185933, + "rtt_ns": 1599292, + "rtt_ms": 1.599292, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:48.140814856Z" + "vertex_to": "215", + "timestamp": "2025-11-27T04:01:46.478596-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080823, - "rtt_ms": 2.080823, + "rtt_ns": 1620875, + "rtt_ms": 1.620875, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "826", - "timestamp": "2025-11-27T01:21:48.140908986Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:46.478629-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174283, - "rtt_ms": 2.174283, + "rtt_ns": 1425792, + "rtt_ms": 1.425792, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:48.140926806Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:01:46.47917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994514, - "rtt_ms": 1.994514, + "rtt_ns": 2098417, + "rtt_ms": 2.098417, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:48.140960846Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:46.479265-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249223, - "rtt_ms": 2.249223, + "rtt_ns": 1653667, + "rtt_ms": 1.653667, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:48.141026996Z" + "vertex_to": "94", + "timestamp": "2025-11-27T04:01:46.47937-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160393, - "rtt_ms": 2.160393, + "rtt_ns": 1756166, + "rtt_ms": 1.756166, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "215", - "timestamp": "2025-11-27T01:21:48.141047386Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:46.479386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530505, - "rtt_ms": 1.530505, + "rtt_ns": 2118333, + "rtt_ms": 2.118333, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:48.141123125Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:01:46.479391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186863, - "rtt_ms": 2.186863, + "rtt_ns": 2335458, + "rtt_ms": 2.335458, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "13", - "timestamp": "2025-11-27T01:21:48.141127405Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:01:46.479524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316545, - "rtt_ms": 1.316545, + "rtt_ns": 1892500, + "rtt_ms": 1.8925, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "867", - "timestamp": "2025-11-27T01:21:48.141183065Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:46.479539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280136, - "rtt_ms": 1.280136, + "rtt_ns": 1966583, + "rtt_ms": 1.966583, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "94", - "timestamp": "2025-11-27T01:21:48.141192995Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:46.479753-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1334833, + "rtt_ms": 1.334833, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:46.480875-08:00" }, { "operation": "add_edge", - "rtt_ns": 708938, - "rtt_ms": 0.708938, + "rtt_ns": 1484834, + "rtt_ms": 1.484834, "checkpoint": 0, "vertex_from": "1", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:48.141526354Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:01:46.480877-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 696887, - "rtt_ms": 0.696887, + "operation": "add_edge", + "rtt_ns": 1518208, + "rtt_ms": 1.518208, "checkpoint": 0, - "vertex_from": "756", - "timestamp": "2025-11-27T01:21:48.141660823Z" + "vertex_from": "1", + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:46.480905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575605, - "rtt_ms": 1.575605, + "rtt_ns": 1533792, + "rtt_ms": 1.533792, "checkpoint": 0, "vertex_from": "2", "vertex_to": "3", - "timestamp": "2025-11-27T01:21:48.1427606Z" + "timestamp": "2025-11-27T04:01:46.481059-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1604765, - "rtt_ms": 1.604765, + "operation": "add_vertex", + "rtt_ns": 1808166, + "rtt_ms": 1.808166, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.14279953Z" + "vertex_from": "248", + "timestamp": "2025-11-27T04:01:46.481081-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1898704, - "rtt_ms": 1.898704, + "rtt_ns": 1920708, + "rtt_ms": 1.920708, "checkpoint": 0, - "vertex_from": "436", - "timestamp": "2025-11-27T01:21:48.14281123Z" + "vertex_from": "756", + "timestamp": "2025-11-27T04:01:46.481092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922853, - "rtt_ms": 1.922853, + "rtt_ns": 2462583, + "rtt_ms": 2.462583, "checkpoint": 0, "vertex_from": "1", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:48.142851879Z" + "timestamp": "2025-11-27T04:01:46.481092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834873, - "rtt_ms": 1.834873, + "rtt_ns": 1768542, + "rtt_ms": 1.768542, "checkpoint": 0, "vertex_from": "1", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:48.142884139Z" + "timestamp": "2025-11-27T04:01:46.48114-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1923403, - "rtt_ms": 1.923403, + "rtt_ns": 2540708, + "rtt_ms": 2.540708, "checkpoint": 0, - "vertex_from": "248", - "timestamp": "2025-11-27T01:21:48.142954059Z" + "vertex_from": "436", + "timestamp": "2025-11-27T04:01:46.481142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994774, - "rtt_ms": 1.994774, + "rtt_ns": 1733542, + "rtt_ms": 1.733542, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "659", - "timestamp": "2025-11-27T01:21:48.143123489Z" + "vertex_from": "2", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.481488-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042683, - "rtt_ms": 2.042683, + "rtt_ns": 1498875, + "rtt_ms": 1.498875, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:48.143167428Z" + "vertex_from": "2", + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:46.482405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788724, - "rtt_ms": 1.788724, + "rtt_ns": 1542083, + "rtt_ms": 1.542083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.143319978Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:46.482604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947544, - "rtt_ms": 1.947544, + "rtt_ns": 2004000, + "rtt_ms": 2.004, "checkpoint": 0, - "vertex_from": "1", - "vertex_to": "756", - "timestamp": "2025-11-27T01:21:48.143609127Z" + "vertex_from": "2", + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:46.483492-08:00" }, { "operation": "add_edge", - "rtt_ns": 798337, - "rtt_ms": 0.798337, + "rtt_ns": 2389917, + "rtt_ms": 2.389917, "checkpoint": 0, "vertex_from": "1", "vertex_to": "436", - "timestamp": "2025-11-27T01:21:48.143610357Z" + "timestamp": "2025-11-27T04:01:46.483532-08:00" }, { "operation": "add_edge", - "rtt_ns": 833387, - "rtt_ms": 0.833387, + "rtt_ns": 2490291, + "rtt_ms": 2.490291, "checkpoint": 0, "vertex_from": "1", "vertex_to": "248", - "timestamp": "2025-11-27T01:21:48.143788346Z" + "timestamp": "2025-11-27T04:01:46.483571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770914, - "rtt_ms": 1.770914, + "rtt_ns": 2506750, + "rtt_ms": 2.50675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.144534244Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.4836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958664, - "rtt_ms": 1.958664, + "rtt_ns": 2776958, + "rtt_ms": 2.776958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:48.144812573Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:46.483655-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057423, - "rtt_ms": 2.057423, + "rtt_ns": 2944792, + "rtt_ms": 2.944792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:48.144860613Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.48382-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013824, - "rtt_ms": 2.013824, + "rtt_ns": 2684583, + "rtt_ms": 2.684583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:48.144899353Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:46.483826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732584, - "rtt_ms": 1.732584, + "rtt_ns": 2769209, + "rtt_ms": 2.769209, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:48.145054222Z" + "vertex_from": "1", + "vertex_to": "756", + "timestamp": "2025-11-27T04:01:46.483862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551215, - "rtt_ms": 1.551215, + "rtt_ns": 1271291, + "rtt_ms": 1.271291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "9", - "timestamp": "2025-11-27T01:21:48.145163392Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:46.485133-08:00" }, { "operation": "add_edge", - "rtt_ns": 2385762, - "rtt_ms": 2.385762, + "rtt_ns": 2657125, + "rtt_ms": 2.657125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.145512851Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:01:46.485264-08:00" }, { "operation": "add_edge", - "rtt_ns": 2617852, - "rtt_ms": 2.617852, + "rtt_ns": 1699958, + "rtt_ms": 1.699958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:48.14578703Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:46.4853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107474, - "rtt_ms": 2.107474, + "rtt_ns": 1700916, + "rtt_ms": 1.700916, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:48.14589958Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.485356-08:00" }, { "operation": "add_edge", - "rtt_ns": 2916071, - "rtt_ms": 2.916071, + "rtt_ns": 1548000, + "rtt_ms": 1.548, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.146527548Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.485369-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054343, - "rtt_ms": 2.054343, + "rtt_ns": 1882083, + "rtt_ms": 1.882083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:48.146590287Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:46.485375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245233, - "rtt_ms": 2.245233, + "rtt_ns": 1925292, + "rtt_ms": 1.925292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.147146706Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:46.485458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2387313, - "rtt_ms": 2.387313, + "rtt_ns": 1942792, + "rtt_ms": 1.942792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.147445265Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:46.485515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938034, - "rtt_ms": 1.938034, + "rtt_ns": 1732208, + "rtt_ms": 1.732208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:48.147452595Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.485558-08:00" }, { "operation": "add_edge", - "rtt_ns": 2735291, - "rtt_ms": 2.735291, + "rtt_ns": 3166708, + "rtt_ms": 3.166708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.147551404Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.485573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841664, - "rtt_ms": 1.841664, + "rtt_ns": 1681166, + "rtt_ms": 1.681166, "checkpoint": 0, "vertex_from": "2", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:48.147630314Z" + "timestamp": "2025-11-27T04:01:46.486815-08:00" }, { "operation": "add_edge", - "rtt_ns": 2933381, - "rtt_ms": 2.933381, + "rtt_ns": 1309000, + "rtt_ms": 1.309, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:48.148098913Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:01:46.486882-08:00" }, { "operation": "add_edge", - "rtt_ns": 3237410, - "rtt_ms": 3.23741, + "rtt_ns": 1572375, + "rtt_ms": 1.572375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:48.148099843Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:46.486948-08:00" }, { "operation": "add_edge", - "rtt_ns": 2204033, - "rtt_ms": 2.204033, + "rtt_ns": 1643208, + "rtt_ms": 1.643208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:48.148105813Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:46.487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660504, - "rtt_ms": 1.660504, + "rtt_ns": 1704666, + "rtt_ms": 1.704666, "checkpoint": 0, "vertex_from": "2", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.148190192Z" + "timestamp": "2025-11-27T04:01:46.487006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829295, - "rtt_ms": 1.829295, + "rtt_ns": 1644292, + "rtt_ms": 1.644292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:48.148421132Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.487014-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1192646, - "rtt_ms": 1.192646, + "rtt_ns": 1611834, + "rtt_ms": 1.611834, "checkpoint": 0, "vertex_from": "53", - "timestamp": "2025-11-27T01:21:48.14874792Z" + "timestamp": "2025-11-27T04:01:46.487129-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055673, - "rtt_ms": 2.055673, + "rtt_ns": 1928166, + "rtt_ms": 1.928166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.149205059Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:46.487193-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225623, - "rtt_ms": 2.225623, + "rtt_ns": 1808417, + "rtt_ms": 1.808417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:48.149857597Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:46.487267-08:00" }, { "operation": "add_edge", - "rtt_ns": 2566041, - "rtt_ms": 2.566041, + "rtt_ns": 1843666, + "rtt_ms": 1.843666, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:48.150021826Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:46.487403-08:00" }, { "operation": "add_edge", - "rtt_ns": 2756301, - "rtt_ms": 2.756301, + "rtt_ns": 1615000, + "rtt_ms": 1.615, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.150203296Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:46.488431-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 700448, - "rtt_ms": 0.700448, + "operation": "add_edge", + "rtt_ns": 1619208, + "rtt_ms": 1.619208, "checkpoint": 0, - "vertex_from": "157", - "timestamp": "2025-11-27T01:21:48.150724234Z" + "vertex_from": "2", + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:46.488502-08:00" }, { "operation": "add_edge", - "rtt_ns": 2740260, - "rtt_ms": 2.74026, + "rtt_ns": 1560167, + "rtt_ms": 1.560167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:48.150842203Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:46.488569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2760560, - "rtt_ms": 2.76056, + "rtt_ns": 1512292, + "rtt_ms": 1.512292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "54", - "timestamp": "2025-11-27T01:21:48.150861833Z" + "vertex_to": "53", + "timestamp": "2025-11-27T04:01:46.488642-08:00" }, { "operation": "add_edge", - "rtt_ns": 2516201, - "rtt_ms": 2.516201, + "rtt_ns": 1631167, + "rtt_ms": 1.631167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.150939193Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.488646-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219363, - "rtt_ms": 2.219363, + "rtt_ns": 1382959, + "rtt_ms": 1.382959, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "53", - "timestamp": "2025-11-27T01:21:48.150967503Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:01:46.488651-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2879941, - "rtt_ms": 2.879941, + "operation": "add_vertex", + "rtt_ns": 1492333, + "rtt_ms": 1.492333, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:48.151072943Z" + "vertex_from": "157", + "timestamp": "2025-11-27T04:01:46.488687-08:00" }, { "operation": "add_edge", - "rtt_ns": 2984190, - "rtt_ms": 2.98419, + "rtt_ns": 1744500, + "rtt_ms": 1.7445, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:48.151092863Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:46.488693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958383, - "rtt_ms": 1.958383, + "rtt_ns": 1706833, + "rtt_ms": 1.706833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:48.151165162Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.488707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324325, - "rtt_ms": 1.324325, + "rtt_ns": 1489459, + "rtt_ms": 1.489459, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.151183222Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:46.488893-08:00" }, { "operation": "add_edge", - "rtt_ns": 997996, - "rtt_ms": 0.997996, + "rtt_ns": 1235417, + "rtt_ms": 1.235417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "10", - "timestamp": "2025-11-27T01:21:48.151202762Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:01:46.489667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035716, - "rtt_ms": 1.035716, + "rtt_ns": 1181750, + "rtt_ms": 1.18175, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "157", - "timestamp": "2025-11-27T01:21:48.15176029Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.489687-08:00" }, { "operation": "add_edge", - "rtt_ns": 884527, - "rtt_ms": 0.884527, + "rtt_ns": 1521625, + "rtt_ms": 1.521625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "736", - "timestamp": "2025-11-27T01:21:48.1518537Z" + "timestamp": "2025-11-27T04:01:46.490092-08:00" }, { "operation": "add_edge", - "rtt_ns": 944567, - "rtt_ms": 0.944567, + "rtt_ns": 1498750, + "rtt_ms": 1.49875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.15188651Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:46.490146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058337, - "rtt_ms": 1.058337, + "rtt_ns": 1555959, + "rtt_ms": 1.555959, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "4", - "timestamp": "2025-11-27T01:21:48.15192254Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:46.490209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088957, - "rtt_ms": 1.088957, + "rtt_ns": 1627250, + "rtt_ms": 1.62725, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.15193468Z" + "vertex_to": "157", + "timestamp": "2025-11-27T04:01:46.490314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596504, - "rtt_ms": 1.596504, + "rtt_ns": 1897333, + "rtt_ms": 1.897333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:48.152671607Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:46.490592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722874, - "rtt_ms": 1.722874, + "rtt_ns": 1901708, + "rtt_ms": 1.901708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:48.152817507Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.490796-08:00" }, { "operation": "add_edge", - "rtt_ns": 2644252, - "rtt_ms": 2.644252, + "rtt_ns": 2231125, + "rtt_ms": 2.231125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.153829054Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:46.49094-08:00" }, { "operation": "add_edge", - "rtt_ns": 2738102, - "rtt_ms": 2.738102, + "rtt_ns": 1316792, + "rtt_ms": 1.316792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:48.153905264Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:01:46.490985-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019663, - "rtt_ms": 2.019663, + "rtt_ns": 1032417, + "rtt_ms": 1.032417, "checkpoint": 0, "vertex_from": "2", "vertex_to": "5", - "timestamp": "2025-11-27T01:21:48.153943523Z" + "timestamp": "2025-11-27T04:01:46.491125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104493, - "rtt_ms": 2.104493, + "rtt_ns": 2499750, + "rtt_ms": 2.49975, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "60", - "timestamp": "2025-11-27T01:21:48.153959583Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:46.491143-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237863, - "rtt_ms": 2.237863, + "rtt_ns": 1376125, + "rtt_ms": 1.376125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:48.153999853Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.491969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076073, - "rtt_ms": 2.076073, + "rtt_ns": 1823834, + "rtt_ms": 1.823834, "checkpoint": 0, "vertex_from": "2", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:48.154012373Z" + "timestamp": "2025-11-27T04:01:46.491972-08:00" }, { "operation": "add_edge", - "rtt_ns": 2850501, - "rtt_ms": 2.850501, + "rtt_ns": 2000500, + "rtt_ms": 2.0005, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:48.154054913Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.49221-08:00" }, { "operation": "add_edge", - "rtt_ns": 2226453, - "rtt_ms": 2.226453, + "rtt_ns": 1335958, + "rtt_ms": 1.335958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:48.154115993Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:46.492278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476626, - "rtt_ms": 1.476626, + "rtt_ns": 1984292, + "rtt_ms": 1.984292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.154149633Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:46.4923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412606, - "rtt_ms": 1.412606, + "rtt_ns": 1233166, + "rtt_ms": 1.233166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:48.154231523Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:01:46.492359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016733, - "rtt_ms": 2.016733, + "rtt_ns": 1611417, + "rtt_ms": 1.611417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.155847697Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.492409-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025303, - "rtt_ms": 2.025303, + "rtt_ns": 2759875, + "rtt_ms": 2.759875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.155932017Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:46.492447-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032394, - "rtt_ms": 2.032394, + "rtt_ns": 1326209, + "rtt_ms": 1.326209, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.155977057Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:46.49247-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115304, - "rtt_ms": 2.115304, + "rtt_ns": 1555458, + "rtt_ms": 1.555458, "checkpoint": 0, "vertex_from": "2", "vertex_to": "14", - "timestamp": "2025-11-27T01:21:48.156075787Z" + "timestamp": "2025-11-27T04:01:46.492543-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093054, - "rtt_ms": 2.093054, + "rtt_ns": 1754583, + "rtt_ms": 1.754583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "29", - "timestamp": "2025-11-27T01:21:48.156095537Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:46.493725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988253, - "rtt_ms": 1.988253, + "rtt_ns": 1958583, + "rtt_ms": 1.958583, "checkpoint": 0, "vertex_from": "2", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:48.156104856Z" + "timestamp": "2025-11-27T04:01:46.493932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331763, - "rtt_ms": 2.331763, + "rtt_ns": 1767709, + "rtt_ms": 1.767709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:48.156345386Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:46.494311-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301423, - "rtt_ms": 2.301423, + "rtt_ns": 1966792, + "rtt_ms": 1.966792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:48.156357416Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.494327-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195682, - "rtt_ms": 2.195682, + "rtt_ns": 2049292, + "rtt_ms": 2.049292, "checkpoint": 0, "vertex_from": "2", "vertex_to": "437", - "timestamp": "2025-11-27T01:21:48.156429345Z" + "timestamp": "2025-11-27T04:01:46.494329-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285372, - "rtt_ms": 2.285372, + "rtt_ns": 1896750, + "rtt_ms": 1.89675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:48.156436715Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.494345-08:00" }, { "operation": "add_edge", - "rtt_ns": 764978, - "rtt_ms": 0.764978, + "rtt_ns": 1938125, + "rtt_ms": 1.938125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.156614575Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:46.494373-08:00" }, { "operation": "add_edge", - "rtt_ns": 829977, - "rtt_ms": 0.829977, + "rtt_ns": 2259584, + "rtt_ms": 2.259584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.156763504Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:46.49447-08:00" }, { "operation": "add_edge", - "rtt_ns": 743157, - "rtt_ms": 0.743157, + "rtt_ns": 2235125, + "rtt_ms": 2.235125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:48.156820364Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.494535-08:00" }, { "operation": "add_edge", - "rtt_ns": 911827, - "rtt_ms": 0.911827, + "rtt_ns": 2079250, + "rtt_ms": 2.07925, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:48.156889964Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.494549-08:00" }, { "operation": "add_edge", - "rtt_ns": 800818, - "rtt_ms": 0.800818, + "rtt_ns": 1217250, + "rtt_ms": 1.21725, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:48.156907054Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:46.494943-08:00" }, { "operation": "add_edge", - "rtt_ns": 825277, - "rtt_ms": 0.825277, + "rtt_ns": 1379334, + "rtt_ms": 1.379334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.156923314Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:46.495312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2204153, - "rtt_ms": 2.204153, + "rtt_ns": 1582500, + "rtt_ms": 1.5825, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "752", - "timestamp": "2025-11-27T01:21:48.158642108Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:46.495894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291013, - "rtt_ms": 2.291013, + "rtt_ns": 1871500, + "rtt_ms": 1.8715, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.158722038Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:46.496199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391652, - "rtt_ms": 2.391652, + "rtt_ns": 1685125, + "rtt_ms": 1.685125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:48.158740748Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:01:46.496221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870894, - "rtt_ms": 1.870894, + "rtt_ns": 1973709, + "rtt_ms": 1.973709, "checkpoint": 0, "vertex_from": "2", "vertex_to": "28", - "timestamp": "2025-11-27T01:21:48.158762858Z" + "timestamp": "2025-11-27T04:01:46.496445-08:00" }, { "operation": "add_edge", - "rtt_ns": 2403602, - "rtt_ms": 2.403602, + "rtt_ns": 2174542, + "rtt_ms": 2.174542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:48.158762968Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:01:46.496504-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159283, - "rtt_ms": 2.159283, + "rtt_ns": 2161458, + "rtt_ms": 2.161458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "433", - "timestamp": "2025-11-27T01:21:48.158775118Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:46.496507-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047453, - "rtt_ms": 2.047453, + "rtt_ns": 2216500, + "rtt_ms": 2.2165, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:48.158812437Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:46.49659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887863, - "rtt_ms": 1.887863, + "rtt_ns": 2125417, + "rtt_ms": 2.125417, "checkpoint": 0, "vertex_from": "2", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:48.158813407Z" + "timestamp": "2025-11-27T04:01:46.496676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129163, - "rtt_ms": 2.129163, + "rtt_ns": 2379833, + "rtt_ms": 2.379833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:48.158950637Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:01:46.497323-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359772, - "rtt_ms": 2.359772, + "rtt_ns": 1548584, + "rtt_ms": 1.548584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "331", - "timestamp": "2025-11-27T01:21:48.159268476Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:46.497444-08:00" }, { "operation": "add_edge", - "rtt_ns": 974437, - "rtt_ms": 0.974437, + "rtt_ns": 2217375, + "rtt_ms": 2.217375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "57", - "timestamp": "2025-11-27T01:21:48.159618465Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:46.497532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574374, - "rtt_ms": 1.574374, + "rtt_ns": 1065334, + "rtt_ms": 1.065334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.160350652Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:46.49757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226536, - "rtt_ms": 1.226536, + "rtt_ns": 1509625, + "rtt_ms": 1.509625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:48.160496232Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:46.497732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754384, - "rtt_ms": 1.754384, + "rtt_ns": 1524167, + "rtt_ms": 1.524167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "970", - "timestamp": "2025-11-27T01:21:48.160520612Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:46.49797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809204, - "rtt_ms": 1.809204, + "rtt_ns": 1452708, + "rtt_ms": 1.452708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:48.160532802Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:46.498044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771144, - "rtt_ms": 1.771144, + "rtt_ns": 1864584, + "rtt_ms": 1.864584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:48.160537772Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:01:46.498065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968454, - "rtt_ms": 1.968454, + "rtt_ns": 1671417, + "rtt_ms": 1.671417, "checkpoint": 0, "vertex_from": "2", "vertex_to": "8", - "timestamp": "2025-11-27T01:21:48.160783501Z" + "timestamp": "2025-11-27T04:01:46.498179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082734, - "rtt_ms": 2.082734, + "rtt_ns": 1535750, + "rtt_ms": 1.53575, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:48.160897021Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.498212-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347192, - "rtt_ms": 2.347192, + "rtt_ns": 1497500, + "rtt_ms": 1.4975, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:48.1610906Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:46.498942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2633971, - "rtt_ms": 2.633971, + "rtt_ns": 1368250, + "rtt_ms": 1.36825, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:48.161586428Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:01:46.499101-08:00" }, { "operation": "add_edge", - "rtt_ns": 2746451, - "rtt_ms": 2.746451, + "rtt_ns": 1159167, + "rtt_ms": 1.159167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:48.162367656Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:46.49921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099564, - "rtt_ms": 2.099564, + "rtt_ns": 1694125, + "rtt_ms": 1.694125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:48.162451346Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:46.499227-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014314, - "rtt_ms": 2.014314, + "rtt_ns": 2356917, + "rtt_ms": 2.356917, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:48.162511686Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:46.499681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632774, - "rtt_ms": 1.632774, + "rtt_ns": 1768292, + "rtt_ms": 1.768292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.162531275Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:46.499739-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028863, - "rtt_ms": 2.028863, + "rtt_ns": 1781292, + "rtt_ms": 1.781292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "12", - "timestamp": "2025-11-27T01:21:48.162564205Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.499849-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051903, - "rtt_ms": 2.051903, + "rtt_ns": 1688083, + "rtt_ms": 1.688083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.162592435Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:01:46.499868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822184, - "rtt_ms": 1.822184, + "rtt_ns": 2355792, + "rtt_ms": 2.355792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:48.162607565Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:46.499927-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1107457, - "rtt_ms": 1.107457, + "rtt_ns": 1809292, + "rtt_ms": 1.809292, "checkpoint": 0, "vertex_from": "110", - "timestamp": "2025-11-27T01:21:48.162697785Z" + "timestamp": "2025-11-27T04:01:46.500023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617945, - "rtt_ms": 1.617945, + "rtt_ns": 1626291, + "rtt_ms": 1.626291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "13", - "timestamp": "2025-11-27T01:21:48.162712295Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:46.500729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2205623, - "rtt_ms": 2.205623, + "rtt_ns": 1580750, + "rtt_ms": 1.58075, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:48.162727385Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:46.500791-08:00" }, { "operation": "add_edge", - "rtt_ns": 728758, - "rtt_ms": 0.728758, + "rtt_ns": 2071500, + "rtt_ms": 2.0715, "checkpoint": 0, "vertex_from": "2", "vertex_to": "527", - "timestamp": "2025-11-27T01:21:48.163098384Z" + "timestamp": "2025-11-27T04:01:46.501015-08:00" }, { "operation": "add_edge", - "rtt_ns": 770557, - "rtt_ms": 0.770557, + "rtt_ns": 1455042, + "rtt_ms": 1.455042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:48.163223033Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:46.501137-08:00" }, { "operation": "add_edge", - "rtt_ns": 745098, - "rtt_ms": 0.745098, + "rtt_ns": 1270625, + "rtt_ms": 1.270625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:48.163311953Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:01:46.501293-08:00" }, { "operation": "add_edge", - "rtt_ns": 850267, - "rtt_ms": 0.850267, + "rtt_ns": 1634292, + "rtt_ms": 1.634292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:48.163363313Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:46.501374-08:00" }, { - "operation": "add_edge", - "rtt_ns": 815468, - "rtt_ms": 0.815468, + "operation": "add_vertex", + "rtt_ns": 2163917, + "rtt_ms": 2.163917, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:48.163409213Z" + "vertex_from": "271", + "timestamp": "2025-11-27T04:01:46.501394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339396, - "rtt_ms": 1.339396, + "rtt_ns": 1588417, + "rtt_ms": 1.588417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:48.163948421Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:46.501457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443675, - "rtt_ms": 1.443675, + "rtt_ns": 1767875, + "rtt_ms": 1.767875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:48.16415812Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:46.501695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498745, - "rtt_ms": 1.498745, + "rtt_ns": 1861958, + "rtt_ms": 1.861958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "110", - "timestamp": "2025-11-27T01:21:48.16419722Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:46.501712-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2088314, - "rtt_ms": 2.088314, + "operation": "add_edge", + "rtt_ns": 1691250, + "rtt_ms": 1.69125, "checkpoint": 0, - "vertex_from": "271", - "timestamp": "2025-11-27T01:21:48.164624229Z" + "vertex_from": "2", + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:46.502707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998853, - "rtt_ms": 1.998853, + "rtt_ns": 1315000, + "rtt_ms": 1.315, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.164728188Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:46.503011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035353, - "rtt_ms": 2.035353, + "rtt_ns": 1325167, + "rtt_ms": 1.325167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:48.165135247Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:46.503038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996654, - "rtt_ms": 1.996654, + "rtt_ns": 2246292, + "rtt_ms": 2.246292, "checkpoint": 0, "vertex_from": "2", "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.165221397Z" + "timestamp": "2025-11-27T04:01:46.503045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966533, - "rtt_ms": 1.966533, + "rtt_ns": 1599709, + "rtt_ms": 1.599709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:48.165280076Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.503057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987513, - "rtt_ms": 1.987513, + "rtt_ns": 2329375, + "rtt_ms": 2.329375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:48.165352456Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:46.50306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456055, - "rtt_ms": 1.456055, + "rtt_ns": 2094625, + "rtt_ms": 2.094625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:48.165407476Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:46.503234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707954, - "rtt_ms": 1.707954, + "rtt_ns": 1861500, + "rtt_ms": 1.8615, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.165906774Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:46.503238-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613321, - "rtt_ms": 2.613321, + "rtt_ns": 1943292, + "rtt_ms": 1.943292, "checkpoint": 0, "vertex_from": "2", "vertex_to": "25", - "timestamp": "2025-11-27T01:21:48.166024294Z" + "timestamp": "2025-11-27T04:01:46.503238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885204, - "rtt_ms": 1.885204, + "rtt_ns": 1898167, + "rtt_ms": 1.898167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.166045544Z" + "vertex_to": "271", + "timestamp": "2025-11-27T04:01:46.503292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596304, - "rtt_ms": 1.596304, + "rtt_ns": 1278917, + "rtt_ms": 1.278917, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "271", - "timestamp": "2025-11-27T01:21:48.166220943Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:46.504319-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 743848, - "rtt_ms": 0.743848, + "operation": "add_edge", + "rtt_ns": 1277917, + "rtt_ms": 1.277917, "checkpoint": 0, - "vertex_from": "808", - "timestamp": "2025-11-27T01:21:48.166968981Z" + "vertex_from": "2", + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:46.504323-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291923, - "rtt_ms": 2.291923, + "rtt_ns": 1461375, + "rtt_ms": 1.461375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:48.167023261Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:46.504522-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054793, - "rtt_ms": 2.054793, + "rtt_ns": 1240667, + "rtt_ms": 1.240667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:48.16719121Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:46.504535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995243, - "rtt_ms": 1.995243, + "rtt_ns": 1583792, + "rtt_ms": 1.583792, "checkpoint": 0, "vertex_from": "2", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:48.16721768Z" + "timestamp": "2025-11-27T04:01:46.504596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895124, - "rtt_ms": 1.895124, + "rtt_ns": 1433416, + "rtt_ms": 1.433416, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:48.16724858Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:46.504668-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036803, - "rtt_ms": 2.036803, + "rtt_ns": 1982250, + "rtt_ms": 1.98225, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:48.167446789Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:46.50469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457905, - "rtt_ms": 1.457905, + "rtt_ns": 1468791, + "rtt_ms": 1.468791, "checkpoint": 0, "vertex_from": "2", "vertex_to": "17", - "timestamp": "2025-11-27T01:21:48.167505799Z" + "timestamp": "2025-11-27T04:01:46.504707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2264473, - "rtt_ms": 2.264473, + "rtt_ns": 1677125, + "rtt_ms": 1.677125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:48.167545899Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:46.504735-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1608865, - "rtt_ms": 1.608865, + "operation": "add_vertex", + "rtt_ns": 1500375, + "rtt_ms": 1.500375, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:48.167634929Z" + "vertex_from": "808", + "timestamp": "2025-11-27T04:01:46.504745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795374, - "rtt_ms": 1.795374, + "rtt_ns": 1039000, + "rtt_ms": 1.039, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:48.167703658Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.505775-08:00" }, { "operation": "add_edge", - "rtt_ns": 781777, - "rtt_ms": 0.781777, + "rtt_ns": 1598583, + "rtt_ms": 1.598583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:48.167751258Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:46.50629-08:00" }, { "operation": "add_edge", - "rtt_ns": 611138, - "rtt_ms": 0.611138, + "rtt_ns": 1723458, + "rtt_ms": 1.723458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "602", - "timestamp": "2025-11-27T01:21:48.167803758Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:46.506392-08:00" }, { "operation": "add_edge", - "rtt_ns": 862527, - "rtt_ms": 0.862527, + "rtt_ns": 2038667, + "rtt_ms": 2.038667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:48.167887208Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.506575-08:00" }, { "operation": "add_edge", - "rtt_ns": 778827, - "rtt_ms": 0.778827, + "rtt_ns": 1993125, + "rtt_ms": 1.993125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "570", - "timestamp": "2025-11-27T01:21:48.167998007Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:46.50659-08:00" }, { "operation": "add_edge", - "rtt_ns": 748577, - "rtt_ms": 0.748577, + "rtt_ns": 2396250, + "rtt_ms": 2.39625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "356", - "timestamp": "2025-11-27T01:21:48.167998217Z" + "timestamp": "2025-11-27T04:01:46.50692-08:00" }, { "operation": "add_edge", - "rtt_ns": 841147, - "rtt_ms": 0.841147, + "rtt_ns": 2177833, + "rtt_ms": 2.177833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.168289276Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:46.506924-08:00" }, { "operation": "add_edge", - "rtt_ns": 757687, - "rtt_ms": 0.757687, + "rtt_ns": 2227000, + "rtt_ms": 2.227, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:48.168305016Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:46.506935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2474792, - "rtt_ms": 2.474792, + "rtt_ns": 1246750, + "rtt_ms": 1.24675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:48.169982181Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:46.507023-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328473, - "rtt_ms": 2.328473, + "rtt_ns": 2717375, + "rtt_ms": 2.717375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.170033551Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:01:46.507042-08:00" }, { "operation": "add_edge", - "rtt_ns": 2482562, - "rtt_ms": 2.482562, + "rtt_ns": 2728042, + "rtt_ms": 2.728042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:48.170120011Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:01:46.507049-08:00" }, { "operation": "add_edge", - "rtt_ns": 2366342, - "rtt_ms": 2.366342, + "rtt_ns": 1313833, + "rtt_ms": 1.313833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:48.17017127Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:46.50789-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449082, - "rtt_ms": 2.449082, + "rtt_ns": 1776333, + "rtt_ms": 1.776333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.17020145Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:46.50817-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250873, - "rtt_ms": 2.250873, + "rtt_ns": 1298000, + "rtt_ms": 1.298, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:48.17025087Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.508223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2517052, - "rtt_ms": 2.517052, + "rtt_ns": 1280292, + "rtt_ms": 1.280292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:48.17040591Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:46.50833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2889731, - "rtt_ms": 2.889731, + "rtt_ns": 1842208, + "rtt_ms": 1.842208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:48.170890448Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:46.50878-08:00" }, { "operation": "add_edge", - "rtt_ns": 2585942, - "rtt_ms": 2.585942, + "rtt_ns": 2344208, + "rtt_ms": 2.344208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:48.170892088Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:46.508935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2684362, - "rtt_ms": 2.684362, + "rtt_ns": 1903542, + "rtt_ms": 1.903542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:48.170975288Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:46.508946-08:00" }, { "operation": "add_edge", - "rtt_ns": 963737, - "rtt_ms": 0.963737, + "rtt_ns": 2064417, + "rtt_ms": 2.064417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:48.170998548Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:46.508985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020347, - "rtt_ms": 1.020347, + "rtt_ns": 2710917, + "rtt_ms": 2.710917, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.171004878Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:46.509001-08:00" }, { "operation": "add_vertex", - "rtt_ns": 915707, - "rtt_ms": 0.915707, + "rtt_ns": 2133084, + "rtt_ms": 2.133084, "checkpoint": 0, "vertex_from": "748", - "timestamp": "2025-11-27T01:21:48.171039038Z" + "timestamp": "2025-11-27T04:01:46.509159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554446, - "rtt_ms": 1.554446, + "rtt_ns": 1210500, + "rtt_ms": 1.2105, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:48.171727006Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.509541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548545, - "rtt_ms": 1.548545, + "rtt_ns": 1943375, + "rtt_ms": 1.943375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:48.171751615Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:46.509834-08:00" }, { "operation": "add_edge", - "rtt_ns": 968447, - "rtt_ms": 0.968447, + "rtt_ns": 1618959, + "rtt_ms": 1.618959, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.171862375Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:46.50985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000047, - "rtt_ms": 1.000047, + "rtt_ns": 1152584, + "rtt_ms": 1.152584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:48.171892615Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:46.509934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945834, - "rtt_ms": 1.945834, + "rtt_ns": 1766500, + "rtt_ms": 1.7665, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:48.172199484Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:46.509937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821514, - "rtt_ms": 1.821514, + "rtt_ns": 1964209, + "rtt_ms": 1.964209, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "662", - "timestamp": "2025-11-27T01:21:48.172229294Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:46.510967-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1463525, - "rtt_ms": 1.463525, + "rtt_ns": 2048834, + "rtt_ms": 2.048834, "checkpoint": 0, "vertex_from": "866", - "timestamp": "2025-11-27T01:21:48.172464903Z" + "timestamp": "2025-11-27T04:01:46.510984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530055, - "rtt_ms": 1.530055, + "rtt_ns": 1512542, + "rtt_ms": 1.512542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:48.172507033Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:46.511055-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 667578, - "rtt_ms": 0.667578, + "operation": "add_edge", + "rtt_ns": 2091125, + "rtt_ms": 2.091125, "checkpoint": 0, - "vertex_from": "858", - "timestamp": "2025-11-27T01:21:48.172562133Z" + "vertex_from": "2", + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.511077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546225, - "rtt_ms": 1.546225, + "rtt_ns": 2015959, + "rtt_ms": 2.015959, "checkpoint": 0, "vertex_from": "2", "vertex_to": "748", - "timestamp": "2025-11-27T01:21:48.172585533Z" + "timestamp": "2025-11-27T04:01:46.511175-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097273, - "rtt_ms": 2.097273, + "rtt_ns": 2299584, + "rtt_ms": 2.299584, "checkpoint": 0, "vertex_from": "2", "vertex_to": "43", - "timestamp": "2025-11-27T01:21:48.173104431Z" + "timestamp": "2025-11-27T04:01:46.511247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431515, - "rtt_ms": 1.431515, + "rtt_ns": 1804334, + "rtt_ms": 1.804334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.173160411Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:46.511745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467855, - "rtt_ms": 1.467855, + "rtt_ns": 1834000, + "rtt_ms": 1.834, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:48.1733324Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:01:46.511769-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1595695, - "rtt_ms": 1.595695, + "operation": "add_vertex", + "rtt_ns": 1938000, + "rtt_ms": 1.938, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:48.17335021Z" + "vertex_from": "858", + "timestamp": "2025-11-27T04:01:46.511774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991913, - "rtt_ms": 1.991913, + "rtt_ns": 2416250, + "rtt_ms": 2.41625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "775", - "timestamp": "2025-11-27T01:21:48.174223527Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:46.512267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775284, - "rtt_ms": 1.775284, + "rtt_ns": 1427125, + "rtt_ms": 1.427125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "858", - "timestamp": "2025-11-27T01:21:48.174337737Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:46.512395-08:00" }, { "operation": "add_edge", - "rtt_ns": 2162823, - "rtt_ms": 2.162823, + "rtt_ns": 1548583, + "rtt_ms": 1.548583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:48.174363867Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:01:46.512533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995983, - "rtt_ms": 1.995983, + "rtt_ns": 1892708, + "rtt_ms": 1.892708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "866", - "timestamp": "2025-11-27T01:21:48.174461216Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:46.512948-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058463, - "rtt_ms": 2.058463, + "rtt_ns": 1717041, + "rtt_ms": 1.717041, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:48.174567306Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.512965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032003, - "rtt_ms": 2.032003, + "rtt_ns": 1476625, + "rtt_ms": 1.476625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:48.174619286Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:01:46.513246-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1407715, - "rtt_ms": 1.407715, + "rtt_ns": 2082833, + "rtt_ms": 2.082833, "checkpoint": 0, "vertex_from": "302", - "timestamp": "2025-11-27T01:21:48.174748705Z" + "timestamp": "2025-11-27T04:01:46.513261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597164, - "rtt_ms": 1.597164, + "rtt_ns": 2218417, + "rtt_ms": 2.218417, "checkpoint": 0, "vertex_from": "2", "vertex_to": "325", - "timestamp": "2025-11-27T01:21:48.174759505Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1435175, - "rtt_ms": 1.435175, - "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.174787195Z" + "timestamp": "2025-11-27T04:01:46.513296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750714, - "rtt_ms": 1.750714, + "rtt_ns": 1602416, + "rtt_ms": 1.602416, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:48.174857505Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1324146, - "rtt_ms": 1.324146, - "checkpoint": 0, - "vertex_from": "758", - "timestamp": "2025-11-27T01:21:48.175551093Z" + "vertex_to": "858", + "timestamp": "2025-11-27T04:01:46.513377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699604, - "rtt_ms": 1.699604, + "rtt_ns": 1131666, + "rtt_ms": 1.131666, "checkpoint": 0, "vertex_from": "2", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:48.176066791Z" + "timestamp": "2025-11-27T04:01:46.513399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776944, - "rtt_ms": 1.776944, + "rtt_ns": 1019167, + "rtt_ms": 1.019167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "101", - "timestamp": "2025-11-27T01:21:48.176116321Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:01:46.513553-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1555775, - "rtt_ms": 1.555775, + "operation": "add_vertex", + "rtt_ns": 1884834, + "rtt_ms": 1.884834, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "880", - "timestamp": "2025-11-27T01:21:48.176126061Z" + "vertex_from": "758", + "timestamp": "2025-11-27T04:01:46.513632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507525, - "rtt_ms": 1.507525, + "rtt_ns": 1527958, + "rtt_ms": 1.527958, "checkpoint": 0, "vertex_from": "2", "vertex_to": "230", - "timestamp": "2025-11-27T01:21:48.176128781Z" + "timestamp": "2025-11-27T04:01:46.514477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668895, - "rtt_ms": 1.668895, + "rtt_ns": 1909334, + "rtt_ms": 1.909334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "628", - "timestamp": "2025-11-27T01:21:48.176132141Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1408536, - "rtt_ms": 1.408536, - "checkpoint": 0, - "vertex_from": "665", - "timestamp": "2025-11-27T01:21:48.176170451Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:46.515156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372066, - "rtt_ms": 1.372066, + "rtt_ns": 1618042, + "rtt_ms": 1.618042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "6", - "timestamp": "2025-11-27T01:21:48.176231481Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:46.515172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514745, - "rtt_ms": 1.514745, + "rtt_ns": 1554250, + "rtt_ms": 1.55425, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "302", - "timestamp": "2025-11-27T01:21:48.17626398Z" + "vertex_to": "758", + "timestamp": "2025-11-27T04:01:46.515186-08:00" }, { "operation": "add_edge", - "rtt_ns": 2435372, - "rtt_ms": 2.435372, + "rtt_ns": 1821250, + "rtt_ms": 1.82125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:48.177223997Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:46.515199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2530422, - "rtt_ms": 2.530422, + "rtt_ns": 1913459, + "rtt_ms": 1.913459, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "758", - "timestamp": "2025-11-27T01:21:48.178082465Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:01:46.515211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969793, - "rtt_ms": 1.969793, + "rtt_ns": 1821541, + "rtt_ms": 1.821541, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "665", - "timestamp": "2025-11-27T01:21:48.178140554Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:46.515222-08:00" }, { "operation": "add_edge", - "rtt_ns": 2031203, - "rtt_ms": 2.031203, + "rtt_ns": 2830209, + "rtt_ms": 2.830209, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:48.178159744Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:01:46.515226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125083, - "rtt_ms": 2.125083, + "rtt_ns": 1979833, + "rtt_ms": 1.979833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:48.178194204Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:01:46.515241-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2637631, - "rtt_ms": 2.637631, + "operation": "add_vertex", + "rtt_ns": 2426583, + "rtt_ms": 2.426583, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:48.178871642Z" + "vertex_from": "665", + "timestamp": "2025-11-27T04:01:46.515393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2790671, - "rtt_ms": 2.790671, + "rtt_ns": 1122333, + "rtt_ms": 1.122333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:48.178925772Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:46.5156-08:00" }, { "operation": "add_edge", - "rtt_ns": 2688012, - "rtt_ms": 2.688012, + "rtt_ns": 1180375, + "rtt_ms": 1.180375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:48.178952972Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:46.516408-08:00" }, { "operation": "add_edge", - "rtt_ns": 2827241, - "rtt_ms": 2.827241, + "rtt_ns": 1237834, + "rtt_ms": 1.237834, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:48.178958522Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:46.516425-08:00" }, { "operation": "add_edge", - "rtt_ns": 2965530, - "rtt_ms": 2.96553, + "rtt_ns": 1420709, + "rtt_ms": 1.420709, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:48.179083061Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:46.516594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888324, - "rtt_ms": 1.888324, + "rtt_ns": 1508208, + "rtt_ms": 1.508208, "checkpoint": 0, "vertex_from": "2", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:48.179115121Z" + "timestamp": "2025-11-27T04:01:46.516708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631085, - "rtt_ms": 1.631085, + "rtt_ns": 1574666, + "rtt_ms": 1.574666, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:48.179792319Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:46.516817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754294, - "rtt_ms": 1.754294, + "rtt_ns": 1679083, + "rtt_ms": 1.679083, "checkpoint": 0, "vertex_from": "2", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:48.179839049Z" + "timestamp": "2025-11-27T04:01:46.516891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699195, - "rtt_ms": 1.699195, + "rtt_ns": 1396958, + "rtt_ms": 1.396958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "488", - "timestamp": "2025-11-27T01:21:48.179841399Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:46.516998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363976, - "rtt_ms": 1.363976, + "rtt_ns": 1899667, + "rtt_ms": 1.899667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:48.180237138Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:46.517057-08:00" }, { "operation": "add_edge", - "rtt_ns": 2769981, - "rtt_ms": 2.769981, + "rtt_ns": 2012458, + "rtt_ms": 2.012458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:48.180967725Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:46.517406-08:00" }, { "operation": "add_edge", - "rtt_ns": 2711091, - "rtt_ms": 2.711091, + "rtt_ns": 2357625, + "rtt_ms": 2.357625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.181666523Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:46.517582-08:00" }, { "operation": "add_edge", - "rtt_ns": 2825011, - "rtt_ms": 2.825011, + "rtt_ns": 1613042, + "rtt_ms": 1.613042, "checkpoint": 0, "vertex_from": "2", "vertex_to": "848", - "timestamp": "2025-11-27T01:21:48.181752493Z" + "timestamp": "2025-11-27T04:01:46.518022-08:00" }, { "operation": "add_edge", - "rtt_ns": 2805441, - "rtt_ms": 2.805441, + "rtt_ns": 1444958, + "rtt_ms": 1.444958, "checkpoint": 0, "vertex_from": "2", "vertex_to": "76", - "timestamp": "2025-11-27T01:21:48.181766343Z" + "timestamp": "2025-11-27T04:01:46.51804-08:00" }, { "operation": "add_edge", - "rtt_ns": 2757031, - "rtt_ms": 2.757031, + "rtt_ns": 1244292, + "rtt_ms": 1.244292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.181841412Z" + "vertex_to": "327", + "timestamp": "2025-11-27T04:01:46.518136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2757351, - "rtt_ms": 2.757351, + "rtt_ns": 1721500, + "rtt_ms": 1.7215, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:48.181874042Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.518147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134053, - "rtt_ms": 2.134053, + "rtt_ns": 1347125, + "rtt_ms": 1.347125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "817", - "timestamp": "2025-11-27T01:21:48.181977062Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:46.518166-08:00" }, { "operation": "add_edge", - "rtt_ns": 2189423, - "rtt_ms": 2.189423, + "rtt_ns": 1145250, + "rtt_ms": 1.14525, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "327", - "timestamp": "2025-11-27T01:21:48.181983432Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:01:46.518203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187033, - "rtt_ms": 2.187033, + "rtt_ns": 1525458, + "rtt_ms": 1.525458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:48.182027712Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:46.518234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842934, - "rtt_ms": 1.842934, + "rtt_ns": 1615334, + "rtt_ms": 1.615334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:48.182081872Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:46.518614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653805, - "rtt_ms": 1.653805, + "rtt_ns": 1048083, + "rtt_ms": 1.048083, "checkpoint": 0, "vertex_from": "2", "vertex_to": "178", - "timestamp": "2025-11-27T01:21:48.18262281Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1121866, - "rtt_ms": 1.121866, - "checkpoint": 0, - "vertex_from": "777", - "timestamp": "2025-11-27T01:21:48.182790249Z" + "timestamp": "2025-11-27T04:01:46.518631-08:00" }, { "operation": "add_edge", - "rtt_ns": 947837, - "rtt_ms": 0.947837, + "rtt_ns": 1309666, + "rtt_ms": 1.309666, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.182790289Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:46.518716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078536, - "rtt_ms": 1.078536, + "rtt_ns": 938250, + "rtt_ms": 0.93825, "checkpoint": 0, "vertex_from": "2", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.182832379Z" + "timestamp": "2025-11-27T04:01:46.518978-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1534234, - "rtt_ms": 1.534234, + "operation": "add_vertex", + "rtt_ns": 1210417, + "rtt_ms": 1.210417, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "809", - "timestamp": "2025-11-27T01:21:48.183301677Z" + "vertex_from": "777", + "timestamp": "2025-11-27T04:01:46.519234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415145, - "rtt_ms": 1.415145, + "rtt_ns": 1433416, + "rtt_ms": 1.433416, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:48.183443907Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:46.5196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584055, - "rtt_ms": 1.584055, + "rtt_ns": 1443417, + "rtt_ms": 1.443417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.183459597Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:46.520059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492565, - "rtt_ms": 1.492565, + "rtt_ns": 1939500, + "rtt_ms": 1.9395, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "313", - "timestamp": "2025-11-27T01:21:48.183470657Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:01:46.520076-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1488545, - "rtt_ms": 1.488545, + "operation": "add_edge", + "rtt_ns": 2256417, + "rtt_ms": 2.256417, "checkpoint": 0, - "vertex_from": "497", - "timestamp": "2025-11-27T01:21:48.183473967Z" + "vertex_from": "2", + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.520404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479905, - "rtt_ms": 1.479905, + "rtt_ns": 2362500, + "rtt_ms": 2.3625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:48.183562777Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:01:46.520566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296445, - "rtt_ms": 1.296445, + "rtt_ns": 1949834, + "rtt_ms": 1.949834, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:48.183920935Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:46.520582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978224, - "rtt_ms": 1.978224, + "rtt_ns": 1603208, + "rtt_ms": 1.603208, "checkpoint": 0, "vertex_from": "2", "vertex_to": "420", - "timestamp": "2025-11-27T01:21:48.184770963Z" + "timestamp": "2025-11-27T04:01:46.520582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487796, - "rtt_ms": 1.487796, + "rtt_ns": 1562166, + "rtt_ms": 1.562166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:48.184790953Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:46.520796-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1329086, - "rtt_ms": 1.329086, + "rtt_ns": 2666167, + "rtt_ms": 2.666167, "checkpoint": 0, - "vertex_from": "174", - "timestamp": "2025-11-27T01:21:48.184805803Z" + "vertex_from": "497", + "timestamp": "2025-11-27T04:01:46.520902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541412, - "rtt_ms": 2.541412, + "rtt_ns": 2194791, + "rtt_ms": 2.194791, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:48.185332011Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:46.520912-08:00" }, { "operation": "add_edge", - "rtt_ns": 2707321, - "rtt_ms": 2.707321, + "rtt_ns": 1736750, + "rtt_ms": 1.73675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:48.1855416Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:46.521797-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186083, - "rtt_ms": 2.186083, + "rtt_ns": 2259667, + "rtt_ms": 2.259667, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:48.18564775Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:46.521863-08:00" }, { "operation": "add_edge", - "rtt_ns": 2304753, - "rtt_ms": 2.304753, + "rtt_ns": 1804291, + "rtt_ms": 1.804291, "checkpoint": 0, "vertex_from": "2", "vertex_to": "833", - "timestamp": "2025-11-27T01:21:48.18574991Z" + "timestamp": "2025-11-27T04:01:46.521881-08:00" }, { "operation": "add_edge", - "rtt_ns": 2380332, - "rtt_ms": 2.380332, + "rtt_ns": 1500666, + "rtt_ms": 1.500666, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "497", - "timestamp": "2025-11-27T01:21:48.185854709Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:46.521906-08:00" }, { "operation": "add_edge", - "rtt_ns": 2308662, - "rtt_ms": 2.308662, + "rtt_ns": 1338166, + "rtt_ms": 1.338166, "checkpoint": 0, "vertex_from": "2", "vertex_to": "19", - "timestamp": "2025-11-27T01:21:48.185872669Z" + "timestamp": "2025-11-27T04:01:46.521921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1952434, - "rtt_ms": 1.952434, + "rtt_ns": 1391458, + "rtt_ms": 1.391458, "checkpoint": 0, "vertex_from": "2", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:48.185874929Z" + "timestamp": "2025-11-27T04:01:46.521975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101486, - "rtt_ms": 1.101486, + "rtt_ns": 1157042, + "rtt_ms": 1.157042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "174", - "timestamp": "2025-11-27T01:21:48.185908639Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:01:46.522059-08:00" }, { - "operation": "add_edge", - "rtt_ns": 672658, - "rtt_ms": 0.672658, + "operation": "add_vertex", + "rtt_ns": 1883458, + "rtt_ms": 1.883458, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "434", - "timestamp": "2025-11-27T01:21:48.186006419Z" + "vertex_from": "174", + "timestamp": "2025-11-27T04:01:46.522451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239186, - "rtt_ms": 1.239186, + "rtt_ns": 1860541, + "rtt_ms": 1.860541, "checkpoint": 0, "vertex_from": "2", "vertex_to": "353", - "timestamp": "2025-11-27T01:21:48.186031539Z" + "timestamp": "2025-11-27T04:01:46.522773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309196, - "rtt_ms": 1.309196, + "rtt_ns": 2405584, + "rtt_ms": 2.405584, "checkpoint": 0, "vertex_from": "2", "vertex_to": "484", - "timestamp": "2025-11-27T01:21:48.186083609Z" + "timestamp": "2025-11-27T04:01:46.523202-08:00" }, { "operation": "add_edge", - "rtt_ns": 667358, - "rtt_ms": 0.667358, + "rtt_ns": 1238542, + "rtt_ms": 1.238542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.186211988Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:01:46.523214-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1434209, + "rtt_ms": 1.434209, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "434", + "timestamp": "2025-11-27T04:01:46.523234-08:00" }, { "operation": "add_edge", - "rtt_ns": 668948, - "rtt_ms": 0.668948, + "rtt_ns": 1485500, + "rtt_ms": 1.4855, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:46.523392-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1524542, + "rtt_ms": 1.524542, "checkpoint": 0, "vertex_from": "2", "vertex_to": "401", - "timestamp": "2025-11-27T01:21:48.186318638Z" + "timestamp": "2025-11-27T04:01:46.523407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422586, - "rtt_ms": 1.422586, + "rtt_ns": 1566750, + "rtt_ms": 1.56675, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "370", - "timestamp": "2025-11-27T01:21:48.187298865Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:46.523431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713624, - "rtt_ms": 1.713624, + "rtt_ns": 1522458, + "rtt_ms": 1.522458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:48.187465544Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:01:46.523582-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364663, - "rtt_ms": 2.364663, + "rtt_ns": 1696375, + "rtt_ms": 1.696375, "checkpoint": 0, "vertex_from": "2", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.188221512Z" + "timestamp": "2025-11-27T04:01:46.523618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2332042, - "rtt_ms": 2.332042, + "rtt_ns": 1805334, + "rtt_ms": 1.805334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:48.188339891Z" + "vertex_to": "174", + "timestamp": "2025-11-27T04:01:46.524257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2493192, - "rtt_ms": 2.493192, + "rtt_ns": 2171291, + "rtt_ms": 2.171291, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "309", - "timestamp": "2025-11-27T01:21:48.188367311Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:46.524945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2511682, - "rtt_ms": 2.511682, + "rtt_ns": 1970958, + "rtt_ms": 1.970958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:48.188422341Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:46.525379-08:00" }, { "operation": "add_edge", - "rtt_ns": 2840290, - "rtt_ms": 2.84029, + "rtt_ns": 2156542, + "rtt_ms": 2.156542, "checkpoint": 0, "vertex_from": "2", "vertex_to": "901", - "timestamp": "2025-11-27T01:21:48.188925579Z" + "timestamp": "2025-11-27T04:01:46.525391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585615, - "rtt_ms": 1.585615, + "rtt_ns": 2204334, + "rtt_ms": 2.204334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:48.189052439Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:46.525409-08:00" }, { "operation": "add_edge", - "rtt_ns": 857737, - "rtt_ms": 0.857737, + "rtt_ns": 1845416, + "rtt_ms": 1.845416, "checkpoint": 0, "vertex_from": "2", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:48.189080889Z" + "timestamp": "2025-11-27T04:01:46.525465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955473, - "rtt_ms": 1.955473, + "rtt_ns": 1925958, + "rtt_ms": 1.925958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:48.189256128Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:46.525509-08:00" }, { "operation": "add_edge", - "rtt_ns": 3433019, - "rtt_ms": 3.433019, + "rtt_ns": 2142083, + "rtt_ms": 2.142083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:48.189753167Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:46.525574-08:00" }, { "operation": "add_edge", - "rtt_ns": 3615818, - "rtt_ms": 3.615818, + "rtt_ns": 2208625, + "rtt_ms": 2.208625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "840", - "timestamp": "2025-11-27T01:21:48.189829456Z" + "timestamp": "2025-11-27T04:01:46.525603-08:00" }, { "operation": "add_edge", - "rtt_ns": 3843277, - "rtt_ms": 3.843277, + "rtt_ns": 2389375, + "rtt_ms": 2.389375, "checkpoint": 0, "vertex_from": "2", "vertex_to": "67", - "timestamp": "2025-11-27T01:21:48.189876036Z" + "timestamp": "2025-11-27T04:01:46.525605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679905, - "rtt_ms": 1.679905, + "rtt_ns": 1352667, + "rtt_ms": 1.352667, "checkpoint": 0, "vertex_from": "2", "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.190021666Z" + "timestamp": "2025-11-27T04:01:46.52561-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023513, - "rtt_ms": 2.023513, + "rtt_ns": 1460833, + "rtt_ms": 1.460833, "checkpoint": 0, "vertex_from": "2", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:48.190393214Z" + "timestamp": "2025-11-27T04:01:46.526407-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1454750, + "rtt_ms": 1.45475, + "checkpoint": 0, + "vertex_from": "2", + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:46.52706-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1402145, - "rtt_ms": 1.402145, + "rtt_ns": 1554583, + "rtt_ms": 1.554583, "checkpoint": 0, - "vertex_from": "767", - "timestamp": "2025-11-27T01:21:48.190486824Z" + "vertex_from": "940", + "timestamp": "2025-11-27T04:01:46.527069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489055, - "rtt_ms": 1.489055, + "rtt_ns": 1666250, + "rtt_ms": 1.66625, "checkpoint": 0, "vertex_from": "2", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:48.190543084Z" + "timestamp": "2025-11-27T04:01:46.527077-08:00" }, { "operation": "add_edge", - "rtt_ns": 866567, - "rtt_ms": 0.866567, + "rtt_ns": 1477208, + "rtt_ms": 1.477208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:48.190621364Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1363276, - "rtt_ms": 1.363276, - "checkpoint": 0, - "vertex_from": "940", - "timestamp": "2025-11-27T01:21:48.190623344Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:46.527082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696315, - "rtt_ms": 1.696315, + "rtt_ns": 1521583, + "rtt_ms": 1.521583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:48.190624714Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:46.527097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445475, - "rtt_ms": 1.445475, + "rtt_ns": 1711292, + "rtt_ms": 1.711292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:48.191277291Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:46.527103-08:00" }, { "operation": "add_edge", - "rtt_ns": 2875850, - "rtt_ms": 2.87585, + "rtt_ns": 1801208, + "rtt_ms": 1.801208, "checkpoint": 0, "vertex_from": "2", "vertex_to": "100", - "timestamp": "2025-11-27T01:21:48.191300061Z" + "timestamp": "2025-11-27T04:01:46.527183-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1481815, - "rtt_ms": 1.481815, + "operation": "add_vertex", + "rtt_ns": 2005125, + "rtt_ms": 2.005125, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:48.191359171Z" + "vertex_from": "767", + "timestamp": "2025-11-27T04:01:46.527472-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1781494, - "rtt_ms": 1.781494, + "rtt_ns": 2282750, + "rtt_ms": 2.28275, "checkpoint": 0, "vertex_from": "171", - "timestamp": "2025-11-27T01:21:48.19180773Z" + "timestamp": "2025-11-27T04:01:46.527894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944414, - "rtt_ms": 1.944414, + "rtt_ns": 1503000, + "rtt_ms": 1.503, "checkpoint": 0, "vertex_from": "2", "vertex_to": "99", - "timestamp": "2025-11-27T01:21:48.192339328Z" + "timestamp": "2025-11-27T04:01:46.527911-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114993, - "rtt_ms": 2.114993, + "rtt_ns": 1376708, + "rtt_ms": 1.376708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "767", - "timestamp": "2025-11-27T01:21:48.192602307Z" + "vertex_to": "349", + "timestamp": "2025-11-27T04:01:46.528439-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209642, - "rtt_ms": 2.209642, + "rtt_ns": 1596125, + "rtt_ms": 1.596125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "940", - "timestamp": "2025-11-27T01:21:48.192833356Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:46.528694-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265092, - "rtt_ms": 2.265092, + "rtt_ns": 1679375, + "rtt_ms": 1.679375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "361", - "timestamp": "2025-11-27T01:21:48.192891916Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:01:46.528749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705975, - "rtt_ms": 1.705975, + "rtt_ns": 1746458, + "rtt_ms": 1.746458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:48.193008456Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:46.528829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464452, - "rtt_ms": 2.464452, + "rtt_ns": 1769708, + "rtt_ms": 1.769708, "checkpoint": 0, "vertex_from": "2", "vertex_to": "108", - "timestamp": "2025-11-27T01:21:48.193087526Z" + "timestamp": "2025-11-27T04:01:46.528848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813494, - "rtt_ms": 1.813494, + "rtt_ns": 1665500, + "rtt_ms": 1.6655, "checkpoint": 0, "vertex_from": "2", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:48.193174445Z" + "timestamp": "2025-11-27T04:01:46.528856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974564, - "rtt_ms": 1.974564, + "rtt_ns": 1771542, + "rtt_ms": 1.771542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.193253365Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 814688, - "rtt_ms": 0.814688, - "checkpoint": 0, - "vertex_from": "573", - "timestamp": "2025-11-27T01:21:48.193709764Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:46.528876-08:00" }, { "operation": "add_edge", - "rtt_ns": 3265469, - "rtt_ms": 3.265469, + "rtt_ns": 1483958, + "rtt_ms": 1.483958, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "349", - "timestamp": "2025-11-27T01:21:48.193817943Z" + "vertex_to": "767", + "timestamp": "2025-11-27T04:01:46.528957-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010963, - "rtt_ms": 2.010963, + "rtt_ns": 2309209, + "rtt_ms": 2.309209, "checkpoint": 0, "vertex_from": "2", "vertex_to": "171", - "timestamp": "2025-11-27T01:21:48.193819633Z" + "timestamp": "2025-11-27T04:01:46.530204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573695, - "rtt_ms": 1.573695, + "rtt_ns": 2385417, + "rtt_ms": 2.385417, "checkpoint": 0, "vertex_from": "2", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:48.193914643Z" + "timestamp": "2025-11-27T04:01:46.530297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373656, - "rtt_ms": 1.373656, + "rtt_ns": 1433750, + "rtt_ms": 1.43375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:48.193979033Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:46.530311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842805, - "rtt_ms": 1.842805, + "rtt_ns": 1924083, + "rtt_ms": 1.924083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.194677901Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:46.530364-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1641333, + "rtt_ms": 1.641333, + "checkpoint": 0, + "vertex_from": "573", + "timestamp": "2025-11-27T04:01:46.530391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577895, - "rtt_ms": 1.577895, + "rtt_ns": 1706333, + "rtt_ms": 1.706333, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.19483307Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:46.530402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773974, - "rtt_ms": 1.773974, + "rtt_ns": 1532125, + "rtt_ms": 1.532125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:48.19486275Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:46.53049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757085, - "rtt_ms": 1.757085, + "rtt_ns": 1659875, + "rtt_ms": 1.659875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:48.19493278Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:46.53049-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037303, - "rtt_ms": 2.037303, + "rtt_ns": 1702584, + "rtt_ms": 1.702584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:48.195048119Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:46.530559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320826, - "rtt_ms": 1.320826, + "rtt_ns": 1729083, + "rtt_ms": 1.729083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:48.195141039Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:46.530578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464175, - "rtt_ms": 1.464175, + "rtt_ns": 1281375, + "rtt_ms": 1.281375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "573", - "timestamp": "2025-11-27T01:21:48.195174569Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:46.531647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292476, - "rtt_ms": 1.292476, + "rtt_ns": 1720375, + "rtt_ms": 1.720375, "checkpoint": 0, "vertex_from": "2", "vertex_to": "821", - "timestamp": "2025-11-27T01:21:48.195209179Z" + "timestamp": "2025-11-27T04:01:46.532018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238996, - "rtt_ms": 1.238996, + "rtt_ns": 1817333, + "rtt_ms": 1.817333, "checkpoint": 0, "vertex_from": "2", "vertex_to": "402", - "timestamp": "2025-11-27T01:21:48.195219999Z" + "timestamp": "2025-11-27T04:01:46.532129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430856, - "rtt_ms": 1.430856, + "rtt_ns": 1991792, + "rtt_ms": 1.991792, "checkpoint": 0, "vertex_from": "2", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:48.195252759Z" + "timestamp": "2025-11-27T04:01:46.532196-08:00" }, { "operation": "add_edge", - "rtt_ns": 696287, - "rtt_ms": 0.696287, + "rtt_ns": 2023459, + "rtt_ms": 2.023459, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:48.195376638Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:01:46.532415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345676, - "rtt_ms": 1.345676, + "rtt_ns": 1952167, + "rtt_ms": 1.952167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.196180516Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:46.532445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412595, - "rtt_ms": 1.412595, + "rtt_ns": 2227834, + "rtt_ms": 2.227834, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:48.196277045Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:46.532632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496505, - "rtt_ms": 1.496505, + "rtt_ns": 2054334, + "rtt_ms": 2.054334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:48.196430825Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:01:46.532633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382846, - "rtt_ms": 1.382846, + "rtt_ns": 2147167, + "rtt_ms": 2.147167, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:48.196432285Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:46.532637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938994, - "rtt_ms": 1.938994, + "rtt_ns": 2092625, + "rtt_ms": 2.092625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:48.197115063Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:46.532653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846854, - "rtt_ms": 1.846854, + "rtt_ns": 1299584, + "rtt_ms": 1.299584, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:48.197225012Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:46.533497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112893, - "rtt_ms": 2.112893, + "rtt_ns": 2272541, + "rtt_ms": 2.272541, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "124", - "timestamp": "2025-11-27T01:21:48.197255292Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:46.533922-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043963, - "rtt_ms": 2.043963, + "rtt_ns": 1811292, + "rtt_ms": 1.811292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:48.197255552Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:46.533941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2493022, - "rtt_ms": 2.493022, + "rtt_ns": 2206000, + "rtt_ms": 2.206, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:48.197714651Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:46.534651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507081, - "rtt_ms": 2.507081, + "rtt_ns": 2252208, + "rtt_ms": 2.252208, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:48.19776153Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:46.534668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762454, - "rtt_ms": 1.762454, + "rtt_ns": 2053042, + "rtt_ms": 2.053042, "checkpoint": 0, "vertex_from": "2", "vertex_to": "929", - "timestamp": "2025-11-27T01:21:48.198040919Z" + "timestamp": "2025-11-27T04:01:46.534686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894663, - "rtt_ms": 1.894663, + "rtt_ns": 2698833, + "rtt_ms": 2.698833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:48.198077039Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:46.534718-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1686934, - "rtt_ms": 1.686934, + "operation": "add_vertex", + "rtt_ns": 2288542, + "rtt_ms": 2.288542, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "922", - "timestamp": "2025-11-27T01:21:48.198120719Z" + "vertex_from": "399", + "timestamp": "2025-11-27T04:01:46.534943-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164973, - "rtt_ms": 2.164973, + "rtt_ns": 2317792, + "rtt_ms": 2.317792, "checkpoint": 0, "vertex_from": "2", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:48.198597118Z" + "timestamp": "2025-11-27T04:01:46.534951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607395, - "rtt_ms": 1.607395, + "rtt_ns": 2321542, + "rtt_ms": 2.321542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:48.198834077Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:01:46.53496-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1718204, - "rtt_ms": 1.718204, + "operation": "add_edge", + "rtt_ns": 1167958, + "rtt_ms": 1.167958, "checkpoint": 0, - "vertex_from": "399", - "timestamp": "2025-11-27T01:21:48.198837497Z" + "vertex_from": "2", + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:46.535887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310616, - "rtt_ms": 1.310616, + "rtt_ns": 2427625, + "rtt_ms": 2.427625, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:48.199073446Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:46.535928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492195, - "rtt_ms": 1.492195, + "rtt_ns": 1777583, + "rtt_ms": 1.777583, "checkpoint": 0, "vertex_from": "2", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:48.199208076Z" + "timestamp": "2025-11-27T04:01:46.53643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066293, - "rtt_ms": 2.066293, + "rtt_ns": 2750166, + "rtt_ms": 2.750166, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:48.199322915Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:01:46.536692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300886, - "rtt_ms": 1.300886, + "rtt_ns": 2975125, + "rtt_ms": 2.975125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:48.199343455Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:46.536899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711065, - "rtt_ms": 1.711065, + "rtt_ns": 2265250, + "rtt_ms": 2.26525, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:48.199790624Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:46.536934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563582, - "rtt_ms": 2.563582, + "rtt_ns": 1981541, + "rtt_ms": 1.981541, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "659", - "timestamp": "2025-11-27T01:21:48.199822134Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:46.536942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827524, - "rtt_ms": 1.827524, + "rtt_ns": 2332875, + "rtt_ms": 2.332875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:48.199951483Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:46.53702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640154, - "rtt_ms": 1.640154, + "rtt_ns": 2099292, + "rtt_ms": 2.099292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:48.200239302Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:46.537051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983903, - "rtt_ms": 1.983903, + "rtt_ns": 2245083, + "rtt_ms": 2.245083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:48.2008197Z" + "vertex_to": "399", + "timestamp": "2025-11-27T04:01:46.537188-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059593, - "rtt_ms": 2.059593, + "rtt_ns": 1741125, + "rtt_ms": 1.741125, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "399", - "timestamp": "2025-11-27T01:21:48.2008977Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:46.537671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582555, - "rtt_ms": 1.582555, + "rtt_ns": 1564583, + "rtt_ms": 1.564583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:48.20092824Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:46.537995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870314, - "rtt_ms": 1.870314, + "rtt_ns": 2135750, + "rtt_ms": 2.13575, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:48.20094592Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:46.538027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788454, - "rtt_ms": 1.788454, + "rtt_ns": 1178250, + "rtt_ms": 1.17825, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:48.20099771Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:46.538231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753255, - "rtt_ms": 1.753255, + "rtt_ns": 1303875, + "rtt_ms": 1.303875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:48.20107756Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:46.538249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748254, - "rtt_ms": 1.748254, + "rtt_ns": 1302292, + "rtt_ms": 1.302292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "668", - "timestamp": "2025-11-27T01:21:48.201573618Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:46.538324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838564, - "rtt_ms": 1.838564, + "rtt_ns": 1430875, + "rtt_ms": 1.430875, "checkpoint": 0, "vertex_from": "2", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:48.201634558Z" + "timestamp": "2025-11-27T04:01:46.538366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524255, - "rtt_ms": 1.524255, + "rtt_ns": 1543750, + "rtt_ms": 1.54375, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:48.201765267Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:46.538444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860054, - "rtt_ms": 1.860054, + "rtt_ns": 1768833, + "rtt_ms": 1.768833, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:48.201814077Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:46.538462-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1148583, + "rtt_ms": 1.148583, + "checkpoint": 0, + "vertex_from": "941", + "timestamp": "2025-11-27T04:01:46.539178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576365, - "rtt_ms": 1.576365, + "rtt_ns": 1386000, + "rtt_ms": 1.386, "checkpoint": 0, "vertex_from": "2", "vertex_to": "563", - "timestamp": "2025-11-27T01:21:48.202505845Z" + "timestamp": "2025-11-27T04:01:46.539383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635125, - "rtt_ms": 1.635125, + "rtt_ns": 1734167, + "rtt_ms": 1.734167, "checkpoint": 0, "vertex_from": "2", "vertex_to": "801", - "timestamp": "2025-11-27T01:21:48.202534345Z" + "timestamp": "2025-11-27T04:01:46.539406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730475, - "rtt_ms": 1.730475, + "rtt_ns": 2336000, + "rtt_ms": 2.336, "checkpoint": 0, "vertex_from": "2", "vertex_to": "153", - "timestamp": "2025-11-27T01:21:48.202552105Z" + "timestamp": "2025-11-27T04:01:46.539525-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1608205, - "rtt_ms": 1.608205, + "operation": "add_edge", + "rtt_ns": 1801750, + "rtt_ms": 1.80175, "checkpoint": 0, - "vertex_from": "941", - "timestamp": "2025-11-27T01:21:48.202559905Z" + "vertex_from": "2", + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:46.54017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564865, - "rtt_ms": 1.564865, + "rtt_ns": 1995875, + "rtt_ms": 1.995875, "checkpoint": 0, "vertex_from": "2", "vertex_to": "976", - "timestamp": "2025-11-27T01:21:48.202564325Z" + "timestamp": "2025-11-27T04:01:46.540228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780964, - "rtt_ms": 1.780964, + "rtt_ns": 1903875, + "rtt_ms": 1.903875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:48.202859644Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:46.54023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483535, - "rtt_ms": 1.483535, + "rtt_ns": 1886708, + "rtt_ms": 1.886708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:48.203058443Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:46.540332-08:00" }, { "operation": "add_vertex", - "rtt_ns": 819287, - "rtt_ms": 0.819287, + "rtt_ns": 2213334, + "rtt_ms": 2.213334, "checkpoint": 0, - "vertex_from": "938", - "timestamp": "2025-11-27T01:21:48.203387472Z" + "vertex_from": "755", + "timestamp": "2025-11-27T04:01:46.540677-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1751675, - "rtt_ms": 1.751675, + "operation": "add_edge", + "rtt_ns": 2777875, + "rtt_ms": 2.777875, "checkpoint": 0, - "vertex_from": "755", - "timestamp": "2025-11-27T01:21:48.203568202Z" + "vertex_from": "2", + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:46.541027-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103543, - "rtt_ms": 2.103543, + "rtt_ns": 1756458, + "rtt_ms": 1.756458, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:48.203740181Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:46.541141-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138284, - "rtt_ms": 2.138284, + "rtt_ns": 1698334, + "rtt_ms": 1.698334, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:48.203905591Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:46.541224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114293, - "rtt_ms": 2.114293, + "rtt_ns": 1837875, + "rtt_ms": 1.837875, "checkpoint": 0, "vertex_from": "2", "vertex_to": "905", - "timestamp": "2025-11-27T01:21:48.204651298Z" + "timestamp": "2025-11-27T04:01:46.541245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158103, - "rtt_ms": 2.158103, + "rtt_ns": 2320916, + "rtt_ms": 2.320916, "checkpoint": 0, "vertex_from": "2", "vertex_to": "941", - "timestamp": "2025-11-27T01:21:48.204718818Z" + "timestamp": "2025-11-27T04:01:46.541499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225933, - "rtt_ms": 2.225933, + "rtt_ns": 1640583, + "rtt_ms": 1.640583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:48.204733628Z" + "vertex_to": "755", + "timestamp": "2025-11-27T04:01:46.542318-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195653, - "rtt_ms": 2.195653, + "rtt_ns": 2140083, + "rtt_ms": 2.140083, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:48.204749178Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:46.542372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725195, - "rtt_ms": 1.725195, + "rtt_ns": 2119000, + "rtt_ms": 2.119, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:48.204785108Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:46.542453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956983, - "rtt_ms": 1.956983, + "rtt_ns": 2271917, + "rtt_ms": 2.271917, "checkpoint": 0, "vertex_from": "2", "vertex_to": "227", - "timestamp": "2025-11-27T01:21:48.204818457Z" + "timestamp": "2025-11-27T04:01:46.542501-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1511955, - "rtt_ms": 1.511955, + "operation": "add_vertex", + "rtt_ns": 1368708, + "rtt_ms": 1.368708, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "938", - "timestamp": "2025-11-27T01:21:48.204899797Z" + "vertex_from": "477", + "timestamp": "2025-11-27T04:01:46.542615-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1409995, - "rtt_ms": 1.409995, + "operation": "add_vertex", + "rtt_ns": 2463250, + "rtt_ms": 2.46325, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "755", - "timestamp": "2025-11-27T01:21:48.204978707Z" + "vertex_from": "938", + "timestamp": "2025-11-27T04:01:46.542635-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1241936, - "rtt_ms": 1.241936, + "operation": "add_vertex", + "rtt_ns": 1452750, + "rtt_ms": 1.45275, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:48.204983477Z" + "vertex_from": "646", + "timestamp": "2025-11-27T04:01:46.54268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465815, - "rtt_ms": 1.465815, + "rtt_ns": 1790375, + "rtt_ms": 1.790375, "checkpoint": 0, "vertex_from": "2", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:48.205373656Z" + "timestamp": "2025-11-27T04:01:46.542819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043597, - "rtt_ms": 1.043597, + "rtt_ns": 2271000, + "rtt_ms": 2.271, "checkpoint": 0, "vertex_from": "2", "vertex_to": "541", - "timestamp": "2025-11-27T01:21:48.205696665Z" + "timestamp": "2025-11-27T04:01:46.543413-08:00" }, { "operation": "add_edge", - "rtt_ns": 951646, - "rtt_ms": 0.951646, + "rtt_ns": 1832875, + "rtt_ms": 1.832875, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "346", - "timestamp": "2025-11-27T01:21:48.205702704Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1598864, - "rtt_ms": 1.598864, - "checkpoint": 0, - "vertex_from": "646", - "timestamp": "2025-11-27T01:21:48.206322552Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:46.544336-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1566994, - "rtt_ms": 1.566994, + "rtt_ns": 2044000, + "rtt_ms": 2.044, "checkpoint": 0, "vertex_from": "373", - "timestamp": "2025-11-27T01:21:48.206355962Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1656404, - "rtt_ms": 1.656404, - "checkpoint": 0, - "vertex_from": "477", - "timestamp": "2025-11-27T01:21:48.206393612Z" + "timestamp": "2025-11-27T04:01:46.544363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508295, - "rtt_ms": 1.508295, + "rtt_ns": 3038500, + "rtt_ms": 3.0385, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:48.206493332Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1543225, - "rtt_ms": 1.543225, - "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:48.206523672Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:01:46.544539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750975, - "rtt_ms": 1.750975, + "rtt_ns": 2290708, + "rtt_ms": 2.290708, "checkpoint": 0, "vertex_from": "2", "vertex_to": "366", - "timestamp": "2025-11-27T01:21:48.206571122Z" + "timestamp": "2025-11-27T04:01:46.544663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568094, - "rtt_ms": 1.568094, + "rtt_ns": 2039292, + "rtt_ms": 2.039292, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:48.20694291Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:46.544719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2045323, - "rtt_ms": 2.045323, + "rtt_ns": 2296084, + "rtt_ms": 2.296084, "checkpoint": 0, "vertex_from": "2", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:48.20694708Z" + "timestamp": "2025-11-27T04:01:46.54475-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1244036, - "rtt_ms": 1.244036, + "operation": "add_edge", + "rtt_ns": 2176625, + "rtt_ms": 2.176625, "checkpoint": 0, - "vertex_from": "397", - "timestamp": "2025-11-27T01:21:48.20694997Z" + "vertex_from": "2", + "vertex_to": "938", + "timestamp": "2025-11-27T04:01:46.544812-08:00" }, { "operation": "add_edge", - "rtt_ns": 2220113, - "rtt_ms": 2.220113, + "rtt_ns": 2115417, + "rtt_ms": 2.115417, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:48.208543685Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:46.544935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236953, - "rtt_ms": 2.236953, + "rtt_ns": 2357583, + "rtt_ms": 2.357583, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "373", - "timestamp": "2025-11-27T01:21:48.208593555Z" + "vertex_to": "477", + "timestamp": "2025-11-27T04:01:46.544973-08:00" }, { "operation": "add_edge", - "rtt_ns": 2923170, - "rtt_ms": 2.92317, + "rtt_ns": 1751708, + "rtt_ms": 1.751708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:48.208622745Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:46.545165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2264833, - "rtt_ms": 2.264833, + "rtt_ns": 1443708, + "rtt_ms": 1.443708, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "477", - "timestamp": "2025-11-27T01:21:48.208659065Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:01:46.546195-08:00" }, { "operation": "add_edge", - "rtt_ns": 2190823, - "rtt_ms": 2.190823, + "rtt_ns": 1664000, + "rtt_ms": 1.664, "checkpoint": 0, "vertex_from": "2", "vertex_to": "301", - "timestamp": "2025-11-27T01:21:48.208686525Z" + "timestamp": "2025-11-27T04:01:46.546329-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2794181, - "rtt_ms": 2.794181, + "operation": "add_vertex", + "rtt_ns": 1788833, + "rtt_ms": 1.788833, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:48.209321323Z" + "vertex_from": "397", + "timestamp": "2025-11-27T04:01:46.54633-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2432562, - "rtt_ms": 2.432562, + "operation": "add_edge", + "rtt_ns": 1723459, + "rtt_ms": 1.723459, "checkpoint": 0, - "vertex_from": "795", - "timestamp": "2025-11-27T01:21:48.209383472Z" + "vertex_from": "2", + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:46.546444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2461402, - "rtt_ms": 2.461402, + "rtt_ns": 1637250, + "rtt_ms": 1.63725, "checkpoint": 0, "vertex_from": "2", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:48.209407282Z" + "timestamp": "2025-11-27T04:01:46.54645-08:00" }, { "operation": "add_edge", - "rtt_ns": 2848010, - "rtt_ms": 2.84801, + "rtt_ns": 2119000, + "rtt_ms": 2.119, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "229", - "timestamp": "2025-11-27T01:21:48.209422132Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:46.546457-08:00" }, { "operation": "add_edge", - "rtt_ns": 3063780, - "rtt_ms": 3.06378, + "rtt_ns": 2397792, + "rtt_ms": 2.397792, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:48.21001432Z" + "vertex_to": "373", + "timestamp": "2025-11-27T04:01:46.546761-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1515195, - "rtt_ms": 1.515195, + "rtt_ns": 1947584, + "rtt_ms": 1.947584, "checkpoint": 0, - "vertex_from": "91", - "timestamp": "2025-11-27T01:21:48.21011212Z" + "vertex_from": "398", + "timestamp": "2025-11-27T04:01:46.546923-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1608825, - "rtt_ms": 1.608825, + "rtt_ns": 2110792, + "rtt_ms": 2.110792, "checkpoint": 0, - "vertex_from": "398", - "timestamp": "2025-11-27T01:21:48.2101559Z" + "vertex_from": "795", + "timestamp": "2025-11-27T04:01:46.547047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555665, - "rtt_ms": 1.555665, + "rtt_ns": 1449291, + "rtt_ms": 1.449291, "checkpoint": 0, "vertex_from": "2", "vertex_to": "553", - "timestamp": "2025-11-27T01:21:48.21017977Z" + "timestamp": "2025-11-27T04:01:46.547646-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1735294, - "rtt_ms": 1.735294, + "rtt_ns": 1283167, + "rtt_ms": 1.283167, "checkpoint": 0, "vertex_from": "820", - "timestamp": "2025-11-27T01:21:48.210425509Z" + "timestamp": "2025-11-27T04:01:46.547728-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2607250, + "rtt_ms": 2.60725, + "checkpoint": 0, + "vertex_from": "91", + "timestamp": "2025-11-27T04:01:46.547773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793854, - "rtt_ms": 1.793854, + "rtt_ns": 1481917, + "rtt_ms": 1.481917, "checkpoint": 0, "vertex_from": "2", "vertex_to": "94", - "timestamp": "2025-11-27T01:21:48.210455679Z" + "timestamp": "2025-11-27T04:01:46.547813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230926, - "rtt_ms": 1.230926, + "rtt_ns": 1549791, + "rtt_ms": 1.549791, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:48.210657088Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:46.547881-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1266766, - "rtt_ms": 1.266766, + "rtt_ns": 1493791, + "rtt_ms": 1.493791, "checkpoint": 0, "vertex_from": "490", - "timestamp": "2025-11-27T01:21:48.210676018Z" + "timestamp": "2025-11-27T04:01:46.547955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386385, - "rtt_ms": 1.386385, + "rtt_ns": 1657000, + "rtt_ms": 1.657, "checkpoint": 0, "vertex_from": "2", "vertex_to": "836", - "timestamp": "2025-11-27T01:21:48.210709058Z" + "timestamp": "2025-11-27T04:01:46.548109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366806, - "rtt_ms": 1.366806, + "rtt_ns": 1059291, + "rtt_ms": 1.059291, + "checkpoint": 0, + "vertex_from": "3", + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.54917-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1672500, + "rtt_ms": 1.6725, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "795", - "timestamp": "2025-11-27T01:21:48.210750478Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:01:46.549401-08:00" }, { "operation": "add_edge", - "rtt_ns": 775988, - "rtt_ms": 0.775988, + "rtt_ns": 1662166, + "rtt_ms": 1.662166, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:48.210792568Z" + "vertex_from": "2", + "vertex_to": "490", + "timestamp": "2025-11-27T04:01:46.549618-08:00" }, { "operation": "add_edge", - "rtt_ns": 697728, - "rtt_ms": 0.697728, + "rtt_ns": 2770542, + "rtt_ms": 2.770542, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "91", - "timestamp": "2025-11-27T01:21:48.210810738Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:01:46.549694-08:00" }, { "operation": "add_edge", - "rtt_ns": 755438, - "rtt_ms": 0.755438, + "rtt_ns": 1887292, + "rtt_ms": 1.887292, "checkpoint": 0, "vertex_from": "3", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.210938408Z" + "timestamp": "2025-11-27T04:01:46.549701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247736, - "rtt_ms": 1.247736, + "rtt_ns": 1836000, + "rtt_ms": 1.836, "checkpoint": 0, - "vertex_from": "2", - "vertex_to": "398", - "timestamp": "2025-11-27T01:21:48.211404216Z" + "vertex_from": "3", + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:46.54972-08:00" }, { "operation": "add_edge", - "rtt_ns": 814508, - "rtt_ms": 0.814508, + "rtt_ns": 2689375, + "rtt_ms": 2.689375, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.211473866Z" + "vertex_from": "2", + "vertex_to": "795", + "timestamp": "2025-11-27T04:01:46.549737-08:00" }, { "operation": "add_edge", - "rtt_ns": 830758, - "rtt_ms": 0.830758, + "rtt_ns": 1974042, + "rtt_ms": 1.974042, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "490", - "timestamp": "2025-11-27T01:21:48.211507546Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:01:46.549748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115467, - "rtt_ms": 1.115467, + "rtt_ns": 3180750, + "rtt_ms": 3.18075, "checkpoint": 0, "vertex_from": "2", - "vertex_to": "820", - "timestamp": "2025-11-27T01:21:48.211541456Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:46.549942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198596, - "rtt_ms": 1.198596, + "rtt_ns": 2373083, + "rtt_ms": 2.373083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:48.211655765Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:46.55002-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1463045, - "rtt_ms": 1.463045, + "operation": "add_edge", + "rtt_ns": 1313500, + "rtt_ms": 1.3135, "checkpoint": 0, - "vertex_from": "617", - "timestamp": "2025-11-27T01:21:48.212258433Z" + "vertex_from": "3", + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:46.550716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671235, - "rtt_ms": 1.671235, + "rtt_ns": 982750, + "rtt_ms": 0.98275, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:48.212381703Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:46.550733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674205, - "rtt_ms": 1.674205, + "rtt_ns": 1534584, + "rtt_ms": 1.534584, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:48.212425833Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:46.55123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872213, - "rtt_ms": 1.872213, + "rtt_ns": 1210209, + "rtt_ms": 1.210209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.212812681Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:46.551231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083933, - "rtt_ms": 2.083933, + "rtt_ns": 1539000, + "rtt_ms": 1.539, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:48.212899351Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.551242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2031493, - "rtt_ms": 2.031493, + "rtt_ns": 1513000, + "rtt_ms": 1.513, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.213436809Z" + "vertex_to": "6", + "timestamp": "2025-11-27T04:01:46.551251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257312, - "rtt_ms": 2.257312, + "rtt_ns": 2139083, + "rtt_ms": 2.139083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.213766578Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:46.551311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623005, - "rtt_ms": 1.623005, + "rtt_ns": 1396583, + "rtt_ms": 1.396583, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "617", - "timestamp": "2025-11-27T01:21:48.213881988Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.55134-08:00" }, { "operation": "add_edge", - "rtt_ns": 2407752, - "rtt_ms": 2.407752, + "rtt_ns": 1876125, + "rtt_ms": 1.876125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "6", - "timestamp": "2025-11-27T01:21:48.213883518Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.551596-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2290584, + "rtt_ms": 2.290584, + "checkpoint": 0, + "vertex_from": "617", + "timestamp": "2025-11-27T04:01:46.551912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504875, - "rtt_ms": 1.504875, + "rtt_ns": 1267208, + "rtt_ms": 1.267208, "checkpoint": 0, "vertex_from": "3", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:48.213932278Z" + "timestamp": "2025-11-27T04:01:46.552-08:00" }, { "operation": "add_edge", - "rtt_ns": 2433801, - "rtt_ms": 2.433801, + "rtt_ns": 1430625, + "rtt_ms": 1.430625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.213976777Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.552147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391422, - "rtt_ms": 2.391422, + "rtt_ns": 1817833, + "rtt_ms": 1.817833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:48.214048957Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:46.553049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721524, - "rtt_ms": 1.721524, + "rtt_ns": 1808542, + "rtt_ms": 1.808542, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.214104737Z" + "vertex_to": "4", + "timestamp": "2025-11-27T04:01:46.55306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225466, - "rtt_ms": 1.225466, + "rtt_ns": 1860166, + "rtt_ms": 1.860166, "checkpoint": 0, "vertex_from": "3", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:48.214127027Z" + "timestamp": "2025-11-27T04:01:46.553093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395626, - "rtt_ms": 1.395626, + "rtt_ns": 1863000, + "rtt_ms": 1.863, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:48.214209517Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:46.553176-08:00" }, { "operation": "add_edge", - "rtt_ns": 773078, - "rtt_ms": 0.773078, + "rtt_ns": 1946125, + "rtt_ms": 1.946125, "checkpoint": 0, "vertex_from": "3", "vertex_to": "8", - "timestamp": "2025-11-27T01:21:48.214211057Z" + "timestamp": "2025-11-27T04:01:46.553189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436865, - "rtt_ms": 1.436865, + "rtt_ns": 1851083, + "rtt_ms": 1.851083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "4", - "timestamp": "2025-11-27T01:21:48.215205913Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:46.553193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781144, - "rtt_ms": 1.781144, + "rtt_ns": 1631791, + "rtt_ms": 1.631791, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.215666322Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:46.553633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757175, - "rtt_ms": 1.757175, + "rtt_ns": 1641166, + "rtt_ms": 1.641166, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:48.215735592Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.553789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838633, - "rtt_ms": 1.838633, + "rtt_ns": 2319208, + "rtt_ms": 2.319208, "checkpoint": 0, "vertex_from": "3", "vertex_to": "354", - "timestamp": "2025-11-27T01:21:48.215772541Z" + "timestamp": "2025-11-27T04:01:46.553917-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563261, - "rtt_ms": 2.563261, + "rtt_ns": 2117833, + "rtt_ms": 2.117833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:48.216446849Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:46.55403-08:00" }, { "operation": "add_edge", - "rtt_ns": 2437282, - "rtt_ms": 2.437282, + "rtt_ns": 1650416, + "rtt_ms": 1.650416, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:48.216566269Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.554845-08:00" }, { "operation": "add_edge", - "rtt_ns": 2549652, - "rtt_ms": 2.549652, + "rtt_ns": 1286667, + "rtt_ms": 1.286667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:48.216600099Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:46.554921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2389932, - "rtt_ms": 2.389932, + "rtt_ns": 1943125, + "rtt_ms": 1.943125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:48.216602929Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:46.555004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392652, - "rtt_ms": 2.392652, + "rtt_ns": 2008459, + "rtt_ms": 2.008459, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "9", - "timestamp": "2025-11-27T01:21:48.216603669Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:46.555058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2497122, - "rtt_ms": 2.497122, + "rtt_ns": 2060042, + "rtt_ms": 2.060042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:48.216604059Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:01:46.555154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541455, - "rtt_ms": 1.541455, + "rtt_ns": 2044833, + "rtt_ms": 2.044833, "checkpoint": 0, "vertex_from": "3", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.216749748Z" + "timestamp": "2025-11-27T04:01:46.555234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267486, - "rtt_ms": 1.267486, + "rtt_ns": 2184042, + "rtt_ms": 2.184042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.216937298Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:46.555362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302165, - "rtt_ms": 1.302165, + "rtt_ns": 1643917, + "rtt_ms": 1.643917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.217039197Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.555434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712944, - "rtt_ms": 1.712944, + "rtt_ns": 1507125, + "rtt_ms": 1.507125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:48.218318673Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:46.555538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903124, - "rtt_ms": 1.903124, + "rtt_ns": 1734333, + "rtt_ms": 1.734333, "checkpoint": 0, "vertex_from": "3", "vertex_to": "12", - "timestamp": "2025-11-27T01:21:48.218352833Z" + "timestamp": "2025-11-27T04:01:46.555652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2615152, - "rtt_ms": 2.615152, + "rtt_ns": 1577958, + "rtt_ms": 1.577958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.218389503Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:46.5565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793334, - "rtt_ms": 1.793334, + "rtt_ns": 1364375, + "rtt_ms": 1.364375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.218399393Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.556519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831614, - "rtt_ms": 1.831614, + "rtt_ns": 1319542, + "rtt_ms": 1.319542, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:48.218399673Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.556554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840454, - "rtt_ms": 1.840454, + "rtt_ns": 1718375, + "rtt_ms": 1.718375, "checkpoint": 0, "vertex_from": "3", "vertex_to": "912", - "timestamp": "2025-11-27T01:21:48.218442993Z" + "timestamp": "2025-11-27T04:01:46.556565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742385, - "rtt_ms": 1.742385, + "rtt_ns": 1780333, + "rtt_ms": 1.780333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.218493893Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1894734, - "rtt_ms": 1.894734, - "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:48.218501963Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.556786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466006, - "rtt_ms": 1.466006, + "rtt_ns": 1688791, + "rtt_ms": 1.688791, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.218506513Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:46.557227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584285, - "rtt_ms": 1.584285, + "rtt_ns": 1957292, + "rtt_ms": 1.957292, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:48.218523383Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:46.557392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568095, - "rtt_ms": 1.568095, + "rtt_ns": 2367084, + "rtt_ms": 2.367084, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.219888898Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:46.557426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561705, - "rtt_ms": 1.561705, + "rtt_ns": 2094000, + "rtt_ms": 2.094, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:48.219915748Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.557456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673615, - "rtt_ms": 1.673615, + "rtt_ns": 1582583, + "rtt_ms": 1.582583, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:48.220075348Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:46.558148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753134, - "rtt_ms": 1.753134, + "rtt_ns": 2151542, + "rtt_ms": 2.151542, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:48.220154977Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.558712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778954, - "rtt_ms": 1.778954, + "rtt_ns": 1942459, + "rtt_ms": 1.942459, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.220223427Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:46.558729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2292852, - "rtt_ms": 2.292852, + "rtt_ns": 1399166, + "rtt_ms": 1.399166, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.220787965Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:46.558825-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464972, - "rtt_ms": 2.464972, + "rtt_ns": 1613833, + "rtt_ms": 1.613833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:48.220857625Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:46.558842-08:00" }, { "operation": "add_edge", - "rtt_ns": 2430892, - "rtt_ms": 2.430892, + "rtt_ns": 2337667, + "rtt_ms": 2.337667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:48.220934655Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.558858-08:00" }, { "operation": "add_edge", - "rtt_ns": 2433442, - "rtt_ms": 2.433442, + "rtt_ns": 1491667, + "rtt_ms": 1.491667, "checkpoint": 0, "vertex_from": "3", "vertex_to": "201", - "timestamp": "2025-11-27T01:21:48.220958555Z" + "timestamp": "2025-11-27T04:01:46.558885-08:00" }, { "operation": "add_edge", - "rtt_ns": 2478692, - "rtt_ms": 2.478692, + "rtt_ns": 1434875, + "rtt_ms": 1.434875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:48.220987375Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:01:46.558892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075287, - "rtt_ms": 1.075287, + "rtt_ns": 2412166, + "rtt_ms": 2.412166, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:48.221300014Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:46.558915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448235, - "rtt_ms": 1.448235, + "rtt_ns": 1055958, + "rtt_ms": 1.055958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:48.221339753Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:46.559205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332035, - "rtt_ms": 1.332035, + "rtt_ns": 3673000, + "rtt_ms": 3.673, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:48.221408783Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:46.559326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495275, - "rtt_ms": 1.495275, + "rtt_ns": 1068334, + "rtt_ms": 1.068334, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "28", - "timestamp": "2025-11-27T01:21:48.221413393Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:46.560395-08:00" }, { "operation": "add_edge", - "rtt_ns": 589978, - "rtt_ms": 0.589978, + "rtt_ns": 1558834, + "rtt_ms": 1.558834, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:48.221448513Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:46.560444-08:00" }, { "operation": "add_vertex", - "rtt_ns": 694198, - "rtt_ms": 0.694198, + "rtt_ns": 1626750, + "rtt_ms": 1.62675, "checkpoint": 0, "vertex_from": "822", - "timestamp": "2025-11-27T01:21:48.221484993Z" + "timestamp": "2025-11-27T04:01:46.560454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350836, - "rtt_ms": 1.350836, + "rtt_ns": 1874667, + "rtt_ms": 1.874667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.221508483Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:46.560733-08:00" }, { "operation": "add_edge", - "rtt_ns": 724707, - "rtt_ms": 0.724707, + "rtt_ns": 2384625, + "rtt_ms": 2.384625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:48.221684702Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.561097-08:00" }, { "operation": "add_edge", - "rtt_ns": 756737, - "rtt_ms": 0.756737, + "rtt_ns": 1917875, + "rtt_ms": 1.917875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:48.221745512Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:46.561124-08:00" }, { "operation": "add_edge", - "rtt_ns": 846917, - "rtt_ms": 0.846917, + "rtt_ns": 2436125, + "rtt_ms": 2.436125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.221784232Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:46.561166-08:00" }, { "operation": "add_edge", - "rtt_ns": 622898, - "rtt_ms": 0.622898, + "rtt_ns": 2314292, + "rtt_ms": 2.314292, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.221924152Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:46.561209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429675, - "rtt_ms": 1.429675, + "rtt_ns": 2372375, + "rtt_ms": 2.372375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.222839468Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:46.561215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841804, - "rtt_ms": 1.841804, + "rtt_ns": 2413500, + "rtt_ms": 2.4135, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:48.223257297Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.561329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963564, - "rtt_ms": 1.963564, + "rtt_ns": 1729541, + "rtt_ms": 1.729541, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:48.223304657Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:46.562126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811334, - "rtt_ms": 1.811334, + "rtt_ns": 1676166, + "rtt_ms": 1.676166, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:48.223321407Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:46.562144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891194, - "rtt_ms": 1.891194, + "rtt_ns": 1200375, + "rtt_ms": 1.200375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:48.223341047Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.562299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858974, - "rtt_ms": 1.858974, + "rtt_ns": 1934334, + "rtt_ms": 1.934334, "checkpoint": 0, "vertex_from": "3", "vertex_to": "822", - "timestamp": "2025-11-27T01:21:48.223344377Z" + "timestamp": "2025-11-27T04:01:46.562388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027804, - "rtt_ms": 2.027804, + "rtt_ns": 1400750, + "rtt_ms": 1.40075, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.223715626Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.562526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993653, - "rtt_ms": 1.993653, + "rtt_ns": 1499917, + "rtt_ms": 1.499917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.223779075Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:46.562716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886433, - "rtt_ms": 1.886433, + "rtt_ns": 1424833, + "rtt_ms": 1.424833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.223812145Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:46.562755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2090533, - "rtt_ms": 2.090533, + "rtt_ns": 1573958, + "rtt_ms": 1.573958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.223837725Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.562784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230886, - "rtt_ms": 1.230886, + "rtt_ns": 2072208, + "rtt_ms": 2.072208, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:48.224073284Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:46.562806-08:00" }, { "operation": "add_edge", - "rtt_ns": 862257, - "rtt_ms": 0.862257, + "rtt_ns": 1678541, + "rtt_ms": 1.678541, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:48.224121024Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:46.562845-08:00" }, { "operation": "add_edge", - "rtt_ns": 840397, - "rtt_ms": 0.840397, + "rtt_ns": 967875, + "rtt_ms": 0.967875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "13", - "timestamp": "2025-11-27T01:21:48.224146734Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.563267-08:00" }, { "operation": "add_edge", - "rtt_ns": 855117, - "rtt_ms": 0.855117, + "rtt_ns": 1257625, + "rtt_ms": 1.257625, "checkpoint": 0, "vertex_from": "3", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.224177994Z" + "timestamp": "2025-11-27T04:01:46.563403-08:00" }, { "operation": "add_edge", - "rtt_ns": 883987, - "rtt_ms": 0.883987, + "rtt_ns": 1296917, + "rtt_ms": 1.296917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.224226984Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:01:46.563424-08:00" }, { "operation": "add_edge", - "rtt_ns": 894757, - "rtt_ms": 0.894757, + "rtt_ns": 1165667, + "rtt_ms": 1.165667, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "29", - "timestamp": "2025-11-27T01:21:48.224240694Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:46.563694-08:00" }, { "operation": "add_edge", - "rtt_ns": 701147, - "rtt_ms": 0.701147, + "rtt_ns": 1386500, + "rtt_ms": 1.3865, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:48.224418473Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:01:46.563776-08:00" }, { - "operation": "add_edge", - "rtt_ns": 789168, - "rtt_ms": 0.789168, + "operation": "add_vertex", + "rtt_ns": 1256709, + "rtt_ms": 1.256709, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:48.224569813Z" + "vertex_from": "750", + "timestamp": "2025-11-27T04:01:46.565034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122647, - "rtt_ms": 1.122647, + "rtt_ns": 1867333, + "rtt_ms": 1.867333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:48.224935882Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:46.565292-08:00" }, { "operation": "add_vertex", - "rtt_ns": 654138, - "rtt_ms": 0.654138, + "rtt_ns": 2030834, + "rtt_ms": 2.030834, "checkpoint": 0, - "vertex_from": "750", - "timestamp": "2025-11-27T01:21:48.225076411Z" + "vertex_from": "440", + "timestamp": "2025-11-27T04:01:46.565434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496015, - "rtt_ms": 1.496015, + "rtt_ns": 2718584, + "rtt_ms": 2.718584, "checkpoint": 0, "vertex_from": "3", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.22533478Z" + "timestamp": "2025-11-27T04:01:46.565503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384306, - "rtt_ms": 1.384306, + "rtt_ns": 1830000, + "rtt_ms": 1.83, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:48.22545923Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:46.565524-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1673655, - "rtt_ms": 1.673655, + "operation": "add_edge", + "rtt_ns": 2778541, + "rtt_ms": 2.778541, "checkpoint": 0, - "vertex_from": "440", - "timestamp": "2025-11-27T01:21:48.225857059Z" + "vertex_from": "3", + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:46.565586-08:00" }, { "operation": "add_edge", - "rtt_ns": 2263773, - "rtt_ms": 2.263773, + "rtt_ns": 2891958, + "rtt_ms": 2.891958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "916", - "timestamp": "2025-11-27T01:21:48.226505647Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:46.565609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2384823, - "rtt_ms": 2.384823, + "rtt_ns": 2836917, + "rtt_ms": 2.836917, "checkpoint": 0, "vertex_from": "3", "vertex_to": "5", - "timestamp": "2025-11-27T01:21:48.226506947Z" + "timestamp": "2025-11-27T04:01:46.565683-08:00" }, { "operation": "add_edge", - "rtt_ns": 2358093, - "rtt_ms": 2.358093, + "rtt_ns": 3005583, + "rtt_ms": 3.005583, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:48.226505997Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:46.565761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312273, - "rtt_ms": 2.312273, + "rtt_ns": 2634375, + "rtt_ms": 2.634375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:48.226540657Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:46.565903-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096023, - "rtt_ms": 2.096023, + "rtt_ns": 1426417, + "rtt_ms": 1.426417, "checkpoint": 0, "vertex_from": "3", "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.226667466Z" + "timestamp": "2025-11-27T04:01:46.566719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778214, - "rtt_ms": 1.778214, + "rtt_ns": 1232084, + "rtt_ms": 1.232084, "checkpoint": 0, "vertex_from": "3", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:48.226717546Z" + "timestamp": "2025-11-27T04:01:46.566736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682375, - "rtt_ms": 1.682375, + "rtt_ns": 1718291, + "rtt_ms": 1.718291, "checkpoint": 0, "vertex_from": "3", "vertex_to": "750", - "timestamp": "2025-11-27T01:21:48.226759786Z" + "timestamp": "2025-11-27T04:01:46.566752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450276, - "rtt_ms": 1.450276, + "rtt_ns": 1225750, + "rtt_ms": 1.22575, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:48.226787596Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:46.566835-08:00" }, { "operation": "add_edge", - "rtt_ns": 854688, - "rtt_ms": 0.854688, + "rtt_ns": 1319250, + "rtt_ms": 1.31925, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "440", - "timestamp": "2025-11-27T01:21:48.227162455Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:46.566861-08:00" }, { "operation": "add_edge", - "rtt_ns": 938177, - "rtt_ms": 0.938177, + "rtt_ns": 1190458, + "rtt_ms": 1.190458, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:48.227447224Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.566953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062526, - "rtt_ms": 1.062526, + "rtt_ns": 1617042, + "rtt_ms": 1.617042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.227574413Z" + "vertex_to": "440", + "timestamp": "2025-11-27T04:01:46.567052-08:00" }, { "operation": "add_edge", - "rtt_ns": 923537, - "rtt_ms": 0.923537, + "rtt_ns": 1695750, + "rtt_ms": 1.69575, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:48.227592513Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.567282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141956, - "rtt_ms": 1.141956, + "rtt_ns": 1696792, + "rtt_ms": 1.696792, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.227650493Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:46.567383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391596, - "rtt_ms": 1.391596, + "rtt_ns": 1137209, + "rtt_ms": 1.137209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.227688283Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.568091-08:00" }, { "operation": "add_edge", - "rtt_ns": 936827, - "rtt_ms": 0.936827, + "rtt_ns": 1251333, + "rtt_ms": 1.251333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:48.227698063Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:01:46.568113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218896, - "rtt_ms": 1.218896, + "rtt_ns": 1223958, + "rtt_ms": 1.223958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.227764103Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:46.568607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151706, - "rtt_ms": 1.151706, + "rtt_ns": 1783000, + "rtt_ms": 1.783, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.227871872Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:01:46.568621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510785, - "rtt_ms": 1.510785, + "rtt_ns": 2717375, + "rtt_ms": 2.717375, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "331", - "timestamp": "2025-11-27T01:21:48.228307871Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.568622-08:00" }, { "operation": "add_edge", - "rtt_ns": 920397, - "rtt_ms": 0.920397, + "rtt_ns": 1985000, + "rtt_ms": 1.985, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.228370991Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:46.568722-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1404156, - "rtt_ms": 1.404156, + "operation": "add_edge", + "rtt_ns": 1983291, + "rtt_ms": 1.983291, "checkpoint": 0, - "vertex_from": "718", - "timestamp": "2025-11-27T01:21:48.228981539Z" + "vertex_from": "3", + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:46.568736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687825, - "rtt_ms": 1.687825, + "rtt_ns": 1456041, + "rtt_ms": 1.456041, "checkpoint": 0, "vertex_from": "3", "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.229282398Z" + "timestamp": "2025-11-27T04:01:46.568739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629975, - "rtt_ms": 1.629975, + "rtt_ns": 2128750, + "rtt_ms": 2.12875, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.229504327Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:46.568849-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1907503, - "rtt_ms": 1.907503, + "operation": "add_vertex", + "rtt_ns": 1862708, + "rtt_ms": 1.862708, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:48.229607076Z" + "vertex_from": "718", + "timestamp": "2025-11-27T04:01:46.568915-08:00" }, { "operation": "add_edge", - "rtt_ns": 3011060, - "rtt_ms": 3.01106, + "rtt_ns": 1278250, + "rtt_ms": 1.27825, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "188", - "timestamp": "2025-11-27T01:21:48.230175265Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:46.570128-08:00" }, { "operation": "add_edge", - "rtt_ns": 2673781, - "rtt_ms": 2.673781, + "rtt_ns": 1494250, + "rtt_ms": 1.49425, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:48.230364714Z" + "vertex_to": "211", + "timestamp": "2025-11-27T04:01:46.570234-08:00" }, { "operation": "add_edge", - "rtt_ns": 2729321, - "rtt_ms": 2.729321, + "rtt_ns": 1637750, + "rtt_ms": 1.63775, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:48.230381484Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:46.570361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2069223, - "rtt_ms": 2.069223, + "rtt_ns": 1878042, + "rtt_ms": 1.878042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:48.230441864Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:46.5705-08:00" }, { "operation": "add_edge", - "rtt_ns": 2721141, - "rtt_ms": 2.721141, + "rtt_ns": 1890084, + "rtt_ms": 1.890084, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "868", - "timestamp": "2025-11-27T01:21:48.230486974Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:46.570513-08:00" }, { "operation": "add_edge", - "rtt_ns": 2204632, - "rtt_ms": 2.204632, + "rtt_ns": 2401083, + "rtt_ms": 2.401083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:48.230513553Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:46.570515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781264, - "rtt_ms": 1.781264, + "rtt_ns": 2015625, + "rtt_ms": 2.015625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:48.231065942Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:46.570624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084563, - "rtt_ms": 2.084563, + "rtt_ns": 2037333, + "rtt_ms": 2.037333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "718", - "timestamp": "2025-11-27T01:21:48.231066522Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:46.570774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563265, - "rtt_ms": 1.563265, + "rtt_ns": 2669834, + "rtt_ms": 2.669834, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "211", - "timestamp": "2025-11-27T01:21:48.231070152Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:46.570764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478856, - "rtt_ms": 1.478856, + "rtt_ns": 1923917, + "rtt_ms": 1.923917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:48.231087882Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:01:46.57084-08:00" }, { "operation": "add_edge", - "rtt_ns": 955576, - "rtt_ms": 0.955576, + "rtt_ns": 1266500, + "rtt_ms": 1.2665, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "217", - "timestamp": "2025-11-27T01:21:48.231133161Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:46.571781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262775, - "rtt_ms": 1.262775, + "rtt_ns": 1200041, + "rtt_ms": 1.200041, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.231706329Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:46.571979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361665, - "rtt_ms": 1.361665, + "rtt_ns": 1860208, + "rtt_ms": 1.860208, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:48.231728719Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:01:46.571989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400625, - "rtt_ms": 1.400625, + "rtt_ns": 1639334, + "rtt_ms": 1.639334, "checkpoint": 0, "vertex_from": "3", "vertex_to": "86", - "timestamp": "2025-11-27T01:21:48.231783419Z" + "timestamp": "2025-11-27T04:01:46.572001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423285, - "rtt_ms": 1.423285, + "rtt_ns": 1233084, + "rtt_ms": 1.233084, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:48.231911429Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.572073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604665, - "rtt_ms": 1.604665, + "rtt_ns": 1870083, + "rtt_ms": 1.870083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.232119188Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:46.572105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455396, - "rtt_ms": 1.455396, + "rtt_ns": 1605125, + "rtt_ms": 1.605125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:48.233163415Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:46.572121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851114, - "rtt_ms": 1.851114, + "rtt_ns": 1498083, + "rtt_ms": 1.498083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "124", - "timestamp": "2025-11-27T01:21:48.233635253Z" + "vertex_to": "725", + "timestamp": "2025-11-27T04:01:46.572123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2586141, - "rtt_ms": 2.586141, + "rtt_ns": 1464167, + "rtt_ms": 1.464167, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:48.233654243Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:46.572242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2516322, - "rtt_ms": 2.516322, + "rtt_ns": 1774125, + "rtt_ms": 1.774125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:48.233657963Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:46.572275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2636461, - "rtt_ms": 2.636461, + "rtt_ns": 1262250, + "rtt_ms": 1.26225, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "961", - "timestamp": "2025-11-27T01:21:48.233707973Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:46.573506-08:00" }, { "operation": "add_edge", - "rtt_ns": 3011480, - "rtt_ms": 3.01148, + "rtt_ns": 1588708, + "rtt_ms": 1.588708, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "725", - "timestamp": "2025-11-27T01:21:48.234079142Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:01:46.57359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2271353, - "rtt_ms": 2.271353, + "rtt_ns": 1533500, + "rtt_ms": 1.5335, "checkpoint": 0, "vertex_from": "3", "vertex_to": "77", - "timestamp": "2025-11-27T01:21:48.234185442Z" + "timestamp": "2025-11-27T04:01:46.573608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2456593, - "rtt_ms": 2.456593, + "rtt_ns": 1505083, + "rtt_ms": 1.505083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:48.234186462Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:46.573628-08:00" }, { "operation": "add_edge", - "rtt_ns": 3119320, - "rtt_ms": 3.11932, + "rtt_ns": 1915625, + "rtt_ms": 1.915625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.234209082Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:46.573697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142206, - "rtt_ms": 1.142206, + "rtt_ns": 1607291, + "rtt_ms": 1.607291, "checkpoint": 0, "vertex_from": "3", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:48.234307511Z" + "timestamp": "2025-11-27T04:01:46.573729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2785421, - "rtt_ms": 2.785421, + "rtt_ns": 1643042, + "rtt_ms": 1.643042, "checkpoint": 0, "vertex_from": "3", "vertex_to": "398", - "timestamp": "2025-11-27T01:21:48.234906169Z" + "timestamp": "2025-11-27T04:01:46.573749-08:00" }, { "operation": "add_edge", - "rtt_ns": 2365023, - "rtt_ms": 2.365023, + "rtt_ns": 1827583, + "rtt_ms": 1.827583, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:48.236024886Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2054343, - "rtt_ms": 2.054343, - "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "818", - "timestamp": "2025-11-27T01:21:48.236135495Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:46.573819-08:00" }, { "operation": "add_edge", - "rtt_ns": 2543602, - "rtt_ms": 2.543602, + "rtt_ns": 1575250, + "rtt_ms": 1.57525, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:48.236180625Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:46.573851-08:00" }, { "operation": "add_edge", - "rtt_ns": 2580632, - "rtt_ms": 2.580632, + "rtt_ns": 1971833, + "rtt_ms": 1.971833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:48.236237135Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:46.573952-08:00" }, { "operation": "add_edge", - "rtt_ns": 2623022, - "rtt_ms": 2.623022, + "rtt_ns": 1547042, + "rtt_ms": 1.547042, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:48.236332645Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:46.575155-08:00" }, { "operation": "add_edge", - "rtt_ns": 2235702, - "rtt_ms": 2.235702, + "rtt_ns": 1359666, + "rtt_ms": 1.359666, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.236446494Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:46.575211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2774871, - "rtt_ms": 2.774871, + "rtt_ns": 1617458, + "rtt_ms": 1.617458, "checkpoint": 0, "vertex_from": "3", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:48.236963523Z" + "timestamp": "2025-11-27T04:01:46.575249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2749011, - "rtt_ms": 2.749011, + "rtt_ns": 1669291, + "rtt_ms": 1.669291, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:48.237058662Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 817817, - "rtt_ms": 0.817817, - "checkpoint": 0, - "vertex_from": "565", - "timestamp": "2025-11-27T01:21:48.237061152Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:01:46.57526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2882920, - "rtt_ms": 2.88292, + "rtt_ns": 1547916, + "rtt_ms": 1.547916, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:48.237070272Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.575298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173753, - "rtt_ms": 2.173753, + "rtt_ns": 1879833, + "rtt_ms": 1.879833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:48.237081742Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:46.575387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185016, - "rtt_ms": 1.185016, + "rtt_ns": 1702625, + "rtt_ms": 1.702625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:48.237367341Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.5754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435715, - "rtt_ms": 1.435715, + "rtt_ns": 1582500, + "rtt_ms": 1.5825, "checkpoint": 0, "vertex_from": "3", "vertex_to": "102", - "timestamp": "2025-11-27T01:21:48.237462811Z" + "timestamp": "2025-11-27T04:01:46.575402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410996, - "rtt_ms": 1.410996, + "rtt_ns": 1677916, + "rtt_ms": 1.677916, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:48.237548901Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:46.575408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268665, - "rtt_ms": 1.268665, + "rtt_ns": 1521458, + "rtt_ms": 1.521458, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:48.23760307Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:46.575474-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1208116, - "rtt_ms": 1.208116, + "operation": "add_vertex", + "rtt_ns": 1614958, + "rtt_ms": 1.614958, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "23", - "timestamp": "2025-11-27T01:21:48.23765609Z" + "vertex_from": "565", + "timestamp": "2025-11-27T04:01:46.576773-08:00" }, { "operation": "add_edge", - "rtt_ns": 647008, - "rtt_ms": 0.647008, + "rtt_ns": 1570458, + "rtt_ms": 1.570458, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "565", - "timestamp": "2025-11-27T01:21:48.23770894Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:46.576972-08:00" }, { "operation": "add_edge", - "rtt_ns": 786317, - "rtt_ms": 0.786317, + "rtt_ns": 1883291, + "rtt_ms": 1.883291, "checkpoint": 0, "vertex_from": "3", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:48.23775099Z" + "timestamp": "2025-11-27T04:01:46.577145-08:00" }, { "operation": "add_edge", - "rtt_ns": 883917, - "rtt_ms": 0.883917, + "rtt_ns": 1950625, + "rtt_ms": 1.950625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:48.237948069Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:46.577162-08:00" }, { "operation": "add_edge", - "rtt_ns": 910907, - "rtt_ms": 0.910907, + "rtt_ns": 1817833, + "rtt_ms": 1.817833, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.237982519Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:46.577226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525215, - "rtt_ms": 1.525215, + "rtt_ns": 1931500, + "rtt_ms": 1.9315, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.238608447Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.577321-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356162, - "rtt_ms": 2.356162, + "rtt_ns": 2131584, + "rtt_ms": 2.131584, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "54", - "timestamp": "2025-11-27T01:21:48.240066702Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:46.57743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542505, - "rtt_ms": 1.542505, + "rtt_ns": 1973125, + "rtt_ms": 1.973125, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:48.240153232Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.577449-08:00" }, { "operation": "add_edge", - "rtt_ns": 2566712, - "rtt_ms": 2.566712, + "rtt_ns": 2407959, + "rtt_ms": 2.407959, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:48.240170912Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:01:46.577658-08:00" }, { "operation": "add_edge", - "rtt_ns": 2810211, - "rtt_ms": 2.810211, + "rtt_ns": 2271584, + "rtt_ms": 2.271584, "checkpoint": 0, "vertex_from": "3", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.240179402Z" + "timestamp": "2025-11-27T04:01:46.577675-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203263, - "rtt_ms": 2.203263, + "rtt_ns": 976541, + "rtt_ms": 0.976541, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:48.240186912Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:46.5783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2647531, - "rtt_ms": 2.647531, + "rtt_ns": 1226625, + "rtt_ms": 1.226625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.240197832Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:01:46.578453-08:00" }, { "operation": "add_edge", - "rtt_ns": 2452592, - "rtt_ms": 2.452592, + "rtt_ns": 1319083, + "rtt_ms": 1.319083, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "39", - "timestamp": "2025-11-27T01:21:48.240205442Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:01:46.578483-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563422, - "rtt_ms": 2.563422, + "rtt_ns": 1776958, + "rtt_ms": 1.776958, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:48.240221042Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:46.578551-08:00" }, { "operation": "add_edge", - "rtt_ns": 2764891, - "rtt_ms": 2.764891, + "rtt_ns": 1517625, + "rtt_ms": 1.517625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:48.240229282Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:46.578665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379342, - "rtt_ms": 2.379342, + "rtt_ns": 1982917, + "rtt_ms": 1.982917, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:48.240328891Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:46.578956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194686, - "rtt_ms": 1.194686, + "rtt_ns": 2014500, + "rtt_ms": 2.0145, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:48.241367488Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:46.579465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252216, - "rtt_ms": 1.252216, + "rtt_ns": 2045500, + "rtt_ms": 2.0455, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:48.241432918Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:46.579478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288786, - "rtt_ms": 1.288786, + "rtt_ns": 1980500, + "rtt_ms": 1.9805, "checkpoint": 0, "vertex_from": "3", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.241443368Z" + "timestamp": "2025-11-27T04:01:46.579656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400736, - "rtt_ms": 1.400736, + "rtt_ns": 2091083, + "rtt_ms": 2.091083, "checkpoint": 0, "vertex_from": "3", "vertex_to": "140", - "timestamp": "2025-11-27T01:21:48.241469448Z" + "timestamp": "2025-11-27T04:01:46.579751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299606, - "rtt_ms": 1.299606, + "rtt_ns": 1820625, + "rtt_ms": 1.820625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:48.241499078Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:46.580486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411675, - "rtt_ms": 1.411675, + "rtt_ns": 1664750, + "rtt_ms": 1.66475, "checkpoint": 0, "vertex_from": "3", "vertex_to": "569", - "timestamp": "2025-11-27T01:21:48.241634517Z" + "timestamp": "2025-11-27T04:01:46.580624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481165, - "rtt_ms": 1.481165, + "rtt_ns": 1181542, + "rtt_ms": 1.181542, "checkpoint": 0, "vertex_from": "3", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:48.241711927Z" + "timestamp": "2025-11-27T04:01:46.580647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559585, - "rtt_ms": 1.559585, + "rtt_ns": 2263209, + "rtt_ms": 2.263209, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "930", - "timestamp": "2025-11-27T01:21:48.241748777Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:46.580717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586595, - "rtt_ms": 1.586595, + "rtt_ns": 1339292, + "rtt_ms": 1.339292, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:48.241793447Z" + "vertex_to": "484", + "timestamp": "2025-11-27T04:01:46.580818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512106, - "rtt_ms": 1.512106, + "rtt_ns": 1244459, + "rtt_ms": 1.244459, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "484", - "timestamp": "2025-11-27T01:21:48.241842627Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:01:46.580902-08:00" }, { "operation": "add_edge", - "rtt_ns": 759867, - "rtt_ms": 0.759867, + "rtt_ns": 2525792, + "rtt_ms": 2.525792, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.242604774Z" + "vertex_from": "3", + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:46.581077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416035, - "rtt_ms": 1.416035, + "rtt_ns": 2858333, + "rtt_ms": 2.858333, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:48.242861153Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:46.581161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466835, - "rtt_ms": 1.466835, + "rtt_ns": 2708709, + "rtt_ms": 2.708709, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:48.242901503Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:01:46.581192-08:00" }, { "operation": "add_edge", - "rtt_ns": 725768, - "rtt_ms": 0.725768, + "rtt_ns": 2496750, + "rtt_ms": 2.49675, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "725", - "timestamp": "2025-11-27T01:21:48.243332292Z" + "vertex_from": "3", + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:46.582249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047234, - "rtt_ms": 2.047234, + "rtt_ns": 1779250, + "rtt_ms": 1.77925, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "309", - "timestamp": "2025-11-27T01:21:48.243416702Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:46.582266-08:00" }, { "operation": "add_edge", - "rtt_ns": 613308, - "rtt_ms": 0.613308, + "rtt_ns": 1618542, + "rtt_ms": 1.618542, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:48.243475481Z" + "vertex_from": "3", + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:46.582266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2060163, - "rtt_ms": 2.060163, + "rtt_ns": 1827916, + "rtt_ms": 1.827916, "checkpoint": 0, "vertex_from": "3", "vertex_to": "82", - "timestamp": "2025-11-27T01:21:48.243531851Z" + "timestamp": "2025-11-27T04:01:46.582453-08:00" }, { "operation": "add_edge", - "rtt_ns": 2476702, - "rtt_ms": 2.476702, + "rtt_ns": 1750625, + "rtt_ms": 1.750625, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:48.2439773Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:46.582469-08:00" }, { "operation": "add_edge", - "rtt_ns": 2516222, - "rtt_ms": 2.516222, + "rtt_ns": 1820416, + "rtt_ms": 1.820416, "checkpoint": 0, "vertex_from": "3", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:48.244152789Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:46.582723-08:00" }, { "operation": "add_edge", - "rtt_ns": 2473512, - "rtt_ms": 2.473512, + "rtt_ns": 2015458, + "rtt_ms": 2.015458, "checkpoint": 0, "vertex_from": "3", "vertex_to": "212", - "timestamp": "2025-11-27T01:21:48.244186699Z" + "timestamp": "2025-11-27T04:01:46.582834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2439912, - "rtt_ms": 2.439912, + "rtt_ns": 2120833, + "rtt_ms": 2.120833, "checkpoint": 0, "vertex_from": "3", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.244234279Z" + "timestamp": "2025-11-27T04:01:46.583199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376336, - "rtt_ms": 1.376336, + "rtt_ns": 1268667, + "rtt_ms": 1.268667, "checkpoint": 0, "vertex_from": "4", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:48.244278779Z" + "timestamp": "2025-11-27T04:01:46.583535-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567482, - "rtt_ms": 2.567482, + "rtt_ns": 2475833, + "rtt_ms": 2.475833, "checkpoint": 0, - "vertex_from": "3", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:48.244317649Z" + "vertex_from": "4", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.583638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418796, - "rtt_ms": 1.418796, + "rtt_ns": 2664667, + "rtt_ms": 2.664667, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "725", + "timestamp": "2025-11-27T04:01:46.58386-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2383083, + "rtt_ms": 2.383083, "checkpoint": 0, "vertex_from": "4", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:48.244895427Z" + "timestamp": "2025-11-27T04:01:46.584853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588645, - "rtt_ms": 1.588645, + "rtt_ns": 2197125, + "rtt_ms": 2.197125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:48.244922427Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.585032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389466, - "rtt_ms": 1.389466, + "rtt_ns": 2793750, + "rtt_ms": 2.79375, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:46.585044-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2348833, + "rtt_ms": 2.348833, "checkpoint": 0, "vertex_from": "4", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:48.244922977Z" + "timestamp": "2025-11-27T04:01:46.585073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507635, - "rtt_ms": 1.507635, + "rtt_ns": 2805292, + "rtt_ms": 2.805292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:48.244925477Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:46.585074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288715, - "rtt_ms": 1.288715, + "rtt_ns": 1538750, + "rtt_ms": 1.53875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.245267705Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:46.585077-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035373, - "rtt_ms": 2.035373, + "rtt_ns": 1530125, + "rtt_ms": 1.530125, "checkpoint": 0, "vertex_from": "4", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:48.246270652Z" + "timestamp": "2025-11-27T04:01:46.58517-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321662, - "rtt_ms": 2.321662, + "rtt_ns": 2776625, + "rtt_ms": 2.776625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.246475801Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:46.58523-08:00" }, { "operation": "add_edge", - "rtt_ns": 2624541, - "rtt_ms": 2.624541, + "rtt_ns": 2043584, + "rtt_ms": 2.043584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "572", - "timestamp": "2025-11-27T01:21:48.24681246Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.585243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822334, - "rtt_ms": 1.822334, + "rtt_ns": 1186500, + "rtt_ms": 1.1865, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.247091049Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.586219-08:00" }, { "operation": "add_edge", - "rtt_ns": 2212402, - "rtt_ms": 2.212402, + "rtt_ns": 1502125, + "rtt_ms": 1.502125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "317", - "timestamp": "2025-11-27T01:21:48.247137219Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:46.586356-08:00" }, { "operation": "add_edge", - "rtt_ns": 891337, - "rtt_ms": 0.891337, + "rtt_ns": 2521708, + "rtt_ms": 2.521708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "629", - "timestamp": "2025-11-27T01:21:48.247163879Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:46.586383-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272572, - "rtt_ms": 2.272572, + "rtt_ns": 1344250, + "rtt_ms": 1.34425, "checkpoint": 0, "vertex_from": "4", "vertex_to": "28", - "timestamp": "2025-11-27T01:21:48.247197149Z" + "timestamp": "2025-11-27T04:01:46.586419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301782, - "rtt_ms": 2.301782, + "rtt_ns": 1199250, + "rtt_ms": 1.19925, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.247198959Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:46.58643-08:00" }, { "operation": "add_edge", - "rtt_ns": 2887430, - "rtt_ms": 2.88743, + "rtt_ns": 1471208, + "rtt_ms": 1.471208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:48.247206499Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.586549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2289012, - "rtt_ms": 2.289012, + "rtt_ns": 1487041, + "rtt_ms": 1.487041, "checkpoint": 0, "vertex_from": "4", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.247215979Z" + "timestamp": "2025-11-27T04:01:46.586562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2936680, - "rtt_ms": 2.93668, + "rtt_ns": 1521917, + "rtt_ms": 1.521917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:48.247216509Z" + "vertex_to": "317", + "timestamp": "2025-11-27T04:01:46.586569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180716, - "rtt_ms": 1.180716, + "rtt_ns": 1488292, + "rtt_ms": 1.488292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:48.247994666Z" + "vertex_to": "629", + "timestamp": "2025-11-27T04:01:46.58666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590365, - "rtt_ms": 1.590365, + "rtt_ns": 1596167, + "rtt_ms": 1.596167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:48.248067906Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:46.58684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095687, - "rtt_ms": 1.095687, + "rtt_ns": 1470917, + "rtt_ms": 1.470917, "checkpoint": 0, "vertex_from": "4", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.248188256Z" + "timestamp": "2025-11-27T04:01:46.587693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282936, - "rtt_ms": 1.282936, + "rtt_ns": 1904417, + "rtt_ms": 1.904417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:48.248501345Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:01:46.588324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435735, - "rtt_ms": 1.435735, + "rtt_ns": 2015875, + "rtt_ms": 2.015875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:48.248654284Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.588372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478285, - "rtt_ms": 1.478285, + "rtt_ns": 2358292, + "rtt_ms": 2.358292, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:46.588921-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2496083, + "rtt_ms": 2.496083, "checkpoint": 0, "vertex_from": "4", "vertex_to": "330", - "timestamp": "2025-11-27T01:21:48.248678604Z" + "timestamp": "2025-11-27T04:01:46.588927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558175, - "rtt_ms": 1.558175, + "rtt_ns": 1413625, + "rtt_ms": 1.413625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "8", - "timestamp": "2025-11-27T01:21:48.248757124Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:46.589108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703314, - "rtt_ms": 1.703314, + "rtt_ns": 2553917, + "rtt_ms": 2.553917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.248912483Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:46.589123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275673, - "rtt_ms": 2.275673, + "rtt_ns": 2583166, + "rtt_ms": 2.583166, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.249415512Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.589135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2437862, - "rtt_ms": 2.437862, + "rtt_ns": 2754416, + "rtt_ms": 2.754416, "checkpoint": 0, "vertex_from": "4", "vertex_to": "21", - "timestamp": "2025-11-27T01:21:48.249603261Z" + "timestamp": "2025-11-27T04:01:46.589138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735835, - "rtt_ms": 1.735835, + "rtt_ns": 2512250, + "rtt_ms": 2.51225, "checkpoint": 0, "vertex_from": "4", "vertex_to": "52", - "timestamp": "2025-11-27T01:21:48.249732581Z" + "timestamp": "2025-11-27T04:01:46.589173-08:00" }, { "operation": "add_edge", - "rtt_ns": 2310813, - "rtt_ms": 2.310813, + "rtt_ns": 2332708, + "rtt_ms": 2.332708, "checkpoint": 0, "vertex_from": "4", "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.250379919Z" + "timestamp": "2025-11-27T04:01:46.589174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2360632, - "rtt_ms": 2.360632, + "rtt_ns": 1160417, + "rtt_ms": 1.160417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:48.250550678Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:46.589533-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112973, - "rtt_ms": 2.112973, + "rtt_ns": 1633291, + "rtt_ms": 1.633291, "checkpoint": 0, "vertex_from": "4", "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.250615268Z" + "timestamp": "2025-11-27T04:01:46.589959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989944, - "rtt_ms": 1.989944, + "rtt_ns": 1641292, + "rtt_ms": 1.641292, "checkpoint": 0, "vertex_from": "4", "vertex_to": "135", - "timestamp": "2025-11-27T01:21:48.250669548Z" + "timestamp": "2025-11-27T04:01:46.590564-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052234, - "rtt_ms": 2.052234, + "rtt_ns": 1465167, + "rtt_ms": 1.465167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:48.250707388Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.590574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849525, - "rtt_ms": 1.849525, + "rtt_ns": 1403750, + "rtt_ms": 1.40375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.250763298Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.590577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035223, - "rtt_ms": 2.035223, + "rtt_ns": 1048458, + "rtt_ms": 1.048458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.250793417Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:46.590583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206426, - "rtt_ms": 1.206426, + "rtt_ns": 1459000, + "rtt_ms": 1.459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:48.250811237Z" + "vertex_to": "5", + "timestamp": "2025-11-27T04:01:46.590611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484485, - "rtt_ms": 1.484485, + "rtt_ns": 1941292, + "rtt_ms": 1.941292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.250903487Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.590869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192896, - "rtt_ms": 1.192896, + "rtt_ns": 1745750, + "rtt_ms": 1.74575, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "5", - "timestamp": "2025-11-27T01:21:48.250926687Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:46.590887-08:00" }, { "operation": "add_edge", - "rtt_ns": 658508, - "rtt_ms": 0.658508, + "rtt_ns": 2196500, + "rtt_ms": 2.1965, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.251039777Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:46.591371-08:00" }, { "operation": "add_edge", - "rtt_ns": 926177, - "rtt_ms": 0.926177, + "rtt_ns": 2431333, + "rtt_ms": 2.431333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.251596735Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:46.591556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049427, - "rtt_ms": 1.049427, + "rtt_ns": 1931375, + "rtt_ms": 1.931375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:48.251665785Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:46.591891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114877, - "rtt_ms": 1.114877, + "rtt_ns": 1019042, + "rtt_ms": 1.019042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:48.251666895Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:46.591907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004937, - "rtt_ms": 1.004937, + "rtt_ns": 1784916, + "rtt_ms": 1.784916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:48.251713425Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.592364-08:00" }, { "operation": "add_edge", - "rtt_ns": 977557, - "rtt_ms": 0.977557, + "rtt_ns": 1785250, + "rtt_ms": 1.78525, "checkpoint": 0, "vertex_from": "4", "vertex_to": "6", - "timestamp": "2025-11-27T01:21:48.251790294Z" + "timestamp": "2025-11-27T04:01:46.592369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146766, - "rtt_ms": 1.146766, + "rtt_ns": 1841542, + "rtt_ms": 1.841542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:48.251911254Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:46.592406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391296, - "rtt_ms": 1.391296, + "rtt_ns": 1589041, + "rtt_ms": 1.589041, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.252186373Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.592459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504315, - "rtt_ms": 1.504315, + "rtt_ns": 2215792, + "rtt_ms": 2.215792, "checkpoint": 0, "vertex_from": "4", "vertex_to": "82", - "timestamp": "2025-11-27T01:21:48.252409252Z" + "timestamp": "2025-11-27T04:01:46.592829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483905, - "rtt_ms": 1.483905, + "rtt_ns": 2473000, + "rtt_ms": 2.473, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.252412962Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:46.59305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395665, - "rtt_ms": 1.395665, + "rtt_ns": 1266208, + "rtt_ms": 1.266208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:48.252437062Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:46.593158-08:00" }, { "operation": "add_edge", - "rtt_ns": 2729131, - "rtt_ms": 2.729131, + "rtt_ns": 1740750, + "rtt_ms": 1.74075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "46", - "timestamp": "2025-11-27T01:21:48.254327326Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:46.593309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2729181, - "rtt_ms": 2.729181, + "rtt_ns": 1478916, + "rtt_ms": 1.478916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:48.254397046Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.593387-08:00" }, { "operation": "add_edge", - "rtt_ns": 2733511, - "rtt_ms": 2.733511, + "rtt_ns": 2519750, + "rtt_ms": 2.51975, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:48.254403166Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:01:46.593892-08:00" }, { "operation": "add_edge", - "rtt_ns": 2798260, - "rtt_ms": 2.79826, + "rtt_ns": 1584792, + "rtt_ms": 1.584792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.254513575Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:46.593949-08:00" }, { "operation": "add_edge", - "rtt_ns": 2738551, - "rtt_ms": 2.738551, + "rtt_ns": 1589459, + "rtt_ms": 1.589459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:48.254532125Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:46.593996-08:00" }, { "operation": "add_edge", - "rtt_ns": 2619751, - "rtt_ms": 2.619751, + "rtt_ns": 1004625, + "rtt_ms": 1.004625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:48.254537125Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:46.594163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2410612, - "rtt_ms": 2.410612, + "rtt_ns": 1887334, + "rtt_ms": 1.887334, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:48.254598705Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:46.594257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238253, - "rtt_ms": 2.238253, + "rtt_ns": 1858625, + "rtt_ms": 1.858625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:48.254648435Z" + "timestamp": "2025-11-27T04:01:46.594319-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209513, - "rtt_ms": 2.209513, + "rtt_ns": 1280084, + "rtt_ms": 1.280084, "checkpoint": 0, "vertex_from": "4", "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.254649355Z" + "timestamp": "2025-11-27T04:01:46.59433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243473, - "rtt_ms": 2.243473, + "rtt_ns": 1640625, + "rtt_ms": 1.640625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "898", - "timestamp": "2025-11-27T01:21:48.254657585Z" + "timestamp": "2025-11-27T04:01:46.594471-08:00" }, { "operation": "add_edge", - "rtt_ns": 829427, - "rtt_ms": 0.829427, + "rtt_ns": 962542, + "rtt_ms": 0.962542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.255227453Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:46.595221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009026, - "rtt_ms": 1.009026, + "rtt_ns": 2411416, + "rtt_ms": 2.411416, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.255337792Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:01:46.596306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532045, - "rtt_ms": 1.532045, + "rtt_ns": 2960583, + "rtt_ms": 2.960583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "849", - "timestamp": "2025-11-27T01:21:48.25604909Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:46.596348-08:00" }, { "operation": "add_vertex", - "rtt_ns": 939557, - "rtt_ms": 0.939557, + "rtt_ns": 1932292, + "rtt_ms": 1.932292, "checkpoint": 0, "vertex_from": "175", - "timestamp": "2025-11-27T01:21:48.25617229Z" + "timestamp": "2025-11-27T04:01:46.596404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667935, - "rtt_ms": 1.667935, + "rtt_ns": 2325916, + "rtt_ms": 2.325916, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:48.25620166Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:46.596657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678005, - "rtt_ms": 1.678005, + "rtt_ns": 2756917, + "rtt_ms": 2.756917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "677", - "timestamp": "2025-11-27T01:21:48.2562169Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:46.596707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622864, - "rtt_ms": 1.622864, + "rtt_ns": 2611125, + "rtt_ms": 2.611125, "checkpoint": 0, "vertex_from": "4", "vertex_to": "9", - "timestamp": "2025-11-27T01:21:48.256223369Z" + "timestamp": "2025-11-27T04:01:46.596775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630384, - "rtt_ms": 1.630384, + "rtt_ns": 2479917, + "rtt_ms": 2.479917, "checkpoint": 0, "vertex_from": "4", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.256280849Z" + "timestamp": "2025-11-27T04:01:46.5968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879844, - "rtt_ms": 1.879844, + "rtt_ns": 2845834, + "rtt_ms": 2.845834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:48.256284479Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1635544, - "rtt_ms": 1.635544, - "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:48.256285349Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:46.596843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630614, - "rtt_ms": 1.630614, + "rtt_ns": 3558125, + "rtt_ms": 3.558125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:48.256290029Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.596868-08:00" }, { "operation": "add_edge", - "rtt_ns": 2293623, - "rtt_ms": 2.293623, + "rtt_ns": 1912250, + "rtt_ms": 1.91225, "checkpoint": 0, "vertex_from": "4", "vertex_to": "10", - "timestamp": "2025-11-27T01:21:48.257632835Z" + "timestamp": "2025-11-27T04:01:46.597136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2341293, - "rtt_ms": 2.341293, + "rtt_ns": 2046000, + "rtt_ms": 2.046, "checkpoint": 0, "vertex_from": "4", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:48.258392283Z" + "timestamp": "2025-11-27T04:01:46.598353-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276783, - "rtt_ms": 2.276783, + "rtt_ns": 1753084, + "rtt_ms": 1.753084, "checkpoint": 0, "vertex_from": "4", "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.258502982Z" + "timestamp": "2025-11-27T04:01:46.598461-08:00" }, { "operation": "add_edge", - "rtt_ns": 2324462, - "rtt_ms": 2.324462, + "rtt_ns": 2146375, + "rtt_ms": 2.146375, "checkpoint": 0, "vertex_from": "4", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:48.258528192Z" + "timestamp": "2025-11-27T04:01:46.598495-08:00" }, { "operation": "add_edge", - "rtt_ns": 2357102, - "rtt_ms": 2.357102, + "rtt_ns": 1630750, + "rtt_ms": 1.63075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "175", - "timestamp": "2025-11-27T01:21:48.258529972Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:46.5985-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2262533, - "rtt_ms": 2.262533, + "operation": "add_edge", + "rtt_ns": 1725000, + "rtt_ms": 1.725, "checkpoint": 0, - "vertex_from": "435", - "timestamp": "2025-11-27T01:21:48.258551842Z" + "vertex_from": "4", + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:46.598501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362243, - "rtt_ms": 2.362243, + "rtt_ns": 1916917, + "rtt_ms": 1.916917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:48.258648172Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:46.598575-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386133, - "rtt_ms": 2.386133, + "rtt_ns": 1791541, + "rtt_ms": 1.791541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:48.258668612Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:46.598594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083807, - "rtt_ms": 1.083807, + "rtt_ns": 1532208, + "rtt_ms": 1.532208, "checkpoint": 0, "vertex_from": "4", "vertex_to": "278", - "timestamp": "2025-11-27T01:21:48.258719282Z" + "timestamp": "2025-11-27T04:01:46.598669-08:00" }, { "operation": "add_edge", - "rtt_ns": 2503732, - "rtt_ms": 2.503732, + "rtt_ns": 2291250, + "rtt_ms": 2.29125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:48.258723592Z" + "vertex_to": "175", + "timestamp": "2025-11-27T04:01:46.598696-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1872959, + "rtt_ms": 1.872959, + "checkpoint": 0, + "vertex_from": "435", + "timestamp": "2025-11-27T04:01:46.598718-08:00" }, { "operation": "add_edge", - "rtt_ns": 2438613, - "rtt_ms": 2.438613, + "rtt_ns": 1086000, + "rtt_ms": 1.086, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:48.258731222Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.599548-08:00" }, { "operation": "add_edge", - "rtt_ns": 664758, - "rtt_ms": 0.664758, + "rtt_ns": 1272458, + "rtt_ms": 1.272458, "checkpoint": 0, "vertex_from": "4", "vertex_to": "720", - "timestamp": "2025-11-27T01:21:48.259058351Z" + "timestamp": "2025-11-27T04:01:46.599627-08:00" }, { "operation": "add_edge", - "rtt_ns": 800138, - "rtt_ms": 0.800138, + "rtt_ns": 1686166, + "rtt_ms": 1.686166, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.25930489Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:46.600263-08:00" }, { "operation": "add_edge", - "rtt_ns": 782308, - "rtt_ms": 0.782308, + "rtt_ns": 1610458, + "rtt_ms": 1.610458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "435", - "timestamp": "2025-11-27T01:21:48.25933508Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:46.600282-08:00" }, { "operation": "add_edge", - "rtt_ns": 846067, - "rtt_ms": 0.846067, + "rtt_ns": 1570917, + "rtt_ms": 1.570917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:48.259376099Z" + "vertex_to": "435", + "timestamp": "2025-11-27T04:01:46.600289-08:00" }, { "operation": "add_edge", - "rtt_ns": 890737, - "rtt_ms": 0.890737, + "rtt_ns": 1796291, + "rtt_ms": 1.796291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:48.259422849Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:46.600299-08:00" }, { "operation": "add_edge", - "rtt_ns": 783867, - "rtt_ms": 0.783867, + "rtt_ns": 1751500, + "rtt_ms": 1.7515, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:48.259457219Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:46.600346-08:00" }, { "operation": "add_edge", - "rtt_ns": 756117, - "rtt_ms": 0.756117, + "rtt_ns": 1935875, + "rtt_ms": 1.935875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:48.259480979Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:46.600438-08:00" }, { "operation": "add_edge", - "rtt_ns": 786547, - "rtt_ms": 0.786547, + "rtt_ns": 1764875, + "rtt_ms": 1.764875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "50", - "timestamp": "2025-11-27T01:21:48.259519909Z" + "timestamp": "2025-11-27T04:01:46.600461-08:00" }, { "operation": "add_edge", - "rtt_ns": 904567, - "rtt_ms": 0.904567, + "rtt_ns": 2697750, + "rtt_ms": 2.69775, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:48.259553969Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:46.601194-08:00" }, { "operation": "add_edge", - "rtt_ns": 859007, - "rtt_ms": 0.859007, + "rtt_ns": 1319167, + "rtt_ms": 1.319167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:48.259579929Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.601667-08:00" }, { "operation": "add_edge", - "rtt_ns": 855217, - "rtt_ms": 0.855217, + "rtt_ns": 2162459, + "rtt_ms": 2.162459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:48.260161977Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:46.601713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288696, - "rtt_ms": 1.288696, + "rtt_ns": 1458541, + "rtt_ms": 1.458541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.260349486Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:46.601762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038726, - "rtt_ms": 1.038726, + "rtt_ns": 1550250, + "rtt_ms": 1.55025, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:48.260377316Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:46.60184-08:00" }, { "operation": "add_edge", - "rtt_ns": 979317, - "rtt_ms": 0.979317, + "rtt_ns": 2218666, + "rtt_ms": 2.218666, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:48.260404486Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:46.601853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801814, - "rtt_ms": 1.801814, + "rtt_ns": 1600416, + "rtt_ms": 1.600416, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:48.261260023Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:46.601864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894784, - "rtt_ms": 1.894784, + "rtt_ns": 1626708, + "rtt_ms": 1.626708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.261377043Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:46.601909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964393, - "rtt_ms": 1.964393, + "rtt_ns": 1615333, + "rtt_ms": 1.615333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.261487072Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.602077-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1259436, - "rtt_ms": 1.259436, + "operation": "add_edge", + "rtt_ns": 1651209, + "rtt_ms": 1.651209, "checkpoint": 0, - "vertex_from": "710", - "timestamp": "2025-11-27T01:21:48.261640972Z" + "vertex_from": "4", + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:46.60209-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1542495, - "rtt_ms": 1.542495, + "operation": "add_edge", + "rtt_ns": 1192542, + "rtt_ms": 1.192542, "checkpoint": 0, - "vertex_from": "428", - "timestamp": "2025-11-27T01:21:48.261708752Z" + "vertex_from": "4", + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:46.602389-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1385336, - "rtt_ms": 1.385336, + "rtt_ns": 1199625, + "rtt_ms": 1.199625, "checkpoint": 0, "vertex_from": "754", - "timestamp": "2025-11-27T01:21:48.261737312Z" + "timestamp": "2025-11-27T04:01:46.602914-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2362402, - "rtt_ms": 2.362402, + "operation": "add_vertex", + "rtt_ns": 1340291, + "rtt_ms": 1.340291, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.261918261Z" + "vertex_from": "428", + "timestamp": "2025-11-27T04:01:46.603011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541222, - "rtt_ms": 2.541222, + "rtt_ns": 1362542, + "rtt_ms": 1.362542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:48.261919721Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:46.603216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2389602, - "rtt_ms": 2.389602, + "rtt_ns": 1213750, + "rtt_ms": 1.21375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:48.261971351Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:46.603293-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1608705, - "rtt_ms": 1.608705, + "operation": "add_vertex", + "rtt_ns": 1686083, + "rtt_ms": 1.686083, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.262014411Z" + "vertex_from": "710", + "timestamp": "2025-11-27T04:01:46.603455-08:00" }, { "operation": "add_edge", - "rtt_ns": 768558, - "rtt_ms": 0.768558, + "rtt_ns": 1610250, + "rtt_ms": 1.61025, "checkpoint": 0, "vertex_from": "4", "vertex_to": "263", - "timestamp": "2025-11-27T01:21:48.26225686Z" + "timestamp": "2025-11-27T04:01:46.60352-08:00" }, { "operation": "add_edge", - "rtt_ns": 924377, - "rtt_ms": 0.924377, + "rtt_ns": 1517958, + "rtt_ms": 1.517958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:48.26230263Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:46.603609-08:00" }, { "operation": "add_edge", - "rtt_ns": 700398, - "rtt_ms": 0.700398, + "rtt_ns": 1853167, + "rtt_ms": 1.853167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "710", - "timestamp": "2025-11-27T01:21:48.2623419Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:46.603718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121556, - "rtt_ms": 1.121556, + "rtt_ns": 1893875, + "rtt_ms": 1.893875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:48.262383599Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:46.603735-08:00" }, { "operation": "add_edge", - "rtt_ns": 793347, - "rtt_ms": 0.793347, + "rtt_ns": 1565291, + "rtt_ms": 1.565291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "428", - "timestamp": "2025-11-27T01:21:48.262502679Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:01:46.60448-08:00" }, { "operation": "add_edge", - "rtt_ns": 781377, - "rtt_ms": 0.781377, + "rtt_ns": 2595667, + "rtt_ms": 2.595667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "754", - "timestamp": "2025-11-27T01:21:48.262519179Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:46.604987-08:00" }, { "operation": "add_vertex", - "rtt_ns": 634578, - "rtt_ms": 0.634578, + "rtt_ns": 1811541, + "rtt_ms": 1.811541, "checkpoint": 0, "vertex_from": "185", - "timestamp": "2025-11-27T01:21:48.262654699Z" + "timestamp": "2025-11-27T04:01:46.605029-08:00" }, { "operation": "add_edge", - "rtt_ns": 823217, - "rtt_ms": 0.823217, + "rtt_ns": 1691833, + "rtt_ms": 1.691833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:48.262743458Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:01:46.605147-08:00" }, { "operation": "add_edge", - "rtt_ns": 772267, - "rtt_ms": 0.772267, + "rtt_ns": 1643709, + "rtt_ms": 1.643709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.262746398Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:46.605165-08:00" }, { "operation": "add_edge", - "rtt_ns": 829347, - "rtt_ms": 0.829347, + "rtt_ns": 2266834, + "rtt_ms": 2.266834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.262751288Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:01:46.605278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116116, - "rtt_ms": 1.116116, + "rtt_ns": 2007708, + "rtt_ms": 2.007708, "checkpoint": 0, "vertex_from": "4", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:48.263375046Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 685038, - "rtt_ms": 0.685038, - "checkpoint": 0, - "vertex_from": "467", - "timestamp": "2025-11-27T01:21:48.263438976Z" + "timestamp": "2025-11-27T04:01:46.605301-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 735938, - "rtt_ms": 0.735938, + "operation": "add_edge", + "rtt_ns": 1697167, + "rtt_ms": 1.697167, "checkpoint": 0, - "vertex_from": "438", - "timestamp": "2025-11-27T01:21:48.263482976Z" + "vertex_from": "4", + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:46.605307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496165, - "rtt_ms": 1.496165, + "rtt_ns": 1737000, + "rtt_ms": 1.737, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:48.263799915Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:46.605472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579335, - "rtt_ms": 1.579335, + "rtt_ns": 1786250, + "rtt_ms": 1.78625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "20", - "timestamp": "2025-11-27T01:21:48.263964494Z" + "timestamp": "2025-11-27T04:01:46.605505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312782, - "rtt_ms": 2.312782, + "rtt_ns": 730959, + "rtt_ms": 0.730959, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:48.264655962Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:46.605879-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196623, - "rtt_ms": 2.196623, + "rtt_ns": 1765541, + "rtt_ms": 1.765541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:48.264700662Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:46.606247-08:00" }, { "operation": "add_edge", - "rtt_ns": 2085963, - "rtt_ms": 2.085963, + "rtt_ns": 1674334, + "rtt_ms": 1.674334, "checkpoint": 0, "vertex_from": "4", "vertex_to": "185", - "timestamp": "2025-11-27T01:21:48.264741292Z" + "timestamp": "2025-11-27T04:01:46.606704-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2265363, - "rtt_ms": 2.265363, + "operation": "add_vertex", + "rtt_ns": 1763542, + "rtt_ms": 1.763542, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:48.264786412Z" + "vertex_from": "438", + "timestamp": "2025-11-27T04:01:46.606751-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104683, - "rtt_ms": 2.104683, + "rtt_ns": 1508416, + "rtt_ms": 1.508416, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.264853201Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:46.606787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499135, - "rtt_ms": 1.499135, + "rtt_ns": 1674333, + "rtt_ms": 1.674333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:48.264878381Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:46.606984-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1468835, - "rtt_ms": 1.468835, + "operation": "add_vertex", + "rtt_ns": 2590333, + "rtt_ms": 2.590333, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "438", - "timestamp": "2025-11-27T01:21:48.264952731Z" + "vertex_from": "467", + "timestamp": "2025-11-27T04:01:46.607756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539035, - "rtt_ms": 1.539035, + "rtt_ns": 2549083, + "rtt_ms": 2.549083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "467", - "timestamp": "2025-11-27T01:21:48.264978481Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:46.608022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083807, - "rtt_ms": 1.083807, + "rtt_ns": 1272042, + "rtt_ms": 1.272042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:48.265049981Z" + "vertex_to": "438", + "timestamp": "2025-11-27T04:01:46.608024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282416, - "rtt_ms": 1.282416, + "rtt_ns": 2727708, + "rtt_ms": 2.727708, "checkpoint": 0, "vertex_from": "4", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:48.265083961Z" + "timestamp": "2025-11-27T04:01:46.60803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104367, - "rtt_ms": 1.104367, + "rtt_ns": 2533292, + "rtt_ms": 2.533292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:48.265763349Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:46.608039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007487, - "rtt_ms": 1.007487, + "rtt_ns": 2727750, + "rtt_ms": 2.72775, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.265887158Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:46.608608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130086, - "rtt_ms": 1.130086, + "rtt_ns": 2368833, + "rtt_ms": 2.368833, "checkpoint": 0, "vertex_from": "4", "vertex_to": "928", - "timestamp": "2025-11-27T01:21:48.265919308Z" + "timestamp": "2025-11-27T04:01:46.608619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223146, - "rtt_ms": 1.223146, + "rtt_ns": 1851333, + "rtt_ms": 1.851333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:48.265925508Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.608838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185896, - "rtt_ms": 1.185896, + "rtt_ns": 2074125, + "rtt_ms": 2.074125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:48.265929668Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.608863-08:00" }, { "operation": "add_edge", - "rtt_ns": 987157, - "rtt_ms": 0.987157, + "rtt_ns": 2184709, + "rtt_ms": 2.184709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.265941948Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:46.60889-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1228476, - "rtt_ms": 1.228476, + "operation": "add_vertex", + "rtt_ns": 1493625, + "rtt_ms": 1.493625, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:48.266083527Z" + "vertex_from": "968", + "timestamp": "2025-11-27T04:01:46.609542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567055, - "rtt_ms": 1.567055, + "rtt_ns": 1634500, + "rtt_ms": 1.6345, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "57", - "timestamp": "2025-11-27T01:21:48.266618696Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:46.609658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639215, - "rtt_ms": 1.639215, + "rtt_ns": 2323291, + "rtt_ms": 2.323291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.266619976Z" + "vertex_to": "467", + "timestamp": "2025-11-27T04:01:46.61008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591275, - "rtt_ms": 1.591275, + "rtt_ns": 2082292, + "rtt_ms": 2.082292, "checkpoint": 0, "vertex_from": "4", "vertex_to": "77", - "timestamp": "2025-11-27T01:21:48.266678566Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1420026, - "rtt_ms": 1.420026, - "checkpoint": 0, - "vertex_from": "968", - "timestamp": "2025-11-27T01:21:48.267189184Z" + "timestamp": "2025-11-27T04:01:46.610113-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1331586, - "rtt_ms": 1.331586, + "rtt_ns": 1616208, + "rtt_ms": 1.616208, "checkpoint": 0, "vertex_from": "904", - "timestamp": "2025-11-27T01:21:48.267220994Z" + "timestamp": "2025-11-27T04:01:46.610226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089163, - "rtt_ms": 2.089163, + "rtt_ns": 1618834, + "rtt_ms": 1.618834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:48.268017241Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.610238-08:00" }, { "operation": "add_edge", - "rtt_ns": 2575542, - "rtt_ms": 2.575542, + "rtt_ns": 2341291, + "rtt_ms": 2.341291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.2684962Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:01:46.610366-08:00" }, { "operation": "add_edge", - "rtt_ns": 2649671, - "rtt_ms": 2.649671, + "rtt_ns": 1716417, + "rtt_ms": 1.716417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "825", - "timestamp": "2025-11-27T01:21:48.268595049Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:46.611376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943583, - "rtt_ms": 1.943583, + "rtt_ns": 2516291, + "rtt_ms": 2.516291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:48.268624349Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:01:46.611408-08:00" }, { "operation": "add_edge", - "rtt_ns": 2743101, - "rtt_ms": 2.743101, + "rtt_ns": 2550334, + "rtt_ms": 2.550334, "checkpoint": 0, "vertex_from": "4", "vertex_to": "172", - "timestamp": "2025-11-27T01:21:48.268675429Z" + "timestamp": "2025-11-27T04:01:46.611414-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119653, - "rtt_ms": 2.119653, + "rtt_ns": 1884583, + "rtt_ms": 1.884583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "675", - "timestamp": "2025-11-27T01:21:48.268741429Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:01:46.611427-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239712, - "rtt_ms": 2.239712, + "rtt_ns": 2604333, + "rtt_ms": 2.604333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:48.268860308Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:46.611445-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208553, - "rtt_ms": 2.208553, + "rtt_ns": 2678625, + "rtt_ms": 2.678625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:48.269429867Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:46.612792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496315, - "rtt_ms": 1.496315, + "rtt_ns": 2431333, + "rtt_ms": 2.431333, "checkpoint": 0, "vertex_from": "4", "vertex_to": "210", - "timestamp": "2025-11-27T01:21:48.269515026Z" + "timestamp": "2025-11-27T04:01:46.612798-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331872, - "rtt_ms": 2.331872, + "rtt_ns": 2588959, + "rtt_ms": 2.588959, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "968", - "timestamp": "2025-11-27T01:21:48.269521516Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:46.612828-08:00" }, { "operation": "add_edge", - "rtt_ns": 3528569, - "rtt_ms": 3.528569, + "rtt_ns": 1581583, + "rtt_ms": 1.581583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:48.269615386Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:46.612992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155656, - "rtt_ms": 1.155656, + "rtt_ns": 2778209, + "rtt_ms": 2.778209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:48.269652976Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:46.613005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470435, - "rtt_ms": 1.470435, + "rtt_ns": 3019583, + "rtt_ms": 3.019583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:48.270067084Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:46.6131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567235, - "rtt_ms": 1.567235, + "rtt_ns": 1965625, + "rtt_ms": 1.965625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:48.270194444Z" + "timestamp": "2025-11-27T04:01:46.613382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700294, - "rtt_ms": 1.700294, + "rtt_ns": 1993166, + "rtt_ms": 1.993166, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:48.270443923Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:46.613422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606485, - "rtt_ms": 1.606485, + "rtt_ns": 2118750, + "rtt_ms": 2.11875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "12", - "timestamp": "2025-11-27T01:21:48.270468273Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:46.613497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822464, - "rtt_ms": 1.822464, + "rtt_ns": 1211208, + "rtt_ms": 1.211208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:48.270500743Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1161206, - "rtt_ms": 1.161206, - "checkpoint": 0, - "vertex_from": "873", - "timestamp": "2025-11-27T01:21:48.270781572Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:01:46.614005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392496, - "rtt_ms": 1.392496, + "rtt_ns": 1225667, + "rtt_ms": 1.225667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:48.270916582Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:46.614025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418316, - "rtt_ms": 1.418316, + "rtt_ns": 1332542, + "rtt_ms": 1.332542, "checkpoint": 0, "vertex_from": "4", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.270935872Z" + "timestamp": "2025-11-27T04:01:46.614162-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1294000, + "rtt_ms": 1.294, + "checkpoint": 0, + "vertex_from": "873", + "timestamp": "2025-11-27T04:01:46.6143-08:00" }, { "operation": "add_edge", - "rtt_ns": 923827, - "rtt_ms": 0.923827, + "rtt_ns": 1215542, + "rtt_ms": 1.215542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:48.270992701Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:46.614316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446935, - "rtt_ms": 1.446935, + "rtt_ns": 1109625, + "rtt_ms": 1.109625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:48.271101171Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:46.614492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698234, - "rtt_ms": 1.698234, + "rtt_ns": 1517000, + "rtt_ms": 1.517, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:48.271130491Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:46.614511-08:00" }, { "operation": "add_edge", - "rtt_ns": 959057, - "rtt_ms": 0.959057, + "rtt_ns": 1101167, + "rtt_ms": 1.101167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:48.271154861Z" + "timestamp": "2025-11-27T04:01:46.614528-08:00" }, { "operation": "add_edge", - "rtt_ns": 817467, - "rtt_ms": 0.817467, + "rtt_ns": 1093208, + "rtt_ms": 1.093208, "checkpoint": 0, "vertex_from": "4", "vertex_to": "26", - "timestamp": "2025-11-27T01:21:48.27126323Z" + "timestamp": "2025-11-27T04:01:46.614591-08:00" }, { "operation": "add_edge", - "rtt_ns": 833587, - "rtt_ms": 0.833587, + "rtt_ns": 3500458, + "rtt_ms": 3.500458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:48.27130375Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:46.614946-08:00" }, { "operation": "add_edge", - "rtt_ns": 806677, - "rtt_ms": 0.806677, + "rtt_ns": 1105708, + "rtt_ms": 1.105708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "60", - "timestamp": "2025-11-27T01:21:48.2713093Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:46.615423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397155, - "rtt_ms": 1.397155, + "rtt_ns": 1606167, + "rtt_ms": 1.606167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "873", - "timestamp": "2025-11-27T01:21:48.272179477Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:01:46.615632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978004, - "rtt_ms": 1.978004, + "rtt_ns": 1652167, + "rtt_ms": 1.652167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:48.272915685Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:46.615658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869884, - "rtt_ms": 1.869884, + "rtt_ns": 1641458, + "rtt_ms": 1.641458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:48.273001685Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:46.616135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145533, - "rtt_ms": 2.145533, + "rtt_ns": 1942167, + "rtt_ms": 1.942167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:48.273064635Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:01:46.616454-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011473, - "rtt_ms": 2.011473, + "rtt_ns": 2415833, + "rtt_ms": 2.415833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "809", - "timestamp": "2025-11-27T01:21:48.273114194Z" + "vertex_to": "873", + "timestamp": "2025-11-27T04:01:46.616716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875484, - "rtt_ms": 1.875484, + "rtt_ns": 2684833, + "rtt_ms": 2.684833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:48.273185944Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:46.616848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973124, - "rtt_ms": 1.973124, + "rtt_ns": 2556208, + "rtt_ms": 2.556208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:48.273238064Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:46.617151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283273, - "rtt_ms": 2.283273, + "rtt_ns": 2281583, + "rtt_ms": 2.281583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:48.273277464Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:46.61723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013657, - "rtt_ms": 1.013657, + "rtt_ns": 2941292, + "rtt_ms": 2.941292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:48.273930742Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:46.61747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2647962, - "rtt_ms": 2.647962, + "rtt_ns": 1144167, + "rtt_ms": 1.144167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:48.273952842Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:46.617861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2803801, - "rtt_ms": 2.803801, + "rtt_ns": 2455083, + "rtt_ms": 2.455083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.273959822Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:46.617879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047076, - "rtt_ms": 1.047076, + "rtt_ns": 1781292, + "rtt_ms": 1.781292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:48.274049861Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:46.617917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383335, - "rtt_ms": 1.383335, + "rtt_ns": 2336125, + "rtt_ms": 2.336125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:48.27444922Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:46.617969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269163, - "rtt_ms": 2.269163, + "rtt_ns": 2328167, + "rtt_ms": 2.328167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:48.27445079Z" + "timestamp": "2025-11-27T04:01:46.617987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376896, - "rtt_ms": 1.376896, + "rtt_ns": 1279833, + "rtt_ms": 1.279833, "checkpoint": 0, "vertex_from": "4", "vertex_to": "676", - "timestamp": "2025-11-27T01:21:48.27449264Z" + "timestamp": "2025-11-27T04:01:46.618128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380636, - "rtt_ms": 1.380636, + "rtt_ns": 1750375, + "rtt_ms": 1.750375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:48.2745681Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.618205-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1720614, - "rtt_ms": 1.720614, + "operation": "add_vertex", + "rtt_ns": 1172041, + "rtt_ms": 1.172041, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:48.274999558Z" + "vertex_from": "835", + "timestamp": "2025-11-27T04:01:46.619037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787934, - "rtt_ms": 1.787934, + "rtt_ns": 1405375, + "rtt_ms": 1.405375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:48.275027418Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:46.619374-08:00" }, { "operation": "add_edge", - "rtt_ns": 680078, - "rtt_ms": 0.680078, + "rtt_ns": 2185459, + "rtt_ms": 2.185459, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "316", - "timestamp": "2025-11-27T01:21:48.275132888Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:46.619418-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2085763, - "rtt_ms": 2.085763, + "operation": "add_edge", + "rtt_ns": 2429125, + "rtt_ms": 2.429125, "checkpoint": 0, - "vertex_from": "749", - "timestamp": "2025-11-27T01:21:48.276042415Z" + "vertex_from": "4", + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:46.619581-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2779831, - "rtt_ms": 2.779831, + "operation": "add_edge", + "rtt_ns": 1855917, + "rtt_ms": 1.855917, "checkpoint": 0, - "vertex_from": "835", - "timestamp": "2025-11-27T01:21:48.276714373Z" + "vertex_from": "4", + "vertex_to": "107", + "timestamp": "2025-11-27T04:01:46.619774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2734722, - "rtt_ms": 2.734722, + "rtt_ns": 2429084, + "rtt_ms": 2.429084, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:48.276787473Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:46.6199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2876550, - "rtt_ms": 2.87655, + "rtt_ns": 1783709, + "rtt_ms": 1.783709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "107", - "timestamp": "2025-11-27T01:21:48.276838862Z" + "vertex_to": "316", + "timestamp": "2025-11-27T04:01:46.619913-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2508902, - "rtt_ms": 2.508902, + "operation": "add_vertex", + "rtt_ns": 2063625, + "rtt_ms": 2.063625, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:48.277003062Z" + "vertex_from": "749", + "timestamp": "2025-11-27T04:01:46.619945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449402, - "rtt_ms": 2.449402, + "rtt_ns": 1749042, + "rtt_ms": 1.749042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "361", - "timestamp": "2025-11-27T01:21:48.277018552Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:46.619955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079544, - "rtt_ms": 2.079544, + "rtt_ns": 2048250, + "rtt_ms": 2.04825, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:48.277107862Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:46.620036-08:00" }, { "operation": "add_edge", - "rtt_ns": 2715011, - "rtt_ms": 2.715011, + "rtt_ns": 1121209, + "rtt_ms": 1.121209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:48.277166191Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:01:46.620159-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047153, - "rtt_ms": 2.047153, + "rtt_ns": 1082708, + "rtt_ms": 1.082708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:48.277181591Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:46.620459-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203763, - "rtt_ms": 2.203763, + "rtt_ns": 1282375, + "rtt_ms": 1.282375, "checkpoint": 0, "vertex_from": "4", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:48.277204331Z" + "timestamp": "2025-11-27T04:01:46.620701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262976, - "rtt_ms": 1.262976, + "rtt_ns": 1411125, + "rtt_ms": 1.411125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "749", - "timestamp": "2025-11-27T01:21:48.277305971Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:46.621186-08:00" }, { "operation": "add_edge", - "rtt_ns": 749407, - "rtt_ms": 0.749407, + "rtt_ns": 1640625, + "rtt_ms": 1.640625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:48.27753865Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:46.621222-08:00" }, { "operation": "add_edge", - "rtt_ns": 841767, - "rtt_ms": 0.841767, + "rtt_ns": 1612500, + "rtt_ms": 1.6125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "835", - "timestamp": "2025-11-27T01:21:48.27755642Z" + "vertex_to": "749", + "timestamp": "2025-11-27T04:01:46.621558-08:00" }, { "operation": "add_edge", - "rtt_ns": 706027, - "rtt_ms": 0.706027, + "rtt_ns": 1148375, + "rtt_ms": 1.148375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:48.277725699Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.621608-08:00" }, { "operation": "add_edge", - "rtt_ns": 947157, - "rtt_ms": 0.947157, + "rtt_ns": 1716958, + "rtt_ms": 1.716958, "checkpoint": 0, "vertex_from": "4", "vertex_to": "18", - "timestamp": "2025-11-27T01:21:48.277786809Z" + "timestamp": "2025-11-27T04:01:46.621631-08:00" }, { "operation": "add_edge", - "rtt_ns": 899207, - "rtt_ms": 0.899207, + "rtt_ns": 2584750, + "rtt_ms": 2.58475, "checkpoint": 0, "vertex_from": "4", "vertex_to": "329", - "timestamp": "2025-11-27T01:21:48.277903469Z" + "timestamp": "2025-11-27T04:01:46.62254-08:00" }, { "operation": "add_edge", - "rtt_ns": 774368, - "rtt_ms": 0.774368, + "rtt_ns": 2598042, + "rtt_ms": 2.598042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.277942229Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:46.622635-08:00" }, { "operation": "add_edge", - "rtt_ns": 845777, - "rtt_ms": 0.845777, + "rtt_ns": 2752167, + "rtt_ms": 2.752167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "7", - "timestamp": "2025-11-27T01:21:48.277955109Z" + "timestamp": "2025-11-27T04:01:46.622912-08:00" }, { "operation": "add_edge", - "rtt_ns": 882407, - "rtt_ms": 0.882407, + "rtt_ns": 3113541, + "rtt_ms": 3.113541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "419", - "timestamp": "2025-11-27T01:21:48.278065168Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 676497, - "rtt_ms": 0.676497, - "checkpoint": 0, - "vertex_from": "363", - "timestamp": "2025-11-27T01:21:48.278634946Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:46.623014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353845, - "rtt_ms": 1.353845, + "rtt_ns": 1822167, + "rtt_ms": 1.822167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:48.278663036Z" + "timestamp": "2025-11-27T04:01:46.623045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538005, - "rtt_ms": 1.538005, + "rtt_ns": 1741542, + "rtt_ms": 1.741542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:48.278744036Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:46.623373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536415, - "rtt_ms": 1.536415, + "rtt_ns": 1828083, + "rtt_ms": 1.828083, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:48.279094435Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:46.623389-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066833, - "rtt_ms": 2.066833, + "rtt_ns": 2292375, + "rtt_ms": 2.292375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:48.279606933Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:46.623479-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091543, - "rtt_ms": 2.091543, + "rtt_ns": 2836208, + "rtt_ms": 2.836208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:48.279819192Z" + "vertex_to": "419", + "timestamp": "2025-11-27T04:01:46.623538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992043, - "rtt_ms": 1.992043, + "rtt_ns": 1160541, + "rtt_ms": 1.160541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:48.279896722Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:46.623702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2406262, - "rtt_ms": 2.406262, + "rtt_ns": 2108292, + "rtt_ms": 2.108292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:48.28047263Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:46.623718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829444, - "rtt_ms": 1.829444, + "rtt_ns": 1176125, + "rtt_ms": 1.176125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:48.28049446Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:46.623812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864554, - "rtt_ms": 1.864554, + "rtt_ns": 1141625, + "rtt_ms": 1.141625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.2806095Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:46.624055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2825070, - "rtt_ms": 2.82507, + "rtt_ns": 2148625, + "rtt_ms": 2.148625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.280768489Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:46.625197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177566, - "rtt_ms": 1.177566, + "rtt_ns": 1668416, + "rtt_ms": 1.668416, "checkpoint": 0, "vertex_from": "4", "vertex_to": "465", - "timestamp": "2025-11-27T01:21:48.280785399Z" + "timestamp": "2025-11-27T04:01:46.625208-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3044190, - "rtt_ms": 3.04419, + "operation": "add_vertex", + "rtt_ns": 1513625, + "rtt_ms": 1.513625, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "665", - "timestamp": "2025-11-27T01:21:48.280832089Z" + "vertex_from": "611", + "timestamp": "2025-11-27T04:01:46.62522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753584, - "rtt_ms": 1.753584, + "rtt_ns": 1450958, + "rtt_ms": 1.450958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:48.280849499Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:46.625264-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2765381, - "rtt_ms": 2.765381, + "operation": "add_vertex", + "rtt_ns": 1563458, + "rtt_ms": 1.563458, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "363", - "timestamp": "2025-11-27T01:21:48.281401077Z" + "vertex_from": "682", + "timestamp": "2025-11-27T04:01:46.625282-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1801335, - "rtt_ms": 1.801335, + "rtt_ns": 2283916, + "rtt_ms": 2.283916, "checkpoint": 0, - "vertex_from": "611", - "timestamp": "2025-11-27T01:21:48.281622377Z" + "vertex_from": "363", + "timestamp": "2025-11-27T04:01:46.625299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166167, - "rtt_ms": 1.166167, + "rtt_ns": 2245042, + "rtt_ms": 2.245042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:48.281662757Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:46.625619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418736, - "rtt_ms": 1.418736, + "rtt_ns": 2154583, + "rtt_ms": 2.154583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:48.281896926Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2013154, - "rtt_ms": 2.013154, - "checkpoint": 0, - "vertex_from": "682", - "timestamp": "2025-11-27T01:21:48.281913666Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:46.625635-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 741108, - "rtt_ms": 0.741108, + "operation": "add_edge", + "rtt_ns": 2405333, + "rtt_ms": 2.405333, "checkpoint": 0, - "vertex_from": "918", - "timestamp": "2025-11-27T01:21:48.282144265Z" + "vertex_from": "4", + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.625795-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1403046, - "rtt_ms": 1.403046, + "operation": "add_edge", + "rtt_ns": 1778833, + "rtt_ms": 1.778833, "checkpoint": 0, - "vertex_from": "244", - "timestamp": "2025-11-27T01:21:48.282173555Z" + "vertex_from": "4", + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:46.625835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615695, - "rtt_ms": 1.615695, + "rtt_ns": 1684708, + "rtt_ms": 1.684708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:48.282227015Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:01:46.626905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402796, - "rtt_ms": 1.402796, + "rtt_ns": 1291958, + "rtt_ms": 1.291958, "checkpoint": 0, "vertex_from": "4", "vertex_to": "285", - "timestamp": "2025-11-27T01:21:48.282253805Z" + "timestamp": "2025-11-27T04:01:46.626927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441726, - "rtt_ms": 1.441726, + "rtt_ns": 1716959, + "rtt_ms": 1.716959, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:48.282275345Z" + "vertex_to": "363", + "timestamp": "2025-11-27T04:01:46.627016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550395, - "rtt_ms": 1.550395, + "rtt_ns": 1586833, + "rtt_ms": 1.586833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:48.282337054Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:46.627207-08:00" }, { "operation": "add_edge", - "rtt_ns": 803137, - "rtt_ms": 0.803137, + "rtt_ns": 1977833, + "rtt_ms": 1.977833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "611", - "timestamp": "2025-11-27T01:21:48.282425884Z" + "vertex_to": "682", + "timestamp": "2025-11-27T04:01:46.627262-08:00" }, { "operation": "add_edge", - "rtt_ns": 802497, - "rtt_ms": 0.802497, + "rtt_ns": 1438583, + "rtt_ms": 1.438583, "checkpoint": 0, "vertex_from": "4", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.282466424Z" + "timestamp": "2025-11-27T04:01:46.627275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299376, - "rtt_ms": 1.299376, + "rtt_ns": 2027625, + "rtt_ms": 2.027625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:48.283197552Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:46.627294-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1499083, + "rtt_ms": 1.499083, + "checkpoint": 0, + "vertex_from": "918", + "timestamp": "2025-11-27T04:01:46.627297-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2202083, + "rtt_ms": 2.202083, + "checkpoint": 0, + "vertex_from": "244", + "timestamp": "2025-11-27T04:01:46.627412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299316, - "rtt_ms": 1.299316, + "rtt_ns": 2223166, + "rtt_ms": 2.223166, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "682", - "timestamp": "2025-11-27T01:21:48.283213222Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:46.627421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050097, - "rtt_ms": 1.050097, + "rtt_ns": 947000, + "rtt_ms": 0.947, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "244", - "timestamp": "2025-11-27T01:21:48.283223962Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:46.628369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100057, - "rtt_ms": 1.100057, + "rtt_ns": 1463750, + "rtt_ms": 1.46375, "checkpoint": 0, "vertex_from": "4", "vertex_to": "918", - "timestamp": "2025-11-27T01:21:48.283244702Z" + "timestamp": "2025-11-27T04:01:46.628761-08:00" }, { "operation": "add_edge", - "rtt_ns": 976437, - "rtt_ms": 0.976437, + "rtt_ns": 1581375, + "rtt_ms": 1.581375, "checkpoint": 0, "vertex_from": "4", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.283252372Z" + "timestamp": "2025-11-27T04:01:46.62879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070566, - "rtt_ms": 1.070566, + "rtt_ns": 2057208, + "rtt_ms": 2.057208, "checkpoint": 0, "vertex_from": "4", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:48.283299091Z" + "timestamp": "2025-11-27T04:01:46.628986-08:00" }, { "operation": "add_edge", - "rtt_ns": 2903001, - "rtt_ms": 2.903001, + "rtt_ns": 1853209, + "rtt_ms": 1.853209, "checkpoint": 0, "vertex_from": "4", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:48.285241485Z" + "timestamp": "2025-11-27T04:01:46.629116-08:00" }, { "operation": "add_edge", - "rtt_ns": 3069540, - "rtt_ms": 3.06954, + "rtt_ns": 1733667, + "rtt_ms": 1.733667, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "244", + "timestamp": "2025-11-27T04:01:46.629147-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2186416, + "rtt_ms": 2.186416, "checkpoint": 0, "vertex_from": "4", "vertex_to": "938", - "timestamp": "2025-11-27T01:21:48.285324555Z" + "timestamp": "2025-11-27T04:01:46.629203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2922671, - "rtt_ms": 2.922671, + "rtt_ns": 2263583, + "rtt_ms": 2.263583, "checkpoint": 0, "vertex_from": "4", "vertex_to": "355", - "timestamp": "2025-11-27T01:21:48.285349785Z" + "timestamp": "2025-11-27T04:01:46.62954-08:00" }, { "operation": "add_edge", - "rtt_ns": 2889751, - "rtt_ms": 2.889751, + "rtt_ns": 2802041, + "rtt_ms": 2.802041, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:48.285357375Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:46.629708-08:00" }, { "operation": "add_edge", - "rtt_ns": 2162843, - "rtt_ms": 2.162843, + "rtt_ns": 2465833, + "rtt_ms": 2.465833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:48.285377125Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:46.62976-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100793, - "rtt_ms": 2.100793, + "rtt_ns": 1432875, + "rtt_ms": 1.432875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:48.285401384Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:46.629803-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149352, - "rtt_ms": 2.149352, + "rtt_ns": 1266458, + "rtt_ms": 1.266458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "14", - "timestamp": "2025-11-27T01:21:48.285403274Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:46.630028-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209832, - "rtt_ms": 2.209832, + "rtt_ns": 1555959, + "rtt_ms": 1.555959, "checkpoint": 0, "vertex_from": "4", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:48.285455734Z" + "timestamp": "2025-11-27T04:01:46.630347-08:00" }, { "operation": "add_edge", - "rtt_ns": 2485421, - "rtt_ms": 2.485421, + "rtt_ns": 1220958, + "rtt_ms": 1.220958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:48.285711343Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:46.630982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2604031, - "rtt_ms": 2.604031, + "rtt_ns": 1889958, + "rtt_ms": 1.889958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:48.285802993Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:46.631094-08:00" }, { "operation": "add_edge", - "rtt_ns": 734748, - "rtt_ms": 0.734748, + "rtt_ns": 1962250, + "rtt_ms": 1.96225, "checkpoint": 0, "vertex_from": "4", "vertex_to": "480", - "timestamp": "2025-11-27T01:21:48.285977653Z" + "timestamp": "2025-11-27T04:01:46.63111-08:00" }, { "operation": "add_edge", - "rtt_ns": 842927, - "rtt_ms": 0.842927, + "rtt_ns": 2177209, + "rtt_ms": 2.177209, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:48.286203182Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:01:46.631165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422795, - "rtt_ms": 1.422795, + "rtt_ns": 1535792, + "rtt_ms": 1.535792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:48.28674881Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:46.631245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477005, - "rtt_ms": 1.477005, + "rtt_ns": 1456875, + "rtt_ms": 1.456875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "788", - "timestamp": "2025-11-27T01:21:48.286880059Z" + "timestamp": "2025-11-27T04:01:46.63126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548585, - "rtt_ms": 1.548585, + "rtt_ns": 1721167, + "rtt_ms": 1.721167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:48.286953279Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:46.631262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632254, - "rtt_ms": 1.632254, + "rtt_ns": 1399583, + "rtt_ms": 1.399583, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:48.286983089Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:46.631428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614684, - "rtt_ms": 1.614684, + "rtt_ns": 2840584, + "rtt_ms": 2.840584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.286993029Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:46.631958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289186, - "rtt_ms": 1.289186, + "rtt_ns": 1667625, + "rtt_ms": 1.667625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "273", - "timestamp": "2025-11-27T01:21:48.287004209Z" + "timestamp": "2025-11-27T04:01:46.632651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028587, - "rtt_ms": 1.028587, + "rtt_ns": 1698708, + "rtt_ms": 1.698708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:48.287008209Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:46.632961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568325, - "rtt_ms": 1.568325, + "rtt_ns": 1651584, + "rtt_ms": 1.651584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:48.287025669Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1243976, - "rtt_ms": 1.243976, - "checkpoint": 0, - "vertex_from": "967", - "timestamp": "2025-11-27T01:21:48.287053479Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:01:46.633082-08:00" }, { "operation": "add_edge", - "rtt_ns": 2469322, - "rtt_ms": 2.469322, + "rtt_ns": 1985709, + "rtt_ms": 1.985709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:48.288674764Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:46.633096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745174, - "rtt_ms": 1.745174, + "rtt_ns": 2820417, + "rtt_ms": 2.820417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.288772703Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:46.633168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949124, - "rtt_ms": 1.949124, + "rtt_ns": 2053541, + "rtt_ms": 2.053541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:48.288831263Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:46.633219-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091543, - "rtt_ms": 2.091543, + "rtt_ns": 1992208, + "rtt_ms": 1.992208, "checkpoint": 0, "vertex_from": "4", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:48.288844043Z" + "timestamp": "2025-11-27T04:01:46.633238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932804, - "rtt_ms": 1.932804, + "rtt_ns": 1280208, + "rtt_ms": 1.280208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:48.288938823Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:46.633239-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2069534, - "rtt_ms": 2.069534, + "operation": "add_vertex", + "rtt_ns": 2185125, + "rtt_ms": 2.185125, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:48.289024573Z" + "vertex_from": "967", + "timestamp": "2025-11-27T04:01:46.63328-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052283, - "rtt_ms": 2.052283, + "rtt_ns": 2153000, + "rtt_ms": 2.153, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "558", - "timestamp": "2025-11-27T01:21:48.289037512Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:46.633414-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043773, - "rtt_ms": 2.043773, + "rtt_ns": 1239709, + "rtt_ms": 1.239709, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "967", - "timestamp": "2025-11-27T01:21:48.289097592Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:46.633894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143293, - "rtt_ms": 2.143293, + "rtt_ns": 1051000, + "rtt_ms": 1.051, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "11", - "timestamp": "2025-11-27T01:21:48.289153232Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:46.634149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208773, - "rtt_ms": 2.208773, + "rtt_ns": 1538250, + "rtt_ms": 1.53825, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.289203762Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:46.634621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742464, - "rtt_ms": 1.742464, + "rtt_ns": 2120750, + "rtt_ms": 2.12075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:48.290418898Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:01:46.635083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706085, - "rtt_ms": 1.706085, + "rtt_ns": 1859375, + "rtt_ms": 1.859375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:48.290480098Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:46.635099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752145, - "rtt_ms": 1.752145, + "rtt_ns": 1998166, + "rtt_ms": 1.998166, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:48.290584628Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:46.635238-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272353, - "rtt_ms": 2.272353, + "rtt_ns": 2026250, + "rtt_ms": 2.02625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:48.291119356Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:46.635246-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2142124, - "rtt_ms": 2.142124, + "operation": "add_edge", + "rtt_ns": 2165167, + "rtt_ms": 2.165167, "checkpoint": 0, - "vertex_from": "910", - "timestamp": "2025-11-27T01:21:48.291182156Z" + "vertex_from": "4", + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:46.635334-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169973, - "rtt_ms": 2.169973, + "rtt_ns": 2418042, + "rtt_ms": 2.418042, "checkpoint": 0, "vertex_from": "4", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:48.291196146Z" + "timestamp": "2025-11-27T04:01:46.635833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2342782, - "rtt_ms": 2.342782, + "rtt_ns": 2595250, + "rtt_ms": 2.59525, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:48.291284835Z" + "vertex_to": "967", + "timestamp": "2025-11-27T04:01:46.635875-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261253, - "rtt_ms": 2.261253, + "rtt_ns": 1805833, + "rtt_ms": 1.805833, "checkpoint": 0, "vertex_from": "4", "vertex_to": "322", - "timestamp": "2025-11-27T01:21:48.291360655Z" + "timestamp": "2025-11-27T04:01:46.635956-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2206233, - "rtt_ms": 2.206233, + "operation": "add_vertex", + "rtt_ns": 2119625, + "rtt_ms": 2.119625, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:48.291411715Z" + "vertex_from": "910", + "timestamp": "2025-11-27T04:01:46.636016-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259763, - "rtt_ms": 2.259763, + "rtt_ns": 1789875, + "rtt_ms": 1.789875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "915", - "timestamp": "2025-11-27T01:21:48.291414355Z" + "timestamp": "2025-11-27T04:01:46.636412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062357, - "rtt_ms": 1.062357, + "rtt_ns": 1455792, + "rtt_ms": 1.455792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:48.291482875Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:46.636695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029617, - "rtt_ms": 1.029617, + "rtt_ns": 1371208, + "rtt_ms": 1.371208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:48.291511885Z" + "vertex_to": "248", + "timestamp": "2025-11-27T04:01:46.636708-08:00" }, { "operation": "add_edge", - "rtt_ns": 942427, - "rtt_ms": 0.942427, + "rtt_ns": 1657917, + "rtt_ms": 1.657917, "checkpoint": 0, "vertex_from": "4", "vertex_to": "13", - "timestamp": "2025-11-27T01:21:48.291528485Z" + "timestamp": "2025-11-27T04:01:46.636905-08:00" }, { "operation": "add_edge", - "rtt_ns": 781097, - "rtt_ms": 0.781097, + "rtt_ns": 1003584, + "rtt_ms": 1.003584, "checkpoint": 0, "vertex_from": "4", "vertex_to": "910", - "timestamp": "2025-11-27T01:21:48.291963843Z" + "timestamp": "2025-11-27T04:01:46.63702-08:00" }, { "operation": "add_edge", - "rtt_ns": 858407, - "rtt_ms": 0.858407, + "rtt_ns": 1151458, + "rtt_ms": 1.151458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "248", - "timestamp": "2025-11-27T01:21:48.291979243Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:46.637108-08:00" }, { "operation": "add_edge", - "rtt_ns": 839797, - "rtt_ms": 0.839797, + "rtt_ns": 2125958, + "rtt_ms": 2.125958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "29", - "timestamp": "2025-11-27T01:21:48.292037613Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:46.63721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343596, - "rtt_ms": 1.343596, + "rtt_ns": 1530375, + "rtt_ms": 1.530375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.292705851Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:46.637407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308156, - "rtt_ms": 1.308156, + "rtt_ns": 1583292, + "rtt_ms": 1.583292, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:48.292724011Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:01:46.637417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330116, - "rtt_ms": 1.330116, + "rtt_ns": 2331625, + "rtt_ms": 2.331625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:48.292743001Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:46.637431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461256, - "rtt_ms": 1.461256, + "rtt_ns": 1364834, + "rtt_ms": 1.364834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:48.292748411Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:46.638271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358715, - "rtt_ms": 1.358715, + "rtt_ns": 1092166, + "rtt_ms": 1.092166, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:48.29284277Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:01:46.638303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338685, - "rtt_ms": 1.338685, + "rtt_ns": 1909792, + "rtt_ms": 1.909792, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.29287006Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:46.638322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488105, - "rtt_ms": 1.488105, + "rtt_ns": 1546333, + "rtt_ms": 1.546333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:48.29300173Z" + "vertex_to": "460", + "timestamp": "2025-11-27T04:01:46.638655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569195, - "rtt_ms": 1.569195, + "rtt_ns": 1976208, + "rtt_ms": 1.976208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "370", - "timestamp": "2025-11-27T01:21:48.293549888Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:46.638673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601455, - "rtt_ms": 1.601455, + "rtt_ns": 2094834, + "rtt_ms": 2.094834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "460", - "timestamp": "2025-11-27T01:21:48.293567178Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:46.638804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857354, - "rtt_ms": 1.857354, + "rtt_ns": 1400750, + "rtt_ms": 1.40075, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:48.293896667Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1137516, - "rtt_ms": 1.137516, - "checkpoint": 0, - "vertex_from": "921", - "timestamp": "2025-11-27T01:21:48.294141046Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:46.638819-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 739857, - "rtt_ms": 0.739857, + "operation": "add_edge", + "rtt_ns": 1802375, + "rtt_ms": 1.802375, "checkpoint": 0, - "vertex_from": "454", - "timestamp": "2025-11-27T01:21:48.294291135Z" + "vertex_from": "4", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:46.638823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806173, - "rtt_ms": 1.806173, + "rtt_ns": 1521750, + "rtt_ms": 1.52175, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:48.294551934Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:46.638929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883333, - "rtt_ms": 1.883333, + "rtt_ns": 1506833, + "rtt_ms": 1.506833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:48.294591134Z" + "vertex_to": "93", + "timestamp": "2025-11-27T04:01:46.638941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898483, - "rtt_ms": 1.898483, + "rtt_ns": 1550667, + "rtt_ms": 1.550667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "15", - "timestamp": "2025-11-27T01:21:48.294648664Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:01:46.64037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980653, - "rtt_ms": 1.980653, + "rtt_ns": 2088167, + "rtt_ms": 2.088167, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "93", - "timestamp": "2025-11-27T01:21:48.294705694Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:46.640412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905724, - "rtt_ms": 1.905724, + "rtt_ns": 1557375, + "rtt_ms": 1.557375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:48.294749644Z" + "vertex_to": "242", + "timestamp": "2025-11-27T04:01:46.640487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878714, - "rtt_ms": 1.878714, + "rtt_ns": 1848750, + "rtt_ms": 1.84875, "checkpoint": 0, "vertex_from": "4", "vertex_to": "368", - "timestamp": "2025-11-27T01:21:48.294749954Z" + "timestamp": "2025-11-27T04:01:46.640506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383555, - "rtt_ms": 1.383555, + "rtt_ns": 2208667, + "rtt_ms": 2.208667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "482", - "timestamp": "2025-11-27T01:21:48.294951913Z" + "vertex_to": "15", + "timestamp": "2025-11-27T04:01:46.640512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127896, - "rtt_ms": 1.127896, + "rtt_ns": 1858333, + "rtt_ms": 1.858333, "checkpoint": 0, "vertex_from": "4", "vertex_to": "204", - "timestamp": "2025-11-27T01:21:48.295026283Z" + "timestamp": "2025-11-27T04:01:46.640682-08:00" }, { "operation": "add_edge", - "rtt_ns": 833508, - "rtt_ms": 0.833508, + "rtt_ns": 1860958, + "rtt_ms": 1.860958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "454", - "timestamp": "2025-11-27T01:21:48.295124913Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:46.640802-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1055086, - "rtt_ms": 1.055086, + "operation": "add_vertex", + "rtt_ns": 2158167, + "rtt_ms": 2.158167, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "921", - "timestamp": "2025-11-27T01:21:48.295196392Z" + "vertex_from": "921", + "timestamp": "2025-11-27T04:01:46.640835-08:00" }, { "operation": "add_edge", - "rtt_ns": 866567, - "rtt_ms": 0.866567, + "rtt_ns": 2755791, + "rtt_ms": 2.755791, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:48.295458981Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:46.641027-08:00" }, { - "operation": "add_edge", - "rtt_ns": 920767, - "rtt_ms": 0.920767, + "operation": "add_vertex", + "rtt_ns": 2236500, + "rtt_ms": 2.2365, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "242", - "timestamp": "2025-11-27T01:21:48.295473981Z" + "vertex_from": "454", + "timestamp": "2025-11-27T04:01:46.641042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353595, - "rtt_ms": 1.353595, + "rtt_ns": 1306708, + "rtt_ms": 1.306708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:48.296060539Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:46.64182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816044, - "rtt_ms": 1.816044, + "rtt_ns": 1939250, + "rtt_ms": 1.93925, "checkpoint": 0, "vertex_from": "4", "vertex_to": "142", - "timestamp": "2025-11-27T01:21:48.296567288Z" + "timestamp": "2025-11-27T04:01:46.642446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940374, - "rtt_ms": 1.940374, + "rtt_ns": 2262167, + "rtt_ms": 2.262167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "569", - "timestamp": "2025-11-27T01:21:48.296589948Z" + "timestamp": "2025-11-27T04:01:46.642633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641825, - "rtt_ms": 1.641825, + "rtt_ns": 1864542, + "rtt_ms": 1.864542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:48.296594978Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:46.642893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614135, - "rtt_ms": 1.614135, + "rtt_ns": 2215625, + "rtt_ms": 2.215625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:48.296641528Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:01:46.643019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940203, - "rtt_ms": 1.940203, + "rtt_ns": 2691500, + "rtt_ms": 2.6915, "checkpoint": 0, "vertex_from": "4", "vertex_to": "792", - "timestamp": "2025-11-27T01:21:48.296690947Z" + "timestamp": "2025-11-27T04:01:46.643179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096844, - "rtt_ms": 2.096844, + "rtt_ns": 2471666, + "rtt_ms": 2.471666, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "583", - "timestamp": "2025-11-27T01:21:48.297572175Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1011957, - "rtt_ms": 1.011957, - "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:48.297608165Z" + "vertex_to": "921", + "timestamp": "2025-11-27T04:01:46.643307-08:00" }, { "operation": "add_edge", - "rtt_ns": 2485742, - "rtt_ms": 2.485742, + "rtt_ns": 2365000, + "rtt_ms": 2.365, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "54", - "timestamp": "2025-11-27T01:21:48.297611705Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:01:46.643407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194953, - "rtt_ms": 2.194953, + "rtt_ns": 2758417, + "rtt_ms": 2.758417, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:48.297655274Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:46.643441-08:00" }, { "operation": "add_edge", - "rtt_ns": 2461122, - "rtt_ms": 2.461122, + "rtt_ns": 3043625, + "rtt_ms": 3.043625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:48.297658484Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.643456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605305, - "rtt_ms": 1.605305, + "rtt_ns": 1676166, + "rtt_ms": 1.676166, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:48.297666804Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.643498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353896, - "rtt_ms": 1.353896, + "rtt_ns": 1004167, + "rtt_ms": 1.004167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:48.297922264Z" + "timestamp": "2025-11-27T04:01:46.643898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408015, - "rtt_ms": 1.408015, + "rtt_ns": 1522500, + "rtt_ms": 1.5225, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:48.297999663Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:01:46.64397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369025, - "rtt_ms": 1.369025, + "rtt_ns": 1534458, + "rtt_ms": 1.534458, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:48.298011363Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:46.644169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324886, - "rtt_ms": 1.324886, + "rtt_ns": 1608500, + "rtt_ms": 1.6085, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:48.298017003Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:46.644789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278856, - "rtt_ms": 1.278856, + "rtt_ns": 1421417, + "rtt_ms": 1.421417, "checkpoint": 0, "vertex_from": "4", "vertex_to": "197", - "timestamp": "2025-11-27T01:21:48.298852641Z" + "timestamp": "2025-11-27T04:01:46.644864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261006, - "rtt_ms": 1.261006, + "rtt_ns": 1527125, + "rtt_ms": 1.527125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:48.298870621Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:46.644935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410485, - "rtt_ms": 1.410485, + "rtt_ns": 1608459, + "rtt_ms": 1.608459, "checkpoint": 0, "vertex_from": "4", "vertex_to": "688", - "timestamp": "2025-11-27T01:21:48.29902361Z" + "timestamp": "2025-11-27T04:01:46.645107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381776, - "rtt_ms": 1.381776, + "rtt_ns": 2094875, + "rtt_ms": 2.094875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:48.29903838Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:46.645115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415746, - "rtt_ms": 1.415746, + "rtt_ns": 1866334, + "rtt_ms": 1.866334, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:48.29908461Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:46.645174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114277, - "rtt_ms": 1.114277, + "rtt_ns": 1840625, + "rtt_ms": 1.840625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:48.299115Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:46.6453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457696, - "rtt_ms": 1.457696, + "rtt_ns": 1354875, + "rtt_ms": 1.354875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:48.29911709Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.645526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827034, - "rtt_ms": 1.827034, + "rtt_ns": 1557333, + "rtt_ms": 1.557333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:48.299750378Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:46.645528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765945, - "rtt_ms": 1.765945, + "rtt_ns": 1910042, + "rtt_ms": 1.910042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.299778938Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:46.64581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941104, - "rtt_ms": 1.941104, + "rtt_ns": 1317959, + "rtt_ms": 1.317959, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:48.299960417Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:46.646435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433565, - "rtt_ms": 1.433565, + "rtt_ns": 1588375, + "rtt_ms": 1.588375, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "916", - "timestamp": "2025-11-27T01:21:48.300287296Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:46.646453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592734, - "rtt_ms": 1.592734, + "rtt_ns": 1854500, + "rtt_ms": 1.8545, "checkpoint": 0, "vertex_from": "4", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:48.300465205Z" + "timestamp": "2025-11-27T04:01:46.647029-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 711687, - "rtt_ms": 0.711687, + "operation": "add_edge", + "rtt_ns": 2318458, + "rtt_ms": 2.318458, "checkpoint": 0, - "vertex_from": "359", - "timestamp": "2025-11-27T01:21:48.300493845Z" + "vertex_from": "4", + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:46.647427-08:00" }, { "operation": "add_edge", - "rtt_ns": 2299912, - "rtt_ms": 2.299912, + "rtt_ns": 2639500, + "rtt_ms": 2.6395, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:48.301385752Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:46.647429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458485, - "rtt_ms": 1.458485, + "rtt_ns": 2424625, + "rtt_ms": 2.424625, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:48.301420372Z" + "vertex_to": "47", + "timestamp": "2025-11-27T04:01:46.647726-08:00" }, { "operation": "add_edge", - "rtt_ns": 2302452, - "rtt_ms": 2.302452, + "rtt_ns": 2247041, + "rtt_ms": 2.247041, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:48.301420372Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:46.647777-08:00" }, { "operation": "add_edge", - "rtt_ns": 2323542, - "rtt_ms": 2.323542, + "rtt_ns": 2026167, + "rtt_ms": 2.026167, "checkpoint": 0, "vertex_from": "4", "vertex_to": "284", - "timestamp": "2025-11-27T01:21:48.301439622Z" + "timestamp": "2025-11-27T04:01:46.647838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693704, - "rtt_ms": 1.693704, + "rtt_ns": 1401625, + "rtt_ms": 1.401625, "checkpoint": 0, "vertex_from": "4", "vertex_to": "549", - "timestamp": "2025-11-27T01:21:48.301445162Z" + "timestamp": "2025-11-27T04:01:46.647855-08:00" }, { "operation": "add_edge", - "rtt_ns": 2440272, - "rtt_ms": 2.440272, + "rtt_ns": 2332917, + "rtt_ms": 2.332917, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "47", - "timestamp": "2025-11-27T01:21:48.301465272Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:01:46.64786-08:00" }, { "operation": "add_edge", - "rtt_ns": 2430292, - "rtt_ms": 2.430292, + "rtt_ns": 1592708, + "rtt_ms": 1.592708, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "23", - "timestamp": "2025-11-27T01:21:48.301470172Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:46.648029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693095, - "rtt_ms": 1.693095, + "rtt_ns": 3320333, + "rtt_ms": 3.320333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "359", - "timestamp": "2025-11-27T01:21:48.30218749Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:46.648257-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1933373, - "rtt_ms": 1.933373, + "operation": "add_vertex", + "rtt_ns": 1457208, + "rtt_ms": 1.457208, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:48.302222489Z" + "vertex_from": "359", + "timestamp": "2025-11-27T04:01:46.648488-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1457542, + "rtt_ms": 1.457542, + "checkpoint": 0, + "vertex_from": "614", + "timestamp": "2025-11-27T04:01:46.64932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056623, - "rtt_ms": 2.056623, + "rtt_ns": 1905125, + "rtt_ms": 1.905125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:48.302523848Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:46.649333-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1336096, - "rtt_ms": 1.336096, + "rtt_ns": 1128542, + "rtt_ms": 1.128542, "checkpoint": 0, "vertex_from": "695", - "timestamp": "2025-11-27T01:21:48.302806688Z" + "timestamp": "2025-11-27T04:01:46.649388-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1408485, - "rtt_ms": 1.408485, + "operation": "add_edge", + "rtt_ns": 1707709, + "rtt_ms": 1.707709, "checkpoint": 0, - "vertex_from": "614", - "timestamp": "2025-11-27T01:21:48.302853127Z" + "vertex_from": "4", + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:46.649547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565005, - "rtt_ms": 1.565005, + "rtt_ns": 2118500, + "rtt_ms": 2.1185, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "527", - "timestamp": "2025-11-27T01:21:48.302953177Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:46.649549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2127193, - "rtt_ms": 2.127193, + "rtt_ns": 1734125, + "rtt_ms": 1.734125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "51", - "timestamp": "2025-11-27T01:21:48.303574055Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:46.649591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521034, - "rtt_ms": 1.521034, + "rtt_ns": 1882834, + "rtt_ms": 1.882834, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:48.303711434Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:46.649609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2311342, - "rtt_ms": 2.311342, + "rtt_ns": 1889125, + "rtt_ms": 1.889125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:48.303734264Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:46.649667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347892, - "rtt_ms": 2.347892, + "rtt_ns": 1923833, + "rtt_ms": 1.923833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:48.303821014Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:01:46.649953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625685, - "rtt_ms": 1.625685, + "rtt_ns": 972291, + "rtt_ms": 0.972291, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:48.303849434Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:46.65052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2427202, - "rtt_ms": 2.427202, + "rtt_ns": 1275833, + "rtt_ms": 1.275833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:48.303849634Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:46.65061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419986, - "rtt_ms": 1.419986, + "rtt_ns": 1391125, + "rtt_ms": 1.391125, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:48.303947544Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:01:46.650712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214145, - "rtt_ms": 1.214145, + "rtt_ns": 1399958, + "rtt_ms": 1.399958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "695", - "timestamp": "2025-11-27T01:21:48.304021173Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:46.65101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067566, - "rtt_ms": 1.067566, + "rtt_ns": 2574875, + "rtt_ms": 2.574875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:48.304022503Z" + "vertex_to": "359", + "timestamp": "2025-11-27T04:01:46.651063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169286, - "rtt_ms": 1.169286, + "rtt_ns": 1812666, + "rtt_ms": 1.812666, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "614", - "timestamp": "2025-11-27T01:21:48.304023223Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:46.651363-08:00" }, { "operation": "add_edge", - "rtt_ns": 585239, - "rtt_ms": 0.585239, + "rtt_ns": 2029541, + "rtt_ms": 2.029541, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:48.304298453Z" + "vertex_to": "695", + "timestamp": "2025-11-27T04:01:46.651418-08:00" }, { "operation": "add_edge", - "rtt_ns": 755228, - "rtt_ms": 0.755228, + "rtt_ns": 1852584, + "rtt_ms": 1.852584, "checkpoint": 0, "vertex_from": "4", "vertex_to": "701", - "timestamp": "2025-11-27T01:21:48.304330743Z" + "timestamp": "2025-11-27T04:01:46.651521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159807, - "rtt_ms": 1.159807, + "rtt_ns": 930208, + "rtt_ms": 0.930208, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:48.304896401Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:46.65154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280696, - "rtt_ms": 1.280696, + "rtt_ns": 1986333, + "rtt_ms": 1.986333, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:48.30513373Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:46.651579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313806, - "rtt_ms": 1.313806, + "rtt_ns": 1658500, + "rtt_ms": 1.6585, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:48.30513666Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:46.651613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286696, - "rtt_ms": 1.286696, + "rtt_ns": 1210584, + "rtt_ms": 1.210584, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:48.30513875Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:46.652222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206227, - "rtt_ms": 1.206227, + "rtt_ns": 1851667, + "rtt_ms": 1.851667, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:48.30523054Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:46.652372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301586, - "rtt_ms": 1.301586, + "rtt_ns": 1738958, + "rtt_ms": 1.738958, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:48.30525111Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:46.652452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232147, - "rtt_ms": 1.232147, + "rtt_ns": 1892042, + "rtt_ms": 1.892042, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:48.30525524Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:46.652958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239967, - "rtt_ms": 1.239967, + "rtt_ns": 1613250, + "rtt_ms": 1.61325, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:48.30526478Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:46.652977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106616, - "rtt_ms": 1.106616, + "rtt_ns": 1507000, + "rtt_ms": 1.507, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:48.305438629Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:46.653049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139506, - "rtt_ms": 1.139506, + "rtt_ns": 2114542, + "rtt_ms": 2.114542, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:48.305439559Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:46.653695-08:00" }, { "operation": "add_edge", - "rtt_ns": 998157, - "rtt_ms": 0.998157, + "rtt_ns": 2267875, + "rtt_ms": 2.267875, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "110", - "timestamp": "2025-11-27T01:21:48.305896318Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:46.653791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255246, - "rtt_ms": 1.255246, + "rtt_ns": 911250, + "rtt_ms": 0.91125, "checkpoint": 0, - "vertex_from": "4", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:48.306393976Z" + "vertex_from": "5", + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:46.653961-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1313116, - "rtt_ms": 1.313116, + "rtt_ns": 2327583, + "rtt_ms": 2.327583, "checkpoint": 0, "vertex_from": "597", - "timestamp": "2025-11-27T01:21:48.306449596Z" + "timestamp": "2025-11-27T04:01:46.654551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388476, - "rtt_ms": 1.388476, + "rtt_ns": 815375, + "rtt_ms": 0.815375, + "checkpoint": 0, + "vertex_from": "5", + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.654607-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 937875, + "rtt_ms": 0.937875, + "checkpoint": 0, + "vertex_from": "5", + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.654634-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3098084, + "rtt_ms": 3.098084, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "756", - "timestamp": "2025-11-27T01:21:48.306528376Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:01:46.654713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334435, - "rtt_ms": 1.334435, + "rtt_ns": 2171917, + "rtt_ms": 2.171917, "checkpoint": 0, "vertex_from": "4", "vertex_to": "748", - "timestamp": "2025-11-27T01:21:48.306569535Z" + "timestamp": "2025-11-27T04:01:46.655131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186806, - "rtt_ms": 1.186806, + "rtt_ns": 1427959, + "rtt_ms": 1.427959, "checkpoint": 0, "vertex_from": "5", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:48.306628265Z" + "timestamp": "2025-11-27T04:01:46.655389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401595, - "rtt_ms": 1.401595, + "rtt_ns": 2583833, + "rtt_ms": 2.583833, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.306657915Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.655561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227176, - "rtt_ms": 1.227176, + "rtt_ns": 1076417, + "rtt_ms": 1.076417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.306667585Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.65579-08:00" }, { "operation": "add_edge", - "rtt_ns": 793397, - "rtt_ms": 0.793397, + "rtt_ns": 1302750, + "rtt_ms": 1.30275, "checkpoint": 0, "vertex_from": "5", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.306691305Z" + "timestamp": "2025-11-27T04:01:46.65591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454075, - "rtt_ms": 1.454075, + "rtt_ns": 3472584, + "rtt_ms": 3.472584, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.306721905Z" + "vertex_from": "4", + "vertex_to": "756", + "timestamp": "2025-11-27T04:01:46.655925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526795, - "rtt_ms": 1.526795, + "rtt_ns": 1486750, + "rtt_ms": 1.48675, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.306779265Z" + "vertex_from": "4", + "vertex_to": "597", + "timestamp": "2025-11-27T04:01:46.656037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049656, - "rtt_ms": 1.049656, + "rtt_ns": 3678833, + "rtt_ms": 3.678833, "checkpoint": 0, "vertex_from": "4", - "vertex_to": "597", - "timestamp": "2025-11-27T01:21:48.307499522Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:46.656052-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 4655583, + "rtt_ms": 4.655583, + "checkpoint": 0, + "vertex_from": "4", + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:46.656074-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267823, - "rtt_ms": 2.267823, + "rtt_ns": 1484958, + "rtt_ms": 1.484958, "checkpoint": 0, "vertex_from": "5", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:48.308664469Z" + "timestamp": "2025-11-27T04:01:46.656119-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138093, - "rtt_ms": 2.138093, + "rtt_ns": 1583958, + "rtt_ms": 1.583958, + "checkpoint": 0, + "vertex_from": "5", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.656718-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1568750, + "rtt_ms": 1.56875, "checkpoint": 0, "vertex_from": "5", "vertex_to": "440", - "timestamp": "2025-11-27T01:21:48.308769198Z" + "timestamp": "2025-11-27T04:01:46.656959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2266602, - "rtt_ms": 2.266602, + "rtt_ns": 1143500, + "rtt_ms": 1.1435, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.308796278Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:46.657218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2246033, - "rtt_ms": 2.246033, + "rtt_ns": 1216250, + "rtt_ms": 1.21625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.308817308Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:01:46.657269-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224293, - "rtt_ms": 2.224293, + "rtt_ns": 1942333, + "rtt_ms": 1.942333, "checkpoint": 0, "vertex_from": "5", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:48.308883808Z" + "timestamp": "2025-11-27T04:01:46.657504-08:00" }, { "operation": "add_edge", - "rtt_ns": 2120873, - "rtt_ms": 2.120873, + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, "vertex_from": "5", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.308902438Z" + "timestamp": "2025-11-27T04:01:46.657626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2217343, - "rtt_ms": 2.217343, + "rtt_ns": 1771958, + "rtt_ms": 1.771958, "checkpoint": 0, "vertex_from": "5", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:48.308940418Z" + "timestamp": "2025-11-27T04:01:46.657698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450026, - "rtt_ms": 1.450026, + "rtt_ns": 1602000, + "rtt_ms": 1.602, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "14", - "timestamp": "2025-11-27T01:21:48.308951408Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:01:46.657722-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305453, - "rtt_ms": 2.305453, + "rtt_ns": 1887833, + "rtt_ms": 1.887833, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:48.308978068Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:01:46.657799-08:00" }, { "operation": "add_edge", - "rtt_ns": 2343582, - "rtt_ms": 2.343582, + "rtt_ns": 2024750, + "rtt_ms": 2.02475, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "9", - "timestamp": "2025-11-27T01:21:48.309036347Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:46.657815-08:00" }, { "operation": "add_edge", - "rtt_ns": 988827, - "rtt_ms": 0.988827, + "rtt_ns": 1310583, + "rtt_ms": 1.310583, "checkpoint": 0, "vertex_from": "5", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.309786885Z" + "timestamp": "2025-11-27T04:01:46.658029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123956, - "rtt_ms": 1.123956, + "rtt_ns": 1552375, + "rtt_ms": 1.552375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "930", - "timestamp": "2025-11-27T01:21:48.309895094Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.658515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052476, - "rtt_ms": 1.052476, + "rtt_ns": 1664208, + "rtt_ms": 1.664208, "checkpoint": 0, "vertex_from": "5", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.309937944Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1302875, - "rtt_ms": 1.302875, - "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:48.309972114Z" + "timestamp": "2025-11-27T04:01:46.658884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170056, - "rtt_ms": 1.170056, + "rtt_ns": 1456833, + "rtt_ms": 1.456833, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.309990644Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:46.658963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109916, - "rtt_ms": 1.109916, + "rtt_ns": 1569000, + "rtt_ms": 1.569, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.310015314Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:46.659196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075906, - "rtt_ms": 1.075906, + "rtt_ns": 1597000, + "rtt_ms": 1.597, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.310018674Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:46.659413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207325, - "rtt_ms": 1.207325, + "rtt_ns": 2159250, + "rtt_ms": 2.15925, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:48.310187153Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.659431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312215, - "rtt_ms": 1.312215, + "rtt_ns": 1429667, + "rtt_ms": 1.429667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:48.310265033Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:01:46.65946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787284, - "rtt_ms": 1.787284, + "rtt_ns": 1788209, + "rtt_ms": 1.788209, "checkpoint": 0, "vertex_from": "5", "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.310825361Z" + "timestamp": "2025-11-27T04:01:46.659511-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186493, - "rtt_ms": 2.186493, + "rtt_ns": 1773417, + "rtt_ms": 1.773417, "checkpoint": 0, "vertex_from": "5", "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.311975098Z" + "timestamp": "2025-11-27T04:01:46.659574-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143873, - "rtt_ms": 2.143873, + "rtt_ns": 2054750, + "rtt_ms": 2.05475, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:48.312164157Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:46.659753-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2660121, - "rtt_ms": 2.660121, + "rtt_ns": 1141917, + "rtt_ms": 1.141917, "checkpoint": 0, "vertex_from": "485", - "timestamp": "2025-11-27T01:21:48.312653255Z" + "timestamp": "2025-11-27T04:01:46.660028-08:00" }, { "operation": "add_edge", - "rtt_ns": 2829551, - "rtt_ms": 2.829551, + "rtt_ns": 1369375, + "rtt_ms": 1.369375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.312727115Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:46.660333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2577042, - "rtt_ms": 2.577042, + "rtt_ns": 1888833, + "rtt_ms": 1.888833, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:48.312765485Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:46.660406-08:00" }, { "operation": "add_edge", - "rtt_ns": 2853661, - "rtt_ms": 2.853661, + "rtt_ns": 1519000, + "rtt_ms": 1.519, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "8", - "timestamp": "2025-11-27T01:21:48.312792725Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.661033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2839481, - "rtt_ms": 2.839481, + "rtt_ns": 1586542, + "rtt_ms": 1.586542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.312813805Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:46.661047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2877961, - "rtt_ms": 2.877961, + "rtt_ns": 1680792, + "rtt_ms": 1.680792, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:48.312894415Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:46.661113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2664962, - "rtt_ms": 2.664962, + "rtt_ns": 1597291, + "rtt_ms": 1.597291, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:48.312931335Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:01:46.661172-08:00" }, { "operation": "add_edge", - "rtt_ns": 2127473, - "rtt_ms": 2.127473, + "rtt_ns": 1764334, + "rtt_ms": 1.764334, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:48.312953494Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:46.661178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110656, - "rtt_ms": 1.110656, + "rtt_ns": 1489542, + "rtt_ms": 1.489542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.313087784Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:46.661244-08:00" }, { "operation": "add_edge", - "rtt_ns": 935427, - "rtt_ms": 0.935427, + "rtt_ns": 2115292, + "rtt_ms": 2.115292, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "558", - "timestamp": "2025-11-27T01:21:48.313101854Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:46.661312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016777, - "rtt_ms": 1.016777, + "rtt_ns": 1315208, + "rtt_ms": 1.315208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:48.313745092Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:46.661343-08:00" }, { "operation": "add_edge", - "rtt_ns": 990477, - "rtt_ms": 0.990477, + "rtt_ns": 1252708, + "rtt_ms": 1.252708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:48.313784692Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.662301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026757, - "rtt_ms": 1.026757, + "rtt_ns": 1932833, + "rtt_ms": 1.932833, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:48.313793152Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:46.662339-08:00" }, { "operation": "add_edge", - "rtt_ns": 984747, - "rtt_ms": 0.984747, + "rtt_ns": 2031458, + "rtt_ms": 2.031458, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "716", - "timestamp": "2025-11-27T01:21:48.313799842Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:46.662366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226506, - "rtt_ms": 1.226506, + "rtt_ns": 1338458, + "rtt_ms": 1.338458, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "485", - "timestamp": "2025-11-27T01:21:48.313880241Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:01:46.662453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019196, - "rtt_ms": 1.019196, + "rtt_ns": 1159125, + "rtt_ms": 1.159125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.313914781Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.662473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619365, - "rtt_ms": 1.619365, + "rtt_ns": 1321750, + "rtt_ms": 1.32175, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "12", - "timestamp": "2025-11-27T01:21:48.314551649Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:46.662666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617675, - "rtt_ms": 1.617675, + "rtt_ns": 1454750, + "rtt_ms": 1.45475, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.314572399Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.6627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484985, - "rtt_ms": 1.484985, + "rtt_ns": 1568792, + "rtt_ms": 1.568792, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.314587909Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:46.662749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565045, - "rtt_ms": 1.565045, + "rtt_ns": 1652500, + "rtt_ms": 1.6525, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:48.314653999Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.662826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107836, - "rtt_ms": 1.107836, + "rtt_ns": 1955875, + "rtt_ms": 1.955875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:48.314893608Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:46.662991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863684, - "rtt_ms": 1.863684, + "rtt_ns": 1679916, + "rtt_ms": 1.679916, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.315610666Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:46.664154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968783, - "rtt_ms": 1.968783, + "rtt_ns": 1871792, + "rtt_ms": 1.871792, "checkpoint": 0, "vertex_from": "5", "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.315770695Z" + "timestamp": "2025-11-27T04:01:46.664212-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089903, - "rtt_ms": 2.089903, + "rtt_ns": 1532042, + "rtt_ms": 1.532042, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "7", - "timestamp": "2025-11-27T01:21:48.315884765Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:46.664282-08:00" }, { "operation": "add_edge", - "rtt_ns": 2695042, - "rtt_ms": 2.695042, + "rtt_ns": 1317500, + "rtt_ms": 1.3175, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:48.316610873Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:46.664309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2799811, - "rtt_ms": 2.799811, + "rtt_ns": 2024833, + "rtt_ms": 2.024833, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:48.316681262Z" + "vertex_to": "7", + "timestamp": "2025-11-27T04:01:46.664328-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145823, - "rtt_ms": 2.145823, + "rtt_ns": 1703708, + "rtt_ms": 1.703708, "checkpoint": 0, "vertex_from": "5", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.316720342Z" + "timestamp": "2025-11-27T04:01:46.664371-08:00" }, { "operation": "add_edge", - "rtt_ns": 2551712, - "rtt_ms": 2.551712, + "rtt_ns": 2020750, + "rtt_ms": 2.02075, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:48.317142201Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:46.664388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428962, - "rtt_ms": 2.428962, + "rtt_ns": 1596666, + "rtt_ms": 1.596666, "checkpoint": 0, "vertex_from": "5", "vertex_to": "612", - "timestamp": "2025-11-27T01:21:48.31732449Z" + "timestamp": "2025-11-27T04:01:46.664424-08:00" }, { "operation": "add_edge", - "rtt_ns": 2815211, - "rtt_ms": 2.815211, + "rtt_ns": 1770792, + "rtt_ms": 1.770792, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:48.31736849Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:46.664472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763044, - "rtt_ms": 1.763044, + "rtt_ns": 2111583, + "rtt_ms": 2.111583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:48.31737538Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:46.664565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2746331, - "rtt_ms": 2.746331, + "rtt_ns": 1333875, + "rtt_ms": 1.333875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:48.31740154Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:46.665616-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1296000, + "rtt_ms": 1.296, + "checkpoint": 0, + "vertex_from": "5", + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:46.665667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631045, - "rtt_ms": 1.631045, + "rtt_ns": 1521000, + "rtt_ms": 1.521, "checkpoint": 0, "vertex_from": "5", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.31740293Z" + "timestamp": "2025-11-27T04:01:46.665676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516555, - "rtt_ms": 1.516555, + "rtt_ns": 1473875, + "rtt_ms": 1.473875, "checkpoint": 0, "vertex_from": "5", "vertex_to": "328", - "timestamp": "2025-11-27T01:21:48.31740296Z" + "timestamp": "2025-11-27T04:01:46.665687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500185, - "rtt_ms": 1.500185, + "rtt_ns": 1551084, + "rtt_ms": 1.551084, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:48.318112078Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:46.666032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426166, - "rtt_ms": 1.426166, + "rtt_ns": 1664125, + "rtt_ms": 1.664125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "124", - "timestamp": "2025-11-27T01:21:48.318147838Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.666053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021556, - "rtt_ms": 1.021556, + "rtt_ns": 1821250, + "rtt_ms": 1.82125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:48.318165997Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:46.666131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890394, - "rtt_ms": 1.890394, + "rtt_ns": 1829208, + "rtt_ms": 1.829208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:48.318572726Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:01:46.666158-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1319216, - "rtt_ms": 1.319216, + "rtt_ns": 1748250, + "rtt_ms": 1.74825, "checkpoint": 0, "vertex_from": "724", - "timestamp": "2025-11-27T01:21:48.318690826Z" + "timestamp": "2025-11-27T04:01:46.666173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321986, - "rtt_ms": 1.321986, + "rtt_ns": 1626791, + "rtt_ms": 1.626791, "checkpoint": 0, "vertex_from": "5", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.318724656Z" + "timestamp": "2025-11-27T04:01:46.666194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371565, - "rtt_ms": 1.371565, + "rtt_ns": 1251708, + "rtt_ms": 1.251708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.318775565Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:46.667284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487665, - "rtt_ms": 1.487665, + "rtt_ns": 1139875, + "rtt_ms": 1.139875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "697", - "timestamp": "2025-11-27T01:21:48.318891785Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:46.667301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594195, - "rtt_ms": 1.594195, + "rtt_ns": 1582708, + "rtt_ms": 1.582708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:48.318971155Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:46.667778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768134, - "rtt_ms": 1.768134, + "rtt_ns": 1626917, + "rtt_ms": 1.626917, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.319094644Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:46.6678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034056, - "rtt_ms": 1.034056, + "rtt_ns": 1688417, + "rtt_ms": 1.688417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:48.319147564Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:46.667821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045977, - "rtt_ms": 1.045977, + "rtt_ns": 1767000, + "rtt_ms": 1.767, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:48.319212494Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.667821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691525, - "rtt_ms": 1.691525, + "rtt_ns": 2253291, + "rtt_ms": 2.253291, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:48.319840362Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:46.667931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803734, - "rtt_ms": 1.803734, + "rtt_ns": 2303875, + "rtt_ms": 2.303875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.32037739Z" + "vertex_to": "697", + "timestamp": "2025-11-27T04:01:46.667973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708904, - "rtt_ms": 1.708904, + "rtt_ns": 2370959, + "rtt_ms": 2.370959, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:48.32039997Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:46.66799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707654, - "rtt_ms": 1.707654, + "rtt_ns": 2353042, + "rtt_ms": 2.353042, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:48.32043376Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:46.668041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807144, - "rtt_ms": 1.807144, + "rtt_ns": 1199958, + "rtt_ms": 1.199958, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:48.320583339Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:46.669001-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214113, - "rtt_ms": 2.214113, + "rtt_ns": 1107667, + "rtt_ms": 1.107667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:48.321106378Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:46.669081-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265022, - "rtt_ms": 2.265022, + "rtt_ns": 1334792, + "rtt_ms": 1.334792, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:48.321236927Z" + "vertex_to": "246", + "timestamp": "2025-11-27T04:01:46.669156-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083703, - "rtt_ms": 2.083703, + "rtt_ns": 1228583, + "rtt_ms": 1.228583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:48.321296847Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:46.66916-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233713, - "rtt_ms": 2.233713, + "rtt_ns": 1449042, + "rtt_ms": 1.449042, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.321328897Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:46.669271-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194583, - "rtt_ms": 2.194583, + "rtt_ns": 1562750, + "rtt_ms": 1.56275, "checkpoint": 0, "vertex_from": "5", "vertex_to": "774", - "timestamp": "2025-11-27T01:21:48.321342737Z" + "timestamp": "2025-11-27T04:01:46.669341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552355, - "rtt_ms": 1.552355, + "rtt_ns": 1354917, + "rtt_ms": 1.354917, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "246", - "timestamp": "2025-11-27T01:21:48.321393877Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:46.669397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270306, - "rtt_ms": 1.270306, + "rtt_ns": 2148834, + "rtt_ms": 2.148834, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:48.321670946Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:46.669434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111947, - "rtt_ms": 1.111947, + "rtt_ns": 2144458, + "rtt_ms": 2.144458, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:48.321696716Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:46.669447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386626, - "rtt_ms": 1.386626, + "rtt_ns": 1488334, + "rtt_ms": 1.488334, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:48.321765396Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:46.669479-08:00" }, { "operation": "add_edge", - "rtt_ns": 696918, - "rtt_ms": 0.696918, + "rtt_ns": 1591375, + "rtt_ms": 1.591375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:48.321935275Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:46.670754-08:00" }, { "operation": "add_edge", - "rtt_ns": 843907, - "rtt_ms": 0.843907, + "rtt_ns": 1334416, + "rtt_ms": 1.334416, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.321951335Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:46.670769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541995, - "rtt_ms": 1.541995, + "rtt_ns": 1636334, + "rtt_ms": 1.636334, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:48.321977785Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:46.670795-08:00" }, { "operation": "add_edge", - "rtt_ns": 795898, - "rtt_ms": 0.795898, + "rtt_ns": 1471416, + "rtt_ms": 1.471416, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:48.322125475Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:46.670869-08:00" }, { "operation": "add_edge", - "rtt_ns": 858147, - "rtt_ms": 0.858147, + "rtt_ns": 1557709, + "rtt_ms": 1.557709, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:48.322203214Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:46.671007-08:00" }, { "operation": "add_edge", - "rtt_ns": 896917, - "rtt_ms": 0.896917, + "rtt_ns": 1764459, + "rtt_ms": 1.764459, "checkpoint": 0, "vertex_from": "5", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:48.322291954Z" + "timestamp": "2025-11-27T04:01:46.671036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026507, - "rtt_ms": 1.026507, + "rtt_ns": 1719750, + "rtt_ms": 1.71975, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.322324504Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.671062-08:00" }, { "operation": "add_edge", - "rtt_ns": 758888, - "rtt_ms": 0.758888, + "rtt_ns": 2115125, + "rtt_ms": 2.115125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:48.322458354Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:46.671117-08:00" }, { "operation": "add_edge", - "rtt_ns": 823687, - "rtt_ms": 0.823687, + "rtt_ns": 1648625, + "rtt_ms": 1.648625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:48.322495813Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:46.671129-08:00" }, { "operation": "add_edge", - "rtt_ns": 730357, - "rtt_ms": 0.730357, + "rtt_ns": 2112625, + "rtt_ms": 2.112625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.322497683Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.671201-08:00" }, { "operation": "add_edge", - "rtt_ns": 695568, - "rtt_ms": 0.695568, + "rtt_ns": 1334750, + "rtt_ms": 1.33475, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:48.322632483Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:46.672538-08:00" }, { "operation": "add_edge", - "rtt_ns": 743868, - "rtt_ms": 0.743868, + "rtt_ns": 2258500, + "rtt_ms": 2.2585, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:48.322725323Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:46.673267-08:00" }, { "operation": "add_edge", - "rtt_ns": 817928, - "rtt_ms": 0.817928, + "rtt_ns": 2273375, + "rtt_ms": 2.273375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:48.322770713Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:46.673403-08:00" }, { "operation": "add_edge", - "rtt_ns": 704798, - "rtt_ms": 0.704798, + "rtt_ns": 2627667, + "rtt_ms": 2.627667, "checkpoint": 0, "vertex_from": "5", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.322909042Z" + "timestamp": "2025-11-27T04:01:46.673424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386875, - "rtt_ms": 1.386875, + "rtt_ns": 2373583, + "rtt_ms": 2.373583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:48.32351394Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:46.673436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317816, - "rtt_ms": 1.317816, + "rtt_ns": 2405000, + "rtt_ms": 2.405, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:48.32361066Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:46.673442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526835, - "rtt_ms": 1.526835, + "rtt_ns": 2648375, + "rtt_ms": 2.648375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:48.323852579Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:46.673519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428886, - "rtt_ms": 1.428886, + "rtt_ns": 2980791, + "rtt_ms": 2.980791, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:48.323926089Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:46.673737-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 669998, - "rtt_ms": 0.669998, + "operation": "add_edge", + "rtt_ns": 836708, + "rtt_ms": 0.836708, "checkpoint": 0, - "vertex_from": "954", - "timestamp": "2025-11-27T01:21:48.324186538Z" + "vertex_from": "5", + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:46.674105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2436632, - "rtt_ms": 2.436632, + "rtt_ns": 1579417, + "rtt_ms": 1.579417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:48.324935835Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.67412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500715, - "rtt_ms": 1.500715, + "rtt_ns": 3802292, + "rtt_ms": 3.802292, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:48.325112955Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:46.674572-08:00" }, { "operation": "add_edge", - "rtt_ns": 2509642, - "rtt_ms": 2.509642, + "rtt_ns": 1141417, + "rtt_ms": 1.141417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:48.325144035Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:46.674579-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1175500, + "rtt_ms": 1.1755, + "checkpoint": 0, + "vertex_from": "954", + "timestamp": "2025-11-27T04:01:46.67458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2532901, - "rtt_ms": 2.532901, + "rtt_ns": 1163292, + "rtt_ms": 1.163292, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.325259384Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:46.674606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368625, - "rtt_ms": 1.368625, + "rtt_ns": 1294333, + "rtt_ms": 1.294333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:48.325297444Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:46.674721-08:00" }, { "operation": "add_edge", - "rtt_ns": 2411242, - "rtt_ms": 2.411242, + "rtt_ns": 3617750, + "rtt_ms": 3.61775, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:48.325321454Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:46.674737-08:00" }, { "operation": "add_edge", - "rtt_ns": 2863440, - "rtt_ms": 2.86344, + "rtt_ns": 1072083, + "rtt_ms": 1.072083, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:48.325323534Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:46.67568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160916, - "rtt_ms": 1.160916, + "rtt_ns": 1141417, + "rtt_ms": 1.141417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "954", - "timestamp": "2025-11-27T01:21:48.325347904Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:46.675715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505135, - "rtt_ms": 1.505135, + "rtt_ns": 1744209, + "rtt_ms": 1.744209, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:48.325359214Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:46.67585-08:00" }, { "operation": "add_edge", - "rtt_ns": 3100929, - "rtt_ms": 3.100929, + "rtt_ns": 1306583, + "rtt_ms": 1.306583, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.325873162Z" + "vertex_to": "954", + "timestamp": "2025-11-27T04:01:46.675887-08:00" }, { "operation": "add_edge", - "rtt_ns": 954857, - "rtt_ms": 0.954857, + "rtt_ns": 2248292, + "rtt_ms": 2.248292, "checkpoint": 0, "vertex_from": "5", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:48.326071772Z" + "timestamp": "2025-11-27T04:01:46.675988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039126, - "rtt_ms": 1.039126, + "rtt_ns": 1447666, + "rtt_ms": 1.447666, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:48.326185661Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:46.676185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377396, - "rtt_ms": 1.377396, + "rtt_ns": 2075875, + "rtt_ms": 2.075875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:48.326316721Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:46.676197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289886, - "rtt_ms": 1.289886, + "rtt_ns": 1557750, + "rtt_ms": 1.55775, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:48.32655107Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:46.676279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316556, - "rtt_ms": 1.316556, + "rtt_ns": 2825250, + "rtt_ms": 2.82525, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:48.3266421Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:46.676345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343036, - "rtt_ms": 1.343036, + "rtt_ns": 1814625, + "rtt_ms": 1.814625, "checkpoint": 0, "vertex_from": "5", "vertex_to": "105", - "timestamp": "2025-11-27T01:21:48.32666695Z" + "timestamp": "2025-11-27T04:01:46.676394-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1115708, + "rtt_ms": 1.115708, + "checkpoint": 0, + "vertex_from": "411", + "timestamp": "2025-11-27T04:01:46.677006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384555, - "rtt_ms": 1.384555, + "rtt_ns": 1350333, + "rtt_ms": 1.350333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:48.326733919Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:46.677066-08:00" }, { "operation": "add_edge", - "rtt_ns": 862547, - "rtt_ms": 0.862547, + "rtt_ns": 1470042, + "rtt_ms": 1.470042, "checkpoint": 0, "vertex_from": "5", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:48.326737049Z" + "timestamp": "2025-11-27T04:01:46.677153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536285, - "rtt_ms": 1.536285, + "rtt_ns": 1554292, + "rtt_ms": 1.554292, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:48.326835889Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:46.677407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521025, - "rtt_ms": 1.521025, + "rtt_ns": 1552708, + "rtt_ms": 1.552708, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:48.326882419Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:46.677542-08:00" }, { "operation": "add_edge", - "rtt_ns": 898717, - "rtt_ms": 0.898717, + "rtt_ns": 1558667, + "rtt_ms": 1.558667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:48.326971719Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:46.677904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127456, - "rtt_ms": 1.127456, + "rtt_ns": 1732125, + "rtt_ms": 1.732125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:48.327314717Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.677931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082286, - "rtt_ms": 1.082286, + "rtt_ns": 1864292, + "rtt_ms": 1.864292, "checkpoint": 0, "vertex_from": "5", "vertex_to": "792", - "timestamp": "2025-11-27T01:21:48.327726636Z" + "timestamp": "2025-11-27T04:01:46.67805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074016, - "rtt_ms": 1.074016, + "rtt_ns": 1874167, + "rtt_ms": 1.874167, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.327743186Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:01:46.678155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223246, - "rtt_ms": 1.223246, + "rtt_ns": 1513250, + "rtt_ms": 1.51325, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:48.327775286Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2142473, - "rtt_ms": 2.142473, - "checkpoint": 0, - "vertex_from": "411", - "timestamp": "2025-11-27T01:21:48.328464604Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.678667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775505, - "rtt_ms": 1.775505, + "rtt_ns": 2272042, + "rtt_ms": 2.272042, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "54", - "timestamp": "2025-11-27T01:21:48.328511614Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:46.678669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966954, - "rtt_ms": 1.966954, + "rtt_ns": 1834125, + "rtt_ms": 1.834125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:48.328704963Z" + "vertex_to": "411", + "timestamp": "2025-11-27T04:01:46.678841-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000654, - "rtt_ms": 2.000654, + "rtt_ns": 2038041, + "rtt_ms": 2.038041, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:48.328838573Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:46.679107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695575, - "rtt_ms": 1.695575, + "rtt_ns": 1442084, + "rtt_ms": 1.442084, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.329012662Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:46.679494-08:00" }, { "operation": "add_edge", - "rtt_ns": 2786701, - "rtt_ms": 2.786701, + "rtt_ns": 2055333, + "rtt_ms": 2.055333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.32976011Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:46.679598-08:00" }, { "operation": "add_edge", - "rtt_ns": 2990180, - "rtt_ms": 2.99018, + "rtt_ns": 1747541, + "rtt_ms": 1.747541, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.329874439Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:46.679653-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2144033, - "rtt_ms": 2.144033, + "rtt_ns": 2142917, + "rtt_ms": 2.142917, "checkpoint": 0, "vertex_from": "559", - "timestamp": "2025-11-27T01:21:48.329923139Z" + "timestamp": "2025-11-27T04:01:46.680074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491585, - "rtt_ms": 1.491585, + "rtt_ns": 2018791, + "rtt_ms": 2.018791, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "411", - "timestamp": "2025-11-27T01:21:48.329956859Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:46.680174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301733, - "rtt_ms": 2.301733, + "rtt_ns": 1508875, + "rtt_ms": 1.508875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:48.330049059Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:46.680178-08:00" }, { "operation": "add_edge", - "rtt_ns": 2390333, - "rtt_ms": 2.390333, + "rtt_ns": 2786625, + "rtt_ms": 2.786625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:48.330119869Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:46.680194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646294, - "rtt_ms": 1.646294, + "rtt_ns": 1664083, + "rtt_ms": 1.664083, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:48.330160708Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:46.680332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515735, - "rtt_ms": 1.515735, + "rtt_ns": 2061875, + "rtt_ms": 2.061875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:48.330222718Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.681188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388825, - "rtt_ms": 1.388825, + "rtt_ns": 1902375, + "rtt_ms": 1.902375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:48.330229018Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:46.681399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236866, - "rtt_ms": 1.236866, + "rtt_ns": 1839875, + "rtt_ms": 1.839875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:48.330250668Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:46.681439-08:00" }, { "operation": "add_edge", - "rtt_ns": 652048, - "rtt_ms": 0.652048, + "rtt_ns": 2691500, + "rtt_ms": 2.6915, "checkpoint": 0, "vertex_from": "5", "vertex_to": "100", - "timestamp": "2025-11-27T01:21:48.330414028Z" + "timestamp": "2025-11-27T04:01:46.681533-08:00" }, { "operation": "add_edge", - "rtt_ns": 636758, - "rtt_ms": 0.636758, + "rtt_ns": 1526459, + "rtt_ms": 1.526459, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:48.330514567Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:46.681721-08:00" }, { "operation": "add_edge", - "rtt_ns": 698068, - "rtt_ms": 0.698068, + "rtt_ns": 2096041, + "rtt_ms": 2.096041, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "559", - "timestamp": "2025-11-27T01:21:48.330621587Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:46.681751-08:00" }, { "operation": "add_edge", - "rtt_ns": 695608, - "rtt_ms": 0.695608, + "rtt_ns": 1578125, + "rtt_ms": 1.578125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:48.330654627Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:46.681753-08:00" }, { "operation": "add_edge", - "rtt_ns": 644028, - "rtt_ms": 0.644028, + "rtt_ns": 1705875, + "rtt_ms": 1.705875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:48.330694797Z" + "vertex_to": "559", + "timestamp": "2025-11-27T04:01:46.68178-08:00" }, { "operation": "add_edge", - "rtt_ns": 626218, - "rtt_ms": 0.626218, + "rtt_ns": 1450542, + "rtt_ms": 1.450542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:48.330788396Z" + "vertex_to": "810", + "timestamp": "2025-11-27T04:01:46.681784-08:00" }, { - "operation": "add_edge", - "rtt_ns": 584588, - "rtt_ms": 0.584588, + "operation": "add_vertex", + "rtt_ns": 1665292, + "rtt_ms": 1.665292, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "810", - "timestamp": "2025-11-27T01:21:48.330836316Z" + "vertex_from": "414", + "timestamp": "2025-11-27T04:01:46.681845-08:00" }, { "operation": "add_edge", - "rtt_ns": 780257, - "rtt_ms": 0.780257, + "rtt_ns": 1220125, + "rtt_ms": 1.220125, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:48.330901526Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:46.682622-08:00" }, { "operation": "add_edge", - "rtt_ns": 697538, - "rtt_ms": 0.697538, + "rtt_ns": 1674208, + "rtt_ms": 1.674208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:48.330929166Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 810458, - "rtt_ms": 0.810458, - "checkpoint": 0, - "vertex_from": "414", - "timestamp": "2025-11-27T01:21:48.331035576Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.683208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156566, - "rtt_ms": 1.156566, + "rtt_ns": 1521000, + "rtt_ms": 1.521, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "880", - "timestamp": "2025-11-27T01:21:48.331572564Z" + "vertex_to": "414", + "timestamp": "2025-11-27T04:01:46.683366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352726, - "rtt_ms": 1.352726, + "rtt_ns": 1952208, + "rtt_ms": 1.952208, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:48.331869143Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.683393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151533, - "rtt_ms": 2.151533, + "rtt_ns": 1850250, + "rtt_ms": 1.85025, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.33277477Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.683604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186963, - "rtt_ms": 2.186963, + "rtt_ns": 2428375, + "rtt_ms": 2.428375, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.33284333Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:01:46.683618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169643, - "rtt_ms": 2.169643, + "rtt_ns": 2115584, + "rtt_ms": 2.115584, "checkpoint": 0, "vertex_from": "5", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.33286732Z" + "timestamp": "2025-11-27T04:01:46.683838-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099504, - "rtt_ms": 2.099504, + "rtt_ns": 2068667, + "rtt_ms": 2.068667, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:48.33288946Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:46.68385-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087603, - "rtt_ms": 2.087603, + "rtt_ns": 2203666, + "rtt_ms": 2.203666, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:48.332925209Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:46.683955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574751, - "rtt_ms": 2.574751, + "rtt_ns": 2363959, + "rtt_ms": 2.363959, "checkpoint": 0, "vertex_from": "5", "vertex_to": "37", - "timestamp": "2025-11-27T01:21:48.333505827Z" + "timestamp": "2025-11-27T04:01:46.68415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978883, - "rtt_ms": 1.978883, + "rtt_ns": 1258584, + "rtt_ms": 1.258584, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:48.333552957Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:46.684467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2680331, - "rtt_ms": 2.680331, + "rtt_ns": 1434417, + "rtt_ms": 1.434417, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.333583417Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:46.684801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742984, - "rtt_ms": 1.742984, + "rtt_ns": 2369542, + "rtt_ms": 2.369542, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:48.333613347Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:46.684992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2578091, - "rtt_ms": 2.578091, + "rtt_ns": 1755333, + "rtt_ms": 1.755333, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "414", - "timestamp": "2025-11-27T01:21:48.333614137Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:01:46.685157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534325, - "rtt_ms": 1.534325, + "rtt_ns": 1147083, + "rtt_ms": 1.147083, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:48.334311185Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:46.685299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388216, - "rtt_ms": 1.388216, + "rtt_ns": 1374042, + "rtt_ms": 1.374042, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:48.334315245Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:46.68533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448515, - "rtt_ms": 1.448515, + "rtt_ns": 1496250, + "rtt_ms": 1.49625, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "28", - "timestamp": "2025-11-27T01:21:48.334319995Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:46.685335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476525, - "rtt_ms": 1.476525, + "rtt_ns": 1763875, + "rtt_ms": 1.763875, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "684", - "timestamp": "2025-11-27T01:21:48.334321205Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:01:46.685369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477645, - "rtt_ms": 1.477645, + "rtt_ns": 2102625, + "rtt_ms": 2.102625, "checkpoint": 0, "vertex_from": "5", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:48.334369435Z" + "timestamp": "2025-11-27T04:01:46.685721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123447, - "rtt_ms": 1.123447, + "rtt_ns": 1944916, + "rtt_ms": 1.944916, "checkpoint": 0, "vertex_from": "5", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:48.334631754Z" + "timestamp": "2025-11-27T04:01:46.685796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100786, - "rtt_ms": 1.100786, + "rtt_ns": 1891500, + "rtt_ms": 1.8915, "checkpoint": 0, "vertex_from": "5", "vertex_to": "10", - "timestamp": "2025-11-27T01:21:48.334716223Z" + "timestamp": "2025-11-27T04:01:46.68636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183156, - "rtt_ms": 1.183156, + "rtt_ns": 1843584, + "rtt_ms": 1.843584, "checkpoint": 0, "vertex_from": "5", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:48.334737553Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:46.686837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228006, - "rtt_ms": 1.228006, + "rtt_ns": 2399833, + "rtt_ms": 2.399833, "checkpoint": 0, "vertex_from": "5", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:48.334843643Z" + "timestamp": "2025-11-27T04:01:46.687202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711284, - "rtt_ms": 1.711284, - "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:48.335295831Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1050446, - "rtt_ms": 1.050446, + "rtt_ns": 2066833, + "rtt_ms": 2.066833, "checkpoint": 0, "vertex_from": "6", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:48.335371741Z" + "timestamp": "2025-11-27T04:01:46.687367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002516, - "rtt_ms": 1.002516, + "rtt_ns": 2031625, + "rtt_ms": 2.031625, "checkpoint": 0, "vertex_from": "6", "vertex_to": "10", - "timestamp": "2025-11-27T01:21:48.335373961Z" + "timestamp": "2025-11-27T04:01:46.687367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114806, - "rtt_ms": 1.114806, + "rtt_ns": 2049333, + "rtt_ms": 2.049333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "8", - "timestamp": "2025-11-27T01:21:48.335432351Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:46.68738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215386, - "rtt_ms": 1.215386, + "rtt_ns": 2023625, + "rtt_ms": 2.023625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.335538391Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:46.687394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330975, - "rtt_ms": 1.330975, + "rtt_ns": 1631625, + "rtt_ms": 1.631625, "checkpoint": 0, - "vertex_from": "5", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:48.3356444Z" + "vertex_from": "6", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.687428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646754, - "rtt_ms": 1.646754, + "rtt_ns": 1865417, + "rtt_ms": 1.865417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:48.336279758Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:46.687588-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533482, - "rtt_ms": 2.533482, + "rtt_ns": 3130125, + "rtt_ms": 3.130125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:48.337250665Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:01:46.688288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962584, - "rtt_ms": 1.962584, + "rtt_ns": 1399500, + "rtt_ms": 1.3995, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.337335425Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.688794-08:00" }, { "operation": "add_edge", - "rtt_ns": 2612172, - "rtt_ms": 2.612172, + "rtt_ns": 1431375, + "rtt_ms": 1.431375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.337350705Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:46.688813-08:00" }, { "operation": "add_edge", - "rtt_ns": 2584292, - "rtt_ms": 2.584292, + "rtt_ns": 1978333, + "rtt_ms": 1.978333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.337429505Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:46.688818-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022514, - "rtt_ms": 2.022514, + "rtt_ns": 2543583, + "rtt_ms": 2.543583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "707", - "timestamp": "2025-11-27T01:21:48.337456005Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:46.688905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865594, - "rtt_ms": 1.865594, + "rtt_ns": 1749333, + "rtt_ms": 1.749333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.337511164Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.688952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323216, - "rtt_ms": 1.323216, + "rtt_ns": 1875667, + "rtt_ms": 1.875667, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:48.337604094Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:46.689244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2325943, - "rtt_ms": 2.325943, + "rtt_ns": 2072000, + "rtt_ms": 2.072, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.337623194Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:46.689501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097393, - "rtt_ms": 2.097393, + "rtt_ns": 2157708, + "rtt_ms": 2.157708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.337636804Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:46.689746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319333, - "rtt_ms": 2.319333, + "rtt_ns": 2496000, + "rtt_ms": 2.496, "checkpoint": 0, "vertex_from": "6", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:48.337694914Z" + "timestamp": "2025-11-27T04:01:46.689864-08:00" }, { "operation": "add_edge", - "rtt_ns": 864517, - "rtt_ms": 0.864517, + "rtt_ns": 1242542, + "rtt_ms": 1.242542, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.338116272Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:46.690037-08:00" }, { "operation": "add_edge", - "rtt_ns": 799817, - "rtt_ms": 0.799817, + "rtt_ns": 1386834, + "rtt_ms": 1.386834, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:48.338151722Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.6902-08:00" }, { "operation": "add_edge", - "rtt_ns": 826337, - "rtt_ms": 0.826337, + "rtt_ns": 1352125, + "rtt_ms": 1.352125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:48.338163782Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:46.690305-08:00" }, { "operation": "add_edge", - "rtt_ns": 740497, - "rtt_ms": 0.740497, + "rtt_ns": 1507958, + "rtt_ms": 1.507958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.338171172Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:46.690327-08:00" }, { "operation": "add_edge", - "rtt_ns": 720828, - "rtt_ms": 0.720828, + "rtt_ns": 2127250, + "rtt_ms": 2.12725, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.338233092Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:46.690416-08:00" }, { "operation": "add_edge", - "rtt_ns": 803597, - "rtt_ms": 0.803597, + "rtt_ns": 1594375, + "rtt_ms": 1.594375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:48.338260842Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:46.690839-08:00" }, { "operation": "add_edge", - "rtt_ns": 708288, - "rtt_ms": 0.708288, + "rtt_ns": 2086625, + "rtt_ms": 2.086625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:48.338313452Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.690992-08:00" }, { - "operation": "add_edge", - "rtt_ns": 696718, - "rtt_ms": 0.696718, + "operation": "add_vertex", + "rtt_ns": 1000916, + "rtt_ms": 1.000916, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.338336712Z" + "vertex_from": "996", + "timestamp": "2025-11-27T04:01:46.691308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062516, - "rtt_ms": 1.062516, + "rtt_ns": 2260750, + "rtt_ms": 2.26075, "checkpoint": 0, "vertex_from": "6", "vertex_to": "113", - "timestamp": "2025-11-27T01:21:48.33875865Z" + "timestamp": "2025-11-27T04:01:46.692008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404656, - "rtt_ms": 1.404656, + "rtt_ns": 2147917, + "rtt_ms": 2.147917, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:48.33902876Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.692186-08:00" }, { "operation": "add_vertex", - "rtt_ns": 945227, - "rtt_ms": 0.945227, + "rtt_ns": 2718250, + "rtt_ms": 2.71825, "checkpoint": 0, "vertex_from": "342", - "timestamp": "2025-11-27T01:21:48.339066139Z" + "timestamp": "2025-11-27T04:01:46.692583-08:00" }, { "operation": "add_edge", - "rtt_ns": 2616522, - "rtt_ms": 2.616522, + "rtt_ns": 3149209, + "rtt_ms": 3.149209, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.340769584Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:46.692653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2682452, - "rtt_ms": 2.682452, + "rtt_ns": 2401958, + "rtt_ms": 2.401958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.340848004Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.692819-08:00" }, { "operation": "add_edge", - "rtt_ns": 2596792, - "rtt_ms": 2.596792, + "rtt_ns": 2720250, + "rtt_ms": 2.72025, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.340860124Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2697991, - "rtt_ms": 2.697991, - "checkpoint": 0, - "vertex_from": "996", - "timestamp": "2025-11-27T01:21:48.340874093Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.692921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2577211, - "rtt_ms": 2.577211, + "rtt_ns": 1794750, + "rtt_ms": 1.79475, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.340892343Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:01:46.693103-08:00" }, { "operation": "add_edge", - "rtt_ns": 2592761, - "rtt_ms": 2.592761, + "rtt_ns": 2232958, + "rtt_ms": 2.232958, "checkpoint": 0, "vertex_from": "6", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.340930963Z" + "timestamp": "2025-11-27T04:01:46.693226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920364, - "rtt_ms": 1.920364, + "rtt_ns": 2515791, + "rtt_ms": 2.515791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "342", - "timestamp": "2025-11-27T01:21:48.340987143Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:46.693358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996443, - "rtt_ms": 1.996443, + "rtt_ns": 3048459, + "rtt_ms": 3.048459, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:48.341026583Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:46.693376-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284263, - "rtt_ms": 2.284263, + "rtt_ns": 1399125, + "rtt_ms": 1.399125, "checkpoint": 0, "vertex_from": "6", "vertex_to": "226", - "timestamp": "2025-11-27T01:21:48.341044703Z" + "timestamp": "2025-11-27T04:01:46.693408-08:00" }, { "operation": "add_edge", - "rtt_ns": 2834371, - "rtt_ms": 2.834371, + "rtt_ns": 1521042, + "rtt_ms": 1.521042, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:48.341069603Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:46.693708-08:00" }, { "operation": "add_edge", - "rtt_ns": 717007, - "rtt_ms": 0.717007, + "rtt_ns": 1179584, + "rtt_ms": 1.179584, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:48.341488631Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:46.693999-08:00" }, { "operation": "add_edge", - "rtt_ns": 639237, - "rtt_ms": 0.639237, + "rtt_ns": 1367125, + "rtt_ms": 1.367125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:48.341489091Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:46.694021-08:00" }, { "operation": "add_edge", - "rtt_ns": 751858, - "rtt_ms": 0.751858, + "rtt_ns": 1774250, + "rtt_ms": 1.77425, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:48.341614141Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:01:46.694357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296756, - "rtt_ms": 1.296756, + "rtt_ns": 1709958, + "rtt_ms": 1.709958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.342190599Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:46.694632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238416, - "rtt_ms": 1.238416, + "rtt_ns": 1712333, + "rtt_ms": 1.712333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.342227159Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.694816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391176, - "rtt_ms": 1.391176, + "rtt_ns": 1698500, + "rtt_ms": 1.6985, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "996", - "timestamp": "2025-11-27T01:21:48.342265719Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:46.694925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263996, - "rtt_ms": 1.263996, + "rtt_ns": 1745417, + "rtt_ms": 1.745417, "checkpoint": 0, "vertex_from": "6", "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.342310399Z" + "timestamp": "2025-11-27T04:01:46.695155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242776, - "rtt_ms": 1.242776, + "rtt_ns": 1793625, + "rtt_ms": 1.793625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.342313509Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:46.695172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426255, - "rtt_ms": 1.426255, + "rtt_ns": 1375500, + "rtt_ms": 1.3755, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:48.342455718Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.695397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084773, - "rtt_ms": 2.084773, + "rtt_ns": 1789000, + "rtt_ms": 1.789, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:48.343018166Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.695498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548795, - "rtt_ms": 1.548795, + "rtt_ns": 2233500, + "rtt_ms": 2.2335, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:48.343039786Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:46.695595-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1577685, - "rtt_ms": 1.577685, + "operation": "add_vertex", + "rtt_ns": 854208, + "rtt_ms": 0.854208, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.343068696Z" + "vertex_from": "474", + "timestamp": "2025-11-27T04:01:46.696028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506245, - "rtt_ms": 1.506245, + "rtt_ns": 1723792, + "rtt_ms": 1.723792, "checkpoint": 0, "vertex_from": "6", "vertex_to": "713", - "timestamp": "2025-11-27T01:21:48.343122166Z" + "timestamp": "2025-11-27T04:01:46.696082-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152713, - "rtt_ms": 2.152713, + "rtt_ns": 2138959, + "rtt_ms": 2.138959, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.344381462Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:46.696139-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261053, - "rtt_ms": 2.261053, + "rtt_ns": 1813208, + "rtt_ms": 1.813208, "checkpoint": 0, "vertex_from": "6", "vertex_to": "387", - "timestamp": "2025-11-27T01:21:48.344453162Z" + "timestamp": "2025-11-27T04:01:46.696446-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148683, - "rtt_ms": 2.148683, + "rtt_ns": 1850375, + "rtt_ms": 1.850375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.344460442Z" + "vertex_to": "7", + "timestamp": "2025-11-27T04:01:46.696776-08:00" }, { "operation": "add_edge", - "rtt_ns": 2213043, - "rtt_ms": 2.213043, + "rtt_ns": 1837750, + "rtt_ms": 1.83775, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "7", - "timestamp": "2025-11-27T01:21:48.344480262Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2186922, - "rtt_ms": 2.186922, - "checkpoint": 0, - "vertex_from": "474", - "timestamp": "2025-11-27T01:21:48.344509031Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.697236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479655, - "rtt_ms": 1.479655, + "rtt_ns": 1736875, + "rtt_ms": 1.736875, "checkpoint": 0, "vertex_from": "6", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:48.344520941Z" + "timestamp": "2025-11-27T04:01:46.697333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571815, - "rtt_ms": 1.571815, + "rtt_ns": 1850542, + "rtt_ms": 1.850542, "checkpoint": 0, "vertex_from": "6", "vertex_to": "85", - "timestamp": "2025-11-27T01:21:48.344592971Z" + "timestamp": "2025-11-27T04:01:46.697351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489185, - "rtt_ms": 1.489185, + "rtt_ns": 1243542, + "rtt_ms": 1.243542, "checkpoint": 0, "vertex_from": "6", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.344612901Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1558655, - "rtt_ms": 1.558655, - "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.344629841Z" + "timestamp": "2025-11-27T04:01:46.697384-08:00" }, { "operation": "add_edge", - "rtt_ns": 2279793, - "rtt_ms": 2.279793, + "rtt_ns": 2237250, + "rtt_ms": 2.23725, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.344737821Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.697393-08:00" }, { "operation": "add_edge", - "rtt_ns": 861047, - "rtt_ms": 0.861047, + "rtt_ns": 2730500, + "rtt_ms": 2.7305, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.345244449Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.697547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531205, - "rtt_ms": 1.531205, + "rtt_ns": 1571708, + "rtt_ms": 1.571708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:48.345985797Z" + "vertex_to": "474", + "timestamp": "2025-11-27T04:01:46.6976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512136, - "rtt_ms": 1.512136, + "rtt_ns": 1938917, + "rtt_ms": 1.938917, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:48.345994967Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.698023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543535, - "rtt_ms": 1.543535, + "rtt_ns": 1265250, + "rtt_ms": 1.26525, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:48.346005477Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:46.698043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508546, - "rtt_ms": 1.508546, + "rtt_ns": 994459, + "rtt_ms": 0.994459, "checkpoint": 0, "vertex_from": "6", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.346031627Z" + "timestamp": "2025-11-27T04:01:46.698347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526196, - "rtt_ms": 1.526196, + "rtt_ns": 2247958, + "rtt_ms": 2.247958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "474", - "timestamp": "2025-11-27T01:21:48.346035907Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.698697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657475, - "rtt_ms": 1.657475, + "rtt_ns": 1831208, + "rtt_ms": 1.831208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:48.346289276Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:46.699068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209576, - "rtt_ms": 1.209576, + "rtt_ns": 1880041, + "rtt_ms": 1.880041, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:48.346456115Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:46.699215-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284042, - "rtt_ms": 2.284042, + "rtt_ns": 1615500, + "rtt_ms": 1.6155, "checkpoint": 0, "vertex_from": "6", "vertex_to": "897", - "timestamp": "2025-11-27T01:21:48.347023303Z" + "timestamp": "2025-11-27T04:01:46.699217-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495012, - "rtt_ms": 2.495012, + "rtt_ns": 1804500, + "rtt_ms": 1.8045, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:48.347109853Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:46.699354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2549822, - "rtt_ms": 2.549822, + "rtt_ns": 2116416, + "rtt_ms": 2.116416, "checkpoint": 0, "vertex_from": "6", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:48.347145203Z" + "timestamp": "2025-11-27T04:01:46.699502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192106, - "rtt_ms": 1.192106, + "rtt_ns": 1521333, + "rtt_ms": 1.521333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.347225063Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:46.699565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003193, - "rtt_ms": 2.003193, + "rtt_ns": 1313625, + "rtt_ms": 1.313625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:48.34801122Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:46.699668-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079353, - "rtt_ms": 2.079353, + "rtt_ns": 2319708, + "rtt_ms": 2.319708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:48.34807724Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:46.699714-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130163, - "rtt_ms": 2.130163, + "rtt_ns": 1710458, + "rtt_ms": 1.710458, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:48.34811763Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:46.699735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092843, - "rtt_ms": 2.092843, + "rtt_ns": 1189833, + "rtt_ms": 1.189833, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:48.34813094Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:46.699888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920874, - "rtt_ms": 1.920874, + "rtt_ns": 1308167, + "rtt_ms": 1.308167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.348212Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:46.700378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758115, - "rtt_ms": 1.758115, + "rtt_ns": 1416500, + "rtt_ms": 1.4165, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:48.34821561Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.700634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234476, - "rtt_ms": 1.234476, + "rtt_ns": 1292334, + "rtt_ms": 1.292334, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:48.348259789Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:46.700652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083286, - "rtt_ms": 1.083286, + "rtt_ns": 1469625, + "rtt_ms": 1.469625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:48.348309609Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:46.700686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197686, - "rtt_ms": 1.197686, + "rtt_ns": 1580000, + "rtt_ms": 1.58, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:48.348345219Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:46.701469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234936, - "rtt_ms": 1.234936, + "rtt_ns": 2473750, + "rtt_ms": 2.47375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:48.348347239Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.702189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023167, - "rtt_ms": 1.023167, + "rtt_ns": 2706833, + "rtt_ms": 2.706833, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "23", - "timestamp": "2025-11-27T01:21:48.349037397Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:46.702211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704444, - "rtt_ms": 1.704444, + "rtt_ns": 2667833, + "rtt_ms": 2.667833, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:48.349783454Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:46.702337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334845, - "rtt_ms": 1.334845, + "rtt_ns": 2785583, + "rtt_ms": 2.785583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:48.349851504Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:46.702352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389765, - "rtt_ms": 1.389765, + "rtt_ns": 2667417, + "rtt_ms": 2.667417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:48.349876274Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:01:46.702404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327256, - "rtt_ms": 1.327256, + "rtt_ns": 2341875, + "rtt_ms": 2.341875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.349889814Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:46.702949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378985, - "rtt_ms": 1.378985, + "rtt_ns": 1498209, + "rtt_ms": 1.498209, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:48.349893434Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:46.70297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427566, - "rtt_ms": 1.427566, + "rtt_ns": 2486166, + "rtt_ms": 2.486166, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:48.349982504Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:46.703173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434676, - "rtt_ms": 1.434676, + "rtt_ns": 1057292, + "rtt_ms": 1.057292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "51", - "timestamp": "2025-11-27T01:21:48.350014184Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:46.703269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584864, - "rtt_ms": 1.584864, + "rtt_ns": 2688084, + "rtt_ms": 2.688084, "checkpoint": 0, "vertex_from": "6", "vertex_to": "572", - "timestamp": "2025-11-27T01:21:48.350079033Z" + "timestamp": "2025-11-27T04:01:46.703324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576765, - "rtt_ms": 1.576765, + "rtt_ns": 1136750, + "rtt_ms": 1.13675, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:48.350110493Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:46.703327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232486, - "rtt_ms": 1.232486, + "rtt_ns": 2679333, + "rtt_ms": 2.679333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:48.350274883Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:46.703332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156333, - "rtt_ms": 2.156333, + "rtt_ns": 1848166, + "rtt_ms": 1.848166, "checkpoint": 0, "vertex_from": "6", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:48.351942907Z" + "timestamp": "2025-11-27T04:01:46.704253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158033, - "rtt_ms": 2.158033, + "rtt_ns": 1278084, + "rtt_ms": 1.278084, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:48.352011547Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:46.704452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955754, - "rtt_ms": 1.955754, + "rtt_ns": 2506583, + "rtt_ms": 2.506583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.352036107Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:01:46.704844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145273, - "rtt_ms": 2.145273, + "rtt_ns": 1657125, + "rtt_ms": 1.657125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:48.352037587Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.704928-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196213, - "rtt_ms": 2.196213, + "rtt_ns": 2664584, + "rtt_ms": 2.664584, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.352075167Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:46.705017-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088123, - "rtt_ms": 2.088123, + "rtt_ns": 2083250, + "rtt_ms": 2.08325, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:48.352199896Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:46.705034-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206272, - "rtt_ms": 2.206272, + "rtt_ns": 1735166, + "rtt_ms": 1.735166, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:48.352221826Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:46.70506-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391762, - "rtt_ms": 2.391762, + "rtt_ns": 1743125, + "rtt_ms": 1.743125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.352287616Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.705077-08:00" }, { "operation": "add_edge", - "rtt_ns": 2684661, - "rtt_ms": 2.684661, + "rtt_ns": 2129167, + "rtt_ms": 2.129167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:48.352668335Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.7051-08:00" }, { "operation": "add_edge", - "rtt_ns": 2645001, - "rtt_ms": 2.645001, + "rtt_ns": 1812750, + "rtt_ms": 1.81275, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.352923054Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:46.705141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010787, - "rtt_ms": 1.010787, + "rtt_ns": 1339292, + "rtt_ms": 1.339292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.352955064Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:46.705794-08:00" }, { "operation": "add_edge", - "rtt_ns": 980607, - "rtt_ms": 0.980607, + "rtt_ns": 1601791, + "rtt_ms": 1.601791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.353019674Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:46.705855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449135, - "rtt_ms": 1.449135, + "rtt_ns": 1239500, + "rtt_ms": 1.2395, "checkpoint": 0, "vertex_from": "6", "vertex_to": "225", - "timestamp": "2025-11-27T01:21:48.353463742Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1579435, - "rtt_ms": 1.579435, - "checkpoint": 0, - "vertex_from": "422", - "timestamp": "2025-11-27T01:21:48.353658412Z" + "timestamp": "2025-11-27T04:01:46.706168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666755, - "rtt_ms": 1.666755, + "rtt_ns": 1385583, + "rtt_ms": 1.385583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:48.353705842Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:46.70623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505576, - "rtt_ms": 1.505576, + "rtt_ns": 1350541, + "rtt_ms": 1.350541, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:48.353707972Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:46.706493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743254, - "rtt_ms": 1.743254, + "rtt_ns": 2018458, + "rtt_ms": 2.018458, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:48.35403252Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:46.707096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422935, - "rtt_ms": 1.422935, + "rtt_ns": 1253958, + "rtt_ms": 1.253958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:48.35409335Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:46.707111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905144, - "rtt_ms": 1.905144, + "rtt_ns": 2131542, + "rtt_ms": 2.131542, "checkpoint": 0, "vertex_from": "6", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:48.35412957Z" + "timestamp": "2025-11-27T04:01:46.707232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188166, - "rtt_ms": 1.188166, + "rtt_ns": 2227250, + "rtt_ms": 2.22725, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.35414435Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.707245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239756, - "rtt_ms": 1.239756, + "rtt_ns": 2213000, + "rtt_ms": 2.213, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:48.35416452Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:46.707248-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072193, - "rtt_ms": 2.072193, + "rtt_ns": 1589709, + "rtt_ms": 1.589709, "checkpoint": 0, "vertex_from": "6", "vertex_to": "147", - "timestamp": "2025-11-27T01:21:48.355093297Z" + "timestamp": "2025-11-27T04:01:46.707821-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2765500, + "rtt_ms": 2.7655, + "checkpoint": 0, + "vertex_from": "422", + "timestamp": "2025-11-27T04:01:46.707826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940984, - "rtt_ms": 1.940984, + "rtt_ns": 2113750, + "rtt_ms": 2.11375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:48.355406206Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:46.70791-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253552, - "rtt_ms": 2.253552, + "rtt_ns": 2009708, + "rtt_ms": 2.009708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:48.355960774Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:46.708179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316903, - "rtt_ms": 2.316903, + "rtt_ns": 2265000, + "rtt_ms": 2.265, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:48.356027404Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:46.708758-08:00" }, { "operation": "add_edge", - "rtt_ns": 2406652, - "rtt_ms": 2.406652, + "rtt_ns": 1633083, + "rtt_ms": 1.633083, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "422", - "timestamp": "2025-11-27T01:21:48.356065464Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:46.708866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972174, - "rtt_ms": 1.972174, + "rtt_ns": 2240791, + "rtt_ms": 2.240791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.356066484Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:46.709338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940144, - "rtt_ms": 1.940144, + "rtt_ns": 2288917, + "rtt_ms": 2.288917, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:48.356086424Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:46.709401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2120224, - "rtt_ms": 2.120224, + "rtt_ns": 2170667, + "rtt_ms": 2.170667, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:48.356154374Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:46.70942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054174, - "rtt_ms": 2.054174, + "rtt_ns": 1255291, + "rtt_ms": 1.255291, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:48.356185904Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:46.709436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022904, - "rtt_ms": 2.022904, + "rtt_ns": 2193292, + "rtt_ms": 2.193292, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:48.356189214Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.709439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431215, - "rtt_ms": 1.431215, + "rtt_ns": 1605709, + "rtt_ms": 1.605709, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:48.356838991Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:46.709519-08:00" }, { "operation": "add_edge", - "rtt_ns": 904627, - "rtt_ms": 0.904627, + "rtt_ns": 1714042, + "rtt_ms": 1.714042, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:48.356868231Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:46.709536-08:00" }, { "operation": "add_edge", - "rtt_ns": 888317, - "rtt_ms": 0.888317, + "rtt_ns": 1781708, + "rtt_ms": 1.781708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:48.356956361Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:01:46.709608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864104, - "rtt_ms": 1.864104, + "rtt_ns": 1616333, + "rtt_ms": 1.616333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:48.356959281Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:46.710485-08:00" }, { "operation": "add_vertex", - "rtt_ns": 923217, - "rtt_ms": 0.923217, + "rtt_ns": 1409542, + "rtt_ms": 1.409542, "checkpoint": 0, "vertex_from": "155", - "timestamp": "2025-11-27T01:21:48.356992281Z" + "timestamp": "2025-11-27T04:01:46.71083-08:00" }, { "operation": "add_edge", - "rtt_ns": 984377, - "rtt_ms": 0.984377, + "rtt_ns": 1277416, + "rtt_ms": 1.277416, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.357012711Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:46.710888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540994, - "rtt_ms": 1.540994, + "rtt_ns": 1397500, + "rtt_ms": 1.3975, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:48.357697648Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:01:46.710934-08:00" }, { "operation": "add_edge", - "rtt_ns": 941207, - "rtt_ms": 0.941207, + "rtt_ns": 1605500, + "rtt_ms": 1.6055, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:48.357810718Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:46.710944-08:00" }, { "operation": "add_edge", - "rtt_ns": 995407, - "rtt_ms": 0.995407, + "rtt_ns": 2193250, + "rtt_ms": 2.19325, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:48.357835908Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:46.710953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646624, - "rtt_ms": 1.646624, + "rtt_ns": 1522416, + "rtt_ms": 1.522416, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "101", - "timestamp": "2025-11-27T01:21:48.357837548Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:46.710963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656284, - "rtt_ms": 1.656284, + "rtt_ns": 1679750, + "rtt_ms": 1.67975, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:48.357844138Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:46.711081-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1755204, - "rtt_ms": 1.755204, + "rtt_ns": 1746375, + "rtt_ms": 1.746375, "checkpoint": 0, "vertex_from": "760", - "timestamp": "2025-11-27T01:21:48.357846768Z" + "timestamp": "2025-11-27T04:01:46.711183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189206, - "rtt_ms": 1.189206, + "rtt_ns": 2196084, + "rtt_ms": 2.196084, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.358149177Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:46.711716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687834, - "rtt_ms": 1.687834, + "rtt_ns": 1973500, + "rtt_ms": 1.9735, "checkpoint": 0, "vertex_from": "6", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.358648795Z" + "timestamp": "2025-11-27T04:01:46.712908-08:00" }, { "operation": "add_edge", - "rtt_ns": 869967, - "rtt_ms": 0.869967, + "rtt_ns": 1955708, + "rtt_ms": 1.955708, "checkpoint": 0, "vertex_from": "6", "vertex_to": "449", - "timestamp": "2025-11-27T01:21:48.358682335Z" + "timestamp": "2025-11-27T04:01:46.712921-08:00" }, { "operation": "add_edge", - "rtt_ns": 938317, - "rtt_ms": 0.938317, + "rtt_ns": 1928333, + "rtt_ms": 1.928333, "checkpoint": 0, "vertex_from": "6", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:48.358775675Z" + "timestamp": "2025-11-27T04:01:46.71301-08:00" }, { "operation": "add_edge", - "rtt_ns": 985827, - "rtt_ms": 0.985827, + "rtt_ns": 2194375, + "rtt_ms": 2.194375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.358825145Z" + "vertex_to": "155", + "timestamp": "2025-11-27T04:01:46.713025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157297, - "rtt_ms": 1.157297, + "rtt_ns": 1852125, + "rtt_ms": 1.852125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:48.358856995Z" + "vertex_to": "760", + "timestamp": "2025-11-27T04:01:46.713035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870534, - "rtt_ms": 1.870534, + "rtt_ns": 2116459, + "rtt_ms": 2.116459, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "155", - "timestamp": "2025-11-27T01:21:48.358863335Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:46.713061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849064, - "rtt_ms": 1.849064, + "rtt_ns": 2116042, + "rtt_ms": 2.116042, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:48.358863615Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:46.713071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186446, - "rtt_ms": 1.186446, + "rtt_ns": 2188333, + "rtt_ms": 2.188333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "60", - "timestamp": "2025-11-27T01:21:48.359032234Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.713077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206576, - "rtt_ms": 1.206576, + "rtt_ns": 1380750, + "rtt_ms": 1.38075, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "760", - "timestamp": "2025-11-27T01:21:48.359054164Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:46.713097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377986, - "rtt_ms": 1.377986, + "rtt_ns": 2623791, + "rtt_ms": 2.623791, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:48.360063441Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:46.713109-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318872, - "rtt_ms": 2.318872, + "rtt_ns": 1098625, + "rtt_ms": 1.098625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "662", - "timestamp": "2025-11-27T01:21:48.360470199Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:46.714171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2599072, - "rtt_ms": 2.599072, + "rtt_ns": 1217708, + "rtt_ms": 1.217708, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:48.361249527Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.714243-08:00" }, { "operation": "add_edge", - "rtt_ns": 2488342, - "rtt_ms": 2.488342, + "rtt_ns": 1312042, + "rtt_ms": 1.312042, "checkpoint": 0, "vertex_from": "6", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:48.361314367Z" + "timestamp": "2025-11-27T04:01:46.714374-08:00" }, { "operation": "add_edge", - "rtt_ns": 2502241, - "rtt_ms": 2.502241, + "rtt_ns": 1319208, + "rtt_ms": 1.319208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:48.361367716Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:46.714417-08:00" }, { "operation": "add_edge", - "rtt_ns": 2549661, - "rtt_ms": 2.549661, + "rtt_ns": 1395583, + "rtt_ms": 1.395583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:48.361407606Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:46.714432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2581481, - "rtt_ms": 2.581481, + "rtt_ns": 1473875, + "rtt_ms": 1.473875, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:48.361446796Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:46.714485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443912, - "rtt_ms": 2.443912, + "rtt_ns": 1377291, + "rtt_ms": 1.377291, "checkpoint": 0, "vertex_from": "6", "vertex_to": "11", - "timestamp": "2025-11-27T01:21:48.361478586Z" + "timestamp": "2025-11-27T04:01:46.714487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2707571, - "rtt_ms": 2.707571, + "rtt_ns": 1644542, + "rtt_ms": 1.644542, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:48.361485026Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:01:46.714553-08:00" }, { "operation": "add_edge", - "rtt_ns": 2475832, - "rtt_ms": 2.475832, + "rtt_ns": 1522625, + "rtt_ms": 1.522625, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:48.361532536Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.714601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506475, - "rtt_ms": 1.506475, + "rtt_ns": 1895167, + "rtt_ms": 1.895167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.361571746Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:46.714817-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1322750, + "rtt_ms": 1.32275, + "checkpoint": 0, + "vertex_from": "6", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:46.715755-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1753833, + "rtt_ms": 1.753833, + "checkpoint": 0, + "vertex_from": "6", + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:46.715926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131237, - "rtt_ms": 1.131237, + "rtt_ns": 1553000, + "rtt_ms": 1.553, "checkpoint": 0, "vertex_from": "6", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:48.361604016Z" + "timestamp": "2025-11-27T04:01:46.715928-08:00" }, { "operation": "add_edge", - "rtt_ns": 972577, - "rtt_ms": 0.972577, + "rtt_ns": 1698208, + "rtt_ms": 1.698208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:48.362288644Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:46.715942-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1672041, + "rtt_ms": 1.672041, + "checkpoint": 0, + "vertex_from": "6", + "vertex_to": "309", + "timestamp": "2025-11-27T04:01:46.71609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011647, - "rtt_ms": 1.011647, + "rtt_ns": 1617291, + "rtt_ms": 1.617291, "checkpoint": 0, "vertex_from": "6", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:48.362380843Z" + "timestamp": "2025-11-27T04:01:46.716103-08:00" }, { "operation": "add_edge", - "rtt_ns": 995137, - "rtt_ms": 0.995137, + "rtt_ns": 1618250, + "rtt_ms": 1.61825, "checkpoint": 0, "vertex_from": "6", "vertex_to": "785", - "timestamp": "2025-11-27T01:21:48.362405043Z" + "timestamp": "2025-11-27T04:01:46.716106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168536, - "rtt_ms": 1.168536, + "rtt_ns": 1582208, + "rtt_ms": 1.582208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "309", - "timestamp": "2025-11-27T01:21:48.362419783Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:01:46.716136-08:00" }, { "operation": "add_edge", - "rtt_ns": 949947, - "rtt_ms": 0.949947, + "rtt_ns": 1375167, + "rtt_ms": 1.375167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:48.362429983Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:46.716193-08:00" }, { "operation": "add_edge", - "rtt_ns": 975167, - "rtt_ms": 0.975167, + "rtt_ns": 1710500, + "rtt_ms": 1.7105, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:48.362461873Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:46.716321-08:00" }, { "operation": "add_edge", - "rtt_ns": 983767, - "rtt_ms": 0.983767, + "rtt_ns": 1704083, + "rtt_ms": 1.704083, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:48.362518273Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:46.717631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095497, - "rtt_ms": 1.095497, + "rtt_ns": 1997375, + "rtt_ms": 1.997375, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "692", - "timestamp": "2025-11-27T01:21:48.362543453Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:46.717753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543955, - "rtt_ms": 1.543955, + "rtt_ns": 1840500, + "rtt_ms": 1.8405, "checkpoint": 0, "vertex_from": "6", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:48.363150651Z" + "timestamp": "2025-11-27T04:01:46.717769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580375, - "rtt_ms": 1.580375, + "rtt_ns": 1823917, + "rtt_ms": 1.823917, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:48.363154411Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:46.717769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269616, - "rtt_ms": 1.269616, + "rtt_ns": 1921792, + "rtt_ms": 1.921792, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:48.36356121Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:01:46.718116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333006, - "rtt_ms": 1.333006, + "rtt_ns": 1997167, + "rtt_ms": 1.997167, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "617", - "timestamp": "2025-11-27T01:21:48.363755009Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:46.718134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397246, - "rtt_ms": 1.397246, + "rtt_ns": 2046875, + "rtt_ms": 2.046875, "checkpoint": 0, "vertex_from": "6", "vertex_to": "18", - "timestamp": "2025-11-27T01:21:48.363779809Z" + "timestamp": "2025-11-27T04:01:46.718138-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2078875, + "rtt_ms": 2.078875, + "checkpoint": 0, + "vertex_from": "6", + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:46.718186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401396, - "rtt_ms": 1.401396, + "rtt_ns": 2113000, + "rtt_ms": 2.113, "checkpoint": 0, "vertex_from": "6", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:48.363808509Z" + "timestamp": "2025-11-27T04:01:46.718216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936773, - "rtt_ms": 1.936773, + "rtt_ns": 1918208, + "rtt_ms": 1.918208, + "checkpoint": 0, + "vertex_from": "6", + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:46.71824-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1332541, + "rtt_ms": 1.332541, "checkpoint": 0, "vertex_from": "6", "vertex_to": "404", - "timestamp": "2025-11-27T01:21:48.364481706Z" + "timestamp": "2025-11-27T04:01:46.718964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1999743, - "rtt_ms": 1.999743, + "rtt_ns": 1205541, + "rtt_ms": 1.205541, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "901", - "timestamp": "2025-11-27T01:21:48.364520146Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:46.718975-08:00" }, { "operation": "add_edge", - "rtt_ns": 2157343, - "rtt_ms": 2.157343, + "rtt_ns": 1411458, + "rtt_ms": 1.411458, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "428", - "timestamp": "2025-11-27T01:21:48.364621896Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.719166-08:00" }, { "operation": "add_edge", - "rtt_ns": 2354312, - "rtt_ms": 2.354312, + "rtt_ns": 1811000, + "rtt_ms": 1.811, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:48.364786975Z" + "vertex_to": "725", + "timestamp": "2025-11-27T04:01:46.719581-08:00" }, { "operation": "add_vertex", - "rtt_ns": 748398, - "rtt_ms": 0.748398, + "rtt_ns": 1492667, + "rtt_ms": 1.492667, "checkpoint": 0, "vertex_from": "358", - "timestamp": "2025-11-27T01:21:48.365271884Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2414842, - "rtt_ms": 2.414842, - "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "725", - "timestamp": "2025-11-27T01:21:48.365571203Z" + "timestamp": "2025-11-27T04:01:46.71971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889714, - "rtt_ms": 1.889714, + "rtt_ns": 1539417, + "rtt_ms": 1.539417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:48.365646863Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:46.719726-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1902563, - "rtt_ms": 1.902563, + "rtt_ns": 1677583, + "rtt_ms": 1.677583, "checkpoint": 0, "vertex_from": "984", - "timestamp": "2025-11-27T01:21:48.365686482Z" + "timestamp": "2025-11-27T04:01:46.719812-08:00" }, { "operation": "add_edge", - "rtt_ns": 2157592, - "rtt_ms": 2.157592, + "rtt_ns": 1803500, + "rtt_ms": 1.8035, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:48.365721802Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:46.719921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961413, - "rtt_ms": 1.961413, + "rtt_ns": 1793042, + "rtt_ms": 1.793042, "checkpoint": 0, "vertex_from": "6", "vertex_to": "228", - "timestamp": "2025-11-27T01:21:48.365772832Z" + "timestamp": "2025-11-27T04:01:46.719932-08:00" }, { "operation": "add_edge", - "rtt_ns": 3205759, - "rtt_ms": 3.205759, + "rtt_ns": 2002125, + "rtt_ms": 2.002125, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.36635827Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:01:46.720244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870784, - "rtt_ms": 1.870784, + "rtt_ns": 1562417, + "rtt_ms": 1.562417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "929", - "timestamp": "2025-11-27T01:21:48.36649449Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:46.720528-08:00" }, { "operation": "add_edge", - "rtt_ns": 921707, - "rtt_ms": 0.921707, + "rtt_ns": 2026542, + "rtt_ms": 2.026542, "checkpoint": 0, "vertex_from": "6", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.36649566Z" + "timestamp": "2025-11-27T04:01:46.721003-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030934, - "rtt_ms": 2.030934, + "rtt_ns": 1924917, + "rtt_ms": 1.924917, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:48.36651516Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:01:46.721092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254326, - "rtt_ms": 1.254326, + "rtt_ns": 1519417, + "rtt_ms": 1.519417, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "358", - "timestamp": "2025-11-27T01:21:48.36652675Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:46.721101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780604, - "rtt_ms": 1.780604, + "rtt_ns": 1203542, + "rtt_ms": 1.203542, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:48.366569919Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:46.721137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584054, - "rtt_ms": 1.584054, + "rtt_ns": 1515958, + "rtt_ms": 1.515958, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "313", - "timestamp": "2025-11-27T01:21:48.367232977Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:46.72144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610425, - "rtt_ms": 1.610425, + "rtt_ns": 1738792, + "rtt_ms": 1.738792, "checkpoint": 0, "vertex_from": "6", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:48.367385067Z" + "timestamp": "2025-11-27T04:01:46.721465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700125, - "rtt_ms": 1.700125, + "rtt_ns": 1279208, + "rtt_ms": 1.279208, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "984", - "timestamp": "2025-11-27T01:21:48.367386987Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:46.721524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966794, - "rtt_ms": 1.966794, + "rtt_ns": 1942583, + "rtt_ms": 1.942583, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:48.367690966Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:01:46.721653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417025, - "rtt_ms": 1.417025, + "rtt_ns": 1144583, + "rtt_ms": 1.144583, "checkpoint": 0, "vertex_from": "6", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.367934745Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1620615, - "rtt_ms": 1.620615, - "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:48.367980545Z" + "timestamp": "2025-11-27T04:01:46.721673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554815, - "rtt_ms": 1.554815, + "rtt_ns": 1957333, + "rtt_ms": 1.957333, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:48.368050525Z" + "vertex_to": "984", + "timestamp": "2025-11-27T04:01:46.72177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608074, - "rtt_ms": 1.608074, + "rtt_ns": 1776917, + "rtt_ms": 1.776917, "checkpoint": 0, "vertex_from": "6", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:48.368105714Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:01:46.722781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638944, - "rtt_ms": 1.638944, + "rtt_ns": 1425666, + "rtt_ms": 1.425666, "checkpoint": 0, - "vertex_from": "6", - "vertex_to": "818", - "timestamp": "2025-11-27T01:21:48.368168894Z" + "vertex_from": "7", + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.722951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632805, - "rtt_ms": 1.632805, + "rtt_ns": 1527583, + "rtt_ms": 1.527583, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:48.368204104Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:46.722968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012937, - "rtt_ms": 1.012937, + "rtt_ns": 1866917, + "rtt_ms": 1.866917, "checkpoint": 0, "vertex_from": "7", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:48.368249524Z" + "timestamp": "2025-11-27T04:01:46.722969-08:00" }, { "operation": "add_edge", - "rtt_ns": 906897, - "rtt_ms": 0.906897, + "rtt_ns": 1543875, + "rtt_ms": 1.543875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:48.368293804Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.723012-08:00" }, { "operation": "add_edge", - "rtt_ns": 640048, - "rtt_ms": 0.640048, + "rtt_ns": 1375917, + "rtt_ms": 1.375917, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.368332564Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:46.72305-08:00" }, { "operation": "add_edge", - "rtt_ns": 980617, - "rtt_ms": 0.980617, + "rtt_ns": 1285750, + "rtt_ms": 1.28575, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:48.368369874Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:46.723057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635225, - "rtt_ms": 1.635225, + "rtt_ns": 1971416, + "rtt_ms": 1.971416, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.36957256Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:46.723109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593525, - "rtt_ms": 1.593525, + "rtt_ns": 1469500, + "rtt_ms": 1.4695, "checkpoint": 0, "vertex_from": "7", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.3695757Z" + "timestamp": "2025-11-27T04:01:46.723124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540565, - "rtt_ms": 1.540565, + "rtt_ns": 2051667, + "rtt_ms": 2.051667, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.3695924Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:46.723146-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137614, - "rtt_ms": 2.137614, + "rtt_ns": 1123375, + "rtt_ms": 1.123375, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:48.370246028Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.724093-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131223, - "rtt_ms": 2.131223, + "rtt_ns": 1553875, + "rtt_ms": 1.553875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:48.370336727Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:46.724336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080483, - "rtt_ms": 2.080483, + "rtt_ns": 1928833, + "rtt_ms": 1.928833, "checkpoint": 0, "vertex_from": "7", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.370375757Z" + "timestamp": "2025-11-27T04:01:46.724899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137053, - "rtt_ms": 2.137053, + "rtt_ns": 1880042, + "rtt_ms": 1.880042, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.370388097Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:46.724938-08:00" }, { "operation": "add_edge", - "rtt_ns": 2221493, - "rtt_ms": 2.221493, + "rtt_ns": 2049833, + "rtt_ms": 2.049833, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.370392477Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:46.725003-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084773, - "rtt_ms": 2.084773, + "rtt_ns": 2042000, + "rtt_ms": 2.042, "checkpoint": 0, "vertex_from": "7", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.370418857Z" + "timestamp": "2025-11-27T04:01:46.725056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107203, - "rtt_ms": 2.107203, + "rtt_ns": 2539000, + "rtt_ms": 2.539, "checkpoint": 0, "vertex_from": "7", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.370479737Z" + "timestamp": "2025-11-27T04:01:46.725592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015576, - "rtt_ms": 1.015576, + "rtt_ns": 2497875, + "rtt_ms": 2.497875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.370591046Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.725608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078776, - "rtt_ms": 1.078776, + "rtt_ns": 780000, + "rtt_ms": 0.78, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:48.370673496Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.725719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095686, - "rtt_ms": 1.095686, + "rtt_ns": 2670458, + "rtt_ms": 2.670458, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.370674076Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:46.725817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327626, - "rtt_ms": 1.327626, + "rtt_ns": 2702375, + "rtt_ms": 2.702375, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:48.371665803Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:46.725828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455135, - "rtt_ms": 1.455135, + "rtt_ns": 1728750, + "rtt_ms": 1.72875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.371702813Z" + "vertex_to": "174", + "timestamp": "2025-11-27T04:01:46.726068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223076, - "rtt_ms": 1.223076, + "rtt_ns": 2147417, + "rtt_ms": 2.147417, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:48.371703823Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:46.726241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292826, - "rtt_ms": 1.292826, + "rtt_ns": 1499084, + "rtt_ms": 1.499084, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:48.371712913Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:46.7264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363296, - "rtt_ms": 1.363296, + "rtt_ns": 1441500, + "rtt_ms": 1.4415, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:48.371753663Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:46.726447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361776, - "rtt_ms": 1.361776, + "rtt_ns": 1531333, + "rtt_ms": 1.531333, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.371756573Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:46.726588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189747, - "rtt_ms": 1.189747, + "rtt_ns": 1609667, + "rtt_ms": 1.609667, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:48.371783293Z" + "vertex_to": "8", + "timestamp": "2025-11-27T04:01:46.727219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163617, - "rtt_ms": 1.163617, + "rtt_ns": 1408750, + "rtt_ms": 1.40875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "8", - "timestamp": "2025-11-27T01:21:48.371838243Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:46.727228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466635, - "rtt_ms": 1.466635, + "rtt_ns": 1954833, + "rtt_ms": 1.954833, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "174", - "timestamp": "2025-11-27T01:21:48.371843802Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:46.727549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186626, - "rtt_ms": 1.186626, + "rtt_ns": 1602792, + "rtt_ms": 1.602792, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.371861562Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:46.727845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298486, - "rtt_ms": 1.298486, + "rtt_ns": 1434167, + "rtt_ms": 1.434167, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:48.372965789Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:01:46.727882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331485, - "rtt_ms": 1.331485, + "rtt_ns": 2253542, + "rtt_ms": 2.253542, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "9", - "timestamp": "2025-11-27T01:21:48.373036298Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:46.727974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343825, - "rtt_ms": 1.343825, + "rtt_ns": 1584750, + "rtt_ms": 1.58475, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:48.373058608Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:46.727986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748174, - "rtt_ms": 1.748174, + "rtt_ns": 2165167, + "rtt_ms": 2.165167, "checkpoint": 0, "vertex_from": "7", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:48.373452337Z" + "timestamp": "2025-11-27T04:01:46.727995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779934, - "rtt_ms": 1.779934, + "rtt_ns": 1952500, + "rtt_ms": 1.9525, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "171", - "timestamp": "2025-11-27T01:21:48.373537517Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:01:46.728021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781274, - "rtt_ms": 1.781274, + "rtt_ns": 1610042, + "rtt_ms": 1.610042, "checkpoint": 0, "vertex_from": "7", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.373565827Z" + "timestamp": "2025-11-27T04:01:46.728199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036093, - "rtt_ms": 2.036093, + "rtt_ns": 1201167, + "rtt_ms": 1.201167, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:48.373790906Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:46.72843-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073823, - "rtt_ms": 2.073823, + "rtt_ns": 976916, + "rtt_ms": 0.976916, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:48.373936525Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:46.72886-08:00" }, { "operation": "add_edge", - "rtt_ns": 2578141, - "rtt_ms": 2.578141, + "rtt_ns": 1324250, + "rtt_ms": 1.32425, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "433", - "timestamp": "2025-11-27T01:21:48.374417494Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:46.728874-08:00" }, { "operation": "add_edge", - "rtt_ns": 2676272, - "rtt_ms": 2.676272, + "rtt_ns": 1100125, + "rtt_ms": 1.100125, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:48.374521374Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.728946-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029703, - "rtt_ms": 2.029703, + "rtt_ns": 1914000, + "rtt_ms": 1.914, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.374996542Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:01:46.729136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000084, - "rtt_ms": 2.000084, + "rtt_ns": 1974584, + "rtt_ms": 1.974584, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:48.375061762Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.730174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055284, - "rtt_ms": 2.055284, + "rtt_ns": 2213208, + "rtt_ms": 2.213208, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.375092392Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:46.7302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584874, - "rtt_ms": 1.584874, + "rtt_ns": 1902000, + "rtt_ms": 1.902, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "992", - "timestamp": "2025-11-27T01:21:48.375152041Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.730333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766134, - "rtt_ms": 1.766134, + "rtt_ns": 2359167, + "rtt_ms": 2.359167, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.375305191Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:46.730336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853374, - "rtt_ms": 1.853374, + "rtt_ns": 2684542, + "rtt_ms": 2.684542, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:48.375307081Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:01:46.730706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407246, - "rtt_ms": 1.407246, + "rtt_ns": 2774167, + "rtt_ms": 2.774167, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.375344951Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.73077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553885, - "rtt_ms": 1.553885, + "rtt_ns": 2437208, + "rtt_ms": 2.437208, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.375345711Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:46.731299-08:00" }, { "operation": "add_edge", - "rtt_ns": 870528, - "rtt_ms": 0.870528, + "rtt_ns": 2528792, + "rtt_ms": 2.528792, "checkpoint": 0, "vertex_from": "7", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:48.375393111Z" + "timestamp": "2025-11-27T04:01:46.731404-08:00" }, { "operation": "add_edge", - "rtt_ns": 997776, - "rtt_ms": 0.997776, + "rtt_ns": 2348000, + "rtt_ms": 2.348, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:48.37541671Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:01:46.731485-08:00" }, { "operation": "add_edge", - "rtt_ns": 735087, - "rtt_ms": 0.735087, + "rtt_ns": 1328166, + "rtt_ms": 1.328166, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.375733149Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.731529-08:00" }, { "operation": "add_edge", - "rtt_ns": 812687, - "rtt_ms": 0.812687, + "rtt_ns": 1236083, + "rtt_ms": 1.236083, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "11", - "timestamp": "2025-11-27T01:21:48.375875269Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:46.731573-08:00" }, { "operation": "add_edge", - "rtt_ns": 967536, - "rtt_ms": 0.967536, + "rtt_ns": 2674583, + "rtt_ms": 2.674583, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.376061188Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.731622-08:00" }, { "operation": "add_edge", - "rtt_ns": 979097, - "rtt_ms": 0.979097, + "rtt_ns": 1460959, + "rtt_ms": 1.460959, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.376132648Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.731636-08:00" }, { "operation": "add_edge", - "rtt_ns": 946237, - "rtt_ms": 0.946237, + "rtt_ns": 1326792, + "rtt_ms": 1.326792, "checkpoint": 0, "vertex_from": "7", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.376253088Z" - }, - { - "operation": "add_edge", - "rtt_ns": 984597, - "rtt_ms": 0.984597, - "checkpoint": 0, - "vertex_from": "7", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:48.376293438Z" + "timestamp": "2025-11-27T04:01:46.731661-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1171846, - "rtt_ms": 1.171846, + "rtt_ns": 1898625, + "rtt_ms": 1.898625, "checkpoint": 0, "vertex_from": "882", - "timestamp": "2025-11-27T01:21:48.376519387Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 833737, - "rtt_ms": 0.833737, - "checkpoint": 0, - "vertex_from": "334", - "timestamp": "2025-11-27T01:21:48.377088945Z" + "timestamp": "2025-11-27T04:01:46.73261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813034, - "rtt_ms": 1.813034, + "rtt_ns": 1143833, + "rtt_ms": 1.143833, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:48.377159805Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.732718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845485, - "rtt_ms": 1.845485, + "rtt_ns": 1547125, + "rtt_ms": 1.547125, "checkpoint": 0, "vertex_from": "7", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:48.377263295Z" + "timestamp": "2025-11-27T04:01:46.732952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947854, - "rtt_ms": 1.947854, + "rtt_ns": 1474625, + "rtt_ms": 1.474625, "checkpoint": 0, "vertex_from": "7", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.377824153Z" + "timestamp": "2025-11-27T04:01:46.733005-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2461692, - "rtt_ms": 2.461692, + "operation": "add_vertex", + "rtt_ns": 1530875, + "rtt_ms": 1.530875, "checkpoint": 0, - "vertex_from": "7", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:48.377856343Z" + "vertex_from": "334", + "timestamp": "2025-11-27T04:01:46.733168-08:00" }, { "operation": "add_edge", - "rtt_ns": 2424273, - "rtt_ms": 2.424273, + "rtt_ns": 1697583, + "rtt_ms": 1.697583, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.378486291Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.733185-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207963, - "rtt_ms": 2.207963, + "rtt_ns": 2031375, + "rtt_ms": 2.031375, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:48.378502531Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:46.733332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778652, - "rtt_ms": 2.778652, + "rtt_ns": 2629875, + "rtt_ms": 2.629875, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:48.378514371Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:46.733401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391613, - "rtt_ms": 2.391613, + "rtt_ns": 1755250, + "rtt_ms": 1.75525, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.378526171Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:46.733417-08:00" }, { "operation": "add_edge", - "rtt_ns": 2008194, - "rtt_ms": 2.008194, + "rtt_ns": 1135958, + "rtt_ms": 1.135958, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "882", - "timestamp": "2025-11-27T01:21:48.378527931Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:46.733857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270076, - "rtt_ms": 1.270076, + "rtt_ns": 2407459, + "rtt_ms": 2.407459, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.378534251Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.734031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518365, - "rtt_ms": 1.518365, + "rtt_ns": 1534583, + "rtt_ms": 1.534583, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "334", - "timestamp": "2025-11-27T01:21:48.37860782Z" + "vertex_to": "882", + "timestamp": "2025-11-27T04:01:46.734145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450935, - "rtt_ms": 1.450935, + "rtt_ns": 1231292, + "rtt_ms": 1.231292, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:48.37861278Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:46.734185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067886, - "rtt_ms": 1.067886, + "rtt_ns": 1138833, + "rtt_ms": 1.138833, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.378926249Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:46.734541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119266, - "rtt_ms": 1.119266, + "rtt_ns": 1379125, + "rtt_ms": 1.379125, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "866", - "timestamp": "2025-11-27T01:21:48.378944909Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:01:46.734798-08:00" }, { "operation": "add_edge", - "rtt_ns": 732737, - "rtt_ms": 0.732737, + "rtt_ns": 1832041, + "rtt_ms": 1.832041, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:48.379236488Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:01:46.734838-08:00" }, { "operation": "add_vertex", - "rtt_ns": 764567, - "rtt_ms": 0.764567, + "rtt_ns": 1241208, + "rtt_ms": 1.241208, "checkpoint": 0, "vertex_from": "364", - "timestamp": "2025-11-27T01:21:48.379294788Z" + "timestamp": "2025-11-27T04:01:46.735273-08:00" }, { "operation": "add_edge", - "rtt_ns": 786137, - "rtt_ms": 0.786137, + "rtt_ns": 1952834, + "rtt_ms": 1.952834, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "14", - "timestamp": "2025-11-27T01:21:48.379321458Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:01:46.735289-08:00" }, { "operation": "add_edge", - "rtt_ns": 835137, - "rtt_ms": 0.835137, + "rtt_ns": 2155500, + "rtt_ms": 2.1555, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "12", - "timestamp": "2025-11-27T01:21:48.379323468Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:46.735324-08:00" }, { "operation": "add_edge", - "rtt_ns": 839027, - "rtt_ms": 0.839027, + "rtt_ns": 1866250, + "rtt_ms": 1.86625, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "227", - "timestamp": "2025-11-27T01:21:48.379354788Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.735724-08:00" }, { "operation": "add_edge", - "rtt_ns": 847988, - "rtt_ms": 0.847988, + "rtt_ns": 2572375, + "rtt_ms": 2.572375, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:48.379461728Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.735758-08:00" }, { "operation": "add_edge", - "rtt_ns": 860308, - "rtt_ms": 0.860308, + "rtt_ns": 1762083, + "rtt_ms": 1.762083, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:48.379469538Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:01:46.735908-08:00" }, { "operation": "add_edge", - "rtt_ns": 947097, - "rtt_ms": 0.947097, + "rtt_ns": 2074000, + "rtt_ms": 2.074, "checkpoint": 0, "vertex_from": "7", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.379474478Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:46.736261-08:00" }, { "operation": "add_edge", - "rtt_ns": 603998, - "rtt_ms": 0.603998, + "rtt_ns": 1402458, + "rtt_ms": 1.402458, "checkpoint": 0, - "vertex_from": "7", - "vertex_to": "13", - "timestamp": "2025-11-27T01:21:48.379531817Z" + "vertex_from": "8", + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:46.737127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212816, - "rtt_ms": 1.212816, + "rtt_ns": 1992583, + "rtt_ms": 1.992583, "checkpoint": 0, "vertex_from": "7", "vertex_to": "364", - "timestamp": "2025-11-27T01:21:48.380507934Z" + "timestamp": "2025-11-27T04:01:46.737266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305046, - "rtt_ms": 1.305046, + "rtt_ns": 2437458, + "rtt_ms": 2.437458, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "481", - "timestamp": "2025-11-27T01:21:48.380543164Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:46.737276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662505, - "rtt_ms": 1.662505, + "rtt_ns": 2906542, + "rtt_ms": 2.906542, "checkpoint": 0, - "vertex_from": "8", + "vertex_from": "7", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:48.380608674Z" + "timestamp": "2025-11-27T04:01:46.73745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340606, - "rtt_ms": 1.340606, + "rtt_ns": 2146167, + "rtt_ms": 2.146167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:48.380665324Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:46.737471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893394, - "rtt_ms": 1.893394, + "rtt_ns": 2758875, + "rtt_ms": 2.758875, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:48.381216582Z" + "vertex_from": "7", + "vertex_to": "13", + "timestamp": "2025-11-27T04:01:46.737558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773884, - "rtt_ms": 1.773884, + "rtt_ns": 1802958, + "rtt_ms": 1.802958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:48.381245302Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:46.737562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747595, - "rtt_ms": 1.747595, + "rtt_ns": 1654834, + "rtt_ms": 1.654834, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.381280232Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.737563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929524, - "rtt_ms": 1.929524, + "rtt_ns": 2279708, + "rtt_ms": 2.279708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:48.381285452Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:01:46.73757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836623, - "rtt_ms": 1.836623, + "rtt_ns": 1973334, + "rtt_ms": 1.973334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.381299681Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:46.738235-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071273, - "rtt_ms": 2.071273, + "rtt_ns": 1255833, + "rtt_ms": 1.255833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:48.381546661Z" + "timestamp": "2025-11-27T04:01:46.738384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775844, - "rtt_ms": 1.775844, + "rtt_ns": 1450792, + "rtt_ms": 1.450792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:48.382443008Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:46.738727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973143, - "rtt_ms": 1.973143, + "rtt_ns": 1393583, + "rtt_ms": 1.393583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:48.382582377Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:46.738958-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241653, - "rtt_ms": 2.241653, + "rtt_ns": 1445292, + "rtt_ms": 1.445292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:48.382751287Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:46.73901-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356822, - "rtt_ms": 2.356822, + "rtt_ns": 1538125, + "rtt_ms": 1.538125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.382900696Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:46.73901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726815, - "rtt_ms": 1.726815, + "rtt_ns": 1524625, + "rtt_ms": 1.524625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.383027966Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:46.739083-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381952, - "rtt_ms": 2.381952, + "rtt_ns": 1527708, + "rtt_ms": 1.527708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:48.383599494Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:46.7391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2367502, - "rtt_ms": 2.367502, + "rtt_ns": 1958667, + "rtt_ms": 1.958667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:48.383653804Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:46.739228-08:00" }, { "operation": "add_edge", - "rtt_ns": 2422592, - "rtt_ms": 2.422592, + "rtt_ns": 1789834, + "rtt_ms": 1.789834, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:48.383668914Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.739242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233112, - "rtt_ms": 2.233112, + "rtt_ns": 2093542, + "rtt_ms": 2.093542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:48.383780783Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:46.740331-08:00" }, { "operation": "add_edge", - "rtt_ns": 2561601, - "rtt_ms": 2.561601, + "rtt_ns": 2033750, + "rtt_ms": 2.03375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.383842873Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.740419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432225, - "rtt_ms": 1.432225, + "rtt_ns": 1556250, + "rtt_ms": 1.55625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:48.383876123Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:46.740568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322376, - "rtt_ms": 1.322376, + "rtt_ns": 1603041, + "rtt_ms": 1.603041, "checkpoint": 0, "vertex_from": "8", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:48.383905543Z" + "timestamp": "2025-11-27T04:01:46.740615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271785, - "rtt_ms": 1.271785, + "rtt_ns": 1406000, + "rtt_ms": 1.406, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:48.384023672Z" + "vertex_to": "436", + "timestamp": "2025-11-27T04:01:46.740634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605454, - "rtt_ms": 1.605454, + "rtt_ns": 1954958, + "rtt_ms": 1.954958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:48.38463569Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:46.740683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056396, - "rtt_ms": 1.056396, + "rtt_ns": 1741583, + "rtt_ms": 1.741583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:48.38471132Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:46.740701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140336, - "rtt_ms": 1.140336, + "rtt_ns": 1474500, + "rtt_ms": 1.4745, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "436", - "timestamp": "2025-11-27T01:21:48.38474144Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:46.740717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177066, - "rtt_ms": 1.177066, + "rtt_ns": 1651667, + "rtt_ms": 1.651667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:48.38484785Z" + "vertex_to": "53", + "timestamp": "2025-11-27T04:01:46.740736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962904, - "rtt_ms": 1.962904, + "rtt_ns": 1873709, + "rtt_ms": 1.873709, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "53", - "timestamp": "2025-11-27T01:21:48.38486488Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:46.740975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553365, - "rtt_ms": 1.553365, + "rtt_ns": 1349000, + "rtt_ms": 1.349, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:48.385460348Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.741769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437146, - "rtt_ms": 1.437146, + "rtt_ns": 1556666, + "rtt_ms": 1.556666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:48.385461508Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:46.742192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600935, - "rtt_ms": 1.600935, + "rtt_ns": 1652958, + "rtt_ms": 1.652958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:48.385478488Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:46.742371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699565, - "rtt_ms": 1.699565, + "rtt_ns": 2651334, + "rtt_ms": 2.651334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.385481048Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:46.742984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748984, - "rtt_ms": 1.748984, + "rtt_ns": 2300208, + "rtt_ms": 2.300208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:48.385593347Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:46.742984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197307, - "rtt_ms": 1.197307, + "rtt_ns": 2419750, + "rtt_ms": 2.41975, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.385835207Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:46.742989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309506, - "rtt_ms": 1.309506, + "rtt_ns": 2308584, + "rtt_ms": 2.308584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:48.386021726Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:46.743045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795324, - "rtt_ms": 1.795324, + "rtt_ns": 2353750, + "rtt_ms": 2.35375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:48.386644084Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.743055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667495, - "rtt_ms": 1.667495, + "rtt_ns": 1380541, + "rtt_ms": 1.380541, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.387130053Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:46.74315-08:00" }, { "operation": "add_edge", - "rtt_ns": 2322042, - "rtt_ms": 2.322042, + "rtt_ns": 2193292, + "rtt_ms": 2.193292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:48.387188282Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:46.743169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471782, - "rtt_ms": 2.471782, + "rtt_ns": 2567417, + "rtt_ms": 2.567417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.387218382Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:46.743184-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541902, - "rtt_ms": 2.541902, + "rtt_ns": 1237708, + "rtt_ms": 1.237708, "checkpoint": 0, "vertex_from": "8", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:48.3880039Z" + "timestamp": "2025-11-27T04:01:46.743433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2445513, - "rtt_ms": 2.445513, + "rtt_ns": 1332834, + "rtt_ms": 1.332834, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:48.38804018Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:46.743705-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018664, - "rtt_ms": 2.018664, + "rtt_ns": 1461292, + "rtt_ms": 1.461292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "9", - "timestamp": "2025-11-27T01:21:48.38804098Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:46.744646-08:00" }, { "operation": "add_edge", - "rtt_ns": 2210693, - "rtt_ms": 2.210693, + "rtt_ns": 1683250, + "rtt_ms": 1.68325, "checkpoint": 0, "vertex_from": "8", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.38804708Z" + "timestamp": "2025-11-27T04:01:46.744729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2575952, - "rtt_ms": 2.575952, + "rtt_ns": 1876250, + "rtt_ms": 1.87625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:48.38805563Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:46.744866-08:00" }, { "operation": "add_edge", - "rtt_ns": 2581912, - "rtt_ms": 2.581912, + "rtt_ns": 1724667, + "rtt_ms": 1.724667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.38806428Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.744875-08:00" }, { "operation": "add_edge", - "rtt_ns": 935357, - "rtt_ms": 0.935357, + "rtt_ns": 1834458, + "rtt_ms": 1.834458, "checkpoint": 0, "vertex_from": "8", "vertex_to": "756", - "timestamp": "2025-11-27T01:21:48.38806652Z" + "timestamp": "2025-11-27T04:01:46.745004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425556, - "rtt_ms": 1.425556, + "rtt_ns": 1956750, + "rtt_ms": 1.95675, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.38807177Z" + "vertex_to": "9", + "timestamp": "2025-11-27T04:01:46.745015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134977, - "rtt_ms": 1.134977, + "rtt_ns": 2031417, + "rtt_ms": 2.031417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:48.388354819Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:46.745016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515495, - "rtt_ms": 1.515495, + "rtt_ns": 2039625, + "rtt_ms": 2.039625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:48.388705167Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.745025-08:00" }, { "operation": "add_edge", - "rtt_ns": 916737, - "rtt_ms": 0.916737, + "rtt_ns": 1621875, + "rtt_ms": 1.621875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:48.388958867Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:46.745056-08:00" }, { "operation": "add_edge", - "rtt_ns": 989106, - "rtt_ms": 0.989106, + "rtt_ns": 1432000, + "rtt_ms": 1.432, "checkpoint": 0, "vertex_from": "8", "vertex_to": "10", - "timestamp": "2025-11-27T01:21:48.388994546Z" + "timestamp": "2025-11-27T04:01:46.745138-08:00" }, { "operation": "add_edge", - "rtt_ns": 953337, - "rtt_ms": 0.953337, + "rtt_ns": 1361708, + "rtt_ms": 1.361708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:48.389038556Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:46.746008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023996, - "rtt_ms": 1.023996, + "rtt_ns": 1411959, + "rtt_ms": 1.411959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:48.389065276Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:46.746142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013526, - "rtt_ms": 1.013526, + "rtt_ns": 1267542, + "rtt_ms": 1.267542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:48.389070116Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:46.746272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051626, - "rtt_ms": 1.051626, + "rtt_ns": 1329250, + "rtt_ms": 1.32925, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:48.389100876Z" + "vertex_to": "214", + "timestamp": "2025-11-27T04:01:46.746357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391375, - "rtt_ms": 1.391375, + "rtt_ns": 1315125, + "rtt_ms": 1.315125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "214", - "timestamp": "2025-11-27T01:21:48.389748764Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:46.746378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069707, - "rtt_ms": 1.069707, + "rtt_ns": 1450625, + "rtt_ms": 1.450625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:48.389779024Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:01:46.746467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714344, - "rtt_ms": 1.714344, + "rtt_ns": 1599042, + "rtt_ms": 1.599042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "91", - "timestamp": "2025-11-27T01:21:48.389782334Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:46.746476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722274, - "rtt_ms": 1.722274, + "rtt_ns": 1545542, + "rtt_ms": 1.545542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:48.389787524Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.746562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110427, - "rtt_ms": 1.110427, + "rtt_ns": 1887542, + "rtt_ms": 1.887542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:48.390106423Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:46.746754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175666, - "rtt_ms": 1.175666, + "rtt_ns": 1772125, + "rtt_ms": 1.772125, "checkpoint": 0, "vertex_from": "8", "vertex_to": "866", - "timestamp": "2025-11-27T01:21:48.390136203Z" + "timestamp": "2025-11-27T04:01:46.746911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227696, - "rtt_ms": 1.227696, + "rtt_ns": 1409167, + "rtt_ms": 1.409167, "checkpoint": 0, "vertex_from": "8", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.390294362Z" + "timestamp": "2025-11-27T04:01:46.747682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268026, - "rtt_ms": 1.268026, + "rtt_ns": 1715417, + "rtt_ms": 1.715417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:48.390315682Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:46.747725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247856, - "rtt_ms": 1.247856, + "rtt_ns": 1706333, + "rtt_ms": 1.706333, "checkpoint": 0, "vertex_from": "8", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:48.390319112Z" + "timestamp": "2025-11-27T04:01:46.748066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897024, - "rtt_ms": 1.897024, + "rtt_ns": 2012667, + "rtt_ms": 2.012667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:48.3910029Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:46.748155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281865, - "rtt_ms": 1.281865, + "rtt_ns": 1810959, + "rtt_ms": 1.810959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:48.391071309Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:46.74819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338665, - "rtt_ms": 1.338665, + "rtt_ns": 1779583, + "rtt_ms": 1.779583, "checkpoint": 0, "vertex_from": "8", "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.391119989Z" + "timestamp": "2025-11-27T04:01:46.748256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562155, - "rtt_ms": 1.562155, + "rtt_ns": 1932292, + "rtt_ms": 1.932292, "checkpoint": 0, "vertex_from": "8", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.391313039Z" + "timestamp": "2025-11-27T04:01:46.7484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064863, - "rtt_ms": 2.064863, + "rtt_ns": 2011000, + "rtt_ms": 2.011, + "checkpoint": 0, + "vertex_from": "8", + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:46.748766-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2299458, + "rtt_ms": 2.299458, "checkpoint": 0, "vertex_from": "8", "vertex_to": "583", - "timestamp": "2025-11-27T01:21:48.391849987Z" + "timestamp": "2025-11-27T04:01:46.748863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707154, - "rtt_ms": 1.707154, + "rtt_ns": 1182833, + "rtt_ms": 1.182833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.392002386Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:46.749339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908233, - "rtt_ms": 1.908233, + "rtt_ns": 1299750, + "rtt_ms": 1.29975, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.392016126Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:46.749557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777604, - "rtt_ms": 1.777604, + "rtt_ns": 2658167, + "rtt_ms": 2.658167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:48.392098786Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.749572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974363, - "rtt_ms": 1.974363, + "rtt_ns": 2259375, + "rtt_ms": 2.259375, "checkpoint": 0, "vertex_from": "8", "vertex_to": "588", - "timestamp": "2025-11-27T01:21:48.392111546Z" + "timestamp": "2025-11-27T04:01:46.749943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839064, - "rtt_ms": 1.839064, + "rtt_ns": 1957000, + "rtt_ms": 1.957, "checkpoint": 0, "vertex_from": "8", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:48.392155696Z" + "timestamp": "2025-11-27T04:01:46.750024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660144, - "rtt_ms": 1.660144, + "rtt_ns": 2356334, + "rtt_ms": 2.356334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "12", - "timestamp": "2025-11-27T01:21:48.392664584Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:46.750086-08:00" }, { "operation": "add_edge", - "rtt_ns": 968207, - "rtt_ms": 0.968207, + "rtt_ns": 1908708, + "rtt_ms": 1.908708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:48.392819674Z" + "vertex_to": "12", + "timestamp": "2025-11-27T04:01:46.750099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750815, - "rtt_ms": 1.750815, + "rtt_ns": 1774042, + "rtt_ms": 1.774042, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:48.392825634Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.750175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517125, - "rtt_ms": 1.517125, + "rtt_ns": 2083084, + "rtt_ms": 2.083084, "checkpoint": 0, "vertex_from": "8", "vertex_to": "624", - "timestamp": "2025-11-27T01:21:48.392832224Z" + "timestamp": "2025-11-27T04:01:46.75085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735715, - "rtt_ms": 1.735715, + "rtt_ns": 2223375, + "rtt_ms": 2.223375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.392857504Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:46.751089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378826, - "rtt_ms": 1.378826, + "rtt_ns": 1328125, + "rtt_ms": 1.328125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:48.393396402Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.751272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331466, - "rtt_ms": 1.331466, + "rtt_ns": 1279125, + "rtt_ms": 1.279125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.393432872Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:46.751368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478506, - "rtt_ms": 1.478506, + "rtt_ns": 1345792, + "rtt_ms": 1.345792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "817", - "timestamp": "2025-11-27T01:21:48.393482172Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:46.751446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478945, - "rtt_ms": 1.478945, + "rtt_ns": 1924375, + "rtt_ms": 1.924375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.393591611Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.751497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256306, - "rtt_ms": 1.256306, + "rtt_ns": 2021417, + "rtt_ms": 2.021417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:48.39392333Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:46.751579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113596, - "rtt_ms": 1.113596, + "rtt_ns": 1438125, + "rtt_ms": 1.438125, "checkpoint": 0, "vertex_from": "8", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:48.39394235Z" + "timestamp": "2025-11-27T04:01:46.751615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083276, - "rtt_ms": 1.083276, + "rtt_ns": 1592833, + "rtt_ms": 1.592833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.39394299Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:46.751617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272136, - "rtt_ms": 1.272136, + "rtt_ns": 2511792, + "rtt_ms": 2.511792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.39409354Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:01:46.751851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350335, - "rtt_ms": 1.350335, + "rtt_ns": 1483792, + "rtt_ms": 1.483792, "checkpoint": 0, "vertex_from": "8", "vertex_to": "612", - "timestamp": "2025-11-27T01:21:48.394187499Z" + "timestamp": "2025-11-27T04:01:46.752335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099203, - "rtt_ms": 2.099203, + "rtt_ns": 1195875, + "rtt_ms": 1.195875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:48.394256549Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:46.752642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257216, - "rtt_ms": 1.257216, + "rtt_ns": 1329583, + "rtt_ms": 1.329583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.394655548Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:46.752699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274966, - "rtt_ms": 1.274966, + "rtt_ns": 1495708, + "rtt_ms": 1.495708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:48.394709028Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:01:46.752993-08:00" }, { "operation": "add_edge", - "rtt_ns": 861378, - "rtt_ms": 0.861378, + "rtt_ns": 1407792, + "rtt_ms": 1.407792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.394787228Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:46.753026-08:00" }, { "operation": "add_edge", - "rtt_ns": 922387, - "rtt_ms": 0.922387, + "rtt_ns": 1802500, + "rtt_ms": 1.8025, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:48.394866357Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:46.753075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387985, - "rtt_ms": 1.387985, + "rtt_ns": 2026959, + "rtt_ms": 2.026959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:48.394871157Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.753117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299646, - "rtt_ms": 1.299646, + "rtt_ns": 1596083, + "rtt_ms": 1.596083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "39", - "timestamp": "2025-11-27T01:21:48.394893077Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.753177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612385, - "rtt_ms": 1.612385, + "rtt_ns": 1599208, + "rtt_ms": 1.599208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:48.395556875Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:46.753216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2577321, - "rtt_ms": 2.577321, + "rtt_ns": 1201167, + "rtt_ms": 1.201167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:48.396672121Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:46.753902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2523922, - "rtt_ms": 2.523922, + "rtt_ns": 2483625, + "rtt_ms": 2.483625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.396782041Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:46.754336-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2595762, - "rtt_ms": 2.595762, + "operation": "add_vertex", + "rtt_ns": 1100334, + "rtt_ms": 1.100334, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:48.396784371Z" + "vertex_from": "466", + "timestamp": "2025-11-27T04:01:46.755004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186513, - "rtt_ms": 2.186513, + "rtt_ns": 2680833, + "rtt_ms": 2.680833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:48.396846711Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:46.755016-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141633, - "rtt_ms": 2.141633, + "rtt_ns": 2175583, + "rtt_ms": 2.175583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:48.396930771Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:46.755293-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096223, - "rtt_ms": 2.096223, + "rtt_ns": 2125958, + "rtt_ms": 2.125958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.39696863Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:46.755343-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281612, - "rtt_ms": 2.281612, + "rtt_ns": 2235917, + "rtt_ms": 2.235917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.39699228Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:46.755414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535215, - "rtt_ms": 1.535215, + "rtt_ns": 2469875, + "rtt_ms": 2.469875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:48.39709978Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.755464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2248863, - "rtt_ms": 2.248863, + "rtt_ns": 2392250, + "rtt_ms": 2.39225, "checkpoint": 0, "vertex_from": "8", "vertex_to": "681", - "timestamp": "2025-11-27T01:21:48.39711745Z" + "timestamp": "2025-11-27T04:01:46.755468-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286073, - "rtt_ms": 2.286073, + "rtt_ns": 2828917, + "rtt_ms": 2.828917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:48.39718136Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 779998, - "rtt_ms": 0.779998, - "checkpoint": 0, - "vertex_from": "466", - "timestamp": "2025-11-27T01:21:48.397455669Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.755472-08:00" }, { "operation": "add_edge", - "rtt_ns": 869637, - "rtt_ms": 0.869637, + "rtt_ns": 2667333, + "rtt_ms": 2.667333, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:48.397656028Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:46.755695-08:00" }, { "operation": "add_edge", - "rtt_ns": 910977, - "rtt_ms": 0.910977, + "rtt_ns": 1578084, + "rtt_ms": 1.578084, "checkpoint": 0, "vertex_from": "8", "vertex_to": "113", - "timestamp": "2025-11-27T01:21:48.397695298Z" + "timestamp": "2025-11-27T04:01:46.755915-08:00" }, { "operation": "add_edge", - "rtt_ns": 868477, - "rtt_ms": 0.868477, + "rtt_ns": 1480583, + "rtt_ms": 1.480583, "checkpoint": 0, "vertex_from": "8", "vertex_to": "13", - "timestamp": "2025-11-27T01:21:48.397717258Z" + "timestamp": "2025-11-27T04:01:46.756775-08:00" }, { "operation": "add_edge", - "rtt_ns": 772998, - "rtt_ms": 0.772998, + "rtt_ns": 1775458, + "rtt_ms": 1.775458, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.397766458Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:46.756793-08:00" }, { "operation": "add_edge", - "rtt_ns": 876737, - "rtt_ms": 0.876737, + "rtt_ns": 1471916, + "rtt_ms": 1.471916, "checkpoint": 0, "vertex_from": "8", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:48.397809988Z" + "timestamp": "2025-11-27T04:01:46.756816-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 849218, - "rtt_ms": 0.849218, + "operation": "add_edge", + "rtt_ns": 1373375, + "rtt_ms": 1.373375, "checkpoint": 0, - "vertex_from": "627", - "timestamp": "2025-11-27T01:21:48.397820678Z" + "vertex_from": "8", + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:46.756838-08:00" }, { "operation": "add_edge", - "rtt_ns": 710097, - "rtt_ms": 0.710097, + "rtt_ns": 1973625, + "rtt_ms": 1.973625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:48.397894117Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:01:46.756978-08:00" }, { "operation": "add_edge", - "rtt_ns": 804507, - "rtt_ms": 0.804507, + "rtt_ns": 1929375, + "rtt_ms": 1.929375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:48.397905877Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:46.757626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283516, - "rtt_ms": 1.283516, + "rtt_ns": 2336833, + "rtt_ms": 2.336833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "42", - "timestamp": "2025-11-27T01:21:48.398403126Z" + "timestamp": "2025-11-27T04:01:46.75781-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1034866, - "rtt_ms": 1.034866, + "operation": "add_vertex", + "rtt_ns": 2409500, + "rtt_ms": 2.4095, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "466", - "timestamp": "2025-11-27T01:21:48.398491035Z" + "vertex_from": "627", + "timestamp": "2025-11-27T04:01:46.757825-08:00" }, { "operation": "add_edge", - "rtt_ns": 898197, - "rtt_ms": 0.898197, + "rtt_ns": 2356416, + "rtt_ms": 2.356416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:48.398555705Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:46.757827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450425, - "rtt_ms": 1.450425, + "rtt_ns": 2651792, + "rtt_ms": 2.651792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "92", - "timestamp": "2025-11-27T01:21:48.399346642Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:46.758568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680384, - "rtt_ms": 1.680384, + "rtt_ns": 1790583, + "rtt_ms": 1.790583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:48.399399752Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:46.758629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703324, - "rtt_ms": 1.703324, + "rtt_ns": 1890417, + "rtt_ms": 1.890417, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.399400832Z" + "vertex_to": "92", + "timestamp": "2025-11-27T04:01:46.758869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588784, - "rtt_ms": 1.588784, + "rtt_ns": 2212584, + "rtt_ms": 2.212584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "627", - "timestamp": "2025-11-27T01:21:48.399410292Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:46.758988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643674, - "rtt_ms": 1.643674, + "rtt_ns": 1308167, + "rtt_ms": 1.308167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:48.399412152Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:46.759136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615474, - "rtt_ms": 1.615474, + "rtt_ns": 2361917, + "rtt_ms": 2.361917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:48.399427342Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:46.759155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620565, - "rtt_ms": 1.620565, + "rtt_ns": 2422292, + "rtt_ms": 2.422292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:48.399527962Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:46.759239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350285, - "rtt_ms": 1.350285, + "rtt_ns": 1975416, + "rtt_ms": 1.975416, "checkpoint": 0, "vertex_from": "8", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:48.399754911Z" + "timestamp": "2025-11-27T04:01:46.759786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388916, - "rtt_ms": 1.388916, + "rtt_ns": 2270750, + "rtt_ms": 2.27075, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:48.399881521Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:46.759898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701544, - "rtt_ms": 1.701544, + "rtt_ns": 1368625, + "rtt_ms": 1.368625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:48.400258869Z" + "timestamp": "2025-11-27T04:01:46.759937-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020184, - "rtt_ms": 2.020184, + "rtt_ns": 1331250, + "rtt_ms": 1.33125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "14", - "timestamp": "2025-11-27T01:21:48.401434396Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:46.759961-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156394, - "rtt_ms": 2.156394, + "rtt_ns": 1618833, + "rtt_ms": 1.618833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:48.401504586Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:46.760756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779864, - "rtt_ms": 1.779864, + "rtt_ns": 1784583, + "rtt_ms": 1.784583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:48.401537645Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:46.760776-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140853, - "rtt_ms": 2.140853, + "rtt_ns": 3006625, + "rtt_ms": 3.006625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:48.401544625Z" + "vertex_to": "627", + "timestamp": "2025-11-27T04:01:46.760831-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176273, - "rtt_ms": 2.176273, + "rtt_ns": 1689542, + "rtt_ms": 1.689542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.401590165Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:01:46.760846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214673, - "rtt_ms": 2.214673, + "rtt_ns": 1685833, + "rtt_ms": 1.685833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "354", - "timestamp": "2025-11-27T01:21:48.401643985Z" + "timestamp": "2025-11-27T04:01:46.760927-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146043, - "rtt_ms": 2.146043, + "rtt_ns": 2150792, + "rtt_ms": 2.150792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:48.401675675Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:46.761021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285553, - "rtt_ms": 2.285553, + "rtt_ns": 1498750, + "rtt_ms": 1.49875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:48.401686795Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:46.761397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914374, - "rtt_ms": 1.914374, + "rtt_ns": 1639875, + "rtt_ms": 1.639875, "checkpoint": 0, "vertex_from": "8", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:48.402180253Z" + "timestamp": "2025-11-27T04:01:46.761602-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428182, - "rtt_ms": 2.428182, + "rtt_ns": 1841917, + "rtt_ms": 1.841917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:48.402312033Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:46.761629-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1099546, - "rtt_ms": 1.099546, + "operation": "add_edge", + "rtt_ns": 1753000, + "rtt_ms": 1.753, "checkpoint": 0, - "vertex_from": "403", - "timestamp": "2025-11-27T01:21:48.402536542Z" + "vertex_from": "8", + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:46.761691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697334, - "rtt_ms": 1.697334, + "rtt_ns": 1977125, + "rtt_ms": 1.977125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.40320367Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:46.762907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065987, - "rtt_ms": 1.065987, + "rtt_ns": 2120875, + "rtt_ms": 2.120875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:48.40324862Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:46.762967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702155, - "rtt_ms": 1.702155, + "rtt_ns": 2005375, + "rtt_ms": 2.005375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.40329409Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:46.763028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772925, - "rtt_ms": 1.772925, + "rtt_ns": 2283959, + "rtt_ms": 2.283959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "488", - "timestamp": "2025-11-27T01:21:48.40331222Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.763061-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1641915, - "rtt_ms": 1.641915, + "operation": "add_vertex", + "rtt_ns": 2614459, + "rtt_ms": 2.614459, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "182", - "timestamp": "2025-11-27T01:21:48.40333119Z" + "vertex_from": "403", + "timestamp": "2025-11-27T04:01:46.763375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790175, - "rtt_ms": 1.790175, + "rtt_ns": 1756250, + "rtt_ms": 1.75625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:48.40334206Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:46.763386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765364, - "rtt_ms": 1.765364, + "rtt_ns": 2038083, + "rtt_ms": 2.038083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:48.403411779Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:46.763438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920164, - "rtt_ms": 1.920164, + "rtt_ns": 1912500, + "rtt_ms": 1.9125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:48.403598489Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:01:46.763516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308036, - "rtt_ms": 1.308036, + "rtt_ns": 2697125, + "rtt_ms": 2.697125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "403", - "timestamp": "2025-11-27T01:21:48.403845028Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:46.763529-08:00" }, { "operation": "add_edge", - "rtt_ns": 711978, - "rtt_ms": 0.711978, + "rtt_ns": 1848208, + "rtt_ms": 1.848208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.403917118Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.76354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628275, - "rtt_ms": 1.628275, + "rtt_ns": 1262041, + "rtt_ms": 1.262041, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.403942068Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.764171-08:00" }, { "operation": "add_vertex", - "rtt_ns": 904797, - "rtt_ms": 0.904797, + "rtt_ns": 1951084, + "rtt_ms": 1.951084, "checkpoint": 0, "vertex_from": "123", - "timestamp": "2025-11-27T01:21:48.404156917Z" + "timestamp": "2025-11-27T04:01:46.76492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380465, - "rtt_ms": 1.380465, + "rtt_ns": 1531958, + "rtt_ms": 1.531958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:48.404715905Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:46.765073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453215, - "rtt_ms": 1.453215, + "rtt_ns": 1713875, + "rtt_ms": 1.713875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:48.404766315Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:01:46.76509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1946203, - "rtt_ms": 1.946203, + "rtt_ns": 1813875, + "rtt_ms": 1.813875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "11", - "timestamp": "2025-11-27T01:21:48.405289853Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:46.765201-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158333, - "rtt_ms": 2.158333, + "rtt_ns": 2537625, + "rtt_ms": 2.537625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:48.405453703Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:46.7656-08:00" }, { "operation": "add_edge", - "rtt_ns": 2136253, - "rtt_ms": 2.136253, + "rtt_ns": 2106250, + "rtt_ms": 2.10625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "142", - "timestamp": "2025-11-27T01:21:48.405550002Z" + "timestamp": "2025-11-27T04:01:46.765624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319842, - "rtt_ms": 2.319842, + "rtt_ns": 2341708, + "rtt_ms": 2.341708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:48.40616703Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:01:46.765781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012923, - "rtt_ms": 2.012923, + "rtt_ns": 2067667, + "rtt_ms": 2.067667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "123", - "timestamp": "2025-11-27T01:21:48.4061703Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:46.766241-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605001, - "rtt_ms": 2.605001, + "rtt_ns": 2809000, + "rtt_ms": 2.809, "checkpoint": 0, "vertex_from": "8", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:48.4062079Z" + "timestamp": "2025-11-27T04:01:46.766339-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265292, - "rtt_ms": 2.265292, + "rtt_ns": 3725208, + "rtt_ms": 3.725208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:48.40620944Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:46.766756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455325, - "rtt_ms": 1.455325, + "rtt_ns": 1602375, + "rtt_ms": 1.602375, "checkpoint": 0, "vertex_from": "8", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.40622327Z" + "timestamp": "2025-11-27T04:01:46.766805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306942, - "rtt_ms": 2.306942, + "rtt_ns": 1902125, + "rtt_ms": 1.902125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:48.40622583Z" + "vertex_to": "123", + "timestamp": "2025-11-27T04:01:46.766823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518205, - "rtt_ms": 1.518205, + "rtt_ns": 1945459, + "rtt_ms": 1.945459, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "185", - "timestamp": "2025-11-27T01:21:48.40623598Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:46.767021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220926, - "rtt_ms": 1.220926, + "rtt_ns": 1856833, + "rtt_ms": 1.856833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "304", - "timestamp": "2025-11-27T01:21:48.406512249Z" + "timestamp": "2025-11-27T04:01:46.767459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246355, - "rtt_ms": 1.246355, + "rtt_ns": 2385709, + "rtt_ms": 2.385709, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:48.406701368Z" + "vertex_to": "185", + "timestamp": "2025-11-27T04:01:46.767477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185576, - "rtt_ms": 1.185576, + "rtt_ns": 1392292, + "rtt_ms": 1.392292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "283", - "timestamp": "2025-11-27T01:21:48.406738818Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:01:46.767634-08:00" }, { "operation": "add_edge", - "rtt_ns": 678088, - "rtt_ms": 0.678088, + "rtt_ns": 2045791, + "rtt_ms": 2.045791, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:48.406850298Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:46.767671-08:00" }, { "operation": "add_edge", - "rtt_ns": 949127, - "rtt_ms": 0.949127, + "rtt_ns": 2180875, + "rtt_ms": 2.180875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "188", - "timestamp": "2025-11-27T01:21:48.407464346Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:01:46.767963-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1283466, - "rtt_ms": 1.283466, + "operation": "add_edge", + "rtt_ns": 1752792, + "rtt_ms": 1.752792, "checkpoint": 0, - "vertex_from": "63", - "timestamp": "2025-11-27T01:21:48.407495246Z" + "vertex_from": "8", + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:46.768093-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1342566, - "rtt_ms": 1.342566, + "operation": "add_vertex", + "rtt_ns": 1451542, + "rtt_ms": 1.451542, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:48.407580766Z" + "vertex_from": "63", + "timestamp": "2025-11-27T04:01:46.768212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371265, - "rtt_ms": 1.371265, + "rtt_ns": 1489334, + "rtt_ms": 1.489334, "checkpoint": 0, "vertex_from": "8", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:48.407596345Z" + "timestamp": "2025-11-27T04:01:46.768313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391675, - "rtt_ms": 1.391675, + "rtt_ns": 1323042, + "rtt_ms": 1.323042, "checkpoint": 0, "vertex_from": "8", "vertex_to": "617", - "timestamp": "2025-11-27T01:21:48.407618775Z" + "timestamp": "2025-11-27T04:01:46.768345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418395, - "rtt_ms": 1.418395, + "rtt_ns": 1551833, + "rtt_ms": 1.551833, "checkpoint": 0, "vertex_from": "8", "vertex_to": "837", - "timestamp": "2025-11-27T01:21:48.407629845Z" + "timestamp": "2025-11-27T04:01:46.768359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529225, - "rtt_ms": 1.529225, + "rtt_ns": 1334959, + "rtt_ms": 1.334959, "checkpoint": 0, "vertex_from": "8", "vertex_to": "52", - "timestamp": "2025-11-27T01:21:48.408232253Z" + "timestamp": "2025-11-27T04:01:46.76897-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2083593, - "rtt_ms": 2.083593, + "operation": "add_vertex", + "rtt_ns": 910459, + "rtt_ms": 0.910459, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "54", - "timestamp": "2025-11-27T01:21:48.408252613Z" + "vertex_from": "746", + "timestamp": "2025-11-27T04:01:46.769005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514515, - "rtt_ms": 1.514515, + "rtt_ns": 1676291, + "rtt_ms": 1.676291, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:48.408255913Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:46.769136-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1197536, - "rtt_ms": 1.197536, + "operation": "add_edge", + "rtt_ns": 1767125, + "rtt_ms": 1.767125, "checkpoint": 0, - "vertex_from": "746", - "timestamp": "2025-11-27T01:21:48.408666552Z" + "vertex_from": "8", + "vertex_to": "188", + "timestamp": "2025-11-27T04:01:46.769245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014453, - "rtt_ms": 2.014453, + "rtt_ns": 1627666, + "rtt_ms": 1.627666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:48.408866741Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:46.7693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436505, - "rtt_ms": 1.436505, + "rtt_ns": 2073875, + "rtt_ms": 2.073875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "63", - "timestamp": "2025-11-27T01:21:48.408932381Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:46.770434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394025, - "rtt_ms": 1.394025, + "rtt_ns": 2985750, + "rtt_ms": 2.98575, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.408976681Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:46.770949-08:00" }, { "operation": "add_edge", - "rtt_ns": 820848, - "rtt_ms": 0.820848, + "rtt_ns": 2632083, + "rtt_ms": 2.632083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:48.409055661Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:46.770978-08:00" }, { "operation": "add_edge", - "rtt_ns": 884648, - "rtt_ms": 0.884648, + "rtt_ns": 2050625, + "rtt_ms": 2.050625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:48.409139611Z" + "timestamp": "2025-11-27T04:01:46.771297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873394, - "rtt_ms": 1.873394, + "rtt_ns": 3103375, + "rtt_ms": 3.103375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.409494209Z" + "vertex_to": "63", + "timestamp": "2025-11-27T04:01:46.771315-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 692408, - "rtt_ms": 0.692408, + "operation": "add_edge", + "rtt_ns": 3000208, + "rtt_ms": 3.000208, "checkpoint": 0, - "vertex_from": "966", - "timestamp": "2025-11-27T01:21:48.409627509Z" + "vertex_from": "8", + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.771316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489356, - "rtt_ms": 1.489356, + "rtt_ns": 2031750, + "rtt_ms": 2.03175, "checkpoint": 0, "vertex_from": "8", "vertex_to": "26", - "timestamp": "2025-11-27T01:21:48.409746979Z" + "timestamp": "2025-11-27T04:01:46.771333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355683, - "rtt_ms": 2.355683, + "rtt_ns": 2463333, + "rtt_ms": 2.463333, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:48.409954018Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:46.771435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2486742, - "rtt_ms": 2.486742, + "rtt_ns": 2345500, + "rtt_ms": 2.3455, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:48.410119557Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:46.771484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522195, - "rtt_ms": 1.522195, + "rtt_ns": 2498667, + "rtt_ms": 2.498667, "checkpoint": 0, "vertex_from": "8", "vertex_to": "746", - "timestamp": "2025-11-27T01:21:48.410189267Z" + "timestamp": "2025-11-27T04:01:46.771504-08:00" }, { "operation": "add_edge", - "rtt_ns": 2070474, - "rtt_ms": 2.070474, + "rtt_ns": 1164541, + "rtt_ms": 1.164541, "checkpoint": 0, "vertex_from": "8", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:48.410939455Z" + "timestamp": "2025-11-27T04:01:46.771602-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1994444, - "rtt_ms": 1.994444, + "operation": "add_vertex", + "rtt_ns": 1626959, + "rtt_ms": 1.626959, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:48.410973735Z" + "vertex_from": "966", + "timestamp": "2025-11-27T04:01:46.772578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869064, - "rtt_ms": 1.869064, + "rtt_ns": 1642792, + "rtt_ms": 1.642792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:48.411010995Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:46.772622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568015, - "rtt_ms": 1.568015, + "rtt_ns": 1460416, + "rtt_ms": 1.460416, "checkpoint": 0, "vertex_from": "8", "vertex_to": "294", - "timestamp": "2025-11-27T01:21:48.411065174Z" + "timestamp": "2025-11-27T04:01:46.772778-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043813, - "rtt_ms": 2.043813, + "rtt_ns": 1359792, + "rtt_ms": 1.359792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "217", - "timestamp": "2025-11-27T01:21:48.411100994Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:46.772795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547515, - "rtt_ms": 1.547515, + "rtt_ns": 1633833, + "rtt_ms": 1.633833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "966", - "timestamp": "2025-11-27T01:21:48.411175614Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:46.772952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444445, - "rtt_ms": 1.444445, + "rtt_ns": 1674625, + "rtt_ms": 1.674625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:48.411195034Z" + "timestamp": "2025-11-27T04:01:46.773008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299686, - "rtt_ms": 1.299686, + "rtt_ns": 1804792, + "rtt_ms": 1.804792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:48.411255544Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:01:46.773102-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1235208, + "rtt_ms": 1.235208, + "checkpoint": 0, + "vertex_from": "945", + "timestamp": "2025-11-27T04:01:46.774014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561165, - "rtt_ms": 1.561165, + "rtt_ns": 2569542, + "rtt_ms": 2.569542, "checkpoint": 0, "vertex_from": "8", "vertex_to": "33", - "timestamp": "2025-11-27T01:21:48.411752612Z" + "timestamp": "2025-11-27T04:01:46.774074-08:00" }, { "operation": "add_edge", - "rtt_ns": 857687, - "rtt_ms": 0.857687, + "rtt_ns": 1333916, + "rtt_ms": 1.333916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.411798652Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:46.77413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688465, - "rtt_ms": 1.688465, + "rtt_ns": 2746708, + "rtt_ms": 2.746708, "checkpoint": 0, "vertex_from": "8", "vertex_to": "533", - "timestamp": "2025-11-27T01:21:48.411809322Z" + "timestamp": "2025-11-27T04:01:46.774231-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 840477, - "rtt_ms": 0.840477, + "operation": "add_edge", + "rtt_ns": 2123000, + "rtt_ms": 2.123, "checkpoint": 0, - "vertex_from": "945", - "timestamp": "2025-11-27T01:21:48.411853812Z" + "vertex_from": "8", + "vertex_to": "966", + "timestamp": "2025-11-27T04:01:46.774701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562405, - "rtt_ms": 1.562405, + "rtt_ns": 1908666, + "rtt_ms": 1.908666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:48.412629469Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.774918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559635, - "rtt_ms": 1.559635, + "rtt_ns": 2126709, + "rtt_ms": 2.126709, "checkpoint": 0, "vertex_from": "8", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:48.412662899Z" + "timestamp": "2025-11-27T04:01:46.77508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698094, - "rtt_ms": 1.698094, + "rtt_ns": 2498875, + "rtt_ms": 2.498875, "checkpoint": 0, "vertex_from": "8", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:48.412673199Z" + "timestamp": "2025-11-27T04:01:46.775122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485495, - "rtt_ms": 1.485495, + "rtt_ns": 3677959, + "rtt_ms": 3.677959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.412681989Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.77528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453935, - "rtt_ms": 1.453935, + "rtt_ns": 1373416, + "rtt_ms": 1.373416, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:48.412710679Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:46.775608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543295, - "rtt_ms": 1.543295, + "rtt_ns": 2568917, + "rtt_ms": 2.568917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.412720169Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:46.775672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035367, - "rtt_ms": 1.035367, + "rtt_ns": 2322584, + "rtt_ms": 2.322584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "662", - "timestamp": "2025-11-27T01:21:48.412789609Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:46.776398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015567, - "rtt_ms": 1.015567, + "rtt_ns": 1714875, + "rtt_ms": 1.714875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "945", - "timestamp": "2025-11-27T01:21:48.412869899Z" + "vertex_to": "748", + "timestamp": "2025-11-27T04:01:46.776417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064827, - "rtt_ms": 1.064827, + "rtt_ns": 1585750, + "rtt_ms": 1.58575, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:48.413740916Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:46.776505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100933, - "rtt_ms": 2.100933, + "rtt_ns": 2558625, + "rtt_ms": 2.558625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:48.413901165Z" + "vertex_to": "945", + "timestamp": "2025-11-27T04:01:46.776573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122803, - "rtt_ms": 2.122803, + "rtt_ns": 1598792, + "rtt_ms": 1.598792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "748", - "timestamp": "2025-11-27T01:21:48.413933765Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:01:46.77668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686014, - "rtt_ms": 1.686014, + "rtt_ns": 1420125, + "rtt_ms": 1.420125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:48.414402853Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1379545, - "rtt_ms": 1.379545, - "checkpoint": 0, - "vertex_from": "911", - "timestamp": "2025-11-27T01:21:48.415123251Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:46.776703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527342, - "rtt_ms": 2.527342, + "rtt_ns": 1894500, + "rtt_ms": 1.8945, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:48.415249171Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:46.777017-08:00" }, { "operation": "add_edge", - "rtt_ns": 3032000, - "rtt_ms": 3.032, + "rtt_ns": 2952000, + "rtt_ms": 2.952, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:48.415664369Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:46.777084-08:00" }, { "operation": "add_edge", - "rtt_ns": 3154430, - "rtt_ms": 3.15443, + "rtt_ns": 1615583, + "rtt_ms": 1.615583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "628", - "timestamp": "2025-11-27T01:21:48.415819259Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:46.777225-08:00" }, { "operation": "add_edge", - "rtt_ns": 3239639, - "rtt_ms": 3.239639, + "rtt_ns": 1574959, + "rtt_ms": 1.574959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:48.415923368Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:46.777248-08:00" }, { "operation": "add_edge", - "rtt_ns": 3145689, - "rtt_ms": 3.145689, + "rtt_ns": 1463791, + "rtt_ms": 1.463791, "checkpoint": 0, "vertex_from": "8", "vertex_to": "209", - "timestamp": "2025-11-27T01:21:48.415937848Z" + "timestamp": "2025-11-27T04:01:46.777863-08:00" }, { "operation": "add_edge", - "rtt_ns": 3075939, - "rtt_ms": 3.075939, + "rtt_ns": 1212125, + "rtt_ms": 1.212125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:48.415948618Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:46.777894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612735, - "rtt_ms": 1.612735, + "rtt_ns": 1328375, + "rtt_ms": 1.328375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:48.416017298Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:46.777902-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2098813, - "rtt_ms": 2.098813, + "operation": "add_vertex", + "rtt_ns": 1151583, + "rtt_ms": 1.151583, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:48.416034628Z" + "vertex_from": "650", + "timestamp": "2025-11-27T04:01:46.77817-08:00" }, { "operation": "add_vertex", - "rtt_ns": 805237, - "rtt_ms": 0.805237, + "rtt_ns": 1517917, + "rtt_ms": 1.517917, "checkpoint": 0, - "vertex_from": "650", - "timestamp": "2025-11-27T01:21:48.416057438Z" + "vertex_from": "237", + "timestamp": "2025-11-27T04:01:46.778746-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2311959, + "rtt_ms": 2.311959, + "checkpoint": 0, + "vertex_from": "911", + "timestamp": "2025-11-27T04:01:46.778818-08:00" }, { "operation": "add_edge", - "rtt_ns": 951347, - "rtt_ms": 0.951347, + "rtt_ns": 2135625, + "rtt_ms": 2.135625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "911", - "timestamp": "2025-11-27T01:21:48.416075038Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:46.778839-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219353, - "rtt_ms": 2.219353, + "rtt_ns": 2443250, + "rtt_ms": 2.44325, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.416122898Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:46.778861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009657, - "rtt_ms": 1.009657, + "rtt_ns": 2520209, + "rtt_ms": 2.520209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:48.416675466Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:46.77977-08:00" }, { "operation": "add_edge", - "rtt_ns": 872638, - "rtt_ms": 0.872638, + "rtt_ns": 2558083, + "rtt_ms": 2.558083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:48.416797426Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:46.780728-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1098676, - "rtt_ms": 1.098676, + "operation": "add_edge", + "rtt_ns": 2875583, + "rtt_ms": 2.875583, "checkpoint": 0, - "vertex_from": "237", - "timestamp": "2025-11-27T01:21:48.416920775Z" + "vertex_from": "8", + "vertex_to": "342", + "timestamp": "2025-11-27T04:01:46.780779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018117, - "rtt_ms": 1.018117, + "rtt_ns": 2949458, + "rtt_ms": 2.949458, "checkpoint": 0, "vertex_from": "8", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:48.416968415Z" + "timestamp": "2025-11-27T04:01:46.780845-08:00" }, { "operation": "add_edge", - "rtt_ns": 964917, - "rtt_ms": 0.964917, + "rtt_ns": 2122500, + "rtt_ms": 2.1225, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "342", - "timestamp": "2025-11-27T01:21:48.416984085Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:46.780985-08:00" }, { "operation": "add_edge", - "rtt_ns": 951697, - "rtt_ms": 0.951697, + "rtt_ns": 3140083, + "rtt_ms": 3.140083, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "347", - "timestamp": "2025-11-27T01:21:48.416987805Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:46.781005-08:00" }, { "operation": "add_edge", - "rtt_ns": 974897, - "rtt_ms": 0.974897, + "rtt_ns": 3942334, + "rtt_ms": 3.942334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:48.417032725Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:46.781027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105047, - "rtt_ms": 1.105047, + "rtt_ns": 2479125, + "rtt_ms": 2.479125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:48.417044055Z" + "vertex_to": "237", + "timestamp": "2025-11-27T04:01:46.781225-08:00" }, { "operation": "add_edge", - "rtt_ns": 989237, - "rtt_ms": 0.989237, + "rtt_ns": 2450000, + "rtt_ms": 2.45, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "779", - "timestamp": "2025-11-27T01:21:48.417113495Z" + "vertex_to": "347", + "timestamp": "2025-11-27T04:01:46.78129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570405, - "rtt_ms": 1.570405, + "rtt_ns": 1522333, + "rtt_ms": 1.522333, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:48.417646313Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:01:46.781293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005736, - "rtt_ms": 1.005736, + "rtt_ns": 2543834, + "rtt_ms": 2.543834, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:48.417805552Z" + "vertex_to": "911", + "timestamp": "2025-11-27T04:01:46.781362-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1112208, + "rtt_ms": 1.112208, + "checkpoint": 0, + "vertex_from": "181", + "timestamp": "2025-11-27T04:01:46.78214-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 972583, + "rtt_ms": 0.972583, + "checkpoint": 0, + "vertex_from": "622", + "timestamp": "2025-11-27T04:01:46.782268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153266, - "rtt_ms": 1.153266, + "rtt_ns": 1690125, + "rtt_ms": 1.690125, "checkpoint": 0, "vertex_from": "8", "vertex_to": "547", - "timestamp": "2025-11-27T01:21:48.417830562Z" + "timestamp": "2025-11-27T04:01:46.78242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323756, - "rtt_ms": 1.323756, + "rtt_ns": 1617583, + "rtt_ms": 1.617583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "237", - "timestamp": "2025-11-27T01:21:48.418244761Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:46.782463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361316, - "rtt_ms": 1.361316, + "rtt_ns": 2035209, + "rtt_ms": 2.035209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:48.418346531Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:46.782815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377386, - "rtt_ms": 1.377386, + "rtt_ns": 2038833, + "rtt_ms": 2.038833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:48.418348331Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:46.783048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312496, - "rtt_ms": 1.312496, + "rtt_ns": 1729708, + "rtt_ms": 1.729708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:48.418357651Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:46.783093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427665, - "rtt_ms": 1.427665, + "rtt_ns": 2642209, + "rtt_ms": 2.642209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:48.41841757Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:46.78363-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 770977, - "rtt_ms": 0.770977, + "operation": "add_edge", + "rtt_ns": 2642209, + "rtt_ms": 2.642209, "checkpoint": 0, - "vertex_from": "622", - "timestamp": "2025-11-27T01:21:48.41842118Z" + "vertex_from": "8", + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:46.783868-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1423445, - "rtt_ms": 1.423445, + "rtt_ns": 791000, + "rtt_ms": 0.791, "checkpoint": 0, - "vertex_from": "181", - "timestamp": "2025-11-27T01:21:48.41845867Z" + "vertex_from": "963", + "timestamp": "2025-11-27T04:01:46.783885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428035, - "rtt_ms": 1.428035, + "rtt_ns": 2805292, + "rtt_ms": 2.805292, "checkpoint": 0, "vertex_from": "8", "vertex_to": "312", - "timestamp": "2025-11-27T01:21:48.41854301Z" + "timestamp": "2025-11-27T04:01:46.784096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129757, - "rtt_ms": 1.129757, + "rtt_ns": 2028959, + "rtt_ms": 2.028959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:48.418961199Z" + "vertex_to": "622", + "timestamp": "2025-11-27T04:01:46.784297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174197, - "rtt_ms": 1.174197, + "rtt_ns": 2031500, + "rtt_ms": 2.0315, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:48.418981089Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:46.784452-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1319385, - "rtt_ms": 1.319385, + "operation": "add_edge", + "rtt_ns": 2143958, + "rtt_ms": 2.143958, "checkpoint": 0, - "vertex_from": "963", - "timestamp": "2025-11-27T01:21:48.419679576Z" + "vertex_from": "8", + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:46.784608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034253, - "rtt_ms": 2.034253, + "rtt_ns": 1641625, + "rtt_ms": 1.641625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.420383704Z" + "timestamp": "2025-11-27T04:01:46.784691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991494, - "rtt_ms": 1.991494, + "rtt_ns": 2563292, + "rtt_ms": 2.563292, "checkpoint": 0, "vertex_from": "8", "vertex_to": "181", - "timestamp": "2025-11-27T01:21:48.420450384Z" + "timestamp": "2025-11-27T04:01:46.784704-08:00" }, { "operation": "add_edge", - "rtt_ns": 2231743, - "rtt_ms": 2.231743, + "rtt_ns": 1621958, + "rtt_ms": 1.621958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:48.420477504Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:46.785253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130333, - "rtt_ms": 2.130333, + "rtt_ns": 1243667, + "rtt_ms": 1.243667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:48.420478104Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:46.785341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991564, - "rtt_ms": 1.991564, + "rtt_ns": 1491250, + "rtt_ms": 1.49125, "checkpoint": 0, "vertex_from": "8", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:48.420535714Z" + "timestamp": "2025-11-27T04:01:46.78536-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133243, - "rtt_ms": 2.133243, + "rtt_ns": 2795792, + "rtt_ms": 2.795792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "622", - "timestamp": "2025-11-27T01:21:48.420554863Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:46.785612-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174373, - "rtt_ms": 2.174373, + "rtt_ns": 1739875, + "rtt_ms": 1.739875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:48.420593653Z" + "vertex_to": "963", + "timestamp": "2025-11-27T04:01:46.785626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761314, - "rtt_ms": 1.761314, + "rtt_ns": 1460750, + "rtt_ms": 1.46075, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:48.420723563Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:46.785759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132237, - "rtt_ms": 1.132237, + "rtt_ns": 1192375, + "rtt_ms": 1.192375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "963", - "timestamp": "2025-11-27T01:21:48.420812363Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:46.785897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850444, - "rtt_ms": 1.850444, + "rtt_ns": 1256959, + "rtt_ms": 1.256959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:48.420839653Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:46.78595-08:00" }, { "operation": "add_edge", - "rtt_ns": 785587, - "rtt_ms": 0.785587, + "rtt_ns": 1864209, + "rtt_ms": 1.864209, "checkpoint": 0, "vertex_from": "8", "vertex_to": "122", - "timestamp": "2025-11-27T01:21:48.421236861Z" + "timestamp": "2025-11-27T04:01:46.786473-08:00" }, { "operation": "add_edge", - "rtt_ns": 825137, - "rtt_ms": 0.825137, - "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:48.421303771Z" - }, - { - "operation": "add_edge", - "rtt_ns": 803787, - "rtt_ms": 0.803787, + "rtt_ns": 1268291, + "rtt_ms": 1.268291, "checkpoint": 0, "vertex_from": "8", "vertex_to": "452", - "timestamp": "2025-11-27T01:21:48.421340391Z" + "timestamp": "2025-11-27T04:01:46.786522-08:00" }, { "operation": "add_edge", - "rtt_ns": 992267, - "rtt_ms": 0.992267, + "rtt_ns": 2458875, + "rtt_ms": 2.458875, "checkpoint": 0, "vertex_from": "8", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:48.421381171Z" + "timestamp": "2025-11-27T04:01:46.786912-08:00" }, { "operation": "add_edge", - "rtt_ns": 901667, - "rtt_ms": 0.901667, + "rtt_ns": 2270208, + "rtt_ms": 2.270208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:48.421381441Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:46.787632-08:00" }, { "operation": "add_edge", - "rtt_ns": 864587, - "rtt_ms": 0.864587, + "rtt_ns": 2395334, + "rtt_ms": 2.395334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "920", - "timestamp": "2025-11-27T01:21:48.42146032Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:46.788022-08:00" }, { "operation": "add_edge", - "rtt_ns": 939687, - "rtt_ms": 0.939687, + "rtt_ns": 2276709, + "rtt_ms": 2.276709, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:48.42149558Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:46.788175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128937, - "rtt_ms": 1.128937, + "rtt_ns": 2432875, + "rtt_ms": 2.432875, "checkpoint": 0, "vertex_from": "8", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:48.421970729Z" + "timestamp": "2025-11-27T04:01:46.788194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227245, - "rtt_ms": 1.227245, + "rtt_ns": 2337875, + "rtt_ms": 2.337875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:48.422041428Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:46.788289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321155, - "rtt_ms": 1.321155, + "rtt_ns": 2676208, + "rtt_ms": 2.676208, "checkpoint": 0, "vertex_from": "8", "vertex_to": "184", - "timestamp": "2025-11-27T01:21:48.422046098Z" + "timestamp": "2025-11-27T04:01:46.788289-08:00" }, { "operation": "add_edge", - "rtt_ns": 953647, - "rtt_ms": 0.953647, + "rtt_ns": 3001917, + "rtt_ms": 3.001917, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:48.422258738Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:46.788346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444845, - "rtt_ms": 1.444845, + "rtt_ns": 1951209, + "rtt_ms": 1.951209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:48.422682886Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:46.788425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314536, - "rtt_ms": 1.314536, + "rtt_ns": 2022584, + "rtt_ms": 2.022584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:48.422775946Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:46.788545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395605, - "rtt_ms": 1.395605, + "rtt_ns": 1649666, + "rtt_ms": 1.649666, "checkpoint": 0, "vertex_from": "8", "vertex_to": "392", - "timestamp": "2025-11-27T01:21:48.422778136Z" + "timestamp": "2025-11-27T04:01:46.788563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439165, - "rtt_ms": 1.439165, + "rtt_ns": 1407250, + "rtt_ms": 1.40725, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:48.422780646Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:46.789583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419325, - "rtt_ms": 1.419325, + "rtt_ns": 1577041, + "rtt_ms": 1.577041, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:48.422801506Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:46.7896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981323, - "rtt_ms": 1.981323, + "rtt_ns": 1372166, + "rtt_ms": 1.372166, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:48.423953512Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:01:46.789663-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180223, - "rtt_ms": 2.180223, + "rtt_ns": 1643750, + "rtt_ms": 1.64375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "119", - "timestamp": "2025-11-27T01:21:48.424225541Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:46.789934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2742811, - "rtt_ms": 2.742811, + "rtt_ns": 1627167, + "rtt_ms": 1.627167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:48.424239751Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:46.789974-08:00" }, { "operation": "add_edge", - "rtt_ns": 2822121, - "rtt_ms": 2.822121, + "rtt_ns": 2488084, + "rtt_ms": 2.488084, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:48.424869909Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:46.790121-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219783, - "rtt_ms": 2.219783, + "rtt_ns": 1679958, + "rtt_ms": 1.679958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:48.424904889Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:46.790226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137213, - "rtt_ms": 2.137213, + "rtt_ns": 2082250, + "rtt_ms": 2.08225, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "902", - "timestamp": "2025-11-27T01:21:48.424940689Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:01:46.790277-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232793, - "rtt_ms": 2.232793, + "rtt_ns": 1749500, + "rtt_ms": 1.7495, "checkpoint": 0, "vertex_from": "8", "vertex_to": "67", - "timestamp": "2025-11-27T01:21:48.425015169Z" + "timestamp": "2025-11-27T04:01:46.790313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240293, - "rtt_ms": 2.240293, + "rtt_ns": 1968166, + "rtt_ms": 1.968166, "checkpoint": 0, "vertex_from": "8", "vertex_to": "464", - "timestamp": "2025-11-27T01:21:48.425018069Z" + "timestamp": "2025-11-27T04:01:46.790394-08:00" }, { "operation": "add_edge", - "rtt_ns": 2797781, - "rtt_ms": 2.797781, + "rtt_ns": 1200250, + "rtt_ms": 1.20025, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:48.425576977Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:01:46.790784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771094, - "rtt_ms": 1.771094, + "rtt_ns": 1028375, + "rtt_ms": 1.028375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "675", - "timestamp": "2025-11-27T01:21:48.425725806Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:46.791255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571295, - "rtt_ms": 1.571295, + "rtt_ns": 1729542, + "rtt_ms": 1.729542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "625", - "timestamp": "2025-11-27T01:21:48.425812806Z" + "vertex_to": "248", + "timestamp": "2025-11-27T04:01:46.791395-08:00" }, { "operation": "add_edge", - "rtt_ns": 3570808, - "rtt_ms": 3.570808, + "rtt_ns": 1509708, + "rtt_ms": 1.509708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "391", - "timestamp": "2025-11-27T01:21:48.425830946Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:46.791487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618735, - "rtt_ms": 1.618735, + "rtt_ns": 2032209, + "rtt_ms": 2.032209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "248", - "timestamp": "2025-11-27T01:21:48.425846976Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:46.791633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513085, - "rtt_ms": 1.513085, + "rtt_ns": 1831542, + "rtt_ms": 1.831542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:48.426419094Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:01:46.791766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478735, - "rtt_ms": 1.478735, + "rtt_ns": 1515459, + "rtt_ms": 1.515459, "checkpoint": 0, "vertex_from": "8", "vertex_to": "395", - "timestamp": "2025-11-27T01:21:48.426498014Z" + "timestamp": "2025-11-27T04:01:46.79183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699215, - "rtt_ms": 1.699215, + "rtt_ns": 1717209, + "rtt_ms": 1.717209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:48.426571154Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:46.791839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555685, - "rtt_ms": 1.555685, + "rtt_ns": 1877791, + "rtt_ms": 1.877791, "checkpoint": 0, "vertex_from": "8", "vertex_to": "120", - "timestamp": "2025-11-27T01:21:48.426572244Z" + "timestamp": "2025-11-27T04:01:46.792156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657135, - "rtt_ms": 1.657135, + "rtt_ns": 2295000, + "rtt_ms": 2.295, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:48.426599224Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:46.792691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657805, - "rtt_ms": 1.657805, + "rtt_ns": 2356584, + "rtt_ms": 2.356584, "checkpoint": 0, "vertex_from": "8", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:48.427384591Z" + "timestamp": "2025-11-27T04:01:46.793143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849604, - "rtt_ms": 1.849604, + "rtt_ns": 1891167, + "rtt_ms": 1.891167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:48.427427881Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:46.793147-08:00" }, { "operation": "add_vertex", - "rtt_ns": 964877, - "rtt_ms": 0.964877, + "rtt_ns": 1761667, + "rtt_ms": 1.761667, "checkpoint": 0, - "vertex_from": "829", - "timestamp": "2025-11-27T01:21:48.427464631Z" + "vertex_from": "850", + "timestamp": "2025-11-27T04:01:46.79316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679405, - "rtt_ms": 1.679405, + "rtt_ns": 1528792, + "rtt_ms": 1.528792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:48.427493151Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:46.793163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075717, - "rtt_ms": 1.075717, + "rtt_ns": 1702208, + "rtt_ms": 1.702208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.427495921Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:46.79319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699525, - "rtt_ms": 1.699525, + "rtt_ns": 1433708, + "rtt_ms": 1.433708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:48.427547321Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:46.793274-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1724745, - "rtt_ms": 1.724745, + "rtt_ns": 1521458, + "rtt_ms": 1.521458, "checkpoint": 0, - "vertex_from": "850", - "timestamp": "2025-11-27T01:21:48.427559351Z" + "vertex_from": "829", + "timestamp": "2025-11-27T04:01:46.79329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618585, - "rtt_ms": 1.618585, + "rtt_ns": 1559125, + "rtt_ms": 1.559125, "checkpoint": 0, "vertex_from": "8", "vertex_to": "467", - "timestamp": "2025-11-27T01:21:48.428190569Z" + "timestamp": "2025-11-27T04:01:46.793391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634435, - "rtt_ms": 1.634435, + "rtt_ns": 1468500, + "rtt_ms": 1.4685, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:48.428207409Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:01:46.794629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630474, - "rtt_ms": 1.630474, + "rtt_ns": 2820916, + "rtt_ms": 2.820916, "checkpoint": 0, "vertex_from": "8", "vertex_to": "169", - "timestamp": "2025-11-27T01:21:48.428232058Z" + "timestamp": "2025-11-27T04:01:46.794978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690604, - "rtt_ms": 1.690604, + "rtt_ns": 2305584, + "rtt_ms": 2.305584, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "829", - "timestamp": "2025-11-27T01:21:48.429155575Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:46.794998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677874, - "rtt_ms": 1.677874, + "rtt_ns": 1863875, + "rtt_ms": 1.863875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:48.429176385Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:01:46.795013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691554, - "rtt_ms": 1.691554, + "rtt_ns": 1884375, + "rtt_ms": 1.884375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:48.429240675Z" + "vertex_to": "242", + "timestamp": "2025-11-27T04:01:46.795028-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1058727, - "rtt_ms": 1.058727, + "rtt_ns": 958458, + "rtt_ms": 0.958458, "checkpoint": 0, "vertex_from": "543", - "timestamp": "2025-11-27T01:21:48.429294715Z" + "timestamp": "2025-11-27T04:01:46.795589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092156, - "rtt_ms": 1.092156, + "rtt_ns": 2230916, + "rtt_ms": 2.230916, "checkpoint": 0, "vertex_from": "8", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.429300985Z" + "timestamp": "2025-11-27T04:01:46.795624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807554, - "rtt_ms": 1.807554, + "rtt_ns": 2373208, + "rtt_ms": 2.373208, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "43", - "timestamp": "2025-11-27T01:21:48.429303435Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:46.795648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919124, - "rtt_ms": 1.919124, + "rtt_ns": 2902667, + "rtt_ms": 2.902667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:48.429307475Z" + "vertex_to": "829", + "timestamp": "2025-11-27T04:01:46.796193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133666, - "rtt_ms": 1.133666, + "rtt_ns": 3060916, + "rtt_ms": 3.060916, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:48.429326825Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:46.796227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774594, - "rtt_ms": 1.774594, + "rtt_ns": 3119583, + "rtt_ms": 3.119583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "850", - "timestamp": "2025-11-27T01:21:48.429335005Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:46.796311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909744, - "rtt_ms": 1.909744, + "rtt_ns": 1376000, + "rtt_ms": 1.376, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "242", - "timestamp": "2025-11-27T01:21:48.429339245Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:46.796374-08:00" }, { "operation": "add_edge", - "rtt_ns": 2123983, - "rtt_ms": 2.123983, + "rtt_ns": 1350958, + "rtt_ms": 1.350958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.431366258Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:46.79638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286743, - "rtt_ms": 2.286743, + "rtt_ns": 1400958, + "rtt_ms": 1.400958, "checkpoint": 0, "vertex_from": "8", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:48.431444508Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2336202, - "rtt_ms": 2.336202, - "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:48.431514257Z" + "timestamp": "2025-11-27T04:01:46.79638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182502, - "rtt_ms": 2.182502, + "rtt_ns": 1381000, + "rtt_ms": 1.381, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:48.431523457Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:46.796395-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285942, - "rtt_ms": 2.285942, + "rtt_ns": 1669666, + "rtt_ms": 1.669666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:48.431589007Z" + "vertex_to": "30", + "timestamp": "2025-11-27T04:01:46.797294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317202, - "rtt_ms": 2.317202, + "rtt_ns": 1671583, + "rtt_ms": 1.671583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "543", - "timestamp": "2025-11-27T01:21:48.431612367Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:46.797323-08:00" }, { "operation": "add_edge", - "rtt_ns": 2397682, - "rtt_ms": 2.397682, + "rtt_ns": 1462666, + "rtt_ms": 1.462666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:48.431707027Z" + "vertex_to": "93", + "timestamp": "2025-11-27T04:01:46.797657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2855460, - "rtt_ms": 2.85546, + "rtt_ns": 1401958, + "rtt_ms": 1.401958, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "30", - "timestamp": "2025-11-27T01:21:48.432161745Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:46.797777-08:00" }, { "operation": "add_edge", - "rtt_ns": 2876020, - "rtt_ms": 2.87602, + "rtt_ns": 1411542, + "rtt_ms": 1.411542, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "93", - "timestamp": "2025-11-27T01:21:48.432204535Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:46.797792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2926760, - "rtt_ms": 2.92676, + "rtt_ns": 1473292, + "rtt_ms": 1.473292, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:48.432263685Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:46.797873-08:00" }, { "operation": "add_edge", - "rtt_ns": 871907, - "rtt_ms": 0.871907, + "rtt_ns": 1576792, + "rtt_ms": 1.576792, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:48.432317625Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:46.79789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132056, - "rtt_ms": 1.132056, + "rtt_ns": 1616209, + "rtt_ms": 1.616209, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:48.432500874Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:46.798009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563785, - "rtt_ms": 1.563785, + "rtt_ns": 1862250, + "rtt_ms": 1.86225, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:48.433090972Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:46.79809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538015, - "rtt_ms": 1.538015, + "rtt_ns": 2519667, + "rtt_ms": 2.519667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:48.433152242Z" + "vertex_to": "543", + "timestamp": "2025-11-27T04:01:46.798109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692225, - "rtt_ms": 1.692225, + "rtt_ns": 1094625, + "rtt_ms": 1.094625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:48.433208862Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:46.79839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644495, - "rtt_ms": 1.644495, + "rtt_ns": 1340125, + "rtt_ms": 1.340125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:48.433236892Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:46.798664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078867, - "rtt_ms": 1.078867, + "rtt_ns": 1946250, + "rtt_ms": 1.94625, "checkpoint": 0, "vertex_from": "8", "vertex_to": "480", - "timestamp": "2025-11-27T01:21:48.433242732Z" + "timestamp": "2025-11-27T04:01:46.799724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539275, - "rtt_ms": 1.539275, + "rtt_ns": 2205500, + "rtt_ms": 2.2055, "checkpoint": 0, "vertex_from": "8", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:48.433248312Z" + "timestamp": "2025-11-27T04:01:46.799863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118627, - "rtt_ms": 1.118627, + "rtt_ns": 1488959, + "rtt_ms": 1.488959, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:48.433324682Z" + "vertex_to": "697", + "timestamp": "2025-11-27T04:01:46.79988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329036, - "rtt_ms": 1.329036, + "rtt_ns": 2101708, + "rtt_ms": 2.101708, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:48.433594391Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:46.799992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2216833, - "rtt_ms": 2.216833, + "rtt_ns": 1997875, + "rtt_ms": 1.997875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:48.434720357Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:01:46.800089-08:00" }, { "operation": "add_edge", - "rtt_ns": 2332103, - "rtt_ms": 2.332103, + "rtt_ns": 2368458, + "rtt_ms": 2.368458, "checkpoint": 0, "vertex_from": "8", "vertex_to": "752", - "timestamp": "2025-11-27T01:21:48.435485615Z" + "timestamp": "2025-11-27T04:01:46.800479-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2464093, - "rtt_ms": 2.464093, + "operation": "add_vertex", + "rtt_ns": 774583, + "rtt_ms": 0.774583, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "370", - "timestamp": "2025-11-27T01:21:48.435556875Z" + "vertex_from": "483", + "timestamp": "2025-11-27T04:01:46.800866-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391262, - "rtt_ms": 2.391262, + "rtt_ns": 3280833, + "rtt_ms": 3.280833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "697", - "timestamp": "2025-11-27T01:21:48.435602804Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:46.801074-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2403562, - "rtt_ms": 2.403562, + "rtt_ns": 2567542, + "rtt_ms": 2.567542, "checkpoint": 0, "vertex_from": "965", - "timestamp": "2025-11-27T01:21:48.435642854Z" + "timestamp": "2025-11-27T04:01:46.801235-08:00" }, { "operation": "add_edge", - "rtt_ns": 3333839, - "rtt_ms": 3.333839, + "rtt_ns": 3435334, + "rtt_ms": 3.435334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:48.435652564Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:46.80131-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464232, - "rtt_ms": 2.464232, + "rtt_ns": 3425125, + "rtt_ms": 3.425125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:48.435714434Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:46.801436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2506082, - "rtt_ms": 2.506082, + "rtt_ns": 1459583, + "rtt_ms": 1.459583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "559", - "timestamp": "2025-11-27T01:21:48.435751214Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:46.801453-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199173, - "rtt_ms": 2.199173, + "rtt_ns": 1736375, + "rtt_ms": 1.736375, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "901", - "timestamp": "2025-11-27T01:21:48.435795754Z" + "vertex_to": "559", + "timestamp": "2025-11-27T04:01:46.801462-08:00" }, { "operation": "add_edge", - "rtt_ns": 2504712, - "rtt_ms": 2.504712, + "rtt_ns": 1754833, + "rtt_ms": 1.754833, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:48.435831304Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1375676, - "rtt_ms": 1.375676, - "checkpoint": 0, - "vertex_from": "483", - "timestamp": "2025-11-27T01:21:48.436099803Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:46.801619-08:00" }, { "operation": "add_edge", - "rtt_ns": 798767, - "rtt_ms": 0.798767, + "rtt_ns": 1169292, + "rtt_ms": 1.169292, "checkpoint": 0, "vertex_from": "8", "vertex_to": "364", - "timestamp": "2025-11-27T01:21:48.436285712Z" + "timestamp": "2025-11-27T04:01:46.80165-08:00" }, { "operation": "add_edge", - "rtt_ns": 854918, - "rtt_ms": 0.854918, + "rtt_ns": 1114334, + "rtt_ms": 1.114334, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:48.436459362Z" + "vertex_to": "483", + "timestamp": "2025-11-27T04:01:46.80198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015556, - "rtt_ms": 1.015556, + "rtt_ns": 2148666, + "rtt_ms": 2.148666, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:48.436575141Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:46.80203-08:00" }, { "operation": "add_edge", - "rtt_ns": 982057, - "rtt_ms": 0.982057, + "rtt_ns": 2081667, + "rtt_ms": 2.081667, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:48.436637471Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:01:46.803316-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037327, - "rtt_ms": 1.037327, + "rtt_ns": 1986125, + "rtt_ms": 1.986125, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "965", - "timestamp": "2025-11-27T01:21:48.436680501Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:46.803423-08:00" }, { "operation": "add_edge", - "rtt_ns": 996177, - "rtt_ms": 0.996177, + "rtt_ns": 2633041, + "rtt_ms": 2.633041, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:48.436713581Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:46.803707-08:00" }, { "operation": "add_edge", - "rtt_ns": 975967, - "rtt_ms": 0.975967, + "rtt_ns": 2246083, + "rtt_ms": 2.246083, "checkpoint": 0, "vertex_from": "8", "vertex_to": "108", - "timestamp": "2025-11-27T01:21:48.436730901Z" + "timestamp": "2025-11-27T04:01:46.803708-08:00" }, { "operation": "add_edge", - "rtt_ns": 930037, - "rtt_ms": 0.930037, + "rtt_ns": 2150166, + "rtt_ms": 2.150166, "checkpoint": 0, "vertex_from": "8", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:48.436763031Z" + "timestamp": "2025-11-27T04:01:46.803804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032766, - "rtt_ms": 1.032766, + "rtt_ns": 2528750, + "rtt_ms": 2.52875, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "647", - "timestamp": "2025-11-27T01:21:48.43683102Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:46.80384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222016, - "rtt_ms": 1.222016, + "rtt_ns": 2257583, + "rtt_ms": 2.257583, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:48.437510788Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:01:46.803878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484965, - "rtt_ms": 1.484965, + "rtt_ns": 2435167, + "rtt_ms": 2.435167, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "483", - "timestamp": "2025-11-27T01:21:48.437585338Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1122246, - "rtt_ms": 1.122246, - "checkpoint": 0, - "vertex_from": "143", - "timestamp": "2025-11-27T01:21:48.437700677Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:46.803889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260555, - "rtt_ms": 1.260555, + "rtt_ns": 2091584, + "rtt_ms": 2.091584, "checkpoint": 0, "vertex_from": "8", "vertex_to": "534", - "timestamp": "2025-11-27T01:21:48.437721607Z" + "timestamp": "2025-11-27T04:01:46.804122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610244, - "rtt_ms": 1.610244, + "rtt_ns": 2150625, + "rtt_ms": 2.150625, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:48.438375115Z" + "vertex_from": "8", + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:46.804132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667084, - "rtt_ms": 1.667084, + "rtt_ns": 1682625, + "rtt_ms": 1.682625, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:48.438399845Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:46.805392-08:00" }, { "operation": "add_edge", - "rtt_ns": 828777, - "rtt_ms": 0.828777, + "rtt_ns": 1636542, + "rtt_ms": 1.636542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:48.438415235Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:46.805515-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1751024, - "rtt_ms": 1.751024, + "operation": "add_vertex", + "rtt_ns": 2198375, + "rtt_ms": 2.198375, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:48.438433655Z" + "vertex_from": "143", + "timestamp": "2025-11-27T04:01:46.805517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799204, - "rtt_ms": 1.799204, + "rtt_ns": 2102459, + "rtt_ms": 2.102459, "checkpoint": 0, "vertex_from": "8", "vertex_to": "27", - "timestamp": "2025-11-27T01:21:48.438439485Z" + "timestamp": "2025-11-27T04:01:46.805529-08:00" }, { "operation": "add_edge", - "rtt_ns": 927697, - "rtt_ms": 0.927697, + "rtt_ns": 1820000, + "rtt_ms": 1.82, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:48.438440295Z" + "vertex_from": "8", + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:46.805529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732584, - "rtt_ms": 1.732584, + "rtt_ns": 2004834, + "rtt_ms": 2.004834, "checkpoint": 0, "vertex_from": "8", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:48.438448085Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:46.80581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625415, - "rtt_ms": 1.625415, + "rtt_ns": 2085000, + "rtt_ms": 2.085, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:48.438458045Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:46.805926-08:00" }, { "operation": "add_edge", - "rtt_ns": 907187, - "rtt_ms": 0.907187, + "rtt_ns": 2115625, + "rtt_ms": 2.115625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:48.439284962Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:46.806012-08:00" }, { "operation": "add_edge", - "rtt_ns": 929207, - "rtt_ms": 0.929207, + "rtt_ns": 2972667, + "rtt_ms": 2.972667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:48.439331142Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:46.807096-08:00" }, { "operation": "add_edge", - "rtt_ns": 925597, - "rtt_ms": 0.925597, + "rtt_ns": 1686167, + "rtt_ms": 1.686167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:48.439344052Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:46.807202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667245, - "rtt_ms": 1.667245, + "rtt_ns": 1821666, + "rtt_ms": 1.821666, "checkpoint": 0, - "vertex_from": "8", - "vertex_to": "143", - "timestamp": "2025-11-27T01:21:48.439368392Z" + "vertex_from": "9", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:46.807215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698975, - "rtt_ms": 1.698975, + "rtt_ns": 1689792, + "rtt_ms": 1.689792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:48.439422762Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:46.807222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905944, - "rtt_ms": 1.905944, + "rtt_ns": 1296750, + "rtt_ms": 1.29675, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:48.440348299Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:01:46.807224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129043, - "rtt_ms": 2.129043, + "rtt_ns": 1236875, + "rtt_ms": 1.236875, "checkpoint": 0, "vertex_from": "9", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:48.440579958Z" + "timestamp": "2025-11-27T04:01:46.807251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2256703, - "rtt_ms": 2.256703, + "rtt_ns": 1531292, + "rtt_ms": 1.531292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:48.440692788Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:46.807343-08:00" }, { "operation": "add_edge", - "rtt_ns": 2857501, - "rtt_ms": 2.857501, + "rtt_ns": 1833125, + "rtt_ms": 1.833125, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "618", - "timestamp": "2025-11-27T01:21:48.441301076Z" + "vertex_from": "8", + "vertex_to": "143", + "timestamp": "2025-11-27T04:01:46.80735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2896930, - "rtt_ms": 2.89693, + "rtt_ns": 3228584, + "rtt_ms": 3.228584, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:48.441357805Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:46.80737-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056373, - "rtt_ms": 2.056373, + "rtt_ns": 1876917, + "rtt_ms": 1.876917, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:48.441402205Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:46.807407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2167243, - "rtt_ms": 2.167243, + "rtt_ns": 1342833, + "rtt_ms": 1.342833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:48.441455805Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:46.808569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073103, - "rtt_ms": 2.073103, + "rtt_ns": 1244666, + "rtt_ms": 1.244666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:48.441498435Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:46.808589-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172603, - "rtt_ms": 2.172603, + "rtt_ns": 1493917, + "rtt_ms": 1.493917, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:48.441542205Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:46.808746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2211043, - "rtt_ms": 2.211043, + "rtt_ns": 1548209, + "rtt_ms": 1.548209, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:48.441543345Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:46.808751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330355, - "rtt_ms": 1.330355, + "rtt_ns": 1656291, + "rtt_ms": 1.656291, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:48.441680884Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:46.808753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123156, - "rtt_ms": 1.123156, + "rtt_ns": 1533708, + "rtt_ms": 1.533708, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:48.441704924Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:46.808758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022696, - "rtt_ms": 1.022696, + "rtt_ns": 1406041, + "rtt_ms": 1.406041, "checkpoint": 0, "vertex_from": "9", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:48.441716724Z" + "timestamp": "2025-11-27T04:01:46.808777-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1065437, - "rtt_ms": 1.065437, + "operation": "add_edge", + "rtt_ns": 1436500, + "rtt_ms": 1.4365, "checkpoint": 0, - "vertex_from": "670", - "timestamp": "2025-11-27T01:21:48.442428172Z" + "vertex_from": "9", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:46.808844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204576, - "rtt_ms": 1.204576, + "rtt_ns": 1636708, + "rtt_ms": 1.636708, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:48.442507832Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:46.808853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042117, - "rtt_ms": 1.042117, + "rtt_ns": 1566333, + "rtt_ms": 1.566333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:48.442585592Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:46.808917-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1972792, + "rtt_ms": 1.972792, + "checkpoint": 0, + "vertex_from": "670", + "timestamp": "2025-11-27T04:01:46.810543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147286, - "rtt_ms": 1.147286, + "rtt_ns": 1829042, + "rtt_ms": 1.829042, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "692", - "timestamp": "2025-11-27T01:21:48.442605111Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:46.810588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267046, - "rtt_ms": 1.267046, + "rtt_ns": 1877291, + "rtt_ms": 1.877291, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:48.442672011Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:46.810633-08:00" }, { "operation": "add_edge", - "rtt_ns": 993307, - "rtt_ms": 0.993307, + "rtt_ns": 1837333, + "rtt_ms": 1.837333, "checkpoint": 0, "vertex_from": "9", "vertex_to": "901", - "timestamp": "2025-11-27T01:21:48.442713141Z" + "timestamp": "2025-11-27T04:01:46.810691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236326, - "rtt_ms": 1.236326, + "rtt_ns": 1955625, + "rtt_ms": 1.955625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:48.442736871Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:01:46.810702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064547, - "rtt_ms": 1.064547, + "rtt_ns": 1893291, + "rtt_ms": 1.893291, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:48.442747171Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:46.810738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207096, - "rtt_ms": 1.207096, + "rtt_ns": 2225167, + "rtt_ms": 2.225167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:48.442751721Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:46.811003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071067, - "rtt_ms": 1.071067, + "rtt_ns": 2270750, + "rtt_ms": 2.27075, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:48.442777231Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:46.811023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960613, - "rtt_ms": 1.960613, + "rtt_ns": 2516291, + "rtt_ms": 2.516291, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:48.444548875Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:46.811106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035903, - "rtt_ms": 2.035903, + "rtt_ns": 2436542, + "rtt_ms": 2.436542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:48.444784814Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:01:46.811355-08:00" }, { "operation": "add_edge", - "rtt_ns": 3030390, - "rtt_ms": 3.03039, + "rtt_ns": 1326417, + "rtt_ms": 1.326417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "670", - "timestamp": "2025-11-27T01:21:48.445459682Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:46.811961-08:00" }, { "operation": "add_edge", - "rtt_ns": 2770721, - "rtt_ms": 2.770721, + "rtt_ns": 1435375, + "rtt_ms": 1.435375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:48.445524062Z" + "vertex_to": "670", + "timestamp": "2025-11-27T04:01:46.811979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2936811, - "rtt_ms": 2.936811, + "rtt_ns": 1493125, + "rtt_ms": 1.493125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:48.445543392Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:46.812196-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2833381, - "rtt_ms": 2.833381, + "rtt_ns": 1190709, + "rtt_ms": 1.190709, "checkpoint": 0, "vertex_from": "887", - "timestamp": "2025-11-27T01:21:48.445615112Z" + "timestamp": "2025-11-27T04:01:46.812299-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 3017080, - "rtt_ms": 3.01708, + "operation": "add_edge", + "rtt_ns": 1717375, + "rtt_ms": 1.717375, "checkpoint": 0, - "vertex_from": "375", - "timestamp": "2025-11-27T01:21:48.445692701Z" + "vertex_from": "9", + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:46.812306-08:00" }, { "operation": "add_edge", - "rtt_ns": 3383619, - "rtt_ms": 3.383619, + "rtt_ns": 1459334, + "rtt_ms": 1.459334, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:48.44609821Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:46.812465-08:00" }, { "operation": "add_edge", - "rtt_ns": 3481489, - "rtt_ms": 3.481489, + "rtt_ns": 1742000, + "rtt_ms": 1.742, "checkpoint": 0, "vertex_from": "9", "vertex_to": "56", - "timestamp": "2025-11-27T01:21:48.44622032Z" + "timestamp": "2025-11-27T04:01:46.812481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751334, - "rtt_ms": 1.751334, + "rtt_ns": 1592958, + "rtt_ms": 1.592958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:48.446301989Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:46.812617-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1940333, + "rtt_ms": 1.940333, + "checkpoint": 0, + "vertex_from": "375", + "timestamp": "2025-11-27T04:01:46.812633-08:00" }, { "operation": "add_edge", - "rtt_ns": 3813177, - "rtt_ms": 3.813177, + "rtt_ns": 1429708, + "rtt_ms": 1.429708, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "820", - "timestamp": "2025-11-27T01:21:48.446322689Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:46.813627-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1374334, + "rtt_ms": 1.374334, + "checkpoint": 0, + "vertex_from": "9", + "vertex_to": "887", + "timestamp": "2025-11-27T04:01:46.813674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558695, - "rtt_ms": 1.558695, + "rtt_ns": 1763959, + "rtt_ms": 1.763959, "checkpoint": 0, "vertex_from": "9", "vertex_to": "99", - "timestamp": "2025-11-27T01:21:48.446345689Z" + "timestamp": "2025-11-27T04:01:46.813726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350955, - "rtt_ms": 1.350955, + "rtt_ns": 2432208, + "rtt_ms": 2.432208, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:48.446876447Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:46.813787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438065, - "rtt_ms": 1.438065, + "rtt_ns": 1865000, + "rtt_ms": 1.865, "checkpoint": 0, "vertex_from": "9", "vertex_to": "330", - "timestamp": "2025-11-27T01:21:48.446899207Z" + "timestamp": "2025-11-27T04:01:46.813845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259876, - "rtt_ms": 1.259876, + "rtt_ns": 1384542, + "rtt_ms": 1.384542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "375", - "timestamp": "2025-11-27T01:21:48.446952977Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:46.81385-08:00" }, { "operation": "add_edge", - "rtt_ns": 898217, - "rtt_ms": 0.898217, + "rtt_ns": 1375500, + "rtt_ms": 1.3755, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:48.446998487Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:46.813857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454365, - "rtt_ms": 1.454365, + "rtt_ns": 1588417, + "rtt_ms": 1.588417, "checkpoint": 0, "vertex_from": "9", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:48.446998897Z" + "timestamp": "2025-11-27T04:01:46.813895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102246, - "rtt_ms": 1.102246, + "rtt_ns": 1435917, + "rtt_ms": 1.435917, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:48.447324866Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:46.814054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023447, - "rtt_ms": 1.023447, + "rtt_ns": 1432917, + "rtt_ms": 1.432917, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:48.447327116Z" + "vertex_to": "375", + "timestamp": "2025-11-27T04:01:46.814066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711624, - "rtt_ms": 1.711624, + "rtt_ns": 1070958, + "rtt_ms": 1.070958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "887", - "timestamp": "2025-11-27T01:21:48.447327436Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:46.814923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199406, - "rtt_ms": 1.199406, + "rtt_ns": 1523209, + "rtt_ms": 1.523209, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:48.447525815Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:46.815369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262646, - "rtt_ms": 1.262646, + "rtt_ns": 1948125, + "rtt_ms": 1.948125, "checkpoint": 0, "vertex_from": "9", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:48.447609845Z" + "timestamp": "2025-11-27T04:01:46.815623-08:00" }, { "operation": "add_edge", - "rtt_ns": 826618, - "rtt_ms": 0.826618, + "rtt_ns": 1848542, + "rtt_ms": 1.848542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:48.447705745Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:46.815637-08:00" }, { "operation": "add_edge", - "rtt_ns": 859947, - "rtt_ms": 0.859947, + "rtt_ns": 1759833, + "rtt_ms": 1.759833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:48.447760814Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:46.815656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273946, - "rtt_ms": 1.273946, + "rtt_ns": 1815833, + "rtt_ms": 1.815833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:48.448228583Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:46.815674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000127, - "rtt_ms": 1.000127, + "rtt_ns": 1987375, + "rtt_ms": 1.987375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:48.448326593Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:46.815714-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2110958, + "rtt_ms": 2.110958, + "checkpoint": 0, + "vertex_from": "9", + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:46.81574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001177, - "rtt_ms": 1.001177, + "rtt_ns": 2031166, + "rtt_ms": 2.031166, "checkpoint": 0, "vertex_from": "9", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:48.448330273Z" + "timestamp": "2025-11-27T04:01:46.816086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430265, - "rtt_ms": 1.430265, + "rtt_ns": 2062833, + "rtt_ms": 2.062833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:48.448432322Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:46.81613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432505, - "rtt_ms": 1.432505, + "rtt_ns": 1441125, + "rtt_ms": 1.441125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:48.448434022Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:01:46.816812-08:00" }, { "operation": "add_vertex", - "rtt_ns": 911897, - "rtt_ms": 0.911897, + "rtt_ns": 2060042, + "rtt_ms": 2.060042, "checkpoint": 0, "vertex_from": "367", - "timestamp": "2025-11-27T01:21:48.448440242Z" + "timestamp": "2025-11-27T04:01:46.816985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782904, - "rtt_ms": 1.782904, + "rtt_ns": 1339000, + "rtt_ms": 1.339, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:48.44911319Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:46.816997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182423, - "rtt_ms": 2.182423, + "rtt_ns": 1378666, + "rtt_ms": 1.378666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:48.449889718Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:46.81712-08:00" }, { "operation": "add_edge", - "rtt_ns": 2373442, - "rtt_ms": 2.373442, + "rtt_ns": 1673333, + "rtt_ms": 1.673333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "115", - "timestamp": "2025-11-27T01:21:48.449985197Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:01:46.817388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767294, - "rtt_ms": 1.767294, + "rtt_ns": 1796333, + "rtt_ms": 1.796333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "614", - "timestamp": "2025-11-27T01:21:48.450099827Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:46.81742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2421593, - "rtt_ms": 2.421593, + "rtt_ns": 1805833, + "rtt_ms": 1.805833, "checkpoint": 0, "vertex_from": "9", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:48.450183617Z" + "timestamp": "2025-11-27T04:01:46.817444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989494, - "rtt_ms": 1.989494, + "rtt_ns": 1789667, + "rtt_ms": 1.789667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:48.450222447Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:46.817464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863744, - "rtt_ms": 1.863744, + "rtt_ns": 1700375, + "rtt_ms": 1.700375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:48.450299806Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:46.817831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887794, - "rtt_ms": 1.887794, + "rtt_ns": 1899583, + "rtt_ms": 1.899583, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "367", - "timestamp": "2025-11-27T01:21:48.450328576Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:46.817986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973404, - "rtt_ms": 1.973404, + "rtt_ns": 1411667, + "rtt_ms": 1.411667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "572", - "timestamp": "2025-11-27T01:21:48.450407276Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:46.818225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393856, - "rtt_ms": 1.393856, + "rtt_ns": 1380667, + "rtt_ms": 1.380667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:48.450511156Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:46.818825-08:00" }, { "operation": "add_edge", - "rtt_ns": 635788, - "rtt_ms": 0.635788, + "rtt_ns": 1483667, + "rtt_ms": 1.483667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:48.450526766Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:46.818873-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214093, - "rtt_ms": 2.214093, + "rtt_ns": 1549166, + "rtt_ms": 1.549166, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "916", - "timestamp": "2025-11-27T01:21:48.450542356Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:46.81897-08:00" }, { "operation": "add_edge", - "rtt_ns": 652638, - "rtt_ms": 0.652638, + "rtt_ns": 1861625, + "rtt_ms": 1.861625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:48.450639705Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:46.818982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638125, - "rtt_ms": 1.638125, + "rtt_ns": 1288375, + "rtt_ms": 1.288375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:48.451739432Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:46.81912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704114, - "rtt_ms": 1.704114, + "rtt_ns": 2344166, + "rtt_ms": 2.344166, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:48.451928021Z" + "vertex_to": "367", + "timestamp": "2025-11-27T04:01:46.81933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782244, - "rtt_ms": 1.782244, + "rtt_ns": 2410042, + "rtt_ms": 2.410042, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:48.451967961Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:46.819408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643165, - "rtt_ms": 1.643165, + "rtt_ns": 1954292, + "rtt_ms": 1.954292, "checkpoint": 0, "vertex_from": "9", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:48.451973071Z" + "timestamp": "2025-11-27T04:01:46.819419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020423, - "rtt_ms": 2.020423, + "rtt_ns": 2183084, + "rtt_ms": 2.183084, "checkpoint": 0, "vertex_from": "9", "vertex_to": "114", - "timestamp": "2025-11-27T01:21:48.452533759Z" + "timestamp": "2025-11-27T04:01:46.82017-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178173, - "rtt_ms": 2.178173, + "rtt_ns": 1242000, + "rtt_ms": 1.242, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:48.452586779Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:46.820214-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297623, - "rtt_ms": 2.297623, + "rtt_ns": 1466792, + "rtt_ms": 1.466792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:48.452599119Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:46.82034-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132183, - "rtt_ms": 2.132183, + "rtt_ns": 998250, + "rtt_ms": 0.99825, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:48.452772898Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:46.820419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228842, - "rtt_ms": 2.228842, + "rtt_ns": 1643500, + "rtt_ms": 1.6435, "checkpoint": 0, "vertex_from": "9", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:48.452773118Z" + "timestamp": "2025-11-27T04:01:46.82047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288412, - "rtt_ms": 2.288412, + "rtt_ns": 2258417, + "rtt_ms": 2.258417, "checkpoint": 0, "vertex_from": "9", "vertex_to": "48", - "timestamp": "2025-11-27T01:21:48.452816568Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1466455, - "rtt_ms": 1.466455, - "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:48.453207807Z" + "timestamp": "2025-11-27T04:01:46.820486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263606, - "rtt_ms": 1.263606, + "rtt_ns": 1367417, + "rtt_ms": 1.367417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:48.453239577Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:46.820488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358056, - "rtt_ms": 1.358056, + "rtt_ns": 1538875, + "rtt_ms": 1.538875, "checkpoint": 0, "vertex_from": "9", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:48.453287667Z" + "timestamp": "2025-11-27T04:01:46.820522-08:00" }, { "operation": "add_edge", - "rtt_ns": 772728, - "rtt_ms": 0.772728, + "rtt_ns": 1611083, + "rtt_ms": 1.611083, "checkpoint": 0, "vertex_from": "9", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:48.453308157Z" + "timestamp": "2025-11-27T04:01:46.821021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342295, - "rtt_ms": 1.342295, + "rtt_ns": 2062834, + "rtt_ms": 2.062834, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:48.453312156Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:46.821393-08:00" }, { "operation": "add_edge", - "rtt_ns": 825897, - "rtt_ms": 0.825897, + "rtt_ns": 1292958, + "rtt_ms": 1.292958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:48.453414506Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:46.821634-08:00" }, { "operation": "add_edge", - "rtt_ns": 907487, - "rtt_ms": 0.907487, + "rtt_ns": 1822250, + "rtt_ms": 1.82225, "checkpoint": 0, "vertex_from": "9", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:48.453508276Z" + "timestamp": "2025-11-27T04:01:46.821995-08:00" }, { "operation": "add_edge", - "rtt_ns": 810048, - "rtt_ms": 0.810048, + "rtt_ns": 2333834, + "rtt_ms": 2.333834, "checkpoint": 0, "vertex_from": "9", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:48.453584106Z" + "timestamp": "2025-11-27T04:01:46.82255-08:00" }, { "operation": "add_edge", - "rtt_ns": 842537, - "rtt_ms": 0.842537, + "rtt_ns": 2334584, + "rtt_ms": 2.334584, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:48.453617545Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:01:46.822805-08:00" }, { "operation": "add_edge", - "rtt_ns": 801677, - "rtt_ms": 0.801677, + "rtt_ns": 1791875, + "rtt_ms": 1.791875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:48.453620045Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:01:46.822815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370735, - "rtt_ms": 1.370735, + "rtt_ns": 2405459, + "rtt_ms": 2.405459, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "850", - "timestamp": "2025-11-27T01:21:48.454580572Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:46.822892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491985, - "rtt_ms": 1.491985, + "rtt_ns": 1571417, + "rtt_ms": 1.571417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:48.454733362Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:46.822966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332146, - "rtt_ms": 1.332146, + "rtt_ns": 2484167, + "rtt_ms": 2.484167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:48.454747702Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:46.822973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461935, - "rtt_ms": 1.461935, + "rtt_ns": 2571791, + "rtt_ms": 2.571791, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:48.454771142Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:46.822991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466586, - "rtt_ms": 1.466586, + "rtt_ns": 2517792, + "rtt_ms": 2.517792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "794", - "timestamp": "2025-11-27T01:21:48.454780542Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:46.823041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278496, - "rtt_ms": 1.278496, + "rtt_ns": 1799833, + "rtt_ms": 1.799833, "checkpoint": 0, "vertex_from": "9", "vertex_to": "92", - "timestamp": "2025-11-27T01:21:48.454787622Z" + "timestamp": "2025-11-27T04:01:46.823435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178467, - "rtt_ms": 1.178467, + "rtt_ns": 1490542, + "rtt_ms": 1.490542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:48.454797232Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:46.823486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590484, - "rtt_ms": 1.590484, + "rtt_ns": 1037125, + "rtt_ms": 1.037125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:48.454879461Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:46.82393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577935, - "rtt_ms": 1.577935, + "rtt_ns": 1496542, + "rtt_ms": 1.496542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:48.45520813Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:46.824047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665984, - "rtt_ms": 1.665984, + "rtt_ns": 1366667, + "rtt_ms": 1.366667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:48.4552511Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:46.824173-08:00" }, { "operation": "add_edge", - "rtt_ns": 725688, - "rtt_ms": 0.725688, + "rtt_ns": 1444916, + "rtt_ms": 1.444916, "checkpoint": 0, "vertex_from": "9", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:48.45530822Z" + "timestamp": "2025-11-27T04:01:46.824261-08:00" }, { "operation": "add_edge", - "rtt_ns": 709477, - "rtt_ms": 0.709477, + "rtt_ns": 1671917, + "rtt_ms": 1.671917, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:48.455498219Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:46.825107-08:00" }, { "operation": "add_edge", - "rtt_ns": 770517, - "rtt_ms": 0.770517, + "rtt_ns": 2155083, + "rtt_ms": 2.155083, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:48.455519449Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:46.825129-08:00" }, { "operation": "add_edge", - "rtt_ns": 857427, - "rtt_ms": 0.857427, + "rtt_ns": 2179958, + "rtt_ms": 2.179958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:48.455592909Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:46.825146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226605, - "rtt_ms": 1.226605, + "rtt_ns": 2107667, + "rtt_ms": 2.107667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:48.456010327Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:46.825149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250055, - "rtt_ms": 1.250055, + "rtt_ns": 1847542, + "rtt_ms": 1.847542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:48.456022127Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:46.825335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256136, - "rtt_ms": 1.256136, + "rtt_ns": 2409584, + "rtt_ms": 2.409584, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:48.456058737Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:46.825402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252306, - "rtt_ms": 1.252306, + "rtt_ns": 2346833, + "rtt_ms": 2.346833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:48.456134957Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:46.826278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005237, - "rtt_ms": 1.005237, + "rtt_ns": 2249834, + "rtt_ms": 2.249834, "checkpoint": 0, "vertex_from": "9", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:48.456258717Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1453785, - "rtt_ms": 1.453785, - "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:48.456663895Z" + "timestamp": "2025-11-27T04:01:46.826298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457065, - "rtt_ms": 1.457065, + "rtt_ns": 1160375, + "rtt_ms": 1.160375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:48.456766385Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:46.826311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441505, - "rtt_ms": 1.441505, + "rtt_ns": 1318708, + "rtt_ms": 1.318708, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "470", - "timestamp": "2025-11-27T01:21:48.456962344Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:46.82645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501935, - "rtt_ms": 1.501935, + "rtt_ns": 2224083, + "rtt_ms": 2.224083, "checkpoint": 0, "vertex_from": "9", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:48.457001234Z" + "timestamp": "2025-11-27T04:01:46.826488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724914, - "rtt_ms": 1.724914, + "rtt_ns": 1367833, + "rtt_ms": 1.367833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:48.457319513Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:46.826515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379706, - "rtt_ms": 1.379706, + "rtt_ns": 2418959, + "rtt_ms": 2.418959, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:48.457403033Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:46.826592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432366, - "rtt_ms": 1.432366, + "rtt_ns": 1648125, + "rtt_ms": 1.648125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:48.457444683Z" + "vertex_to": "470", + "timestamp": "2025-11-27T04:01:46.826756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867814, - "rtt_ms": 1.867814, + "rtt_ns": 1977333, + "rtt_ms": 1.977333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:48.458127801Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:01:46.827381-08:00" }, { "operation": "add_edge", - "rtt_ns": 2035444, - "rtt_ms": 2.035444, + "rtt_ns": 2926709, + "rtt_ms": 2.926709, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "213", - "timestamp": "2025-11-27T01:21:48.458172341Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:46.828263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444565, - "rtt_ms": 1.444565, + "rtt_ns": 1796833, + "rtt_ms": 1.796833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "10", - "timestamp": "2025-11-27T01:21:48.458848698Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:01:46.828313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083583, - "rtt_ms": 2.083583, + "rtt_ns": 2114875, + "rtt_ms": 2.114875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:48.458851568Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:46.828393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2793511, - "rtt_ms": 2.793511, + "rtt_ns": 1809291, + "rtt_ms": 1.809291, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:48.458854738Z" + "vertex_to": "10", + "timestamp": "2025-11-27T04:01:46.828403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894814, - "rtt_ms": 1.894814, + "rtt_ns": 2109334, + "rtt_ms": 2.109334, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:48.458858318Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:46.828408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432505, - "rtt_ms": 1.432505, + "rtt_ns": 2126417, + "rtt_ms": 2.126417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:48.458877978Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:46.828439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602405, - "rtt_ms": 1.602405, + "rtt_ns": 1981666, + "rtt_ms": 1.981666, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "775", - "timestamp": "2025-11-27T01:21:48.458922818Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:46.82847-08:00" }, { "operation": "add_edge", - "rtt_ns": 2636012, - "rtt_ms": 2.636012, + "rtt_ns": 2018000, + "rtt_ms": 2.018, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:48.459301497Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:46.828471-08:00" }, { "operation": "add_edge", - "rtt_ns": 2309273, - "rtt_ms": 2.309273, + "rtt_ns": 1765167, + "rtt_ms": 1.765167, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:48.459311127Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:46.828522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323076, - "rtt_ms": 1.323076, + "rtt_ns": 1214875, + "rtt_ms": 1.214875, "checkpoint": 0, "vertex_from": "9", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:48.459451837Z" + "timestamp": "2025-11-27T04:01:46.828596-08:00" }, { "operation": "bfs", - "rtt_ns": 7209426, - "rtt_ms": 7, + "rtt_ns": 5037417, + "rtt_ms": 5, "checkpoint": 1, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "562", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "554", - "80", - "141", - "178", - "15", - "940", - "701", - "565", - "474", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "936", - "183", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "583", - "113", - "407", - "50", - "43", - "946", - "110", - "340", - "331", - "602", - "787", - "123", - "901", - "598", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "856", - "76", - "777", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "323", - "352", - "53", - "399", - "117", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "167", - "707", - "417", - "496", - "914", - "888", - "261", - "497", - "336", - "367", - "92", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "1001", - "398", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "464", - "737", - "578", - "138", - "818", - "855", - "370", - "750", - "374", - "805", - "553", - "923", - "538", - "463", - "388", - "640", - "62", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "956", - "669", - "51", - "848", - "225", - "843", - "796", - "226", - "73", - "126", - "755", - "525", - "832", - "527", - "314", - "90", - "274", - "152", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "246", - "29", - "237", - "245", - "803", - "40", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "558", - "313", - "909", - "66", - "256", - "294", - "451", - "452", - "145", - "228", - "82", - "454", - "859", - "676", - "322", - "263", - "650", - "954", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "785", - "317", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "603", - "321", - "98", - "528", - "58", - "1", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "151", - "88", - "0", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "278", - "970", - "641", - "461", - "706", - "131", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "63", - "269", - "143", - "144", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "941", - "722", - "416", - "645", - "568", - "614", - "689", - "559", - "139", - "100", - "18", - "873", - "169", - "800", - "333", - "921", - "384", - "118", - "104", - "712", - "825", - "413", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "918", - "432", - "373", - "1008", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "709", - "490", - "168", - "579", - "428", - "438", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "715", - "683", - "273", - "462", - "829", - "760", - "150", - "532", - "899", - "122", - "196", - "297", - "590", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "291", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "411", - "657", - "233", - "96", - "11", - "466", - "107", - "24", - "199", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "31", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "594", - "585", - "775", - "162", - "853", - "114", - "820", - "696", - "705", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "905", - "36", - "658", - "670", - "780", - "906", - "663", - "30", - "548" + "0" ], - "timestamp": "2025-11-27T01:21:50.50180746Z" + "timestamp": "2025-11-27T04:01:48.866841-08:00" }, { "operation": "bfs", - "rtt_ns": 4581125, - "rtt_ms": 4, + "rtt_ns": 2896125, + "rtt_ms": 2, "checkpoint": 1, "bfs_start": "1", "bfs_radius": 10, "bfs_result": [ - "880", - "870", - "181", - "516", - "283", - "81", - "562", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "554", - "80", - "178", - "15", - "940", - "701", - "565", - "474", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "535", - "306", - "437", - "420", - "203", - "531", - "42", - "662", - "392", - "116", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "183", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "583", - "113", - "50", - "43", - "110", - "340", - "331", - "602", - "787", - "123", - "901", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "142", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "856", - "76", - "777", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "323", - "352", - "53", - "399", - "718", - "327", - "217", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "289", - "328", - "460", - "167", - "707", - "417", - "496", - "261", - "497", - "336", - "367", - "92", - "198", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "519", - "304", - "540", - "644", - "771", - "173", - "264", - "337", - "930", - "795", - "748", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "402", - "395", - "65", - "642", - "520", - "464", - "578", - "138", - "818", - "855", - "370", - "750", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "3", - "4", - "610", - "424", - "756", - "2", - "514", - "358", - "149", - "347", - "915", - "405", - "669", - "51", - "848", - "225", - "843", - "796", - "226", - "73", - "755", - "525", - "832", - "527", - "314", - "90", - "274", - "152", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "850", - "276", - "713", - "330", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "246", - "29", - "237", - "40", - "422", - "10", - "75", - "597", - "596", - "224", - "192", - "928", - "33", - "547", - "9", - "302", - "558", - "313", - "66", - "256", - "294", - "452", - "145", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "954", - "580", - "643", - "156", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "339", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "119", - "334", - "408", - "697", - "368", - "802", - "785", - "317", - "120", - "26", - "403", - "436", - "922", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "378", - "321", - "98", - "528", - "58", - "1", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "88", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "278", - "970", - "641", - "706", - "131", - "588", - "161", - "898", - "629", - "817", - "486", - "83", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "215", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "582", - "430", - "824", - "521", - "204", - "984", - "135", - "904", - "74", - "63", - "269", - "143", - "144", - "467", - "788", - "292", - "573", - "710", - "821", - "296", - "550", - "17", - "290", - "20", - "941", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "873", - "169", - "800", - "333", - "921", - "384", - "104", - "712", - "825", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "918", - "432", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "490", - "168", - "579", - "428", - "438", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "504", - "273", - "829", - "760", - "150", - "532", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "291", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "411", - "657", - "233", - "96", - "11", - "466", - "107", - "24", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "67", - "54", - "897", - "841", - "594", - "585", - "775", - "162", - "853", - "114", - "820", - "696", - "705", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "627", - "130", - "14", - "905", - "36", - "658", - "670", - "780", - "30", - "548" + "1" ], - "timestamp": "2025-11-27T01:21:50.506812573Z" + "timestamp": "2025-11-27T04:01:48.869899-08:00" }, { "operation": "bfs", - "rtt_ns": 3439239, - "rtt_ms": 3, + "rtt_ns": 2377667, + "rtt_ms": 2, "checkpoint": 1, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "880", - "181", - "516", - "283", - "81", - "562", - "309", - "675", - "44", - "270", - "397", - "752", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "554", - "80", - "178", - "15", - "940", - "701", - "565", - "474", - "146", - "704", - "363", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "535", - "306", - "437", - "420", - "531", - "42", - "662", - "392", - "116", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "583", - "113", - "50", - "43", - "110", - "340", - "331", - "602", - "787", - "123", - "901", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "142", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "76", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "809", - "177", - "323", - "352", - "53", - "399", - "718", - "327", - "217", - "258", - "587", - "868", - "307", - "534", - "546", - "758", - "21", - "267", - "200", - "449", - "659", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "289", - "328", - "460", - "707", - "417", - "261", - "497", - "336", - "367", - "92", - "198", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "519", - "304", - "540", - "644", - "771", - "264", - "337", - "930", - "795", - "748", - "47", - "34", - "769", - "170", - "483", - "184", - "402", - "395", - "65", - "642", - "520", - "464", - "578", - "138", - "818", - "370", - "750", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "3", - "4", - "610", - "424", - "756", - "2", - "514", - "358", - "149", - "347", - "915", - "405", - "51", - "848", - "225", - "796", - "226", - "73", - "755", - "525", - "832", - "527", - "314", - "90", - "274", - "152", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "850", - "276", - "713", - "330", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "246", - "29", - "237", - "40", - "422", - "10", - "75", - "597", - "596", - "224", - "192", - "928", - "33", - "547", - "9", - "302", - "558", - "313", - "66", - "256", - "294", - "452", - "145", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "954", - "580", - "643", - "156", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "119", - "334", - "697", - "368", - "802", - "785", - "317", - "120", - "26", - "403", - "436", - "922", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "136", - "326", - "321", - "98", - "528", - "58", - "360", - "541", - "132", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "88", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "278", - "970", - "641", - "706", - "131", - "588", - "161", - "898", - "629", - "817", - "83", - "674", - "194", - "794", - "163", - "97", - "470", - "649", - "361", - "654", - "232", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "582", - "521", - "204", - "984", - "135", - "904", - "74", - "63", - "269", - "143", - "144", - "467", - "788", - "292", - "573", - "710", - "821", - "296", - "550", - "17", - "290", - "20", - "941", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "873", - "169", - "800", - "921", - "384", - "104", - "712", - "825", - "773", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "22", - "569", - "12", - "918", - "432", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "23", - "488", - "193", - "852", - "490", - "168", - "579", - "428", - "438", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "273", - "829", - "760", - "150", - "532", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "291", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "411", - "657", - "233", - "96", - "11", - "466", - "107", - "24", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "67", - "54", - "897", - "841", - "594", - "585", - "775", - "162", - "114", - "820", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "627", - "130", - "14", - "905", - "36", - "658", - "670", - "780", - "30", - "548" + "2" ], - "timestamp": "2025-11-27T01:21:50.510436962Z" + "timestamp": "2025-11-27T04:01:48.872374-08:00" }, { "operation": "bfs", - "rtt_ns": 2665861, - "rtt_ms": 2, + "rtt_ns": 1378417, + "rtt_ms": 1, "checkpoint": 1, "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "880", - "181", - "516", - "283", - "81", - "562", - "309", - "675", - "44", - "270", - "397", - "752", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "554", - "80", - "15", - "701", - "474", - "146", - "704", - "363", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "849", - "535", - "306", - "420", - "531", - "42", - "662", - "392", - "116", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "583", - "113", - "50", - "43", - "110", - "787", - "123", - "901", - "576", - "282", - "305", - "316", - "64", - "648", - "57", - "7", - "25", - "142", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "76", - "777", - "768", - "385", - "60", - "359", - "966", - "809", - "323", - "352", - "53", - "217", - "258", - "587", - "307", - "534", - "546", - "21", - "267", - "200", - "449", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "289", - "328", - "460", - "707", - "417", - "261", - "336", - "367", - "92", - "198", - "682", - "688", - "593", - "519", - "304", - "540", - "644", - "771", - "264", - "337", - "930", - "748", - "47", - "34", - "769", - "170", - "483", - "184", - "402", - "395", - "65", - "642", - "520", - "464", - "578", - "138", - "818", - "370", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "4", - "610", - "424", - "756", - "514", - "358", - "149", - "347", - "915", - "405", - "51", - "848", - "225", - "796", - "226", - "73", - "525", - "832", - "527", - "274", - "152", - "448", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "850", - "276", - "713", - "330", - "158", - "332", - "992", - "536", - "112", - "387", - "246", - "29", - "237", - "40", - "422", - "10", - "75", - "597", - "596", - "224", - "192", - "928", - "33", - "547", - "9", - "558", - "313", - "66", - "256", - "294", - "452", - "145", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "954", - "580", - "643", - "156", - "176", - "673", - "227", - "967", - "266", - "338", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "518", - "944", - "248", - "68", - "324", - "119", - "334", - "697", - "368", - "802", - "785", - "317", - "120", - "26", - "403", - "436", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "625", - "592", - "390", - "485", - "414", - "268", - "774", - "13", - "136", - "326", - "321", - "98", - "528", - "58", - "360", - "132", - "920", - "660", - "481", - "244", - "902", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "88", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "278", - "641", - "706", - "131", - "588", - "161", - "898", - "629", - "817", - "83", - "674", - "194", - "794", - "163", - "97", - "470", - "649", - "361", - "654", - "232", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "530", - "179", - "133", - "656", - "779", - "522", - "480", - "342", - "808", - "647", - "140", - "329", - "896", - "834", - "618", - "582", - "521", - "204", - "984", - "135", - "904", - "74", - "63", - "269", - "143", - "144", - "467", - "788", - "292", - "710", - "296", - "550", - "17", - "290", - "20", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "873", - "169", - "800", - "921", - "384", - "104", - "712", - "825", - "773", - "16", - "600", - "93", - "804", - "284", - "482", - "22", - "569", - "12", - "918", - "432", - "175", - "526", - "677", - "91", - "549", - "622", - "23", - "488", - "193", - "852", - "168", - "579", - "428", - "438", - "128", - "262", - "391", - "148", - "8", - "28", - "273", - "829", - "760", - "150", - "532", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "291", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "411", - "657", - "233", - "96", - "11", - "466", - "107", - "24", - "394", - "216", - "389", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "67", - "54", - "897", - "841", - "594", - "585", - "775", - "162", - "114", - "820", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "517", - "115", - "32", - "354", - "164", - "835", - "864", - "201", - "611", - "627", - "130", - "14", - "905", - "36", - "658", - "670", - "780", - "30", - "548" + "4" ], - "timestamp": "2025-11-27T01:21:50.513277282Z" + "timestamp": "2025-11-27T04:01:48.873852-08:00" }, { "operation": "bfs", - "rtt_ns": 4192196, - "rtt_ms": 4, + "rtt_ns": 1376292, + "rtt_ms": 1, "checkpoint": 1, "bfs_start": "3", "bfs_radius": 10, "bfs_result": [ - "880", - "181", - "516", - "283", - "81", - "562", - "309", - "675", - "44", - "270", - "397", - "752", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "554", - "80", - "15", - "701", - "565", - "474", - "146", - "704", - "363", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "849", - "535", - "306", - "420", - "531", - "42", - "662", - "392", - "116", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "583", - "113", - "50", - "43", - "110", - "340", - "331", - "787", - "123", - "901", - "576", - "282", - "305", - "316", - "64", - "648", - "57", - "7", - "25", - "142", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "76", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "809", - "323", - "352", - "53", - "718", - "217", - "258", - "587", - "868", - "307", - "534", - "546", - "21", - "267", - "200", - "449", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "289", - "328", - "460", - "707", - "417", - "261", - "336", - "367", - "92", - "198", - "682", - "688", - "778", - "593", - "398", - "519", - "304", - "540", - "644", - "771", - "264", - "337", - "930", - "748", - "47", - "34", - "769", - "170", - "483", - "184", - "402", - "395", - "65", - "642", - "520", - "464", - "578", - "138", - "818", - "370", - "750", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "3", - "4", - "610", - "424", - "756", - "514", - "358", - "149", - "347", - "915", - "405", - "51", - "848", - "225", - "796", - "226", - "73", - "525", - "832", - "527", - "314", - "274", - "152", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "850", - "276", - "713", - "330", - "158", - "332", - "992", - "536", - "112", - "387", - "246", - "29", - "237", - "40", - "422", - "10", - "75", - "597", - "596", - "224", - "192", - "928", - "33", - "547", - "9", - "558", - "313", - "66", - "256", - "294", - "452", - "145", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "954", - "580", - "643", - "156", - "176", - "673", - "227", - "967", - "266", - "338", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "119", - "334", - "697", - "368", - "802", - "785", - "317", - "120", - "26", - "403", - "436", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "625", - "592", - "390", - "485", - "414", - "268", - "774", - "13", - "136", - "326", - "321", - "98", - "528", - "58", - "360", - "132", - "920", - "660", - "481", - "244", - "902", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "88", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "278", - "641", - "706", - "131", - "588", - "161", - "898", - "629", - "817", - "83", - "674", - "194", - "794", - "163", - "97", - "470", - "649", - "361", - "654", - "232", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "530", - "179", - "133", - "656", - "779", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "582", - "521", - "204", - "984", - "135", - "904", - "74", - "63", - "269", - "143", - "144", - "467", - "788", - "292", - "710", - "296", - "550", - "17", - "290", - "20", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "873", - "169", - "800", - "921", - "384", - "104", - "712", - "825", - "773", - "16", - "600", - "93", - "804", - "284", - "482", - "22", - "569", - "12", - "918", - "432", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "23", - "488", - "193", - "852", - "168", - "579", - "428", - "438", - "128", - "262", - "391", - "148", - "8", - "28", - "273", - "829", - "760", - "150", - "532", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "291", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "411", - "657", - "233", - "96", - "11", - "466", - "107", - "24", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "67", - "54", - "897", - "841", - "594", - "585", - "775", - "162", - "114", - "820", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "517", - "115", - "32", - "354", - "164", - "835", - "864", - "201", - "611", - "627", - "130", - "14", - "905", - "36", - "658", - "670", - "780", - "30", - "548" + "3" ], - "timestamp": "2025-11-27T01:21:50.517765268Z" + "timestamp": "2025-11-27T04:01:48.875318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706115, - "rtt_ms": 1.706115, + "rtt_ns": 3175333, + "rtt_ms": 3.175333, "checkpoint": 0, "vertex_from": "9", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.519508532Z" + "timestamp": "2025-11-27T04:01:48.878527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778515, - "rtt_ms": 1.778515, + "rtt_ns": 3317208, + "rtt_ms": 3.317208, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:50.519631532Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:48.878737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780585, - "rtt_ms": 1.780585, + "rtt_ns": 3380875, + "rtt_ms": 3.380875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:50.519661292Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:48.878757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832495, - "rtt_ms": 1.832495, + "rtt_ns": 3679625, + "rtt_ms": 3.679625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "482", - "timestamp": "2025-11-27T01:21:50.519670862Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:48.879073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868254, - "rtt_ms": 1.868254, + "rtt_ns": 3901709, + "rtt_ms": 3.901709, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:50.519700791Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:48.879298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843694, - "rtt_ms": 1.843694, + "rtt_ns": 3962541, + "rtt_ms": 3.962541, "checkpoint": 0, "vertex_from": "9", "vertex_to": "15", - "timestamp": "2025-11-27T01:21:50.519717061Z" + "timestamp": "2025-11-27T04:01:48.879386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862744, - "rtt_ms": 1.862744, + "rtt_ns": 4042125, + "rtt_ms": 4.042125, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.519720521Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:48.879452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961274, - "rtt_ms": 1.961274, + "rtt_ns": 4222458, + "rtt_ms": 4.222458, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.519836571Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:48.879579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2374553, - "rtt_ms": 2.374553, + "rtt_ns": 4267667, + "rtt_ms": 4.267667, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.52023328Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:01:48.879692-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613382, - "rtt_ms": 2.613382, + "rtt_ns": 4384625, + "rtt_ms": 4.384625, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.520419279Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:48.879773-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3939167, + "rtt_ms": 3.939167, + "checkpoint": 0, + "vertex_from": "9", + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:48.882677-08:00" }, { "operation": "add_edge", - "rtt_ns": 2514432, - "rtt_ms": 2.514432, + "rtt_ns": 4312834, + "rtt_ms": 4.312834, "checkpoint": 0, "vertex_from": "9", "vertex_to": "281", - "timestamp": "2025-11-27T01:21:50.522025614Z" + "timestamp": "2025-11-27T04:01:48.882842-08:00" }, { "operation": "add_edge", - "rtt_ns": 2585841, - "rtt_ms": 2.585841, + "rtt_ns": 4474833, + "rtt_ms": 4.474833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:50.522220793Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:48.883235-08:00" }, { "operation": "add_edge", - "rtt_ns": 3011290, - "rtt_ms": 3.01129, + "rtt_ns": 4242708, + "rtt_ms": 4.242708, "checkpoint": 0, "vertex_from": "9", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:50.522694051Z" + "timestamp": "2025-11-27T04:01:48.883317-08:00" }, { "operation": "add_edge", - "rtt_ns": 3181820, - "rtt_ms": 3.18182, + "rtt_ns": 4007958, + "rtt_ms": 4.007958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:50.522885961Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:48.883461-08:00" }, { "operation": "add_edge", - "rtt_ns": 2695351, - "rtt_ms": 2.695351, + "rtt_ns": 3714333, + "rtt_ms": 3.714333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:50.522930351Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:48.883489-08:00" }, { "operation": "add_edge", - "rtt_ns": 3226210, - "rtt_ms": 3.22621, + "rtt_ns": 4372375, + "rtt_ms": 4.372375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.522944801Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:48.883673-08:00" }, { "operation": "add_edge", - "rtt_ns": 3315718, - "rtt_ms": 3.315718, + "rtt_ns": 4385250, + "rtt_ms": 4.38525, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.522979Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:48.883773-08:00" }, { "operation": "add_edge", - "rtt_ns": 3261849, - "rtt_ms": 3.261849, + "rtt_ns": 4254375, + "rtt_ms": 4.254375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.52298347Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:48.883948-08:00" }, { "operation": "add_edge", - "rtt_ns": 3170679, - "rtt_ms": 3.170679, + "rtt_ns": 4604583, + "rtt_ms": 4.604583, "checkpoint": 0, "vertex_from": "9", "vertex_to": "28", - "timestamp": "2025-11-27T01:21:50.52300887Z" + "timestamp": "2025-11-27T04:01:48.884185-08:00" }, { "operation": "add_edge", - "rtt_ns": 2644331, - "rtt_ms": 2.644331, + "rtt_ns": 4196750, + "rtt_ms": 4.19675, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:50.52306535Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:48.88704-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040433, - "rtt_ms": 2.040433, + "rtt_ns": 3851417, + "rtt_ms": 3.851417, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.524068027Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:48.887172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877814, - "rtt_ms": 1.877814, + "rtt_ns": 4810875, + "rtt_ms": 4.810875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:50.524101297Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:48.88749-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053924, - "rtt_ms": 2.053924, + "rtt_ns": 4382166, + "rtt_ms": 4.382166, "checkpoint": 0, "vertex_from": "9", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.524749875Z" + "timestamp": "2025-11-27T04:01:48.887619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855784, - "rtt_ms": 1.855784, + "rtt_ns": 4092958, + "rtt_ms": 4.092958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "186", - "timestamp": "2025-11-27T01:21:50.524790185Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:48.887768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853814, - "rtt_ms": 1.853814, + "rtt_ns": 4319875, + "rtt_ms": 4.319875, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "11", - "timestamp": "2025-11-27T01:21:50.524800155Z" + "vertex_to": "186", + "timestamp": "2025-11-27T04:01:48.887783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820845, - "rtt_ms": 1.820845, + "rtt_ns": 4379500, + "rtt_ms": 4.3795, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:50.524801525Z" + "vertex_to": "11", + "timestamp": "2025-11-27T04:01:48.88787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923813, - "rtt_ms": 1.923813, + "rtt_ns": 3813333, + "rtt_ms": 3.813333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:50.524811664Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:48.888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801374, - "rtt_ms": 1.801374, + "rtt_ns": 4631958, + "rtt_ms": 4.631958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "803", - "timestamp": "2025-11-27T01:21:50.524813894Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:48.888407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834394, - "rtt_ms": 1.834394, + "rtt_ns": 4574375, + "rtt_ms": 4.574375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:50.524819454Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:01:48.888524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773614, - "rtt_ms": 1.773614, + "rtt_ns": 4111542, + "rtt_ms": 4.111542, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.524840854Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:48.891285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272556, - "rtt_ms": 1.272556, + "rtt_ns": 4389041, + "rtt_ms": 4.389041, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:50.525376473Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:48.891431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423305, - "rtt_ms": 1.423305, + "rtt_ns": 4476000, + "rtt_ms": 4.476, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:50.525494752Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:48.892096-08:00" }, { "operation": "add_edge", - "rtt_ns": 825237, - "rtt_ms": 0.825237, + "rtt_ns": 4624959, + "rtt_ms": 4.624959, "checkpoint": 0, "vertex_from": "9", "vertex_to": "598", - "timestamp": "2025-11-27T01:21:50.525576532Z" + "timestamp": "2025-11-27T04:01:48.892116-08:00" }, { "operation": "add_edge", - "rtt_ns": 851547, - "rtt_ms": 0.851547, + "rtt_ns": 4388292, + "rtt_ms": 4.388292, "checkpoint": 0, "vertex_from": "9", "vertex_to": "613", - "timestamp": "2025-11-27T01:21:50.525652862Z" + "timestamp": "2025-11-27T04:01:48.892158-08:00" }, { "operation": "add_edge", - "rtt_ns": 944697, - "rtt_ms": 0.944697, + "rtt_ns": 4394834, + "rtt_ms": 4.394834, "checkpoint": 0, "vertex_from": "9", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.525758871Z" + "timestamp": "2025-11-27T04:01:48.892267-08:00" }, { - "operation": "add_edge", - "rtt_ns": 984987, - "rtt_ms": 0.984987, + "operation": "add_vertex", + "rtt_ns": 3891917, + "rtt_ms": 3.891917, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:50.52636302Z" + "vertex_from": "310", + "timestamp": "2025-11-27T04:01:48.892302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625714, - "rtt_ms": 1.625714, + "rtt_ns": 5159083, + "rtt_ms": 5.159083, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:50.526417609Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:48.892944-08:00" }, { "operation": "add_edge", - "rtt_ns": 964967, - "rtt_ms": 0.964967, + "rtt_ns": 5098041, + "rtt_ms": 5.098041, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "484", - "timestamp": "2025-11-27T01:21:50.526461969Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:48.8931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694114, - "rtt_ms": 1.694114, + "rtt_ns": 4632041, + "rtt_ms": 4.632041, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.526498579Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:48.893157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693635, - "rtt_ms": 1.693635, + "rtt_ns": 4084959, + "rtt_ms": 4.084959, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "913", - "timestamp": "2025-11-27T01:21:50.526510349Z" + "vertex_to": "484", + "timestamp": "2025-11-27T04:01:48.89552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674465, - "rtt_ms": 1.674465, + "rtt_ns": 4376292, + "rtt_ms": 4.376292, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.526517129Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:48.895663-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1728095, - "rtt_ms": 1.728095, + "operation": "add_edge", + "rtt_ns": 3813458, + "rtt_ms": 3.813458, "checkpoint": 0, - "vertex_from": "310", - "timestamp": "2025-11-27T01:21:50.526550069Z" + "vertex_from": "9", + "vertex_to": "310", + "timestamp": "2025-11-27T04:01:48.896116-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1136696, - "rtt_ms": 1.136696, + "operation": "add_edge", + "rtt_ns": 4153791, + "rtt_ms": 4.153791, "checkpoint": 0, - "vertex_from": "425", - "timestamp": "2025-11-27T01:21:50.527503306Z" + "vertex_from": "9", + "vertex_to": "358", + "timestamp": "2025-11-27T04:01:48.896313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883884, - "rtt_ms": 1.883884, + "rtt_ns": 4310375, + "rtt_ms": 4.310375, "checkpoint": 0, "vertex_from": "9", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:50.527537846Z" + "timestamp": "2025-11-27T04:01:48.896431-08:00" }, { "operation": "add_edge", - "rtt_ns": 2341863, - "rtt_ms": 2.341863, + "rtt_ns": 4906583, + "rtt_ms": 4.906583, "checkpoint": 0, "vertex_from": "9", "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.527919705Z" + "timestamp": "2025-11-27T04:01:48.897007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2882841, - "rtt_ms": 2.882841, + "rtt_ns": 4110333, + "rtt_ms": 4.110333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "358", - "timestamp": "2025-11-27T01:21:50.528643962Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:48.897056-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2437602, - "rtt_ms": 2.437602, + "operation": "add_vertex", + "rtt_ns": 4871375, + "rtt_ms": 4.871375, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:50.528951001Z" + "vertex_from": "425", + "timestamp": "2025-11-27T04:01:48.897141-08:00" }, { "operation": "add_edge", - "rtt_ns": 2614152, - "rtt_ms": 2.614152, + "rtt_ns": 4154375, + "rtt_ms": 4.154375, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:50.529033331Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:01:48.897313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2648182, - "rtt_ms": 2.648182, + "rtt_ns": 4285125, + "rtt_ms": 4.285125, "checkpoint": 0, "vertex_from": "9", "vertex_to": "342", - "timestamp": "2025-11-27T01:21:50.529111381Z" + "timestamp": "2025-11-27T04:01:48.897386-08:00" }, { "operation": "add_edge", - "rtt_ns": 2639181, - "rtt_ms": 2.639181, + "rtt_ns": 4252792, + "rtt_ms": 4.252792, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:50.52915729Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:48.899774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2656511, - "rtt_ms": 2.656511, + "rtt_ns": 4199208, + "rtt_ms": 4.199208, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "992", - "timestamp": "2025-11-27T01:21:50.52915824Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:48.899864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613811, - "rtt_ms": 2.613811, + "rtt_ns": 4333083, + "rtt_ms": 4.333083, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "310", - "timestamp": "2025-11-27T01:21:50.52916436Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:48.900648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296175, - "rtt_ms": 1.296175, + "rtt_ns": 4584166, + "rtt_ms": 4.584166, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:50.52921789Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:48.900701-08:00" }, { "operation": "add_edge", - "rtt_ns": 2295372, - "rtt_ms": 2.295372, + "rtt_ns": 4312833, + "rtt_ms": 4.312833, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:50.529834998Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:48.900744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291696, - "rtt_ms": 1.291696, + "rtt_ns": 4194166, + "rtt_ms": 4.194166, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:50.529936678Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:48.901251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2461072, - "rtt_ms": 2.461072, + "rtt_ns": 4280958, + "rtt_ms": 4.280958, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "425", - "timestamp": "2025-11-27T01:21:50.529965148Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:48.901289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045927, - "rtt_ms": 1.045927, + "rtt_ns": 4184584, + "rtt_ms": 4.184584, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.529998668Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:01:48.901326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665644, - "rtt_ms": 1.665644, + "rtt_ns": 4438333, + "rtt_ms": 4.438333, "checkpoint": 0, "vertex_from": "9", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.530700055Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:48.901753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565645, - "rtt_ms": 1.565645, + "rtt_ns": 4395750, + "rtt_ms": 4.39575, "checkpoint": 0, "vertex_from": "10", "vertex_to": "420", - "timestamp": "2025-11-27T01:21:50.530724535Z" + "timestamp": "2025-11-27T04:01:48.901783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510345, - "rtt_ms": 1.510345, + "rtt_ns": 2592917, + "rtt_ms": 2.592917, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.530729355Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:48.902458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680564, - "rtt_ms": 1.680564, + "rtt_ns": 2916458, + "rtt_ms": 2.916458, "checkpoint": 0, - "vertex_from": "9", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:50.530793205Z" + "vertex_from": "10", + "vertex_to": "342", + "timestamp": "2025-11-27T04:01:48.902692-08:00" }, { "operation": "add_edge", - "rtt_ns": 984627, - "rtt_ms": 0.984627, + "rtt_ns": 2628250, + "rtt_ms": 2.62825, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.530821545Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:48.903279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786554, - "rtt_ms": 1.786554, + "rtt_ns": 2904709, + "rtt_ms": 2.904709, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "342", - "timestamp": "2025-11-27T01:21:50.530945944Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:48.903651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801284, - "rtt_ms": 1.801284, + "rtt_ns": 2996416, + "rtt_ms": 2.996416, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.530966834Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:48.903699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421905, - "rtt_ms": 1.421905, + "rtt_ns": 2621708, + "rtt_ms": 2.621708, "checkpoint": 0, "vertex_from": "10", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:50.531391353Z" + "timestamp": "2025-11-27T04:01:48.903874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457115, - "rtt_ms": 1.457115, + "rtt_ns": 2562334, + "rtt_ms": 2.562334, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:50.531457013Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:48.90389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540915, - "rtt_ms": 1.540915, + "rtt_ns": 2602250, + "rtt_ms": 2.60225, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.531478623Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:48.903894-08:00" }, { "operation": "add_edge", - "rtt_ns": 865657, - "rtt_ms": 0.865657, + "rtt_ns": 2266458, + "rtt_ms": 2.266458, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.531567412Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:48.904051-08:00" }, { "operation": "add_edge", - "rtt_ns": 855767, - "rtt_ms": 0.855767, + "rtt_ns": 2655250, + "rtt_ms": 2.65525, "checkpoint": 0, "vertex_from": "10", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.531581332Z" + "timestamp": "2025-11-27T04:01:48.90441-08:00" }, { "operation": "add_edge", - "rtt_ns": 834297, - "rtt_ms": 0.834297, + "rtt_ns": 2753166, + "rtt_ms": 2.753166, "checkpoint": 0, "vertex_from": "10", "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.531628642Z" + "timestamp": "2025-11-27T04:01:48.905213-08:00" }, { "operation": "add_edge", - "rtt_ns": 865717, - "rtt_ms": 0.865717, + "rtt_ns": 2544000, + "rtt_ms": 2.544, "checkpoint": 0, "vertex_from": "10", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.531689362Z" + "timestamp": "2025-11-27T04:01:48.905239-08:00" }, { "operation": "add_edge", - "rtt_ns": 980357, - "rtt_ms": 0.980357, + "rtt_ns": 2523417, + "rtt_ms": 2.523417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:50.531711572Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:48.905804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358096, - "rtt_ms": 1.358096, + "rtt_ns": 2459917, + "rtt_ms": 2.459917, "checkpoint": 0, "vertex_from": "10", "vertex_to": "14", - "timestamp": "2025-11-27T01:21:50.53232646Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1602785, - "rtt_ms": 1.602785, - "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.532549639Z" + "timestamp": "2025-11-27T04:01:48.906128-08:00" }, { "operation": "add_edge", - "rtt_ns": 2254033, - "rtt_ms": 2.254033, + "rtt_ns": 2575792, + "rtt_ms": 2.575792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:50.533652326Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:48.906471-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269362, - "rtt_ms": 2.269362, + "rtt_ns": 2629791, + "rtt_ms": 2.629791, "checkpoint": 0, "vertex_from": "10", "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.533749405Z" + "timestamp": "2025-11-27T04:01:48.906521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144303, - "rtt_ms": 2.144303, + "rtt_ns": 2820541, + "rtt_ms": 2.820541, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:50.533774235Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:48.906521-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277323, - "rtt_ms": 2.277323, + "rtt_ns": 2790125, + "rtt_ms": 2.790125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:50.533846405Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:48.906667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2466692, - "rtt_ms": 2.466692, + "rtt_ns": 2638125, + "rtt_ms": 2.638125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.533925925Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:48.90669-08:00" }, { "operation": "add_edge", - "rtt_ns": 2290903, - "rtt_ms": 2.290903, + "rtt_ns": 2490042, + "rtt_ms": 2.490042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:50.533981275Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:48.906902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2405983, - "rtt_ms": 2.405983, + "rtt_ns": 2336084, + "rtt_ms": 2.336084, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.533988175Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:48.907577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679575, - "rtt_ms": 1.679575, + "rtt_ns": 2386709, + "rtt_ms": 2.386709, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:50.534007285Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:48.907602-08:00" }, { "operation": "add_edge", - "rtt_ns": 2292663, - "rtt_ms": 2.292663, + "rtt_ns": 2183209, + "rtt_ms": 2.183209, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.534007955Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:48.907989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520495, - "rtt_ms": 1.520495, + "rtt_ns": 1983666, + "rtt_ms": 1.983666, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.534070694Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:48.908675-08:00" }, { "operation": "add_edge", - "rtt_ns": 579009, - "rtt_ms": 0.579009, + "rtt_ns": 2197875, + "rtt_ms": 2.197875, "checkpoint": 0, "vertex_from": "10", "vertex_to": "906", - "timestamp": "2025-11-27T01:21:50.534329324Z" + "timestamp": "2025-11-27T04:01:48.908721-08:00" }, { "operation": "add_edge", - "rtt_ns": 701437, - "rtt_ms": 0.701437, + "rtt_ns": 2316542, + "rtt_ms": 2.316542, "checkpoint": 0, "vertex_from": "10", "vertex_to": "16", - "timestamp": "2025-11-27T01:21:50.534354833Z" - }, - { - "operation": "add_edge", - "rtt_ns": 667448, - "rtt_ms": 0.667448, - "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "61", - "timestamp": "2025-11-27T01:21:50.534514703Z" + "timestamp": "2025-11-27T04:01:48.90879-08:00" }, { "operation": "add_edge", - "rtt_ns": 743988, - "rtt_ms": 0.743988, + "rtt_ns": 2621041, + "rtt_ms": 2.621041, "checkpoint": 0, "vertex_from": "10", "vertex_to": "54", - "timestamp": "2025-11-27T01:21:50.534519143Z" + "timestamp": "2025-11-27T04:01:48.909144-08:00" }, { "operation": "add_edge", - "rtt_ns": 693197, - "rtt_ms": 0.693197, + "rtt_ns": 2499792, + "rtt_ms": 2.499792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.534675132Z" + "vertex_to": "61", + "timestamp": "2025-11-27T04:01:48.909168-08:00" }, { "operation": "add_edge", - "rtt_ns": 801517, - "rtt_ms": 0.801517, + "rtt_ns": 3060916, + "rtt_ms": 3.060916, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:50.534729022Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:48.909189-08:00" }, { "operation": "add_edge", - "rtt_ns": 786187, - "rtt_ms": 0.786187, + "rtt_ns": 2415500, + "rtt_ms": 2.4155, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:50.534795032Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:48.909319-08:00" }, { "operation": "add_edge", - "rtt_ns": 838607, - "rtt_ms": 0.838607, + "rtt_ns": 2170416, + "rtt_ms": 2.170416, "checkpoint": 0, "vertex_from": "10", "vertex_to": "92", - "timestamp": "2025-11-27T01:21:50.534827792Z" + "timestamp": "2025-11-27T04:01:48.909748-08:00" }, { "operation": "add_edge", - "rtt_ns": 863247, - "rtt_ms": 0.863247, + "rtt_ns": 2319917, + "rtt_ms": 2.319917, "checkpoint": 0, "vertex_from": "10", "vertex_to": "244", - "timestamp": "2025-11-27T01:21:50.534871332Z" + "timestamp": "2025-11-27T04:01:48.909923-08:00" }, { "operation": "add_edge", - "rtt_ns": 811358, - "rtt_ms": 0.811358, + "rtt_ns": 2187500, + "rtt_ms": 2.1875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.534882922Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:48.910178-08:00" }, { "operation": "add_edge", - "rtt_ns": 563478, - "rtt_ms": 0.563478, + "rtt_ns": 2836542, + "rtt_ms": 2.836542, "checkpoint": 0, "vertex_from": "10", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.534893562Z" + "timestamp": "2025-11-27T04:01:48.911559-08:00" }, { "operation": "add_edge", - "rtt_ns": 547728, - "rtt_ms": 0.547728, + "rtt_ns": 2779958, + "rtt_ms": 2.779958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.535067781Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:48.911572-08:00" }, { "operation": "add_edge", - "rtt_ns": 742908, - "rtt_ms": 0.742908, + "rtt_ns": 2925916, + "rtt_ms": 2.925916, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:50.535099731Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:48.911604-08:00" }, { "operation": "add_edge", - "rtt_ns": 656538, - "rtt_ms": 0.656538, + "rtt_ns": 2420167, + "rtt_ms": 2.420167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.53538615Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:48.911611-08:00" }, { "operation": "add_vertex", - "rtt_ns": 903517, - "rtt_ms": 0.903517, + "rtt_ns": 2466250, + "rtt_ms": 2.46625, "checkpoint": 0, "vertex_from": "860", - "timestamp": "2025-11-27T01:21:50.53542148Z" + "timestamp": "2025-11-27T04:01:48.911613-08:00" }, { "operation": "add_edge", - "rtt_ns": 746518, - "rtt_ms": 0.746518, + "rtt_ns": 2664583, + "rtt_ms": 2.664583, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.53542271Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:48.911834-08:00" }, { "operation": "add_edge", - "rtt_ns": 628778, - "rtt_ms": 0.628778, + "rtt_ns": 2637541, + "rtt_ms": 2.637541, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.53550088Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:48.911958-08:00" }, { "operation": "add_edge", - "rtt_ns": 792148, - "rtt_ms": 0.792148, + "rtt_ns": 2977584, + "rtt_ms": 2.977584, "checkpoint": 0, "vertex_from": "10", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.53558832Z" + "timestamp": "2025-11-27T04:01:48.912727-08:00" }, { "operation": "add_edge", - "rtt_ns": 772988, - "rtt_ms": 0.772988, + "rtt_ns": 2833208, + "rtt_ms": 2.833208, "checkpoint": 0, "vertex_from": "10", "vertex_to": "596", - "timestamp": "2025-11-27T01:21:50.53560164Z" + "timestamp": "2025-11-27T04:01:48.912758-08:00" }, { "operation": "add_edge", - "rtt_ns": 792587, - "rtt_ms": 0.792587, + "rtt_ns": 2975208, + "rtt_ms": 2.975208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:50.535687079Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:48.913155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250816, - "rtt_ms": 1.250816, + "rtt_ns": 1921459, + "rtt_ms": 1.921459, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:50.536319457Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:48.913483-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1925667, + "rtt_ms": 1.925667, + "checkpoint": 0, + "vertex_from": "10", + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:48.913499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281866, - "rtt_ms": 1.281866, + "rtt_ns": 2118917, + "rtt_ms": 2.118917, "checkpoint": 0, "vertex_from": "10", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.536382637Z" + "timestamp": "2025-11-27T04:01:48.913732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502125, - "rtt_ms": 1.502125, + "rtt_ns": 2175375, + "rtt_ms": 2.175375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:50.536386037Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:48.913782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059727, - "rtt_ms": 1.059727, + "rtt_ns": 2231792, + "rtt_ms": 2.231792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "628", - "timestamp": "2025-11-27T01:21:50.536447037Z" + "vertex_to": "860", + "timestamp": "2025-11-27T04:01:48.913845-08:00" }, { "operation": "add_edge", - "rtt_ns": 967797, - "rtt_ms": 0.967797, + "rtt_ns": 2031417, + "rtt_ms": 2.031417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.536469327Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:01:48.913867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047057, - "rtt_ms": 1.047057, + "rtt_ns": 2043750, + "rtt_ms": 2.04375, "checkpoint": 0, "vertex_from": "10", "vertex_to": "550", - "timestamp": "2025-11-27T01:21:50.536470617Z" + "timestamp": "2025-11-27T04:01:48.914004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589935, - "rtt_ms": 1.589935, + "rtt_ns": 2272583, + "rtt_ms": 2.272583, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "860", - "timestamp": "2025-11-27T01:21:50.537011825Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:48.915034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884083, - "rtt_ms": 1.884083, + "rtt_ns": 2376833, + "rtt_ms": 2.376833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.537473363Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:48.915106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900913, - "rtt_ms": 1.900913, + "rtt_ns": 2399042, + "rtt_ms": 2.399042, "checkpoint": 0, "vertex_from": "10", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.537503503Z" + "timestamp": "2025-11-27T04:01:48.915556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995993, - "rtt_ms": 1.995993, + "rtt_ns": 2109250, + "rtt_ms": 2.10925, "checkpoint": 0, "vertex_from": "10", "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.53831641Z" + "timestamp": "2025-11-27T04:01:48.915611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955063, - "rtt_ms": 1.955063, + "rtt_ns": 1955667, + "rtt_ms": 1.955667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:50.53842569Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:48.91596-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043133, - "rtt_ms": 2.043133, + "rtt_ns": 2496208, + "rtt_ms": 2.496208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.53842754Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:48.91598-08:00" }, { "operation": "add_edge", - "rtt_ns": 2808601, - "rtt_ms": 2.808601, + "rtt_ns": 2375000, + "rtt_ms": 2.375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:50.5384967Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:48.916109-08:00" }, { "operation": "add_edge", - "rtt_ns": 2190292, - "rtt_ms": 2.190292, + "rtt_ns": 2306709, + "rtt_ms": 2.306709, "checkpoint": 0, "vertex_from": "10", "vertex_to": "569", - "timestamp": "2025-11-27T01:21:50.538638279Z" + "timestamp": "2025-11-27T04:01:48.916154-08:00" }, { "operation": "add_edge", - "rtt_ns": 2271722, - "rtt_ms": 2.271722, + "rtt_ns": 2492458, + "rtt_ms": 2.492458, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.538743519Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:48.916276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749124, - "rtt_ms": 1.749124, + "rtt_ns": 2454709, + "rtt_ms": 2.454709, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.538762229Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:48.916322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375926, - "rtt_ms": 1.375926, + "rtt_ns": 1990875, + "rtt_ms": 1.990875, "checkpoint": 0, "vertex_from": "10", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:50.538850189Z" + "timestamp": "2025-11-27T04:01:48.917102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2474412, - "rtt_ms": 2.474412, + "rtt_ns": 2117000, + "rtt_ms": 2.117, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.538861829Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:48.917154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376516, - "rtt_ms": 1.376516, + "rtt_ns": 1993792, + "rtt_ms": 1.993792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:50.538880989Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:48.917606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026476, - "rtt_ms": 1.026476, + "rtt_ns": 2069167, + "rtt_ms": 2.069167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.539524576Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:48.917627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128536, - "rtt_ms": 1.128536, + "rtt_ns": 1694625, + "rtt_ms": 1.694625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.539557246Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:48.918018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165556, - "rtt_ms": 1.165556, + "rtt_ns": 2084334, + "rtt_ms": 2.084334, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:50.539592136Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:48.918069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298126, - "rtt_ms": 1.298126, + "rtt_ns": 2128208, + "rtt_ms": 2.128208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.539615686Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:48.91809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007607, - "rtt_ms": 1.007607, + "rtt_ns": 2133833, + "rtt_ms": 2.133833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.539646676Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:48.918411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734644, - "rtt_ms": 1.734644, + "rtt_ns": 2310583, + "rtt_ms": 2.310583, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:50.540478873Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:48.918466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796714, - "rtt_ms": 1.796714, + "rtt_ns": 2381542, + "rtt_ms": 2.381542, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:50.540679093Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:48.918493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861194, - "rtt_ms": 1.861194, + "rtt_ns": 1858958, + "rtt_ms": 1.858958, "checkpoint": 0, "vertex_from": "10", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.540712593Z" + "timestamp": "2025-11-27T04:01:48.918962-08:00" }, { "operation": "add_edge", - "rtt_ns": 3009570, - "rtt_ms": 3.00957, + "rtt_ns": 1859625, + "rtt_ms": 1.859625, "checkpoint": 0, "vertex_from": "10", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:50.541872219Z" + "timestamp": "2025-11-27T04:01:48.919014-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321153, - "rtt_ms": 2.321153, + "rtt_ns": 2309792, + "rtt_ms": 2.309792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.541969209Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:48.919937-08:00" }, { "operation": "add_edge", - "rtt_ns": 3214110, - "rtt_ms": 3.21411, + "rtt_ns": 2347167, + "rtt_ms": 2.347167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.541977539Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:48.919955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2505832, - "rtt_ms": 2.505832, + "rtt_ns": 2044333, + "rtt_ms": 2.044333, "checkpoint": 0, "vertex_from": "10", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.542063708Z" + "timestamp": "2025-11-27T04:01:48.920065-08:00" }, { "operation": "add_edge", - "rtt_ns": 2551982, - "rtt_ms": 2.551982, + "rtt_ns": 2012417, + "rtt_ms": 2.012417, "checkpoint": 0, "vertex_from": "10", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:50.542144838Z" + "timestamp": "2025-11-27T04:01:48.920086-08:00" }, { "operation": "add_edge", - "rtt_ns": 2588862, - "rtt_ms": 2.588862, + "rtt_ns": 2369458, + "rtt_ms": 2.369458, "checkpoint": 0, "vertex_from": "10", "vertex_to": "524", - "timestamp": "2025-11-27T01:21:50.542206398Z" + "timestamp": "2025-11-27T04:01:48.920461-08:00" }, { "operation": "add_edge", - "rtt_ns": 2689332, - "rtt_ms": 2.689332, + "rtt_ns": 2246417, + "rtt_ms": 2.246417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:50.542215098Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:48.921211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754605, - "rtt_ms": 1.754605, + "rtt_ns": 2753083, + "rtt_ms": 2.753083, "checkpoint": 0, "vertex_from": "10", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.542235558Z" + "timestamp": "2025-11-27T04:01:48.92122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608625, - "rtt_ms": 1.608625, + "rtt_ns": 2402333, + "rtt_ms": 2.402333, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.542289378Z" + "vertex_to": "87", + "timestamp": "2025-11-27T04:01:48.922359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607864, - "rtt_ms": 1.607864, + "rtt_ns": 3967542, + "rtt_ms": 3.967542, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:50.542321287Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:48.922381-08:00" }, { "operation": "add_edge", - "rtt_ns": 736638, - "rtt_ms": 0.736638, + "rtt_ns": 3904167, + "rtt_ms": 3.904167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.542609707Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:48.922398-08:00" }, { "operation": "add_edge", - "rtt_ns": 853557, - "rtt_ms": 0.853557, + "rtt_ns": 3647166, + "rtt_ms": 3.647166, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.542824556Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:48.922663-08:00" }, { "operation": "add_edge", - "rtt_ns": 864717, - "rtt_ms": 0.864717, + "rtt_ns": 2221167, + "rtt_ms": 2.221167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "87", - "timestamp": "2025-11-27T01:21:50.542844436Z" + "vertex_to": "246", + "timestamp": "2025-11-27T04:01:48.922684-08:00" }, { "operation": "add_edge", - "rtt_ns": 809067, - "rtt_ms": 0.809067, + "rtt_ns": 3003417, + "rtt_ms": 3.003417, "checkpoint": 0, "vertex_from": "10", "vertex_to": "394", - "timestamp": "2025-11-27T01:21:50.542954855Z" + "timestamp": "2025-11-27T04:01:48.92309-08:00" }, { "operation": "add_edge", - "rtt_ns": 948927, - "rtt_ms": 0.948927, + "rtt_ns": 3043000, + "rtt_ms": 3.043, "checkpoint": 0, "vertex_from": "10", "vertex_to": "624", - "timestamp": "2025-11-27T01:21:50.543013765Z" + "timestamp": "2025-11-27T04:01:48.92311-08:00" }, { "operation": "add_edge", - "rtt_ns": 835037, - "rtt_ms": 0.835037, + "rtt_ns": 1902583, + "rtt_ms": 1.902583, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "246", - "timestamp": "2025-11-27T01:21:50.543042425Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:48.923127-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3204958, + "rtt_ms": 3.204958, + "checkpoint": 0, + "vertex_from": "10", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:48.923144-08:00" }, { "operation": "add_edge", - "rtt_ns": 923897, - "rtt_ms": 0.923897, + "rtt_ns": 2408500, + "rtt_ms": 2.4085, "checkpoint": 0, "vertex_from": "10", "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.543140875Z" + "timestamp": "2025-11-27T04:01:48.923623-08:00" }, { "operation": "add_edge", - "rtt_ns": 874297, - "rtt_ms": 0.874297, + "rtt_ns": 1852875, + "rtt_ms": 1.852875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.543164335Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:48.924981-08:00" }, { "operation": "add_edge", - "rtt_ns": 962777, - "rtt_ms": 0.962777, + "rtt_ns": 1896833, + "rtt_ms": 1.896833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:50.543199545Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:48.925007-08:00" }, { "operation": "add_edge", - "rtt_ns": 909678, - "rtt_ms": 0.909678, + "rtt_ns": 2664041, + "rtt_ms": 2.664041, + "checkpoint": 0, + "vertex_from": "10", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:48.925025-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2659500, + "rtt_ms": 2.6595, "checkpoint": 0, "vertex_from": "10", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.543233075Z" + "timestamp": "2025-11-27T04:01:48.925042-08:00" }, { "operation": "add_edge", - "rtt_ns": 707537, - "rtt_ms": 0.707537, + "rtt_ns": 2372917, + "rtt_ms": 2.372917, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:50.543318434Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:48.92506-08:00" }, { "operation": "add_edge", - "rtt_ns": 683988, - "rtt_ms": 0.683988, + "rtt_ns": 2412792, + "rtt_ms": 2.412792, "checkpoint": 0, "vertex_from": "10", "vertex_to": "18", - "timestamp": "2025-11-27T01:21:50.543509564Z" + "timestamp": "2025-11-27T04:01:48.925077-08:00" }, { "operation": "add_edge", - "rtt_ns": 679248, - "rtt_ms": 0.679248, + "rtt_ns": 2693500, + "rtt_ms": 2.6935, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.543524624Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:48.925093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101856, - "rtt_ms": 1.101856, + "rtt_ns": 1965292, + "rtt_ms": 1.965292, "checkpoint": 0, "vertex_from": "10", "vertex_to": "433", - "timestamp": "2025-11-27T01:21:50.544243971Z" + "timestamp": "2025-11-27T04:01:48.92511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134046, - "rtt_ms": 1.134046, + "rtt_ns": 2035333, + "rtt_ms": 2.035333, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.544334391Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:48.925127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129936, - "rtt_ms": 1.129936, + "rtt_ns": 1751666, + "rtt_ms": 1.751666, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:50.544364231Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:48.925376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057297, - "rtt_ms": 1.057297, + "rtt_ns": 1773125, + "rtt_ms": 1.773125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "626", - "timestamp": "2025-11-27T01:21:50.544377621Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:48.926756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475306, - "rtt_ms": 1.475306, + "rtt_ns": 1739042, + "rtt_ms": 1.739042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:50.544437951Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:48.926833-08:00" }, { "operation": "add_edge", - "rtt_ns": 924057, - "rtt_ms": 0.924057, + "rtt_ns": 1804417, + "rtt_ms": 1.804417, "checkpoint": 0, "vertex_from": "10", "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.544450141Z" + "timestamp": "2025-11-27T04:01:48.926865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464456, - "rtt_ms": 1.464456, + "rtt_ns": 1888625, + "rtt_ms": 1.888625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.544479381Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:48.926931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432456, - "rtt_ms": 1.432456, + "rtt_ns": 1955208, + "rtt_ms": 1.955208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "868", - "timestamp": "2025-11-27T01:21:50.544480101Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:01:48.927067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014906, - "rtt_ms": 1.014906, + "rtt_ns": 2088792, + "rtt_ms": 2.088792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:50.54452635Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:01:48.927114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365725, - "rtt_ms": 1.365725, + "rtt_ns": 2122958, + "rtt_ms": 2.122958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:50.54453105Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:48.927132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928564, - "rtt_ms": 1.928564, + "rtt_ns": 1803958, + "rtt_ms": 1.803958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "28", - "timestamp": "2025-11-27T01:21:50.546294095Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:48.927181-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102943, - "rtt_ms": 2.102943, + "rtt_ns": 2133666, + "rtt_ms": 2.133666, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "358", - "timestamp": "2025-11-27T01:21:50.546482304Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:48.927211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297513, - "rtt_ms": 2.297513, + "rtt_ns": 2096875, + "rtt_ms": 2.096875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:50.546542924Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:01:48.927225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2136014, - "rtt_ms": 2.136014, + "rtt_ns": 1796292, + "rtt_ms": 1.796292, "checkpoint": 0, "vertex_from": "10", "vertex_to": "480", - "timestamp": "2025-11-27T01:21:50.546663454Z" + "timestamp": "2025-11-27T04:01:48.928729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2814412, - "rtt_ms": 2.814412, + "rtt_ns": 1916042, + "rtt_ms": 1.916042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.547346372Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:48.928751-08:00" }, { "operation": "add_edge", - "rtt_ns": 2907380, - "rtt_ms": 2.90738, + "rtt_ns": 1904334, + "rtt_ms": 1.904334, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:50.547387991Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:48.928771-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2997370, - "rtt_ms": 2.99737, + "rtt_ns": 2099917, + "rtt_ms": 2.099917, "checkpoint": 0, "vertex_from": "933", - "timestamp": "2025-11-27T01:21:50.547449661Z" - }, - { - "operation": "add_edge", - "rtt_ns": 3053250, - "rtt_ms": 3.05325, - "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:50.547492211Z" + "timestamp": "2025-11-27T04:01:48.928861-08:00" }, { "operation": "add_edge", - "rtt_ns": 3218030, - "rtt_ms": 3.21803, + "rtt_ns": 1659833, + "rtt_ms": 1.659833, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:50.547553281Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:48.928885-08:00" }, { "operation": "add_edge", - "rtt_ns": 3219079, - "rtt_ms": 3.219079, + "rtt_ns": 1999791, + "rtt_ms": 1.999791, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.54769999Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:48.929116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457555, - "rtt_ms": 1.457555, + "rtt_ns": 2102000, + "rtt_ms": 2.102, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:50.54775263Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:48.929171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276676, - "rtt_ms": 1.276676, + "rtt_ns": 1999333, + "rtt_ms": 1.999333, "checkpoint": 0, "vertex_from": "10", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.54782078Z" + "timestamp": "2025-11-27T04:01:48.929181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349026, - "rtt_ms": 1.349026, + "rtt_ns": 2083000, + "rtt_ms": 2.083, "checkpoint": 0, "vertex_from": "10", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:50.54783336Z" + "timestamp": "2025-11-27T04:01:48.929217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229236, - "rtt_ms": 1.229236, + "rtt_ns": 2020208, + "rtt_ms": 2.020208, "checkpoint": 0, "vertex_from": "10", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.54789351Z" + "timestamp": "2025-11-27T04:01:48.929233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223515, - "rtt_ms": 1.223515, + "rtt_ns": 1616334, + "rtt_ms": 1.616334, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:50.548570787Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:48.930503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204476, - "rtt_ms": 1.204476, + "rtt_ns": 1884333, + "rtt_ms": 1.884333, "checkpoint": 0, "vertex_from": "10", "vertex_to": "809", - "timestamp": "2025-11-27T01:21:50.548593207Z" + "timestamp": "2025-11-27T04:01:48.930614-08:00" }, { "operation": "add_edge", - "rtt_ns": 764827, - "rtt_ms": 0.764827, + "rtt_ns": 1919584, + "rtt_ms": 1.919584, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:50.548599247Z" + "vertex_to": "933", + "timestamp": "2025-11-27T04:01:48.930781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221776, - "rtt_ms": 1.221776, + "rtt_ns": 2059250, + "rtt_ms": 2.05925, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "933", - "timestamp": "2025-11-27T01:21:50.548671817Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:48.930811-08:00" }, { "operation": "add_edge", - "rtt_ns": 931357, - "rtt_ms": 0.931357, + "rtt_ns": 2049583, + "rtt_ms": 2.049583, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:50.548753037Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:48.930822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053527, - "rtt_ms": 1.053527, + "rtt_ns": 1754250, + "rtt_ms": 1.75425, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:50.548754637Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:48.930937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205846, - "rtt_ms": 1.205846, + "rtt_ns": 1929333, + "rtt_ms": 1.929333, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.548759717Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:01:48.931048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017407, - "rtt_ms": 1.017407, + "rtt_ns": 2001459, + "rtt_ms": 2.001459, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "837", - "timestamp": "2025-11-27T01:21:50.548771227Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:48.931174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293586, - "rtt_ms": 1.293586, + "rtt_ns": 1942167, + "rtt_ms": 1.942167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.548786437Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:48.931176-08:00" }, { "operation": "add_edge", - "rtt_ns": 938657, - "rtt_ms": 0.938657, + "rtt_ns": 1999416, + "rtt_ms": 1.999416, "checkpoint": 0, "vertex_from": "10", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:50.548833077Z" + "timestamp": "2025-11-27T04:01:48.931217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235736, - "rtt_ms": 1.235736, + "rtt_ns": 2114667, + "rtt_ms": 2.114667, "checkpoint": 0, "vertex_from": "10", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.549909183Z" + "timestamp": "2025-11-27T04:01:48.932897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413626, - "rtt_ms": 1.413626, + "rtt_ns": 1873083, + "rtt_ms": 1.873083, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:50.549985403Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:48.932922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403686, - "rtt_ms": 1.403686, + "rtt_ns": 1986291, + "rtt_ms": 1.986291, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.549997913Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:48.932924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244096, - "rtt_ms": 1.244096, + "rtt_ns": 2114750, + "rtt_ms": 2.11475, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:50.550031583Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:48.932926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496415, - "rtt_ms": 1.496415, + "rtt_ns": 2155292, + "rtt_ms": 2.155292, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "115", - "timestamp": "2025-11-27T01:21:50.550096982Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:48.932978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360165, - "rtt_ms": 1.360165, + "rtt_ns": 2516125, + "rtt_ms": 2.516125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.550114412Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:48.933021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391705, - "rtt_ms": 1.391705, + "rtt_ns": 2633750, + "rtt_ms": 2.63375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:50.550147192Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:01:48.933249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359215, - "rtt_ms": 1.359215, + "rtt_ns": 2055875, + "rtt_ms": 2.055875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "199", - "timestamp": "2025-11-27T01:21:50.550199552Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:48.933274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427255, - "rtt_ms": 1.427255, + "rtt_ns": 2139667, + "rtt_ms": 2.139667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:50.550199662Z" + "vertex_to": "199", + "timestamp": "2025-11-27T04:01:48.933317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449115, - "rtt_ms": 1.449115, + "rtt_ns": 2181958, + "rtt_ms": 2.181958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.550209632Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:48.933356-08:00" }, { - "operation": "add_edge", - "rtt_ns": 912037, - "rtt_ms": 0.912037, + "operation": "add_vertex", + "rtt_ns": 1575042, + "rtt_ms": 1.575042, "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.55082363Z" + "vertex_from": "247", + "timestamp": "2025-11-27T04:01:48.934599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003416, - "rtt_ms": 1.003416, + "rtt_ns": 1737625, + "rtt_ms": 1.737625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "23", - "timestamp": "2025-11-27T01:21:50.551002419Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:48.934636-08:00" }, { - "operation": "add_edge", - "rtt_ns": 993616, - "rtt_ms": 0.993616, + "operation": "add_vertex", + "rtt_ns": 1811625, + "rtt_ms": 1.811625, "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:50.551027409Z" + "vertex_from": "651", + "timestamp": "2025-11-27T04:01:48.93474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052266, - "rtt_ms": 1.052266, + "rtt_ns": 1855667, + "rtt_ms": 1.855667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.551039019Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1488125, - "rtt_ms": 1.488125, - "checkpoint": 0, - "vertex_from": "247", - "timestamp": "2025-11-27T01:21:50.551637197Z" + "vertex_to": "23", + "timestamp": "2025-11-27T04:01:48.934779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603225, - "rtt_ms": 1.603225, + "rtt_ns": 1546167, + "rtt_ms": 1.546167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.551804787Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:48.934905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674274, - "rtt_ms": 1.674274, + "rtt_ns": 1649709, + "rtt_ms": 1.649709, "checkpoint": 0, "vertex_from": "10", "vertex_to": "432", - "timestamp": "2025-11-27T01:21:50.551876806Z" + "timestamp": "2025-11-27T04:01:48.934925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910174, - "rtt_ms": 1.910174, + "rtt_ns": 2019250, + "rtt_ms": 2.01925, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.552120916Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:48.934945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200203, - "rtt_ms": 2.200203, + "rtt_ns": 1875000, + "rtt_ms": 1.875, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:50.552316035Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:48.935193-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2253343, - "rtt_ms": 2.253343, + "operation": "add_edge", + "rtt_ns": 2060708, + "rtt_ms": 2.060708, "checkpoint": 0, - "vertex_from": "651", - "timestamp": "2025-11-27T01:21:50.552353505Z" + "vertex_from": "10", + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:48.935311-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058903, - "rtt_ms": 2.058903, + "rtt_ns": 2353208, + "rtt_ms": 2.353208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:50.552885663Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:48.935332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425226, - "rtt_ms": 1.425226, + "rtt_ns": 1518375, + "rtt_ms": 1.518375, "checkpoint": 0, "vertex_from": "10", "vertex_to": "247", - "timestamp": "2025-11-27T01:21:50.553062783Z" + "timestamp": "2025-11-27T04:01:48.936118-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039324, - "rtt_ms": 2.039324, + "rtt_ns": 1398375, + "rtt_ms": 1.398375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.553079763Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:01:48.936139-08:00" }, { "operation": "add_edge", - "rtt_ns": 2227053, - "rtt_ms": 2.227053, + "rtt_ns": 1522208, + "rtt_ms": 1.522208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.553255552Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:48.936159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475375, - "rtt_ms": 1.475375, + "rtt_ns": 1545958, + "rtt_ms": 1.545958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.553281882Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:48.936452-08:00" }, { "operation": "add_edge", - "rtt_ns": 787468, - "rtt_ms": 0.787468, + "rtt_ns": 1512708, + "rtt_ms": 1.512708, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.553674441Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:48.936458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2685002, - "rtt_ms": 2.685002, + "rtt_ns": 1942125, + "rtt_ms": 1.942125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:50.553689111Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:48.936868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377376, - "rtt_ms": 1.377376, + "rtt_ns": 2108209, + "rtt_ms": 2.108209, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "651", - "timestamp": "2025-11-27T01:21:50.553731341Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:48.936888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612715, - "rtt_ms": 1.612715, + "rtt_ns": 1700625, + "rtt_ms": 1.700625, "checkpoint": 0, "vertex_from": "10", "vertex_to": "707", - "timestamp": "2025-11-27T01:21:50.553734841Z" + "timestamp": "2025-11-27T04:01:48.936894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420666, - "rtt_ms": 1.420666, + "rtt_ns": 1595250, + "rtt_ms": 1.59525, "checkpoint": 0, "vertex_from": "10", "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.553737981Z" + "timestamp": "2025-11-27T04:01:48.936907-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1645084, + "rtt_ms": 1.645084, + "checkpoint": 0, + "vertex_from": "10", + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:48.936978-08:00" }, { "operation": "add_edge", - "rtt_ns": 661638, - "rtt_ms": 0.661638, + "rtt_ns": 1337042, + "rtt_ms": 1.337042, "checkpoint": 0, "vertex_from": "10", "vertex_to": "83", - "timestamp": "2025-11-27T01:21:50.553743051Z" + "timestamp": "2025-11-27T04:01:48.937477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871655, - "rtt_ms": 1.871655, + "rtt_ns": 1550250, + "rtt_ms": 1.55025, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.553749841Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:48.937669-08:00" }, { "operation": "add_edge", - "rtt_ns": 621818, - "rtt_ms": 0.621818, + "rtt_ns": 1761167, + "rtt_ms": 1.761167, "checkpoint": 0, "vertex_from": "10", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.553879Z" + "timestamp": "2025-11-27T04:01:48.937921-08:00" }, { "operation": "add_edge", - "rtt_ns": 818557, - "rtt_ms": 0.818557, + "rtt_ns": 1585791, + "rtt_ms": 1.585791, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.55388284Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:48.938142-08:00" }, { "operation": "add_edge", - "rtt_ns": 699458, - "rtt_ms": 0.699458, + "rtt_ns": 1877209, + "rtt_ms": 1.877209, "checkpoint": 0, "vertex_from": "10", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:50.555281906Z" + "timestamp": "2025-11-27T04:01:48.938479-08:00" }, { "operation": "add_edge", - "rtt_ns": 757737, - "rtt_ms": 0.757737, + "rtt_ns": 1669333, + "rtt_ms": 1.669333, "checkpoint": 0, "vertex_from": "10", "vertex_to": "270", - "timestamp": "2025-11-27T01:21:50.555371285Z" + "timestamp": "2025-11-27T04:01:48.938539-08:00" }, { "operation": "add_edge", - "rtt_ns": 793307, - "rtt_ms": 0.793307, + "rtt_ns": 1657000, + "rtt_ms": 1.657, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:50.555427845Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:48.938552-08:00" }, { "operation": "add_edge", - "rtt_ns": 892447, - "rtt_ms": 0.892447, + "rtt_ns": 1753375, + "rtt_ms": 1.753375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "961", - "timestamp": "2025-11-27T01:21:50.555462045Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:48.938642-08:00" }, { "operation": "add_edge", - "rtt_ns": 671478, - "rtt_ms": 0.671478, + "rtt_ns": 1980250, + "rtt_ms": 1.98025, "checkpoint": 0, "vertex_from": "10", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.555552135Z" + "timestamp": "2025-11-27T04:01:48.938888-08:00" }, { "operation": "add_edge", - "rtt_ns": 959547, - "rtt_ms": 0.959547, + "rtt_ns": 1921333, + "rtt_ms": 1.921333, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:50.555604985Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:48.938901-08:00" }, { "operation": "add_edge", - "rtt_ns": 702328, - "rtt_ms": 0.702328, + "rtt_ns": 1779083, + "rtt_ms": 1.779083, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.555613585Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:48.939257-08:00" }, { "operation": "add_edge", - "rtt_ns": 760867, - "rtt_ms": 0.760867, + "rtt_ns": 2382458, + "rtt_ms": 2.382458, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:50.555647674Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:48.940053-08:00" }, { "operation": "add_edge", - "rtt_ns": 736547, - "rtt_ms": 0.736547, + "rtt_ns": 1928042, + "rtt_ms": 1.928042, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.555662504Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:48.940073-08:00" }, { "operation": "add_edge", - "rtt_ns": 794777, - "rtt_ms": 0.794777, + "rtt_ns": 2200291, + "rtt_ms": 2.200291, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:50.555703584Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:48.940122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052766, - "rtt_ms": 1.052766, + "rtt_ns": 1720750, + "rtt_ms": 1.72075, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.556337622Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:01:48.940364-08:00" }, { "operation": "add_edge", - "rtt_ns": 988367, - "rtt_ms": 0.988367, + "rtt_ns": 1845375, + "rtt_ms": 1.845375, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "339", - "timestamp": "2025-11-27T01:21:50.556453882Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:48.940385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103237, - "rtt_ms": 1.103237, + "rtt_ns": 1852166, + "rtt_ms": 1.852166, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:50.556477012Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:01:48.940405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054267, - "rtt_ms": 1.054267, + "rtt_ns": 2070209, + "rtt_ms": 2.070209, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.556483872Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:48.940551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568395, - "rtt_ms": 1.568395, + "rtt_ns": 1312500, + "rtt_ms": 1.3125, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "119", - "timestamp": "2025-11-27T01:21:50.557122Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:48.940571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533024, - "rtt_ms": 1.533024, + "rtt_ns": 1881584, + "rtt_ms": 1.881584, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:50.557139249Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:48.940784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553254, - "rtt_ms": 1.553254, + "rtt_ns": 1896459, + "rtt_ms": 1.896459, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:50.557168089Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:48.940787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629625, - "rtt_ms": 1.629625, + "rtt_ns": 1656958, + "rtt_ms": 1.656958, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:50.557293409Z" + "vertex_to": "364", + "timestamp": "2025-11-27T04:01:48.94178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645205, - "rtt_ms": 1.645205, + "rtt_ns": 1765792, + "rtt_ms": 1.765792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.557294759Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:48.94184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613335, - "rtt_ms": 1.613335, + "rtt_ns": 1482208, + "rtt_ms": 1.482208, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:50.557318149Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:48.942034-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286112, - "rtt_ms": 2.286112, + "rtt_ns": 1484792, + "rtt_ms": 1.484792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "364", - "timestamp": "2025-11-27T01:21:50.558625124Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:48.942056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233072, - "rtt_ms": 2.233072, + "rtt_ns": 1686292, + "rtt_ms": 1.686292, "checkpoint": 0, "vertex_from": "10", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.558711784Z" + "timestamp": "2025-11-27T04:01:48.942072-08:00" }, { "operation": "add_edge", - "rtt_ns": 2743000, - "rtt_ms": 2.743, + "rtt_ns": 1729500, + "rtt_ms": 1.7295, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:50.559228552Z" + "vertex_to": "13", + "timestamp": "2025-11-27T04:01:48.942095-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134252, - "rtt_ms": 2.134252, + "rtt_ns": 2052417, + "rtt_ms": 2.052417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.559257812Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:48.942106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143613, - "rtt_ms": 2.143613, + "rtt_ns": 1700667, + "rtt_ms": 1.700667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.559285012Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:48.942107-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028293, - "rtt_ms": 2.028293, + "rtt_ns": 1440000, + "rtt_ms": 1.44, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.559324822Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:48.942225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2927590, - "rtt_ms": 2.92759, + "rtt_ns": 1592667, + "rtt_ms": 1.592667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "13", - "timestamp": "2025-11-27T01:21:50.559383462Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:48.942381-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140053, - "rtt_ms": 2.140053, + "rtt_ns": 1419167, + "rtt_ms": 1.419167, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:50.559434922Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:48.94326-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187013, - "rtt_ms": 2.187013, + "rtt_ns": 1500500, + "rtt_ms": 1.5005, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:50.559506752Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:48.943283-08:00" }, { "operation": "add_edge", - "rtt_ns": 2368842, - "rtt_ms": 2.368842, + "rtt_ns": 1377792, + "rtt_ms": 1.377792, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:50.559538151Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:48.943605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239296, - "rtt_ms": 1.239296, + "rtt_ns": 1579459, + "rtt_ms": 1.579459, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.55986554Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:48.943636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183826, - "rtt_ms": 1.183826, + "rtt_ns": 1552041, + "rtt_ms": 1.552041, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.55989679Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:48.94366-08:00" }, { "operation": "add_edge", - "rtt_ns": 865558, - "rtt_ms": 0.865558, + "rtt_ns": 1570542, + "rtt_ms": 1.570542, "checkpoint": 0, "vertex_from": "10", "vertex_to": "582", - "timestamp": "2025-11-27T01:21:50.56012427Z" + "timestamp": "2025-11-27T04:01:48.943667-08:00" }, { "operation": "add_edge", - "rtt_ns": 930037, - "rtt_ms": 0.930037, + "rtt_ns": 1637625, + "rtt_ms": 1.637625, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:50.560159949Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:48.943673-08:00" }, { "operation": "add_edge", - "rtt_ns": 897377, - "rtt_ms": 0.897377, + "rtt_ns": 1570209, + "rtt_ms": 1.570209, "checkpoint": 0, "vertex_from": "10", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:50.560183259Z" + "timestamp": "2025-11-27T04:01:48.943678-08:00" }, { "operation": "add_edge", - "rtt_ns": 893207, - "rtt_ms": 0.893207, + "rtt_ns": 1613417, + "rtt_ms": 1.613417, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:50.560219589Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:48.943686-08:00" }, { "operation": "add_edge", - "rtt_ns": 858367, - "rtt_ms": 0.858367, + "rtt_ns": 1406500, + "rtt_ms": 1.4065, "checkpoint": 0, "vertex_from": "10", "vertex_to": "338", - "timestamp": "2025-11-27T01:21:50.560294449Z" + "timestamp": "2025-11-27T04:01:48.943788-08:00" }, { "operation": "add_edge", - "rtt_ns": 921597, - "rtt_ms": 0.921597, + "rtt_ns": 1443667, + "rtt_ms": 1.443667, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.560306009Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:48.944728-08:00" }, { "operation": "add_edge", - "rtt_ns": 978307, - "rtt_ms": 0.978307, + "rtt_ns": 1352750, + "rtt_ms": 1.35275, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.560844977Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:48.94502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526695, - "rtt_ms": 1.526695, + "rtt_ns": 1778500, + "rtt_ms": 1.7785, "checkpoint": 0, "vertex_from": "10", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.561034697Z" + "timestamp": "2025-11-27T04:01:48.94504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595825, - "rtt_ms": 1.595825, + "rtt_ns": 1602917, + "rtt_ms": 1.602917, "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:50.561135336Z" + "vertex_from": "11", + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:48.945282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254046, - "rtt_ms": 1.254046, + "rtt_ns": 1713000, + "rtt_ms": 1.713, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.561151806Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:48.945319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034646, - "rtt_ms": 1.034646, + "rtt_ns": 1807959, + "rtt_ms": 1.807959, "checkpoint": 0, - "vertex_from": "10", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.561159796Z" + "vertex_from": "11", + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:48.945495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031257, - "rtt_ms": 1.031257, + "rtt_ns": 1880916, + "rtt_ms": 1.880916, "checkpoint": 0, "vertex_from": "10", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:50.561192446Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1499666, - "rtt_ms": 1.499666, - "checkpoint": 0, - "vertex_from": "11", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:50.561684085Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:48.945518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631565, - "rtt_ms": 1.631565, + "rtt_ns": 2475750, + "rtt_ms": 2.47575, "checkpoint": 0, - "vertex_from": "11", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:50.561852124Z" + "vertex_from": "10", + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:48.946136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579815, - "rtt_ms": 1.579815, + "rtt_ns": 2436167, + "rtt_ms": 2.436167, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:50.561875044Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:48.946225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756154, - "rtt_ms": 1.756154, + "rtt_ns": 2595458, + "rtt_ms": 2.595458, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:50.562063003Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:48.946269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381506, - "rtt_ms": 1.381506, + "rtt_ns": 1588875, + "rtt_ms": 1.588875, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.562227513Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:48.94663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209366, - "rtt_ms": 1.209366, + "rtt_ns": 1611000, + "rtt_ms": 1.611, "checkpoint": 0, "vertex_from": "11", "vertex_to": "804", - "timestamp": "2025-11-27T01:21:50.562244883Z" + "timestamp": "2025-11-27T04:01:48.946633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171107, - "rtt_ms": 1.171107, + "rtt_ns": 1575375, + "rtt_ms": 1.575375, "checkpoint": 0, "vertex_from": "11", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.562324053Z" + "timestamp": "2025-11-27T04:01:48.946858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171666, - "rtt_ms": 1.171666, + "rtt_ns": 2133708, + "rtt_ms": 2.133708, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.562365712Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:48.946865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303276, - "rtt_ms": 1.303276, + "rtt_ns": 1370500, + "rtt_ms": 1.3705, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.562440562Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:48.946866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287616, - "rtt_ms": 1.287616, + "rtt_ns": 1553917, + "rtt_ms": 1.553917, "checkpoint": 0, "vertex_from": "11", "vertex_to": "233", - "timestamp": "2025-11-27T01:21:50.562448472Z" + "timestamp": "2025-11-27T04:01:48.946873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290376, - "rtt_ms": 1.290376, + "rtt_ns": 1589125, + "rtt_ms": 1.589125, "checkpoint": 0, "vertex_from": "11", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:50.562977481Z" + "timestamp": "2025-11-27T04:01:48.947108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137956, - "rtt_ms": 1.137956, + "rtt_ns": 1714042, + "rtt_ms": 1.714042, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.56299189Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:48.947987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039277, - "rtt_ms": 1.039277, + "rtt_ns": 1869416, + "rtt_ms": 1.869416, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:50.56310464Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:48.948007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241106, - "rtt_ms": 1.241106, + "rtt_ns": 1799000, + "rtt_ms": 1.799, "checkpoint": 0, "vertex_from": "11", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.56311785Z" + "timestamp": "2025-11-27T04:01:48.948025-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188943, - "rtt_ms": 2.188943, + "rtt_ns": 1441834, + "rtt_ms": 1.441834, "checkpoint": 0, "vertex_from": "11", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.564435336Z" + "timestamp": "2025-11-27T04:01:48.948076-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2523632, - "rtt_ms": 2.523632, + "operation": "add_edge", + "rtt_ns": 1474208, + "rtt_ms": 1.474208, "checkpoint": 0, - "vertex_from": "993", - "timestamp": "2025-11-27T01:21:50.564976114Z" + "vertex_from": "11", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:48.948106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2592112, - "rtt_ms": 2.592112, + "rtt_ns": 1270125, + "rtt_ms": 1.270125, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.565034694Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:48.948131-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1492958, + "rtt_ms": 1.492958, + "checkpoint": 0, + "vertex_from": "993", + "timestamp": "2025-11-27T04:01:48.948368-08:00" }, { "operation": "add_edge", - "rtt_ns": 2686602, - "rtt_ms": 2.686602, + "rtt_ns": 1520000, + "rtt_ms": 1.52, "checkpoint": 0, "vertex_from": "11", "vertex_to": "12", - "timestamp": "2025-11-27T01:21:50.565054254Z" + "timestamp": "2025-11-27T04:01:48.948386-08:00" }, { "operation": "add_edge", - "rtt_ns": 2728841, - "rtt_ms": 2.728841, + "rtt_ns": 1868791, + "rtt_ms": 1.868791, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.565055024Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:48.948736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2879290, - "rtt_ms": 2.87929, + "rtt_ns": 1639584, + "rtt_ms": 1.639584, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.565109593Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:48.948748-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067903, - "rtt_ms": 2.067903, + "rtt_ns": 1037791, + "rtt_ms": 1.037791, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.565186563Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:48.949424-08:00" }, { "operation": "add_edge", - "rtt_ns": 2271903, - "rtt_ms": 2.271903, + "rtt_ns": 1580875, + "rtt_ms": 1.580875, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.565265053Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:48.949607-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313503, - "rtt_ms": 2.313503, + "rtt_ns": 1419500, + "rtt_ms": 1.4195, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:50.565292903Z" + "vertex_to": "993", + "timestamp": "2025-11-27T04:01:48.949788-08:00" }, { "operation": "add_edge", - "rtt_ns": 917407, - "rtt_ms": 0.917407, + "rtt_ns": 1701083, + "rtt_ms": 1.701083, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "849", - "timestamp": "2025-11-27T01:21:50.565354683Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:48.949808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2322212, - "rtt_ms": 2.322212, + "rtt_ns": 1892250, + "rtt_ms": 1.89225, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:50.565428272Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:48.94988-08:00" }, { "operation": "add_edge", - "rtt_ns": 706347, - "rtt_ms": 0.706347, + "rtt_ns": 1946042, + "rtt_ms": 1.946042, "checkpoint": 0, "vertex_from": "11", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:50.565761631Z" + "timestamp": "2025-11-27T04:01:48.950079-08:00" }, { "operation": "add_edge", - "rtt_ns": 755297, - "rtt_ms": 0.755297, + "rtt_ns": 2088375, + "rtt_ms": 2.088375, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.565791441Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:48.950096-08:00" }, { "operation": "add_edge", - "rtt_ns": 835337, - "rtt_ms": 0.835337, + "rtt_ns": 2038584, + "rtt_ms": 2.038584, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "993", - "timestamp": "2025-11-27T01:21:50.565811831Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:01:48.950115-08:00" }, { "operation": "add_edge", - "rtt_ns": 770628, - "rtt_ms": 0.770628, + "rtt_ns": 1567542, + "rtt_ms": 1.567542, "checkpoint": 0, "vertex_from": "11", "vertex_to": "21", - "timestamp": "2025-11-27T01:21:50.565881091Z" + "timestamp": "2025-11-27T04:01:48.950304-08:00" }, { "operation": "add_edge", - "rtt_ns": 827217, - "rtt_ms": 0.827217, + "rtt_ns": 1728834, + "rtt_ms": 1.728834, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:50.565883441Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:48.950478-08:00" }, { "operation": "add_edge", - "rtt_ns": 758798, - "rtt_ms": 0.758798, + "rtt_ns": 1494416, + "rtt_ms": 1.494416, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:50.565946311Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:48.95092-08:00" }, { "operation": "add_edge", - "rtt_ns": 727208, - "rtt_ms": 0.727208, + "rtt_ns": 1351583, + "rtt_ms": 1.351583, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.565992951Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:48.95096-08:00" }, { "operation": "add_edge", - "rtt_ns": 834877, - "rtt_ms": 0.834877, + "rtt_ns": 1430041, + "rtt_ms": 1.430041, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.5661296Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:48.951313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097866, - "rtt_ms": 1.097866, + "rtt_ns": 1525334, + "rtt_ms": 1.525334, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.566453219Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:48.951334-08:00" }, { "operation": "add_edge", - "rtt_ns": 781878, - "rtt_ms": 0.781878, + "rtt_ns": 1681209, + "rtt_ms": 1.681209, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.566574469Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:48.95147-08:00" }, { "operation": "add_edge", - "rtt_ns": 823847, - "rtt_ms": 0.823847, + "rtt_ns": 1368250, + "rtt_ms": 1.36825, "checkpoint": 0, "vertex_from": "11", "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.566706188Z" + "timestamp": "2025-11-27T04:01:48.951484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050057, - "rtt_ms": 1.050057, + "rtt_ns": 1431916, + "rtt_ms": 1.431916, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.566812568Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:48.951529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071327, - "rtt_ms": 1.071327, + "rtt_ns": 1467416, + "rtt_ms": 1.467416, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.566883858Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:48.951548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134016, - "rtt_ms": 1.134016, + "rtt_ns": 1341375, + "rtt_ms": 1.341375, "checkpoint": 0, "vertex_from": "11", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.567018617Z" + "timestamp": "2025-11-27T04:01:48.951647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741135, - "rtt_ms": 1.741135, + "rtt_ns": 1898666, + "rtt_ms": 1.898666, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.567171107Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:48.952378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814633, - "rtt_ms": 1.814633, + "rtt_ns": 1477000, + "rtt_ms": 1.477, + "checkpoint": 0, + "vertex_from": "11", + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:48.952438-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1832292, + "rtt_ms": 1.832292, "checkpoint": 0, "vertex_from": "11", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.567808154Z" + "timestamp": "2025-11-27T04:01:48.952755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373285, - "rtt_ms": 1.373285, + "rtt_ns": 1544250, + "rtt_ms": 1.54425, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.567828354Z" + "vertex_to": "211", + "timestamp": "2025-11-27T04:01:48.95303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701164, - "rtt_ms": 1.701164, + "rtt_ns": 1647334, + "rtt_ms": 1.647334, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:50.567831394Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:48.953295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893033, - "rtt_ms": 1.893033, + "rtt_ns": 1977166, + "rtt_ms": 1.977166, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.567840334Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:48.953312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461505, - "rtt_ms": 1.461505, + "rtt_ns": 2013625, + "rtt_ms": 2.013625, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.568481402Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:48.953543-08:00" }, { "operation": "add_edge", - "rtt_ns": 2672101, - "rtt_ms": 2.672101, + "rtt_ns": 2278958, + "rtt_ms": 2.278958, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:50.56924773Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:48.953751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459456, - "rtt_ms": 1.459456, + "rtt_ns": 2331166, + "rtt_ms": 2.331166, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:50.56926857Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:48.95388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442726, - "rtt_ms": 1.442726, + "rtt_ns": 1645042, + "rtt_ms": 1.645042, "checkpoint": 0, "vertex_from": "11", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:50.5692721Z" + "timestamp": "2025-11-27T04:01:48.954085-08:00" }, { "operation": "add_edge", - "rtt_ns": 2476332, - "rtt_ms": 2.476332, + "rtt_ns": 1709583, + "rtt_ms": 1.709583, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.56936119Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:48.95409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575785, - "rtt_ms": 1.575785, + "rtt_ns": 1603208, + "rtt_ms": 1.603208, "checkpoint": 0, "vertex_from": "11", "vertex_to": "354", - "timestamp": "2025-11-27T01:21:50.569407909Z" + "timestamp": "2025-11-27T04:01:48.95436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236122, - "rtt_ms": 2.236122, + "rtt_ns": 3062209, + "rtt_ms": 3.062209, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:50.569408339Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:48.954377-08:00" }, { "operation": "add_edge", - "rtt_ns": 2595201, - "rtt_ms": 2.595201, + "rtt_ns": 1439542, + "rtt_ms": 1.439542, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "211", - "timestamp": "2025-11-27T01:21:50.569408889Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:48.954753-08:00" }, { "operation": "add_edge", - "rtt_ns": 3025560, - "rtt_ms": 3.02556, + "rtt_ns": 1633084, + "rtt_ms": 1.633084, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:50.569732968Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:48.954929-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1941454, - "rtt_ms": 1.941454, + "rtt_ns": 2025125, + "rtt_ms": 2.025125, "checkpoint": 0, "vertex_from": "743", - "timestamp": "2025-11-27T01:21:50.569784728Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2697832, - "rtt_ms": 2.697832, - "checkpoint": 0, - "vertex_from": "11", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.571180614Z" + "timestamp": "2025-11-27T04:01:48.955058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112293, - "rtt_ms": 2.112293, + "rtt_ns": 1534375, + "rtt_ms": 1.534375, "checkpoint": 0, "vertex_from": "11", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.571385753Z" + "timestamp": "2025-11-27T04:01:48.955288-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236873, - "rtt_ms": 2.236873, + "rtt_ns": 1766417, + "rtt_ms": 1.766417, "checkpoint": 0, "vertex_from": "11", "vertex_to": "898", - "timestamp": "2025-11-27T01:21:50.571506573Z" + "timestamp": "2025-11-27T04:01:48.955311-08:00" }, { "operation": "add_edge", - "rtt_ns": 2717901, - "rtt_ms": 2.717901, + "rtt_ns": 1501875, + "rtt_ms": 1.501875, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.572081431Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:48.955594-08:00" }, { "operation": "add_edge", - "rtt_ns": 2926691, - "rtt_ms": 2.926691, + "rtt_ns": 1817125, + "rtt_ms": 1.817125, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "743", - "timestamp": "2025-11-27T01:21:50.572711639Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:48.955698-08:00" }, { "operation": "add_edge", - "rtt_ns": 3009501, - "rtt_ms": 3.009501, + "rtt_ns": 1592500, + "rtt_ms": 1.5925, "checkpoint": 0, "vertex_from": "11", "vertex_to": "626", - "timestamp": "2025-11-27T01:21:50.572742959Z" + "timestamp": "2025-11-27T04:01:48.955971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487315, - "rtt_ms": 1.487315, + "rtt_ns": 2019333, + "rtt_ms": 2.019333, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:50.572874368Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:48.956107-08:00" }, { "operation": "add_edge", - "rtt_ns": 3467979, - "rtt_ms": 3.467979, + "rtt_ns": 1153375, + "rtt_ms": 1.153375, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.572877378Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1412925, - "rtt_ms": 1.412925, - "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:50.572920608Z" + "vertex_to": "743", + "timestamp": "2025-11-27T04:01:48.956211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780444, - "rtt_ms": 1.780444, + "rtt_ns": 1474458, + "rtt_ms": 1.474458, "checkpoint": 0, "vertex_from": "11", "vertex_to": "840", - "timestamp": "2025-11-27T01:21:50.572962428Z" + "timestamp": "2025-11-27T04:01:48.956229-08:00" }, { "operation": "add_edge", - "rtt_ns": 3560819, - "rtt_ms": 3.560819, + "rtt_ns": 1958125, + "rtt_ms": 1.958125, "checkpoint": 0, "vertex_from": "11", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.572970628Z" + "timestamp": "2025-11-27T04:01:48.956319-08:00" }, { "operation": "add_edge", - "rtt_ns": 3720658, - "rtt_ms": 3.720658, + "rtt_ns": 1406375, + "rtt_ms": 1.406375, "checkpoint": 0, "vertex_from": "11", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.572970918Z" - }, - { - "operation": "add_edge", - "rtt_ns": 3563669, - "rtt_ms": 3.563669, - "checkpoint": 0, - "vertex_from": "11", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.572972358Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:48.956336-08:00" }, { "operation": "add_edge", - "rtt_ns": 975917, - "rtt_ms": 0.975917, + "rtt_ns": 1416959, + "rtt_ms": 1.416959, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.573898375Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:48.956706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843664, - "rtt_ms": 1.843664, + "rtt_ns": 1412167, + "rtt_ms": 1.412167, "checkpoint": 0, "vertex_from": "12", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.573932685Z" + "timestamp": "2025-11-27T04:01:48.956724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228236, - "rtt_ms": 1.228236, + "rtt_ns": 1294833, + "rtt_ms": 1.294833, "checkpoint": 0, "vertex_from": "12", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.573941755Z" + "timestamp": "2025-11-27T04:01:48.956891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106176, - "rtt_ms": 1.106176, + "rtt_ns": 1412542, + "rtt_ms": 1.412542, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.573985044Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:48.957625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269095, - "rtt_ms": 1.269095, + "rtt_ns": 1933292, + "rtt_ms": 1.933292, "checkpoint": 0, "vertex_from": "12", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.574013814Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1074206, - "rtt_ms": 1.074206, - "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.574048374Z" + "timestamp": "2025-11-27T04:01:48.957633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627425, - "rtt_ms": 1.627425, + "rtt_ns": 1671459, + "rtt_ms": 1.671459, "checkpoint": 0, "vertex_from": "12", "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.574503353Z" + "timestamp": "2025-11-27T04:01:48.957643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528715, - "rtt_ms": 1.528715, + "rtt_ns": 1379042, + "rtt_ms": 1.379042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.574503383Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:48.957717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669764, - "rtt_ms": 1.669764, + "rtt_ns": 1660625, + "rtt_ms": 1.660625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.574642452Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:48.957768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740894, - "rtt_ms": 1.740894, + "rtt_ns": 1561708, + "rtt_ms": 1.561708, "checkpoint": 0, "vertex_from": "12", "vertex_to": "688", - "timestamp": "2025-11-27T01:21:50.574704812Z" + "timestamp": "2025-11-27T04:01:48.957792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239465, - "rtt_ms": 1.239465, + "rtt_ns": 1303709, + "rtt_ms": 1.303709, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:50.57518295Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:48.958011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348725, - "rtt_ms": 1.348725, + "rtt_ns": 1355750, + "rtt_ms": 1.35575, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.57524861Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:48.958248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243236, - "rtt_ms": 1.243236, + "rtt_ns": 1969125, + "rtt_ms": 1.969125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.57525834Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:48.95829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238286, - "rtt_ms": 1.238286, + "rtt_ns": 1990250, + "rtt_ms": 1.99025, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:50.57528865Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:48.958715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768565, - "rtt_ms": 1.768565, + "rtt_ns": 1770750, + "rtt_ms": 1.77075, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:50.575754409Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:48.959565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928263, - "rtt_ms": 1.928263, + "rtt_ns": 1955625, + "rtt_ms": 1.955625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:50.575861818Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:48.959581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246046, - "rtt_ms": 1.246046, + "rtt_ns": 1878583, + "rtt_ms": 1.878583, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:50.575889378Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:48.959598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395595, - "rtt_ms": 1.395595, + "rtt_ns": 1965959, + "rtt_ms": 1.965959, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:50.575900368Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:48.9596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220506, - "rtt_ms": 1.220506, + "rtt_ns": 1969667, + "rtt_ms": 1.969667, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.575926188Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:48.959614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583994, - "rtt_ms": 1.583994, + "rtt_ns": 1902542, + "rtt_ms": 1.902542, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:50.576089597Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:48.959916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552785, - "rtt_ms": 1.552785, + "rtt_ns": 2210083, + "rtt_ms": 2.210083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "243", - "timestamp": "2025-11-27T01:21:50.576737375Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:48.959979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461225, - "rtt_ms": 1.461225, + "rtt_ns": 2088083, + "rtt_ms": 2.088083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.576750645Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:48.960337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544815, - "rtt_ms": 1.544815, + "rtt_ns": 1747708, + "rtt_ms": 1.747708, "checkpoint": 0, "vertex_from": "12", "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.576794345Z" + "timestamp": "2025-11-27T04:01:48.960463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554545, - "rtt_ms": 1.554545, + "rtt_ns": 2287750, + "rtt_ms": 2.28775, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:50.576814485Z" + "vertex_to": "243", + "timestamp": "2025-11-27T04:01:48.960585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241972, - "rtt_ms": 2.241972, + "rtt_ns": 1289500, + "rtt_ms": 1.2895, "checkpoint": 0, "vertex_from": "12", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.577997201Z" + "timestamp": "2025-11-27T04:01:48.960888-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219133, - "rtt_ms": 2.219133, + "rtt_ns": 1295792, + "rtt_ms": 1.295792, "checkpoint": 0, "vertex_from": "12", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.578109241Z" + "timestamp": "2025-11-27T04:01:48.96091-08:00" }, { "operation": "add_edge", - "rtt_ns": 2256603, - "rtt_ms": 2.256603, + "rtt_ns": 1601083, + "rtt_ms": 1.601083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.578165091Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:48.961167-08:00" }, { "operation": "add_edge", - "rtt_ns": 2820181, - "rtt_ms": 2.820181, + "rtt_ns": 1582750, + "rtt_ms": 1.58275, "checkpoint": 0, "vertex_from": "12", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.578682789Z" + "timestamp": "2025-11-27T04:01:48.961183-08:00" }, { "operation": "add_edge", - "rtt_ns": 2820251, - "rtt_ms": 2.820251, + "rtt_ns": 1281291, + "rtt_ms": 1.281291, "checkpoint": 0, "vertex_from": "12", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.578748579Z" + "timestamp": "2025-11-27T04:01:48.961262-08:00" }, { "operation": "add_edge", - "rtt_ns": 2075344, - "rtt_ms": 2.075344, + "rtt_ns": 1763250, + "rtt_ms": 1.76325, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.578814219Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:48.961345-08:00" }, { "operation": "add_edge", - "rtt_ns": 2728612, - "rtt_ms": 2.728612, + "rtt_ns": 970625, + "rtt_ms": 0.970625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.578819439Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:48.961435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089944, - "rtt_ms": 2.089944, + "rtt_ns": 1171375, + "rtt_ms": 1.171375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.578905919Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:48.96151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2713062, - "rtt_ms": 2.713062, + "rtt_ns": 1205542, + "rtt_ms": 1.205542, "checkpoint": 0, "vertex_from": "12", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:50.579464777Z" + "timestamp": "2025-11-27T04:01:48.961793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376695, - "rtt_ms": 1.376695, + "rtt_ns": 1266833, + "rtt_ms": 1.266833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:50.579542796Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:48.962156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622735, - "rtt_ms": 1.622735, + "rtt_ns": 2254125, + "rtt_ms": 2.254125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:50.579620846Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:48.962173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527785, - "rtt_ms": 1.527785, + "rtt_ns": 1061750, + "rtt_ms": 1.06175, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.579638386Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:48.962409-08:00" }, { "operation": "add_edge", - "rtt_ns": 3316510, - "rtt_ms": 3.31651, + "rtt_ns": 1578750, + "rtt_ms": 1.57875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.580111855Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:48.962491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489725, - "rtt_ms": 1.489725, + "rtt_ns": 1307083, + "rtt_ms": 1.307083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.580240804Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:48.962572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652845, - "rtt_ms": 1.652845, + "rtt_ns": 1440750, + "rtt_ms": 1.44075, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:50.580336594Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:48.962625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558685, - "rtt_ms": 1.558685, + "rtt_ns": 1481333, + "rtt_ms": 1.481333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.580374414Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:48.962649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559955, - "rtt_ms": 1.559955, + "rtt_ns": 1661708, + "rtt_ms": 1.661708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:50.580380274Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:48.963173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767064, - "rtt_ms": 1.767064, + "rtt_ns": 1850042, + "rtt_ms": 1.850042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:50.580674503Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:48.963287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216796, - "rtt_ms": 1.216796, + "rtt_ns": 1513792, + "rtt_ms": 1.513792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:50.580683843Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:48.963308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168547, - "rtt_ms": 1.168547, + "rtt_ns": 1167333, + "rtt_ms": 1.167333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.580712553Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:48.963324-08:00" }, { "operation": "add_edge", - "rtt_ns": 878127, - "rtt_ms": 0.878127, + "rtt_ns": 1226958, + "rtt_ms": 1.226958, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.580991322Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:48.963401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380806, - "rtt_ms": 1.380806, + "rtt_ns": 1200625, + "rtt_ms": 1.200625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:50.581020532Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:48.963694-08:00" }, { "operation": "add_edge", - "rtt_ns": 881737, - "rtt_ms": 0.881737, + "rtt_ns": 2007042, + "rtt_ms": 2.007042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.581123601Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:48.964417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549535, - "rtt_ms": 1.549535, + "rtt_ns": 1807250, + "rtt_ms": 1.80725, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.581172031Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:48.964458-08:00" }, { "operation": "add_edge", - "rtt_ns": 941957, - "rtt_ms": 0.941957, + "rtt_ns": 1972666, + "rtt_ms": 1.972666, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.581280611Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:48.964545-08:00" }, { "operation": "add_edge", - "rtt_ns": 917487, - "rtt_ms": 0.917487, + "rtt_ns": 1556625, + "rtt_ms": 1.556625, "checkpoint": 0, "vertex_from": "12", "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.581292941Z" + "timestamp": "2025-11-27T04:01:48.964844-08:00" }, { "operation": "add_edge", - "rtt_ns": 974126, - "rtt_ms": 0.974126, + "rtt_ns": 1228917, + "rtt_ms": 1.228917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.58135538Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:48.964923-08:00" }, { "operation": "add_edge", - "rtt_ns": 748337, - "rtt_ms": 0.748337, + "rtt_ns": 1627750, + "rtt_ms": 1.62775, "checkpoint": 0, "vertex_from": "12", "vertex_to": "54", - "timestamp": "2025-11-27T01:21:50.58143425Z" + "timestamp": "2025-11-27T04:01:48.965029-08:00" }, { "operation": "add_edge", - "rtt_ns": 837147, - "rtt_ms": 0.837147, + "rtt_ns": 1741250, + "rtt_ms": 1.74125, "checkpoint": 0, "vertex_from": "12", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.58151495Z" + "timestamp": "2025-11-27T04:01:48.965066-08:00" }, { "operation": "add_edge", - "rtt_ns": 818377, - "rtt_ms": 0.818377, + "rtt_ns": 2470833, + "rtt_ms": 2.470833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:50.58153274Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:48.965097-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1934292, + "rtt_ms": 1.934292, + "checkpoint": 0, + "vertex_from": "12", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:48.965108-08:00" }, { "operation": "add_edge", - "rtt_ns": 762477, - "rtt_ms": 0.762477, + "rtt_ns": 1276334, + "rtt_ms": 1.276334, "checkpoint": 0, "vertex_from": "12", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.581755389Z" + "timestamp": "2025-11-27T04:01:48.965694-08:00" }, { "operation": "add_edge", - "rtt_ns": 755177, - "rtt_ms": 0.755177, + "rtt_ns": 1242875, + "rtt_ms": 1.242875, "checkpoint": 0, "vertex_from": "12", "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.581776549Z" + "timestamp": "2025-11-27T04:01:48.965703-08:00" }, { "operation": "add_edge", - "rtt_ns": 798118, - "rtt_ms": 0.798118, + "rtt_ns": 1165333, + "rtt_ms": 1.165333, "checkpoint": 0, "vertex_from": "12", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.581923219Z" + "timestamp": "2025-11-27T04:01:48.965712-08:00" }, { "operation": "add_edge", - "rtt_ns": 779477, - "rtt_ms": 0.779477, + "rtt_ns": 2415416, + "rtt_ms": 2.415416, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.581952408Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:48.965724-08:00" }, { "operation": "add_edge", - "rtt_ns": 719707, - "rtt_ms": 0.719707, + "rtt_ns": 1598458, + "rtt_ms": 1.598458, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:50.582001658Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:48.966444-08:00" }, { "operation": "add_edge", - "rtt_ns": 806857, - "rtt_ms": 0.806857, + "rtt_ns": 1769459, + "rtt_ms": 1.769459, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:50.582101748Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:48.966694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209366, - "rtt_ms": 1.209366, + "rtt_ns": 1675834, + "rtt_ms": 1.675834, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.582566166Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:48.966784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539655, - "rtt_ms": 1.539655, + "rtt_ns": 1863167, + "rtt_ms": 1.863167, "checkpoint": 0, "vertex_from": "12", "vertex_to": "816", - "timestamp": "2025-11-27T01:21:50.582979065Z" + "timestamp": "2025-11-27T04:01:48.966961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916883, - "rtt_ms": 1.916883, + "rtt_ns": 1275958, + "rtt_ms": 1.275958, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.583433543Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:48.967003-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011523, - "rtt_ms": 2.011523, + "rtt_ns": 2025500, + "rtt_ms": 2.0255, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.583546843Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:48.967057-08:00" }, { "operation": "add_edge", - "rtt_ns": 2287262, - "rtt_ms": 2.287262, + "rtt_ns": 1491500, + "rtt_ms": 1.4915, "checkpoint": 0, "vertex_from": "12", "vertex_to": "524", - "timestamp": "2025-11-27T01:21:50.584065881Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2245002, - "rtt_ms": 2.245002, - "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.584169751Z" + "timestamp": "2025-11-27T04:01:48.967204-08:00" }, { "operation": "add_edge", - "rtt_ns": 2438992, - "rtt_ms": 2.438992, + "rtt_ns": 1760125, + "rtt_ms": 1.760125, "checkpoint": 0, "vertex_from": "12", "vertex_to": "658", - "timestamp": "2025-11-27T01:21:50.584195961Z" + "timestamp": "2025-11-27T04:01:48.967464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2314803, - "rtt_ms": 2.314803, + "rtt_ns": 2508291, + "rtt_ms": 2.508291, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.584268021Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:48.967576-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284443, - "rtt_ms": 2.284443, + "rtt_ns": 1893375, + "rtt_ms": 1.893375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.584286891Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:48.967588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805174, - "rtt_ms": 1.805174, + "rtt_ns": 1307917, + "rtt_ms": 1.307917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.58437278Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:48.967753-08:00" }, { "operation": "add_edge", - "rtt_ns": 2271492, - "rtt_ms": 2.271492, + "rtt_ns": 1241917, + "rtt_ms": 1.241917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "754", - "timestamp": "2025-11-27T01:21:50.58437462Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:48.968245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000127, - "rtt_ms": 1.000127, + "rtt_ns": 1632084, + "rtt_ms": 1.632084, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.58454771Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:48.968327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205517, - "rtt_ms": 1.205517, + "rtt_ns": 1380083, + "rtt_ms": 1.380083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:50.58464029Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:48.968342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683485, - "rtt_ms": 1.683485, + "rtt_ns": 1594125, + "rtt_ms": 1.594125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.58466352Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:01:48.968379-08:00" }, { "operation": "add_edge", - "rtt_ns": 712928, - "rtt_ms": 0.712928, + "rtt_ns": 1409958, + "rtt_ms": 1.409958, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:50.584780169Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:48.968467-08:00" }, { "operation": "add_edge", - "rtt_ns": 794448, - "rtt_ms": 0.794448, + "rtt_ns": 1356959, + "rtt_ms": 1.356959, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.584964859Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:48.968562-08:00" }, { "operation": "add_edge", - "rtt_ns": 712527, - "rtt_ms": 0.712527, + "rtt_ns": 1356875, + "rtt_ms": 1.356875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.585000378Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:48.969112-08:00" }, { "operation": "add_edge", - "rtt_ns": 792977, - "rtt_ms": 0.792977, + "rtt_ns": 1662542, + "rtt_ms": 1.662542, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.585062858Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:48.969129-08:00" }, { "operation": "add_edge", - "rtt_ns": 969057, - "rtt_ms": 0.969057, + "rtt_ns": 1980375, + "rtt_ms": 1.980375, "checkpoint": 0, "vertex_from": "12", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:50.585167668Z" + "timestamp": "2025-11-27T04:01:48.969569-08:00" }, { "operation": "add_edge", - "rtt_ns": 828308, - "rtt_ms": 0.828308, + "rtt_ns": 2037750, + "rtt_ms": 2.03775, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.585201938Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:48.969615-08:00" }, { "operation": "add_edge", - "rtt_ns": 907038, - "rtt_ms": 0.907038, + "rtt_ns": 1487250, + "rtt_ms": 1.48725, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.585282478Z" + "vertex_to": "490", + "timestamp": "2025-11-27T04:01:48.969956-08:00" }, { "operation": "add_edge", - "rtt_ns": 783017, - "rtt_ms": 0.783017, + "rtt_ns": 2144208, + "rtt_ms": 2.144208, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.585332557Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:48.970391-08:00" }, { "operation": "add_edge", - "rtt_ns": 709717, - "rtt_ms": 0.709717, + "rtt_ns": 1845250, + "rtt_ms": 1.84525, "checkpoint": 0, "vertex_from": "12", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:50.585373997Z" + "timestamp": "2025-11-27T04:01:48.970408-08:00" }, { "operation": "add_edge", - "rtt_ns": 773447, - "rtt_ms": 0.773447, + "rtt_ns": 2098792, + "rtt_ms": 2.098792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "490", - "timestamp": "2025-11-27T01:21:50.585415117Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:48.970428-08:00" }, { "operation": "add_edge", - "rtt_ns": 653448, - "rtt_ms": 0.653448, + "rtt_ns": 2184209, + "rtt_ms": 2.184209, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.585434897Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:48.970527-08:00" }, { "operation": "add_edge", - "rtt_ns": 805587, - "rtt_ms": 0.805587, + "rtt_ns": 1548584, + "rtt_ms": 1.548584, "checkpoint": 0, "vertex_from": "12", "vertex_to": "13", - "timestamp": "2025-11-27T01:21:50.585772526Z" + "timestamp": "2025-11-27T04:01:48.970679-08:00" }, { "operation": "add_edge", - "rtt_ns": 798318, - "rtt_ms": 0.798318, + "rtt_ns": 1278792, + "rtt_ms": 1.278792, "checkpoint": 0, "vertex_from": "12", "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.585800676Z" + "timestamp": "2025-11-27T04:01:48.970851-08:00" }, { "operation": "add_edge", - "rtt_ns": 811907, - "rtt_ms": 0.811907, + "rtt_ns": 2542042, + "rtt_ms": 2.542042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:50.585982415Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:48.970922-08:00" }, { "operation": "add_edge", - "rtt_ns": 949787, - "rtt_ms": 0.949787, + "rtt_ns": 1330166, + "rtt_ms": 1.330166, "checkpoint": 0, "vertex_from": "12", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:50.586013895Z" + "timestamp": "2025-11-27T04:01:48.970946-08:00" }, { "operation": "add_edge", - "rtt_ns": 935617, - "rtt_ms": 0.935617, + "rtt_ns": 2036542, + "rtt_ms": 2.036542, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.586138935Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:48.97116-08:00" }, { "operation": "add_edge", - "rtt_ns": 830338, - "rtt_ms": 0.830338, + "rtt_ns": 1353041, + "rtt_ms": 1.353041, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.586164195Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:48.971745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330025, - "rtt_ms": 1.330025, + "rtt_ns": 1804792, + "rtt_ms": 1.804792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:50.586613833Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:48.971762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330876, - "rtt_ms": 1.330876, + "rtt_ns": 1555334, + "rtt_ms": 1.555334, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.586766873Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:48.972083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147586, - "rtt_ms": 1.147586, + "rtt_ns": 1448125, + "rtt_ms": 1.448125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:50.586950482Z" + "vertex_to": "14", + "timestamp": "2025-11-27T04:01:48.97213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1985584, - "rtt_ms": 1.985584, + "rtt_ns": 1794292, + "rtt_ms": 1.794292, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "14", - "timestamp": "2025-11-27T01:21:50.587402471Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:48.972203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646905, - "rtt_ms": 1.646905, + "rtt_ns": 1386292, + "rtt_ms": 1.386292, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:50.587421221Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:48.972333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053164, - "rtt_ms": 2.053164, + "rtt_ns": 1485708, + "rtt_ms": 1.485708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:50.587428261Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:48.972337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512635, - "rtt_ms": 1.512635, + "rtt_ns": 1426708, + "rtt_ms": 1.426708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.58752764Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:48.97235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579145, - "rtt_ms": 1.579145, + "rtt_ns": 1936541, + "rtt_ms": 1.936541, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:50.5875631Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:48.972365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813854, - "rtt_ms": 1.813854, + "rtt_ns": 1233417, + "rtt_ms": 1.233417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.587953779Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:48.972398-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 954507, - "rtt_ms": 0.954507, + "operation": "add_edge", + "rtt_ns": 1492583, + "rtt_ms": 1.492583, "checkpoint": 0, - "vertex_from": "811", - "timestamp": "2025-11-27T01:21:50.588521037Z" + "vertex_from": "12", + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:48.97324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001154, - "rtt_ms": 2.001154, + "rtt_ns": 1219459, + "rtt_ms": 1.219459, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.588616097Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:48.973553-08:00" }, { "operation": "add_edge", - "rtt_ns": 2509352, - "rtt_ms": 2.509352, + "rtt_ns": 1499917, + "rtt_ms": 1.499917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "837", - "timestamp": "2025-11-27T01:21:50.588676237Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:48.973632-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081204, - "rtt_ms": 2.081204, + "rtt_ns": 1393667, + "rtt_ms": 1.393667, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "936", - "timestamp": "2025-11-27T01:21:50.589033406Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:48.973732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2437812, - "rtt_ms": 2.437812, + "rtt_ns": 1618625, + "rtt_ms": 1.618625, "checkpoint": 0, "vertex_from": "12", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.589205605Z" + "timestamp": "2025-11-27T04:01:48.973823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2421923, - "rtt_ms": 2.421923, + "rtt_ns": 2078792, + "rtt_ms": 2.078792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:50.589951933Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:48.973842-08:00" }, { "operation": "add_edge", - "rtt_ns": 2609561, - "rtt_ms": 2.609561, + "rtt_ns": 1493500, + "rtt_ms": 1.4935, "checkpoint": 0, "vertex_from": "12", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.590032192Z" + "timestamp": "2025-11-27T04:01:48.973844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2667341, - "rtt_ms": 2.667341, + "rtt_ns": 1779000, + "rtt_ms": 1.779, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.590071992Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:01:48.973863-08:00" }, { "operation": "add_edge", - "rtt_ns": 2672451, - "rtt_ms": 2.672451, + "rtt_ns": 1498500, + "rtt_ms": 1.4985, "checkpoint": 0, "vertex_from": "12", "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.590102172Z" + "timestamp": "2025-11-27T04:01:48.973866-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186173, - "rtt_ms": 2.186173, + "rtt_ns": 1571333, + "rtt_ms": 1.571333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:50.590141282Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:48.97397-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1695995, - "rtt_ms": 1.695995, + "operation": "add_vertex", + "rtt_ns": 2129542, + "rtt_ms": 2.129542, "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "811", - "timestamp": "2025-11-27T01:21:50.590217712Z" + "vertex_from": "811", + "timestamp": "2025-11-27T04:01:48.975373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696645, - "rtt_ms": 1.696645, + "rtt_ns": 1583125, + "rtt_ms": 1.583125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:50.590313872Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:48.975426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666055, - "rtt_ms": 1.666055, + "rtt_ns": 1774792, + "rtt_ms": 1.774792, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "488", - "timestamp": "2025-11-27T01:21:50.590344092Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:48.975641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162736, - "rtt_ms": 1.162736, + "rtt_ns": 2182208, + "rtt_ms": 2.182208, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.590369761Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:48.975736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839224, - "rtt_ms": 1.839224, + "rtt_ns": 1951541, + "rtt_ms": 1.951541, "checkpoint": 0, "vertex_from": "12", "vertex_to": "779", - "timestamp": "2025-11-27T01:21:50.59087366Z" + "timestamp": "2025-11-27T04:01:48.975775-08:00" }, { "operation": "add_edge", - "rtt_ns": 833108, - "rtt_ms": 0.833108, + "rtt_ns": 2148333, + "rtt_ms": 2.148333, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.59090643Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:48.975781-08:00" }, { "operation": "add_edge", - "rtt_ns": 895477, - "rtt_ms": 0.895477, + "rtt_ns": 2064958, + "rtt_ms": 2.064958, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.590999349Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:48.975798-08:00" }, { "operation": "add_edge", - "rtt_ns": 996107, - "rtt_ms": 0.996107, + "rtt_ns": 1938916, + "rtt_ms": 1.938916, "checkpoint": 0, "vertex_from": "12", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.591030929Z" + "timestamp": "2025-11-27T04:01:48.975803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090636, - "rtt_ms": 1.090636, + "rtt_ns": 1967292, + "rtt_ms": 1.967292, "checkpoint": 0, "vertex_from": "12", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.591043659Z" + "timestamp": "2025-11-27T04:01:48.975812-08:00" }, { "operation": "add_edge", - "rtt_ns": 930217, - "rtt_ms": 0.930217, + "rtt_ns": 1866375, + "rtt_ms": 1.866375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.591073099Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:48.975837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405355, - "rtt_ms": 1.405355, + "rtt_ns": 1401833, + "rtt_ms": 1.401833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:50.591624157Z" + "vertex_to": "811", + "timestamp": "2025-11-27T04:01:48.976775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281516, - "rtt_ms": 1.281516, + "rtt_ns": 1432833, + "rtt_ms": 1.432833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:50.591652237Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:48.976859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368985, - "rtt_ms": 1.368985, + "rtt_ns": 1245666, + "rtt_ms": 1.245666, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "123", - "timestamp": "2025-11-27T01:21:50.591684917Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:48.977021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670794, - "rtt_ms": 1.670794, + "rtt_ns": 1301458, + "rtt_ms": 1.301458, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:50.592015946Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:48.9771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385835, - "rtt_ms": 1.385835, + "rtt_ns": 1279166, + "rtt_ms": 1.279166, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.592292965Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:48.977117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444705, - "rtt_ms": 1.444705, + "rtt_ns": 1376417, + "rtt_ms": 1.376417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.592319875Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:48.977158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409886, - "rtt_ms": 1.409886, + "rtt_ns": 1471334, + "rtt_ms": 1.471334, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "574", - "timestamp": "2025-11-27T01:21:50.592454945Z" + "vertex_to": "123", + "timestamp": "2025-11-27T04:01:48.977208-08:00" }, { "operation": "add_edge", - "rtt_ns": 853598, - "rtt_ms": 0.853598, + "rtt_ns": 1491208, + "rtt_ms": 1.491208, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:50.592479355Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:48.977295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529605, - "rtt_ms": 1.529605, + "rtt_ns": 1701917, + "rtt_ms": 1.701917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:50.592530854Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:48.977344-08:00" }, { "operation": "add_edge", - "rtt_ns": 887087, - "rtt_ms": 0.887087, + "rtt_ns": 1646625, + "rtt_ms": 1.646625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:50.592540574Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:48.97746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555565, - "rtt_ms": 1.555565, + "rtt_ns": 964083, + "rtt_ms": 0.964083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:50.592589084Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:48.977986-08:00" }, { "operation": "add_edge", - "rtt_ns": 980657, - "rtt_ms": 0.980657, + "rtt_ns": 1233458, + "rtt_ms": 1.233458, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:50.592666614Z" + "vertex_to": "574", + "timestamp": "2025-11-27T04:01:48.978011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613945, - "rtt_ms": 1.613945, + "rtt_ns": 1156584, + "rtt_ms": 1.156584, "checkpoint": 0, "vertex_from": "12", "vertex_to": "657", - "timestamp": "2025-11-27T01:21:50.592688574Z" + "timestamp": "2025-11-27T04:01:48.978017-08:00" }, { "operation": "add_edge", - "rtt_ns": 714788, - "rtt_ms": 0.714788, + "rtt_ns": 1398125, + "rtt_ms": 1.398125, "checkpoint": 0, "vertex_from": "12", "vertex_to": "834", - "timestamp": "2025-11-27T01:21:50.592731674Z" + "timestamp": "2025-11-27T04:01:48.978557-08:00" }, { "operation": "add_edge", - "rtt_ns": 923977, - "rtt_ms": 0.923977, + "rtt_ns": 1270583, + "rtt_ms": 1.270583, "checkpoint": 0, "vertex_from": "12", "vertex_to": "275", - "timestamp": "2025-11-27T01:21:50.593379852Z" + "timestamp": "2025-11-27T04:01:48.978615-08:00" }, { "operation": "add_edge", - "rtt_ns": 939006, - "rtt_ms": 0.939006, + "rtt_ns": 1625208, + "rtt_ms": 1.625208, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.593421021Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:48.978921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146376, - "rtt_ms": 1.146376, + "rtt_ns": 2361542, + "rtt_ms": 2.361542, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.593440221Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:48.979462-08:00" }, { "operation": "add_edge", - "rtt_ns": 902947, - "rtt_ms": 0.902947, + "rtt_ns": 1582125, + "rtt_ms": 1.582125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:50.593444791Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:48.97957-08:00" }, { "operation": "add_edge", - "rtt_ns": 914317, - "rtt_ms": 0.914317, + "rtt_ns": 1136208, + "rtt_ms": 1.136208, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.593446151Z" + "vertex_to": "111", + "timestamp": "2025-11-27T04:01:48.979695-08:00" }, { "operation": "add_edge", - "rtt_ns": 863057, - "rtt_ms": 0.863057, + "rtt_ns": 2362917, + "rtt_ms": 2.362917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:50.593454601Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:48.979825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226006, - "rtt_ms": 1.226006, + "rtt_ns": 1911833, + "rtt_ms": 1.911833, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.593546751Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:48.979924-08:00" }, { "operation": "add_edge", - "rtt_ns": 963197, - "rtt_ms": 0.963197, + "rtt_ns": 2772375, + "rtt_ms": 2.772375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "111", - "timestamp": "2025-11-27T01:21:50.593631111Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:48.979982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455905, - "rtt_ms": 1.455905, + "rtt_ns": 2982625, + "rtt_ms": 2.982625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.594145939Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:48.9801-08:00" }, { "operation": "add_edge", - "rtt_ns": 729928, - "rtt_ms": 0.729928, + "rtt_ns": 2210042, + "rtt_ms": 2.210042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.594175769Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:48.980229-08:00" }, { "operation": "add_edge", - "rtt_ns": 825447, - "rtt_ms": 0.825447, + "rtt_ns": 1373042, + "rtt_ms": 1.373042, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "369", - "timestamp": "2025-11-27T01:21:50.594206649Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:48.980296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555105, - "rtt_ms": 1.555105, + "rtt_ns": 1245875, + "rtt_ms": 1.245875, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.594288609Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:48.980817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568765, - "rtt_ms": 1.568765, + "rtt_ns": 1464083, + "rtt_ms": 1.464083, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.595015926Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:01:48.980927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593445, - "rtt_ms": 1.593445, + "rtt_ns": 3025292, + "rtt_ms": 3.025292, + "checkpoint": 0, + "vertex_from": "12", + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:48.981643-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1965875, + "rtt_ms": 1.965875, "checkpoint": 0, "vertex_from": "12", "vertex_to": "645", - "timestamp": "2025-11-27T01:21:50.595035446Z" + "timestamp": "2025-11-27T04:01:48.981663-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003973, - "rtt_ms": 2.003973, + "rtt_ns": 1822250, + "rtt_ms": 1.82225, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:50.595636854Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:48.981805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2809661, - "rtt_ms": 2.809661, + "rtt_ns": 1722667, + "rtt_ms": 1.722667, "checkpoint": 0, "vertex_from": "12", "vertex_to": "150", - "timestamp": "2025-11-27T01:21:50.596359602Z" + "timestamp": "2025-11-27T04:01:48.981824-08:00" }, { "operation": "add_edge", - "rtt_ns": 3039380, - "rtt_ms": 3.03938, + "rtt_ns": 2522291, + "rtt_ms": 2.522291, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:50.596461731Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:48.982447-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305812, - "rtt_ms": 2.305812, + "rtt_ns": 2750584, + "rtt_ms": 2.750584, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:50.596482991Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:48.982577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349272, - "rtt_ms": 2.349272, + "rtt_ns": 2580459, + "rtt_ms": 2.580459, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "175", - "timestamp": "2025-11-27T01:21:50.596496541Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:48.98281-08:00" }, { "operation": "add_edge", - "rtt_ns": 3042760, - "rtt_ms": 3.04276, + "rtt_ns": 2535417, + "rtt_ms": 2.535417, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:50.596498961Z" + "vertex_to": "175", + "timestamp": "2025-11-27T04:01:48.982834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2417402, - "rtt_ms": 2.417402, + "rtt_ns": 2022917, + "rtt_ms": 2.022917, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.596626691Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:48.982843-08:00" }, { "operation": "add_edge", - "rtt_ns": 2378122, - "rtt_ms": 2.378122, + "rtt_ns": 1089291, + "rtt_ms": 1.089291, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:50.596668101Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:48.982914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684155, - "rtt_ms": 1.684155, + "rtt_ns": 2052542, + "rtt_ms": 2.052542, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:50.596701861Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:48.98298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693925, - "rtt_ms": 1.693925, + "rtt_ns": 1590125, + "rtt_ms": 1.590125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:50.596731451Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:48.983254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162176, - "rtt_ms": 1.162176, + "rtt_ns": 1772500, + "rtt_ms": 1.7725, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.59680016Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:48.983416-08:00" }, { "operation": "add_edge", - "rtt_ns": 658738, - "rtt_ms": 0.658738, + "rtt_ns": 1422667, + "rtt_ms": 1.422667, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.5970198Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:48.984001-08:00" }, { "operation": "add_edge", - "rtt_ns": 664788, - "rtt_ms": 0.664788, + "rtt_ns": 1303500, + "rtt_ms": 1.3035, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:50.597149709Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:48.984149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079907, - "rtt_ms": 1.079907, + "rtt_ns": 749625, + "rtt_ms": 0.749625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:50.597580768Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:48.984167-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1112867, - "rtt_ms": 1.112867, + "operation": "add_edge", + "rtt_ns": 1727000, + "rtt_ms": 1.727, "checkpoint": 0, - "vertex_from": "566", - "timestamp": "2025-11-27T01:21:50.597612858Z" + "vertex_from": "12", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:48.984175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216927, - "rtt_ms": 1.216927, + "rtt_ns": 1323500, + "rtt_ms": 1.3235, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.597680988Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:48.984239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025196, - "rtt_ms": 1.025196, + "rtt_ns": 1260584, + "rtt_ms": 1.260584, "checkpoint": 0, "vertex_from": "12", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:50.597694367Z" + "timestamp": "2025-11-27T04:01:48.984242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101686, - "rtt_ms": 1.101686, + "rtt_ns": 1451292, + "rtt_ms": 1.451292, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:50.597729637Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:48.984263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138756, - "rtt_ms": 1.138756, + "rtt_ns": 1111125, + "rtt_ms": 1.111125, "checkpoint": 0, "vertex_from": "12", "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.597841577Z" + "timestamp": "2025-11-27T04:01:48.984366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058617, - "rtt_ms": 1.058617, + "rtt_ns": 2610708, + "rtt_ms": 2.610708, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:50.597859957Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:48.984416-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1382445, - "rtt_ms": 1.382445, + "operation": "add_vertex", + "rtt_ns": 1703958, + "rtt_ms": 1.703958, "checkpoint": 0, - "vertex_from": "12", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.598115626Z" + "vertex_from": "566", + "timestamp": "2025-11-27T04:01:48.984539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535775, - "rtt_ms": 1.535775, + "rtt_ns": 1111916, + "rtt_ms": 1.111916, "checkpoint": 0, "vertex_from": "12", "vertex_to": "277", - "timestamp": "2025-11-27T01:21:50.598557235Z" + "timestamp": "2025-11-27T04:01:48.985261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250106, - "rtt_ms": 1.250106, + "rtt_ns": 1082000, + "rtt_ms": 1.082, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "566", - "timestamp": "2025-11-27T01:21:50.598863434Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:48.985325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339976, - "rtt_ms": 1.339976, + "rtt_ns": 1395375, + "rtt_ms": 1.395375, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.599035673Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:48.985397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474065, - "rtt_ms": 1.474065, + "rtt_ns": 1313625, + "rtt_ms": 1.313625, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.599056593Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:48.985481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970934, - "rtt_ms": 1.970934, + "rtt_ns": 1284500, + "rtt_ms": 1.2845, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:50.599122263Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:48.985548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391646, - "rtt_ms": 1.391646, + "rtt_ns": 1371125, + "rtt_ms": 1.371125, "checkpoint": 0, "vertex_from": "12", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:50.599122343Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:48.985549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440256, - "rtt_ms": 1.440256, + "rtt_ns": 1307667, + "rtt_ms": 1.307667, "checkpoint": 0, "vertex_from": "12", "vertex_to": "833", - "timestamp": "2025-11-27T01:21:50.599122343Z" + "timestamp": "2025-11-27T04:01:48.985549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2599012, - "rtt_ms": 2.599012, + "rtt_ns": 1970209, + "rtt_ms": 1.970209, "checkpoint": 0, - "vertex_from": "13", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:50.600460039Z" + "vertex_from": "12", + "vertex_to": "566", + "timestamp": "2025-11-27T04:01:48.98651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2809321, - "rtt_ms": 2.809321, + "rtt_ns": 1031625, + "rtt_ms": 1.031625, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.600652688Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:48.986515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2592662, - "rtt_ms": 2.592662, + "rtt_ns": 1490291, + "rtt_ms": 1.490291, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:50.600709908Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:48.987041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215412, - "rtt_ms": 2.215412, + "rtt_ns": 1804750, + "rtt_ms": 1.80475, "checkpoint": 0, "vertex_from": "13", "vertex_to": "29", - "timestamp": "2025-11-27T01:21:50.600774237Z" + "timestamp": "2025-11-27T04:01:48.987131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984673, - "rtt_ms": 1.984673, + "rtt_ns": 2364083, + "rtt_ms": 2.364083, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.600849097Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:48.987626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913034, - "rtt_ms": 1.913034, + "rtt_ns": 2296541, + "rtt_ms": 2.296541, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.600971487Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:48.987696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996654, - "rtt_ms": 1.996654, + "rtt_ns": 2209041, + "rtt_ms": 2.209041, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.601035237Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:48.987758-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062223, - "rtt_ms": 2.062223, + "rtt_ns": 3417208, + "rtt_ms": 3.417208, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.601186056Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:48.987785-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148863, - "rtt_ms": 2.148863, + "rtt_ns": 1279459, + "rtt_ms": 1.279459, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:50.601272676Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:48.98779-08:00" }, { "operation": "add_edge", - "rtt_ns": 865367, - "rtt_ms": 0.865367, + "rtt_ns": 2468917, + "rtt_ms": 2.468917, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.601326776Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:48.98802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245082, - "rtt_ms": 2.245082, + "rtt_ns": 3625291, + "rtt_ms": 3.625291, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.601370245Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:48.988042-08:00" }, { "operation": "add_edge", - "rtt_ns": 948677, - "rtt_ms": 0.948677, + "rtt_ns": 1554917, + "rtt_ms": 1.554917, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.601603915Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:48.988073-08:00" }, { "operation": "add_edge", - "rtt_ns": 851158, - "rtt_ms": 0.851158, + "rtt_ns": 1555250, + "rtt_ms": 1.55525, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "632", - "timestamp": "2025-11-27T01:21:50.601626285Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:48.988687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045016, - "rtt_ms": 1.045016, + "rtt_ns": 1729000, + "rtt_ms": 1.729, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.601756364Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:48.988772-08:00" }, { "operation": "add_edge", - "rtt_ns": 917687, - "rtt_ms": 0.917687, + "rtt_ns": 1286875, + "rtt_ms": 1.286875, "checkpoint": 0, "vertex_from": "13", "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.601768244Z" + "timestamp": "2025-11-27T04:01:48.988984-08:00" }, { "operation": "add_edge", - "rtt_ns": 767487, - "rtt_ms": 0.767487, + "rtt_ns": 1556125, + "rtt_ms": 1.556125, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.601804084Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:01:48.989183-08:00" }, { "operation": "add_edge", - "rtt_ns": 860337, - "rtt_ms": 0.860337, + "rtt_ns": 1673709, + "rtt_ms": 1.673709, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:50.601833494Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:48.98946-08:00" }, { "operation": "add_edge", - "rtt_ns": 831567, - "rtt_ms": 0.831567, + "rtt_ns": 1472541, + "rtt_ms": 1.472541, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.602018303Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:48.989493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229486, - "rtt_ms": 1.229486, + "rtt_ns": 1519333, + "rtt_ms": 1.519333, "checkpoint": 0, "vertex_from": "13", "vertex_to": "840", - "timestamp": "2025-11-27T01:21:50.602557382Z" + "timestamp": "2025-11-27T04:01:48.989562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299505, - "rtt_ms": 1.299505, + "rtt_ns": 1992542, + "rtt_ms": 1.992542, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.602574921Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:48.989751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054486, - "rtt_ms": 1.054486, + "rtt_ns": 1981125, + "rtt_ms": 1.981125, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:50.602681821Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:48.989772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341766, - "rtt_ms": 1.341766, + "rtt_ns": 1724833, + "rtt_ms": 1.724833, "checkpoint": 0, "vertex_from": "13", "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.602712981Z" + "timestamp": "2025-11-27T04:01:48.9898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113506, - "rtt_ms": 1.113506, + "rtt_ns": 1583292, + "rtt_ms": 1.583292, "checkpoint": 0, "vertex_from": "13", "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.602723041Z" + "timestamp": "2025-11-27T04:01:48.990271-08:00" }, { "operation": "add_edge", - "rtt_ns": 966387, - "rtt_ms": 0.966387, + "rtt_ns": 1510041, + "rtt_ms": 1.510041, + "checkpoint": 0, + "vertex_from": "13", + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:48.990284-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1132667, + "rtt_ms": 1.132667, "checkpoint": 0, "vertex_from": "13", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.602735571Z" + "timestamp": "2025-11-27T04:01:48.990316-08:00" }, { "operation": "add_edge", - "rtt_ns": 996317, - "rtt_ms": 0.996317, + "rtt_ns": 1469833, + "rtt_ms": 1.469833, "checkpoint": 0, "vertex_from": "13", "vertex_to": "16", - "timestamp": "2025-11-27T01:21:50.602755041Z" + "timestamp": "2025-11-27T04:01:48.990455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033517, - "rtt_ms": 1.033517, + "rtt_ns": 1142209, + "rtt_ms": 1.142209, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.602838431Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:48.991599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534265, - "rtt_ms": 1.534265, + "rtt_ns": 2100833, + "rtt_ms": 2.100833, "checkpoint": 0, "vertex_from": "13", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.603554468Z" + "timestamp": "2025-11-27T04:01:48.991664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732004, - "rtt_ms": 1.732004, + "rtt_ns": 1929208, + "rtt_ms": 1.929208, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:50.603566388Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:48.991681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118603, - "rtt_ms": 2.118603, + "rtt_ns": 1417833, + "rtt_ms": 1.417833, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:50.604802154Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:48.991735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778161, - "rtt_ms": 2.778161, + "rtt_ns": 1940833, + "rtt_ms": 1.940833, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.605357442Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:48.991744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2952731, - "rtt_ms": 2.952731, + "rtt_ns": 2253125, + "rtt_ms": 2.253125, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:50.605514172Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:48.991748-08:00" }, { "operation": "add_edge", - "rtt_ns": 2867621, - "rtt_ms": 2.867621, + "rtt_ns": 2130500, + "rtt_ms": 2.1305, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.605604122Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:48.991903-08:00" }, { "operation": "add_edge", - "rtt_ns": 2804331, - "rtt_ms": 2.804331, + "rtt_ns": 1634542, + "rtt_ms": 1.634542, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.605643592Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:48.99192-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130203, - "rtt_ms": 2.130203, + "rtt_ns": 1651166, + "rtt_ms": 1.651166, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.605686981Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:48.991925-08:00" }, { "operation": "add_edge", - "rtt_ns": 3028670, - "rtt_ms": 3.02867, + "rtt_ns": 2484833, + "rtt_ms": 2.484833, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.605754431Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:48.991945-08:00" }, { "operation": "add_edge", - "rtt_ns": 3079700, - "rtt_ms": 3.0797, + "rtt_ns": 1164208, + "rtt_ms": 1.164208, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.605793541Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:48.992913-08:00" }, { "operation": "add_edge", - "rtt_ns": 2723701, - "rtt_ms": 2.723701, + "rtt_ns": 1009750, + "rtt_ms": 1.00975, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.606291209Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:48.992931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854314, - "rtt_ms": 1.854314, + "rtt_ns": 1493667, + "rtt_ms": 1.493667, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "117", - "timestamp": "2025-11-27T01:21:50.606658478Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:48.993158-08:00" }, { "operation": "add_edge", - "rtt_ns": 3962917, - "rtt_ms": 3.962917, + "rtt_ns": 1466083, + "rtt_ms": 1.466083, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:50.606719168Z" + "vertex_to": "117", + "timestamp": "2025-11-27T04:01:48.993202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341676, - "rtt_ms": 1.341676, + "rtt_ns": 1655875, + "rtt_ms": 1.655875, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:50.606858078Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:48.993256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501636, - "rtt_ms": 1.501636, + "rtt_ns": 1351625, + "rtt_ms": 1.351625, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.606859868Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:48.993298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028623, - "rtt_ms": 2.028623, + "rtt_ns": 1567917, + "rtt_ms": 1.567917, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:50.607634475Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:48.993312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935714, - "rtt_ms": 1.935714, + "rtt_ns": 1395292, + "rtt_ms": 1.395292, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:50.607691435Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:48.993321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893614, - "rtt_ms": 1.893614, + "rtt_ns": 1674500, + "rtt_ms": 1.6745, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "627", - "timestamp": "2025-11-27T01:21:50.607692275Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:48.993357-08:00" }, { "operation": "add_edge", - "rtt_ns": 2015264, - "rtt_ms": 2.015264, + "rtt_ns": 1521625, + "rtt_ms": 1.521625, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.607703675Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:48.993428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2060673, - "rtt_ms": 2.060673, + "rtt_ns": 1822208, + "rtt_ms": 1.822208, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.607705415Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:48.994982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476006, - "rtt_ms": 1.476006, + "rtt_ns": 2100625, + "rtt_ms": 2.100625, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.607768865Z" + "vertex_to": "627", + "timestamp": "2025-11-27T04:01:48.995014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136537, - "rtt_ms": 1.136537, + "rtt_ns": 2107042, + "rtt_ms": 2.107042, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:50.607796345Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:48.995038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252586, - "rtt_ms": 1.252586, + "rtt_ns": 1799541, + "rtt_ms": 1.799541, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:50.607972964Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:48.995057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443895, - "rtt_ms": 1.443895, + "rtt_ns": 1863584, + "rtt_ms": 1.863584, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:50.608303883Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:48.995066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507075, - "rtt_ms": 1.507075, + "rtt_ns": 1822250, + "rtt_ms": 1.82225, "checkpoint": 0, "vertex_from": "13", "vertex_to": "291", - "timestamp": "2025-11-27T01:21:50.608367933Z" + "timestamp": "2025-11-27T04:01:48.995121-08:00" }, { "operation": "add_edge", - "rtt_ns": 828797, - "rtt_ms": 0.828797, + "rtt_ns": 2109584, + "rtt_ms": 2.109584, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.608465352Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:48.995538-08:00" }, { "operation": "add_edge", - "rtt_ns": 813387, - "rtt_ms": 0.813387, + "rtt_ns": 2235084, + "rtt_ms": 2.235084, "checkpoint": 0, "vertex_from": "13", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:50.608506192Z" + "timestamp": "2025-11-27T04:01:48.995557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218376, - "rtt_ms": 1.218376, + "rtt_ns": 2337625, + "rtt_ms": 2.337625, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.608923991Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:48.995651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361535, - "rtt_ms": 1.361535, + "rtt_ns": 2424000, + "rtt_ms": 2.424, "checkpoint": 0, "vertex_from": "13", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.60905465Z" + "timestamp": "2025-11-27T04:01:48.995781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489535, - "rtt_ms": 1.489535, + "rtt_ns": 1215708, + "rtt_ms": 1.215708, "checkpoint": 0, "vertex_from": "13", "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.60919619Z" + "timestamp": "2025-11-27T04:01:48.9962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413435, - "rtt_ms": 1.413435, + "rtt_ns": 1231709, + "rtt_ms": 1.231709, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:50.60921065Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:48.996289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478205, - "rtt_ms": 1.478205, + "rtt_ns": 1440167, + "rtt_ms": 1.440167, "checkpoint": 0, "vertex_from": "13", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.60924816Z" + "timestamp": "2025-11-27T04:01:48.996456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288826, - "rtt_ms": 1.288826, + "rtt_ns": 1893667, + "rtt_ms": 1.893667, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:50.60926285Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:48.996933-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006863, - "rtt_ms": 2.006863, + "rtt_ns": 1420209, + "rtt_ms": 1.420209, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.610312386Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:48.996978-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137953, - "rtt_ms": 2.137953, + "rtt_ns": 1439708, + "rtt_ms": 1.439708, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.610507186Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:48.99698-08:00" }, { "operation": "add_edge", - "rtt_ns": 2248833, - "rtt_ms": 2.248833, + "rtt_ns": 1921166, + "rtt_ms": 1.921166, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.610715975Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:48.996993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546905, - "rtt_ms": 1.546905, + "rtt_ns": 1347417, + "rtt_ms": 1.347417, "checkpoint": 0, - "vertex_from": "14", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.610811275Z" + "vertex_from": "13", + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:48.99713-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331072, - "rtt_ms": 2.331072, + "rtt_ns": 1490667, + "rtt_ms": 1.490667, "checkpoint": 0, "vertex_from": "13", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.611256203Z" + "timestamp": "2025-11-27T04:01:48.997142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2862891, - "rtt_ms": 2.862891, + "rtt_ns": 2067084, + "rtt_ms": 2.067084, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.611370253Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:48.99719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2220393, - "rtt_ms": 2.220393, + "rtt_ns": 1807750, + "rtt_ms": 1.80775, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:50.611418273Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:48.998098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392322, - "rtt_ms": 2.392322, + "rtt_ns": 1656541, + "rtt_ms": 1.656541, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:50.611448682Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:48.998113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303202, - "rtt_ms": 2.303202, + "rtt_ns": 1193459, + "rtt_ms": 1.193459, "checkpoint": 0, - "vertex_from": "13", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.611552532Z" + "vertex_from": "14", + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:48.998128-08:00" }, { "operation": "add_edge", - "rtt_ns": 2380692, - "rtt_ms": 2.380692, + "rtt_ns": 2004708, + "rtt_ms": 2.004708, "checkpoint": 0, "vertex_from": "13", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.611592622Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:48.998206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600815, - "rtt_ms": 1.600815, + "rtt_ns": 1525250, + "rtt_ms": 1.52525, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.611914941Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:48.998507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914493, - "rtt_ms": 1.914493, + "rtt_ns": 1543542, + "rtt_ms": 1.543542, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.612423669Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:48.998522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916294, - "rtt_ms": 1.916294, + "rtt_ns": 1675458, + "rtt_ms": 1.675458, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.612633199Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:48.998818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331505, - "rtt_ms": 1.331505, + "rtt_ns": 1833791, + "rtt_ms": 1.833791, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.612703288Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:48.998828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451985, - "rtt_ms": 1.451985, + "rtt_ns": 1652750, + "rtt_ms": 1.65275, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:50.612709728Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:48.998843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959713, - "rtt_ms": 1.959713, + "rtt_ns": 1921000, + "rtt_ms": 1.921, "checkpoint": 0, "vertex_from": "14", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.612773898Z" + "timestamp": "2025-11-27T04:01:48.999053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408346, - "rtt_ms": 1.408346, + "rtt_ns": 1150917, + "rtt_ms": 1.150917, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.612857978Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:48.999249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452555, - "rtt_ms": 1.452555, + "rtt_ns": 1466041, + "rtt_ms": 1.466041, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.612872058Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:48.99958-08:00" }, { "operation": "add_edge", - "rtt_ns": 972937, - "rtt_ms": 0.972937, + "rtt_ns": 1516250, + "rtt_ms": 1.51625, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:50.612888748Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:48.999645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297976, - "rtt_ms": 1.297976, + "rtt_ns": 1541958, + "rtt_ms": 1.541958, "checkpoint": 0, "vertex_from": "14", "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.612891248Z" + "timestamp": "2025-11-27T04:01:48.999749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480805, - "rtt_ms": 1.480805, + "rtt_ns": 1347916, + "rtt_ms": 1.347916, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.613034687Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:48.999871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158507, - "rtt_ms": 1.158507, + "rtt_ns": 1366250, + "rtt_ms": 1.36625, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:50.613583856Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:48.999874-08:00" }, { "operation": "add_edge", - "rtt_ns": 897808, - "rtt_ms": 0.897808, + "rtt_ns": 1426792, + "rtt_ms": 1.426792, "checkpoint": 0, "vertex_from": "14", "vertex_to": "41", - "timestamp": "2025-11-27T01:21:50.613602436Z" + "timestamp": "2025-11-27T04:01:49.000257-08:00" }, { "operation": "add_edge", - "rtt_ns": 893028, - "rtt_ms": 0.893028, + "rtt_ns": 1655792, + "rtt_ms": 1.655792, "checkpoint": 0, "vertex_from": "14", "vertex_to": "17", - "timestamp": "2025-11-27T01:21:50.613604126Z" + "timestamp": "2025-11-27T04:01:49.000499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019826, - "rtt_ms": 1.019826, + "rtt_ns": 1752458, + "rtt_ms": 1.752458, "checkpoint": 0, "vertex_from": "14", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.613653845Z" + "timestamp": "2025-11-27T04:01:49.000572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481265, - "rtt_ms": 1.481265, + "rtt_ns": 1441875, + "rtt_ms": 1.441875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:50.614354513Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:49.000692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490785, - "rtt_ms": 1.490785, + "rtt_ns": 1265208, + "rtt_ms": 1.265208, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:50.614382993Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:49.000846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498255, - "rtt_ms": 1.498255, + "rtt_ns": 1158167, + "rtt_ms": 1.158167, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.614388223Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.001418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613705, - "rtt_ms": 1.613705, + "rtt_ns": 2389917, + "rtt_ms": 2.389917, "checkpoint": 0, "vertex_from": "14", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.614388543Z" + "timestamp": "2025-11-27T04:01:49.001444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577065, - "rtt_ms": 1.577065, + "rtt_ns": 1715458, + "rtt_ms": 1.715458, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:50.614436763Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:49.00229-08:00" }, { "operation": "add_edge", - "rtt_ns": 2425083, - "rtt_ms": 2.425083, + "rtt_ns": 2656875, + "rtt_ms": 2.656875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "496", - "timestamp": "2025-11-27T01:21:50.6154631Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:49.002407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2659281, - "rtt_ms": 2.659281, + "rtt_ns": 2772458, + "rtt_ms": 2.772458, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:50.616264697Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.002418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870304, - "rtt_ms": 1.870304, + "rtt_ns": 2574291, + "rtt_ms": 2.574291, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "668", - "timestamp": "2025-11-27T01:21:50.616307957Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:01:49.002448-08:00" }, { "operation": "add_edge", - "rtt_ns": 2747101, - "rtt_ms": 2.747101, + "rtt_ns": 2643666, + "rtt_ms": 2.643666, "checkpoint": 0, "vertex_from": "14", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.616332917Z" + "timestamp": "2025-11-27T04:01:49.002519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997074, - "rtt_ms": 1.997074, + "rtt_ns": 2198958, + "rtt_ms": 2.198958, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.616381007Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:49.002699-08:00" }, { "operation": "add_edge", - "rtt_ns": 3119329, - "rtt_ms": 3.119329, + "rtt_ns": 2746500, + "rtt_ms": 2.7465, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.616722665Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:49.00344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2467632, - "rtt_ms": 2.467632, + "rtt_ns": 2147292, + "rtt_ms": 2.147292, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.616857395Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.003566-08:00" }, { "operation": "add_edge", - "rtt_ns": 2687631, - "rtt_ms": 2.687631, + "rtt_ns": 2146542, + "rtt_ms": 2.146542, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:50.617043794Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:49.003591-08:00" }, { "operation": "add_edge", - "rtt_ns": 3412799, - "rtt_ms": 3.412799, + "rtt_ns": 1189125, + "rtt_ms": 1.189125, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.617067964Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:49.003597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2681331, - "rtt_ms": 2.681331, + "rtt_ns": 2764041, + "rtt_ms": 2.764041, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.617071074Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.003611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621744, - "rtt_ms": 1.621744, + "rtt_ns": 1325708, + "rtt_ms": 1.325708, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.617086074Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:49.003745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483225, - "rtt_ms": 1.483225, + "rtt_ns": 1557209, + "rtt_ms": 1.557209, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.617749172Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:49.003848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064067, - "rtt_ms": 1.064067, + "rtt_ns": 1387916, + "rtt_ms": 1.387916, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "16", - "timestamp": "2025-11-27T01:21:50.617787882Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.003908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428225, - "rtt_ms": 1.428225, + "rtt_ns": 1478958, + "rtt_ms": 1.478958, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.617809952Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:49.003928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500565, - "rtt_ms": 1.500565, + "rtt_ns": 2247583, + "rtt_ms": 2.247583, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.617835042Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.004948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548735, - "rtt_ms": 1.548735, + "rtt_ns": 1217209, + "rtt_ms": 1.217209, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:50.617857552Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:01:49.004964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503285, - "rtt_ms": 1.503285, + "rtt_ns": 1191333, + "rtt_ms": 1.191333, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:50.61836174Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:49.005041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380046, - "rtt_ms": 1.380046, + "rtt_ns": 1517250, + "rtt_ms": 1.51725, "checkpoint": 0, "vertex_from": "14", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.61842488Z" + "timestamp": "2025-11-27T04:01:49.005109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383816, - "rtt_ms": 1.383816, + "rtt_ns": 1593375, + "rtt_ms": 1.593375, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "244", - "timestamp": "2025-11-27T01:21:50.61845623Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:49.005162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412295, - "rtt_ms": 1.412295, + "rtt_ns": 1372917, + "rtt_ms": 1.372917, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "466", - "timestamp": "2025-11-27T01:21:50.618500709Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:49.005281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490955, - "rtt_ms": 1.490955, + "rtt_ns": 1714416, + "rtt_ms": 1.714416, "checkpoint": 0, "vertex_from": "14", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.618559829Z" + "timestamp": "2025-11-27T04:01:49.005312-08:00" }, { "operation": "add_edge", - "rtt_ns": 811537, - "rtt_ms": 0.811537, + "rtt_ns": 1896041, + "rtt_ms": 1.896041, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.618600219Z" + "vertex_to": "16", + "timestamp": "2025-11-27T04:01:49.005337-08:00" }, { "operation": "add_edge", - "rtt_ns": 884727, - "rtt_ms": 0.884727, + "rtt_ns": 1761292, + "rtt_ms": 1.761292, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:50.618635089Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:01:49.005373-08:00" }, { "operation": "add_edge", - "rtt_ns": 816787, - "rtt_ms": 0.816787, + "rtt_ns": 2762292, + "rtt_ms": 2.762292, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:50.618653199Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:49.006691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284025, - "rtt_ms": 1.284025, + "rtt_ns": 1707000, + "rtt_ms": 1.707, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.619094937Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.006817-08:00" }, { "operation": "add_edge", - "rtt_ns": 796657, - "rtt_ms": 0.796657, + "rtt_ns": 1872917, + "rtt_ms": 1.872917, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.619256427Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:49.006838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444895, - "rtt_ms": 1.444895, + "rtt_ns": 1675000, + "rtt_ms": 1.675, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:50.619303857Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.006838-08:00" }, { "operation": "add_edge", - "rtt_ns": 897837, - "rtt_ms": 0.897837, + "rtt_ns": 1478583, + "rtt_ms": 1.478583, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.619326067Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.006854-08:00" }, { "operation": "add_edge", - "rtt_ns": 994597, - "rtt_ms": 0.994597, + "rtt_ns": 1966750, + "rtt_ms": 1.96675, "checkpoint": 0, "vertex_from": "14", "vertex_to": "965", - "timestamp": "2025-11-27T01:21:50.619357617Z" + "timestamp": "2025-11-27T04:01:49.007009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393136, - "rtt_ms": 1.393136, + "rtt_ns": 2354208, + "rtt_ms": 2.354208, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.619954355Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:49.007303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490526, - "rtt_ms": 1.490526, + "rtt_ns": 2058083, + "rtt_ms": 2.058083, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.619993095Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:49.007397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212157, - "rtt_ms": 1.212157, + "rtt_ns": 2136917, + "rtt_ms": 2.136917, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.620308604Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:49.00745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846374, - "rtt_ms": 1.846374, + "rtt_ns": 2266333, + "rtt_ms": 2.266333, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:50.620447913Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:49.007548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860444, - "rtt_ms": 1.860444, + "rtt_ns": 1382208, + "rtt_ms": 1.382208, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.620515593Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:49.008221-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082193, - "rtt_ms": 2.082193, + "rtt_ns": 1388083, + "rtt_ms": 1.388083, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.620718132Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:49.008243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578185, - "rtt_ms": 1.578185, + "rtt_ns": 1328541, + "rtt_ms": 1.328541, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:50.620835912Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.00834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984573, - "rtt_ms": 1.984573, + "rtt_ns": 1309250, + "rtt_ms": 1.30925, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.62134332Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:49.00876-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072813, - "rtt_ms": 2.072813, + "rtt_ns": 2000000, + "rtt_ms": 2, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.62140059Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:49.00882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097553, - "rtt_ms": 2.097553, + "rtt_ns": 1608875, + "rtt_ms": 1.608875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.62140226Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:49.009007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510665, - "rtt_ms": 1.510665, + "rtt_ns": 1566791, + "rtt_ms": 1.566791, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:50.62146602Z" + "vertex_to": "157", + "timestamp": "2025-11-27T04:01:49.009116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486325, - "rtt_ms": 1.486325, + "rtt_ns": 2542458, + "rtt_ms": 2.542458, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.62148121Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.009235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105977, - "rtt_ms": 1.105977, + "rtt_ns": 2416042, + "rtt_ms": 2.416042, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "157", - "timestamp": "2025-11-27T01:21:50.62155516Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:49.009255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157826, - "rtt_ms": 1.157826, + "rtt_ns": 1150375, + "rtt_ms": 1.150375, "checkpoint": 0, "vertex_from": "14", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.621674389Z" + "timestamp": "2025-11-27T04:01:49.009372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414605, - "rtt_ms": 1.414605, + "rtt_ns": 2386750, + "rtt_ms": 2.38675, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:50.621724569Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:49.009692-08:00" }, { "operation": "add_edge", - "rtt_ns": 969767, - "rtt_ms": 0.969767, + "rtt_ns": 1529875, + "rtt_ms": 1.529875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.621806629Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:49.01029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112357, - "rtt_ms": 1.112357, + "rtt_ns": 2027458, + "rtt_ms": 2.027458, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.621831709Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.010369-08:00" }, { "operation": "add_edge", - "rtt_ns": 661758, - "rtt_ms": 0.661758, + "rtt_ns": 2210833, + "rtt_ms": 2.210833, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.622006918Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.010454-08:00" }, { "operation": "add_edge", - "rtt_ns": 802888, - "rtt_ms": 0.802888, + "rtt_ns": 2066416, + "rtt_ms": 2.066416, "checkpoint": 0, "vertex_from": "14", "vertex_to": "100", - "timestamp": "2025-11-27T01:21:50.622204918Z" + "timestamp": "2025-11-27T04:01:49.010888-08:00" }, { "operation": "add_edge", - "rtt_ns": 797657, - "rtt_ms": 0.797657, + "rtt_ns": 1546792, + "rtt_ms": 1.546792, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "866", - "timestamp": "2025-11-27T01:21:50.622264707Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:49.01092-08:00" }, { "operation": "add_edge", - "rtt_ns": 825917, - "rtt_ms": 0.825917, + "rtt_ns": 2116417, + "rtt_ms": 2.116417, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.622308037Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:49.011125-08:00" }, { "operation": "add_edge", - "rtt_ns": 967507, - "rtt_ms": 0.967507, + "rtt_ns": 2057875, + "rtt_ms": 2.057875, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.622370827Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:01:49.011175-08:00" }, { "operation": "add_edge", - "rtt_ns": 865307, - "rtt_ms": 0.865307, + "rtt_ns": 1941583, + "rtt_ms": 1.941583, "checkpoint": 0, "vertex_from": "14", "vertex_to": "156", - "timestamp": "2025-11-27T01:21:50.622421677Z" + "timestamp": "2025-11-27T04:01:49.011197-08:00" }, { "operation": "add_edge", - "rtt_ns": 803788, - "rtt_ms": 0.803788, + "rtt_ns": 1589375, + "rtt_ms": 1.589375, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:50.622479267Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:49.011283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345706, - "rtt_ms": 1.345706, + "rtt_ns": 1073792, + "rtt_ms": 1.073792, "checkpoint": 0, "vertex_from": "14", - "vertex_to": "920", - "timestamp": "2025-11-27T01:21:50.623071385Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.011365-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1376246, - "rtt_ms": 1.376246, + "operation": "add_edge", + "rtt_ns": 2279250, + "rtt_ms": 2.27925, "checkpoint": 0, - "vertex_from": "222", - "timestamp": "2025-11-27T01:21:50.623386044Z" + "vertex_from": "14", + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:49.011517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576965, - "rtt_ms": 1.576965, + "rtt_ns": 1158833, + "rtt_ms": 1.158833, "checkpoint": 0, "vertex_from": "14", "vertex_to": "26", - "timestamp": "2025-11-27T01:21:50.623409914Z" + "timestamp": "2025-11-27T04:01:49.011528-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1611615, - "rtt_ms": 1.611615, + "operation": "add_vertex", + "rtt_ns": 2015584, + "rtt_ms": 2.015584, "checkpoint": 0, - "vertex_from": "14", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.623419064Z" + "vertex_from": "222", + "timestamp": "2025-11-27T04:01:49.012473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150926, - "rtt_ms": 1.150926, + "rtt_ns": 1633500, + "rtt_ms": 1.6335, "checkpoint": 0, "vertex_from": "15", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.623522863Z" + "timestamp": "2025-11-27T04:01:49.012809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401055, - "rtt_ms": 1.401055, + "rtt_ns": 1309416, + "rtt_ms": 1.309416, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.623608163Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.012827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643205, - "rtt_ms": 1.643205, + "rtt_ns": 1921208, + "rtt_ms": 1.921208, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.623952312Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:49.012842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702205, - "rtt_ms": 1.702205, + "rtt_ns": 1967875, + "rtt_ms": 1.967875, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.623967812Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.012856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695024, - "rtt_ms": 1.695024, + "rtt_ns": 1522292, + "rtt_ms": 1.522292, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.624175581Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:49.012888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846474, - "rtt_ms": 1.846474, + "rtt_ns": 1837709, + "rtt_ms": 1.837709, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.624269361Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.012963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273936, - "rtt_ms": 1.273936, + "rtt_ns": 1564834, + "rtt_ms": 1.564834, "checkpoint": 0, - "vertex_from": "14", - "vertex_to": "222", - "timestamp": "2025-11-27T01:21:50.62466068Z" + "vertex_from": "15", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.013094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264405, - "rtt_ms": 1.264405, + "rtt_ns": 1833209, + "rtt_ms": 1.833209, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.624676479Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:49.013119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699514, - "rtt_ms": 1.699514, + "rtt_ns": 2128708, + "rtt_ms": 2.128708, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.624771989Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.013327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249866, - "rtt_ms": 1.249866, + "rtt_ns": 1303083, + "rtt_ms": 1.303083, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.624775119Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.01416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384425, - "rtt_ms": 1.384425, + "rtt_ns": 1096541, + "rtt_ms": 1.096541, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.624804479Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:49.014192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251216, - "rtt_ms": 1.251216, + "rtt_ns": 1886250, + "rtt_ms": 1.88625, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.625427867Z" + "vertex_from": "14", + "vertex_to": "222", + "timestamp": "2025-11-27T04:01:49.01436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480815, - "rtt_ms": 1.480815, + "rtt_ns": 1571500, + "rtt_ms": 1.5715, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.625449637Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.014381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533895, - "rtt_ms": 1.533895, + "rtt_ns": 1548542, + "rtt_ms": 1.548542, "checkpoint": 0, "vertex_from": "15", "vertex_to": "820", - "timestamp": "2025-11-27T01:21:50.625487757Z" + "timestamp": "2025-11-27T04:01:49.014391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252916, - "rtt_ms": 1.252916, + "rtt_ns": 1576291, + "rtt_ms": 1.576291, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.625523107Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:01:49.014404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925594, - "rtt_ms": 1.925594, + "rtt_ns": 1661458, + "rtt_ms": 1.661458, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "28", - "timestamp": "2025-11-27T01:21:50.625535077Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.014551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105827, - "rtt_ms": 1.105827, + "rtt_ns": 1690917, + "rtt_ms": 1.690917, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.625783716Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.014657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719534, - "rtt_ms": 1.719534, + "rtt_ns": 1862458, + "rtt_ms": 1.862458, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:50.626388924Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.015191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754864, - "rtt_ms": 1.754864, + "rtt_ns": 2137334, + "rtt_ms": 2.137334, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.626560313Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1843494, - "rtt_ms": 1.843494, - "checkpoint": 0, - "vertex_from": "121", - "timestamp": "2025-11-27T01:21:50.626622173Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:49.015257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410855, - "rtt_ms": 1.410855, + "rtt_ns": 1180417, + "rtt_ms": 1.180417, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.626899982Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:49.015374-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2199223, - "rtt_ms": 2.199223, + "operation": "add_vertex", + "rtt_ns": 1424917, + "rtt_ms": 1.424917, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.626972842Z" + "vertex_from": "121", + "timestamp": "2025-11-27T04:01:49.015588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521425, - "rtt_ms": 1.521425, + "rtt_ns": 1954958, + "rtt_ms": 1.954958, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.626973062Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.016318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568465, - "rtt_ms": 1.568465, + "rtt_ns": 2005500, + "rtt_ms": 2.0055, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.626999692Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:49.01641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535524, - "rtt_ms": 1.535524, + "rtt_ns": 2081875, + "rtt_ms": 2.081875, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:50.627072881Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.016474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587394, - "rtt_ms": 1.587394, + "rtt_ns": 2140042, + "rtt_ms": 2.140042, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:50.627112101Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.016523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330105, - "rtt_ms": 1.330105, + "rtt_ns": 1904667, + "rtt_ms": 1.904667, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.627719879Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:49.016563-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081233, - "rtt_ms": 2.081233, + "rtt_ns": 2265750, + "rtt_ms": 2.26575, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:50.627865949Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:49.016817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602645, - "rtt_ms": 1.602645, + "rtt_ns": 1612458, + "rtt_ms": 1.612458, "checkpoint": 0, "vertex_from": "15", "vertex_to": "121", - "timestamp": "2025-11-27T01:21:50.628225168Z" + "timestamp": "2025-11-27T04:01:49.017201-08:00" }, { "operation": "add_edge", - "rtt_ns": 2461002, - "rtt_ms": 2.461002, + "rtt_ns": 1848375, + "rtt_ms": 1.848375, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.629021905Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:49.017224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197543, - "rtt_ms": 2.197543, + "rtt_ns": 2041875, + "rtt_ms": 2.041875, "checkpoint": 0, "vertex_from": "15", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.629100715Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:49.017234-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047444, - "rtt_ms": 2.047444, + "rtt_ns": 2252583, + "rtt_ms": 2.252583, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.629161735Z" + "vertex_from": "15", + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:49.017513-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186973, - "rtt_ms": 2.186973, + "rtt_ns": 1876792, + "rtt_ms": 1.876792, "checkpoint": 0, "vertex_from": "15", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.629161845Z" + "timestamp": "2025-11-27T04:01:49.018196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141004, - "rtt_ms": 2.141004, + "rtt_ns": 1812083, + "rtt_ms": 1.812083, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:50.629217785Z" + "vertex_from": "15", + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:49.018287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275942, - "rtt_ms": 2.275942, + "rtt_ns": 1930209, + "rtt_ms": 1.930209, "checkpoint": 0, "vertex_from": "15", "vertex_to": "163", - "timestamp": "2025-11-27T01:21:50.629251714Z" + "timestamp": "2025-11-27T04:01:49.018342-08:00" }, { "operation": "add_edge", - "rtt_ns": 2794231, - "rtt_ms": 2.794231, + "rtt_ns": 1432125, + "rtt_ms": 1.432125, "checkpoint": 0, - "vertex_from": "15", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:50.629794913Z" + "vertex_from": "16", + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:49.018667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112754, - "rtt_ms": 2.112754, + "rtt_ns": 1935666, + "rtt_ms": 1.935666, "checkpoint": 0, "vertex_from": "16", "vertex_to": "73", - "timestamp": "2025-11-27T01:21:50.629835233Z" + "timestamp": "2025-11-27T04:01:49.018756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655024, - "rtt_ms": 1.655024, + "rtt_ns": 2378834, + "rtt_ms": 2.378834, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.629882022Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:49.018902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149643, - "rtt_ms": 2.149643, + "rtt_ns": 2362666, + "rtt_ms": 2.362666, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:50.630017222Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:49.018926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049647, - "rtt_ms": 1.049647, + "rtt_ns": 1448666, + "rtt_ms": 1.448666, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.630073052Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:01:49.018962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716674, - "rtt_ms": 1.716674, + "rtt_ns": 1737917, + "rtt_ms": 1.737917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "805", - "timestamp": "2025-11-27T01:21:50.630818629Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.018962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593355, - "rtt_ms": 1.593355, + "rtt_ns": 1784792, + "rtt_ms": 1.784792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:50.630846629Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:49.018987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628014, - "rtt_ms": 1.628014, + "rtt_ns": 1623875, + "rtt_ms": 1.623875, "checkpoint": 0, "vertex_from": "16", "vertex_to": "840", - "timestamp": "2025-11-27T01:21:50.630848349Z" + "timestamp": "2025-11-27T04:01:49.019968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700714, - "rtt_ms": 1.700714, + "rtt_ns": 1788166, + "rtt_ms": 1.788166, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.630866749Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:49.019985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713524, - "rtt_ms": 1.713524, + "rtt_ns": 1578541, + "rtt_ms": 1.578541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:50.630877299Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:49.020247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317695, - "rtt_ms": 1.317695, + "rtt_ns": 1509500, + "rtt_ms": 1.5095, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.631155538Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:49.020266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400375, - "rtt_ms": 1.400375, + "rtt_ns": 1528833, + "rtt_ms": 1.528833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:50.631196818Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:49.020432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399556, - "rtt_ms": 1.399556, + "rtt_ns": 2252542, + "rtt_ms": 2.252542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.631283608Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:49.02054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401606, - "rtt_ms": 1.401606, + "rtt_ns": 1567417, + "rtt_ms": 1.567417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:50.631420698Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:49.020555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362466, - "rtt_ms": 1.362466, + "rtt_ns": 1612584, + "rtt_ms": 1.612584, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.631437378Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:49.020576-08:00" }, { "operation": "add_edge", - "rtt_ns": 814198, - "rtt_ms": 0.814198, + "rtt_ns": 1635334, + "rtt_ms": 1.635334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:50.631634227Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:49.020599-08:00" }, { "operation": "add_edge", - "rtt_ns": 781198, - "rtt_ms": 0.781198, + "rtt_ns": 1794083, + "rtt_ms": 1.794083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.631660847Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.020721-08:00" }, { "operation": "add_edge", - "rtt_ns": 883228, - "rtt_ms": 0.883228, + "rtt_ns": 1282417, + "rtt_ms": 1.282417, "checkpoint": 0, "vertex_from": "16", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.631733187Z" + "timestamp": "2025-11-27T04:01:49.021268-08:00" }, { "operation": "add_edge", - "rtt_ns": 906247, - "rtt_ms": 0.906247, + "rtt_ns": 1325958, + "rtt_ms": 1.325958, "checkpoint": 0, "vertex_from": "16", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:50.631755796Z" + "timestamp": "2025-11-27T04:01:49.021295-08:00" }, { "operation": "add_edge", - "rtt_ns": 893807, - "rtt_ms": 0.893807, + "rtt_ns": 1563542, + "rtt_ms": 1.563542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.631763126Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:49.02183-08:00" }, { "operation": "add_edge", - "rtt_ns": 841228, - "rtt_ms": 0.841228, + "rtt_ns": 1343333, + "rtt_ms": 1.343333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.631998946Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:49.02192-08:00" }, { "operation": "add_edge", - "rtt_ns": 828198, - "rtt_ms": 0.828198, + "rtt_ns": 1746958, + "rtt_ms": 1.746958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:50.632026226Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.021995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537165, - "rtt_ms": 1.537165, + "rtt_ns": 1539666, + "rtt_ms": 1.539666, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "151", - "timestamp": "2025-11-27T01:21:50.632821923Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:49.022081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905614, - "rtt_ms": 1.905614, + "rtt_ns": 1966334, + "rtt_ms": 1.966334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.633327782Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:49.022399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942194, - "rtt_ms": 1.942194, + "rtt_ns": 1871875, + "rtt_ms": 1.871875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.633381141Z" + "vertex_to": "151", + "timestamp": "2025-11-27T04:01:49.022428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129663, - "rtt_ms": 2.129663, + "rtt_ns": 1836542, + "rtt_ms": 1.836542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.63386389Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.022436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228513, - "rtt_ms": 2.228513, + "rtt_ns": 2251917, + "rtt_ms": 2.251917, "checkpoint": 0, "vertex_from": "16", "vertex_to": "74", - "timestamp": "2025-11-27T01:21:50.63386404Z" + "timestamp": "2025-11-27T04:01:49.022973-08:00" }, { "operation": "add_edge", - "rtt_ns": 2221033, - "rtt_ms": 2.221033, + "rtt_ns": 1745000, + "rtt_ms": 1.745, "checkpoint": 0, "vertex_from": "16", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.63388291Z" + "timestamp": "2025-11-27T04:01:49.023014-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174314, - "rtt_ms": 2.174314, + "rtt_ns": 2158750, + "rtt_ms": 2.15875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.63393985Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.023455-08:00" }, { "operation": "add_edge", - "rtt_ns": 2211823, - "rtt_ms": 2.211823, + "rtt_ns": 1577958, + "rtt_ms": 1.577958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.633968289Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.023499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098873, - "rtt_ms": 2.098873, + "rtt_ns": 1893750, + "rtt_ms": 1.89375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:50.634128099Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.023891-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193693, - "rtt_ms": 2.193693, + "rtt_ns": 1558917, + "rtt_ms": 1.558917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.634194439Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:49.023996-08:00" }, { "operation": "add_edge", - "rtt_ns": 921427, - "rtt_ms": 0.921427, + "rtt_ns": 2179750, + "rtt_ms": 2.17975, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.634250319Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.024011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451596, - "rtt_ms": 1.451596, + "rtt_ns": 1619750, + "rtt_ms": 1.61975, "checkpoint": 0, "vertex_from": "16", "vertex_to": "804", - "timestamp": "2025-11-27T01:21:50.634276309Z" + "timestamp": "2025-11-27T04:01:49.024021-08:00" }, { "operation": "add_edge", - "rtt_ns": 941367, - "rtt_ms": 0.941367, + "rtt_ns": 1197208, + "rtt_ms": 1.197208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.634323628Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:49.024212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123676, - "rtt_ms": 1.123676, + "rtt_ns": 2351458, + "rtt_ms": 2.351458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.635008576Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:49.024433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143456, - "rtt_ms": 1.143456, + "rtt_ns": 2019916, + "rtt_ms": 2.019916, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:50.635009146Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.024449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260866, - "rtt_ms": 1.260866, + "rtt_ns": 1589000, + "rtt_ms": 1.589, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.635230315Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:49.024563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837694, - "rtt_ms": 1.837694, + "rtt_ns": 1123125, + "rtt_ms": 1.123125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "665", - "timestamp": "2025-11-27T01:21:50.635704294Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.02458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797534, - "rtt_ms": 1.797534, + "rtt_ns": 1679875, + "rtt_ms": 1.679875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.635738144Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:49.025679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722674, - "rtt_ms": 1.722674, + "rtt_ns": 1823542, + "rtt_ms": 1.823542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:50.635851753Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.025846-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1696534, - "rtt_ms": 1.696534, + "rtt_ns": 1883667, + "rtt_ms": 1.883667, "checkpoint": 0, "vertex_from": "979", - "timestamp": "2025-11-27T01:21:50.635895363Z" + "timestamp": "2025-11-27T04:01:49.025897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986634, - "rtt_ms": 1.986634, + "rtt_ns": 1680458, + "rtt_ms": 1.680458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.636312932Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:49.025898-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092874, - "rtt_ms": 2.092874, + "rtt_ns": 2033292, + "rtt_ms": 2.033292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.636371952Z" + "vertex_to": "860", + "timestamp": "2025-11-27T04:01:49.026485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147093, - "rtt_ms": 2.147093, + "rtt_ns": 2075708, + "rtt_ms": 2.075708, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.636398172Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:49.02651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432705, - "rtt_ms": 1.432705, + "rtt_ns": 3138625, + "rtt_ms": 3.138625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:50.636444091Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:49.026639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225136, - "rtt_ms": 1.225136, + "rtt_ns": 2761459, + "rtt_ms": 2.761459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.636457811Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.026653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496205, - "rtt_ms": 1.496205, + "rtt_ns": 2139416, + "rtt_ms": 2.139416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "860", - "timestamp": "2025-11-27T01:21:50.636507231Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:49.026704-08:00" }, { "operation": "add_edge", - "rtt_ns": 834237, - "rtt_ms": 0.834237, + "rtt_ns": 2144542, + "rtt_ms": 2.144542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "754", - "timestamp": "2025-11-27T01:21:50.636573751Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:49.026726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531035, - "rtt_ms": 1.531035, + "rtt_ns": 1682750, + "rtt_ms": 1.68275, "checkpoint": 0, "vertex_from": "16", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.637236679Z" + "timestamp": "2025-11-27T04:01:49.027364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400156, - "rtt_ms": 1.400156, + "rtt_ns": 1567042, + "rtt_ms": 1.567042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.637253879Z" + "vertex_to": "979", + "timestamp": "2025-11-27T04:01:49.027465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583505, - "rtt_ms": 1.583505, + "rtt_ns": 2045875, + "rtt_ms": 2.045875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "979", - "timestamp": "2025-11-27T01:21:50.637479378Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.027951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853233, - "rtt_ms": 1.853233, + "rtt_ns": 1465459, + "rtt_ms": 1.465459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.638252925Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.027952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798204, - "rtt_ms": 1.798204, + "rtt_ns": 1265084, + "rtt_ms": 1.265084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.638306915Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:49.027969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934964, - "rtt_ms": 1.934964, + "rtt_ns": 1317208, + "rtt_ms": 1.317208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.638393735Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.027971-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107003, - "rtt_ms": 2.107003, + "rtt_ns": 2134500, + "rtt_ms": 2.1345, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.638479995Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:01:49.027982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172803, - "rtt_ms": 2.172803, + "rtt_ns": 1623000, + "rtt_ms": 1.623, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.638487295Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:49.028134-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073444, - "rtt_ms": 2.073444, + "rtt_ns": 1661584, + "rtt_ms": 1.661584, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.638519025Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:49.029026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011083, - "rtt_ms": 2.011083, + "rtt_ns": 2381125, + "rtt_ms": 2.381125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.638586604Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.029108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373785, - "rtt_ms": 1.373785, + "rtt_ns": 1657875, + "rtt_ms": 1.657875, "checkpoint": 0, "vertex_from": "16", "vertex_to": "622", - "timestamp": "2025-11-27T01:21:50.638612324Z" + "timestamp": "2025-11-27T04:01:49.029125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206266, - "rtt_ms": 1.206266, + "rtt_ns": 2489250, + "rtt_ms": 2.48925, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.638686804Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.02913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872693, - "rtt_ms": 1.872693, + "rtt_ns": 1387334, + "rtt_ms": 1.387334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.639129162Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:49.029359-08:00" }, { "operation": "add_edge", - "rtt_ns": 972807, - "rtt_ms": 0.972807, + "rtt_ns": 1449875, + "rtt_ms": 1.449875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.639227002Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.029403-08:00" }, { "operation": "add_edge", - "rtt_ns": 974257, - "rtt_ms": 0.974257, + "rtt_ns": 1540958, + "rtt_ms": 1.540958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:50.639282322Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:49.029493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696474, - "rtt_ms": 1.696474, + "rtt_ns": 1376209, + "rtt_ms": 1.376209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.640185049Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:49.029511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814554, - "rtt_ms": 1.814554, + "rtt_ns": 1636541, + "rtt_ms": 1.636541, "checkpoint": 0, "vertex_from": "16", "vertex_to": "30", - "timestamp": "2025-11-27T01:21:50.640209499Z" + "timestamp": "2025-11-27T04:01:49.029621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735774, - "rtt_ms": 1.735774, + "rtt_ns": 2031959, + "rtt_ms": 2.031959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:50.640217139Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.030002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721374, - "rtt_ms": 1.721374, + "rtt_ns": 874792, + "rtt_ms": 0.874792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:50.640241499Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:49.030497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670445, - "rtt_ms": 1.670445, + "rtt_ns": 1466958, + "rtt_ms": 1.466958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:50.640258539Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:01:49.030599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227846, - "rtt_ms": 1.227846, + "rtt_ns": 2031084, + "rtt_ms": 2.031084, "checkpoint": 0, "vertex_from": "16", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.640455768Z" + "timestamp": "2025-11-27T04:01:49.031526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025034, - "rtt_ms": 2.025034, + "rtt_ns": 2068916, + "rtt_ms": 2.068916, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "110", - "timestamp": "2025-11-27T01:21:50.640640068Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:49.031581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388735, - "rtt_ms": 1.388735, + "rtt_ns": 2280417, + "rtt_ms": 2.280417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:50.640672337Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:49.031685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013313, - "rtt_ms": 2.013313, + "rtt_ns": 2677959, + "rtt_ms": 2.677959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.640701377Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.031705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612635, - "rtt_ms": 1.612635, + "rtt_ns": 2704208, + "rtt_ms": 2.704208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:50.640743477Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:49.03183-08:00" }, { "operation": "add_edge", - "rtt_ns": 720568, - "rtt_ms": 0.720568, + "rtt_ns": 2485541, + "rtt_ms": 2.485541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:50.640963517Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.031847-08:00" }, { "operation": "add_edge", - "rtt_ns": 769038, - "rtt_ms": 0.769038, + "rtt_ns": 1965542, + "rtt_ms": 1.965542, "checkpoint": 0, "vertex_from": "16", "vertex_to": "329", - "timestamp": "2025-11-27T01:21:50.640980917Z" + "timestamp": "2025-11-27T04:01:49.031968-08:00" }, { "operation": "add_edge", - "rtt_ns": 858067, - "rtt_ms": 0.858067, + "rtt_ns": 2973583, + "rtt_ms": 2.973583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:50.641045346Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:49.032082-08:00" }, { "operation": "add_edge", - "rtt_ns": 850837, - "rtt_ms": 0.850837, + "rtt_ns": 1719917, + "rtt_ms": 1.719917, "checkpoint": 0, "vertex_from": "16", "vertex_to": "395", - "timestamp": "2025-11-27T01:21:50.641069196Z" + "timestamp": "2025-11-27T04:01:49.032217-08:00" }, { "operation": "add_edge", - "rtt_ns": 621698, - "rtt_ms": 0.621698, + "rtt_ns": 1505625, + "rtt_ms": 1.505625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.641078666Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:49.033588-08:00" }, { "operation": "add_edge", - "rtt_ns": 865787, - "rtt_ms": 0.865787, + "rtt_ns": 2051791, + "rtt_ms": 2.051791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.641125326Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.033738-08:00" }, { "operation": "add_edge", - "rtt_ns": 868088, - "rtt_ms": 0.868088, + "rtt_ns": 2168500, + "rtt_ms": 2.1685, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:50.641850704Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:49.03375-08:00" }, { "operation": "add_edge", - "rtt_ns": 920317, - "rtt_ms": 0.920317, + "rtt_ns": 1829334, + "rtt_ms": 1.829334, "checkpoint": 0, "vertex_from": "16", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.641885424Z" + "timestamp": "2025-11-27T04:01:49.033799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164877, - "rtt_ms": 1.164877, + "rtt_ns": 3252417, + "rtt_ms": 3.252417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.641911634Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:49.033852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248607, - "rtt_ms": 1.248607, + "rtt_ns": 2335958, + "rtt_ms": 2.335958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:50.641922224Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:49.033862-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1229116, - "rtt_ms": 1.229116, + "operation": "add_edge", + "rtt_ns": 2070209, + "rtt_ms": 2.070209, "checkpoint": 0, - "vertex_from": "542", - "timestamp": "2025-11-27T01:21:50.641934473Z" + "vertex_from": "16", + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:49.033918-08:00" }, { "operation": "add_edge", - "rtt_ns": 868067, - "rtt_ms": 0.868067, + "rtt_ns": 2229375, + "rtt_ms": 2.229375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.641939033Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:49.033935-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1301245, - "rtt_ms": 1.301245, + "operation": "add_vertex", + "rtt_ns": 2127916, + "rtt_ms": 2.127916, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.641943293Z" + "vertex_from": "542", + "timestamp": "2025-11-27T04:01:49.03396-08:00" }, { "operation": "add_edge", - "rtt_ns": 967577, - "rtt_ms": 0.967577, + "rtt_ns": 1847791, + "rtt_ms": 1.847791, "checkpoint": 0, "vertex_from": "16", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.642014393Z" + "timestamp": "2025-11-27T04:01:49.034066-08:00" }, { "operation": "add_vertex", - "rtt_ns": 974267, - "rtt_ms": 0.974267, + "rtt_ns": 1389292, + "rtt_ms": 1.389292, "checkpoint": 0, "vertex_from": "730", - "timestamp": "2025-11-27T01:21:50.642056353Z" + "timestamp": "2025-11-27T04:01:49.035128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625155, - "rtt_ms": 1.625155, + "rtt_ns": 1139208, + "rtt_ms": 1.139208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:50.642751881Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:49.035206-08:00" }, { "operation": "add_edge", - "rtt_ns": 2576261, - "rtt_ms": 2.576261, + "rtt_ns": 1476416, + "rtt_ms": 1.476416, "checkpoint": 0, "vertex_from": "16", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.644428485Z" + "timestamp": "2025-11-27T04:01:49.035276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533672, - "rtt_ms": 2.533672, + "rtt_ns": 1611959, + "rtt_ms": 1.611959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "542", - "timestamp": "2025-11-27T01:21:50.644468535Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:49.035466-08:00" }, { "operation": "add_edge", - "rtt_ns": 2606691, - "rtt_ms": 2.606691, + "rtt_ns": 1515375, + "rtt_ms": 1.515375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:50.644519565Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:49.035475-08:00" }, { "operation": "add_edge", - "rtt_ns": 2603211, - "rtt_ms": 2.603211, + "rtt_ns": 1556584, + "rtt_ms": 1.556584, "checkpoint": 0, "vertex_from": "16", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.644527345Z" + "timestamp": "2025-11-27T04:01:49.035476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541442, - "rtt_ms": 2.541442, + "rtt_ns": 1760167, + "rtt_ms": 1.760167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "730", - "timestamp": "2025-11-27T01:21:50.644598435Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:49.035511-08:00" }, { "operation": "add_edge", - "rtt_ns": 3192470, - "rtt_ms": 3.19247, + "rtt_ns": 1666791, + "rtt_ms": 1.666791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.645133053Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:49.03553-08:00" }, { "operation": "add_edge", - "rtt_ns": 3222040, - "rtt_ms": 3.22204, + "rtt_ns": 2007333, + "rtt_ms": 2.007333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "914", - "timestamp": "2025-11-27T01:21:50.645238123Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:49.035597-08:00" }, { "operation": "add_edge", - "rtt_ns": 3326180, - "rtt_ms": 3.32618, + "rtt_ns": 2002417, + "rtt_ms": 2.002417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:50.645270743Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.035953-08:00" }, { "operation": "add_edge", - "rtt_ns": 2554901, - "rtt_ms": 2.554901, + "rtt_ns": 1327625, + "rtt_ms": 1.327625, "checkpoint": 0, "vertex_from": "16", "vertex_to": "26", - "timestamp": "2025-11-27T01:21:50.645308842Z" + "timestamp": "2025-11-27T04:01:49.036604-08:00" }, { "operation": "add_edge", - "rtt_ns": 3438238, - "rtt_ms": 3.438238, + "rtt_ns": 1207459, + "rtt_ms": 1.207459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "572", - "timestamp": "2025-11-27T01:21:50.645325852Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:49.03674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485665, - "rtt_ms": 1.485665, + "rtt_ns": 1628542, + "rtt_ms": 1.628542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:50.64591603Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:01:49.036757-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1442667, + "rtt_ms": 1.442667, + "checkpoint": 0, + "vertex_from": "16", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.036919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493345, - "rtt_ms": 1.493345, + "rtt_ns": 1474375, + "rtt_ms": 1.474375, "checkpoint": 0, "vertex_from": "16", "vertex_to": "25", - "timestamp": "2025-11-27T01:21:50.64601513Z" + "timestamp": "2025-11-27T04:01:49.036951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415165, - "rtt_ms": 1.415165, + "rtt_ns": 1896042, + "rtt_ms": 1.896042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.64601542Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:01:49.037103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567915, - "rtt_ms": 1.567915, + "rtt_ns": 1624334, + "rtt_ms": 1.624334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.64603743Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:49.037222-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1962144, - "rtt_ms": 1.962144, + "rtt_ns": 1762083, + "rtt_ms": 1.762083, "checkpoint": 0, "vertex_from": "505", - "timestamp": "2025-11-27T01:21:50.646492549Z" + "timestamp": "2025-11-27T04:01:49.037274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349865, - "rtt_ms": 1.349865, + "rtt_ns": 1727125, + "rtt_ms": 1.727125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:50.646621858Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:01:49.037682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331466, - "rtt_ms": 1.331466, + "rtt_ns": 1098958, + "rtt_ms": 1.098958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.646659388Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:01:49.03784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490455, - "rtt_ms": 1.490455, + "rtt_ns": 1603709, + "rtt_ms": 1.603709, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "865", - "timestamp": "2025-11-27T01:21:50.646730398Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:49.038209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437236, - "rtt_ms": 1.437236, + "rtt_ns": 1542542, + "rtt_ms": 1.542542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "119", - "timestamp": "2025-11-27T01:21:50.646747238Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.0383-08:00" }, { "operation": "add_edge", - "rtt_ns": 755567, - "rtt_ms": 0.755567, + "rtt_ns": 1404792, + "rtt_ms": 1.404792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "482", - "timestamp": "2025-11-27T01:21:50.646794307Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:49.038325-08:00" }, { "operation": "add_edge", - "rtt_ns": 879457, - "rtt_ms": 0.879457, + "rtt_ns": 2968917, + "rtt_ms": 2.968917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.646796947Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:49.038437-08:00" }, { "operation": "add_edge", - "rtt_ns": 868827, - "rtt_ms": 0.868827, + "rtt_ns": 1225791, + "rtt_ms": 1.225791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "17", - "timestamp": "2025-11-27T01:21:50.646885647Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:01:49.038449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751004, - "rtt_ms": 1.751004, + "rtt_ns": 1208625, + "rtt_ms": 1.208625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:50.646885977Z" + "vertex_to": "505", + "timestamp": "2025-11-27T04:01:49.038483-08:00" }, { "operation": "add_edge", - "rtt_ns": 881327, - "rtt_ms": 0.881327, + "rtt_ns": 1647000, + "rtt_ms": 1.647, "checkpoint": 0, "vertex_from": "16", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.646897797Z" + "timestamp": "2025-11-27T04:01:49.038599-08:00" }, { "operation": "add_edge", - "rtt_ns": 916857, - "rtt_ms": 0.916857, + "rtt_ns": 1532333, + "rtt_ms": 1.532333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:50.647540765Z" + "vertex_to": "17", + "timestamp": "2025-11-27T04:01:49.038638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226955, - "rtt_ms": 1.226955, + "rtt_ns": 2492000, + "rtt_ms": 2.492, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "505", - "timestamp": "2025-11-27T01:21:50.647720014Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:49.040334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653385, - "rtt_ms": 1.653385, + "rtt_ns": 2140625, + "rtt_ms": 2.140625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.648451332Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:49.040351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643325, - "rtt_ms": 1.643325, + "rtt_ns": 1929250, + "rtt_ms": 1.92925, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:50.648530492Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:49.040367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881664, - "rtt_ms": 1.881664, + "rtt_ns": 2934459, + "rtt_ms": 2.934459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:50.648542272Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:49.040617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831004, - "rtt_ms": 1.831004, + "rtt_ns": 2143500, + "rtt_ms": 2.1435, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:50.648562562Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:49.040627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665665, - "rtt_ms": 1.665665, + "rtt_ns": 2484334, + "rtt_ms": 2.484334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.648565072Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:49.040785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828364, - "rtt_ms": 1.828364, + "rtt_ns": 2345709, + "rtt_ms": 2.345709, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:50.648577632Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:49.040795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790665, - "rtt_ms": 1.790665, + "rtt_ns": 2586667, + "rtt_ms": 2.586667, "checkpoint": 0, "vertex_from": "16", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.648586322Z" + "timestamp": "2025-11-27T04:01:49.040912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704275, - "rtt_ms": 1.704275, + "rtt_ns": 2327542, + "rtt_ms": 2.327542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:50.648591762Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:49.040927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781384, - "rtt_ms": 1.781384, + "rtt_ns": 2308709, + "rtt_ms": 2.308709, "checkpoint": 0, "vertex_from": "16", "vertex_to": "141", - "timestamp": "2025-11-27T01:21:50.649327009Z" + "timestamp": "2025-11-27T04:01:49.040949-08:00" }, { "operation": "add_edge", - "rtt_ns": 963837, - "rtt_ms": 0.963837, + "rtt_ns": 1552250, + "rtt_ms": 1.55225, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.649416829Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:01:49.04217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709475, - "rtt_ms": 1.709475, + "rtt_ns": 1832709, + "rtt_ms": 1.832709, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:50.649432509Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:49.042184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471585, - "rtt_ms": 1.471585, + "rtt_ns": 1894709, + "rtt_ms": 1.894709, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.650051927Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:49.042263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523205, - "rtt_ms": 1.523205, + "rtt_ns": 1937417, + "rtt_ms": 1.937417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:50.650090237Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:49.042272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569815, - "rtt_ms": 1.569815, + "rtt_ns": 1733334, + "rtt_ms": 1.733334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "229", - "timestamp": "2025-11-27T01:21:50.650114437Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:49.042362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832824, - "rtt_ms": 1.832824, + "rtt_ns": 1593958, + "rtt_ms": 1.593958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.650364786Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:49.04239-08:00" }, { "operation": "add_edge", - "rtt_ns": 2394082, - "rtt_ms": 2.394082, + "rtt_ns": 1651916, + "rtt_ms": 1.651916, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.650987814Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:49.042446-08:00" }, { "operation": "add_edge", - "rtt_ns": 2442972, - "rtt_ms": 2.442972, + "rtt_ns": 1531625, + "rtt_ms": 1.531625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:50.651030214Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.042482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2528192, - "rtt_ms": 2.528192, + "rtt_ns": 1650250, + "rtt_ms": 1.65025, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:50.651093274Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:49.042563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797235, - "rtt_ms": 1.797235, + "rtt_ns": 1246166, + "rtt_ms": 1.246166, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.651126244Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.043729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855214, - "rtt_ms": 1.855214, + "rtt_ns": 1559166, + "rtt_ms": 1.559166, "checkpoint": 0, "vertex_from": "16", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.651289103Z" + "timestamp": "2025-11-27T04:01:49.043744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897254, - "rtt_ms": 1.897254, + "rtt_ns": 1789750, + "rtt_ms": 1.78975, "checkpoint": 0, "vertex_from": "16", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.651316063Z" + "timestamp": "2025-11-27T04:01:49.043961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478055, - "rtt_ms": 1.478055, + "rtt_ns": 1864333, + "rtt_ms": 1.864333, "checkpoint": 0, "vertex_from": "16", "vertex_to": "535", - "timestamp": "2025-11-27T01:21:50.651532212Z" + "timestamp": "2025-11-27T04:01:49.044128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518735, - "rtt_ms": 1.518735, + "rtt_ns": 1901125, + "rtt_ms": 1.901125, "checkpoint": 0, "vertex_from": "16", "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.651609942Z" + "timestamp": "2025-11-27T04:01:49.044174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536415, - "rtt_ms": 1.536415, + "rtt_ns": 3301958, + "rtt_ms": 3.301958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:50.651652452Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.04423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357046, - "rtt_ms": 1.357046, + "rtt_ns": 1981042, + "rtt_ms": 1.981042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "651", - "timestamp": "2025-11-27T01:21:50.651723952Z" + "vertex_to": "811", + "timestamp": "2025-11-27T04:01:49.044545-08:00" }, { "operation": "add_edge", - "rtt_ns": 817117, - "rtt_ms": 0.817117, + "rtt_ns": 2357416, + "rtt_ms": 2.357416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:50.651806331Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:49.044722-08:00" }, { "operation": "add_edge", - "rtt_ns": 702727, - "rtt_ms": 0.702727, + "rtt_ns": 2330125, + "rtt_ms": 2.330125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:50.651831421Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:49.044777-08:00" }, { "operation": "add_edge", - "rtt_ns": 882117, - "rtt_ms": 0.882117, + "rtt_ns": 1471583, + "rtt_ms": 1.471583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "811", - "timestamp": "2025-11-27T01:21:50.651976981Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:49.045435-08:00" }, { "operation": "add_edge", - "rtt_ns": 952257, - "rtt_ms": 0.952257, + "rtt_ns": 1699875, + "rtt_ms": 1.699875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.651983631Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:49.045446-08:00" }, { "operation": "add_edge", - "rtt_ns": 693638, - "rtt_ms": 0.693638, + "rtt_ns": 1795958, + "rtt_ms": 1.795958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.652011471Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:49.045528-08:00" }, { "operation": "add_edge", - "rtt_ns": 846617, - "rtt_ms": 0.846617, + "rtt_ns": 1380542, + "rtt_ms": 1.380542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:50.65213703Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:49.045611-08:00" }, { "operation": "add_edge", - "rtt_ns": 644578, - "rtt_ms": 0.644578, + "rtt_ns": 1587750, + "rtt_ms": 1.58775, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "19", - "timestamp": "2025-11-27T01:21:50.65217965Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:49.045763-08:00" }, { "operation": "add_edge", - "rtt_ns": 642748, - "rtt_ms": 0.642748, + "rtt_ns": 1704459, + "rtt_ms": 1.704459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:50.65225424Z" + "vertex_to": "19", + "timestamp": "2025-11-27T04:01:49.045834-08:00" }, { "operation": "add_edge", - "rtt_ns": 637148, - "rtt_ms": 0.637148, + "rtt_ns": 1178041, + "rtt_ms": 1.178041, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:50.6522907Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.045901-08:00" }, { "operation": "add_edge", - "rtt_ns": 694397, - "rtt_ms": 0.694397, + "rtt_ns": 1459791, + "rtt_ms": 1.459791, "checkpoint": 0, "vertex_from": "16", "vertex_to": "78", - "timestamp": "2025-11-27T01:21:50.652419799Z" + "timestamp": "2025-11-27T04:01:49.046006-08:00" }, { "operation": "add_edge", - "rtt_ns": 647358, - "rtt_ms": 0.647358, + "rtt_ns": 1238167, + "rtt_ms": 1.238167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.652455009Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:49.046767-08:00" }, { "operation": "add_edge", - "rtt_ns": 646308, - "rtt_ms": 0.646308, + "rtt_ns": 4774166, + "rtt_ms": 4.774166, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.652479189Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:01:49.047165-08:00" }, { "operation": "add_edge", - "rtt_ns": 566928, - "rtt_ms": 0.566928, + "rtt_ns": 2412416, + "rtt_ms": 2.412416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "634", - "timestamp": "2025-11-27T01:21:50.652550529Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:49.04719-08:00" }, { "operation": "add_edge", - "rtt_ns": 581008, - "rtt_ms": 0.581008, + "rtt_ns": 1957125, + "rtt_ms": 1.957125, "checkpoint": 0, "vertex_from": "16", "vertex_to": "50", - "timestamp": "2025-11-27T01:21:50.652566059Z" + "timestamp": "2025-11-27T04:01:49.047404-08:00" }, { "operation": "add_edge", - "rtt_ns": 670367, - "rtt_ms": 0.670367, + "rtt_ns": 2366875, + "rtt_ms": 2.366875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.652682908Z" + "vertex_to": "634", + "timestamp": "2025-11-27T04:01:49.047803-08:00" }, { "operation": "add_edge", - "rtt_ns": 801588, - "rtt_ms": 0.801588, + "rtt_ns": 2013125, + "rtt_ms": 2.013125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:50.652941588Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:49.04802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135026, - "rtt_ms": 1.135026, + "rtt_ns": 943292, + "rtt_ms": 0.943292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:50.653316566Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:49.048135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470385, - "rtt_ms": 1.470385, + "rtt_ns": 2383417, + "rtt_ms": 2.383417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:50.653726365Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:49.048147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549695, - "rtt_ms": 1.549695, + "rtt_ns": 2323084, + "rtt_ms": 2.323084, "checkpoint": 0, "vertex_from": "16", "vertex_to": "120", - "timestamp": "2025-11-27T01:21:50.653841885Z" + "timestamp": "2025-11-27T04:01:49.048225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938104, - "rtt_ms": 1.938104, + "rtt_ns": 2636750, + "rtt_ms": 2.63675, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:50.654359893Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:49.048249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106273, - "rtt_ms": 2.106273, + "rtt_ns": 2441292, + "rtt_ms": 2.441292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:50.654562952Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:49.048283-08:00" }, { "operation": "add_edge", - "rtt_ns": 2189023, - "rtt_ms": 2.189023, + "rtt_ns": 1547417, + "rtt_ms": 1.547417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:50.654670312Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:49.048315-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128783, - "rtt_ms": 2.128783, + "rtt_ns": 1345667, + "rtt_ms": 1.345667, "checkpoint": 0, "vertex_from": "16", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:50.654696642Z" + "timestamp": "2025-11-27T04:01:49.048751-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175423, - "rtt_ms": 2.175423, + "rtt_ns": 1178209, + "rtt_ms": 1.178209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:50.654728242Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:49.048982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826273, - "rtt_ms": 1.826273, + "rtt_ns": 1884541, + "rtt_ms": 1.884541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "436", - "timestamp": "2025-11-27T01:21:50.654769311Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:49.049052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2570142, - "rtt_ms": 2.570142, + "rtt_ns": 2156416, + "rtt_ms": 2.156416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:50.6552545Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:49.050294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641954, - "rtt_ms": 1.641954, + "rtt_ns": 1387041, + "rtt_ms": 1.387041, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "101", - "timestamp": "2025-11-27T01:21:50.655485039Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:49.05037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782254, - "rtt_ms": 1.782254, + "rtt_ns": 2376000, + "rtt_ms": 2.376, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:50.655510029Z" + "vertex_to": "436", + "timestamp": "2025-11-27T04:01:49.050397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033747, - "rtt_ms": 1.033747, + "rtt_ns": 2245667, + "rtt_ms": 2.245667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:50.655598589Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:49.050495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305845, - "rtt_ms": 1.305845, + "rtt_ns": 2270417, + "rtt_ms": 2.270417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:50.655667018Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:01:49.050497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2840361, - "rtt_ms": 2.840361, + "rtt_ns": 2259958, + "rtt_ms": 2.259958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:50.656158027Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:49.050576-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1588605, - "rtt_ms": 1.588605, + "operation": "add_edge", + "rtt_ns": 2486084, + "rtt_ms": 2.486084, "checkpoint": 0, - "vertex_from": "343", - "timestamp": "2025-11-27T01:21:50.656360236Z" + "vertex_from": "16", + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:49.050635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633624, - "rtt_ms": 1.633624, + "rtt_ns": 1943458, + "rtt_ms": 1.943458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.656364336Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:49.050697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667964, - "rtt_ms": 1.667964, + "rtt_ns": 2511625, + "rtt_ms": 2.511625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:50.656365556Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:49.050796-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2589834, + "rtt_ms": 2.589834, + "checkpoint": 0, + "vertex_from": "343", + "timestamp": "2025-11-27T04:01:49.051645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700474, - "rtt_ms": 1.700474, + "rtt_ns": 1596542, + "rtt_ms": 1.596542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:50.656372166Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:49.051891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271966, - "rtt_ms": 1.271966, + "rtt_ns": 1811500, + "rtt_ms": 1.8115, "checkpoint": 0, "vertex_from": "16", "vertex_to": "172", - "timestamp": "2025-11-27T01:21:50.656784605Z" + "timestamp": "2025-11-27T04:01:49.052209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491235, - "rtt_ms": 1.491235, + "rtt_ns": 1416541, + "rtt_ms": 1.416541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:50.656977624Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:49.052213-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1340056, - "rtt_ms": 1.340056, + "rtt_ns": 1733417, + "rtt_ms": 1.733417, "checkpoint": 0, "vertex_from": "789", - "timestamp": "2025-11-27T01:21:50.657009624Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1416435, - "rtt_ms": 1.416435, - "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:50.657016934Z" + "timestamp": "2025-11-27T04:01:49.052231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842544, - "rtt_ms": 1.842544, + "rtt_ns": 1944667, + "rtt_ms": 1.944667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:50.657098274Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:49.052521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022047, - "rtt_ms": 1.022047, + "rtt_ns": 1842917, + "rtt_ms": 1.842917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:50.657182014Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:49.05254-08:00" }, { "operation": "add_edge", - "rtt_ns": 825568, - "rtt_ms": 0.825568, + "rtt_ns": 2173792, + "rtt_ms": 2.173792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:50.657199324Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:49.052545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335106, - "rtt_ms": 1.335106, + "rtt_ns": 2397542, + "rtt_ms": 2.397542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "343", - "timestamp": "2025-11-27T01:21:50.657696012Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:49.053033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412506, - "rtt_ms": 1.412506, + "rtt_ns": 2650417, + "rtt_ms": 2.650417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:50.657779482Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:49.053147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619995, - "rtt_ms": 1.619995, + "rtt_ns": 1247958, + "rtt_ms": 1.247958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "51", - "timestamp": "2025-11-27T01:21:50.65840688Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:49.053458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453916, - "rtt_ms": 1.453916, + "rtt_ns": 1824792, + "rtt_ms": 1.824792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:50.65843277Z" + "vertex_to": "343", + "timestamp": "2025-11-27T04:01:49.053471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469806, - "rtt_ms": 1.469806, + "rtt_ns": 1726958, + "rtt_ms": 1.726958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:50.65848826Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:01:49.053619-08:00" }, { "operation": "add_edge", - "rtt_ns": 2123024, - "rtt_ms": 2.123024, + "rtt_ns": 1414833, + "rtt_ms": 1.414833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:50.65848937Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.053956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485145, - "rtt_ms": 1.485145, + "rtt_ns": 1840167, + "rtt_ms": 1.840167, "checkpoint": 0, "vertex_from": "16", "vertex_to": "789", - "timestamp": "2025-11-27T01:21:50.658495209Z" + "timestamp": "2025-11-27T04:01:49.054072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417185, - "rtt_ms": 1.417185, + "rtt_ns": 1731417, + "rtt_ms": 1.731417, "checkpoint": 0, "vertex_from": "16", "vertex_to": "540", - "timestamp": "2025-11-27T01:21:50.658516359Z" + "timestamp": "2025-11-27T04:01:49.054254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351825, - "rtt_ms": 1.351825, + "rtt_ns": 1293459, + "rtt_ms": 1.293459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.658537619Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:49.054753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530535, - "rtt_ms": 1.530535, + "rtt_ns": 2594084, + "rtt_ms": 2.594084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:50.658732089Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:49.054808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196283, - "rtt_ms": 2.196283, + "rtt_ns": 2295083, + "rtt_ms": 2.295083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.659896015Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:49.054841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637894, - "rtt_ms": 1.637894, + "rtt_ns": 1488000, + "rtt_ms": 1.488, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "173", - "timestamp": "2025-11-27T01:21:50.660072464Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:49.055108-08:00" }, { "operation": "add_edge", - "rtt_ns": 2798391, - "rtt_ms": 2.798391, + "rtt_ns": 2019209, + "rtt_ms": 2.019209, "checkpoint": 0, "vertex_from": "16", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:50.660580073Z" + "timestamp": "2025-11-27T04:01:49.055169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131473, - "rtt_ms": 2.131473, + "rtt_ns": 1793625, + "rtt_ms": 1.793625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "837", - "timestamp": "2025-11-27T01:21:50.660649552Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:01:49.055265-08:00" }, { "operation": "add_edge", - "rtt_ns": 2290142, - "rtt_ms": 2.290142, + "rtt_ns": 2259333, + "rtt_ms": 2.259333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.660699222Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:49.055293-08:00" }, { "operation": "add_edge", - "rtt_ns": 2311633, - "rtt_ms": 2.311633, + "rtt_ns": 1274875, + "rtt_ms": 1.274875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.660809152Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:01:49.055529-08:00" }, { "operation": "add_edge", - "rtt_ns": 2472891, - "rtt_ms": 2.472891, + "rtt_ns": 1696042, + "rtt_ms": 1.696042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:50.660962681Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:49.055653-08:00" }, { "operation": "add_edge", - "rtt_ns": 3140119, - "rtt_ms": 3.140119, + "rtt_ns": 1766083, + "rtt_ms": 1.766083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:50.661874398Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:49.055839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1982793, - "rtt_ms": 1.982793, + "rtt_ns": 1385541, + "rtt_ms": 1.385541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "391", - "timestamp": "2025-11-27T01:21:50.661880108Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:49.056555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302205, - "rtt_ms": 1.302205, + "rtt_ns": 1945334, + "rtt_ms": 1.945334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.661884058Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.0567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810524, - "rtt_ms": 1.810524, + "rtt_ns": 1929833, + "rtt_ms": 1.929833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:50.661885248Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:49.056741-08:00" }, { "operation": "add_edge", - "rtt_ns": 3347389, - "rtt_ms": 3.347389, + "rtt_ns": 1736500, + "rtt_ms": 1.7365, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.661886328Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:49.056846-08:00" }, { "operation": "add_edge", - "rtt_ns": 3774057, - "rtt_ms": 3.774057, + "rtt_ns": 1979041, + "rtt_ms": 1.979041, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:50.662264747Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:49.057275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572355, - "rtt_ms": 1.572355, + "rtt_ns": 1766334, + "rtt_ms": 1.766334, "checkpoint": 0, "vertex_from": "16", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.662383077Z" + "timestamp": "2025-11-27T04:01:49.057297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710295, - "rtt_ms": 1.710295, + "rtt_ns": 2059291, + "rtt_ms": 2.059291, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:50.662411117Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:49.057325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772145, - "rtt_ms": 1.772145, + "rtt_ns": 2609292, + "rtt_ms": 2.609292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.662423887Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:01:49.057452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533145, - "rtt_ms": 1.533145, + "rtt_ns": 2261959, + "rtt_ms": 2.261959, "checkpoint": 0, "vertex_from": "16", "vertex_to": "838", - "timestamp": "2025-11-27T01:21:50.662496906Z" + "timestamp": "2025-11-27T04:01:49.057916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201276, - "rtt_ms": 1.201276, + "rtt_ns": 1090916, + "rtt_ms": 1.090916, "checkpoint": 0, "vertex_from": "16", "vertex_to": "558", - "timestamp": "2025-11-27T01:21:50.663090654Z" + "timestamp": "2025-11-27T04:01:49.057937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705415, - "rtt_ms": 1.705415, + "rtt_ns": 1382958, + "rtt_ms": 1.382958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "921", - "timestamp": "2025-11-27T01:21:50.663582143Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:49.057939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732035, - "rtt_ms": 1.732035, + "rtt_ns": 1202750, + "rtt_ms": 1.20275, "checkpoint": 0, "vertex_from": "16", "vertex_to": "922", - "timestamp": "2025-11-27T01:21:50.663620013Z" + "timestamp": "2025-11-27T04:01:49.057944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777904, - "rtt_ms": 1.777904, + "rtt_ns": 1248667, + "rtt_ms": 1.248667, "checkpoint": 0, "vertex_from": "16", "vertex_to": "209", - "timestamp": "2025-11-27T01:21:50.663664862Z" + "timestamp": "2025-11-27T04:01:49.057949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926734, - "rtt_ms": 1.926734, + "rtt_ns": 2178750, + "rtt_ms": 2.17875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.663809182Z" + "vertex_to": "921", + "timestamp": "2025-11-27T04:01:49.058018-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1385885, - "rtt_ms": 1.385885, + "operation": "add_vertex", + "rtt_ns": 1191917, + "rtt_ms": 1.191917, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "205", - "timestamp": "2025-11-27T01:21:50.663811212Z" + "vertex_from": "861", + "timestamp": "2025-11-27T04:01:49.058491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574015, - "rtt_ms": 1.574015, + "rtt_ns": 1248875, + "rtt_ms": 1.248875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:50.663840932Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:49.058575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368336, - "rtt_ms": 1.368336, + "rtt_ns": 1427375, + "rtt_ms": 1.427375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:50.663866952Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1510965, - "rtt_ms": 1.510965, - "checkpoint": 0, - "vertex_from": "861", - "timestamp": "2025-11-27T01:21:50.663896072Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:49.058703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491265, - "rtt_ms": 1.491265, + "rtt_ns": 1335292, + "rtt_ms": 1.335292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:50.663904242Z" + "vertex_to": "205", + "timestamp": "2025-11-27T04:01:49.058788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673075, - "rtt_ms": 1.673075, + "rtt_ns": 1733667, + "rtt_ms": 1.733667, "checkpoint": 0, "vertex_from": "16", "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.665296087Z" + "timestamp": "2025-11-27T04:01:49.05968-08:00" }, { "operation": "add_edge", - "rtt_ns": 2428872, - "rtt_ms": 2.428872, + "rtt_ns": 1699333, + "rtt_ms": 1.699333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:50.665521556Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:49.059719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2370322, - "rtt_ms": 2.370322, + "rtt_ns": 1680833, + "rtt_ms": 1.680833, "checkpoint": 0, "vertex_from": "16", "vertex_to": "579", - "timestamp": "2025-11-27T01:21:50.666182974Z" + "timestamp": "2025-11-27T04:01:49.060257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2666471, - "rtt_ms": 2.666471, + "rtt_ns": 2810208, + "rtt_ms": 2.810208, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.666250334Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2480182, - "rtt_ms": 2.480182, - "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "662", - "timestamp": "2025-11-27T01:21:50.666290794Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:49.060727-08:00" }, { "operation": "add_edge", - "rtt_ns": 2513292, - "rtt_ms": 2.513292, + "rtt_ns": 2029917, + "rtt_ms": 2.029917, "checkpoint": 0, "vertex_from": "16", "vertex_to": "121", - "timestamp": "2025-11-27T01:21:50.666355404Z" + "timestamp": "2025-11-27T04:01:49.060734-08:00" }, { "operation": "add_edge", - "rtt_ns": 2511192, - "rtt_ms": 2.511192, + "rtt_ns": 2253125, + "rtt_ms": 2.253125, "checkpoint": 0, "vertex_from": "16", "vertex_to": "861", - "timestamp": "2025-11-27T01:21:50.666407574Z" + "timestamp": "2025-11-27T04:01:49.060745-08:00" }, { "operation": "add_edge", - "rtt_ns": 2828411, - "rtt_ms": 2.828411, + "rtt_ns": 2795708, + "rtt_ms": 2.795708, "checkpoint": 0, "vertex_from": "16", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.666494783Z" + "timestamp": "2025-11-27T04:01:49.060746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2698611, - "rtt_ms": 2.698611, + "rtt_ns": 2812375, + "rtt_ms": 2.812375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:50.666566823Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:49.060751-08:00" }, { "operation": "add_edge", - "rtt_ns": 2752161, - "rtt_ms": 2.752161, + "rtt_ns": 2085916, + "rtt_ms": 2.085916, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.666658083Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:49.060874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180457, - "rtt_ms": 1.180457, + "rtt_ns": 1391417, + "rtt_ms": 1.391417, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:50.666703883Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:49.061075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461246, - "rtt_ms": 1.461246, + "rtt_ns": 1558333, + "rtt_ms": 1.558333, "checkpoint": 0, "vertex_from": "16", "vertex_to": "777", - "timestamp": "2025-11-27T01:21:50.666762653Z" + "timestamp": "2025-11-27T04:01:49.061279-08:00" }, { "operation": "add_edge", - "rtt_ns": 695898, - "rtt_ms": 0.695898, + "rtt_ns": 3356750, + "rtt_ms": 3.35675, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.666880102Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.061297-08:00" }, { "operation": "add_edge", - "rtt_ns": 733507, - "rtt_ms": 0.733507, + "rtt_ns": 1344125, + "rtt_ms": 1.344125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:50.667090091Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:49.061602-08:00" }, { "operation": "add_edge", - "rtt_ns": 884687, - "rtt_ms": 0.884687, + "rtt_ns": 1257167, + "rtt_ms": 1.257167, "checkpoint": 0, "vertex_from": "16", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:50.667176751Z" + "timestamp": "2025-11-27T04:01:49.062003-08:00" }, { "operation": "add_edge", - "rtt_ns": 969317, - "rtt_ms": 0.969317, + "rtt_ns": 1546792, + "rtt_ms": 1.546792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:50.667222271Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:49.062296-08:00" }, { "operation": "add_edge", - "rtt_ns": 909677, - "rtt_ms": 0.909677, + "rtt_ns": 1751125, + "rtt_ms": 1.751125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "39", - "timestamp": "2025-11-27T01:21:50.667319161Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:49.062486-08:00" }, { "operation": "add_edge", - "rtt_ns": 824248, - "rtt_ms": 0.824248, + "rtt_ns": 1788792, + "rtt_ms": 1.788792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.667320201Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:49.062516-08:00" }, { "operation": "add_edge", - "rtt_ns": 797988, - "rtt_ms": 0.797988, + "rtt_ns": 1530209, + "rtt_ms": 1.530209, "checkpoint": 0, "vertex_from": "16", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.667366221Z" + "timestamp": "2025-11-27T04:01:49.062607-08:00" }, { "operation": "add_edge", - "rtt_ns": 766017, - "rtt_ms": 0.766017, + "rtt_ns": 1491459, + "rtt_ms": 1.491459, "checkpoint": 0, "vertex_from": "16", "vertex_to": "228", - "timestamp": "2025-11-27T01:21:50.66742612Z" + "timestamp": "2025-11-27T04:01:49.062772-08:00" }, { "operation": "add_edge", - "rtt_ns": 772797, - "rtt_ms": 0.772797, + "rtt_ns": 2025208, + "rtt_ms": 2.025208, + "checkpoint": 0, + "vertex_from": "16", + "vertex_to": "39", + "timestamp": "2025-11-27T04:01:49.062777-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1506916, + "rtt_ms": 1.506916, "checkpoint": 0, "vertex_from": "16", "vertex_to": "647", - "timestamp": "2025-11-27T01:21:50.66747811Z" + "timestamp": "2025-11-27T04:01:49.062805-08:00" }, { "operation": "add_edge", - "rtt_ns": 814187, - "rtt_ms": 0.814187, + "rtt_ns": 1224041, + "rtt_ms": 1.224041, "checkpoint": 0, "vertex_from": "16", "vertex_to": "211", - "timestamp": "2025-11-27T01:21:50.66757825Z" + "timestamp": "2025-11-27T04:01:49.062828-08:00" }, { "operation": "add_edge", - "rtt_ns": 707798, - "rtt_ms": 0.707798, + "rtt_ns": 1962625, + "rtt_ms": 1.962625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:50.66758943Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:49.062838-08:00" }, { "operation": "add_edge", - "rtt_ns": 566969, - "rtt_ms": 0.566969, + "rtt_ns": 1236084, + "rtt_ms": 1.236084, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:50.66765898Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:49.06324-08:00" }, { "operation": "add_edge", - "rtt_ns": 672118, - "rtt_ms": 0.672118, + "rtt_ns": 1348541, + "rtt_ms": 1.348541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:50.667850529Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:49.063956-08:00" }, { "operation": "add_edge", - "rtt_ns": 643528, - "rtt_ms": 0.643528, + "rtt_ns": 1542250, + "rtt_ms": 1.54225, "checkpoint": 0, "vertex_from": "16", "vertex_to": "316", - "timestamp": "2025-11-27T01:21:50.667867329Z" + "timestamp": "2025-11-27T04:01:49.06406-08:00" }, { "operation": "add_edge", - "rtt_ns": 738227, - "rtt_ms": 0.738227, + "rtt_ns": 1332791, + "rtt_ms": 1.332791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:50.668059818Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:49.064111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312455, - "rtt_ms": 1.312455, + "rtt_ns": 1901917, + "rtt_ms": 1.901917, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:50.668633066Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:49.0642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277365, - "rtt_ms": 1.277365, + "rtt_ns": 1391334, + "rtt_ms": 1.391334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:50.668645556Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:49.064221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003636, - "rtt_ms": 1.003636, + "rtt_ns": 1800750, + "rtt_ms": 1.80075, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.668664036Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:49.064574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146606, - "rtt_ms": 1.146606, + "rtt_ns": 2131292, + "rtt_ms": 2.131292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.668736956Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:49.06462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382076, - "rtt_ms": 1.382076, + "rtt_ns": 2151459, + "rtt_ms": 2.151459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:50.668861496Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:49.064991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285716, - "rtt_ms": 1.285716, + "rtt_ns": 1810209, + "rtt_ms": 1.810209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.668865946Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.065051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440886, - "rtt_ms": 1.440886, + "rtt_ns": 1095500, + "rtt_ms": 1.0955, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "341", - "timestamp": "2025-11-27T01:21:50.668868536Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:49.065053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111546, - "rtt_ms": 1.111546, + "rtt_ns": 2319792, + "rtt_ms": 2.319792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.668963235Z" + "vertex_to": "341", + "timestamp": "2025-11-27T04:01:49.065127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142266, - "rtt_ms": 1.142266, + "rtt_ns": 1306291, + "rtt_ms": 1.306291, "checkpoint": 0, "vertex_from": "16", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:50.669011165Z" + "timestamp": "2025-11-27T04:01:49.065419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109227, - "rtt_ms": 1.109227, + "rtt_ns": 1786666, + "rtt_ms": 1.786666, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:50.669171035Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.065849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175286, - "rtt_ms": 1.175286, + "rtt_ns": 1643583, + "rtt_ms": 1.643583, "checkpoint": 0, "vertex_from": "16", "vertex_to": "116", - "timestamp": "2025-11-27T01:21:50.669810452Z" + "timestamp": "2025-11-27T04:01:49.065867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304246, - "rtt_ms": 1.304246, + "rtt_ns": 1424125, + "rtt_ms": 1.424125, "checkpoint": 0, "vertex_from": "16", "vertex_to": "597", - "timestamp": "2025-11-27T01:21:50.669951252Z" + "timestamp": "2025-11-27T04:01:49.066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687895, - "rtt_ms": 1.687895, + "rtt_ns": 993500, + "rtt_ms": 0.9935, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:50.670353731Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:49.066047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737594, - "rtt_ms": 1.737594, + "rtt_ns": 1465542, + "rtt_ms": 1.465542, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.67047574Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:49.066087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686484, - "rtt_ms": 1.686484, + "rtt_ns": 1979125, + "rtt_ms": 1.979125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.67054991Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:49.06618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315772, - "rtt_ms": 2.315772, + "rtt_ns": 1205792, + "rtt_ms": 1.205792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:50.671184438Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:49.066197-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 732458, - "rtt_ms": 0.732458, + "operation": "add_edge", + "rtt_ns": 1261292, + "rtt_ms": 1.261292, "checkpoint": 0, - "vertex_from": "487", - "timestamp": "2025-11-27T01:21:50.671284708Z" + "vertex_from": "16", + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:49.066315-08:00" }, { "operation": "add_edge", - "rtt_ns": 2431931, - "rtt_ms": 2.431931, + "rtt_ns": 1199000, + "rtt_ms": 1.199, "checkpoint": 0, "vertex_from": "16", "vertex_to": "225", - "timestamp": "2025-11-27T01:21:50.671302317Z" + "timestamp": "2025-11-27T04:01:49.066327-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2351562, - "rtt_ms": 2.351562, + "operation": "add_vertex", + "rtt_ns": 1067833, + "rtt_ms": 1.067833, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:50.671316717Z" + "vertex_from": "798", + "timestamp": "2025-11-27T04:01:49.067397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151382, - "rtt_ms": 2.151382, + "rtt_ns": 1229375, + "rtt_ms": 1.229375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:50.671324117Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:49.06741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588165, - "rtt_ms": 1.588165, + "rtt_ns": 2007000, + "rtt_ms": 2.007, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:50.671400637Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:49.068055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2396182, - "rtt_ms": 2.396182, + "rtt_ns": 2779166, + "rtt_ms": 2.779166, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "557", - "timestamp": "2025-11-27T01:21:50.671408607Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:49.068199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493915, - "rtt_ms": 1.493915, + "rtt_ns": 2231334, + "rtt_ms": 2.231334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:50.671446287Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:49.068234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821454, - "rtt_ms": 1.821454, + "rtt_ns": 2197375, + "rtt_ms": 2.197375, "checkpoint": 0, "vertex_from": "16", "vertex_to": "541", - "timestamp": "2025-11-27T01:21:50.672177065Z" + "timestamp": "2025-11-27T04:01:49.068286-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 890918, - "rtt_ms": 0.890918, + "operation": "add_edge", + "rtt_ns": 2430833, + "rtt_ms": 2.430833, "checkpoint": 0, - "vertex_from": "798", - "timestamp": "2025-11-27T01:21:50.672194745Z" + "vertex_from": "16", + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:49.068299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057026, - "rtt_ms": 1.057026, + "rtt_ns": 2521334, + "rtt_ms": 2.521334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "346", - "timestamp": "2025-11-27T01:21:50.672242884Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:49.068371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785554, - "rtt_ms": 1.785554, + "rtt_ns": 2626083, + "rtt_ms": 2.626083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:50.672262354Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:01:49.068942-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2763542, + "rtt_ms": 2.763542, + "checkpoint": 0, + "vertex_from": "487", + "timestamp": "2025-11-27T04:01:49.068962-08:00" }, { "operation": "add_edge", - "rtt_ns": 878087, - "rtt_ms": 0.878087, + "rtt_ns": 1645750, + "rtt_ms": 1.64575, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:50.672280034Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:49.069057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001256, - "rtt_ms": 1.001256, + "rtt_ns": 1363792, + "rtt_ms": 1.363792, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "487", - "timestamp": "2025-11-27T01:21:50.672286394Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:49.069602-08:00" }, { "operation": "add_edge", - "rtt_ns": 964847, - "rtt_ms": 0.964847, + "rtt_ns": 2217500, + "rtt_ms": 2.2175, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:50.672290644Z" + "vertex_to": "798", + "timestamp": "2025-11-27T04:01:49.069615-08:00" }, { "operation": "add_edge", - "rtt_ns": 986457, - "rtt_ms": 0.986457, + "rtt_ns": 1480292, + "rtt_ms": 1.480292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.672306874Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:49.069767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849794, - "rtt_ms": 1.849794, + "rtt_ns": 1506709, + "rtt_ms": 1.506709, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.673259371Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:49.069809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824294, - "rtt_ms": 1.824294, + "rtt_ns": 1462000, + "rtt_ms": 1.462, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:50.673271541Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:49.069834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122927, - "rtt_ms": 1.122927, + "rtt_ns": 927500, + "rtt_ms": 0.9275, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.673405161Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:49.069871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293986, - "rtt_ms": 1.293986, + "rtt_ns": 1787416, + "rtt_ms": 1.787416, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.67353797Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:49.069987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333456, - "rtt_ms": 1.333456, + "rtt_ns": 2130333, + "rtt_ms": 2.130333, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.67364148Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:49.070186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376446, - "rtt_ms": 1.376446, + "rtt_ns": 1280667, + "rtt_ms": 1.280667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:50.67366818Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:49.070338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505965, - "rtt_ms": 1.505965, + "rtt_ns": 1521791, + "rtt_ms": 1.521791, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "798", - "timestamp": "2025-11-27T01:21:50.67370106Z" + "vertex_to": "487", + "timestamp": "2025-11-27T04:01:49.070484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593425, - "rtt_ms": 1.593425, + "rtt_ns": 1401541, + "rtt_ms": 1.401541, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:50.67377177Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:49.071018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496476, - "rtt_ms": 1.496476, + "rtt_ns": 1488208, + "rtt_ms": 1.488208, "checkpoint": 0, "vertex_from": "16", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:50.67378422Z" + "timestamp": "2025-11-27T04:01:49.071091-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1533005, - "rtt_ms": 1.533005, + "operation": "add_vertex", + "rtt_ns": 1734208, + "rtt_ms": 1.734208, "checkpoint": 0, - "vertex_from": "16", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.673796659Z" + "vertex_from": "79", + "timestamp": "2025-11-27T04:01:49.071606-08:00" }, { "operation": "add_edge", - "rtt_ns": 748898, - "rtt_ms": 0.748898, + "rtt_ns": 1787166, + "rtt_ms": 1.787166, "checkpoint": 0, "vertex_from": "16", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.674022009Z" + "timestamp": "2025-11-27T04:01:49.071622-08:00" }, { "operation": "add_edge", - "rtt_ns": 762248, - "rtt_ms": 0.762248, + "rtt_ns": 1842583, + "rtt_ms": 1.842583, "checkpoint": 0, "vertex_from": "16", "vertex_to": "614", - "timestamp": "2025-11-27T01:21:50.674023909Z" + "timestamp": "2025-11-27T04:01:49.071652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334526, - "rtt_ms": 1.334526, + "rtt_ns": 1703125, + "rtt_ms": 1.703125, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:50.675037236Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:01:49.071691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269595, - "rtt_ms": 1.269595, + "rtt_ns": 1944334, + "rtt_ms": 1.944334, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:50.675054675Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:49.071712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302166, - "rtt_ms": 1.302166, + "rtt_ns": 1574500, + "rtt_ms": 1.5745, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.675100275Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:49.071762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342525, - "rtt_ms": 1.342525, + "rtt_ns": 1495750, + "rtt_ms": 1.49575, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "566", - "timestamp": "2025-11-27T01:21:50.675115265Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:49.071981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472775, - "rtt_ms": 1.472775, + "rtt_ns": 1809583, + "rtt_ms": 1.809583, "checkpoint": 0, "vertex_from": "16", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.675142915Z" + "timestamp": "2025-11-27T04:01:49.07215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808435, - "rtt_ms": 1.808435, + "rtt_ns": 1328500, + "rtt_ms": 1.3285, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "451", - "timestamp": "2025-11-27T01:21:50.675347265Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1957484, - "rtt_ms": 1.957484, - "checkpoint": 0, - "vertex_from": "79", - "timestamp": "2025-11-27T01:21:50.675364575Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:49.072422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732344, - "rtt_ms": 1.732344, + "rtt_ns": 1719875, + "rtt_ms": 1.719875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:50.675374934Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:01:49.072739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921084, - "rtt_ms": 1.921084, + "rtt_ns": 1379458, + "rtt_ms": 1.379458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "339", - "timestamp": "2025-11-27T01:21:50.675946173Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:49.073142-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1979513, - "rtt_ms": 1.979513, + "rtt_ns": 1576791, + "rtt_ms": 1.576791, "checkpoint": 0, "vertex_from": "931", - "timestamp": "2025-11-27T01:21:50.676003392Z" + "timestamp": "2025-11-27T04:01:49.07323-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1321196, - "rtt_ms": 1.321196, + "rtt_ns": 1395208, + "rtt_ms": 1.395208, "checkpoint": 0, "vertex_from": "986", - "timestamp": "2025-11-27T01:21:50.676423601Z" + "timestamp": "2025-11-27T04:01:49.073377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409066, - "rtt_ms": 1.409066, + "rtt_ns": 1806250, + "rtt_ms": 1.80625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:50.676464931Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:01:49.073498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453445, - "rtt_ms": 1.453445, + "rtt_ns": 1356042, + "rtt_ms": 1.356042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:50.676492511Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:49.073507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349566, - "rtt_ms": 1.349566, + "rtt_ns": 1863875, + "rtt_ms": 1.863875, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:50.676494121Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:49.073577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445166, - "rtt_ms": 1.445166, + "rtt_ns": 2004583, + "rtt_ms": 2.004583, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:50.676562321Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:49.073628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226036, - "rtt_ms": 1.226036, + "rtt_ns": 2393959, + "rtt_ms": 2.393959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:50.676574201Z" + "vertex_to": "79", + "timestamp": "2025-11-27T04:01:49.074-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052623, - "rtt_ms": 2.052623, + "rtt_ns": 1479500, + "rtt_ms": 1.4795, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "79", - "timestamp": "2025-11-27T01:21:50.677417508Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:49.074219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869654, - "rtt_ms": 1.869654, + "rtt_ns": 1303042, + "rtt_ms": 1.303042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:50.677817667Z" + "vertex_to": "931", + "timestamp": "2025-11-27T04:01:49.074533-08:00" }, { "operation": "add_edge", - "rtt_ns": 2489923, - "rtt_ms": 2.489923, + "rtt_ns": 2246083, + "rtt_ms": 2.246083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:50.677871357Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:49.074669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900784, - "rtt_ms": 1.900784, + "rtt_ns": 1888833, + "rtt_ms": 1.888833, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "931", - "timestamp": "2025-11-27T01:21:50.677904446Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:49.075032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487375, - "rtt_ms": 1.487375, + "rtt_ns": 1491459, + "rtt_ms": 1.491459, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "986", - "timestamp": "2025-11-27T01:21:50.677911336Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:49.075069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526565, - "rtt_ms": 1.526565, + "rtt_ns": 1202042, + "rtt_ms": 1.202042, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:50.677992356Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:49.075203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571295, - "rtt_ms": 1.571295, + "rtt_ns": 1681500, + "rtt_ms": 1.6815, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:50.678135166Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:01:49.07531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661575, - "rtt_ms": 1.661575, + "rtt_ns": 1945958, + "rtt_ms": 1.945958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:50.678155046Z" + "vertex_to": "986", + "timestamp": "2025-11-27T04:01:49.075323-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156773, - "rtt_ms": 2.156773, + "rtt_ns": 1896958, + "rtt_ms": 1.896958, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:50.678732134Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:49.075398-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317443, - "rtt_ms": 2.317443, + "rtt_ns": 1351167, + "rtt_ms": 1.351167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "790", - "timestamp": "2025-11-27T01:21:50.678812824Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:49.075572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432615, - "rtt_ms": 1.432615, + "rtt_ns": 3109083, + "rtt_ms": 3.109083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:50.678851703Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:49.076617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035726, - "rtt_ms": 1.035726, + "rtt_ns": 2261625, + "rtt_ms": 2.261625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.678854953Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:49.076796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093316, - "rtt_ms": 1.093316, + "rtt_ns": 1498209, + "rtt_ms": 1.498209, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:50.678965833Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:49.076809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513226, - "rtt_ms": 1.513226, + "rtt_ns": 2264458, + "rtt_ms": 2.264458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:50.679418592Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:49.076934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546326, - "rtt_ms": 1.546326, + "rtt_ns": 1930417, + "rtt_ms": 1.930417, "checkpoint": 0, "vertex_from": "16", "vertex_to": "368", - "timestamp": "2025-11-27T01:21:50.679459102Z" + "timestamp": "2025-11-27T04:01:49.077136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323846, - "rtt_ms": 1.323846, + "rtt_ns": 2395959, + "rtt_ms": 2.395959, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:50.679460312Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:49.077431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549535, - "rtt_ms": 1.549535, + "rtt_ns": 1872667, + "rtt_ms": 1.872667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:50.679707901Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:49.077446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760915, - "rtt_ms": 1.760915, + "rtt_ns": 2109167, + "rtt_ms": 2.109167, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "485", - "timestamp": "2025-11-27T01:21:50.679754521Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:49.077507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584545, - "rtt_ms": 1.584545, + "rtt_ns": 2442584, + "rtt_ms": 2.442584, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.680317619Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:49.077513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675054, - "rtt_ms": 1.675054, + "rtt_ns": 2250458, + "rtt_ms": 2.250458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:50.680490288Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:49.077574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667915, - "rtt_ms": 1.667915, + "rtt_ns": 1048458, + "rtt_ms": 1.048458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:50.680520618Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:49.077984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693625, - "rtt_ms": 1.693625, + "rtt_ns": 1245709, + "rtt_ms": 1.245709, "checkpoint": 0, "vertex_from": "16", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:50.680549648Z" + "timestamp": "2025-11-27T04:01:49.078056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805984, - "rtt_ms": 1.805984, + "rtt_ns": 1640166, + "rtt_ms": 1.640166, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:50.680772947Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:49.078437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345325, - "rtt_ms": 1.345325, + "rtt_ns": 1363083, + "rtt_ms": 1.363083, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "466", - "timestamp": "2025-11-27T01:21:50.680807127Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:01:49.0785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415995, - "rtt_ms": 1.415995, + "rtt_ns": 1886750, + "rtt_ms": 1.88675, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:50.680876347Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:49.078505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180876, - "rtt_ms": 1.180876, + "rtt_ns": 1275667, + "rtt_ms": 1.275667, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:50.680892587Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:01:49.07885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144066, - "rtt_ms": 1.144066, + "rtt_ns": 1638375, + "rtt_ms": 1.638375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:50.680900307Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:01:49.079085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543075, - "rtt_ms": 1.543075, + "rtt_ns": 1211375, + "rtt_ms": 1.211375, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "809", - "timestamp": "2025-11-27T01:21:50.680962817Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:49.079268-08:00" }, { "operation": "add_edge", - "rtt_ns": 659897, - "rtt_ms": 0.659897, + "rtt_ns": 1459458, + "rtt_ms": 1.459458, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "46", - "timestamp": "2025-11-27T01:21:50.680979186Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:49.079444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041477, - "rtt_ms": 1.041477, + "rtt_ns": 2300292, + "rtt_ms": 2.300292, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:50.681533385Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:49.079814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197956, - "rtt_ms": 1.197956, + "rtt_ns": 1363458, + "rtt_ms": 1.363458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.681749134Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:49.079865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265666, - "rtt_ms": 1.265666, + "rtt_ns": 2660625, + "rtt_ms": 2.660625, "checkpoint": 0, "vertex_from": "16", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:50.681787814Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:49.080092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672725, - "rtt_ms": 1.672725, + "rtt_ns": 1611500, + "rtt_ms": 1.6115, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:50.682447672Z" + "vertex_to": "87", + "timestamp": "2025-11-27T04:01:49.080118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747654, - "rtt_ms": 1.747654, + "rtt_ns": 2675333, + "rtt_ms": 2.675333, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "87", - "timestamp": "2025-11-27T01:21:50.682556171Z" + "vertex_from": "16", + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:49.080184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674984, - "rtt_ms": 1.674984, + "rtt_ns": 2216667, + "rtt_ms": 2.216667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.682576811Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.080657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047006, - "rtt_ms": 1.047006, + "rtt_ns": 2035459, + "rtt_ms": 2.035459, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "601", - "timestamp": "2025-11-27T01:21:50.682581861Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.080888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705404, - "rtt_ms": 1.705404, + "rtt_ns": 2065834, + "rtt_ms": 2.065834, "checkpoint": 0, "vertex_from": "17", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.682599591Z" + "timestamp": "2025-11-27T04:01:49.081153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642484, - "rtt_ms": 1.642484, + "rtt_ns": 1805042, + "rtt_ms": 1.805042, "checkpoint": 0, "vertex_from": "17", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:50.682606881Z" + "timestamp": "2025-11-27T04:01:49.08125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732634, - "rtt_ms": 1.732634, + "rtt_ns": 1594584, + "rtt_ms": 1.594584, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.682609771Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:49.081409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801374, - "rtt_ms": 1.801374, + "rtt_ns": 2200042, + "rtt_ms": 2.200042, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:50.68278182Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:49.081469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260136, - "rtt_ms": 1.260136, + "rtt_ns": 1396500, + "rtt_ms": 1.3965, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.68301122Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:49.081581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276195, - "rtt_ms": 1.276195, + "rtt_ns": 1795166, + "rtt_ms": 1.795166, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.683066599Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:49.081663-08:00" }, { "operation": "add_edge", - "rtt_ns": 519088, - "rtt_ms": 0.519088, + "rtt_ns": 1750666, + "rtt_ms": 1.750666, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:50.683097009Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:49.08187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315775, - "rtt_ms": 1.315775, + "rtt_ns": 1272292, + "rtt_ms": 1.272292, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.683764617Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.08193-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1299416, - "rtt_ms": 1.299416, + "operation": "add_edge", + "rtt_ns": 1962750, + "rtt_ms": 1.96275, "checkpoint": 0, - "vertex_from": "685", - "timestamp": "2025-11-27T01:21:50.683884457Z" + "vertex_from": "17", + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.082056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823434, - "rtt_ms": 1.823434, + "rtt_ns": 1326958, + "rtt_ms": 1.326958, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.684382345Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:49.082218-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1934574, - "rtt_ms": 1.934574, + "operation": "add_vertex", + "rtt_ns": 1166958, + "rtt_ms": 1.166958, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.684545685Z" + "vertex_from": "685", + "timestamp": "2025-11-27T04:01:49.082321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941714, - "rtt_ms": 1.941714, + "rtt_ns": 1387667, + "rtt_ms": 1.387667, "checkpoint": 0, "vertex_from": "17", "vertex_to": "403", - "timestamp": "2025-11-27T01:21:50.684549855Z" + "timestamp": "2025-11-27T04:01:49.082639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2532572, - "rtt_ms": 2.532572, + "rtt_ns": 1933166, + "rtt_ms": 1.933166, "checkpoint": 0, "vertex_from": "17", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:50.685141193Z" + "timestamp": "2025-11-27T04:01:49.083345-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124584, - "rtt_ms": 2.124584, + "rtt_ns": 1505375, + "rtt_ms": 1.505375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:50.685223403Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:49.083378-08:00" }, { "operation": "add_edge", - "rtt_ns": 2466132, - "rtt_ms": 2.466132, + "rtt_ns": 1945084, + "rtt_ms": 1.945084, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.685249722Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:49.083416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365145, - "rtt_ms": 1.365145, + "rtt_ns": 1966250, + "rtt_ms": 1.96625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "685", - "timestamp": "2025-11-27T01:21:50.685249972Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.083549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240492, - "rtt_ms": 2.240492, + "rtt_ns": 1642208, + "rtt_ms": 1.642208, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:50.685254922Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:49.083574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502585, - "rtt_ms": 1.502585, + "rtt_ns": 1930709, + "rtt_ms": 1.930709, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.685268902Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:49.083594-08:00" }, { "operation": "add_edge", - "rtt_ns": 2203973, - "rtt_ms": 2.203973, + "rtt_ns": 1571250, + "rtt_ms": 1.57125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:50.685272202Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:49.083629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771185, - "rtt_ms": 1.771185, + "rtt_ns": 1528334, + "rtt_ms": 1.528334, "checkpoint": 0, "vertex_from": "17", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.6861557Z" + "timestamp": "2025-11-27T04:01:49.083748-08:00" }, { "operation": "add_edge", - "rtt_ns": 921117, - "rtt_ms": 0.921117, + "rtt_ns": 1258084, + "rtt_ms": 1.258084, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:50.686193189Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.083898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034097, - "rtt_ms": 1.034097, + "rtt_ns": 1615417, + "rtt_ms": 1.615417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:50.686286079Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:01:49.083937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768464, - "rtt_ms": 1.768464, + "rtt_ns": 1644125, + "rtt_ms": 1.644125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.686315479Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:49.085196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073297, - "rtt_ms": 1.073297, + "rtt_ns": 1608541, + "rtt_ms": 1.608541, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.686329149Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:49.085357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777854, - "rtt_ms": 1.777854, + "rtt_ns": 1494333, + "rtt_ms": 1.494333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.686330329Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.085432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187906, - "rtt_ms": 1.187906, + "rtt_ns": 1748209, + "rtt_ms": 1.748209, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.686331119Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.085647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066407, - "rtt_ms": 1.066407, + "rtt_ns": 2061916, + "rtt_ms": 2.061916, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:50.686340019Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.085659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097017, - "rtt_ms": 1.097017, + "rtt_ns": 2252791, + "rtt_ms": 2.252791, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.686348169Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:49.085669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132756, - "rtt_ms": 1.132756, + "rtt_ns": 2337958, + "rtt_ms": 2.337958, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.686357139Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.085684-08:00" }, { "operation": "add_edge", - "rtt_ns": 851888, - "rtt_ms": 0.851888, + "rtt_ns": 2108458, + "rtt_ms": 2.108458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.687046127Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:49.085684-08:00" }, { "operation": "add_edge", - "rtt_ns": 889417, - "rtt_ms": 0.889417, + "rtt_ns": 2345792, + "rtt_ms": 2.345792, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.687047717Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.085724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096707, - "rtt_ms": 1.096707, + "rtt_ns": 2741417, + "rtt_ms": 2.741417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.687385576Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:49.086371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156156, - "rtt_ms": 1.156156, + "rtt_ns": 1328667, + "rtt_ms": 1.328667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.687499075Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:49.086526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207076, - "rtt_ms": 1.207076, + "rtt_ns": 1648583, + "rtt_ms": 1.648583, "checkpoint": 0, "vertex_from": "17", "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.687525375Z" + "timestamp": "2025-11-27T04:01:49.087007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225106, - "rtt_ms": 1.225106, + "rtt_ns": 1884958, + "rtt_ms": 1.884958, "checkpoint": 0, "vertex_from": "17", "vertex_to": "558", - "timestamp": "2025-11-27T01:21:50.687558735Z" + "timestamp": "2025-11-27T04:01:49.087547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256416, - "rtt_ms": 1.256416, + "rtt_ns": 1877958, + "rtt_ms": 1.877958, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.687587045Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.087562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264656, - "rtt_ms": 1.264656, + "rtt_ns": 1893375, + "rtt_ms": 1.893375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.687596475Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:49.08758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453505, - "rtt_ms": 1.453505, + "rtt_ns": 2462708, + "rtt_ms": 2.462708, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.687803334Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.087895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483575, - "rtt_ms": 1.483575, + "rtt_ns": 2237333, + "rtt_ms": 2.237333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:50.687842064Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:49.087962-08:00" }, { "operation": "add_edge", - "rtt_ns": 825877, - "rtt_ms": 0.825877, + "rtt_ns": 1793792, + "rtt_ms": 1.793792, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.687874244Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 798147, - "rtt_ms": 0.798147, - "checkpoint": 0, - "vertex_from": "636", - "timestamp": "2025-11-27T01:21:50.688675531Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:49.088166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827214, - "rtt_ms": 1.827214, + "rtt_ns": 1259834, + "rtt_ms": 1.259834, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.688876591Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:49.088267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800764, - "rtt_ms": 1.800764, + "rtt_ns": 1898791, + "rtt_ms": 1.898791, "checkpoint": 0, "vertex_from": "17", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.68918792Z" + "timestamp": "2025-11-27T04:01:49.088427-08:00" }, { "operation": "add_edge", - "rtt_ns": 2518362, - "rtt_ms": 2.518362, + "rtt_ns": 982334, + "rtt_ms": 0.982334, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.690018377Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.08853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2500312, - "rtt_ms": 2.500312, + "rtt_ns": 3081875, + "rtt_ms": 3.081875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "653", - "timestamp": "2025-11-27T01:21:50.690088947Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.088755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2866850, - "rtt_ms": 2.86685, + "rtt_ns": 3156791, + "rtt_ms": 3.156791, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.690464675Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:49.088805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796204, - "rtt_ms": 1.796204, + "rtt_ns": 1426416, + "rtt_ms": 1.426416, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "636", - "timestamp": "2025-11-27T01:21:50.690472335Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:49.08899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2629981, - "rtt_ms": 2.629981, + "rtt_ns": 1153875, + "rtt_ms": 1.153875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.690473485Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.08905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2942530, - "rtt_ms": 2.94253, + "rtt_ns": 1498208, + "rtt_ms": 1.498208, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.690502625Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:01:49.089079-08:00" }, { "operation": "add_edge", - "rtt_ns": 2984750, - "rtt_ms": 2.98475, + "rtt_ns": 903416, + "rtt_ms": 0.903416, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.690511305Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:49.08971-08:00" }, { "operation": "add_edge", - "rtt_ns": 2764971, - "rtt_ms": 2.764971, + "rtt_ns": 1319209, + "rtt_ms": 1.319209, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.690569925Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:49.089747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698294, - "rtt_ms": 1.698294, + "rtt_ns": 1913792, + "rtt_ms": 1.913792, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:50.690576995Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.089877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482545, - "rtt_ms": 1.482545, + "rtt_ns": 1751084, + "rtt_ms": 1.751084, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:50.690671505Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.089918-08:00" }, { "operation": "add_edge", - "rtt_ns": 973567, - "rtt_ms": 0.973567, + "rtt_ns": 1422958, + "rtt_ms": 1.422958, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.691447922Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:49.089954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456095, - "rtt_ms": 1.456095, + "rtt_ns": 1610792, + "rtt_ms": 1.610792, "checkpoint": 0, "vertex_from": "17", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.691476382Z" + "timestamp": "2025-11-27T04:01:49.090369-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1025997, - "rtt_ms": 1.025997, + "rtt_ns": 2203667, + "rtt_ms": 2.203667, "checkpoint": 0, - "vertex_from": "498", - "timestamp": "2025-11-27T01:21:50.691501672Z" + "vertex_from": "636", + "timestamp": "2025-11-27T04:01:49.090472-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1562174, - "rtt_ms": 1.562174, + "operation": "add_vertex", + "rtt_ns": 1334417, + "rtt_ms": 1.334417, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.691652381Z" + "vertex_from": "455", + "timestamp": "2025-11-27T04:01:49.091253-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1143296, - "rtt_ms": 1.143296, + "operation": "add_vertex", + "rtt_ns": 2393792, + "rtt_ms": 2.393792, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.691655851Z" + "vertex_from": "498", + "timestamp": "2025-11-27T04:01:49.091476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204366, - "rtt_ms": 1.204366, + "rtt_ns": 2492750, + "rtt_ms": 2.49275, "checkpoint": 0, "vertex_from": "17", "vertex_to": "688", - "timestamp": "2025-11-27T01:21:50.691670191Z" + "timestamp": "2025-11-27T04:01:49.091484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141226, - "rtt_ms": 1.141226, + "rtt_ns": 1874208, + "rtt_ms": 1.874208, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.691712251Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.091586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670055, - "rtt_ms": 1.670055, + "rtt_ns": 2756500, + "rtt_ms": 2.7565, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.69217569Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:49.091809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545105, - "rtt_ms": 1.545105, + "rtt_ns": 2076500, + "rtt_ms": 2.0765, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:50.69221794Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:49.091824-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1727864, - "rtt_ms": 1.727864, + "operation": "add_edge", + "rtt_ns": 2043667, + "rtt_ms": 2.043667, "checkpoint": 0, - "vertex_from": "455", - "timestamp": "2025-11-27T01:21:50.692307039Z" + "vertex_from": "17", + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.091922-08:00" }, { "operation": "add_edge", - "rtt_ns": 887927, - "rtt_ms": 0.887927, + "rtt_ns": 1460625, + "rtt_ms": 1.460625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:50.692365059Z" + "vertex_to": "636", + "timestamp": "2025-11-27T04:01:49.091933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162906, - "rtt_ms": 1.162906, + "rtt_ns": 1657583, + "rtt_ms": 1.657583, "checkpoint": 0, "vertex_from": "17", "vertex_to": "97", - "timestamp": "2025-11-27T01:21:50.692612268Z" + "timestamp": "2025-11-27T04:01:49.092027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363526, - "rtt_ms": 1.363526, + "rtt_ns": 2440292, + "rtt_ms": 2.440292, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "498", - "timestamp": "2025-11-27T01:21:50.692865558Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:49.092395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215727, - "rtt_ms": 1.215727, + "rtt_ns": 1213333, + "rtt_ms": 1.213333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.692868728Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.093039-08:00" }, { "operation": "add_edge", - "rtt_ns": 729547, - "rtt_ms": 0.729547, + "rtt_ns": 1667042, + "rtt_ms": 1.667042, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:50.692906667Z" + "vertex_to": "498", + "timestamp": "2025-11-27T04:01:49.093144-08:00" }, { "operation": "add_edge", - "rtt_ns": 761207, - "rtt_ms": 0.761207, + "rtt_ns": 1387333, + "rtt_ms": 1.387333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:50.692981527Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.093197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283806, - "rtt_ms": 1.283806, + "rtt_ns": 1277583, + "rtt_ms": 1.277583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:50.692998057Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:49.093213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360536, - "rtt_ms": 1.360536, + "rtt_ns": 1722916, + "rtt_ms": 1.722916, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.693032317Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:49.093309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416386, - "rtt_ms": 1.416386, + "rtt_ns": 1908833, + "rtt_ms": 1.908833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.693075417Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:49.093394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282496, - "rtt_ms": 1.282496, + "rtt_ns": 2153459, + "rtt_ms": 2.153459, "checkpoint": 0, "vertex_from": "17", "vertex_to": "455", - "timestamp": "2025-11-27T01:21:50.693590205Z" + "timestamp": "2025-11-27T04:01:49.093407-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2431459, + "rtt_ms": 2.431459, + "checkpoint": 0, + "vertex_from": "17", + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:49.094356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068487, - "rtt_ms": 1.068487, + "rtt_ns": 1464667, + "rtt_ms": 1.464667, "checkpoint": 0, "vertex_from": "17", "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.693681765Z" + "timestamp": "2025-11-27T04:01:49.094504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377006, - "rtt_ms": 1.377006, + "rtt_ns": 1408416, + "rtt_ms": 1.408416, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:50.693743505Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:49.094553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546585, - "rtt_ms": 1.546585, + "rtt_ns": 2186625, + "rtt_ms": 2.186625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "333", - "timestamp": "2025-11-27T01:21:50.694529042Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:49.094582-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043534, - "rtt_ms": 2.043534, + "rtt_ns": 1435833, + "rtt_ms": 1.435833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.694951441Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:49.094634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2533462, - "rtt_ms": 2.533462, + "rtt_ns": 2677250, + "rtt_ms": 2.67725, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.695567379Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:49.094707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2714171, - "rtt_ms": 2.714171, + "rtt_ns": 1612833, + "rtt_ms": 1.612833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:50.695584479Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.094827-08:00" }, { "operation": "add_edge", - "rtt_ns": 2718641, - "rtt_ms": 2.718641, + "rtt_ns": 1718792, + "rtt_ms": 1.718792, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:50.695585719Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:01:49.095029-08:00" }, { "operation": "add_edge", - "rtt_ns": 2534952, - "rtt_ms": 2.534952, + "rtt_ns": 1681750, + "rtt_ms": 1.68175, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.695611559Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:49.095089-08:00" }, { "operation": "add_edge", - "rtt_ns": 2747131, - "rtt_ms": 2.747131, + "rtt_ns": 2438167, + "rtt_ms": 2.438167, "checkpoint": 0, "vertex_from": "17", "vertex_to": "188", - "timestamp": "2025-11-27T01:21:50.695746798Z" + "timestamp": "2025-11-27T04:01:49.095833-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2171413, - "rtt_ms": 2.171413, + "rtt_ns": 1713959, + "rtt_ms": 1.713959, "checkpoint": 0, "vertex_from": "295", - "timestamp": "2025-11-27T01:21:50.695855258Z" + "timestamp": "2025-11-27T04:01:49.09627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384676, - "rtt_ms": 1.384676, + "rtt_ns": 1289667, + "rtt_ms": 1.289667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "334", - "timestamp": "2025-11-27T01:21:50.695915338Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:01:49.09638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039707, - "rtt_ms": 1.039707, + "rtt_ns": 2117375, + "rtt_ms": 2.117375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "18", - "timestamp": "2025-11-27T01:21:50.695992638Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:49.096701-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281492, - "rtt_ms": 2.281492, + "rtt_ns": 2191709, + "rtt_ms": 2.191709, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:50.696026107Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:49.097021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2467682, - "rtt_ms": 2.467682, + "rtt_ns": 2532417, + "rtt_ms": 2.532417, "checkpoint": 0, "vertex_from": "17", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:50.696060247Z" + "timestamp": "2025-11-27T04:01:49.09704-08:00" }, { "operation": "add_edge", - "rtt_ns": 893217, - "rtt_ms": 0.893217, + "rtt_ns": 2547375, + "rtt_ms": 2.547375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.696461846Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:49.097183-08:00" }, { "operation": "add_edge", - "rtt_ns": 973897, - "rtt_ms": 0.973897, + "rtt_ns": 2158916, + "rtt_ms": 2.158916, "checkpoint": 0, "vertex_from": "17", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.696559306Z" + "timestamp": "2025-11-27T04:01:49.097189-08:00" }, { "operation": "add_edge", - "rtt_ns": 967187, - "rtt_ms": 0.967187, + "rtt_ns": 2481125, + "rtt_ms": 2.481125, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.696580966Z" + "vertex_to": "18", + "timestamp": "2025-11-27T04:01:49.097189-08:00" }, { "operation": "add_edge", - "rtt_ns": 994647, - "rtt_ms": 0.994647, + "rtt_ns": 2848041, + "rtt_ms": 2.848041, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "428", - "timestamp": "2025-11-27T01:21:50.696582366Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.097205-08:00" }, { "operation": "add_edge", - "rtt_ns": 873937, - "rtt_ms": 0.873937, + "rtt_ns": 2472959, + "rtt_ms": 2.472959, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:50.696622255Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:49.098307-08:00" }, { "operation": "add_edge", - "rtt_ns": 800807, - "rtt_ms": 0.800807, + "rtt_ns": 1306000, + "rtt_ms": 1.306, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "295", - "timestamp": "2025-11-27T01:21:50.696656415Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:49.098328-08:00" }, { "operation": "add_edge", - "rtt_ns": 814797, - "rtt_ms": 0.814797, + "rtt_ns": 1953250, + "rtt_ms": 1.95325, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "47", - "timestamp": "2025-11-27T01:21:50.696731645Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.099145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160886, - "rtt_ms": 1.160886, + "rtt_ns": 1971958, + "rtt_ms": 1.971958, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:50.697154994Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:49.099179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156056, - "rtt_ms": 1.156056, + "rtt_ns": 2027000, + "rtt_ms": 2.027, "checkpoint": 0, "vertex_from": "17", "vertex_to": "108", - "timestamp": "2025-11-27T01:21:50.697217713Z" + "timestamp": "2025-11-27T04:01:49.099211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199256, - "rtt_ms": 1.199256, + "rtt_ns": 3186833, + "rtt_ms": 3.186833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.697226563Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:01:49.099457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031267, - "rtt_ms": 1.031267, + "rtt_ns": 2439708, + "rtt_ms": 2.439708, "checkpoint": 0, "vertex_from": "17", "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.697494073Z" + "timestamp": "2025-11-27T04:01:49.099631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552974, - "rtt_ms": 1.552974, + "rtt_ns": 3024333, + "rtt_ms": 3.024333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:50.69813536Z" + "vertex_to": "47", + "timestamp": "2025-11-27T04:01:49.099726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608164, - "rtt_ms": 1.608164, + "rtt_ns": 3662041, + "rtt_ms": 3.662041, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.69816878Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:49.100045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549675, - "rtt_ms": 1.549675, + "rtt_ns": 1802458, + "rtt_ms": 1.802458, "checkpoint": 0, "vertex_from": "17", "vertex_to": "236", - "timestamp": "2025-11-27T01:21:50.69817282Z" + "timestamp": "2025-11-27T04:01:49.100131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036366, - "rtt_ms": 1.036366, + "rtt_ns": 3188792, + "rtt_ms": 3.188792, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "936", - "timestamp": "2025-11-27T01:21:50.69819295Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:49.10023-08:00" }, { "operation": "add_edge", - "rtt_ns": 984767, - "rtt_ms": 0.984767, + "rtt_ns": 1998292, + "rtt_ms": 1.998292, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:50.69821298Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:49.100307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648244, - "rtt_ms": 1.648244, + "rtt_ns": 1314417, + "rtt_ms": 1.314417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:50.69823345Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:49.10046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016127, - "rtt_ms": 1.016127, + "rtt_ns": 1304791, + "rtt_ms": 1.304791, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:50.69823485Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:49.100937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594345, - "rtt_ms": 1.594345, + "rtt_ns": 1305292, + "rtt_ms": 1.305292, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:50.69825161Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:49.101033-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2200833, + "rtt_ms": 2.200833, + "checkpoint": 0, + "vertex_from": "17", + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:49.101413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535635, - "rtt_ms": 1.535635, + "rtt_ns": 2249625, + "rtt_ms": 2.249625, "checkpoint": 0, "vertex_from": "17", "vertex_to": "609", - "timestamp": "2025-11-27T01:21:50.69826901Z" + "timestamp": "2025-11-27T04:01:49.10143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610754, - "rtt_ms": 1.610754, + "rtt_ns": 2116208, + "rtt_ms": 2.116208, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:50.699105977Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:49.101574-08:00" }, { "operation": "add_edge", - "rtt_ns": 949257, - "rtt_ms": 0.949257, + "rtt_ns": 1533792, + "rtt_ms": 1.533792, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:50.699123167Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:49.101666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027287, - "rtt_ms": 1.027287, + "rtt_ns": 1862166, + "rtt_ms": 1.862166, "checkpoint": 0, "vertex_from": "17", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.699164437Z" + "timestamp": "2025-11-27T04:01:49.101908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018257, - "rtt_ms": 1.018257, + "rtt_ns": 1691458, + "rtt_ms": 1.691458, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:50.699188257Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:49.101923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028577, - "rtt_ms": 1.028577, + "rtt_ns": 1293208, + "rtt_ms": 1.293208, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.699242487Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:49.102231-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1541285, - "rtt_ms": 1.541285, + "operation": "add_edge", + "rtt_ns": 2186959, + "rtt_ms": 2.186959, "checkpoint": 0, - "vertex_from": "287", - "timestamp": "2025-11-27T01:21:50.699795165Z" + "vertex_from": "17", + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:49.102495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590405, - "rtt_ms": 1.590405, + "rtt_ns": 1138375, + "rtt_ms": 1.138375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.699826675Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:49.102569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673414, - "rtt_ms": 1.673414, + "rtt_ns": 1678416, + "rtt_ms": 1.678416, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.699907514Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.102712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726174, - "rtt_ms": 1.726174, + "rtt_ns": 2370334, + "rtt_ms": 2.370334, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.699919784Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:49.102831-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1500459, + "rtt_ms": 1.500459, + "checkpoint": 0, + "vertex_from": "287", + "timestamp": "2025-11-27T04:01:49.102915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699324, - "rtt_ms": 1.699324, + "rtt_ns": 1803542, + "rtt_ms": 1.803542, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:50.699970164Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:49.103727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938864, - "rtt_ms": 1.938864, + "rtt_ns": 2082750, + "rtt_ms": 2.08275, "checkpoint": 0, "vertex_from": "17", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.701063001Z" + "timestamp": "2025-11-27T04:01:49.10375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2620851, - "rtt_ms": 2.620851, + "rtt_ns": 1470167, + "rtt_ms": 1.470167, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.701865348Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.10404-08:00" }, { "operation": "add_edge", - "rtt_ns": 3194290, - "rtt_ms": 3.19429, + "rtt_ns": 2528875, + "rtt_ms": 2.528875, "checkpoint": 0, "vertex_from": "17", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:50.702302427Z" + "timestamp": "2025-11-27T04:01:49.104104-08:00" }, { "operation": "add_edge", - "rtt_ns": 3135780, - "rtt_ms": 3.13578, + "rtt_ns": 2216084, + "rtt_ms": 2.216084, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:50.702326217Z" + "vertex_to": "58", + "timestamp": "2025-11-27T04:01:49.104124-08:00" }, { "operation": "add_edge", - "rtt_ns": 3182610, - "rtt_ms": 3.18261, + "rtt_ns": 1523042, + "rtt_ms": 1.523042, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "58", - "timestamp": "2025-11-27T01:21:50.702348807Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:49.104355-08:00" }, { "operation": "add_edge", - "rtt_ns": 2442843, - "rtt_ms": 2.442843, + "rtt_ns": 2139959, + "rtt_ms": 2.139959, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:50.702414427Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:49.104372-08:00" }, { "operation": "add_edge", - "rtt_ns": 2513612, - "rtt_ms": 2.513612, + "rtt_ns": 1902167, + "rtt_ms": 1.902167, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:50.702435116Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:49.1044-08:00" }, { "operation": "add_edge", - "rtt_ns": 2649201, - "rtt_ms": 2.649201, + "rtt_ns": 1706083, + "rtt_ms": 1.706083, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:50.702477976Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:49.104419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2682631, - "rtt_ms": 2.682631, + "rtt_ns": 1661583, + "rtt_ms": 1.661583, "checkpoint": 0, "vertex_from": "17", "vertex_to": "287", - "timestamp": "2025-11-27T01:21:50.702478216Z" + "timestamp": "2025-11-27T04:01:49.104577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2614632, - "rtt_ms": 2.614632, + "rtt_ns": 1617042, + "rtt_ms": 1.617042, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.702523976Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:49.105368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527665, - "rtt_ms": 1.527665, + "rtt_ns": 1327833, + "rtt_ms": 1.327833, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:50.702592066Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:49.105369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682645, - "rtt_ms": 1.682645, + "rtt_ns": 1884000, + "rtt_ms": 1.884, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:50.703549213Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:49.105612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223786, - "rtt_ms": 1.223786, + "rtt_ns": 1596209, + "rtt_ms": 1.596209, "checkpoint": 0, "vertex_from": "17", "vertex_to": "86", - "timestamp": "2025-11-27T01:21:50.703552773Z" + "timestamp": "2025-11-27T04:01:49.105702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249176, - "rtt_ms": 1.249176, + "rtt_ns": 1612583, + "rtt_ms": 1.612583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:50.703553273Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:01:49.105738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992583, - "rtt_ms": 1.992583, + "rtt_ns": 1330750, + "rtt_ms": 1.33075, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "837", - "timestamp": "2025-11-27T01:21:50.70434301Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.105751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848684, - "rtt_ms": 1.848684, + "rtt_ns": 1536709, + "rtt_ms": 1.536709, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:50.70437366Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.10591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900874, - "rtt_ms": 1.900874, + "rtt_ns": 1521333, + "rtt_ms": 1.521333, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.70438214Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.105922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955504, - "rtt_ms": 1.955504, + "rtt_ns": 1502583, + "rtt_ms": 1.502583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.70439207Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:49.10608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991963, - "rtt_ms": 1.991963, + "rtt_ns": 1741708, + "rtt_ms": 1.741708, "checkpoint": 0, "vertex_from": "17", "vertex_to": "135", - "timestamp": "2025-11-27T01:21:50.70440832Z" + "timestamp": "2025-11-27T04:01:49.106098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817954, - "rtt_ms": 1.817954, + "rtt_ns": 1624875, + "rtt_ms": 1.624875, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:50.70441154Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:49.106994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979584, - "rtt_ms": 1.979584, + "rtt_ns": 2199000, + "rtt_ms": 2.199, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.70445931Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:49.107568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869004, - "rtt_ms": 1.869004, + "rtt_ns": 1941375, + "rtt_ms": 1.941375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "151", - "timestamp": "2025-11-27T01:21:50.705423347Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.107693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899844, - "rtt_ms": 1.899844, + "rtt_ns": 2030292, + "rtt_ms": 2.030292, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.705450757Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:49.107733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068367, - "rtt_ms": 1.068367, + "rtt_ns": 1685917, + "rtt_ms": 1.685917, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "355", - "timestamp": "2025-11-27T01:21:50.705463837Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:49.107767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908724, - "rtt_ms": 1.908724, + "rtt_ns": 2180375, + "rtt_ms": 2.180375, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.705464317Z" + "vertex_to": "151", + "timestamp": "2025-11-27T04:01:49.107793-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1135476, - "rtt_ms": 1.135476, + "operation": "add_vertex", + "rtt_ns": 1693250, + "rtt_ms": 1.69325, "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.705480136Z" + "vertex_from": "876", + "timestamp": "2025-11-27T04:01:49.107795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141856, - "rtt_ms": 1.141856, + "rtt_ns": 1988250, + "rtt_ms": 1.98825, "checkpoint": 0, "vertex_from": "17", "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.705527316Z" + "timestamp": "2025-11-27T04:01:49.107899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613544, - "rtt_ms": 1.613544, + "rtt_ns": 2349292, + "rtt_ms": 2.349292, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:50.706075044Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:49.108088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726904, - "rtt_ms": 1.726904, + "rtt_ns": 2179834, + "rtt_ms": 2.179834, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.706101734Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:01:49.108103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793984, - "rtt_ms": 1.793984, + "rtt_ns": 1639083, + "rtt_ms": 1.639083, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:50.706205824Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1866244, - "rtt_ms": 1.866244, - "checkpoint": 0, - "vertex_from": "876", - "timestamp": "2025-11-27T01:21:50.706280504Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:49.108634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698194, - "rtt_ms": 1.698194, + "rtt_ns": 1151000, + "rtt_ms": 1.151, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "28", - "timestamp": "2025-11-27T01:21:50.707163091Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.108719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710674, - "rtt_ms": 1.710674, + "rtt_ns": 946583, + "rtt_ms": 0.946583, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.707164181Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.109051-08:00" }, { "operation": "add_edge", - "rtt_ns": 2468421, - "rtt_ms": 2.468421, + "rtt_ns": 1460666, + "rtt_ms": 1.460666, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.707893448Z" + "vertex_to": "869", + "timestamp": "2025-11-27T04:01:49.109255-08:00" }, { "operation": "add_edge", - "rtt_ns": 2389572, - "rtt_ms": 2.389572, + "rtt_ns": 1542333, + "rtt_ms": 1.542333, "checkpoint": 0, "vertex_from": "17", "vertex_to": "44", - "timestamp": "2025-11-27T01:21:50.707918648Z" + "timestamp": "2025-11-27T04:01:49.109444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2504741, - "rtt_ms": 2.504741, + "rtt_ns": 1795667, + "rtt_ms": 1.795667, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.707971378Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.10949-08:00" }, { "operation": "add_edge", - "rtt_ns": 2976311, - "rtt_ms": 2.976311, + "rtt_ns": 1427625, + "rtt_ms": 1.427625, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "869", - "timestamp": "2025-11-27T01:21:50.708459547Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:49.109517-08:00" }, { "operation": "add_edge", - "rtt_ns": 2402482, - "rtt_ms": 2.402482, + "rtt_ns": 1823416, + "rtt_ms": 1.823416, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.708510096Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:01:49.109557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337242, - "rtt_ms": 2.337242, + "rtt_ns": 1792917, + "rtt_ms": 1.792917, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:50.708544466Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:49.109561-08:00" }, { "operation": "add_edge", - "rtt_ns": 2473692, - "rtt_ms": 2.473692, + "rtt_ns": 1911291, + "rtt_ms": 1.911291, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:50.708551926Z" + "vertex_to": "876", + "timestamp": "2025-11-27T04:01:49.109707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294232, - "rtt_ms": 2.294232, + "rtt_ns": 1637416, + "rtt_ms": 1.637416, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "876", - "timestamp": "2025-11-27T01:21:50.708575286Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:49.110273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446735, - "rtt_ms": 1.446735, + "rtt_ns": 1562791, + "rtt_ms": 1.562791, "checkpoint": 0, "vertex_from": "17", "vertex_to": "360", - "timestamp": "2025-11-27T01:21:50.708611826Z" + "timestamp": "2025-11-27T04:01:49.110285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478785, - "rtt_ms": 1.478785, + "rtt_ns": 2038416, + "rtt_ms": 2.038416, "checkpoint": 0, "vertex_from": "17", "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.708644776Z" + "timestamp": "2025-11-27T04:01:49.111091-08:00" }, { "operation": "add_edge", - "rtt_ns": 886638, - "rtt_ms": 0.886638, + "rtt_ns": 1868750, + "rtt_ms": 1.86875, "checkpoint": 0, "vertex_from": "17", "vertex_to": "244", - "timestamp": "2025-11-27T01:21:50.708782206Z" - }, - { - "operation": "add_edge", - "rtt_ns": 907247, - "rtt_ms": 0.907247, - "checkpoint": 0, - "vertex_from": "17", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:50.708880295Z" + "timestamp": "2025-11-27T04:01:49.111124-08:00" }, { "operation": "add_edge", - "rtt_ns": 973767, - "rtt_ms": 0.973767, + "rtt_ns": 1698583, + "rtt_ms": 1.698583, "checkpoint": 0, "vertex_from": "17", "vertex_to": "387", - "timestamp": "2025-11-27T01:21:50.708894095Z" + "timestamp": "2025-11-27T04:01:49.111144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173766, - "rtt_ms": 1.173766, + "rtt_ns": 1565459, + "rtt_ms": 1.565459, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:50.709637813Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:49.111273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124247, - "rtt_ms": 1.124247, + "rtt_ns": 1819084, + "rtt_ms": 1.819084, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:50.709678173Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:49.111379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294806, - "rtt_ms": 1.294806, + "rtt_ns": 1972958, + "rtt_ms": 1.972958, "checkpoint": 0, "vertex_from": "17", "vertex_to": "19", - "timestamp": "2025-11-27T01:21:50.709846162Z" + "timestamp": "2025-11-27T04:01:49.111535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696855, - "rtt_ms": 1.696855, + "rtt_ns": 2097417, + "rtt_ms": 2.097417, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:50.710273931Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:49.111615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770365, - "rtt_ms": 1.770365, + "rtt_ns": 2286000, + "rtt_ms": 2.286, "checkpoint": 0, "vertex_from": "17", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:50.710282181Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:49.111777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683025, - "rtt_ms": 1.683025, + "rtt_ns": 1744792, + "rtt_ms": 1.744792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:50.710297151Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.113124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736465, - "rtt_ms": 1.736465, + "rtt_ns": 2858875, + "rtt_ms": 2.858875, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "565", - "timestamp": "2025-11-27T01:21:50.710382681Z" + "vertex_from": "17", + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:49.113133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547755, - "rtt_ms": 1.547755, + "rtt_ns": 1994500, + "rtt_ms": 1.9945, "checkpoint": 0, "vertex_from": "18", "vertex_to": "673", - "timestamp": "2025-11-27T01:21:50.71042954Z" + "timestamp": "2025-11-27T04:01:49.113143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562845, - "rtt_ms": 1.562845, + "rtt_ns": 1889583, + "rtt_ms": 1.889583, "checkpoint": 0, "vertex_from": "18", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.71045795Z" + "timestamp": "2025-11-27T04:01:49.113164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678354, - "rtt_ms": 1.678354, + "rtt_ns": 2098208, + "rtt_ms": 2.098208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.7104621Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:49.11319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183536, - "rtt_ms": 1.183536, + "rtt_ns": 2164292, + "rtt_ms": 2.164292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:50.710863019Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:49.113289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274576, - "rtt_ms": 1.274576, + "rtt_ns": 1588458, + "rtt_ms": 1.588458, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.710914009Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.113367-08:00" }, { "operation": "add_edge", - "rtt_ns": 682428, - "rtt_ms": 0.682428, + "rtt_ns": 1883584, + "rtt_ms": 1.883584, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.710966539Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:49.1135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635995, - "rtt_ms": 1.635995, + "rtt_ns": 3232416, + "rtt_ms": 3.232416, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:50.711483467Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:49.11352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286136, - "rtt_ms": 1.286136, + "rtt_ns": 2576375, + "rtt_ms": 2.576375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "25", - "timestamp": "2025-11-27T01:21:50.711584387Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:49.114114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330006, - "rtt_ms": 1.330006, + "rtt_ns": 1114709, + "rtt_ms": 1.114709, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.711794396Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.114483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376516, - "rtt_ms": 1.376516, + "rtt_ns": 2180250, + "rtt_ms": 2.18025, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:50.711835406Z" + "vertex_to": "25", + "timestamp": "2025-11-27T04:01:49.115314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436076, - "rtt_ms": 1.436076, + "rtt_ns": 2243208, + "rtt_ms": 2.243208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:50.711866506Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.115369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642655, - "rtt_ms": 1.642655, + "rtt_ns": 2103750, + "rtt_ms": 2.10375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.711918126Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.115395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970573, - "rtt_ms": 1.970573, + "rtt_ns": 2253750, + "rtt_ms": 2.25375, "checkpoint": 0, "vertex_from": "18", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.712354604Z" + "timestamp": "2025-11-27T04:01:49.115398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734544, - "rtt_ms": 1.734544, + "rtt_ns": 2423334, + "rtt_ms": 2.423334, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.712650763Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:49.115588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797804, - "rtt_ms": 1.797804, + "rtt_ns": 2413792, + "rtt_ms": 2.413792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.712662083Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.115915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579304, - "rtt_ms": 1.579304, + "rtt_ns": 2477417, + "rtt_ms": 2.477417, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.713164981Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:49.115998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265852, - "rtt_ms": 2.265852, + "rtt_ns": 2046958, + "rtt_ms": 2.046958, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:50.713233811Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:49.116162-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241202, - "rtt_ms": 2.241202, + "rtt_ns": 3087833, + "rtt_ms": 3.087833, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.714108988Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:49.116281-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207272, - "rtt_ms": 2.207272, + "rtt_ns": 1947709, + "rtt_ms": 1.947709, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:50.714127398Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.116432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2671581, - "rtt_ms": 2.671581, + "rtt_ns": 1937667, + "rtt_ms": 1.937667, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.714166168Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:49.117336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827214, - "rtt_ms": 1.827214, + "rtt_ns": 1547541, + "rtt_ms": 1.547541, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.714183508Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:49.117463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2434422, - "rtt_ms": 2.434422, + "rtt_ns": 2095541, + "rtt_ms": 2.095541, "checkpoint": 0, "vertex_from": "18", "vertex_to": "616", - "timestamp": "2025-11-27T01:21:50.714271498Z" + "timestamp": "2025-11-27T04:01:49.117465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667665, - "rtt_ms": 1.667665, + "rtt_ns": 2100083, + "rtt_ms": 2.100083, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:50.714323598Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:49.117499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2548091, - "rtt_ms": 2.548091, + "rtt_ns": 1505709, + "rtt_ms": 1.505709, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:50.714345737Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:49.117505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746684, - "rtt_ms": 1.746684, + "rtt_ns": 1992916, + "rtt_ms": 1.992916, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:50.714411137Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.117583-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2298417, + "rtt_ms": 2.298417, + "checkpoint": 0, + "vertex_from": "18", + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:49.117613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255416, - "rtt_ms": 1.255416, + "rtt_ns": 2203875, + "rtt_ms": 2.203875, "checkpoint": 0, "vertex_from": "18", "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.714422777Z" + "timestamp": "2025-11-27T04:01:49.118369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240076, - "rtt_ms": 1.240076, + "rtt_ns": 2131875, + "rtt_ms": 2.131875, "checkpoint": 0, "vertex_from": "18", "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.714475067Z" + "timestamp": "2025-11-27T04:01:49.118414-08:00" }, { "operation": "add_edge", - "rtt_ns": 641768, - "rtt_ms": 0.641768, + "rtt_ns": 1626958, + "rtt_ms": 1.626958, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.714752156Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:49.118964-08:00" }, { "operation": "add_edge", - "rtt_ns": 671378, - "rtt_ms": 0.671378, + "rtt_ns": 2606833, + "rtt_ms": 2.606833, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "901", - "timestamp": "2025-11-27T01:21:50.714800206Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.119041-08:00" }, { "operation": "add_edge", - "rtt_ns": 796537, - "rtt_ms": 0.796537, + "rtt_ns": 2034917, + "rtt_ms": 2.034917, "checkpoint": 0, "vertex_from": "18", "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.714963765Z" + "timestamp": "2025-11-27T04:01:49.119499-08:00" }, { "operation": "add_edge", - "rtt_ns": 705867, - "rtt_ms": 0.705867, + "rtt_ns": 2109542, + "rtt_ms": 2.109542, "checkpoint": 0, "vertex_from": "18", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:50.714979635Z" + "timestamp": "2025-11-27T04:01:49.11961-08:00" }, { "operation": "add_edge", - "rtt_ns": 817127, - "rtt_ms": 0.817127, + "rtt_ns": 2014416, + "rtt_ms": 2.014416, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.715001645Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:49.119629-08:00" }, { "operation": "add_edge", - "rtt_ns": 717338, - "rtt_ms": 0.717338, + "rtt_ns": 2045625, + "rtt_ms": 2.045625, "checkpoint": 0, "vertex_from": "18", "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.715064605Z" + "timestamp": "2025-11-27T04:01:49.119629-08:00" }, { "operation": "add_edge", - "rtt_ns": 754307, - "rtt_ms": 0.754307, + "rtt_ns": 1398500, + "rtt_ms": 1.3985, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.715079095Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:49.119768-08:00" }, { "operation": "add_edge", - "rtt_ns": 778818, - "rtt_ms": 0.778818, + "rtt_ns": 2322000, + "rtt_ms": 2.322, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.715204055Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.119829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263526, - "rtt_ms": 1.263526, + "rtt_ns": 1447000, + "rtt_ms": 1.447, "checkpoint": 0, "vertex_from": "18", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.715743023Z" + "timestamp": "2025-11-27T04:01:49.119862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015327, - "rtt_ms": 1.015327, + "rtt_ns": 2398292, + "rtt_ms": 2.398292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.715816563Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.119864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147876, - "rtt_ms": 1.147876, + "rtt_ns": 1717583, + "rtt_ms": 1.717583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.715901282Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.120762-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1706145, - "rtt_ms": 1.706145, + "operation": "add_vertex", + "rtt_ns": 1296208, + "rtt_ms": 1.296208, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:50.716118462Z" + "vertex_from": "426", + "timestamp": "2025-11-27T04:01:49.120798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313056, - "rtt_ms": 1.313056, + "rtt_ns": 2117542, + "rtt_ms": 2.117542, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.716316181Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1352136, - "rtt_ms": 1.352136, - "checkpoint": 0, - "vertex_from": "426", - "timestamp": "2025-11-27T01:21:50.716320781Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:49.121082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346086, - "rtt_ms": 1.346086, + "rtt_ns": 1578708, + "rtt_ms": 1.578708, "checkpoint": 0, "vertex_from": "18", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.716327041Z" + "timestamp": "2025-11-27T04:01:49.121189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281066, - "rtt_ms": 1.281066, + "rtt_ns": 1638208, + "rtt_ms": 1.638208, "checkpoint": 0, "vertex_from": "18", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.716346691Z" + "timestamp": "2025-11-27T04:01:49.12127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436765, - "rtt_ms": 1.436765, + "rtt_ns": 1454541, + "rtt_ms": 1.454541, "checkpoint": 0, "vertex_from": "18", "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.71664192Z" + "timestamp": "2025-11-27T04:01:49.121285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565375, - "rtt_ms": 1.565375, + "rtt_ns": 1561000, + "rtt_ms": 1.561, "checkpoint": 0, "vertex_from": "18", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.71664709Z" + "timestamp": "2025-11-27T04:01:49.12133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717864, - "rtt_ms": 1.717864, + "rtt_ns": 1541834, + "rtt_ms": 1.541834, "checkpoint": 0, "vertex_from": "18", "vertex_to": "424", - "timestamp": "2025-11-27T01:21:50.717536597Z" + "timestamp": "2025-11-27T04:01:49.121407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856154, - "rtt_ms": 1.856154, + "rtt_ns": 1815541, + "rtt_ms": 1.815541, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:50.717600537Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.121445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583095, - "rtt_ms": 1.583095, + "rtt_ns": 1665917, + "rtt_ms": 1.665917, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.717703187Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:49.121529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915594, - "rtt_ms": 1.915594, + "rtt_ns": 1151041, + "rtt_ms": 1.151041, "checkpoint": 0, "vertex_from": "18", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:50.717818586Z" + "timestamp": "2025-11-27T04:01:49.121914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689735, - "rtt_ms": 1.689735, + "rtt_ns": 1369708, + "rtt_ms": 1.369708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.718018056Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:49.12256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782874, - "rtt_ms": 1.782874, + "rtt_ns": 1785042, + "rtt_ms": 1.785042, "checkpoint": 0, "vertex_from": "18", "vertex_to": "426", - "timestamp": "2025-11-27T01:21:50.718104145Z" + "timestamp": "2025-11-27T04:01:49.122584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788784, - "rtt_ms": 1.788784, + "rtt_ns": 1230208, + "rtt_ms": 1.230208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.718106505Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:49.122676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294923, - "rtt_ms": 2.294923, + "rtt_ns": 1647459, + "rtt_ms": 1.647459, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.718642644Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.122918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2598942, - "rtt_ms": 2.598942, + "rtt_ns": 1656167, + "rtt_ms": 1.656167, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:50.719247932Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:49.122987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625304, - "rtt_ms": 1.625304, + "rtt_ns": 1631875, + "rtt_ms": 1.631875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.719330461Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:49.12304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760194, - "rtt_ms": 1.760194, + "rtt_ns": 1570958, + "rtt_ms": 1.570958, "checkpoint": 0, "vertex_from": "18", "vertex_to": "833", - "timestamp": "2025-11-27T01:21:50.719362301Z" + "timestamp": "2025-11-27T04:01:49.1231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371035, - "rtt_ms": 1.371035, + "rtt_ns": 1815583, + "rtt_ms": 1.815583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:50.719390311Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:49.123101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584025, - "rtt_ms": 1.584025, + "rtt_ns": 1239500, + "rtt_ms": 1.2395, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "20", - "timestamp": "2025-11-27T01:21:50.719404071Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.123154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304786, - "rtt_ms": 1.304786, + "rtt_ns": 2076000, + "rtt_ms": 2.076, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.719409911Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:49.123159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942004, - "rtt_ms": 1.942004, + "rtt_ns": 1013375, + "rtt_ms": 1.013375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:50.719482581Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.124001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418516, - "rtt_ms": 1.418516, + "rtt_ns": 1515625, + "rtt_ms": 1.515625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.719526701Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:49.1241-08:00" }, { "operation": "add_edge", - "rtt_ns": 3041920, - "rtt_ms": 3.04192, + "rtt_ns": 1462292, + "rtt_ms": 1.462292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.7196847Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:49.124381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731724, - "rtt_ms": 1.731724, + "rtt_ns": 1853083, + "rtt_ms": 1.853083, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.720376088Z" + "vertex_to": "20", + "timestamp": "2025-11-27T04:01:49.124414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570704, - "rtt_ms": 1.570704, + "rtt_ns": 1380250, + "rtt_ms": 1.38025, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:50.720819866Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.124482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660115, - "rtt_ms": 1.660115, + "rtt_ns": 1372250, + "rtt_ms": 1.37225, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.720992026Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:49.124528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688275, - "rtt_ms": 1.688275, + "rtt_ns": 1924542, + "rtt_ms": 1.924542, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.721051436Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.124604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639944, - "rtt_ms": 1.639944, + "rtt_ns": 1512750, + "rtt_ms": 1.51275, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.721123405Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:49.124614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725754, - "rtt_ms": 1.725754, + "rtt_ns": 1456416, + "rtt_ms": 1.456416, "checkpoint": 0, "vertex_from": "18", "vertex_to": "73", - "timestamp": "2025-11-27T01:21:50.721131815Z" + "timestamp": "2025-11-27T04:01:49.124617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748164, - "rtt_ms": 1.748164, + "rtt_ns": 1589375, + "rtt_ms": 1.589375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:50.721159025Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:49.124636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772174, - "rtt_ms": 1.772174, + "rtt_ns": 1206542, + "rtt_ms": 1.206542, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:50.721164115Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:49.125209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543175, - "rtt_ms": 1.543175, + "rtt_ns": 1869041, + "rtt_ms": 1.869041, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.721228775Z" + "vertex_to": "28", + "timestamp": "2025-11-27T04:01:49.126251-08:00" }, { "operation": "add_edge", - "rtt_ns": 878867, - "rtt_ms": 0.878867, + "rtt_ns": 1687209, + "rtt_ms": 1.687209, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:50.721256065Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:49.126303-08:00" }, { "operation": "add_edge", - "rtt_ns": 823087, - "rtt_ms": 0.823087, + "rtt_ns": 1966750, + "rtt_ms": 1.96675, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.721816113Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:49.126449-08:00" }, { "operation": "add_edge", - "rtt_ns": 2325162, - "rtt_ms": 2.325162, + "rtt_ns": 2166542, + "rtt_ms": 2.166542, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "28", - "timestamp": "2025-11-27T01:21:50.721853113Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.126581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195536, - "rtt_ms": 1.195536, + "rtt_ns": 1955791, + "rtt_ms": 1.955791, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.722017132Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.126592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533515, - "rtt_ms": 1.533515, + "rtt_ns": 2002834, + "rtt_ms": 2.002834, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.72266664Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:49.126621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737574, - "rtt_ms": 1.737574, + "rtt_ns": 2041792, + "rtt_ms": 2.041792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:50.72279051Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:49.126648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577025, - "rtt_ms": 1.577025, + "rtt_ns": 2682959, + "rtt_ms": 2.682959, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "867", - "timestamp": "2025-11-27T01:21:50.72280691Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.126784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605535, - "rtt_ms": 1.605535, + "rtt_ns": 1611833, + "rtt_ms": 1.611833, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.72286248Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:49.126821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749614, - "rtt_ms": 1.749614, + "rtt_ns": 2303125, + "rtt_ms": 2.303125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:50.722910329Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:49.126832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907624, - "rtt_ms": 1.907624, + "rtt_ns": 1231333, + "rtt_ms": 1.231333, "checkpoint": 0, "vertex_from": "18", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.723072919Z" + "timestamp": "2025-11-27T04:01:49.127483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465475, - "rtt_ms": 1.465475, + "rtt_ns": 1437333, + "rtt_ms": 1.437333, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.723282718Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.128059-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194993, - "rtt_ms": 2.194993, + "rtt_ns": 1610541, + "rtt_ms": 1.610541, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.723321258Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.128061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806054, - "rtt_ms": 1.806054, + "rtt_ns": 1418459, + "rtt_ms": 1.418459, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:50.723660297Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:49.128067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815134, - "rtt_ms": 1.815134, + "rtt_ns": 1326875, + "rtt_ms": 1.326875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.723833936Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:49.128111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774634, - "rtt_ms": 1.774634, + "rtt_ns": 1602667, + "rtt_ms": 1.602667, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:50.724442574Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:49.128184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765304, - "rtt_ms": 1.765304, + "rtt_ns": 1596209, + "rtt_ms": 1.596209, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:50.724628634Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:49.12819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889824, - "rtt_ms": 1.889824, + "rtt_ns": 1397542, + "rtt_ms": 1.397542, "checkpoint": 0, "vertex_from": "18", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.724697754Z" + "timestamp": "2025-11-27T04:01:49.12822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404166, - "rtt_ms": 1.404166, + "rtt_ns": 1918667, + "rtt_ms": 1.918667, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:50.724726874Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:01:49.128223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677604, - "rtt_ms": 1.677604, + "rtt_ns": 1472667, + "rtt_ms": 1.472667, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:50.724753353Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:49.128305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957594, - "rtt_ms": 1.957594, + "rtt_ns": 1080000, + "rtt_ms": 1.08, "checkpoint": 0, "vertex_from": "18", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.724868973Z" + "timestamp": "2025-11-27T04:01:49.128564-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152903, - "rtt_ms": 2.152903, + "rtt_ns": 1394292, + "rtt_ms": 1.394292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:50.724944563Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:49.129455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676255, - "rtt_ms": 1.676255, + "rtt_ns": 1367000, + "rtt_ms": 1.367, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.724960563Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:49.129587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164667, - "rtt_ms": 1.164667, + "rtt_ns": 1580792, + "rtt_ms": 1.580792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.724999673Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:49.129887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392846, - "rtt_ms": 1.392846, + "rtt_ns": 1791708, + "rtt_ms": 1.791708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:50.725054183Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.129977-08:00" }, { "operation": "add_edge", - "rtt_ns": 655858, - "rtt_ms": 0.655858, + "rtt_ns": 1833208, + "rtt_ms": 1.833208, "checkpoint": 0, "vertex_from": "18", "vertex_to": "660", - "timestamp": "2025-11-27T01:21:50.725099232Z" + "timestamp": "2025-11-27T04:01:49.130024-08:00" }, { "operation": "add_edge", - "rtt_ns": 625008, - "rtt_ms": 0.625008, + "rtt_ns": 2063334, + "rtt_ms": 2.063334, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.725256672Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:49.130132-08:00" }, { "operation": "add_edge", - "rtt_ns": 788507, - "rtt_ms": 0.788507, + "rtt_ns": 2283583, + "rtt_ms": 2.283583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.725516831Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:49.130345-08:00" }, { "operation": "add_edge", - "rtt_ns": 790117, - "rtt_ms": 0.790117, + "rtt_ns": 1839667, + "rtt_ms": 1.839667, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:50.726048489Z" + "vertex_to": "21", + "timestamp": "2025-11-27T04:01:49.130404-08:00" }, { "operation": "add_edge", - "rtt_ns": 997366, - "rtt_ms": 0.997366, + "rtt_ns": 2308084, + "rtt_ms": 2.308084, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:50.726052589Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:49.13042-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1131166, - "rtt_ms": 1.131166, + "operation": "add_edge", + "rtt_ns": 2211750, + "rtt_ms": 2.21175, "checkpoint": 0, - "vertex_from": "717", - "timestamp": "2025-11-27T01:21:50.726078639Z" + "vertex_from": "18", + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:49.130435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162106, - "rtt_ms": 1.162106, + "rtt_ns": 1221292, + "rtt_ms": 1.221292, "checkpoint": 0, "vertex_from": "18", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.726162919Z" + "timestamp": "2025-11-27T04:01:49.131201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215236, - "rtt_ms": 1.215236, + "rtt_ns": 1493625, + "rtt_ms": 1.493625, "checkpoint": 0, "vertex_from": "18", "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.726177149Z" + "timestamp": "2025-11-27T04:01:49.131381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445336, - "rtt_ms": 1.445336, + "rtt_ns": 1959042, + "rtt_ms": 1.959042, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "21", - "timestamp": "2025-11-27T01:21:50.726200119Z" + "vertex_to": "22", + "timestamp": "2025-11-27T04:01:49.131415-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1507035, - "rtt_ms": 1.507035, + "operation": "add_vertex", + "rtt_ns": 1851833, + "rtt_ms": 1.851833, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:50.726207069Z" + "vertex_from": "717", + "timestamp": "2025-11-27T04:01:49.131441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128487, - "rtt_ms": 1.128487, + "rtt_ns": 1400750, + "rtt_ms": 1.40075, "checkpoint": 0, "vertex_from": "18", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.726229079Z" + "timestamp": "2025-11-27T04:01:49.131533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382466, - "rtt_ms": 1.382466, + "rtt_ns": 1594708, + "rtt_ms": 1.594708, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "22", - "timestamp": "2025-11-27T01:21:50.726252669Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:49.13162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479545, - "rtt_ms": 1.479545, + "rtt_ns": 1472458, + "rtt_ms": 1.472458, "checkpoint": 0, "vertex_from": "18", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.726997176Z" + "timestamp": "2025-11-27T04:01:49.131877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238676, - "rtt_ms": 1.238676, + "rtt_ns": 1692125, + "rtt_ms": 1.692125, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "717", - "timestamp": "2025-11-27T01:21:50.727317805Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:49.132038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294226, - "rtt_ms": 1.294226, + "rtt_ns": 2275458, + "rtt_ms": 2.275458, "checkpoint": 0, "vertex_from": "18", "vertex_to": "56", - "timestamp": "2025-11-27T01:21:50.727348415Z" + "timestamp": "2025-11-27T04:01:49.132712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344456, - "rtt_ms": 1.344456, + "rtt_ns": 1591958, + "rtt_ms": 1.591958, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.727546015Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:49.132794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382936, - "rtt_ms": 1.382936, + "rtt_ns": 2622625, + "rtt_ms": 2.622625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.727547415Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:49.133044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521286, - "rtt_ms": 1.521286, + "rtt_ns": 1818834, + "rtt_ms": 1.818834, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:50.727570875Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:49.133353-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1890042, + "rtt_ms": 1.890042, + "checkpoint": 0, + "vertex_from": "1002", + "timestamp": "2025-11-27T04:01:49.133511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393345, - "rtt_ms": 1.393345, + "rtt_ns": 2113959, + "rtt_ms": 2.113959, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:50.727646884Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:01:49.133555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517535, - "rtt_ms": 1.517535, + "rtt_ns": 1521208, + "rtt_ms": 1.521208, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:50.727696344Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:01:49.13356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539075, - "rtt_ms": 1.539075, + "rtt_ns": 2279792, + "rtt_ms": 2.279792, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:50.727747314Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:49.133704-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1546105, - "rtt_ms": 1.546105, + "operation": "add_edge", + "rtt_ns": 1844583, + "rtt_ms": 1.844583, "checkpoint": 0, - "vertex_from": "1002", - "timestamp": "2025-11-27T01:21:50.727776444Z" + "vertex_from": "18", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:49.133723-08:00" }, { "operation": "add_edge", - "rtt_ns": 787688, - "rtt_ms": 0.787688, + "rtt_ns": 2738958, + "rtt_ms": 2.738958, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "918", - "timestamp": "2025-11-27T01:21:50.727786644Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:49.134121-08:00" }, { "operation": "add_edge", - "rtt_ns": 642078, - "rtt_ms": 0.642078, + "rtt_ns": 1071583, + "rtt_ms": 1.071583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.727961043Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:49.134634-08:00" }, { "operation": "add_edge", - "rtt_ns": 794678, - "rtt_ms": 0.794678, + "rtt_ns": 1563625, + "rtt_ms": 1.563625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.728144083Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:49.134918-08:00" }, { "operation": "add_edge", - "rtt_ns": 695357, - "rtt_ms": 0.695357, + "rtt_ns": 2273000, + "rtt_ms": 2.273, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:50.728268002Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.134985-08:00" }, { "operation": "add_edge", - "rtt_ns": 817227, - "rtt_ms": 0.817227, + "rtt_ns": 1967459, + "rtt_ms": 1.967459, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:50.728365482Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:49.135014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313105, - "rtt_ms": 1.313105, + "rtt_ns": 1730292, + "rtt_ms": 1.730292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:50.72886012Z" + "vertex_to": "1002", + "timestamp": "2025-11-27T04:01:49.135242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006694, - "rtt_ms": 2.006694, + "rtt_ns": 2512250, + "rtt_ms": 2.51225, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.729654728Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.135307-08:00" }, { "operation": "add_edge", - "rtt_ns": 2473262, - "rtt_ms": 2.473262, + "rtt_ns": 1819166, + "rtt_ms": 1.819166, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.730172536Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:49.135375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2477502, - "rtt_ms": 2.477502, + "rtt_ns": 1401250, + "rtt_ms": 1.40125, "checkpoint": 0, "vertex_from": "18", "vertex_to": "897", - "timestamp": "2025-11-27T01:21:50.730265116Z" + "timestamp": "2025-11-27T04:01:49.135523-08:00" }, { "operation": "add_edge", - "rtt_ns": 2570292, - "rtt_ms": 2.570292, + "rtt_ns": 1866584, + "rtt_ms": 1.866584, "checkpoint": 0, "vertex_from": "18", "vertex_to": "563", - "timestamp": "2025-11-27T01:21:50.730318826Z" + "timestamp": "2025-11-27T04:01:49.13559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2626072, - "rtt_ms": 2.626072, + "rtt_ns": 1888458, + "rtt_ms": 1.888458, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "1002", - "timestamp": "2025-11-27T01:21:50.730402716Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.135594-08:00" }, { "operation": "add_edge", - "rtt_ns": 2537972, - "rtt_ms": 2.537972, + "rtt_ns": 1503083, + "rtt_ms": 1.503083, "checkpoint": 0, "vertex_from": "18", "vertex_to": "209", - "timestamp": "2025-11-27T01:21:50.730500365Z" + "timestamp": "2025-11-27T04:01:49.136138-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383552, - "rtt_ms": 2.383552, + "rtt_ns": 1233083, + "rtt_ms": 1.233083, "checkpoint": 0, "vertex_from": "18", "vertex_to": "323", - "timestamp": "2025-11-27T01:21:50.730528695Z" + "timestamp": "2025-11-27T04:01:49.136152-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245003, - "rtt_ms": 2.245003, + "rtt_ns": 1941125, + "rtt_ms": 1.941125, "checkpoint": 0, "vertex_from": "18", "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.730611425Z" + "timestamp": "2025-11-27T04:01:49.136957-08:00" }, { "operation": "add_edge", - "rtt_ns": 2446523, - "rtt_ms": 2.446523, - "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:50.730715545Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1912354, - "rtt_ms": 1.912354, + "rtt_ns": 1730708, + "rtt_ms": 1.730708, "checkpoint": 0, "vertex_from": "18", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.730773384Z" + "timestamp": "2025-11-27T04:01:49.136973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169476, - "rtt_ms": 1.169476, + "rtt_ns": 1695791, + "rtt_ms": 1.695791, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:50.730825334Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:01:49.137072-08:00" }, { "operation": "add_edge", - "rtt_ns": 865588, - "rtt_ms": 0.865588, + "rtt_ns": 1839292, + "rtt_ms": 1.839292, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "826", - "timestamp": "2025-11-27T01:21:50.731039514Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:49.137147-08:00" }, { "operation": "add_edge", - "rtt_ns": 861467, - "rtt_ms": 0.861467, + "rtt_ns": 1980583, + "rtt_ms": 1.980583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.731128103Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:49.137572-08:00" }, { "operation": "add_edge", - "rtt_ns": 787607, - "rtt_ms": 0.787607, + "rtt_ns": 2046208, + "rtt_ms": 2.046208, "checkpoint": 0, "vertex_from": "18", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:50.731191443Z" + "timestamp": "2025-11-27T04:01:49.137641-08:00" }, { "operation": "add_edge", - "rtt_ns": 914007, - "rtt_ms": 0.914007, + "rtt_ns": 2662750, + "rtt_ms": 2.66275, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.731233783Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:49.137649-08:00" }, { "operation": "add_edge", - "rtt_ns": 839848, - "rtt_ms": 0.839848, + "rtt_ns": 2143291, + "rtt_ms": 2.143291, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.731345123Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.137667-08:00" }, { "operation": "add_edge", - "rtt_ns": 911687, - "rtt_ms": 0.911687, + "rtt_ns": 1885583, + "rtt_ms": 1.885583, "checkpoint": 0, "vertex_from": "18", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:50.731441612Z" + "timestamp": "2025-11-27T04:01:49.138039-08:00" }, { "operation": "add_edge", - "rtt_ns": 930697, - "rtt_ms": 0.930697, + "rtt_ns": 1188959, + "rtt_ms": 1.188959, "checkpoint": 0, "vertex_from": "18", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.731543292Z" + "timestamp": "2025-11-27T04:01:49.138149-08:00" }, { "operation": "add_edge", - "rtt_ns": 851767, - "rtt_ms": 0.851767, + "rtt_ns": 1261459, + "rtt_ms": 1.261459, "checkpoint": 0, "vertex_from": "18", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.731568292Z" + "timestamp": "2025-11-27T04:01:49.138236-08:00" }, { "operation": "add_edge", - "rtt_ns": 835308, - "rtt_ms": 0.835308, + "rtt_ns": 2292083, + "rtt_ms": 2.292083, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:50.731610112Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:49.138431-08:00" }, { "operation": "add_edge", - "rtt_ns": 811128, - "rtt_ms": 0.811128, + "rtt_ns": 1418000, + "rtt_ms": 1.418, "checkpoint": 0, "vertex_from": "18", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:50.731637952Z" + "timestamp": "2025-11-27T04:01:49.138566-08:00" }, { "operation": "add_edge", - "rtt_ns": 852837, - "rtt_ms": 0.852837, + "rtt_ns": 1608416, + "rtt_ms": 1.608416, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.731893801Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:49.138682-08:00" }, { "operation": "add_edge", - "rtt_ns": 778828, - "rtt_ms": 0.778828, + "rtt_ns": 1313375, + "rtt_ms": 1.313375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.731908161Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:49.139353-08:00" }, { "operation": "add_edge", - "rtt_ns": 727008, - "rtt_ms": 0.727008, + "rtt_ns": 1761583, + "rtt_ms": 1.761583, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:50.731919581Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:49.139404-08:00" }, { "operation": "add_vertex", - "rtt_ns": 728098, - "rtt_ms": 0.728098, + "rtt_ns": 1847000, + "rtt_ms": 1.847, "checkpoint": 0, "vertex_from": "937", - "timestamp": "2025-11-27T01:21:50.731964861Z" - }, - { - "operation": "add_edge", - "rtt_ns": 693988, - "rtt_ms": 0.693988, - "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:50.73213669Z" + "timestamp": "2025-11-27T04:01:49.139516-08:00" }, { "operation": "add_edge", - "rtt_ns": 823297, - "rtt_ms": 0.823297, + "rtt_ns": 1440000, + "rtt_ms": 1.44, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:50.732744488Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:49.139677-08:00" }, { "operation": "add_edge", - "rtt_ns": 652798, - "rtt_ms": 0.652798, + "rtt_ns": 1537375, + "rtt_ms": 1.537375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:50.73219732Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:49.139687-08:00" }, { "operation": "add_edge", - "rtt_ns": 930037, - "rtt_ms": 0.930037, + "rtt_ns": 1246750, + "rtt_ms": 1.24675, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:50.73227654Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:49.13993-08:00" }, { "operation": "add_edge", - "rtt_ns": 710707, - "rtt_ms": 0.710707, + "rtt_ns": 1382458, + "rtt_ms": 1.382458, "checkpoint": 0, "vertex_from": "18", "vertex_to": "523", - "timestamp": "2025-11-27T01:21:50.732322479Z" + "timestamp": "2025-11-27T04:01:49.13995-08:00" }, { "operation": "add_edge", - "rtt_ns": 799577, - "rtt_ms": 0.799577, + "rtt_ns": 1712917, + "rtt_ms": 1.712917, "checkpoint": 0, "vertex_from": "18", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.732370319Z" + "timestamp": "2025-11-27T04:01:49.140147-08:00" }, { "operation": "add_edge", - "rtt_ns": 758957, - "rtt_ms": 0.758957, + "rtt_ns": 2588250, + "rtt_ms": 2.58825, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:50.732397969Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:49.140162-08:00" }, { "operation": "add_edge", - "rtt_ns": 743467, - "rtt_ms": 0.743467, + "rtt_ns": 2527375, + "rtt_ms": 2.527375, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:50.732639128Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:49.140178-08:00" }, { "operation": "add_edge", - "rtt_ns": 918537, - "rtt_ms": 0.918537, + "rtt_ns": 1676625, + "rtt_ms": 1.676625, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:50.732827648Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:49.141031-08:00" }, { - "operation": "add_edge", - "rtt_ns": 868807, - "rtt_ms": 0.868807, + "operation": "add_vertex", + "rtt_ns": 1129917, + "rtt_ms": 1.129917, "checkpoint": 0, - "vertex_from": "18", - "vertex_to": "937", - "timestamp": "2025-11-27T01:21:50.732833918Z" + "vertex_from": "791", + "timestamp": "2025-11-27T04:01:49.141081-08:00" }, { "operation": "add_edge", - "rtt_ns": 792227, - "rtt_ms": 0.792227, + "rtt_ns": 1501959, + "rtt_ms": 1.501959, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:50.733556235Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.141249-08:00" }, { "operation": "add_edge", - "rtt_ns": 822067, - "rtt_ms": 0.822067, + "rtt_ns": 2115666, + "rtt_ms": 2.115666, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.733567295Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:49.141521-08:00" }, { "operation": "add_edge", - "rtt_ns": 986657, - "rtt_ms": 0.986657, + "rtt_ns": 1852250, + "rtt_ms": 1.85225, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:50.733732295Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:49.141532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430515, - "rtt_ms": 1.430515, + "rtt_ns": 2121875, + "rtt_ms": 2.121875, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:50.734219063Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1493025, - "rtt_ms": 1.493025, - "checkpoint": 0, - "vertex_from": "791", - "timestamp": "2025-11-27T01:21:50.734249133Z" + "vertex_to": "937", + "timestamp": "2025-11-27T04:01:49.141638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786844, - "rtt_ms": 1.786844, + "rtt_ns": 1472083, + "rtt_ms": 1.472083, "checkpoint": 0, "vertex_from": "18", "vertex_to": "369", - "timestamp": "2025-11-27T01:21:50.734560572Z" + "timestamp": "2025-11-27T04:01:49.141651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831983, - "rtt_ms": 1.831983, + "rtt_ns": 1495417, + "rtt_ms": 1.495417, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "865", - "timestamp": "2025-11-27T01:21:50.734662901Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:49.141658-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098443, - "rtt_ms": 2.098443, + "rtt_ns": 1815167, + "rtt_ms": 1.815167, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:50.734879011Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:49.141746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286522, - "rtt_ms": 2.286522, + "rtt_ns": 1616458, + "rtt_ms": 1.616458, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.73505827Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:49.141764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320192, - "rtt_ms": 2.320192, + "rtt_ns": 1062959, + "rtt_ms": 1.062959, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "342", - "timestamp": "2025-11-27T01:21:50.73515555Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:49.142095-08:00" }, { "operation": "add_edge", - "rtt_ns": 786158, - "rtt_ms": 0.786158, + "rtt_ns": 1698000, + "rtt_ms": 1.698, "checkpoint": 0, - "vertex_from": "19", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.735450969Z" + "vertex_from": "18", + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:49.142947-08:00" }, { "operation": "add_edge", - "rtt_ns": 2387452, - "rtt_ms": 2.387452, + "rtt_ns": 1384792, + "rtt_ms": 1.384792, "checkpoint": 0, "vertex_from": "18", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:50.735956587Z" + "timestamp": "2025-11-27T04:01:49.143037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192346, - "rtt_ms": 1.192346, + "rtt_ns": 1285375, + "rtt_ms": 1.285375, "checkpoint": 0, - "vertex_from": "19", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.736072627Z" + "vertex_from": "18", + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:49.14305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2339812, - "rtt_ms": 2.339812, + "rtt_ns": 1528500, + "rtt_ms": 1.5285, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.736072887Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:01:49.14305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897564, - "rtt_ms": 1.897564, + "rtt_ns": 1582542, + "rtt_ms": 1.582542, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.736119677Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:01:49.143115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2602432, - "rtt_ms": 2.602432, + "rtt_ns": 1583833, + "rtt_ms": 1.583833, "checkpoint": 0, "vertex_from": "18", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.736159887Z" + "timestamp": "2025-11-27T04:01:49.143223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004023, - "rtt_ms": 2.004023, + "rtt_ns": 2158500, + "rtt_ms": 2.1585, "checkpoint": 0, "vertex_from": "18", "vertex_to": "791", - "timestamp": "2025-11-27T01:21:50.736253836Z" + "timestamp": "2025-11-27T04:01:49.14324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710984, - "rtt_ms": 1.710984, + "rtt_ns": 1624541, + "rtt_ms": 1.624541, "checkpoint": 0, "vertex_from": "18", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:50.736274716Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:49.143284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915894, - "rtt_ms": 1.915894, + "rtt_ns": 1610416, + "rtt_ms": 1.610416, "checkpoint": 0, - "vertex_from": "19", - "vertex_to": "437", - "timestamp": "2025-11-27T01:21:50.736975994Z" + "vertex_from": "18", + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:49.143357-08:00" }, { "operation": "add_edge", - "rtt_ns": 2387672, - "rtt_ms": 2.387672, + "rtt_ns": 1917167, + "rtt_ms": 1.917167, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.737544752Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.144015-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193043, - "rtt_ms": 2.193043, + "rtt_ns": 1825583, + "rtt_ms": 1.825583, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:50.737645172Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:49.144942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695565, - "rtt_ms": 1.695565, + "rtt_ns": 1890833, + "rtt_ms": 1.890833, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:50.737653372Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:49.144942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614085, - "rtt_ms": 1.614085, + "rtt_ns": 1731333, + "rtt_ms": 1.731333, "checkpoint": 0, "vertex_from": "19", "vertex_to": "270", - "timestamp": "2025-11-27T01:21:50.737688282Z" + "timestamp": "2025-11-27T04:01:49.144955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543705, - "rtt_ms": 1.543705, + "rtt_ns": 1912875, + "rtt_ms": 1.912875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:50.737704672Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.144964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693544, - "rtt_ms": 1.693544, + "rtt_ns": 1735917, + "rtt_ms": 1.735917, "checkpoint": 0, "vertex_from": "19", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.737768481Z" + "timestamp": "2025-11-27T04:01:49.144976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529815, - "rtt_ms": 1.529815, + "rtt_ns": 1729375, + "rtt_ms": 1.729375, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.737784911Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:49.145014-08:00" }, { "operation": "add_edge", - "rtt_ns": 913417, - "rtt_ms": 0.913417, + "rtt_ns": 2042167, + "rtt_ms": 2.042167, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.737890711Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:01:49.14508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628085, - "rtt_ms": 1.628085, + "rtt_ns": 2147708, + "rtt_ms": 2.147708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.737905911Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.145096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803964, - "rtt_ms": 1.803964, + "rtt_ns": 1345875, + "rtt_ms": 1.345875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.737927211Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.145363-08:00" }, { "operation": "add_edge", - "rtt_ns": 954217, - "rtt_ms": 0.954217, + "rtt_ns": 2545125, + "rtt_ms": 2.545125, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.738609739Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:49.145903-08:00" }, { "operation": "add_edge", - "rtt_ns": 994087, - "rtt_ms": 0.994087, + "rtt_ns": 1486375, + "rtt_ms": 1.486375, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.738699899Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:49.146451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608065, - "rtt_ms": 1.608065, + "rtt_ns": 1580666, + "rtt_ms": 1.580666, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.739153997Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.146596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549395, - "rtt_ms": 1.549395, + "rtt_ns": 1760125, + "rtt_ms": 1.760125, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:50.739195887Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:49.146703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571485, - "rtt_ms": 1.571485, + "rtt_ns": 1915125, + "rtt_ms": 1.915125, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.739341596Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:49.146859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415645, - "rtt_ms": 1.415645, + "rtt_ns": 1798834, + "rtt_ms": 1.798834, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.739344026Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:49.146896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663274, - "rtt_ms": 1.663274, + "rtt_ns": 1945625, + "rtt_ms": 1.945625, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.739353526Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.146924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469855, - "rtt_ms": 1.469855, + "rtt_ns": 1054500, + "rtt_ms": 1.0545, "checkpoint": 0, "vertex_from": "19", "vertex_to": "366", - "timestamp": "2025-11-27T01:21:50.739362276Z" + "timestamp": "2025-11-27T04:01:49.14696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579995, - "rtt_ms": 1.579995, + "rtt_ns": 1609750, + "rtt_ms": 1.60975, "checkpoint": 0, "vertex_from": "19", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.739365946Z" + "timestamp": "2025-11-27T04:01:49.146973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519305, - "rtt_ms": 1.519305, + "rtt_ns": 2059292, + "rtt_ms": 2.059292, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:50.739426606Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:49.147017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589935, - "rtt_ms": 1.589935, + "rtt_ns": 2039459, + "rtt_ms": 2.039459, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:50.740201114Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.14712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047317, - "rtt_ms": 1.047317, + "rtt_ns": 1713875, + "rtt_ms": 1.713875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.740203614Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:49.148311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139946, - "rtt_ms": 1.139946, + "rtt_ns": 1733250, + "rtt_ms": 1.73325, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:50.740337283Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:49.148437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672284, - "rtt_ms": 1.672284, + "rtt_ns": 1531833, + "rtt_ms": 1.531833, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:50.740373473Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:49.148506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043697, - "rtt_ms": 1.043697, + "rtt_ns": 1566833, + "rtt_ms": 1.566833, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:50.740389103Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:49.148528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161907, - "rtt_ms": 1.161907, + "rtt_ns": 1538417, + "rtt_ms": 1.538417, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.740504613Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:49.148556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485566, - "rtt_ms": 1.485566, + "rtt_ns": 1659125, + "rtt_ms": 1.659125, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:50.740840712Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:49.148586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591275, - "rtt_ms": 1.591275, + "rtt_ns": 1526041, + "rtt_ms": 1.526041, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.740958281Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.148647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555955, - "rtt_ms": 1.555955, + "rtt_ns": 2209000, + "rtt_ms": 2.209, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.740988311Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:49.148662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652755, - "rtt_ms": 1.652755, + "rtt_ns": 1821375, + "rtt_ms": 1.821375, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.741016161Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:49.148683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159006, - "rtt_ms": 1.159006, + "rtt_ns": 1807458, + "rtt_ms": 1.807458, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:50.74136176Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.148704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199016, - "rtt_ms": 1.199016, + "rtt_ns": 1220958, + "rtt_ms": 1.220958, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.74140462Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.149905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204596, - "rtt_ms": 1.204596, + "rtt_ns": 1364042, + "rtt_ms": 1.364042, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.741595189Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:49.149921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105156, - "rtt_ms": 1.105156, + "rtt_ns": 1484833, + "rtt_ms": 1.484833, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:50.741611059Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.149923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374516, - "rtt_ms": 1.374516, + "rtt_ns": 1522875, + "rtt_ms": 1.522875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.741712999Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:49.15003-08:00" }, { "operation": "add_edge", - "rtt_ns": 788987, - "rtt_ms": 0.788987, + "rtt_ns": 1366333, + "rtt_ms": 1.366333, + "checkpoint": 0, + "vertex_from": "19", + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:49.150043-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1341750, + "rtt_ms": 1.34175, "checkpoint": 0, "vertex_from": "19", "vertex_to": "586", - "timestamp": "2025-11-27T01:21:50.741748538Z" + "timestamp": "2025-11-27T04:01:49.150047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373755, - "rtt_ms": 1.373755, + "rtt_ns": 1774708, + "rtt_ms": 1.774708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.741748908Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:49.150087-08:00" }, { "operation": "add_edge", - "rtt_ns": 783857, - "rtt_ms": 0.783857, + "rtt_ns": 1599541, + "rtt_ms": 1.599541, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.741773118Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:49.150248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226376, - "rtt_ms": 1.226376, + "rtt_ns": 1673583, + "rtt_ms": 1.673583, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:50.742245837Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.15026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640084, - "rtt_ms": 1.640084, + "rtt_ns": 1727625, + "rtt_ms": 1.727625, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.742481916Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.150263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527844, - "rtt_ms": 1.527844, + "rtt_ns": 1722458, + "rtt_ms": 1.722458, "checkpoint": 0, "vertex_from": "19", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.742933164Z" + "timestamp": "2025-11-27T04:01:49.151753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612434, - "rtt_ms": 1.612434, + "rtt_ns": 1747583, + "rtt_ms": 1.747583, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.742975374Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.151795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740664, - "rtt_ms": 1.740664, + "rtt_ns": 1730709, + "rtt_ms": 1.730709, "checkpoint": 0, "vertex_from": "19", "vertex_to": "44", - "timestamp": "2025-11-27T01:21:50.743454593Z" + "timestamp": "2025-11-27T04:01:49.151819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888654, - "rtt_ms": 1.888654, + "rtt_ns": 1809792, + "rtt_ms": 1.809792, "checkpoint": 0, "vertex_from": "19", "vertex_to": "870", - "timestamp": "2025-11-27T01:21:50.743485013Z" + "timestamp": "2025-11-27T04:01:49.151854-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201143, - "rtt_ms": 2.201143, + "rtt_ns": 1996333, + "rtt_ms": 1.996333, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.743813682Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:49.151902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175673, - "rtt_ms": 2.175673, + "rtt_ns": 2000875, + "rtt_ms": 2.000875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.743927481Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:49.151923-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196563, - "rtt_ms": 2.196563, + "rtt_ns": 1876458, + "rtt_ms": 1.876458, "checkpoint": 0, "vertex_from": "19", "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.743971671Z" + "timestamp": "2025-11-27T04:01:49.15214-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257473, - "rtt_ms": 2.257473, + "rtt_ns": 1909333, + "rtt_ms": 1.909333, "checkpoint": 0, "vertex_from": "19", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.744008221Z" + "timestamp": "2025-11-27T04:01:49.152161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778454, - "rtt_ms": 1.778454, + "rtt_ns": 2317041, + "rtt_ms": 2.317041, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.744029711Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.15224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576925, - "rtt_ms": 1.576925, + "rtt_ns": 2019459, + "rtt_ms": 2.019459, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.744060821Z" + "vertex_to": "24", + "timestamp": "2025-11-27T04:01:49.15228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170937, - "rtt_ms": 1.170937, + "rtt_ns": 1335916, + "rtt_ms": 1.335916, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.744105931Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.15309-08:00" }, { "operation": "add_edge", - "rtt_ns": 822007, - "rtt_ms": 0.822007, + "rtt_ns": 1716291, + "rtt_ms": 1.716291, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:50.74427817Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:49.153538-08:00" }, { "operation": "add_edge", - "rtt_ns": 809707, - "rtt_ms": 0.809707, + "rtt_ns": 1316708, + "rtt_ms": 1.316708, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.74429657Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:49.153558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322306, - "rtt_ms": 1.322306, + "rtt_ns": 1747917, + "rtt_ms": 1.747917, "checkpoint": 0, "vertex_from": "19", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.74429922Z" + "timestamp": "2025-11-27T04:01:49.153603-08:00" }, { "operation": "add_edge", - "rtt_ns": 672777, - "rtt_ms": 0.672777, + "rtt_ns": 1715709, + "rtt_ms": 1.715709, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "43", - "timestamp": "2025-11-27T01:21:50.744488479Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:49.153618-08:00" }, { "operation": "add_edge", - "rtt_ns": 739858, - "rtt_ms": 0.739858, + "rtt_ns": 1488542, + "rtt_ms": 1.488542, "checkpoint": 0, "vertex_from": "19", "vertex_to": "26", - "timestamp": "2025-11-27T01:21:50.744669479Z" + "timestamp": "2025-11-27T04:01:49.153652-08:00" }, { "operation": "add_edge", - "rtt_ns": 716528, - "rtt_ms": 0.716528, + "rtt_ns": 1847917, + "rtt_ms": 1.847917, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:50.744689739Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.153771-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1652167, + "rtt_ms": 1.652167, + "checkpoint": 0, + "vertex_from": "19", + "vertex_to": "43", + "timestamp": "2025-11-27T04:01:49.153793-08:00" }, { "operation": "add_edge", - "rtt_ns": 763608, - "rtt_ms": 0.763608, + "rtt_ns": 1533958, + "rtt_ms": 1.533958, "checkpoint": 0, "vertex_from": "19", "vertex_to": "938", - "timestamp": "2025-11-27T01:21:50.744773719Z" + "timestamp": "2025-11-27T04:01:49.153815-08:00" }, { "operation": "add_edge", - "rtt_ns": 734987, - "rtt_ms": 0.734987, + "rtt_ns": 2091417, + "rtt_ms": 2.091417, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.744796888Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.153888-08:00" }, { "operation": "add_edge", - "rtt_ns": 880197, - "rtt_ms": 0.880197, + "rtt_ns": 1175708, + "rtt_ms": 1.175708, "checkpoint": 0, "vertex_from": "19", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:50.744911588Z" + "timestamp": "2025-11-27T04:01:49.154267-08:00" }, { "operation": "add_edge", - "rtt_ns": 891107, - "rtt_ms": 0.891107, + "rtt_ns": 1147166, + "rtt_ms": 1.147166, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:50.744998768Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:49.154941-08:00" }, { "operation": "add_edge", - "rtt_ns": 748288, - "rtt_ms": 0.748288, + "rtt_ns": 1404208, + "rtt_ms": 1.404208, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.745046508Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.155008-08:00" }, { "operation": "add_edge", - "rtt_ns": 768708, - "rtt_ms": 0.768708, + "rtt_ns": 1452875, + "rtt_ms": 1.452875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.745049288Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:49.155012-08:00" }, { "operation": "add_edge", - "rtt_ns": 692638, - "rtt_ms": 0.692638, + "rtt_ns": 1457333, + "rtt_ms": 1.457333, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:50.745183107Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.155076-08:00" }, { "operation": "add_edge", - "rtt_ns": 936237, - "rtt_ms": 0.936237, + "rtt_ns": 1247083, + "rtt_ms": 1.247083, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:50.745236617Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:49.155138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258216, - "rtt_ms": 1.258216, + "rtt_ns": 1775583, + "rtt_ms": 1.775583, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.745929285Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.155315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038107, - "rtt_ms": 1.038107, + "rtt_ns": 1958083, + "rtt_ms": 1.958083, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.745951235Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:49.155611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195136, - "rtt_ms": 1.195136, + "rtt_ns": 1878750, + "rtt_ms": 1.87875, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:50.745970765Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:49.155651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363445, - "rtt_ms": 1.363445, + "rtt_ns": 1445417, + "rtt_ms": 1.445417, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.746057044Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.155714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071236, - "rtt_ms": 1.071236, + "rtt_ns": 1939417, + "rtt_ms": 1.939417, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.746071894Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:49.15576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308046, - "rtt_ms": 1.308046, + "rtt_ns": 1133375, + "rtt_ms": 1.133375, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.746107454Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.156077-08:00" }, { "operation": "add_edge", - "rtt_ns": 939137, - "rtt_ms": 0.939137, + "rtt_ns": 1654667, + "rtt_ms": 1.654667, "checkpoint": 0, "vertex_from": "19", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:50.746123824Z" + "timestamp": "2025-11-27T04:01:49.156793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111216, - "rtt_ms": 1.111216, + "rtt_ns": 1803042, + "rtt_ms": 1.803042, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.746158894Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:49.156813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153096, - "rtt_ms": 1.153096, + "rtt_ns": 1867666, + "rtt_ms": 1.867666, "checkpoint": 0, "vertex_from": "19", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.746203464Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:49.15688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618655, - "rtt_ms": 1.618655, + "rtt_ns": 1584292, + "rtt_ms": 1.584292, "checkpoint": 0, "vertex_from": "19", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.746857292Z" + "timestamp": "2025-11-27T04:01:49.156901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282666, - "rtt_ms": 1.282666, + "rtt_ns": 1239292, + "rtt_ms": 1.239292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.747255391Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.157001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186466, - "rtt_ms": 1.186466, + "rtt_ns": 1373334, + "rtt_ms": 1.373334, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:50.74734658Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:49.157025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427885, - "rtt_ms": 1.427885, + "rtt_ns": 1427250, + "rtt_ms": 1.42725, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.74735829Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.157142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347786, - "rtt_ms": 1.347786, + "rtt_ns": 2070250, + "rtt_ms": 2.07025, "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.74742127Z" + "vertex_from": "19", + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:49.157149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482315, - "rtt_ms": 1.482315, + "rtt_ns": 1694834, + "rtt_ms": 1.694834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.74743618Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.157306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373676, - "rtt_ms": 1.373676, + "rtt_ns": 1074542, + "rtt_ms": 1.074542, "checkpoint": 0, "vertex_from": "20", "vertex_to": "930", - "timestamp": "2025-11-27T01:21:50.74748238Z" + "timestamp": "2025-11-27T04:01:49.157869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514206, - "rtt_ms": 1.514206, + "rtt_ns": 2151125, + "rtt_ms": 2.151125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.74757441Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.15823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519145, - "rtt_ms": 1.519145, + "rtt_ns": 1440167, + "rtt_ms": 1.440167, "checkpoint": 0, "vertex_from": "20", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.747644619Z" + "timestamp": "2025-11-27T04:01:49.158254-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018353, - "rtt_ms": 2.018353, + "rtt_ns": 1253625, + "rtt_ms": 1.253625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.748223477Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:49.158403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366785, - "rtt_ms": 1.366785, + "rtt_ns": 1474958, + "rtt_ms": 1.474958, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.748225117Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.158501-08:00" }, { "operation": "add_edge", - "rtt_ns": 847747, - "rtt_ms": 0.847747, + "rtt_ns": 1674458, + "rtt_ms": 1.674458, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.748270607Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:49.158556-08:00" }, { "operation": "add_edge", - "rtt_ns": 943587, - "rtt_ms": 0.943587, + "rtt_ns": 1619375, + "rtt_ms": 1.619375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:50.748304377Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:49.158622-08:00" }, { "operation": "add_edge", - "rtt_ns": 954317, - "rtt_ms": 0.954317, + "rtt_ns": 1734042, + "rtt_ms": 1.734042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.748392757Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.158636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115127, - "rtt_ms": 1.115127, + "rtt_ns": 2031042, + "rtt_ms": 2.031042, "checkpoint": 0, "vertex_from": "20", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.748463287Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1227486, - "rtt_ms": 1.227486, - "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.748484107Z" + "timestamp": "2025-11-27T04:01:49.159174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584695, - "rtt_ms": 1.584695, + "rtt_ns": 1150667, + "rtt_ms": 1.150667, "checkpoint": 0, "vertex_from": "20", "vertex_to": "554", - "timestamp": "2025-11-27T01:21:50.749068865Z" + "timestamp": "2025-11-27T04:01:49.159381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613205, - "rtt_ms": 1.613205, + "rtt_ns": 1884834, + "rtt_ms": 1.884834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.749259844Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:49.159755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713024, - "rtt_ms": 1.713024, + "rtt_ns": 2466292, + "rtt_ms": 2.466292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:50.749288714Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:49.159773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094217, - "rtt_ms": 1.094217, + "rtt_ns": 1286375, + "rtt_ms": 1.286375, "checkpoint": 0, "vertex_from": "20", "vertex_to": "313", - "timestamp": "2025-11-27T01:21:50.749320344Z" + "timestamp": "2025-11-27T04:01:49.159788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177836, - "rtt_ms": 1.177836, + "rtt_ns": 1657167, + "rtt_ms": 1.657167, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.749572433Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.160061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360466, - "rtt_ms": 1.360466, + "rtt_ns": 2154000, + "rtt_ms": 2.154, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.749588033Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:49.160411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266185, - "rtt_ms": 1.266185, + "rtt_ns": 2083625, + "rtt_ms": 2.083625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.749755962Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.16064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479845, - "rtt_ms": 1.479845, + "rtt_ns": 2043041, + "rtt_ms": 2.043041, "checkpoint": 0, "vertex_from": "20", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:50.749785592Z" + "timestamp": "2025-11-27T04:01:49.16068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332815, - "rtt_ms": 1.332815, + "rtt_ns": 2095292, + "rtt_ms": 2.095292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:50.749797412Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:49.160718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618145, - "rtt_ms": 1.618145, + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:50.749890922Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.16165-08:00" }, { "operation": "add_edge", - "rtt_ns": 877567, - "rtt_ms": 0.877567, + "rtt_ns": 1915834, + "rtt_ms": 1.915834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:50.749947422Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:49.161671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162976, - "rtt_ms": 1.162976, + "rtt_ns": 2399292, + "rtt_ms": 2.399292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:50.75042398Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:49.161782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274366, - "rtt_ms": 1.274366, + "rtt_ns": 2679792, + "rtt_ms": 2.679792, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.75059551Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:49.161855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337315, - "rtt_ms": 1.337315, + "rtt_ns": 2114500, + "rtt_ms": 2.1145, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.750626859Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:49.161888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262196, - "rtt_ms": 1.262196, + "rtt_ns": 2259625, + "rtt_ms": 2.259625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.751018778Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:49.162051-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269952, - "rtt_ms": 2.269952, + "rtt_ns": 1782208, + "rtt_ms": 1.782208, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.751843295Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.162194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2332232, - "rtt_ms": 2.332232, + "rtt_ns": 2494125, + "rtt_ms": 2.494125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.751921385Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.163136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2253773, - "rtt_ms": 2.253773, + "rtt_ns": 1435208, + "rtt_ms": 1.435208, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:50.752040085Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:49.163218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2350652, - "rtt_ms": 2.350652, + "rtt_ns": 2609291, + "rtt_ms": 2.609291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.752148974Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.163335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2406442, - "rtt_ms": 2.406442, + "rtt_ns": 1730083, + "rtt_ms": 1.730083, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:50.752298164Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:49.163382-08:00" }, { "operation": "add_edge", - "rtt_ns": 2501321, - "rtt_ms": 2.501321, + "rtt_ns": 1591291, + "rtt_ms": 1.591291, "checkpoint": 0, "vertex_from": "20", "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.752449913Z" + "timestamp": "2025-11-27T04:01:49.163447-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080143, - "rtt_ms": 2.080143, + "rtt_ns": 1408459, + "rtt_ms": 1.408459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.752506353Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.163461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959984, - "rtt_ms": 1.959984, + "rtt_ns": 1306167, + "rtt_ms": 1.306167, "checkpoint": 0, "vertex_from": "20", "vertex_to": "230", - "timestamp": "2025-11-27T01:21:50.752588083Z" + "timestamp": "2025-11-27T04:01:49.163501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039333, - "rtt_ms": 2.039333, + "rtt_ns": 1880917, + "rtt_ms": 1.880917, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.752636503Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.163554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712215, - "rtt_ms": 1.712215, + "rtt_ns": 1703459, + "rtt_ms": 1.703459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "659", - "timestamp": "2025-11-27T01:21:50.752731843Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:49.163593-08:00" }, { "operation": "add_edge", - "rtt_ns": 974307, - "rtt_ms": 0.974307, + "rtt_ns": 3014542, + "rtt_ms": 3.014542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.752818852Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.163695-08:00" }, { "operation": "add_edge", - "rtt_ns": 945107, - "rtt_ms": 0.945107, + "rtt_ns": 1202875, + "rtt_ms": 1.202875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:50.752868032Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:49.164586-08:00" }, { "operation": "add_edge", - "rtt_ns": 929347, - "rtt_ms": 0.929347, + "rtt_ns": 1418584, + "rtt_ms": 1.418584, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:50.752970962Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:49.164637-08:00" }, { "operation": "add_edge", - "rtt_ns": 967167, - "rtt_ms": 0.967167, + "rtt_ns": 1564291, + "rtt_ms": 1.564291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.753117491Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:49.164902-08:00" }, { "operation": "add_edge", - "rtt_ns": 852467, - "rtt_ms": 0.852467, + "rtt_ns": 1357750, + "rtt_ms": 1.35775, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:50.753151551Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:49.165054-08:00" }, { "operation": "add_edge", - "rtt_ns": 729318, - "rtt_ms": 0.729318, + "rtt_ns": 1473250, + "rtt_ms": 1.47325, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.753237991Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.165067-08:00" }, { "operation": "add_edge", - "rtt_ns": 807678, - "rtt_ms": 0.807678, + "rtt_ns": 1519667, + "rtt_ms": 1.519667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.753260621Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.165075-08:00" }, { "operation": "add_edge", - "rtt_ns": 780538, - "rtt_ms": 0.780538, + "rtt_ns": 2027875, + "rtt_ms": 2.027875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.753369431Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:01:49.165165-08:00" }, { "operation": "add_edge", - "rtt_ns": 829077, - "rtt_ms": 0.829077, + "rtt_ns": 1723875, + "rtt_ms": 1.723875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:50.75346652Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:49.165186-08:00" }, { "operation": "add_edge", - "rtt_ns": 941567, - "rtt_ms": 0.941567, + "rtt_ns": 1869416, + "rtt_ms": 1.869416, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.754060518Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:49.165319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217156, - "rtt_ms": 1.217156, + "rtt_ns": 1851875, + "rtt_ms": 1.851875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "79", - "timestamp": "2025-11-27T01:21:50.754086248Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:49.165355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365425, - "rtt_ms": 1.365425, + "rtt_ns": 1165333, + "rtt_ms": 1.165333, "checkpoint": 0, "vertex_from": "20", "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.754098438Z" + "timestamp": "2025-11-27T04:01:49.165753-08:00" }, { "operation": "add_edge", - "rtt_ns": 858997, - "rtt_ms": 0.858997, + "rtt_ns": 1572625, + "rtt_ms": 1.572625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.754120578Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:49.16621-08:00" }, { "operation": "add_edge", - "rtt_ns": 903277, - "rtt_ms": 0.903277, + "rtt_ns": 1204000, + "rtt_ms": 1.204, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.754142678Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.166272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324766, - "rtt_ms": 1.324766, + "rtt_ns": 1470917, + "rtt_ms": 1.470917, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:50.754145028Z" + "vertex_to": "79", + "timestamp": "2025-11-27T04:01:49.166376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179036, - "rtt_ms": 1.179036, + "rtt_ns": 1377792, + "rtt_ms": 1.377792, "checkpoint": 0, "vertex_from": "20", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.754151068Z" + "timestamp": "2025-11-27T04:01:49.166433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068197, - "rtt_ms": 1.068197, + "rtt_ns": 2000541, + "rtt_ms": 2.000541, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.754221488Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:49.167358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571915, - "rtt_ms": 1.571915, + "rtt_ns": 2097458, + "rtt_ms": 2.097458, "checkpoint": 0, "vertex_from": "20", "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.754943206Z" + "timestamp": "2025-11-27T04:01:49.167419-08:00" }, { "operation": "add_edge", - "rtt_ns": 942517, - "rtt_ms": 0.942517, + "rtt_ns": 2400583, + "rtt_ms": 2.400583, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "188", - "timestamp": "2025-11-27T01:21:50.755004365Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:49.167476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575535, - "rtt_ms": 1.575535, + "rtt_ns": 2553833, + "rtt_ms": 2.553833, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:50.755043325Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.167741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902254, - "rtt_ms": 1.902254, + "rtt_ns": 2106250, + "rtt_ms": 2.10625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.755989372Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:01:49.16786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938334, - "rtt_ms": 1.938334, + "rtt_ns": 1668417, + "rtt_ms": 1.668417, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.756060582Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.167879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969004, - "rtt_ms": 1.969004, + "rtt_ns": 2877458, + "rtt_ms": 2.877458, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:50.756115232Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.168043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065223, - "rtt_ms": 2.065223, + "rtt_ns": 1780000, + "rtt_ms": 1.78, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:50.756288281Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:49.168053-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197573, - "rtt_ms": 2.197573, + "rtt_ns": 1770042, + "rtt_ms": 1.770042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.756349941Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.168146-08:00" }, { "operation": "add_edge", - "rtt_ns": 2352562, - "rtt_ms": 2.352562, + "rtt_ns": 1903333, + "rtt_ms": 1.903333, "checkpoint": 0, "vertex_from": "20", "vertex_to": "56", - "timestamp": "2025-11-27T01:21:50.7564966Z" + "timestamp": "2025-11-27T04:01:49.168336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2885741, - "rtt_ms": 2.885741, + "rtt_ns": 1409375, + "rtt_ms": 1.409375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.756986839Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.169289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076693, - "rtt_ms": 2.076693, + "rtt_ns": 1351042, + "rtt_ms": 1.351042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.757082118Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.169397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053413, - "rtt_ms": 2.053413, + "rtt_ns": 1281542, + "rtt_ms": 1.281542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.757097938Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:49.169428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164292, - "rtt_ms": 2.164292, + "rtt_ns": 1958917, + "rtt_ms": 1.958917, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.757109318Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:49.169436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157776, - "rtt_ms": 1.157776, + "rtt_ns": 1389875, + "rtt_ms": 1.389875, "checkpoint": 0, "vertex_from": "20", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.757220588Z" + "timestamp": "2025-11-27T04:01:49.169443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709034, - "rtt_ms": 1.709034, + "rtt_ns": 2033125, + "rtt_ms": 2.033125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.757699846Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.169454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480025, - "rtt_ms": 1.480025, + "rtt_ns": 2109709, + "rtt_ms": 2.109709, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.757831646Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:49.16947-08:00" }, { "operation": "add_edge", - "rtt_ns": 819678, - "rtt_ms": 0.819678, + "rtt_ns": 1704750, + "rtt_ms": 1.70475, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.757903966Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:49.169565-08:00" }, { "operation": "add_edge", - "rtt_ns": 939847, - "rtt_ms": 0.939847, + "rtt_ns": 1883791, + "rtt_ms": 1.883791, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:50.757928106Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.169626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441896, - "rtt_ms": 1.441896, + "rtt_ns": 1993583, + "rtt_ms": 1.993583, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:50.757939666Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:49.170331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858703, - "rtt_ms": 1.858703, + "rtt_ns": 1306000, + "rtt_ms": 1.306, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:50.757975305Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:49.170736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156763, - "rtt_ms": 2.156763, + "rtt_ns": 1553083, + "rtt_ms": 1.553083, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:50.758446354Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:49.17095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389776, - "rtt_ms": 1.389776, + "rtt_ns": 1623958, + "rtt_ms": 1.623958, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:50.758501814Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:49.171061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318796, - "rtt_ms": 1.318796, + "rtt_ns": 1669042, + "rtt_ms": 1.669042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.758541254Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:49.171113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445276, - "rtt_ms": 1.445276, + "rtt_ns": 1925291, + "rtt_ms": 1.925291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.758544654Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1048407, - "rtt_ms": 1.048407, - "checkpoint": 0, - "vertex_from": "934", - "timestamp": "2025-11-27T01:21:50.758751893Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:49.171397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303366, - "rtt_ms": 1.303366, + "rtt_ns": 1956375, + "rtt_ms": 1.956375, "checkpoint": 0, "vertex_from": "20", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.759136462Z" + "timestamp": "2025-11-27T04:01:49.171583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298355, - "rtt_ms": 1.298355, + "rtt_ns": 2170333, + "rtt_ms": 2.170333, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.759203681Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:49.171624-08:00" }, { "operation": "add_edge", - "rtt_ns": 792617, - "rtt_ms": 0.792617, + "rtt_ns": 2486375, + "rtt_ms": 2.486375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.759295691Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.171777-08:00" }, { "operation": "add_edge", - "rtt_ns": 765437, - "rtt_ms": 0.765437, + "rtt_ns": 1733834, + "rtt_ms": 1.733834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.759311691Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.172065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389965, - "rtt_ms": 1.389965, + "rtt_ns": 1136375, + "rtt_ms": 1.136375, "checkpoint": 0, "vertex_from": "20", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.759332151Z" + "timestamp": "2025-11-27T04:01:49.172088-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2636625, + "rtt_ms": 2.636625, + "checkpoint": 0, + "vertex_from": "934", + "timestamp": "2025-11-27T04:01:49.172204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398856, - "rtt_ms": 1.398856, + "rtt_ns": 1479875, + "rtt_ms": 1.479875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:50.759375331Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:49.173066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498685, - "rtt_ms": 1.498685, + "rtt_ns": 1365083, + "rtt_ms": 1.365083, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.759427901Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:49.173143-08:00" }, { "operation": "add_edge", - "rtt_ns": 915766, - "rtt_ms": 0.915766, + "rtt_ns": 1783541, + "rtt_ms": 1.783541, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.75946122Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.173409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013496, - "rtt_ms": 1.013496, + "rtt_ns": 2306958, + "rtt_ms": 2.306958, "checkpoint": 0, "vertex_from": "20", "vertex_to": "325", - "timestamp": "2025-11-27T01:21:50.75946196Z" + "timestamp": "2025-11-27T04:01:49.17342-08:00" }, { "operation": "add_edge", - "rtt_ns": 757197, - "rtt_ms": 0.757197, + "rtt_ns": 2111042, + "rtt_ms": 2.111042, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "934", - "timestamp": "2025-11-27T01:21:50.75950958Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:49.173509-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1095277, - "rtt_ms": 1.095277, + "rtt_ns": 1461042, + "rtt_ms": 1.461042, "checkpoint": 0, "vertex_from": "703", - "timestamp": "2025-11-27T01:21:50.760301308Z" + "timestamp": "2025-11-27T04:01:49.173527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206346, - "rtt_ms": 1.206346, + "rtt_ns": 2874125, + "rtt_ms": 2.874125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:50.760344288Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:49.173611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535745, - "rtt_ms": 1.535745, + "rtt_ns": 2606459, + "rtt_ms": 2.606459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.760848656Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:49.173668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523305, - "rtt_ms": 1.523305, + "rtt_ns": 1581000, + "rtt_ms": 1.581, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.760862116Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.17367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485905, - "rtt_ms": 1.485905, + "rtt_ns": 2828875, + "rtt_ms": 2.828875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.760862716Z" + "vertex_to": "934", + "timestamp": "2025-11-27T04:01:49.175033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579125, - "rtt_ms": 1.579125, + "rtt_ns": 1983417, + "rtt_ms": 1.983417, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.760876516Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:49.17505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149594, - "rtt_ms": 2.149594, + "rtt_ns": 1990500, + "rtt_ms": 1.9905, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "345", - "timestamp": "2025-11-27T01:21:50.761618934Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:49.175135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233183, - "rtt_ms": 2.233183, + "rtt_ns": 1752500, + "rtt_ms": 1.7525, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:50.761696963Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:49.175163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2270702, - "rtt_ms": 2.270702, + "rtt_ns": 1959625, + "rtt_ms": 1.959625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:50.761699763Z" + "vertex_to": "703", + "timestamp": "2025-11-27T04:01:49.175487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2190653, - "rtt_ms": 2.190653, + "rtt_ns": 1868250, + "rtt_ms": 1.86825, "checkpoint": 0, "vertex_from": "20", "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.761701973Z" + "timestamp": "2025-11-27T04:01:49.175537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697964, - "rtt_ms": 1.697964, + "rtt_ns": 2192167, + "rtt_ms": 2.192167, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "703", - "timestamp": "2025-11-27T01:21:50.761999802Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:49.175804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197616, - "rtt_ms": 1.197616, + "rtt_ns": 2366875, + "rtt_ms": 2.366875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.762076302Z" + "vertex_to": "345", + "timestamp": "2025-11-27T04:01:49.175878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281686, - "rtt_ms": 1.281686, + "rtt_ns": 2217708, + "rtt_ms": 2.217708, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:50.762146202Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.175888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337316, - "rtt_ms": 1.337316, + "rtt_ns": 2566459, + "rtt_ms": 2.566459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.762187202Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:49.175988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411256, - "rtt_ms": 1.411256, + "rtt_ns": 1257542, + "rtt_ms": 1.257542, "checkpoint": 0, "vertex_from": "20", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.762275452Z" + "timestamp": "2025-11-27T04:01:49.176309-08:00" }, { "operation": "add_edge", - "rtt_ns": 705147, - "rtt_ms": 0.705147, + "rtt_ns": 1064250, + "rtt_ms": 1.06425, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:50.762325721Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:49.176869-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027413, - "rtt_ms": 2.027413, + "rtt_ns": 1952458, + "rtt_ms": 1.952458, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.762373491Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.176986-08:00" }, { "operation": "add_edge", - "rtt_ns": 699968, - "rtt_ms": 0.699968, + "rtt_ns": 1866125, + "rtt_ms": 1.866125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:50.762397901Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:49.177004-08:00" }, { "operation": "add_edge", - "rtt_ns": 716958, - "rtt_ms": 0.716958, + "rtt_ns": 1465834, + "rtt_ms": 1.465834, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:50.762421501Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:49.177004-08:00" }, { "operation": "add_edge", - "rtt_ns": 906937, - "rtt_ms": 0.906937, + "rtt_ns": 1159167, + "rtt_ms": 1.159167, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:50.7626079Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:49.177039-08:00" }, { "operation": "add_edge", - "rtt_ns": 656188, - "rtt_ms": 0.656188, + "rtt_ns": 1976375, + "rtt_ms": 1.976375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.76265725Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:49.17714-08:00" }, { "operation": "add_edge", - "rtt_ns": 755638, - "rtt_ms": 0.755638, + "rtt_ns": 1166792, + "rtt_ms": 1.166792, "checkpoint": 0, "vertex_from": "20", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:50.76283315Z" + "timestamp": "2025-11-27T04:01:49.177155-08:00" }, { "operation": "add_edge", - "rtt_ns": 832477, - "rtt_ms": 0.832477, + "rtt_ns": 1688791, + "rtt_ms": 1.688791, "checkpoint": 0, "vertex_from": "20", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.762980029Z" + "timestamp": "2025-11-27T04:01:49.177999-08:00" }, { "operation": "add_edge", - "rtt_ns": 786497, - "rtt_ms": 0.786497, + "rtt_ns": 1369875, + "rtt_ms": 1.369875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.763063009Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:49.178241-08:00" }, { "operation": "add_edge", - "rtt_ns": 947557, - "rtt_ms": 0.947557, + "rtt_ns": 2813750, + "rtt_ms": 2.81375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:50.763135879Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:49.178302-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2794416, + "rtt_ms": 2.794416, + "checkpoint": 0, + "vertex_from": "20", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.178683-08:00" }, { "operation": "add_edge", - "rtt_ns": 893128, - "rtt_ms": 0.893128, + "rtt_ns": 1820459, + "rtt_ms": 1.820459, "checkpoint": 0, "vertex_from": "20", "vertex_to": "25", - "timestamp": "2025-11-27T01:21:50.763220349Z" + "timestamp": "2025-11-27T04:01:49.178825-08:00" }, { "operation": "add_edge", - "rtt_ns": 824568, - "rtt_ms": 0.824568, + "rtt_ns": 1841292, + "rtt_ms": 1.841292, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.763223399Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.17883-08:00" }, { "operation": "add_edge", - "rtt_ns": 863257, - "rtt_ms": 0.863257, + "rtt_ns": 1690792, + "rtt_ms": 1.690792, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:50.763239778Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:49.178847-08:00" }, { "operation": "add_edge", - "rtt_ns": 873967, - "rtt_ms": 0.873967, + "rtt_ns": 1899625, + "rtt_ms": 1.899625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:50.763296478Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:49.178905-08:00" }, { "operation": "add_edge", - "rtt_ns": 696408, - "rtt_ms": 0.696408, + "rtt_ns": 783084, + "rtt_ms": 0.783084, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:50.763354818Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:49.179025-08:00" }, { "operation": "add_edge", - "rtt_ns": 747838, - "rtt_ms": 0.747838, + "rtt_ns": 1898958, + "rtt_ms": 1.898958, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:50.763358148Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:49.179041-08:00" }, { "operation": "add_edge", - "rtt_ns": 676228, - "rtt_ms": 0.676228, + "rtt_ns": 2142542, + "rtt_ms": 2.142542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:50.763510688Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:49.179183-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 586588, - "rtt_ms": 0.586588, + "operation": "add_edge", + "rtt_ns": 1493209, + "rtt_ms": 1.493209, "checkpoint": 0, - "vertex_from": "190", - "timestamp": "2025-11-27T01:21:50.763651617Z" + "vertex_from": "20", + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:49.179494-08:00" }, { "operation": "add_edge", - "rtt_ns": 690038, - "rtt_ms": 0.690038, + "rtt_ns": 1439208, + "rtt_ms": 1.439208, "checkpoint": 0, "vertex_from": "20", "vertex_to": "868", - "timestamp": "2025-11-27T01:21:50.763671567Z" + "timestamp": "2025-11-27T04:01:49.179742-08:00" }, { "operation": "add_edge", - "rtt_ns": 774447, - "rtt_ms": 0.774447, + "rtt_ns": 1222916, + "rtt_ms": 1.222916, "checkpoint": 0, "vertex_from": "20", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.763911616Z" + "timestamp": "2025-11-27T04:01:49.180049-08:00" }, { "operation": "add_edge", - "rtt_ns": 703168, - "rtt_ms": 0.703168, + "rtt_ns": 1279666, + "rtt_ms": 1.279666, "checkpoint": 0, "vertex_from": "20", "vertex_to": "472", - "timestamp": "2025-11-27T01:21:50.763944266Z" + "timestamp": "2025-11-27T04:01:49.180185-08:00" }, { "operation": "add_edge", - "rtt_ns": 789137, - "rtt_ms": 0.789137, + "rtt_ns": 1363792, + "rtt_ms": 1.363792, "checkpoint": 0, "vertex_from": "20", "vertex_to": "77", - "timestamp": "2025-11-27T01:21:50.764014226Z" + "timestamp": "2025-11-27T04:01:49.180211-08:00" }, { "operation": "add_edge", - "rtt_ns": 794187, - "rtt_ms": 0.794187, + "rtt_ns": 1839583, + "rtt_ms": 1.839583, "checkpoint": 0, "vertex_from": "20", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.764015496Z" + "timestamp": "2025-11-27T04:01:49.180671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894594, - "rtt_ms": 1.894594, + "rtt_ns": 1664209, + "rtt_ms": 1.664209, "checkpoint": 0, "vertex_from": "20", "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.765192112Z" + "timestamp": "2025-11-27T04:01:49.18069-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022413, - "rtt_ms": 2.022413, + "rtt_ns": 1343209, + "rtt_ms": 1.343209, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:50.765381691Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.180839-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109493, - "rtt_ms": 2.109493, + "rtt_ns": 1694125, + "rtt_ms": 1.694125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:50.765465361Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:49.180878-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017183, - "rtt_ms": 2.017183, + "rtt_ns": 1149333, + "rtt_ms": 1.149333, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.765528841Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:49.180893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690175, - "rtt_ms": 1.690175, + "rtt_ns": 2063583, + "rtt_ms": 2.063583, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:50.765635401Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:49.181105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741814, - "rtt_ms": 1.741814, + "rtt_ns": 1145000, + "rtt_ms": 1.145, "checkpoint": 0, "vertex_from": "20", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.76565453Z" + "timestamp": "2025-11-27T04:01:49.181195-08:00" }, { "operation": "add_edge", - "rtt_ns": 2003483, - "rtt_ms": 2.003483, + "rtt_ns": 1037667, + "rtt_ms": 1.037667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "190", - "timestamp": "2025-11-27T01:21:50.76565539Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:01:49.18125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2821480, - "rtt_ms": 2.82148, + "rtt_ns": 1145667, + "rtt_ms": 1.145667, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.766572227Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:49.181332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2692331, - "rtt_ms": 2.692331, + "rtt_ns": 1157792, + "rtt_ms": 1.157792, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "651", - "timestamp": "2025-11-27T01:21:50.766709197Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:49.181998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2787611, - "rtt_ms": 2.787611, + "rtt_ns": 1630750, + "rtt_ms": 1.63075, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "809", - "timestamp": "2025-11-27T01:21:50.766803877Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:49.182321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459555, - "rtt_ms": 1.459555, + "rtt_ns": 1666541, + "rtt_ms": 1.666541, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.766989376Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:01:49.182339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605565, - "rtt_ms": 1.605565, + "rtt_ns": 1974208, + "rtt_ms": 1.974208, "checkpoint": 0, "vertex_from": "20", "vertex_to": "394", - "timestamp": "2025-11-27T01:21:50.767071756Z" + "timestamp": "2025-11-27T04:01:49.182853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701775, - "rtt_ms": 1.701775, + "rtt_ns": 1721583, + "rtt_ms": 1.721583, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.767084406Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:49.182917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949723, - "rtt_ms": 1.949723, + "rtt_ns": 1829166, + "rtt_ms": 1.829166, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:50.767143555Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:01:49.182935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556215, - "rtt_ms": 1.556215, + "rtt_ns": 1920750, + "rtt_ms": 1.92075, "checkpoint": 0, "vertex_from": "20", "vertex_to": "368", - "timestamp": "2025-11-27T01:21:50.767213445Z" + "timestamp": "2025-11-27T04:01:49.18318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605665, - "rtt_ms": 1.605665, + "rtt_ns": 2502666, + "rtt_ms": 2.502666, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:50.767261065Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.183397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705444, - "rtt_ms": 1.705444, + "rtt_ns": 1468583, + "rtt_ms": 1.468583, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "842", - "timestamp": "2025-11-27T01:21:50.767341855Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:49.183467-08:00" }, { "operation": "add_edge", - "rtt_ns": 697598, - "rtt_ms": 0.697598, + "rtt_ns": 2168584, + "rtt_ms": 2.168584, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:50.767407805Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:49.183501-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 5442625, + "rtt_ms": 5.442625, + "checkpoint": 0, + "vertex_from": "190", + "timestamp": "2025-11-27T04:01:49.184129-08:00" }, { "operation": "add_edge", - "rtt_ns": 875497, - "rtt_ms": 0.875497, + "rtt_ns": 1905666, + "rtt_ms": 1.905666, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:50.767448724Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:49.184245-08:00" }, { "operation": "add_edge", - "rtt_ns": 697377, - "rtt_ms": 0.697377, + "rtt_ns": 2018625, + "rtt_ms": 2.018625, "checkpoint": 0, "vertex_from": "20", "vertex_to": "389", - "timestamp": "2025-11-27T01:21:50.767501994Z" + "timestamp": "2025-11-27T04:01:49.184341-08:00" }, { "operation": "add_edge", - "rtt_ns": 624468, - "rtt_ms": 0.624468, + "rtt_ns": 1212208, + "rtt_ms": 1.212208, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.767614714Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:01:49.184681-08:00" }, { "operation": "add_edge", - "rtt_ns": 713077, - "rtt_ms": 0.713077, + "rtt_ns": 1836292, + "rtt_ms": 1.836292, "checkpoint": 0, "vertex_from": "20", "vertex_to": "156", - "timestamp": "2025-11-27T01:21:50.767798563Z" + "timestamp": "2025-11-27T04:01:49.184755-08:00" }, { "operation": "add_edge", - "rtt_ns": 761757, - "rtt_ms": 0.761757, + "rtt_ns": 1961542, + "rtt_ms": 1.961542, "checkpoint": 0, "vertex_from": "20", "vertex_to": "650", - "timestamp": "2025-11-27T01:21:50.767834523Z" + "timestamp": "2025-11-27T04:01:49.184818-08:00" }, { "operation": "add_edge", - "rtt_ns": 805528, - "rtt_ms": 0.805528, + "rtt_ns": 1674542, + "rtt_ms": 1.674542, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:50.767950313Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.184855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397175, - "rtt_ms": 1.397175, + "rtt_ns": 2061459, + "rtt_ms": 2.061459, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "603", - "timestamp": "2025-11-27T01:21:50.76874013Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:49.184998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500855, - "rtt_ms": 1.500855, + "rtt_ns": 1921750, + "rtt_ms": 1.92175, "checkpoint": 0, "vertex_from": "20", "vertex_to": "71", - "timestamp": "2025-11-27T01:21:50.76876286Z" + "timestamp": "2025-11-27T04:01:49.185319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615305, - "rtt_ms": 1.615305, + "rtt_ns": 1851917, + "rtt_ms": 1.851917, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.76882945Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:49.185354-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1422250, + "rtt_ms": 1.42225, + "checkpoint": 0, + "vertex_from": "20", + "vertex_to": "190", + "timestamp": "2025-11-27T04:01:49.185552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336886, - "rtt_ms": 1.336886, + "rtt_ns": 1532041, + "rtt_ms": 1.532041, "checkpoint": 0, "vertex_from": "20", "vertex_to": "24", - "timestamp": "2025-11-27T01:21:50.7688397Z" + "timestamp": "2025-11-27T04:01:49.185874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434305, - "rtt_ms": 1.434305, + "rtt_ns": 1655375, + "rtt_ms": 1.655375, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:50.76884301Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:49.185901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237566, - "rtt_ms": 1.237566, + "rtt_ns": 1522291, + "rtt_ms": 1.522291, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.76885325Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:49.186402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568765, - "rtt_ms": 1.568765, + "rtt_ns": 1668375, + "rtt_ms": 1.668375, "checkpoint": 0, "vertex_from": "20", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.769368358Z" + "timestamp": "2025-11-27T04:01:49.186424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949564, - "rtt_ms": 1.949564, + "rtt_ns": 2151625, + "rtt_ms": 2.151625, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:50.769399228Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.186835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681765, - "rtt_ms": 1.681765, + "rtt_ns": 2135750, + "rtt_ms": 2.13575, "checkpoint": 0, "vertex_from": "20", "vertex_to": "802", - "timestamp": "2025-11-27T01:21:50.769517218Z" + "timestamp": "2025-11-27T04:01:49.186955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837794, - "rtt_ms": 1.837794, + "rtt_ns": 1741458, + "rtt_ms": 1.741458, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:50.770579524Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:49.187063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2711341, - "rtt_ms": 2.711341, + "rtt_ns": 1223875, + "rtt_ms": 1.223875, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:50.770662684Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:49.187126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883554, - "rtt_ms": 1.883554, + "rtt_ns": 1596500, + "rtt_ms": 1.5965, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "902", - "timestamp": "2025-11-27T01:21:50.770714074Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.187149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618395, - "rtt_ms": 1.618395, + "rtt_ns": 2178666, + "rtt_ms": 2.178666, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:50.770987573Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:49.187178-08:00" }, { "operation": "add_edge", - "rtt_ns": 621848, - "rtt_ms": 0.621848, + "rtt_ns": 1830250, + "rtt_ms": 1.83025, "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.771336822Z" + "vertex_from": "20", + "vertex_to": "902", + "timestamp": "2025-11-27T04:01:49.187185-08:00" }, { "operation": "add_edge", - "rtt_ns": 648438, - "rtt_ms": 0.648438, + "rtt_ns": 1346958, + "rtt_ms": 1.346958, "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:50.771637451Z" + "vertex_from": "20", + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.187222-08:00" }, { "operation": "add_edge", - "rtt_ns": 2985410, - "rtt_ms": 2.98541, + "rtt_ns": 924792, + "rtt_ms": 0.924792, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.77182922Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:49.18735-08:00" }, { "operation": "add_edge", - "rtt_ns": 3038030, - "rtt_ms": 3.03803, + "rtt_ns": 1684125, + "rtt_ms": 1.684125, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.77187857Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:49.188087-08:00" }, { "operation": "add_edge", - "rtt_ns": 619768, - "rtt_ms": 0.619768, + "rtt_ns": 1135417, + "rtt_ms": 1.135417, "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.77195753Z" + "vertex_from": "20", + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:49.188092-08:00" }, { "operation": "add_edge", - "rtt_ns": 3155790, - "rtt_ms": 3.15579, + "rtt_ns": 1225500, + "rtt_ms": 1.2255, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.7720097Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:49.188291-08:00" }, { "operation": "add_edge", - "rtt_ns": 3294330, - "rtt_ms": 3.29433, + "rtt_ns": 1514333, + "rtt_ms": 1.514333, "checkpoint": 0, "vertex_from": "20", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.77205809Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:49.188352-08:00" }, { "operation": "add_edge", - "rtt_ns": 2681182, - "rtt_ms": 2.681182, + "rtt_ns": 1501125, + "rtt_ms": 1.501125, "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "961", - "timestamp": "2025-11-27T01:21:50.77208139Z" + "vertex_from": "21", + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:49.188629-08:00" }, { "operation": "add_edge", - "rtt_ns": 2607402, - "rtt_ms": 2.607402, + "rtt_ns": 1602250, + "rtt_ms": 1.60225, "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:50.77212536Z" + "vertex_from": "21", + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:49.188825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578105, - "rtt_ms": 1.578105, + "rtt_ns": 1863917, + "rtt_ms": 1.863917, "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:50.772158399Z" + "vertex_from": "21", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.189215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524505, - "rtt_ms": 1.524505, + "rtt_ns": 2211583, + "rtt_ms": 2.211583, "checkpoint": 0, - "vertex_from": "20", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:50.772189039Z" + "vertex_from": "21", + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:49.189362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320776, - "rtt_ms": 1.320776, + "rtt_ns": 2197958, + "rtt_ms": 2.197958, "checkpoint": 0, "vertex_from": "21", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.772959277Z" + "timestamp": "2025-11-27T04:01:49.189384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543226, - "rtt_ms": 1.543226, + "rtt_ns": 1399916, + "rtt_ms": 1.399916, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.773373376Z" + "vertex_to": "29", + "timestamp": "2025-11-27T04:01:49.189488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524816, - "rtt_ms": 1.524816, + "rtt_ns": 1296916, + "rtt_ms": 1.296916, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.773404106Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.189589-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097203, - "rtt_ms": 2.097203, + "rtt_ns": 1557583, + "rtt_ms": 1.557583, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "29", - "timestamp": "2025-11-27T01:21:50.774056013Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.18991-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080083, - "rtt_ms": 2.080083, + "rtt_ns": 2409833, + "rtt_ms": 2.409833, "checkpoint": 0, "vertex_from": "21", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.774090973Z" + "timestamp": "2025-11-27T04:01:49.190504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944164, - "rtt_ms": 1.944164, + "rtt_ns": 2624375, + "rtt_ms": 2.624375, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:50.774134433Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.191256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077293, - "rtt_ms": 2.077293, + "rtt_ns": 4146708, + "rtt_ms": 4.146708, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.774136523Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:49.191326-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067593, - "rtt_ms": 2.067593, + "rtt_ns": 1552459, + "rtt_ms": 1.552459, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.774150983Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.191464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064763, - "rtt_ms": 2.064763, + "rtt_ns": 2277709, + "rtt_ms": 2.277709, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.774191693Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:49.191868-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043304, - "rtt_ms": 2.043304, + "rtt_ns": 3216791, + "rtt_ms": 3.216791, "checkpoint": 0, "vertex_from": "21", "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.774202763Z" + "timestamp": "2025-11-27T04:01:49.192048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004146, - "rtt_ms": 1.004146, + "rtt_ns": 2602458, + "rtt_ms": 2.602458, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:50.774379352Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:49.192093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455315, - "rtt_ms": 1.455315, + "rtt_ns": 2812375, + "rtt_ms": 2.812375, "checkpoint": 0, "vertex_from": "21", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.774415652Z" + "timestamp": "2025-11-27T04:01:49.192175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015426, - "rtt_ms": 1.015426, + "rtt_ns": 3095667, + "rtt_ms": 3.095667, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:50.774420682Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:49.192319-08:00" }, { "operation": "add_edge", - "rtt_ns": 785728, - "rtt_ms": 0.785728, + "rtt_ns": 3248917, + "rtt_ms": 3.248917, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:50.774843441Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:49.192634-08:00" }, { "operation": "add_edge", - "rtt_ns": 756048, - "rtt_ms": 0.756048, + "rtt_ns": 2230208, + "rtt_ms": 2.230208, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.774908961Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:49.192736-08:00" }, { "operation": "add_edge", - "rtt_ns": 800138, - "rtt_ms": 0.800138, + "rtt_ns": 1305833, + "rtt_ms": 1.305833, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:50.774935411Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.192773-08:00" }, { "operation": "add_edge", - "rtt_ns": 879588, - "rtt_ms": 0.879588, + "rtt_ns": 993667, + "rtt_ms": 0.993667, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.774971451Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.192863-08:00" }, { "operation": "add_edge", - "rtt_ns": 917757, - "rtt_ms": 0.917757, + "rtt_ns": 1857250, + "rtt_ms": 1.85725, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.77505569Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:49.194033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158957, - "rtt_ms": 1.158957, + "rtt_ns": 1998750, + "rtt_ms": 1.99875, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.775539709Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.194092-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1370576, - "rtt_ms": 1.370576, + "operation": "add_vertex", + "rtt_ns": 1516000, + "rtt_ms": 1.516, "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.775575649Z" + "vertex_from": "468", + "timestamp": "2025-11-27T04:01:49.194154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277786, - "rtt_ms": 1.277786, + "rtt_ns": 1327166, + "rtt_ms": 1.327166, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.775694208Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.194192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288796, - "rtt_ms": 1.288796, + "rtt_ns": 2159750, + "rtt_ms": 2.15975, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.775710608Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.194209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527635, - "rtt_ms": 1.527635, + "rtt_ns": 2883625, + "rtt_ms": 2.883625, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.775720048Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.194211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095536, - "rtt_ms": 1.095536, + "rtt_ns": 1912416, + "rtt_ms": 1.912416, "checkpoint": 0, "vertex_from": "21", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.775939927Z" + "timestamp": "2025-11-27T04:01:49.194232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528045, - "rtt_ms": 1.528045, + "rtt_ns": 1910916, + "rtt_ms": 1.910916, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.776464266Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.194684-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1569995, - "rtt_ms": 1.569995, + "operation": "add_edge", + "rtt_ns": 1963167, + "rtt_ms": 1.963167, "checkpoint": 0, - "vertex_from": "468", - "timestamp": "2025-11-27T01:21:50.776480706Z" + "vertex_from": "21", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.1947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610854, - "rtt_ms": 1.610854, + "rtt_ns": 3919833, + "rtt_ms": 3.919833, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.776583355Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:49.195177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540805, - "rtt_ms": 1.540805, + "rtt_ns": 1424167, + "rtt_ms": 1.424167, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.776597245Z" + "vertex_to": "468", + "timestamp": "2025-11-27T04:01:49.195579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246106, - "rtt_ms": 1.246106, + "rtt_ns": 1387292, + "rtt_ms": 1.387292, "checkpoint": 0, "vertex_from": "21", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.776941174Z" + "timestamp": "2025-11-27T04:01:49.195581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525035, - "rtt_ms": 1.525035, + "rtt_ns": 1584291, + "rtt_ms": 1.584291, "checkpoint": 0, "vertex_from": "21", "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.777065444Z" + "timestamp": "2025-11-27T04:01:49.19562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554764, - "rtt_ms": 1.554764, + "rtt_ns": 1596500, + "rtt_ms": 1.5965, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.777130993Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:49.195807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479035, - "rtt_ms": 1.479035, + "rtt_ns": 1731542, + "rtt_ms": 1.731542, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:50.777200383Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:49.195825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289056, - "rtt_ms": 1.289056, + "rtt_ns": 1606291, + "rtt_ms": 1.606291, "checkpoint": 0, "vertex_from": "21", "vertex_to": "179", - "timestamp": "2025-11-27T01:21:50.777230013Z" + "timestamp": "2025-11-27T04:01:49.195839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186936, - "rtt_ms": 1.186936, + "rtt_ns": 1684583, + "rtt_ms": 1.684583, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:50.777771281Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:49.195901-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143733, - "rtt_ms": 2.143733, + "rtt_ns": 1259084, + "rtt_ms": 1.259084, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:50.777855271Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:49.19596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392665, - "rtt_ms": 1.392665, + "rtt_ns": 1424458, + "rtt_ms": 1.424458, "checkpoint": 0, "vertex_from": "21", "vertex_to": "167", - "timestamp": "2025-11-27T01:21:50.777857841Z" + "timestamp": "2025-11-27T04:01:49.19611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463955, - "rtt_ms": 1.463955, + "rtt_ns": 1352459, + "rtt_ms": 1.352459, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "468", - "timestamp": "2025-11-27T01:21:50.777944931Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:49.196531-08:00" }, { "operation": "add_edge", - "rtt_ns": 921137, - "rtt_ms": 0.921137, + "rtt_ns": 1000875, + "rtt_ms": 1.000875, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "422", - "timestamp": "2025-11-27T01:21:50.777987691Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:49.196581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403745, - "rtt_ms": 1.403745, + "rtt_ns": 1227917, + "rtt_ms": 1.227917, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:50.77800194Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:01:49.196849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819864, - "rtt_ms": 1.819864, + "rtt_ns": 1295750, + "rtt_ms": 1.29575, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "362", - "timestamp": "2025-11-27T01:21:50.778951957Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:49.197124-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147663, - "rtt_ms": 2.147663, + "rtt_ns": 1299791, + "rtt_ms": 1.299791, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:50.779090737Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.19714-08:00" }, { "operation": "add_edge", - "rtt_ns": 2735811, - "rtt_ms": 2.735811, + "rtt_ns": 1389041, + "rtt_ms": 1.389041, "checkpoint": 0, "vertex_from": "21", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.779937234Z" + "timestamp": "2025-11-27T04:01:49.197197-08:00" }, { "operation": "add_edge", - "rtt_ns": 2769381, - "rtt_ms": 2.769381, + "rtt_ns": 1451167, + "rtt_ms": 1.451167, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.780000014Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:49.197354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2186713, - "rtt_ms": 2.186713, + "rtt_ns": 2275208, + "rtt_ms": 2.275208, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.780045474Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:01:49.197857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081033, - "rtt_ms": 2.081033, + "rtt_ns": 1328916, + "rtt_ms": 1.328916, "checkpoint": 0, "vertex_from": "21", "vertex_to": "664", - "timestamp": "2025-11-27T01:21:50.780069724Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2210772, - "rtt_ms": 2.210772, - "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.780156703Z" + "timestamp": "2025-11-27T04:01:49.197861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443632, - "rtt_ms": 2.443632, + "rtt_ns": 2320375, + "rtt_ms": 2.320375, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.780215633Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:49.198282-08:00" }, { "operation": "add_edge", - "rtt_ns": 2813551, - "rtt_ms": 2.813551, + "rtt_ns": 1736167, + "rtt_ms": 1.736167, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:50.780669982Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:49.198318-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778841, - "rtt_ms": 2.778841, + "rtt_ns": 2444000, + "rtt_ms": 2.444, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.780781601Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.198555-08:00" }, { "operation": "add_edge", - "rtt_ns": 915287, - "rtt_ms": 0.915287, + "rtt_ns": 1387292, + "rtt_ms": 1.387292, "checkpoint": 0, "vertex_from": "21", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.780916031Z" + "timestamp": "2025-11-27T04:01:49.198585-08:00" }, { "operation": "add_edge", - "rtt_ns": 988207, - "rtt_ms": 0.988207, + "rtt_ns": 1465334, + "rtt_ms": 1.465334, "checkpoint": 0, "vertex_from": "21", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:50.780926631Z" + "timestamp": "2025-11-27T04:01:49.198606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854274, - "rtt_ms": 1.854274, + "rtt_ns": 1758750, + "rtt_ms": 1.75875, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.780947111Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:49.198609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037844, - "rtt_ms": 2.037844, + "rtt_ns": 1536791, + "rtt_ms": 1.536791, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:50.780990791Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:49.198663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373346, - "rtt_ms": 1.373346, + "rtt_ns": 1198792, + "rtt_ms": 1.198792, "checkpoint": 0, "vertex_from": "22", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.781589879Z" + "timestamp": "2025-11-27T04:01:49.199483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544205, - "rtt_ms": 1.544205, + "rtt_ns": 1266791, + "rtt_ms": 1.266791, "checkpoint": 0, - "vertex_from": "21", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.781590479Z" + "vertex_from": "22", + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:49.199586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530335, - "rtt_ms": 1.530335, + "rtt_ns": 2234792, + "rtt_ms": 2.234792, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "363", - "timestamp": "2025-11-27T01:21:50.781601469Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.19959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282036, - "rtt_ms": 1.282036, + "rtt_ns": 1730583, + "rtt_ms": 1.730583, "checkpoint": 0, - "vertex_from": "22", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:50.781952658Z" + "vertex_from": "21", + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:49.199592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925364, - "rtt_ms": 1.925364, + "rtt_ns": 2130958, + "rtt_ms": 2.130958, "checkpoint": 0, "vertex_from": "21", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:50.782083917Z" + "vertex_to": "363", + "timestamp": "2025-11-27T04:01:49.199991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250476, - "rtt_ms": 1.250476, + "rtt_ns": 1707334, + "rtt_ms": 1.707334, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.782177787Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:49.200317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286026, - "rtt_ms": 1.286026, + "rtt_ns": 1751667, + "rtt_ms": 1.751667, "checkpoint": 0, "vertex_from": "22", "vertex_to": "673", - "timestamp": "2025-11-27T01:21:50.782204427Z" + "timestamp": "2025-11-27T04:01:49.200338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241756, - "rtt_ms": 1.241756, + "rtt_ns": 1823000, + "rtt_ms": 1.823, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:50.782234127Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.20043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733444, - "rtt_ms": 1.733444, + "rtt_ns": 1903625, + "rtt_ms": 1.903625, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.782681895Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:49.200567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935054, - "rtt_ms": 1.935054, + "rtt_ns": 2031167, + "rtt_ms": 2.031167, "checkpoint": 0, "vertex_from": "22", "vertex_to": "50", - "timestamp": "2025-11-27T01:21:50.782717345Z" + "timestamp": "2025-11-27T04:01:49.200587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249856, - "rtt_ms": 1.249856, + "rtt_ns": 1645375, + "rtt_ms": 1.645375, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.782840935Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.201238-08:00" }, { "operation": "add_edge", - "rtt_ns": 979937, - "rtt_ms": 0.979937, + "rtt_ns": 1869500, + "rtt_ms": 1.8695, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.782933345Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.201354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422895, - "rtt_ms": 1.422895, + "rtt_ns": 2256959, + "rtt_ms": 2.256959, "checkpoint": 0, "vertex_from": "22", "vertex_to": "488", - "timestamp": "2025-11-27T01:21:50.783026554Z" + "timestamp": "2025-11-27T04:01:49.201848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567775, - "rtt_ms": 1.567775, + "rtt_ns": 1860792, + "rtt_ms": 1.860792, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.783158594Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:49.201852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709354, - "rtt_ms": 1.709354, + "rtt_ns": 2487125, + "rtt_ms": 2.487125, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.783888501Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.202074-08:00" }, { "operation": "add_edge", - "rtt_ns": 868087, - "rtt_ms": 0.868087, + "rtt_ns": 1495292, + "rtt_ms": 1.495292, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:50.783895581Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:49.202083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863344, - "rtt_ms": 1.863344, + "rtt_ns": 1533708, + "rtt_ms": 1.533708, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.783948141Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.202102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310626, - "rtt_ms": 1.310626, + "rtt_ns": 1910833, + "rtt_ms": 1.910833, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:50.784028551Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:49.202229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836844, - "rtt_ms": 1.836844, + "rtt_ns": 2094708, + "rtt_ms": 2.094708, "checkpoint": 0, "vertex_from": "22", "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.784041831Z" + "timestamp": "2025-11-27T04:01:49.202433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817934, - "rtt_ms": 1.817934, + "rtt_ns": 2061167, + "rtt_ms": 2.061167, "checkpoint": 0, "vertex_from": "22", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.784052771Z" + "timestamp": "2025-11-27T04:01:49.202491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375026, - "rtt_ms": 1.375026, + "rtt_ns": 1238791, + "rtt_ms": 1.238791, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.784057671Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:01:49.203731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414905, - "rtt_ms": 1.414905, + "rtt_ns": 1658250, + "rtt_ms": 1.65825, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.78425648Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:01:49.203743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703834, - "rtt_ms": 1.703834, + "rtt_ns": 1597792, + "rtt_ms": 1.597792, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.784863108Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.203828-08:00" }, { "operation": "add_edge", - "rtt_ns": 963937, - "rtt_ms": 0.963937, + "rtt_ns": 2068667, + "rtt_ms": 2.068667, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "26", - "timestamp": "2025-11-27T01:21:50.784914978Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.203922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030907, - "rtt_ms": 1.030907, + "rtt_ns": 1840083, + "rtt_ms": 1.840083, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.784920078Z" + "vertex_to": "26", + "timestamp": "2025-11-27T04:01:49.203942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020097, - "rtt_ms": 1.020097, + "rtt_ns": 1868084, + "rtt_ms": 1.868084, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.785063028Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:49.203945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023676, - "rtt_ms": 1.023676, + "rtt_ns": 2724792, + "rtt_ms": 2.724792, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "43", - "timestamp": "2025-11-27T01:21:50.785077337Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.203964-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243622, - "rtt_ms": 2.243622, + "rtt_ns": 2622959, + "rtt_ms": 2.622959, "checkpoint": 0, "vertex_from": "22", "vertex_to": "106", - "timestamp": "2025-11-27T01:21:50.785177947Z" + "timestamp": "2025-11-27T04:01:49.203978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298886, - "rtt_ms": 1.298886, + "rtt_ns": 2310375, + "rtt_ms": 2.310375, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "39", - "timestamp": "2025-11-27T01:21:50.785195387Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:49.204159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766854, - "rtt_ms": 1.766854, + "rtt_ns": 1769291, + "rtt_ms": 1.769291, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.785796085Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:49.204205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811644, - "rtt_ms": 1.811644, + "rtt_ns": 1159750, + "rtt_ms": 1.15975, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.785869935Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.205138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623485, - "rtt_ms": 1.623485, + "rtt_ns": 1368208, + "rtt_ms": 1.368208, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.785881035Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:49.205291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553545, - "rtt_ms": 1.553545, + "rtt_ns": 1338375, + "rtt_ms": 1.338375, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:50.786469323Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.205303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365236, - "rtt_ms": 1.365236, + "rtt_ns": 1479875, + "rtt_ms": 1.479875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.786544143Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:49.205309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993104, - "rtt_ms": 1.993104, + "rtt_ns": 1590875, + "rtt_ms": 1.590875, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:50.786857392Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.205334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154826, - "rtt_ms": 1.154826, + "rtt_ns": 1562291, + "rtt_ms": 1.562291, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.786951691Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.205508-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112922, - "rtt_ms": 2.112922, + "rtt_ns": 1655833, + "rtt_ms": 1.655833, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.78717661Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:49.2056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2150583, - "rtt_ms": 2.150583, + "rtt_ns": 1438833, + "rtt_ms": 1.438833, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.78734701Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:49.205645-08:00" }, { "operation": "add_edge", - "rtt_ns": 3165179, - "rtt_ms": 3.165179, + "rtt_ns": 1936334, + "rtt_ms": 1.936334, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.788086197Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.205673-08:00" }, { "operation": "add_edge", - "rtt_ns": 3563929, - "rtt_ms": 3.563929, + "rtt_ns": 1728000, + "rtt_ms": 1.728, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.788641816Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.20589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347696, - "rtt_ms": 1.347696, + "rtt_ns": 1528958, + "rtt_ms": 1.528958, "checkpoint": 0, "vertex_from": "22", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.788695976Z" + "timestamp": "2025-11-27T04:01:49.207175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823114, - "rtt_ms": 1.823114, + "rtt_ns": 1668209, + "rtt_ms": 1.668209, "checkpoint": 0, "vertex_from": "22", "vertex_to": "46", - "timestamp": "2025-11-27T01:21:50.788775805Z" + "timestamp": "2025-11-27T04:01:49.207177-08:00" }, { "operation": "add_edge", - "rtt_ns": 2912150, - "rtt_ms": 2.91215, + "rtt_ns": 1870000, + "rtt_ms": 1.87, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.788793895Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:49.20718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627875, - "rtt_ms": 1.627875, + "rtt_ns": 1887834, + "rtt_ms": 1.887834, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.788805685Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.207192-08:00" }, { "operation": "add_edge", - "rtt_ns": 2959830, - "rtt_ms": 2.95983, + "rtt_ns": 2054417, + "rtt_ms": 2.054417, "checkpoint": 0, "vertex_from": "22", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.788830605Z" + "timestamp": "2025-11-27T04:01:49.207194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2373002, - "rtt_ms": 2.373002, + "rtt_ns": 1874709, + "rtt_ms": 1.874709, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.788846085Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:49.20721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989823, - "rtt_ms": 1.989823, + "rtt_ns": 1646458, + "rtt_ms": 1.646458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:50.788848185Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:49.20732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2307542, - "rtt_ms": 2.307542, + "rtt_ns": 2109750, + "rtt_ms": 2.10975, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:50.788852505Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:49.207408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464286, - "rtt_ms": 1.464286, + "rtt_ns": 2143750, + "rtt_ms": 2.14375, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.789551833Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.207744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119876, - "rtt_ms": 1.119876, + "rtt_ns": 1868625, + "rtt_ms": 1.868625, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.789816592Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.207761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149846, - "rtt_ms": 1.149846, + "rtt_ns": 1353250, + "rtt_ms": 1.35325, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:50.790003141Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:49.208534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293426, - "rtt_ms": 1.293426, + "rtt_ns": 1378625, + "rtt_ms": 1.378625, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.790088381Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:49.208557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506905, - "rtt_ms": 1.506905, + "rtt_ns": 1677458, + "rtt_ms": 1.677458, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.790149461Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.208888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421726, - "rtt_ms": 1.421726, + "rtt_ns": 1807583, + "rtt_ms": 1.807583, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:50.790198641Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:49.209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704895, - "rtt_ms": 1.704895, + "rtt_ns": 1694209, + "rtt_ms": 1.694209, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.79053622Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:49.209015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881574, - "rtt_ms": 1.881574, + "rtt_ns": 1617459, + "rtt_ms": 1.617459, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:50.790730919Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:49.209071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949374, - "rtt_ms": 1.949374, + "rtt_ns": 2070125, + "rtt_ms": 2.070125, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.790797209Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:49.209265-08:00" }, { "operation": "add_edge", - "rtt_ns": 996477, - "rtt_ms": 0.996477, + "rtt_ns": 2339958, + "rtt_ms": 2.339958, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.790814129Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.209516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275966, - "rtt_ms": 1.275966, + "rtt_ns": 2037875, + "rtt_ms": 2.037875, "checkpoint": 0, "vertex_from": "22", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.790828499Z" + "timestamp": "2025-11-27T04:01:49.209783-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047794, - "rtt_ms": 2.047794, + "rtt_ns": 1149917, + "rtt_ms": 1.149917, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:50.790855959Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:49.210165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500265, - "rtt_ms": 1.500265, + "rtt_ns": 2422417, + "rtt_ms": 2.422417, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.791589596Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:49.210184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463715, - "rtt_ms": 1.463715, + "rtt_ns": 1586583, + "rtt_ms": 1.586583, "checkpoint": 0, "vertex_from": "22", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.791614136Z" + "timestamp": "2025-11-27T04:01:49.210476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418005, - "rtt_ms": 1.418005, + "rtt_ns": 2041291, + "rtt_ms": 2.041291, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:50.791617506Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:49.210576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082966, - "rtt_ms": 1.082966, + "rtt_ns": 1358833, + "rtt_ms": 1.358833, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:50.791620256Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:49.210624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630385, - "rtt_ms": 1.630385, + "rtt_ns": 2095959, + "rtt_ms": 2.095959, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:50.791634726Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:49.210656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343396, - "rtt_ms": 1.343396, + "rtt_ns": 1756375, + "rtt_ms": 1.756375, "checkpoint": 0, "vertex_from": "22", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.792075115Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1297026, - "rtt_ms": 1.297026, - "checkpoint": 0, - "vertex_from": "23", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:50.792126545Z" + "timestamp": "2025-11-27T04:01:49.210828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489645, - "rtt_ms": 1.489645, + "rtt_ns": 1842250, + "rtt_ms": 1.84225, "checkpoint": 0, "vertex_from": "22", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:50.792288494Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:49.210843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493545, - "rtt_ms": 1.493545, + "rtt_ns": 1226042, + "rtt_ms": 1.226042, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.792350894Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:49.211011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578235, - "rtt_ms": 1.578235, + "rtt_ns": 1895000, + "rtt_ms": 1.895, "checkpoint": 0, "vertex_from": "23", "vertex_to": "387", - "timestamp": "2025-11-27T01:21:50.792394944Z" + "timestamp": "2025-11-27T04:01:49.211414-08:00" }, { "operation": "add_edge", - "rtt_ns": 900507, - "rtt_ms": 0.900507, + "rtt_ns": 1344417, + "rtt_ms": 1.344417, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:50.792516163Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:49.21153-08:00" }, { "operation": "add_edge", - "rtt_ns": 995257, - "rtt_ms": 0.995257, + "rtt_ns": 1718458, + "rtt_ms": 1.718458, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.792616643Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.211885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093827, - "rtt_ms": 1.093827, + "rtt_ns": 1341209, + "rtt_ms": 1.341209, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.792685493Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.211918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240726, - "rtt_ms": 1.240726, + "rtt_ns": 1498125, + "rtt_ms": 1.498125, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.792859632Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:49.211975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385565, - "rtt_ms": 1.385565, + "rtt_ns": 1606083, + "rtt_ms": 1.606083, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.7934644Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.212231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856574, - "rtt_ms": 1.856574, + "rtt_ns": 1413292, + "rtt_ms": 1.413292, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:50.79349278Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.212243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928303, - "rtt_ms": 1.928303, + "rtt_ns": 1608709, + "rtt_ms": 1.608709, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.794056508Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:49.212265-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1785114, - "rtt_ms": 1.785114, + "rtt_ns": 2142125, + "rtt_ms": 2.142125, "checkpoint": 0, "vertex_from": "851", - "timestamp": "2025-11-27T01:21:50.794075858Z" + "timestamp": "2025-11-27T04:01:49.213156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688894, - "rtt_ms": 1.688894, + "rtt_ns": 2333333, + "rtt_ms": 2.333333, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.794085708Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:49.213177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579095, - "rtt_ms": 1.579095, + "rtt_ns": 1796834, + "rtt_ms": 1.796834, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:50.794096348Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:49.213327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750834, - "rtt_ms": 1.750834, + "rtt_ns": 1931792, + "rtt_ms": 1.931792, "checkpoint": 0, "vertex_from": "23", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.794102838Z" + "timestamp": "2025-11-27T04:01:49.213347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550575, - "rtt_ms": 1.550575, + "rtt_ns": 1377250, + "rtt_ms": 1.37725, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.794168188Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.213353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749664, - "rtt_ms": 1.749664, + "rtt_ns": 1528791, + "rtt_ms": 1.528791, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.794436947Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:49.213414-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185153, - "rtt_ms": 2.185153, + "rtt_ns": 1508541, + "rtt_ms": 1.508541, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.795046315Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.213428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935614, - "rtt_ms": 1.935614, + "rtt_ns": 2134166, + "rtt_ms": 2.134166, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "602", - "timestamp": "2025-11-27T01:21:50.795401764Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.214368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940213, - "rtt_ms": 1.940213, + "rtt_ns": 2366958, + "rtt_ms": 2.366958, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.795433873Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:01:49.214611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488295, - "rtt_ms": 1.488295, + "rtt_ns": 1498292, + "rtt_ms": 1.498292, "checkpoint": 0, "vertex_from": "23", "vertex_to": "851", - "timestamp": "2025-11-27T01:21:50.795564613Z" + "timestamp": "2025-11-27T04:01:49.214654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554645, - "rtt_ms": 1.554645, + "rtt_ns": 2389166, + "rtt_ms": 2.389166, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:50.795612833Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.214655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475535, - "rtt_ms": 1.475535, + "rtt_ns": 1368583, + "rtt_ms": 1.368583, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.795645353Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.214797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627345, - "rtt_ms": 1.627345, + "rtt_ns": 1392500, + "rtt_ms": 1.3925, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.795714513Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:49.214808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716284, - "rtt_ms": 1.716284, + "rtt_ns": 1480291, + "rtt_ms": 1.480291, "checkpoint": 0, "vertex_from": "23", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:50.795813592Z" + "timestamp": "2025-11-27T04:01:49.214828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413175, - "rtt_ms": 1.413175, + "rtt_ns": 1721208, + "rtt_ms": 1.721208, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.795851282Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:49.2149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269532, - "rtt_ms": 2.269532, + "rtt_ns": 1563000, + "rtt_ms": 1.563, "checkpoint": 0, "vertex_from": "23", "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.7963751Z" + "timestamp": "2025-11-27T04:01:49.214917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160026, - "rtt_ms": 1.160026, + "rtt_ns": 1778833, + "rtt_ms": 1.778833, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:50.79656306Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.215107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145387, - "rtt_ms": 1.145387, + "rtt_ns": 1313083, + "rtt_ms": 1.313083, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "557", - "timestamp": "2025-11-27T01:21:50.79658038Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:01:49.215682-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1326375, + "rtt_ms": 1.326375, + "checkpoint": 0, + "vertex_from": "24", + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:49.216227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054437, - "rtt_ms": 1.054437, + "rtt_ns": 1558417, + "rtt_ms": 1.558417, + "checkpoint": 0, + "vertex_from": "24", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.216476-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1929333, + "rtt_ms": 1.929333, "checkpoint": 0, "vertex_from": "23", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.79661977Z" + "timestamp": "2025-11-27T04:01:49.216585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587645, - "rtt_ms": 1.587645, + "rtt_ns": 2092125, + "rtt_ms": 2.092125, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "820", - "timestamp": "2025-11-27T01:21:50.79663508Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:49.216706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563175, - "rtt_ms": 1.563175, + "rtt_ns": 1974083, + "rtt_ms": 1.974083, "checkpoint": 0, "vertex_from": "23", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.797278498Z" + "timestamp": "2025-11-27T04:01:49.216803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686375, - "rtt_ms": 1.686375, + "rtt_ns": 2054250, + "rtt_ms": 2.05425, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.797300208Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.216863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678844, - "rtt_ms": 1.678844, + "rtt_ns": 3097333, + "rtt_ms": 3.097333, "checkpoint": 0, "vertex_from": "23", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.797326567Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:49.217753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614875, - "rtt_ms": 1.614875, + "rtt_ns": 3021875, + "rtt_ms": 3.021875, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.797429347Z" + "vertex_from": "23", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.217819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638755, - "rtt_ms": 1.638755, + "rtt_ns": 2734000, + "rtt_ms": 2.734, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.797490887Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:49.217843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262336, - "rtt_ms": 1.262336, + "rtt_ns": 1846500, + "rtt_ms": 1.8465, "checkpoint": 0, "vertex_from": "24", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.797843446Z" + "timestamp": "2025-11-27T04:01:49.218074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349305, - "rtt_ms": 1.349305, + "rtt_ns": 2432208, + "rtt_ms": 2.432208, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:50.797970535Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.218115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449045, - "rtt_ms": 1.449045, + "rtt_ns": 2059667, + "rtt_ms": 2.059667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.798013625Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.218865-08:00" }, { "operation": "add_edge", - "rtt_ns": 731168, - "rtt_ms": 0.731168, + "rtt_ns": 2015208, + "rtt_ms": 2.015208, "checkpoint": 0, "vertex_from": "24", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.798058955Z" + "timestamp": "2025-11-27T04:01:49.218879-08:00" }, { "operation": "add_edge", - "rtt_ns": 779137, - "rtt_ms": 0.779137, + "rtt_ns": 2178333, + "rtt_ms": 2.178333, "checkpoint": 0, "vertex_from": "24", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:50.798059215Z" + "timestamp": "2025-11-27T04:01:49.218885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684325, - "rtt_ms": 1.684325, + "rtt_ns": 2388250, + "rtt_ms": 2.38825, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:50.798060605Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:49.218974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501465, - "rtt_ms": 1.501465, + "rtt_ns": 1226333, + "rtt_ms": 1.226333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:50.798137715Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:49.219047-08:00" }, { "operation": "add_edge", - "rtt_ns": 881747, - "rtt_ms": 0.881747, + "rtt_ns": 2585000, + "rtt_ms": 2.585, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.798185445Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:49.219064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165186, - "rtt_ms": 1.165186, + "rtt_ns": 1642625, + "rtt_ms": 1.642625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:50.798657053Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.219488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493905, - "rtt_ms": 1.493905, + "rtt_ns": 1707458, + "rtt_ms": 1.707458, "checkpoint": 0, "vertex_from": "24", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.798924152Z" + "timestamp": "2025-11-27T04:01:49.219492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704734, - "rtt_ms": 1.704734, + "rtt_ns": 1828542, + "rtt_ms": 1.828542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.79954878Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:49.219945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624205, - "rtt_ms": 1.624205, + "rtt_ns": 1884542, + "rtt_ms": 1.884542, "checkpoint": 0, "vertex_from": "24", "vertex_to": "329", - "timestamp": "2025-11-27T01:21:50.79968616Z" + "timestamp": "2025-11-27T04:01:49.22077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574775, - "rtt_ms": 1.574775, + "rtt_ns": 1954542, + "rtt_ms": 1.954542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.79971331Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:49.220835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525225, - "rtt_ms": 1.525225, + "rtt_ns": 1830125, + "rtt_ms": 1.830125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:50.79971516Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:01:49.220895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703525, - "rtt_ms": 1.703525, + "rtt_ns": 3110250, + "rtt_ms": 3.11025, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:50.79971806Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:49.221185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781585, - "rtt_ms": 1.781585, + "rtt_ns": 2322500, + "rtt_ms": 2.3225, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:50.79975451Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:49.221188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727055, - "rtt_ms": 1.727055, + "rtt_ns": 2399167, + "rtt_ms": 2.399167, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.79978726Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:49.221447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791614, - "rtt_ms": 1.791614, + "rtt_ns": 2097459, + "rtt_ms": 2.097459, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:50.799851629Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.221592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996024, - "rtt_ms": 1.996024, + "rtt_ns": 2128125, + "rtt_ms": 2.128125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "451", - "timestamp": "2025-11-27T01:21:50.800654337Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1430015, - "rtt_ms": 1.430015, - "checkpoint": 0, - "vertex_from": "793", - "timestamp": "2025-11-27T01:21:50.801146645Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.221617-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251493, - "rtt_ms": 2.251493, + "rtt_ns": 2824000, + "rtt_ms": 2.824, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.801177005Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:49.221799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909434, - "rtt_ms": 1.909434, + "rtt_ns": 1984791, + "rtt_ms": 1.984791, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.801459304Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.221932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779574, - "rtt_ms": 1.779574, + "rtt_ns": 1913584, + "rtt_ms": 1.913584, "checkpoint": 0, "vertex_from": "24", "vertex_to": "105", - "timestamp": "2025-11-27T01:21:50.801496884Z" + "timestamp": "2025-11-27T04:01:49.22275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2289782, - "rtt_ms": 2.289782, + "rtt_ns": 1677709, + "rtt_ms": 1.677709, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.802078062Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:49.222865-08:00" }, { "operation": "add_edge", - "rtt_ns": 2302093, - "rtt_ms": 2.302093, + "rtt_ns": 1309833, + "rtt_ms": 1.309833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:50.802154642Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.222928-08:00" }, { "operation": "add_edge", - "rtt_ns": 2430972, - "rtt_ms": 2.430972, + "rtt_ns": 1744250, + "rtt_ms": 1.74425, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.802186542Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.222933-08:00" }, { "operation": "add_edge", - "rtt_ns": 2526311, - "rtt_ms": 2.526311, + "rtt_ns": 2140791, + "rtt_ms": 2.140791, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.802213321Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:49.223038-08:00" }, { "operation": "add_edge", - "rtt_ns": 2512611, - "rtt_ms": 2.512611, + "rtt_ns": 1797833, + "rtt_ms": 1.797833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:50.802231911Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:49.223246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209456, - "rtt_ms": 1.209456, + "rtt_ns": 1661541, + "rtt_ms": 1.661541, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.802388731Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:49.223254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275496, - "rtt_ms": 1.275496, + "rtt_ns": 1599375, + "rtt_ms": 1.599375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "793", - "timestamp": "2025-11-27T01:21:50.802422461Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.223399-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2737667, + "rtt_ms": 2.737667, + "checkpoint": 0, + "vertex_from": "793", + "timestamp": "2025-11-27T04:01:49.223523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768644, - "rtt_ms": 1.768644, + "rtt_ns": 1595458, + "rtt_ms": 1.595458, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.802424411Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:49.223528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026756, - "rtt_ms": 1.026756, + "rtt_ns": 1576375, + "rtt_ms": 1.576375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:50.80252461Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:49.224511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093366, - "rtt_ms": 1.093366, + "rtt_ns": 1713500, + "rtt_ms": 1.7135, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.8025537Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.224581-08:00" }, { "operation": "add_edge", - "rtt_ns": 794757, - "rtt_ms": 0.794757, + "rtt_ns": 1545750, + "rtt_ms": 1.54575, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.802874229Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:49.224585-08:00" }, { "operation": "add_edge", - "rtt_ns": 906167, - "rtt_ms": 0.906167, + "rtt_ns": 1277917, + "rtt_ms": 1.277917, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.803062229Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:49.224678-08:00" }, { "operation": "add_edge", - "rtt_ns": 892387, - "rtt_ms": 0.892387, + "rtt_ns": 1761125, + "rtt_ms": 1.761125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:50.803127668Z" + "vertex_to": "55", + "timestamp": "2025-11-27T04:01:49.225009-08:00" }, { "operation": "add_edge", - "rtt_ns": 914107, - "rtt_ms": 0.914107, + "rtt_ns": 1492542, + "rtt_ms": 1.492542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:50.803128408Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:49.225021-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 647538, - "rtt_ms": 0.647538, + "operation": "add_edge", + "rtt_ns": 2343458, + "rtt_ms": 2.343458, "checkpoint": 0, - "vertex_from": "311", - "timestamp": "2025-11-27T01:21:50.803203998Z" + "vertex_from": "24", + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:49.225094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041546, - "rtt_ms": 1.041546, + "rtt_ns": 2192709, + "rtt_ms": 2.192709, "checkpoint": 0, "vertex_from": "24", "vertex_to": "67", - "timestamp": "2025-11-27T01:21:50.803229358Z" + "timestamp": "2025-11-27T04:01:49.225122-08:00" }, { "operation": "add_edge", - "rtt_ns": 808807, - "rtt_ms": 0.808807, + "rtt_ns": 1939500, + "rtt_ms": 1.9395, "checkpoint": 0, "vertex_from": "24", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.803232428Z" + "timestamp": "2025-11-27T04:01:49.225195-08:00" }, { "operation": "add_edge", - "rtt_ns": 760078, - "rtt_ms": 0.760078, + "rtt_ns": 1140000, + "rtt_ms": 1.14, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:50.803285708Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:49.22615-08:00" }, { "operation": "add_edge", - "rtt_ns": 904987, - "rtt_ms": 0.904987, + "rtt_ns": 2822708, + "rtt_ms": 2.822708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "55", - "timestamp": "2025-11-27T01:21:50.803295328Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:01:49.226346-08:00" }, { "operation": "add_edge", - "rtt_ns": 884777, - "rtt_ms": 0.884777, + "rtt_ns": 1900833, + "rtt_ms": 1.900833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.803310578Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:49.226484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245306, - "rtt_ms": 1.245306, + "rtt_ns": 1862833, + "rtt_ms": 1.862833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:50.804121115Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.226542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151466, - "rtt_ms": 1.151466, + "rtt_ns": 1963666, + "rtt_ms": 1.963666, "checkpoint": 0, "vertex_from": "24", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:50.804223125Z" + "timestamp": "2025-11-27T04:01:49.226551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690725, - "rtt_ms": 1.690725, + "rtt_ns": 1513166, + "rtt_ms": 1.513166, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:50.804822463Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.226636-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1796205, - "rtt_ms": 1.796205, + "operation": "add_vertex", + "rtt_ns": 2207083, + "rtt_ms": 2.207083, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.804926973Z" + "vertex_from": "311", + "timestamp": "2025-11-27T04:01:49.226722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650905, - "rtt_ms": 1.650905, + "rtt_ns": 1536166, + "rtt_ms": 1.536166, "checkpoint": 0, "vertex_from": "24", "vertex_to": "408", - "timestamp": "2025-11-27T01:21:50.804947423Z" + "timestamp": "2025-11-27T04:01:49.226732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647474, - "rtt_ms": 1.647474, + "rtt_ns": 1790083, + "rtt_ms": 1.790083, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:50.804960022Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:49.226812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754644, - "rtt_ms": 1.754644, + "rtt_ns": 1727125, + "rtt_ms": 1.727125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:50.804985862Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.226822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800054, - "rtt_ms": 1.800054, + "rtt_ns": 1608833, + "rtt_ms": 1.608833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "311", - "timestamp": "2025-11-27T01:21:50.805004552Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:49.227759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726244, - "rtt_ms": 1.726244, + "rtt_ns": 1336417, + "rtt_ms": 1.336417, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.805012952Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:49.227823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782544, - "rtt_ms": 1.782544, + "rtt_ns": 1237333, + "rtt_ms": 1.237333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.805015972Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.227875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597585, - "rtt_ms": 1.597585, + "rtt_ns": 1172750, + "rtt_ms": 1.17275, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.80572124Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:01:49.227895-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066163, - "rtt_ms": 2.066163, + "rtt_ns": 1226709, + "rtt_ms": 1.226709, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:50.806291008Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:49.22804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556755, - "rtt_ms": 1.556755, + "rtt_ns": 1485125, + "rtt_ms": 1.485125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:50.806380828Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.228077-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130353, - "rtt_ms": 2.130353, + "rtt_ns": 1350584, + "rtt_ms": 1.350584, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.807058386Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:49.228084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106254, - "rtt_ms": 2.106254, + "rtt_ns": 1741334, + "rtt_ms": 1.741334, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.807112026Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:49.228089-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197923, - "rtt_ms": 2.197923, + "rtt_ns": 1723083, + "rtt_ms": 1.723083, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.807146936Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:49.228267-08:00" }, { "operation": "add_edge", - "rtt_ns": 2184343, - "rtt_ms": 2.184343, + "rtt_ns": 2134916, + "rtt_ms": 2.134916, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.807171895Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.228959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206693, - "rtt_ms": 2.206693, + "rtt_ns": 1447708, + "rtt_ms": 1.447708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.807224805Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:49.229489-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305303, - "rtt_ms": 2.305303, + "rtt_ns": 1414375, + "rtt_ms": 1.414375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.807266975Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:49.2295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364463, - "rtt_ms": 2.364463, + "rtt_ns": 1744834, + "rtt_ms": 1.744834, "checkpoint": 0, "vertex_from": "24", "vertex_to": "897", - "timestamp": "2025-11-27T01:21:50.807378625Z" + "timestamp": "2025-11-27T04:01:49.229505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083617, - "rtt_ms": 1.083617, + "rtt_ns": 1642541, + "rtt_ms": 1.642541, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:50.807465625Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:01:49.22952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759674, - "rtt_ms": 1.759674, + "rtt_ns": 1809167, + "rtt_ms": 1.809167, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "403", - "timestamp": "2025-11-27T01:21:50.807483154Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.229633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203966, - "rtt_ms": 1.203966, + "rtt_ns": 1378584, + "rtt_ms": 1.378584, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:50.807496724Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:49.229646-08:00" }, { "operation": "add_edge", - "rtt_ns": 777927, - "rtt_ms": 0.777927, + "rtt_ns": 1761667, + "rtt_ms": 1.761667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:50.807837503Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:49.229659-08:00" }, { "operation": "add_edge", - "rtt_ns": 761077, - "rtt_ms": 0.761077, + "rtt_ns": 1642792, + "rtt_ms": 1.642792, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.807875013Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:49.229721-08:00" }, { "operation": "add_edge", - "rtt_ns": 811587, - "rtt_ms": 0.811587, + "rtt_ns": 1700458, + "rtt_ms": 1.700458, "checkpoint": 0, "vertex_from": "24", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.807959873Z" + "timestamp": "2025-11-27T04:01:49.22979-08:00" }, { "operation": "add_edge", - "rtt_ns": 801178, - "rtt_ms": 0.801178, + "rtt_ns": 1608834, + "rtt_ms": 1.608834, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:50.807974023Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.231115-08:00" }, { "operation": "add_edge", - "rtt_ns": 777988, - "rtt_ms": 0.777988, + "rtt_ns": 1655584, + "rtt_ms": 1.655584, "checkpoint": 0, "vertex_from": "24", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.808045843Z" + "timestamp": "2025-11-27T04:01:49.231147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169896, - "rtt_ms": 1.169896, + "rtt_ns": 1695750, + "rtt_ms": 1.69575, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:50.808549961Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:49.231342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434356, - "rtt_ms": 1.434356, + "rtt_ns": 2445584, + "rtt_ms": 2.445584, "checkpoint": 0, "vertex_from": "24", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.808661491Z" + "timestamp": "2025-11-27T04:01:49.231406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262616, - "rtt_ms": 1.262616, + "rtt_ns": 1927459, + "rtt_ms": 1.927459, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.80876237Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:49.231429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290286, - "rtt_ms": 1.290286, + "rtt_ns": 1649292, + "rtt_ms": 1.649292, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.80877476Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:49.23144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329455, - "rtt_ms": 1.329455, + "rtt_ns": 1880875, + "rtt_ms": 1.880875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.80879612Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.231515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580775, - "rtt_ms": 1.580775, + "rtt_ns": 1926833, + "rtt_ms": 1.926833, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:50.809420068Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:49.231587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487755, - "rtt_ms": 1.487755, + "rtt_ns": 2085333, + "rtt_ms": 2.085333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.809449648Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.231606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594885, - "rtt_ms": 1.594885, + "rtt_ns": 1947667, + "rtt_ms": 1.947667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.809472058Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.23167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513945, - "rtt_ms": 1.513945, + "rtt_ns": 1443792, + "rtt_ms": 1.443792, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.809488988Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.23256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685554, - "rtt_ms": 1.685554, + "rtt_ns": 1277542, + "rtt_ms": 1.277542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.809732477Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:49.232621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621385, - "rtt_ms": 1.621385, + "rtt_ns": 1742708, + "rtt_ms": 1.742708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.810397205Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.23289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600395, - "rtt_ms": 1.600395, + "rtt_ns": 1318416, + "rtt_ms": 1.318416, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "721", - "timestamp": "2025-11-27T01:21:50.810397635Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:49.232906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005707, - "rtt_ms": 1.005707, + "rtt_ns": 1391917, + "rtt_ms": 1.391917, "checkpoint": 0, "vertex_from": "24", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.810426965Z" + "timestamp": "2025-11-27T04:01:49.232907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663795, - "rtt_ms": 1.663795, + "rtt_ns": 1300334, + "rtt_ms": 1.300334, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:50.810427535Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:49.232907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887194, - "rtt_ms": 1.887194, + "rtt_ns": 1290041, + "rtt_ms": 1.290041, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.810438025Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.232961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026266, - "rtt_ms": 1.026266, + "rtt_ns": 1591959, + "rtt_ms": 1.591959, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.810476854Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:49.232999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118236, - "rtt_ms": 1.118236, + "rtt_ns": 1643209, + "rtt_ms": 1.643209, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.810608134Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:49.233073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145486, - "rtt_ms": 1.145486, + "rtt_ns": 1646583, + "rtt_ms": 1.646583, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:50.810619264Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:01:49.233088-08:00" }, { "operation": "add_edge", - "rtt_ns": 2704810, - "rtt_ms": 2.70481, + "rtt_ns": 1147917, + "rtt_ms": 1.147917, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:50.811367281Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:49.234056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776894, - "rtt_ms": 1.776894, + "rtt_ns": 1523250, + "rtt_ms": 1.52325, "checkpoint": 0, "vertex_from": "24", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:50.811510611Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2301042, - "rtt_ms": 2.301042, - "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:50.812732507Z" + "timestamp": "2025-11-27T04:01:49.234086-08:00" }, { "operation": "add_edge", - "rtt_ns": 2405512, - "rtt_ms": 2.405512, + "rtt_ns": 1101750, + "rtt_ms": 1.10175, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.812804427Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:49.234177-08:00" }, { "operation": "add_edge", - "rtt_ns": 2407322, - "rtt_ms": 2.407322, + "rtt_ns": 1563541, + "rtt_ms": 1.563541, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.812837647Z" + "vertex_to": "199", + "timestamp": "2025-11-27T04:01:49.234186-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243673, - "rtt_ms": 2.243673, + "rtt_ns": 1446459, + "rtt_ms": 1.446459, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:50.812864047Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.234338-08:00" }, { "operation": "add_edge", - "rtt_ns": 2470822, - "rtt_ms": 2.470822, + "rtt_ns": 1508417, + "rtt_ms": 1.508417, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:50.812949756Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:49.234416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2564331, - "rtt_ms": 2.564331, + "rtt_ns": 1432917, + "rtt_ms": 1.432917, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.813004096Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:49.234432-08:00" }, { "operation": "add_edge", - "rtt_ns": 2632591, - "rtt_ms": 2.632591, + "rtt_ns": 1548666, + "rtt_ms": 1.548666, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "199", - "timestamp": "2025-11-27T01:21:50.813031566Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:49.23451-08:00" }, { "operation": "add_edge", - "rtt_ns": 2466362, - "rtt_ms": 2.466362, + "rtt_ns": 1479375, + "rtt_ms": 1.479375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.813076526Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:49.234568-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229483, - "rtt_ms": 2.229483, + "rtt_ns": 1662667, + "rtt_ms": 1.662667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.813598484Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:49.234573-08:00" }, { "operation": "add_edge", - "rtt_ns": 930487, - "rtt_ms": 0.930487, + "rtt_ns": 1115958, + "rtt_ms": 1.115958, "checkpoint": 0, "vertex_from": "24", "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.813664604Z" + "timestamp": "2025-11-27T04:01:49.235203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272843, - "rtt_ms": 2.272843, + "rtt_ns": 1288375, + "rtt_ms": 1.288375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.813784764Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:49.235466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595585, - "rtt_ms": 1.595585, + "rtt_ns": 1295000, + "rtt_ms": 1.295, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:50.814600851Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:49.235482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753394, - "rtt_ms": 1.753394, + "rtt_ns": 1293250, + "rtt_ms": 1.29325, "checkpoint": 0, "vertex_from": "24", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.814618481Z" + "timestamp": "2025-11-27T04:01:49.235631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799074, - "rtt_ms": 1.799074, + "rtt_ns": 1591917, + "rtt_ms": 1.591917, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.814638471Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.235649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571265, - "rtt_ms": 1.571265, + "rtt_ns": 1324083, + "rtt_ms": 1.324083, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:50.814648741Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:49.235742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718415, - "rtt_ms": 1.718415, + "rtt_ns": 1357500, + "rtt_ms": 1.3575, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:50.814668961Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:49.235928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883174, - "rtt_ms": 1.883174, + "rtt_ns": 1434625, + "rtt_ms": 1.434625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:50.814688681Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.235945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090027, - "rtt_ms": 1.090027, + "rtt_ns": 1487291, + "rtt_ms": 1.487291, "checkpoint": 0, "vertex_from": "24", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.814689221Z" + "timestamp": "2025-11-27T04:01:49.236061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278136, - "rtt_ms": 1.278136, + "rtt_ns": 1544625, + "rtt_ms": 1.544625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:50.81494412Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:49.237012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171816, - "rtt_ms": 1.171816, + "rtt_ns": 1808834, + "rtt_ms": 1.808834, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:50.81495782Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:49.237012-08:00" }, { "operation": "add_edge", - "rtt_ns": 2266943, - "rtt_ms": 2.266943, + "rtt_ns": 1931084, + "rtt_ms": 1.931084, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.815299319Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.237414-08:00" }, { "operation": "add_edge", - "rtt_ns": 924517, - "rtt_ms": 0.924517, + "rtt_ns": 1707791, + "rtt_ms": 1.707791, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:50.815564358Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:49.237637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018617, - "rtt_ms": 1.018617, + "rtt_ns": 2387084, + "rtt_ms": 2.387084, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.815620938Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:49.238019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116897, - "rtt_ms": 1.116897, + "rtt_ns": 2371958, + "rtt_ms": 2.371958, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.815736768Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:49.238115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189516, - "rtt_ms": 1.189516, + "rtt_ns": 2564042, + "rtt_ms": 2.564042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:50.815839237Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:49.238214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562405, - "rtt_ms": 1.562405, + "rtt_ns": 2298042, + "rtt_ms": 2.298042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:50.816232576Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:49.238244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629455, - "rtt_ms": 1.629455, + "rtt_ns": 2223042, + "rtt_ms": 2.223042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:50.816319036Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:49.238284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426926, - "rtt_ms": 1.426926, + "rtt_ns": 4222084, + "rtt_ms": 4.222084, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.816374656Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:49.238655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441795, - "rtt_ms": 1.441795, + "rtt_ns": 1659375, + "rtt_ms": 1.659375, "checkpoint": 0, "vertex_from": "24", "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.816400965Z" + "timestamp": "2025-11-27T04:01:49.238674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816364, - "rtt_ms": 1.816364, + "rtt_ns": 1290250, + "rtt_ms": 1.29025, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:50.816506745Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:49.238704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936814, - "rtt_ms": 1.936814, + "rtt_ns": 1720375, + "rtt_ms": 1.720375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.817502632Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:49.238733-08:00" }, { "operation": "add_edge", - "rtt_ns": 2650242, - "rtt_ms": 2.650242, + "rtt_ns": 1163583, + "rtt_ms": 1.163583, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:50.817950411Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:49.23941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2244502, - "rtt_ms": 2.244502, + "rtt_ns": 1780417, + "rtt_ms": 1.780417, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "914", - "timestamp": "2025-11-27T01:21:50.81798227Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.23942-08:00" }, { "operation": "add_edge", - "rtt_ns": 2786271, - "rtt_ms": 2.786271, + "rtt_ns": 1333333, + "rtt_ms": 1.333333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "57", - "timestamp": "2025-11-27T01:21:50.818626358Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:01:49.239449-08:00" }, { "operation": "add_edge", - "rtt_ns": 3044710, - "rtt_ms": 3.04471, + "rtt_ns": 1524708, + "rtt_ms": 1.524708, "checkpoint": 0, "vertex_from": "24", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:50.818666458Z" + "timestamp": "2025-11-27T04:01:49.239545-08:00" }, { "operation": "add_edge", - "rtt_ns": 2300632, - "rtt_ms": 2.300632, + "rtt_ns": 1440834, + "rtt_ms": 1.440834, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.818676778Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:01:49.239656-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375342, - "rtt_ms": 2.375342, + "rtt_ns": 1402083, + "rtt_ms": 1.402083, "checkpoint": 0, "vertex_from": "24", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:50.818695458Z" + "timestamp": "2025-11-27T04:01:49.239687-08:00" }, { "operation": "add_edge", - "rtt_ns": 2468942, - "rtt_ms": 2.468942, + "rtt_ns": 1620334, + "rtt_ms": 1.620334, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:50.818702828Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.240354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2215033, - "rtt_ms": 2.215033, + "rtt_ns": 1806750, + "rtt_ms": 1.80675, "checkpoint": 0, "vertex_from": "24", "vertex_to": "142", - "timestamp": "2025-11-27T01:21:50.818723138Z" + "timestamp": "2025-11-27T04:01:49.240512-08:00" }, { "operation": "add_edge", - "rtt_ns": 746178, - "rtt_ms": 0.746178, + "rtt_ns": 1854708, + "rtt_ms": 1.854708, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.818729058Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.240529-08:00" }, { "operation": "add_edge", - "rtt_ns": 832057, - "rtt_ms": 0.832057, + "rtt_ns": 1888250, + "rtt_ms": 1.88825, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:50.818783298Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:49.240544-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381403, - "rtt_ms": 2.381403, + "rtt_ns": 982333, + "rtt_ms": 0.982333, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.818783518Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:49.240671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466985, - "rtt_ms": 1.466985, + "rtt_ns": 1557792, + "rtt_ms": 1.557792, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.818971477Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:49.241008-08:00" }, { "operation": "add_edge", - "rtt_ns": 935197, - "rtt_ms": 0.935197, + "rtt_ns": 1790750, + "rtt_ms": 1.79075, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:50.819632035Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:49.241211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079367, - "rtt_ms": 1.079367, + "rtt_ns": 1679208, + "rtt_ms": 1.679208, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:50.819706885Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:49.241225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008697, - "rtt_ms": 1.008697, + "rtt_ns": 1815125, + "rtt_ms": 1.815125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:50.819738735Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:49.241226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210866, - "rtt_ms": 1.210866, + "rtt_ns": 1489417, + "rtt_ms": 1.489417, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.819878284Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:49.241845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178766, - "rtt_ms": 1.178766, + "rtt_ns": 1189542, + "rtt_ms": 1.189542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:50.819882454Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:49.241861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714104, - "rtt_ms": 1.714104, + "rtt_ns": 1334375, + "rtt_ms": 1.334375, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:50.820500062Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:49.241864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856624, - "rtt_ms": 1.856624, + "rtt_ns": 2296416, + "rtt_ms": 2.296416, "checkpoint": 0, "vertex_from": "24", "vertex_to": "232", - "timestamp": "2025-11-27T01:21:50.820534702Z" + "timestamp": "2025-11-27T04:01:49.241954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832004, - "rtt_ms": 1.832004, + "rtt_ns": 1535000, + "rtt_ms": 1.535, "checkpoint": 0, "vertex_from": "24", "vertex_to": "393", - "timestamp": "2025-11-27T01:21:50.820556902Z" + "timestamp": "2025-11-27T04:01:49.242048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838474, - "rtt_ms": 1.838474, + "rtt_ns": 2064417, + "rtt_ms": 2.064417, "checkpoint": 0, "vertex_from": "24", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.820622812Z" + "timestamp": "2025-11-27T04:01:49.242609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1975924, - "rtt_ms": 1.975924, + "rtt_ns": 1455166, + "rtt_ms": 1.455166, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:50.820948351Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1804444, - "rtt_ms": 1.804444, - "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:50.821683778Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:49.242683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227076, - "rtt_ms": 1.227076, + "rtt_ns": 1621625, + "rtt_ms": 1.621625, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:50.821762748Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:49.242834-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097573, - "rtt_ms": 2.097573, + "rtt_ns": 1684167, + "rtt_ms": 1.684167, "checkpoint": 0, "vertex_from": "24", "vertex_to": "809", - "timestamp": "2025-11-27T01:21:50.821805578Z" + "timestamp": "2025-11-27T04:01:49.24291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924144, - "rtt_ms": 1.924144, + "rtt_ns": 2018000, + "rtt_ms": 2.018, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:50.821807458Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:49.243026-08:00" }, { "operation": "add_edge", - "rtt_ns": 2247143, - "rtt_ms": 2.247143, + "rtt_ns": 1445042, + "rtt_ms": 1.445042, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:50.821880288Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.24331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338946, - "rtt_ms": 1.338946, + "rtt_ns": 2054666, + "rtt_ms": 2.054666, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.821896908Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:49.243917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399175, - "rtt_ms": 1.399175, + "rtt_ns": 2370125, + "rtt_ms": 2.370125, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:50.822022837Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:49.244325-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297132, - "rtt_ms": 2.297132, + "rtt_ns": 2486750, + "rtt_ms": 2.48675, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:50.822036847Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:49.244334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113256, - "rtt_ms": 1.113256, + "rtt_ns": 2403875, + "rtt_ms": 2.403875, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.822062477Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:49.244452-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077313, - "rtt_ms": 2.077313, + "rtt_ns": 1698208, + "rtt_ms": 1.698208, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.822578395Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1163106, - "rtt_ms": 1.163106, - "checkpoint": 0, - "vertex_from": "279", - "timestamp": "2025-11-27T01:21:50.823201793Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:49.244726-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022193, - "rtt_ms": 2.022193, + "rtt_ns": 2052291, + "rtt_ms": 2.052291, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:50.823786231Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.244736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2410802, - "rtt_ms": 2.410802, + "rtt_ns": 2046042, + "rtt_ms": 2.046042, "checkpoint": 0, "vertex_from": "24", "vertex_to": "534", - "timestamp": "2025-11-27T01:21:50.82409587Z" + "timestamp": "2025-11-27T04:01:49.244882-08:00" }, { "operation": "add_edge", - "rtt_ns": 3360109, - "rtt_ms": 3.360109, + "rtt_ns": 1908667, + "rtt_ms": 1.908667, "checkpoint": 0, "vertex_from": "24", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:50.825168837Z" + "timestamp": "2025-11-27T04:01:49.245219-08:00" }, { "operation": "add_edge", - "rtt_ns": 3191890, - "rtt_ms": 3.19189, + "rtt_ns": 1335917, + "rtt_ms": 1.335917, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:50.825255377Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:49.245254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194737, - "rtt_ms": 1.194737, + "rtt_ns": 2495291, + "rtt_ms": 2.495291, "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.825291677Z" + "vertex_from": "24", + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:49.245407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778051, - "rtt_ms": 2.778051, + "rtt_ns": 2847667, + "rtt_ms": 2.847667, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:50.825357686Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:49.24546-08:00" }, { "operation": "add_edge", - "rtt_ns": 3487438, - "rtt_ms": 3.487438, + "rtt_ns": 1472250, + "rtt_ms": 1.47225, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:50.825385336Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:49.24621-08:00" }, { - "operation": "add_edge", - "rtt_ns": 3367049, - "rtt_ms": 3.367049, + "operation": "add_vertex", + "rtt_ns": 1777875, + "rtt_ms": 1.777875, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.825391056Z" + "vertex_from": "279", + "timestamp": "2025-11-27T04:01:49.246232-08:00" }, { "operation": "add_edge", - "rtt_ns": 3538408, - "rtt_ms": 3.538408, + "rtt_ns": 1911542, + "rtt_ms": 1.911542, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.825419946Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:49.24624-08:00" }, { "operation": "add_edge", - "rtt_ns": 3662078, - "rtt_ms": 3.662078, + "rtt_ns": 1912541, + "rtt_ms": 1.912541, "checkpoint": 0, "vertex_from": "24", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:50.825468796Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:49.246248-08:00" }, { "operation": "add_edge", - "rtt_ns": 2296303, - "rtt_ms": 2.296303, + "rtt_ns": 1375292, + "rtt_ms": 1.375292, "checkpoint": 0, - "vertex_from": "24", - "vertex_to": "279", - "timestamp": "2025-11-27T01:21:50.825498416Z" + "vertex_from": "25", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.246596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737235, - "rtt_ms": 1.737235, + "rtt_ns": 1747417, + "rtt_ms": 1.747417, "checkpoint": 0, "vertex_from": "24", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.825525226Z" + "timestamp": "2025-11-27T04:01:49.24663-08:00" }, { "operation": "add_edge", - "rtt_ns": 972257, - "rtt_ms": 0.972257, + "rtt_ns": 2031292, + "rtt_ms": 2.031292, "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.826364363Z" + "vertex_from": "24", + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:49.246759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247826, - "rtt_ms": 1.247826, + "rtt_ns": 1879292, + "rtt_ms": 1.879292, "checkpoint": 0, "vertex_from": "25", "vertex_to": "338", - "timestamp": "2025-11-27T01:21:50.826418433Z" + "timestamp": "2025-11-27T04:01:49.247134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367606, - "rtt_ms": 1.367606, + "rtt_ns": 1795250, + "rtt_ms": 1.79525, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "119", - "timestamp": "2025-11-27T01:21:50.826755302Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:49.247258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595285, - "rtt_ms": 1.595285, + "rtt_ns": 1941083, + "rtt_ms": 1.941083, "checkpoint": 0, "vertex_from": "25", "vertex_to": "28", - "timestamp": "2025-11-27T01:21:50.826851662Z" + "timestamp": "2025-11-27T04:01:49.247348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587874, - "rtt_ms": 1.587874, + "rtt_ns": 1588209, + "rtt_ms": 1.588209, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:50.826880431Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:01:49.247831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461905, - "rtt_ms": 1.461905, + "rtt_ns": 1633792, + "rtt_ms": 1.633792, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.826931521Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:49.247845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586305, - "rtt_ms": 1.586305, + "rtt_ns": 1304000, + "rtt_ms": 1.304, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.827007051Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.247936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522155, - "rtt_ms": 1.522155, + "rtt_ns": 1276209, + "rtt_ms": 1.276209, "checkpoint": 0, "vertex_from": "25", "vertex_to": "67", - "timestamp": "2025-11-27T01:21:50.827022101Z" + "timestamp": "2025-11-27T04:01:49.248036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748535, - "rtt_ms": 1.748535, + "rtt_ns": 1837584, + "rtt_ms": 1.837584, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:50.827107671Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.248086-08:00" }, { "operation": "add_edge", - "rtt_ns": 2223783, - "rtt_ms": 2.223783, + "rtt_ns": 1552084, + "rtt_ms": 1.552084, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.827749829Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.24815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099176, - "rtt_ms": 1.099176, + "rtt_ns": 2404083, + "rtt_ms": 2.404083, "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.827857198Z" + "vertex_from": "24", + "vertex_to": "279", + "timestamp": "2025-11-27T04:01:49.248636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438515, - "rtt_ms": 1.438515, + "rtt_ns": 1908125, + "rtt_ms": 1.908125, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.827857758Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.249043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072403, - "rtt_ms": 2.072403, + "rtt_ns": 2160917, + "rtt_ms": 2.160917, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "421", - "timestamp": "2025-11-27T01:21:50.828437836Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:49.249511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682314, - "rtt_ms": 1.682314, + "rtt_ns": 1902583, + "rtt_ms": 1.902583, "checkpoint": 0, "vertex_from": "25", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.828535106Z" + "timestamp": "2025-11-27T04:01:49.24975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864604, - "rtt_ms": 1.864604, + "rtt_ns": 2114375, + "rtt_ms": 2.114375, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.828745655Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.249947-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392712, - "rtt_ms": 2.392712, + "rtt_ns": 1463000, + "rtt_ms": 1.463, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.829400933Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:49.2501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2366512, - "rtt_ms": 2.366512, + "rtt_ns": 2037250, + "rtt_ms": 2.03725, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.829475413Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.250125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2571342, - "rtt_ms": 2.571342, + "rtt_ns": 2207125, + "rtt_ms": 2.207125, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.829503713Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:49.250144-08:00" }, { "operation": "add_edge", - "rtt_ns": 2490842, - "rtt_ms": 2.490842, + "rtt_ns": 2884792, + "rtt_ms": 2.884792, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:50.829513993Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:01:49.250145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903953, - "rtt_ms": 1.903953, + "rtt_ns": 2005875, + "rtt_ms": 2.005875, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.829655072Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:49.250157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842904, - "rtt_ms": 1.842904, + "rtt_ns": 2134375, + "rtt_ms": 2.134375, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.829702642Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.250173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366276, - "rtt_ms": 1.366276, + "rtt_ns": 1326791, + "rtt_ms": 1.326791, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.829805922Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.251429-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001574, - "rtt_ms": 2.001574, + "rtt_ns": 1738916, + "rtt_ms": 1.738916, "checkpoint": 0, "vertex_from": "25", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.829861882Z" + "timestamp": "2025-11-27T04:01:49.251491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327706, - "rtt_ms": 1.327706, + "rtt_ns": 1365458, + "rtt_ms": 1.365458, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.829863722Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.251524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149957, - "rtt_ms": 1.149957, + "rtt_ns": 2524875, + "rtt_ms": 2.524875, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "205", - "timestamp": "2025-11-27T01:21:50.829896892Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.251571-08:00" }, { "operation": "add_edge", - "rtt_ns": 666568, - "rtt_ms": 0.666568, + "rtt_ns": 1682041, + "rtt_ms": 1.682041, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.830181601Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:49.25163-08:00" }, { "operation": "add_edge", - "rtt_ns": 814117, - "rtt_ms": 0.814117, + "rtt_ns": 2160917, + "rtt_ms": 2.160917, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.83021637Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:49.251674-08:00" }, { "operation": "add_edge", - "rtt_ns": 843977, - "rtt_ms": 0.843977, + "rtt_ns": 1534459, + "rtt_ms": 1.534459, "checkpoint": 0, "vertex_from": "25", "vertex_to": "74", - "timestamp": "2025-11-27T01:21:50.83032033Z" + "timestamp": "2025-11-27T04:01:49.25168-08:00" }, { "operation": "add_edge", - "rtt_ns": 749198, - "rtt_ms": 0.749198, + "rtt_ns": 1640792, + "rtt_ms": 1.640792, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:50.83040516Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.251786-08:00" }, { "operation": "add_edge", - "rtt_ns": 912917, - "rtt_ms": 0.912917, + "rtt_ns": 1769792, + "rtt_ms": 1.769792, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.83041915Z" + "vertex_to": "205", + "timestamp": "2025-11-27T04:01:49.251896-08:00" }, { "operation": "add_edge", - "rtt_ns": 804537, - "rtt_ms": 0.804537, + "rtt_ns": 1787291, + "rtt_ms": 1.787291, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.830507839Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:49.251961-08:00" }, { "operation": "add_edge", - "rtt_ns": 748947, - "rtt_ms": 0.748947, + "rtt_ns": 1255292, + "rtt_ms": 1.255292, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:50.830557309Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:49.252686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155906, - "rtt_ms": 1.155906, + "rtt_ns": 1684709, + "rtt_ms": 1.684709, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.831054218Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:49.253256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694834, - "rtt_ms": 1.694834, + "rtt_ns": 1596833, + "rtt_ms": 1.596833, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.831557676Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:49.253279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701584, - "rtt_ms": 1.701584, + "rtt_ns": 1494292, + "rtt_ms": 1.494292, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.831566706Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:01:49.253282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581114, - "rtt_ms": 1.581114, + "rtt_ns": 1791583, + "rtt_ms": 1.791583, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:50.831763905Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.253285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422415, - "rtt_ms": 1.422415, + "rtt_ns": 2091167, + "rtt_ms": 2.091167, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.831828395Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.253722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272376, - "rtt_ms": 1.272376, + "rtt_ns": 1843125, + "rtt_ms": 1.843125, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.831830785Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.25374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616965, - "rtt_ms": 1.616965, + "rtt_ns": 1878875, + "rtt_ms": 1.878875, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "603", - "timestamp": "2025-11-27T01:21:50.831834355Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.253841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410136, - "rtt_ms": 1.410136, + "rtt_ns": 2175167, + "rtt_ms": 2.175167, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "868", - "timestamp": "2025-11-27T01:21:50.831919675Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:49.253853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222763, - "rtt_ms": 2.222763, + "rtt_ns": 2371833, + "rtt_ms": 2.371833, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.832543703Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:49.253896-08:00" }, { "operation": "add_edge", - "rtt_ns": 2314982, - "rtt_ms": 2.314982, + "rtt_ns": 1424917, + "rtt_ms": 1.424917, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.832734832Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:49.254704-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016533, - "rtt_ms": 2.016533, + "rtt_ns": 1493834, + "rtt_ms": 1.493834, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:50.833071671Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:49.254751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319306, - "rtt_ms": 1.319306, + "rtt_ns": 1756209, + "rtt_ms": 1.756209, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "737", - "timestamp": "2025-11-27T01:21:50.833084201Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:49.255041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378436, - "rtt_ms": 1.378436, + "rtt_ns": 1795583, + "rtt_ms": 1.795583, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.833211271Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:49.255082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443505, - "rtt_ms": 1.443505, + "rtt_ns": 2517250, + "rtt_ms": 2.51725, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:50.83327881Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.255204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477995, - "rtt_ms": 1.477995, + "rtt_ns": 1499166, + "rtt_ms": 1.499166, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.83330714Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:49.255222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770524, - "rtt_ms": 1.770524, + "rtt_ns": 1328167, + "rtt_ms": 1.328167, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.83332926Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:49.255225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435065, - "rtt_ms": 1.435065, + "rtt_ns": 1540042, + "rtt_ms": 1.540042, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.8333567Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:01:49.255281-08:00" }, { "operation": "add_edge", - "rtt_ns": 2494232, - "rtt_ms": 2.494232, + "rtt_ns": 1442375, + "rtt_ms": 1.442375, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:50.834062098Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:49.255296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437936, - "rtt_ms": 1.437936, + "rtt_ns": 1626708, + "rtt_ms": 1.626708, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.834173708Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.255468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658065, - "rtt_ms": 1.658065, + "rtt_ns": 1146833, + "rtt_ms": 1.146833, "checkpoint": 0, "vertex_from": "25", "vertex_to": "586", - "timestamp": "2025-11-27T01:21:50.834203198Z" + "timestamp": "2025-11-27T04:01:49.255899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423406, - "rtt_ms": 1.423406, + "rtt_ns": 1515791, + "rtt_ms": 1.515791, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:50.834781026Z" + "vertex_from": "25", + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:49.256221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628975, - "rtt_ms": 1.628975, + "rtt_ns": 1761625, + "rtt_ms": 1.761625, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.834936845Z" + "vertex_from": "25", + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:49.256805-08:00" }, { "operation": "add_edge", - "rtt_ns": 905067, - "rtt_ms": 0.905067, + "rtt_ns": 1717542, + "rtt_ms": 1.717542, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.834968195Z" + "vertex_from": "25", + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.256806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642075, - "rtt_ms": 1.642075, + "rtt_ns": 1582708, + "rtt_ms": 1.582708, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.834972105Z" + "vertex_from": "25", + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:49.256806-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024174, - "rtt_ms": 2.024174, + "rtt_ns": 1352333, + "rtt_ms": 1.352333, "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.835096795Z" + "vertex_from": "26", + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:49.256823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114703, - "rtt_ms": 2.114703, + "rtt_ns": 1597166, + "rtt_ms": 1.597166, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "482", - "timestamp": "2025-11-27T01:21:50.835199824Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.256823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004323, - "rtt_ms": 2.004323, + "rtt_ns": 1623333, + "rtt_ms": 1.623333, "checkpoint": 0, "vertex_from": "25", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.835216294Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:01:49.256828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185606, - "rtt_ms": 1.185606, + "rtt_ns": 2301042, + "rtt_ms": 2.301042, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.835360284Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.257598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156786, - "rtt_ms": 1.156786, + "rtt_ns": 2320458, + "rtt_ms": 2.320458, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.835360804Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2176084, - "rtt_ms": 2.176084, - "checkpoint": 0, - "vertex_from": "25", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.835456404Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.257602-08:00" }, { "operation": "add_edge", - "rtt_ns": 733477, - "rtt_ms": 0.733477, + "rtt_ns": 2637500, + "rtt_ms": 2.6375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:50.835515353Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.258537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263756, - "rtt_ms": 1.263756, + "rtt_ns": 1799166, + "rtt_ms": 1.799166, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.836233831Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:49.258606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275726, - "rtt_ms": 1.275726, + "rtt_ns": 1972250, + "rtt_ms": 1.97225, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.836249621Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.258778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114417, - "rtt_ms": 1.114417, + "rtt_ns": 1973041, + "rtt_ms": 1.973041, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.836331971Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.258799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250796, - "rtt_ms": 1.250796, + "rtt_ns": 1979333, + "rtt_ms": 1.979333, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.836349041Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.258806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151067, - "rtt_ms": 1.151067, + "rtt_ns": 2583125, + "rtt_ms": 2.583125, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:50.836351641Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:49.258807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558325, - "rtt_ms": 1.558325, + "rtt_ns": 2010000, + "rtt_ms": 2.01, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.836919959Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:49.258817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426826, - "rtt_ms": 1.426826, + "rtt_ns": 1996042, + "rtt_ms": 1.996042, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.836943299Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.258825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507075, - "rtt_ms": 1.507075, + "rtt_ns": 1402209, + "rtt_ms": 1.402209, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.836964329Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:49.259001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637014, - "rtt_ms": 1.637014, + "rtt_ns": 1417083, + "rtt_ms": 1.417083, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.836998098Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:49.25902-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083533, - "rtt_ms": 2.083533, + "rtt_ns": 1582625, + "rtt_ms": 1.582625, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.837021468Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:49.260401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365285, - "rtt_ms": 1.365285, + "rtt_ns": 1599375, + "rtt_ms": 1.599375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.837615736Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:49.260425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353215, - "rtt_ms": 1.353215, + "rtt_ns": 2078208, + "rtt_ms": 2.078208, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.837685966Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:49.260618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372065, - "rtt_ms": 1.372065, + "rtt_ns": 2107083, + "rtt_ms": 2.107083, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.837724446Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:49.260907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491765, - "rtt_ms": 1.491765, + "rtt_ns": 2110791, + "rtt_ms": 2.110791, "checkpoint": 0, "vertex_from": "26", "vertex_to": "596", - "timestamp": "2025-11-27T01:21:50.837726826Z" + "timestamp": "2025-11-27T04:01:49.260919-08:00" }, { "operation": "add_edge", - "rtt_ns": 841367, - "rtt_ms": 0.841367, + "rtt_ns": 2163750, + "rtt_ms": 2.16375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "347", - "timestamp": "2025-11-27T01:21:50.837785496Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:49.260943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459665, - "rtt_ms": 1.459665, + "rtt_ns": 2381958, + "rtt_ms": 2.381958, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:50.837809626Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.260989-08:00" }, { "operation": "add_edge", - "rtt_ns": 855378, - "rtt_ms": 0.855378, + "rtt_ns": 2035875, + "rtt_ms": 2.035875, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:50.837854216Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.261038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641474, - "rtt_ms": 1.641474, + "rtt_ns": 2354333, + "rtt_ms": 2.354333, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "882", - "timestamp": "2025-11-27T01:21:50.838562533Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.261162-08:00" }, { "operation": "add_edge", - "rtt_ns": 946647, - "rtt_ms": 0.946647, + "rtt_ns": 2158958, + "rtt_ms": 2.158958, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:50.838563233Z" + "vertex_to": "882", + "timestamp": "2025-11-27T04:01:49.26118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754374, - "rtt_ms": 1.754374, + "rtt_ns": 1276542, + "rtt_ms": 1.276542, "checkpoint": 0, "vertex_from": "26", "vertex_to": "736", - "timestamp": "2025-11-27T01:21:50.838719623Z" + "timestamp": "2025-11-27T04:01:49.261703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740905, - "rtt_ms": 1.740905, + "rtt_ns": 1270000, + "rtt_ms": 1.27, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.838763183Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:49.26189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595555, - "rtt_ms": 1.595555, + "rtt_ns": 1504000, + "rtt_ms": 1.504, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:50.839282481Z" + "vertex_to": "347", + "timestamp": "2025-11-27T04:01:49.261907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563395, - "rtt_ms": 1.563395, + "rtt_ns": 1118250, + "rtt_ms": 1.11825, "checkpoint": 0, "vertex_from": "26", "vertex_to": "533", - "timestamp": "2025-11-27T01:21:50.839291091Z" + "timestamp": "2025-11-27T04:01:49.262158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593095, - "rtt_ms": 1.593095, + "rtt_ns": 1542584, + "rtt_ms": 1.542584, "checkpoint": 0, "vertex_from": "26", "vertex_to": "548", - "timestamp": "2025-11-27T01:21:50.839318211Z" + "timestamp": "2025-11-27T04:01:49.262533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655864, - "rtt_ms": 1.655864, + "rtt_ns": 1642375, + "rtt_ms": 1.642375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:50.83946612Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.26255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695604, - "rtt_ms": 1.695604, + "rtt_ns": 1722667, + "rtt_ms": 1.722667, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "77", - "timestamp": "2025-11-27T01:21:50.83948243Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:49.262668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588455, - "rtt_ms": 1.588455, + "rtt_ns": 1027750, + "rtt_ms": 1.02775, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "334", - "timestamp": "2025-11-27T01:21:50.840152148Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:49.262732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143713, - "rtt_ms": 2.143713, + "rtt_ns": 1961958, + "rtt_ms": 1.961958, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.840864086Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:49.263142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328163, - "rtt_ms": 2.328163, + "rtt_ns": 1392334, + "rtt_ms": 1.392334, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.840892076Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:49.263283-08:00" }, { "operation": "add_edge", - "rtt_ns": 3731507, - "rtt_ms": 3.731507, + "rtt_ns": 2127000, + "rtt_ms": 2.127, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.841586963Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:01:49.263291-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225573, - "rtt_ms": 2.225573, + "rtt_ns": 1404750, + "rtt_ms": 1.40475, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.841692403Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.263313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2962810, - "rtt_ms": 2.96281, + "rtt_ns": 1165208, + "rtt_ms": 1.165208, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:50.841726743Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:49.263324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2438962, - "rtt_ms": 2.438962, + "rtt_ns": 2421666, + "rtt_ms": 2.421666, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.841730703Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:49.26336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2449542, - "rtt_ms": 2.449542, + "rtt_ns": 1396042, + "rtt_ms": 1.396042, "checkpoint": 0, "vertex_from": "26", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.841732833Z" + "timestamp": "2025-11-27T04:01:49.263947-08:00" }, { "operation": "add_edge", - "rtt_ns": 2420792, - "rtt_ms": 2.420792, + "rtt_ns": 1231209, + "rtt_ms": 1.231209, "checkpoint": 0, "vertex_from": "26", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.841739993Z" + "timestamp": "2025-11-27T04:01:49.263965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257263, - "rtt_ms": 2.257263, + "rtt_ns": 1909666, + "rtt_ms": 1.909666, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:50.841740873Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:49.264444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609075, - "rtt_ms": 1.609075, + "rtt_ns": 1325500, + "rtt_ms": 1.3255, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.841762973Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:49.264613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324295, - "rtt_ms": 1.324295, + "rtt_ns": 1466875, + "rtt_ms": 1.466875, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.842217251Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.264632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369135, - "rtt_ms": 1.369135, + "rtt_ns": 1073875, + "rtt_ms": 1.073875, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:50.842234671Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.265039-08:00" }, { "operation": "add_edge", - "rtt_ns": 819388, - "rtt_ms": 0.819388, + "rtt_ns": 2391542, + "rtt_ms": 2.391542, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.842411791Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.265062-08:00" }, { "operation": "add_edge", - "rtt_ns": 768398, - "rtt_ms": 0.768398, + "rtt_ns": 1834750, + "rtt_ms": 1.83475, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.842496621Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:49.26515-08:00" }, { "operation": "add_edge", - "rtt_ns": 930857, - "rtt_ms": 0.930857, + "rtt_ns": 1863708, + "rtt_ms": 1.863708, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.84262534Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.265224-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 913707, - "rtt_ms": 0.913707, + "operation": "add_edge", + "rtt_ns": 2201333, + "rtt_ms": 2.201333, "checkpoint": 0, - "vertex_from": "740", - "timestamp": "2025-11-27T01:21:50.84265615Z" + "vertex_from": "26", + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:49.265494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564385, - "rtt_ms": 1.564385, + "rtt_ns": 1800375, + "rtt_ms": 1.800375, "checkpoint": 0, "vertex_from": "26", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.843296848Z" + "timestamp": "2025-11-27T04:01:49.266245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697084, - "rtt_ms": 1.697084, + "rtt_ns": 1638959, + "rtt_ms": 1.638959, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:50.843461017Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.266253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271686, - "rtt_ms": 1.271686, + "rtt_ns": 1061375, + "rtt_ms": 1.061375, "checkpoint": 0, "vertex_from": "26", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.843507837Z" + "timestamp": "2025-11-27T04:01:49.266287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783714, - "rtt_ms": 1.783714, + "rtt_ns": 1148583, + "rtt_ms": 1.148583, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "838", - "timestamp": "2025-11-27T01:21:50.843526807Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:49.266302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794234, - "rtt_ms": 1.794234, + "rtt_ns": 2383375, + "rtt_ms": 2.383375, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.843529427Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.266331-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1722958, + "rtt_ms": 1.722958, + "checkpoint": 0, + "vertex_from": "740", + "timestamp": "2025-11-27T04:01:49.266357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205976, - "rtt_ms": 1.205976, + "rtt_ns": 1317917, + "rtt_ms": 1.317917, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.843618547Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:49.266381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158087, - "rtt_ms": 1.158087, + "rtt_ns": 3761041, + "rtt_ms": 3.761041, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:50.843656047Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:49.267117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942594, - "rtt_ms": 1.942594, + "rtt_ns": 1719417, + "rtt_ms": 1.719417, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.844162615Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:49.267966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637165, - "rtt_ms": 1.637165, + "rtt_ns": 1696834, + "rtt_ms": 1.696834, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.844263635Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:49.267986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622355, - "rtt_ms": 1.622355, + "rtt_ns": 1631292, + "rtt_ms": 1.631292, "checkpoint": 0, "vertex_from": "26", "vertex_to": "740", - "timestamp": "2025-11-27T01:21:50.844278715Z" + "timestamp": "2025-11-27T04:01:49.267988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285436, - "rtt_ms": 1.285436, + "rtt_ns": 2512292, + "rtt_ms": 2.512292, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.844584474Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:49.268008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157436, - "rtt_ms": 1.157436, + "rtt_ns": 1710167, + "rtt_ms": 1.710167, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.844776863Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:49.268013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248896, - "rtt_ms": 1.248896, + "rtt_ns": 2979917, + "rtt_ms": 2.979917, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:50.844780113Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:01:49.268022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351726, - "rtt_ms": 1.351726, + "rtt_ns": 1732208, + "rtt_ms": 1.732208, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:50.844814763Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.268065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344126, - "rtt_ms": 1.344126, + "rtt_ns": 1840417, + "rtt_ms": 1.840417, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.844853573Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:49.268094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366826, - "rtt_ms": 1.366826, + "rtt_ns": 2274125, + "rtt_ms": 2.274125, "checkpoint": 0, "vertex_from": "26", "vertex_to": "962", - "timestamp": "2025-11-27T01:21:50.844895003Z" + "timestamp": "2025-11-27T04:01:49.268658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282966, - "rtt_ms": 1.282966, + "rtt_ns": 1597458, + "rtt_ms": 1.597458, "checkpoint": 0, "vertex_from": "26", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.844940013Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:49.268717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084246, - "rtt_ms": 1.084246, + "rtt_ns": 1210459, + "rtt_ms": 1.210459, "checkpoint": 0, - "vertex_from": "26", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.845349031Z" + "vertex_from": "27", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.269225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314746, - "rtt_ms": 1.314746, + "rtt_ns": 1356792, + "rtt_ms": 1.356792, "checkpoint": 0, "vertex_from": "26", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.845478401Z" + "timestamp": "2025-11-27T04:01:49.269346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270635, - "rtt_ms": 1.270635, + "rtt_ns": 1598041, + "rtt_ms": 1.598041, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.84555071Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.269693-08:00" }, { "operation": "add_edge", - "rtt_ns": 986936, - "rtt_ms": 0.986936, + "rtt_ns": 1748584, + "rtt_ms": 1.748584, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.84557308Z" + "vertex_from": "26", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.269716-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1743500, + "rtt_ms": 1.7435, + "checkpoint": 0, + "vertex_from": "26", + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:49.269731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436855, - "rtt_ms": 1.436855, + "rtt_ns": 1305708, + "rtt_ms": 1.305708, "checkpoint": 0, "vertex_from": "27", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:50.846253868Z" + "timestamp": "2025-11-27T04:01:49.269966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750694, - "rtt_ms": 1.750694, + "rtt_ns": 1914167, + "rtt_ms": 1.914167, "checkpoint": 0, "vertex_from": "27", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.846529077Z" + "timestamp": "2025-11-27T04:01:49.269982-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1972666, + "rtt_ms": 1.972666, + "checkpoint": 0, + "vertex_from": "27", + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:49.269996-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004943, - "rtt_ms": 2.004943, + "rtt_ns": 1291958, + "rtt_ms": 1.291958, "checkpoint": 0, "vertex_from": "27", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.846859796Z" + "timestamp": "2025-11-27T04:01:49.270011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2273582, - "rtt_ms": 2.273582, + "rtt_ns": 909458, + "rtt_ms": 0.909458, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.847057325Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:49.270258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820554, - "rtt_ms": 1.820554, + "rtt_ns": 1292917, + "rtt_ms": 1.292917, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.847299775Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.271026-08:00" }, { "operation": "add_edge", - "rtt_ns": 3118269, - "rtt_ms": 3.118269, + "rtt_ns": 1916250, + "rtt_ms": 1.91625, "checkpoint": 0, "vertex_from": "27", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.848014022Z" + "timestamp": "2025-11-27T04:01:49.271143-08:00" }, { "operation": "add_edge", - "rtt_ns": 3134709, - "rtt_ms": 3.134709, + "rtt_ns": 3305292, + "rtt_ms": 3.305292, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:50.848077362Z" + "vertex_from": "26", + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.271314-08:00" }, { "operation": "add_edge", - "rtt_ns": 2529792, - "rtt_ms": 2.529792, + "rtt_ns": 2031709, + "rtt_ms": 2.031709, "checkpoint": 0, "vertex_from": "27", "vertex_to": "338", - "timestamp": "2025-11-27T01:21:50.848104532Z" + "timestamp": "2025-11-27T04:01:49.271999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2764401, - "rtt_ms": 2.764401, + "rtt_ns": 1996666, + "rtt_ms": 1.996666, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.848114642Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:49.272008-08:00" }, { "operation": "add_edge", - "rtt_ns": 2604642, - "rtt_ms": 2.604642, + "rtt_ns": 2304042, + "rtt_ms": 2.304042, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.848156792Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.272022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929794, - "rtt_ms": 1.929794, + "rtt_ns": 2046417, + "rtt_ms": 2.046417, "checkpoint": 0, "vertex_from": "27", "vertex_to": "452", - "timestamp": "2025-11-27T01:21:50.848185372Z" + "timestamp": "2025-11-27T04:01:49.272029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689825, - "rtt_ms": 1.689825, + "rtt_ns": 2037416, + "rtt_ms": 2.037416, "checkpoint": 0, "vertex_from": "27", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.848222022Z" + "timestamp": "2025-11-27T04:01:49.272034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383696, - "rtt_ms": 1.383696, + "rtt_ns": 2353791, + "rtt_ms": 2.353791, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:50.848245582Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.272048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142376, - "rtt_ms": 1.142376, + "rtt_ns": 1267916, + "rtt_ms": 1.267916, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:50.848443471Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.272413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418656, - "rtt_ms": 1.418656, + "rtt_ns": 1395500, + "rtt_ms": 1.3955, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.848477071Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:49.272422-08:00" }, { "operation": "add_edge", - "rtt_ns": 725318, - "rtt_ms": 0.725318, + "rtt_ns": 2343333, + "rtt_ms": 2.343333, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.84874115Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.272604-08:00" }, { "operation": "add_edge", - "rtt_ns": 788617, - "rtt_ms": 0.788617, + "rtt_ns": 1168541, + "rtt_ms": 1.168541, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:50.848946919Z" + "vertex_from": "28", + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:49.273773-08:00" }, { "operation": "add_edge", - "rtt_ns": 847877, - "rtt_ms": 0.847877, + "rtt_ns": 2184625, + "rtt_ms": 2.184625, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "333", - "timestamp": "2025-11-27T01:21:50.848965139Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:49.274214-08:00" }, { "operation": "add_edge", - "rtt_ns": 911117, - "rtt_ms": 0.911117, + "rtt_ns": 2959959, + "rtt_ms": 2.959959, "checkpoint": 0, "vertex_from": "27", "vertex_to": "398", - "timestamp": "2025-11-27T01:21:50.848989839Z" + "timestamp": "2025-11-27T04:01:49.274275-08:00" }, { "operation": "add_edge", - "rtt_ns": 875427, - "rtt_ms": 0.875427, + "rtt_ns": 2307833, + "rtt_ms": 2.307833, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:50.849062279Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.274308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474395, - "rtt_ms": 1.474395, + "rtt_ns": 1000792, + "rtt_ms": 1.000792, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.849580377Z" + "vertex_from": "28", + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:49.274783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362815, - "rtt_ms": 1.362815, + "rtt_ns": 927083, + "rtt_ms": 0.927083, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.849609867Z" + "vertex_from": "28", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.275236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318576, - "rtt_ms": 1.318576, + "rtt_ns": 1044834, + "rtt_ms": 1.044834, "checkpoint": 0, - "vertex_from": "27", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.849801627Z" + "vertex_from": "28", + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:49.275324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418635, - "rtt_ms": 1.418635, + "rtt_ns": 3138500, + "rtt_ms": 3.1385, "checkpoint": 0, "vertex_from": "27", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.849863236Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.275563-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109223, - "rtt_ms": 2.109223, + "rtt_ns": 3545041, + "rtt_ms": 3.545041, "checkpoint": 0, "vertex_from": "27", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.850334545Z" + "timestamp": "2025-11-27T04:01:49.275579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665135, - "rtt_ms": 1.665135, + "rtt_ns": 1724666, + "rtt_ms": 1.724666, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:50.850408195Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.27594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445536, - "rtt_ms": 1.445536, + "rtt_ns": 3952333, + "rtt_ms": 3.952333, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.850436635Z" + "vertex_from": "27", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.276003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493176, - "rtt_ms": 1.493176, + "rtt_ns": 1362667, + "rtt_ms": 1.362667, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.850461025Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.276147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537395, - "rtt_ms": 1.537395, + "rtt_ns": 1348584, + "rtt_ms": 1.348584, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.850485634Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.276675-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174643, - "rtt_ms": 2.174643, + "rtt_ns": 1459708, + "rtt_ms": 1.459708, "checkpoint": 0, "vertex_from": "28", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.85178713Z" + "timestamp": "2025-11-27T04:01:49.276699-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059213, - "rtt_ms": 2.059213, + "rtt_ns": 1167875, + "rtt_ms": 1.167875, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.85186215Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.276732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2858851, - "rtt_ms": 2.858851, + "rtt_ns": 974750, + "rtt_ms": 0.97475, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.852440628Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:49.277123-08:00" }, { "operation": "add_edge", - "rtt_ns": 2653312, - "rtt_ms": 2.653312, + "rtt_ns": 1136209, + "rtt_ms": 1.136209, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.852517778Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.277142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2235083, - "rtt_ms": 2.235083, + "rtt_ns": 1569000, + "rtt_ms": 1.569, "checkpoint": 0, "vertex_from": "28", "vertex_to": "78", - "timestamp": "2025-11-27T01:21:50.852572058Z" + "timestamp": "2025-11-27T04:01:49.277149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2246152, - "rtt_ms": 2.246152, + "rtt_ns": 1576125, + "rtt_ms": 1.576125, "checkpoint": 0, "vertex_from": "28", "vertex_to": "786", - "timestamp": "2025-11-27T01:21:50.852655627Z" + "timestamp": "2025-11-27T04:01:49.277517-08:00" }, { "operation": "add_edge", - "rtt_ns": 3614518, - "rtt_ms": 3.614518, + "rtt_ns": 1490083, + "rtt_ms": 1.490083, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.852678777Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:49.278224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269262, - "rtt_ms": 2.269262, + "rtt_ns": 6215541, + "rtt_ms": 6.215541, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.852731057Z" + "vertex_from": "27", + "vertex_to": "333", + "timestamp": "2025-11-27T04:01:49.278226-08:00" }, { "operation": "add_edge", - "rtt_ns": 895487, - "rtt_ms": 0.895487, + "rtt_ns": 1556625, + "rtt_ms": 1.556625, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.853337385Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.278234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589745, - "rtt_ms": 1.589745, + "rtt_ns": 5828084, + "rtt_ms": 5.828084, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:50.853380235Z" + "vertex_from": "27", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.278242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2929671, - "rtt_ms": 2.929671, + "rtt_ns": 1543292, + "rtt_ms": 1.543292, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.853416605Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:49.278243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561935, - "rtt_ms": 1.561935, + "rtt_ns": 1192041, + "rtt_ms": 1.192041, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:50.853425635Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:49.278343-08:00" }, { "operation": "add_edge", - "rtt_ns": 3030690, - "rtt_ms": 3.03069, + "rtt_ns": 1020709, + "rtt_ms": 1.020709, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.853468255Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.27854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527035, - "rtt_ms": 1.527035, + "rtt_ns": 1438333, + "rtt_ms": 1.438333, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.854184872Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.278564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703024, - "rtt_ms": 1.703024, + "rtt_ns": 1650750, + "rtt_ms": 1.65075, "checkpoint": 0, "vertex_from": "28", "vertex_to": "401", - "timestamp": "2025-11-27T01:21:50.854222152Z" + "timestamp": "2025-11-27T04:01:49.278794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546285, - "rtt_ms": 1.546285, + "rtt_ns": 1473833, + "rtt_ms": 1.473833, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:50.854226202Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.279701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681184, - "rtt_ms": 1.681184, + "rtt_ns": 7706917, + "rtt_ms": 7.706917, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:50.854254932Z" + "vertex_from": "27", + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:49.279731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253915, - "rtt_ms": 1.253915, + "rtt_ns": 1534583, + "rtt_ms": 1.534583, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.85472321Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:49.27977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053633, - "rtt_ms": 2.053633, + "rtt_ns": 1208167, + "rtt_ms": 1.208167, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.85478621Z" + "vertex_to": "32", + "timestamp": "2025-11-27T04:01:49.279772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454335, - "rtt_ms": 1.454335, + "rtt_ns": 1532292, + "rtt_ms": 1.532292, "checkpoint": 0, "vertex_from": "28", "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.85483574Z" + "timestamp": "2025-11-27T04:01:49.279776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512475, - "rtt_ms": 1.512475, + "rtt_ns": 1545000, + "rtt_ms": 1.545, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.85485164Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.279788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427535, - "rtt_ms": 1.427535, + "rtt_ns": 1079167, + "rtt_ms": 1.079167, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:50.85485498Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:49.279874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417735, - "rtt_ms": 1.417735, + "rtt_ns": 1334000, + "rtt_ms": 1.334, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.855640977Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:49.279876-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237732, - "rtt_ms": 2.237732, + "rtt_ns": 1536000, + "rtt_ms": 1.536, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.855656037Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:49.27988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041777, - "rtt_ms": 1.041777, + "rtt_ns": 2475292, + "rtt_ms": 2.475292, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.855766727Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:49.2807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532195, - "rtt_ms": 1.532195, + "rtt_ns": 1713875, + "rtt_ms": 1.713875, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.855788447Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:49.281503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563835, - "rtt_ms": 1.563835, + "rtt_ns": 1746333, + "rtt_ms": 1.746333, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.855791487Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.28152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640845, - "rtt_ms": 1.640845, + "rtt_ns": 2060792, + "rtt_ms": 2.060792, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "32", - "timestamp": "2025-11-27T01:21:50.855827107Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.281837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627505, - "rtt_ms": 1.627505, + "rtt_ns": 1977625, + "rtt_ms": 1.977625, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.856414525Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:49.281855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572135, - "rtt_ms": 1.572135, + "rtt_ns": 2220666, + "rtt_ms": 2.220666, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.856428655Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.281992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588865, - "rtt_ms": 1.588865, + "rtt_ns": 2263000, + "rtt_ms": 2.263, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.856441685Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.282011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789624, - "rtt_ms": 1.789624, + "rtt_ns": 1503583, + "rtt_ms": 1.503583, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.856627374Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:49.282205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798265, - "rtt_ms": 1.798265, + "rtt_ns": 2523500, + "rtt_ms": 2.5235, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.857455212Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.282225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154666, - "rtt_ms": 1.154666, + "rtt_ns": 2365541, + "rtt_ms": 2.365541, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.857569951Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.282241-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249313, - "rtt_ms": 2.249313, + "rtt_ns": 1304792, + "rtt_ms": 1.304792, "checkpoint": 0, "vertex_from": "28", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.85803961Z" + "timestamp": "2025-11-27T04:01:49.282809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362072, - "rtt_ms": 2.362072, + "rtt_ns": 3645333, + "rtt_ms": 3.645333, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.858154959Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:49.283527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444412, - "rtt_ms": 2.444412, + "rtt_ns": 1905708, + "rtt_ms": 1.905708, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "422", - "timestamp": "2025-11-27T01:21:50.858272509Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.283762-08:00" }, { "operation": "add_edge", - "rtt_ns": 2425202, - "rtt_ms": 2.425202, + "rtt_ns": 1774125, + "rtt_ms": 1.774125, "checkpoint": 0, "vertex_from": "28", "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.858855377Z" + "timestamp": "2025-11-27T04:01:49.283767-08:00" }, { "operation": "add_edge", - "rtt_ns": 3181420, - "rtt_ms": 3.18142, + "rtt_ns": 1538000, + "rtt_ms": 1.538, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:50.858949227Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.28378-08:00" }, { "operation": "add_edge", - "rtt_ns": 2511752, - "rtt_ms": 2.511752, + "rtt_ns": 1564875, + "rtt_ms": 1.564875, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.858954697Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:49.283791-08:00" }, { "operation": "add_edge", - "rtt_ns": 3316720, - "rtt_ms": 3.31672, + "rtt_ns": 1786500, + "rtt_ms": 1.7865, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:50.858959507Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.283798-08:00" }, { "operation": "add_edge", - "rtt_ns": 2365073, - "rtt_ms": 2.365073, + "rtt_ns": 2517292, + "rtt_ms": 2.517292, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.858993357Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:01:49.284356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651294, - "rtt_ms": 1.651294, + "rtt_ns": 2838875, + "rtt_ms": 2.838875, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.859108366Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:49.284359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563435, - "rtt_ms": 1.563435, + "rtt_ns": 2176875, + "rtt_ms": 2.176875, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.859134486Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:49.284382-08:00" }, { "operation": "add_edge", - "rtt_ns": 777067, - "rtt_ms": 0.777067, + "rtt_ns": 2326000, + "rtt_ms": 2.326, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.859733724Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:49.285136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706804, - "rtt_ms": 1.706804, + "rtt_ns": 1439334, + "rtt_ms": 1.439334, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.859748374Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:49.285207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580075, - "rtt_ms": 1.580075, + "rtt_ns": 1487875, + "rtt_ms": 1.487875, "checkpoint": 0, "vertex_from": "28", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.859854424Z" + "timestamp": "2025-11-27T04:01:49.285251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064957, - "rtt_ms": 1.064957, + "rtt_ns": 1881166, + "rtt_ms": 1.881166, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.859922534Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:49.285662-08:00" }, { "operation": "add_edge", - "rtt_ns": 968117, - "rtt_ms": 0.968117, + "rtt_ns": 1946542, + "rtt_ms": 1.946542, "checkpoint": 0, "vertex_from": "28", "vertex_to": "585", - "timestamp": "2025-11-27T01:21:50.859928694Z" + "timestamp": "2025-11-27T04:01:49.285746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795245, - "rtt_ms": 1.795245, + "rtt_ns": 2034209, + "rtt_ms": 2.034209, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.859951654Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:49.285826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049577, - "rtt_ms": 1.049577, + "rtt_ns": 1561042, + "rtt_ms": 1.561042, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:50.860000124Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:01:49.285944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034136, - "rtt_ms": 1.034136, + "rtt_ns": 1604291, + "rtt_ms": 1.604291, "checkpoint": 0, "vertex_from": "28", "vertex_to": "836", - "timestamp": "2025-11-27T01:21:50.860028633Z" + "timestamp": "2025-11-27T04:01:49.285961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591655, - "rtt_ms": 1.591655, + "rtt_ns": 1868750, + "rtt_ms": 1.86875, "checkpoint": 0, "vertex_from": "28", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.860701171Z" + "timestamp": "2025-11-27T04:01:49.286229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632985, - "rtt_ms": 1.632985, + "rtt_ns": 3161041, + "rtt_ms": 3.161041, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "51", - "timestamp": "2025-11-27T01:21:50.860769851Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.286691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243346, - "rtt_ms": 1.243346, + "rtt_ns": 1498292, + "rtt_ms": 1.498292, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.86109903Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:49.286707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363806, - "rtt_ms": 1.363806, + "rtt_ns": 859875, + "rtt_ms": 0.859875, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.86109911Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:49.286805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180026, - "rtt_ms": 1.180026, + "rtt_ns": 897042, + "rtt_ms": 0.897042, "checkpoint": 0, - "vertex_from": "28", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:50.8611038Z" + "vertex_from": "29", + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.286859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347975, - "rtt_ms": 1.347975, + "rtt_ns": 1723375, + "rtt_ms": 1.723375, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:50.861278089Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:49.28686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605845, - "rtt_ms": 1.605845, + "rtt_ns": 1130917, + "rtt_ms": 1.130917, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.861355259Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:49.286878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410375, - "rtt_ms": 1.410375, + "rtt_ns": 1770458, + "rtt_ms": 1.770458, "checkpoint": 0, "vertex_from": "28", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.861411799Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.287022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409296, - "rtt_ms": 1.409296, + "rtt_ns": 2115792, + "rtt_ms": 2.115792, "checkpoint": 0, - "vertex_from": "29", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.861439739Z" + "vertex_from": "28", + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:49.287781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492995, - "rtt_ms": 1.492995, + "rtt_ns": 1992541, + "rtt_ms": 1.992541, "checkpoint": 0, "vertex_from": "28", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.861445769Z" + "timestamp": "2025-11-27T04:01:49.287819-08:00" }, { "operation": "add_edge", - "rtt_ns": 688938, - "rtt_ms": 0.688938, + "rtt_ns": 1221333, + "rtt_ms": 1.221333, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:50.861460769Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:49.2881-08:00" }, { "operation": "add_edge", - "rtt_ns": 843928, - "rtt_ms": 0.843928, + "rtt_ns": 1920000, + "rtt_ms": 1.92, "checkpoint": 0, "vertex_from": "29", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.861546549Z" + "timestamp": "2025-11-27T04:01:49.288152-08:00" }, { "operation": "add_edge", - "rtt_ns": 834418, - "rtt_ms": 0.834418, + "rtt_ns": 1736916, + "rtt_ms": 1.736916, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:50.862113527Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:49.288429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047247, - "rtt_ms": 1.047247, + "rtt_ns": 1570833, + "rtt_ms": 1.570833, "checkpoint": 0, "vertex_from": "29", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.862152077Z" + "timestamp": "2025-11-27T04:01:49.288467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106827, - "rtt_ms": 1.106827, + "rtt_ns": 1908750, + "rtt_ms": 1.90875, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:50.862207207Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.288716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142806, - "rtt_ms": 1.142806, + "rtt_ns": 1879209, + "rtt_ms": 1.879209, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.862243906Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:49.288742-08:00" }, { "operation": "add_edge", - "rtt_ns": 945717, - "rtt_ms": 0.945717, + "rtt_ns": 1723333, + "rtt_ms": 1.723333, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:50.862301706Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.288746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484775, - "rtt_ms": 1.484775, + "rtt_ns": 2361750, + "rtt_ms": 2.36175, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.862931524Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:49.289069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634005, - "rtt_ms": 1.634005, + "rtt_ns": 2059541, + "rtt_ms": 2.059541, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.863047134Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:49.289881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637715, - "rtt_ms": 1.637715, + "rtt_ns": 2052500, + "rtt_ms": 2.0525, "checkpoint": 0, "vertex_from": "29", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.863099554Z" + "timestamp": "2025-11-27T04:01:49.290154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664714, - "rtt_ms": 1.664714, + "rtt_ns": 2424250, + "rtt_ms": 2.42425, "checkpoint": 0, "vertex_from": "29", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.863211993Z" + "timestamp": "2025-11-27T04:01:49.290578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827714, - "rtt_ms": 1.827714, + "rtt_ns": 3234667, + "rtt_ms": 3.234667, "checkpoint": 0, "vertex_from": "29", "vertex_to": "404", - "timestamp": "2025-11-27T01:21:50.863268393Z" + "timestamp": "2025-11-27T04:01:49.291018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736324, - "rtt_ms": 1.736324, + "rtt_ns": 2617084, + "rtt_ms": 2.617084, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:50.863889511Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:49.291048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2279963, - "rtt_ms": 2.279963, + "rtt_ns": 2730250, + "rtt_ms": 2.73025, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:50.864582769Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:49.291231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2446672, - "rtt_ms": 2.446672, + "rtt_ns": 2534083, + "rtt_ms": 2.534083, "checkpoint": 0, "vertex_from": "29", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:50.864654569Z" + "timestamp": "2025-11-27T04:01:49.291253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2427993, - "rtt_ms": 2.427993, + "rtt_ns": 2548917, + "rtt_ms": 2.548917, "checkpoint": 0, "vertex_from": "29", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.864672769Z" + "timestamp": "2025-11-27T04:01:49.291328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779234, - "rtt_ms": 1.779234, + "rtt_ns": 2661709, + "rtt_ms": 2.661709, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "118", - "timestamp": "2025-11-27T01:21:50.864712118Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:49.291409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701394, - "rtt_ms": 1.701394, + "rtt_ns": 2568459, + "rtt_ms": 2.568459, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.864749468Z" + "vertex_to": "118", + "timestamp": "2025-11-27T04:01:49.29164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731434, - "rtt_ms": 1.731434, + "rtt_ns": 1873208, + "rtt_ms": 1.873208, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "601", - "timestamp": "2025-11-27T01:21:50.864832118Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.291755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2729801, - "rtt_ms": 2.729801, + "rtt_ns": 1774292, + "rtt_ms": 1.774292, "checkpoint": 0, "vertex_from": "29", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:50.864844498Z" - }, - { - "operation": "add_edge", - "rtt_ns": 876067, - "rtt_ms": 0.876067, - "checkpoint": 0, - "vertex_from": "30", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.865588795Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:49.291929-08:00" }, { "operation": "add_edge", - "rtt_ns": 2382732, - "rtt_ms": 2.382732, + "rtt_ns": 1409542, + "rtt_ms": 1.409542, "checkpoint": 0, "vertex_from": "29", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.865596215Z" + "timestamp": "2025-11-27T04:01:49.291989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381012, - "rtt_ms": 2.381012, + "rtt_ns": 1545750, + "rtt_ms": 1.54575, "checkpoint": 0, "vertex_from": "30", "vertex_to": "585", - "timestamp": "2025-11-27T01:21:50.865652145Z" + "timestamp": "2025-11-27T04:01:49.292585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786704, - "rtt_ms": 1.786704, + "rtt_ns": 1632709, + "rtt_ms": 1.632709, "checkpoint": 0, "vertex_from": "30", "vertex_to": "294", - "timestamp": "2025-11-27T01:21:50.865677815Z" + "timestamp": "2025-11-27T04:01:49.292682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053096, - "rtt_ms": 1.053096, + "rtt_ns": 1509542, + "rtt_ms": 1.509542, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.865708215Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.292743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133386, - "rtt_ms": 1.133386, + "rtt_ns": 1466667, + "rtt_ms": 1.466667, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.865717215Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.292876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064426, - "rtt_ms": 1.064426, + "rtt_ns": 1942625, + "rtt_ms": 1.942625, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:50.865738165Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1606175, - "rtt_ms": 1.606175, - "checkpoint": 0, - "vertex_from": "231", - "timestamp": "2025-11-27T01:21:50.866361323Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:49.293196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535005, - "rtt_ms": 1.535005, + "rtt_ns": 1945834, + "rtt_ms": 1.945834, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:50.866368623Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:49.293274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079247, - "rtt_ms": 1.079247, + "rtt_ns": 1514375, + "rtt_ms": 1.514375, "checkpoint": 0, "vertex_from": "30", "vertex_to": "202", - "timestamp": "2025-11-27T01:21:50.866670322Z" + "timestamp": "2025-11-27T04:01:49.293504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976153, - "rtt_ms": 1.976153, + "rtt_ns": 1594958, + "rtt_ms": 1.594958, "checkpoint": 0, "vertex_from": "30", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.866821701Z" + "timestamp": "2025-11-27T04:01:49.293526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229916, - "rtt_ms": 1.229916, + "rtt_ns": 2236583, + "rtt_ms": 2.236583, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.866883061Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:49.293995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216646, - "rtt_ms": 1.216646, + "rtt_ns": 1251167, + "rtt_ms": 1.251167, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:50.866895431Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.294128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347896, - "rtt_ms": 1.347896, + "rtt_ns": 1826583, + "rtt_ms": 1.826583, "checkpoint": 0, "vertex_from": "30", "vertex_to": "897", - "timestamp": "2025-11-27T01:21:50.866947201Z" + "timestamp": "2025-11-27T04:01:49.294412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269566, - "rtt_ms": 1.269566, + "rtt_ns": 1695500, + "rtt_ms": 1.6955, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.866978931Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:49.29444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244346, - "rtt_ms": 1.244346, + "rtt_ns": 1243792, + "rtt_ms": 1.243792, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.866984331Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.294441-08:00" }, { "operation": "add_edge", - "rtt_ns": 727447, - "rtt_ms": 0.727447, + "rtt_ns": 1208542, + "rtt_ms": 1.208542, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.86709764Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:49.294484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382945, - "rtt_ms": 1.382945, + "rtt_ns": 1275667, + "rtt_ms": 1.275667, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.86710172Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.29478-08:00" }, { "operation": "add_edge", - "rtt_ns": 749337, - "rtt_ms": 0.749337, + "rtt_ns": 1580458, + "rtt_ms": 1.580458, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "231", - "timestamp": "2025-11-27T01:21:50.867111Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:49.295107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211036, - "rtt_ms": 1.211036, + "rtt_ns": 1428666, + "rtt_ms": 1.428666, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:50.867883398Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:49.295558-08:00" }, { "operation": "add_edge", - "rtt_ns": 938157, - "rtt_ms": 0.938157, + "rtt_ns": 1091417, + "rtt_ms": 1.091417, "checkpoint": 0, "vertex_from": "30", "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.867923408Z" + "timestamp": "2025-11-27T04:01:49.295576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082556, - "rtt_ms": 1.082556, + "rtt_ns": 1237125, + "rtt_ms": 1.237125, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.867978787Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.29568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095736, - "rtt_ms": 1.095736, + "rtt_ns": 1280458, + "rtt_ms": 1.280458, "checkpoint": 0, "vertex_from": "30", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:50.868075657Z" + "timestamp": "2025-11-27T04:01:49.295722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341106, - "rtt_ms": 1.341106, + "rtt_ns": 1315667, + "rtt_ms": 1.315667, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.868164567Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.295729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303516, - "rtt_ms": 1.303516, + "rtt_ns": 3540958, + "rtt_ms": 3.540958, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:50.868188117Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.296226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084033, - "rtt_ms": 2.084033, + "rtt_ns": 1321709, + "rtt_ms": 1.321709, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.869033374Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:49.29643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930944, - "rtt_ms": 1.930944, + "rtt_ns": 2443792, + "rtt_ms": 2.443792, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:50.869034684Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.29644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927744, - "rtt_ms": 1.927744, + "rtt_ns": 1708833, + "rtt_ms": 1.708833, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:50.869039944Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.29649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976644, - "rtt_ms": 1.976644, + "rtt_ns": 1447000, + "rtt_ms": 1.447, "checkpoint": 0, "vertex_from": "30", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.869075384Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:49.297006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575565, - "rtt_ms": 1.575565, + "rtt_ns": 1536333, + "rtt_ms": 1.536333, "checkpoint": 0, "vertex_from": "30", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.869460143Z" + "timestamp": "2025-11-27T04:01:49.297114-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 5720125, + "rtt_ms": 5.720125, + "checkpoint": 0, + "vertex_from": "231", + "timestamp": "2025-11-27T04:01:49.297361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571465, - "rtt_ms": 1.571465, + "rtt_ns": 1454666, + "rtt_ms": 1.454666, "checkpoint": 0, - "vertex_from": "31", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.869495793Z" + "vertex_from": "32", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:49.297946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541056, - "rtt_ms": 1.541056, + "rtt_ns": 2476625, + "rtt_ms": 2.476625, "checkpoint": 0, "vertex_from": "31", "vertex_to": "270", - "timestamp": "2025-11-27T01:21:50.869521233Z" + "timestamp": "2025-11-27T04:01:49.2982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600905, - "rtt_ms": 1.600905, + "rtt_ns": 2619500, + "rtt_ms": 2.6195, "checkpoint": 0, "vertex_from": "31", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.869677652Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:49.298303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518295, - "rtt_ms": 1.518295, + "rtt_ns": 1876958, + "rtt_ms": 1.876958, "checkpoint": 0, - "vertex_from": "31", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.869684502Z" + "vertex_from": "32", + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.298308-08:00" }, { "operation": "add_edge", - "rtt_ns": 787428, - "rtt_ms": 0.787428, + "rtt_ns": 1875792, + "rtt_ms": 1.875792, "checkpoint": 0, "vertex_from": "32", "vertex_to": "201", - "timestamp": "2025-11-27T01:21:50.869823772Z" + "timestamp": "2025-11-27T04:01:49.298318-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038223, - "rtt_ms": 2.038223, + "rtt_ns": 979375, + "rtt_ms": 0.979375, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.87023366Z" + "vertex_from": "30", + "vertex_to": "231", + "timestamp": "2025-11-27T04:01:49.298341-08:00" }, { "operation": "add_edge", - "rtt_ns": 958437, - "rtt_ms": 0.958437, + "rtt_ns": 2691875, + "rtt_ms": 2.691875, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.87045478Z" + "vertex_from": "31", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.298423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438466, - "rtt_ms": 1.438466, + "rtt_ns": 1430375, + "rtt_ms": 1.430375, "checkpoint": 0, "vertex_from": "32", "vertex_to": "964", - "timestamp": "2025-11-27T01:21:50.87047977Z" + "timestamp": "2025-11-27T04:01:49.298439-08:00" }, { "operation": "add_edge", - "rtt_ns": 964557, - "rtt_ms": 0.964557, + "rtt_ns": 1379916, + "rtt_ms": 1.379916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:50.87048668Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.298496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491425, - "rtt_ms": 1.491425, + "rtt_ns": 2294834, + "rtt_ms": 2.294834, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.870568449Z" + "vertex_from": "31", + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:49.298522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575035, - "rtt_ms": 1.575035, + "rtt_ns": 1186792, + "rtt_ms": 1.186792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:50.870612699Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:49.299529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192666, - "rtt_ms": 1.192666, + "rtt_ns": 1306042, + "rtt_ms": 1.306042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.870654499Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.299625-08:00" }, { "operation": "add_edge", - "rtt_ns": 977886, - "rtt_ms": 0.977886, + "rtt_ns": 1560917, + "rtt_ms": 1.560917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:50.871466286Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:49.299763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231936, - "rtt_ms": 1.231936, + "rtt_ns": 1844458, + "rtt_ms": 1.844458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.871467906Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.299795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780894, - "rtt_ms": 1.780894, + "rtt_ns": 1492166, + "rtt_ms": 1.492166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.871468746Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:49.299796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643604, - "rtt_ms": 1.643604, + "rtt_ns": 2008792, + "rtt_ms": 2.008792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:50.871469546Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:49.300448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812834, - "rtt_ms": 1.812834, + "rtt_ns": 2030292, + "rtt_ms": 2.030292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:50.871492456Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.300453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404575, - "rtt_ms": 1.404575, + "rtt_ns": 2039750, + "rtt_ms": 2.03975, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:50.871860465Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:49.300536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755505, - "rtt_ms": 1.755505, + "rtt_ns": 2012792, + "rtt_ms": 2.012792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:50.872325764Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:49.300537-08:00" }, { "operation": "add_edge", - "rtt_ns": 2242883, - "rtt_ms": 2.242883, + "rtt_ns": 2353791, + "rtt_ms": 2.353791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.872899112Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:49.300664-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337022, - "rtt_ms": 2.337022, + "rtt_ns": 1625250, + "rtt_ms": 1.62525, "checkpoint": 0, "vertex_from": "32", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.872950801Z" + "timestamp": "2025-11-27T04:01:49.301251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2640361, - "rtt_ms": 2.640361, + "rtt_ns": 2088416, + "rtt_ms": 2.088416, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.873122191Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:49.301619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670605, - "rtt_ms": 1.670605, + "rtt_ns": 2043375, + "rtt_ms": 2.043375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.873138801Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.301808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151183, - "rtt_ms": 2.151183, + "rtt_ns": 1713042, + "rtt_ms": 1.713042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "604", - "timestamp": "2025-11-27T01:21:50.873621659Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:49.302167-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207123, - "rtt_ms": 2.207123, + "rtt_ns": 2725666, + "rtt_ms": 2.725666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:50.873679269Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:01:49.302523-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355043, - "rtt_ms": 2.355043, + "rtt_ns": 1988750, + "rtt_ms": 1.98875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "665", - "timestamp": "2025-11-27T01:21:50.873828059Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:49.302526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086203, - "rtt_ms": 2.086203, + "rtt_ns": 1951125, + "rtt_ms": 1.951125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:50.873948688Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:49.302618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2455512, - "rtt_ms": 2.455512, + "rtt_ns": 2089625, + "rtt_ms": 2.089625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.873950408Z" + "timestamp": "2025-11-27T04:01:49.302627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794634, - "rtt_ms": 1.794634, + "rtt_ns": 2859375, + "rtt_ms": 2.859375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:50.874122048Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.302655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332225, - "rtt_ms": 1.332225, + "rtt_ns": 2273708, + "rtt_ms": 2.273708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:50.874232987Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:49.302723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362426, - "rtt_ms": 1.362426, + "rtt_ns": 1678459, + "rtt_ms": 1.678459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.874313927Z" + "vertex_to": "143", + "timestamp": "2025-11-27T04:01:49.303488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229676, - "rtt_ms": 1.229676, + "rtt_ns": 1889000, + "rtt_ms": 1.889, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "143", - "timestamp": "2025-11-27T01:21:50.874353927Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.30351-08:00" }, { "operation": "add_edge", - "rtt_ns": 844347, - "rtt_ms": 0.844347, + "rtt_ns": 1301041, + "rtt_ms": 1.301041, "checkpoint": 0, "vertex_from": "32", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.874466656Z" + "timestamp": "2025-11-27T04:01:49.303824-08:00" }, { "operation": "add_edge", - "rtt_ns": 894257, - "rtt_ms": 0.894257, + "rtt_ns": 2622125, + "rtt_ms": 2.622125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:50.874574336Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:49.303874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497035, - "rtt_ms": 1.497035, + "rtt_ns": 1272750, + "rtt_ms": 1.27275, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.874636706Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:49.303996-08:00" }, { "operation": "add_edge", - "rtt_ns": 820387, - "rtt_ms": 0.820387, + "rtt_ns": 1396250, + "rtt_ms": 1.39625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.874649576Z" + "timestamp": "2025-11-27T04:01:49.304015-08:00" }, { "operation": "add_edge", - "rtt_ns": 909677, - "rtt_ms": 0.909677, + "rtt_ns": 1490792, + "rtt_ms": 1.490792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "61", - "timestamp": "2025-11-27T01:21:50.874859175Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:49.304018-08:00" }, { "operation": "add_edge", - "rtt_ns": 981297, - "rtt_ms": 0.981297, + "rtt_ns": 1436583, + "rtt_ms": 1.436583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.874932685Z" + "vertex_to": "61", + "timestamp": "2025-11-27T04:01:49.304064-08:00" }, { "operation": "add_edge", - "rtt_ns": 860377, - "rtt_ms": 0.860377, + "rtt_ns": 1951541, + "rtt_ms": 1.951541, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:50.874983205Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.30412-08:00" }, { "operation": "add_edge", - "rtt_ns": 838807, - "rtt_ms": 0.838807, + "rtt_ns": 1512333, + "rtt_ms": 1.512333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.875074194Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:49.304168-08:00" }, { "operation": "add_edge", - "rtt_ns": 790607, - "rtt_ms": 0.790607, + "rtt_ns": 1560500, + "rtt_ms": 1.5605, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:50.875105564Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:49.30505-08:00" }, { "operation": "add_edge", - "rtt_ns": 836437, - "rtt_ms": 0.836437, + "rtt_ns": 1323250, + "rtt_ms": 1.32325, "checkpoint": 0, "vertex_from": "32", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.875191064Z" + "timestamp": "2025-11-27T04:01:49.305148-08:00" }, { "operation": "add_edge", - "rtt_ns": 703918, - "rtt_ms": 0.703918, + "rtt_ns": 1721375, + "rtt_ms": 1.721375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.875279614Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:49.305232-08:00" }, { "operation": "add_edge", - "rtt_ns": 814718, - "rtt_ms": 0.814718, + "rtt_ns": 1285208, + "rtt_ms": 1.285208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.875282384Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:49.305282-08:00" }, { "operation": "add_edge", - "rtt_ns": 686698, - "rtt_ms": 0.686698, + "rtt_ns": 1450458, + "rtt_ms": 1.450458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:50.875324164Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.305326-08:00" }, { "operation": "add_edge", - "rtt_ns": 704837, - "rtt_ms": 0.704837, + "rtt_ns": 1354333, + "rtt_ms": 1.354333, "checkpoint": 0, "vertex_from": "32", "vertex_to": "408", - "timestamp": "2025-11-27T01:21:50.875355403Z" + "timestamp": "2025-11-27T04:01:49.305375-08:00" }, { "operation": "add_edge", - "rtt_ns": 687878, - "rtt_ms": 0.687878, + "rtt_ns": 1344833, + "rtt_ms": 1.344833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "33", - "timestamp": "2025-11-27T01:21:50.875547773Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:49.305472-08:00" }, { "operation": "add_edge", - "rtt_ns": 576668, - "rtt_ms": 0.576668, + "rtt_ns": 1400542, + "rtt_ms": 1.400542, "checkpoint": 0, "vertex_from": "32", "vertex_to": "904", - "timestamp": "2025-11-27T01:21:50.875561123Z" + "timestamp": "2025-11-27T04:01:49.30557-08:00" }, { "operation": "add_edge", - "rtt_ns": 647028, - "rtt_ms": 0.647028, + "rtt_ns": 1567375, + "rtt_ms": 1.567375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:50.875580703Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:49.305583-08:00" }, { "operation": "add_edge", - "rtt_ns": 564598, - "rtt_ms": 0.564598, + "rtt_ns": 1644791, + "rtt_ms": 1.644791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:50.875670852Z" + "vertex_to": "33", + "timestamp": "2025-11-27T04:01:49.30571-08:00" }, { "operation": "add_edge", - "rtt_ns": 659008, - "rtt_ms": 0.659008, + "rtt_ns": 1216042, + "rtt_ms": 1.216042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:50.875734502Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:49.306592-08:00" }, { "operation": "add_edge", - "rtt_ns": 684378, - "rtt_ms": 0.684378, + "rtt_ns": 1368875, + "rtt_ms": 1.368875, "checkpoint": 0, "vertex_from": "32", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.875876092Z" + "timestamp": "2025-11-27T04:01:49.306601-08:00" }, { "operation": "add_edge", - "rtt_ns": 926657, - "rtt_ms": 0.926657, + "rtt_ns": 1564708, + "rtt_ms": 1.564708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:50.87650897Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:49.306616-08:00" }, { "operation": "add_edge", - "rtt_ns": 895718, - "rtt_ms": 0.895718, + "rtt_ns": 1357208, + "rtt_ms": 1.357208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.87656777Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:49.30664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305055, - "rtt_ms": 1.305055, + "rtt_ns": 1513333, + "rtt_ms": 1.513333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:50.876585559Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:49.306663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310145, - "rtt_ms": 1.310145, + "rtt_ns": 1431458, + "rtt_ms": 1.431458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "73", - "timestamp": "2025-11-27T01:21:50.876593829Z" + "timestamp": "2025-11-27T04:01:49.306758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046176, - "rtt_ms": 1.046176, + "rtt_ns": 1400500, + "rtt_ms": 1.4005, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.876608189Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.306873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289495, - "rtt_ms": 1.289495, + "rtt_ns": 1469708, + "rtt_ms": 1.469708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:50.876614769Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:49.30718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274916, - "rtt_ms": 1.274916, + "rtt_ns": 1670125, + "rtt_ms": 1.670125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.876632429Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.307254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105096, - "rtt_ms": 1.105096, + "rtt_ns": 1866917, + "rtt_ms": 1.866917, "checkpoint": 0, "vertex_from": "32", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.876654319Z" + "timestamp": "2025-11-27T04:01:49.307437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609145, - "rtt_ms": 1.609145, + "rtt_ns": 1128042, + "rtt_ms": 1.128042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.877344377Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:49.308002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603395, - "rtt_ms": 1.603395, + "rtt_ns": 1502750, + "rtt_ms": 1.50275, "checkpoint": 0, "vertex_from": "32", "vertex_to": "37", - "timestamp": "2025-11-27T01:21:50.877480487Z" - }, - { - "operation": "add_edge", - "rtt_ns": 984147, - "rtt_ms": 0.984147, - "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:50.877494217Z" + "timestamp": "2025-11-27T04:01:49.30812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115647, - "rtt_ms": 1.115647, + "rtt_ns": 1673792, + "rtt_ms": 1.673792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.877702556Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.308268-08:00" }, { "operation": "add_edge", - "rtt_ns": 2172153, - "rtt_ms": 2.172153, + "rtt_ns": 1734083, + "rtt_ms": 1.734083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:50.878789172Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:49.308375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267972, - "rtt_ms": 2.267972, + "rtt_ns": 1742709, + "rtt_ms": 1.742709, "checkpoint": 0, "vertex_from": "32", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.878836842Z" + "timestamp": "2025-11-27T04:01:49.308406-08:00" }, { "operation": "add_edge", - "rtt_ns": 2598672, - "rtt_ms": 2.598672, + "rtt_ns": 1823667, + "rtt_ms": 1.823667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:50.879207501Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2785462, - "rtt_ms": 2.785462, - "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:50.879380201Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.308426-08:00" }, { "operation": "add_edge", - "rtt_ns": 2871331, - "rtt_ms": 2.871331, + "rtt_ns": 1682875, + "rtt_ms": 1.682875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.87950452Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:49.308442-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130563, - "rtt_ms": 2.130563, + "rtt_ns": 1414125, + "rtt_ms": 1.414125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "124", - "timestamp": "2025-11-27T01:21:50.87961312Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:49.308596-08:00" }, { "operation": "add_edge", - "rtt_ns": 2658041, - "rtt_ms": 2.658041, + "rtt_ns": 1878791, + "rtt_ms": 1.878791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "115", - "timestamp": "2025-11-27T01:21:50.880361657Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:49.309133-08:00" }, { "operation": "add_edge", - "rtt_ns": 2946770, - "rtt_ms": 2.94677, + "rtt_ns": 1933875, + "rtt_ms": 1.933875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:50.880441937Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.309372-08:00" }, { "operation": "add_edge", - "rtt_ns": 3823908, - "rtt_ms": 3.823908, + "rtt_ns": 1765209, + "rtt_ms": 1.765209, "checkpoint": 0, "vertex_from": "32", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.880479547Z" + "timestamp": "2025-11-27T04:01:49.309768-08:00" }, { "operation": "add_edge", - "rtt_ns": 3161010, - "rtt_ms": 3.16101, + "rtt_ns": 1855458, + "rtt_ms": 1.855458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "457", - "timestamp": "2025-11-27T01:21:50.880506537Z" + "timestamp": "2025-11-27T04:01:49.309978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740615, - "rtt_ms": 1.740615, + "rtt_ns": 1889333, + "rtt_ms": 1.889333, "checkpoint": 0, "vertex_from": "32", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:50.880531737Z" + "timestamp": "2025-11-27T04:01:49.310317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734295, - "rtt_ms": 1.734295, + "rtt_ns": 1988041, + "rtt_ms": 1.988041, "checkpoint": 0, "vertex_from": "32", "vertex_to": "804", - "timestamp": "2025-11-27T01:21:50.880572517Z" + "timestamp": "2025-11-27T04:01:49.310431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435675, - "rtt_ms": 1.435675, + "rtt_ns": 1836958, + "rtt_ms": 1.836958, "checkpoint": 0, "vertex_from": "32", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:50.880643886Z" + "timestamp": "2025-11-27T04:01:49.310434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272795, - "rtt_ms": 1.272795, + "rtt_ns": 2078250, + "rtt_ms": 2.07825, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.880654416Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:49.310455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108446, - "rtt_ms": 1.108446, + "rtt_ns": 2232958, + "rtt_ms": 2.232958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:50.880723336Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:01:49.310503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691555, - "rtt_ms": 1.691555, + "rtt_ns": 1217084, + "rtt_ms": 1.217084, "checkpoint": 0, "vertex_from": "32", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:50.881197065Z" + "timestamp": "2025-11-27T04:01:49.31059-08:00" }, { "operation": "add_edge", - "rtt_ns": 995137, - "rtt_ms": 0.995137, + "rtt_ns": 2199792, + "rtt_ms": 2.199792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:50.881438354Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:01:49.310607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105807, - "rtt_ms": 1.105807, + "rtt_ns": 1533042, + "rtt_ms": 1.533042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.881468464Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.310668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537664, - "rtt_ms": 1.537664, + "rtt_ns": 1800208, + "rtt_ms": 1.800208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.882112021Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:49.311576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623524, - "rtt_ms": 1.623524, + "rtt_ns": 1701709, + "rtt_ms": 1.701709, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.882155991Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:49.31168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749894, - "rtt_ms": 1.749894, + "rtt_ns": 1292791, + "rtt_ms": 1.292791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:50.882230731Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.311749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047686, - "rtt_ms": 1.047686, + "rtt_ns": 1675416, + "rtt_ms": 1.675416, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:50.882246851Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:49.311994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636605, - "rtt_ms": 1.636605, + "rtt_ns": 1500958, + "rtt_ms": 1.500958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "77", - "timestamp": "2025-11-27T01:21:50.882281821Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:49.312005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805804, - "rtt_ms": 1.805804, + "rtt_ns": 1445708, + "rtt_ms": 1.445708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "662", - "timestamp": "2025-11-27T01:21:50.882313641Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:01:49.312037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662805, - "rtt_ms": 1.662805, + "rtt_ns": 1710916, + "rtt_ms": 1.710916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "626", - "timestamp": "2025-11-27T01:21:50.882318101Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:49.312145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632255, - "rtt_ms": 1.632255, + "rtt_ns": 1527167, + "rtt_ms": 1.527167, "checkpoint": 0, "vertex_from": "32", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.882356381Z" + "timestamp": "2025-11-27T04:01:49.312196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187936, - "rtt_ms": 1.187936, + "rtt_ns": 1605792, + "rtt_ms": 1.605792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:50.88265844Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:01:49.312213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258516, - "rtt_ms": 1.258516, + "rtt_ns": 1837125, + "rtt_ms": 1.837125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:50.88269807Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:49.312273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058687, - "rtt_ms": 1.058687, + "rtt_ns": 1204125, + "rtt_ms": 1.204125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.883215428Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:49.312954-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1056626, - "rtt_ms": 1.056626, + "operation": "add_edge", + "rtt_ns": 1642916, + "rtt_ms": 1.642916, "checkpoint": 0, - "vertex_from": "372", - "timestamp": "2025-11-27T01:21:50.883375277Z" + "vertex_from": "32", + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:49.313221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057516, - "rtt_ms": 1.057516, + "rtt_ns": 1625000, + "rtt_ms": 1.625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:50.883415327Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:49.313307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314946, - "rtt_ms": 1.314946, + "rtt_ns": 2056625, + "rtt_ms": 2.056625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.883428237Z" + "timestamp": "2025-11-27T04:01:49.314053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225956, - "rtt_ms": 1.225956, + "rtt_ns": 1912666, + "rtt_ms": 1.912666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.883458397Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:49.314058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299396, - "rtt_ms": 1.299396, + "rtt_ns": 1797208, + "rtt_ms": 1.797208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:50.883582267Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:49.31407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711624, - "rtt_ms": 1.711624, + "rtt_ns": 2033791, + "rtt_ms": 2.033791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:50.884030505Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.314071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798034, - "rtt_ms": 1.798034, + "rtt_ns": 2248292, + "rtt_ms": 2.248292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.884046015Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.314254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442665, - "rtt_ms": 1.442665, + "rtt_ns": 2125750, + "rtt_ms": 2.12575, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:50.884102265Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:49.314322-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1458495, - "rtt_ms": 1.458495, + "operation": "add_vertex", + "rtt_ns": 2138625, + "rtt_ms": 2.138625, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:50.884157455Z" + "vertex_from": "372", + "timestamp": "2025-11-27T04:01:49.314353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561625, - "rtt_ms": 1.561625, + "rtt_ns": 2187417, + "rtt_ms": 2.187417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:50.884777693Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:49.315142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303235, - "rtt_ms": 1.303235, + "rtt_ns": 1842083, + "rtt_ms": 1.842083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:50.884886652Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:49.31515-08:00" }, { "operation": "add_edge", - "rtt_ns": 832257, - "rtt_ms": 0.832257, + "rtt_ns": 1276459, + "rtt_ms": 1.276459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:50.884935532Z" + "vertex_to": "372", + "timestamp": "2025-11-27T04:01:49.31563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543575, - "rtt_ms": 1.543575, + "rtt_ns": 1667750, + "rtt_ms": 1.66775, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:50.885002802Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:49.315722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489915, - "rtt_ms": 1.489915, + "rtt_ns": 1651334, + "rtt_ms": 1.651334, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:50.88553703Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:49.315723-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135873, - "rtt_ms": 2.135873, + "rtt_ns": 1471625, + "rtt_ms": 1.471625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:50.88555224Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:49.315729-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185793, - "rtt_ms": 2.185793, + "rtt_ns": 1667875, + "rtt_ms": 1.667875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "372", - "timestamp": "2025-11-27T01:21:50.88556152Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:49.31574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581955, - "rtt_ms": 1.581955, + "rtt_ns": 2521959, + "rtt_ms": 2.521959, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:50.88561338Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:49.315745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464935, - "rtt_ms": 1.464935, + "rtt_ns": 1914250, + "rtt_ms": 1.91425, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:50.88562329Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:49.315974-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294373, - "rtt_ms": 2.294373, + "rtt_ns": 1661792, + "rtt_ms": 1.661792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:50.88572378Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:49.315985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539666, - "rtt_ms": 1.539666, + "rtt_ns": 2035125, + "rtt_ms": 2.035125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:50.886427368Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:49.317187-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1521505, - "rtt_ms": 1.521505, + "operation": "add_vertex", + "rtt_ns": 1438917, + "rtt_ms": 1.438917, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.886458207Z" + "vertex_from": "994", + "timestamp": "2025-11-27T04:01:49.31719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755144, - "rtt_ms": 1.755144, + "rtt_ns": 2062875, + "rtt_ms": 2.062875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.886533627Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:49.317208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693305, - "rtt_ms": 1.693305, + "rtt_ns": 1536583, + "rtt_ms": 1.536583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:50.886697247Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.317266-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1173247, - "rtt_ms": 1.173247, + "operation": "add_edge", + "rtt_ns": 1866750, + "rtt_ms": 1.86675, "checkpoint": 0, - "vertex_from": "994", - "timestamp": "2025-11-27T01:21:50.886712127Z" + "vertex_from": "32", + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:49.317498-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284073, - "rtt_ms": 2.284073, + "rtt_ns": 1916459, + "rtt_ms": 1.916459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "730", - "timestamp": "2025-11-27T01:21:50.887837733Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:49.31764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2868991, - "rtt_ms": 2.868991, + "rtt_ns": 1982667, + "rtt_ms": 1.982667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:50.888484501Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:49.317705-08:00" }, { "operation": "add_edge", - "rtt_ns": 2946921, - "rtt_ms": 2.946921, + "rtt_ns": 1747792, + "rtt_ms": 1.747792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:50.888571151Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:01:49.317723-08:00" }, { "operation": "add_edge", - "rtt_ns": 3041240, - "rtt_ms": 3.04124, + "rtt_ns": 2124959, + "rtt_ms": 2.124959, "checkpoint": 0, "vertex_from": "32", "vertex_to": "56", - "timestamp": "2025-11-27T01:21:50.88860352Z" + "timestamp": "2025-11-27T04:01:49.318111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976463, - "rtt_ms": 1.976463, + "rtt_ns": 2386500, + "rtt_ms": 2.3865, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.88867485Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:49.318127-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142713, - "rtt_ms": 2.142713, + "rtt_ns": 1537542, + "rtt_ms": 1.537542, "checkpoint": 0, "vertex_from": "32", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.88867834Z" + "timestamp": "2025-11-27T04:01:49.319244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988773, - "rtt_ms": 1.988773, + "rtt_ns": 2304458, + "rtt_ms": 2.304458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "994", - "timestamp": "2025-11-27T01:21:50.88870117Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:49.319492-08:00" }, { "operation": "add_edge", - "rtt_ns": 2363013, - "rtt_ms": 2.363013, + "rtt_ns": 2302042, + "rtt_ms": 2.302042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:50.8888258Z" + "vertex_to": "994", + "timestamp": "2025-11-27T04:01:49.319493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2463902, - "rtt_ms": 2.463902, + "rtt_ns": 1927041, + "rtt_ms": 1.927041, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.888893389Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:49.319568-08:00" }, { "operation": "add_edge", - "rtt_ns": 3167329, - "rtt_ms": 3.167329, + "rtt_ns": 2544709, + "rtt_ms": 2.544709, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:50.888893629Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:49.319754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063046, - "rtt_ms": 1.063046, + "rtt_ns": 2046916, + "rtt_ms": 2.046916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:50.888902639Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.31977-08:00" }, { "operation": "add_edge", - "rtt_ns": 617778, - "rtt_ms": 0.617778, + "rtt_ns": 1683792, + "rtt_ms": 1.683792, "checkpoint": 0, "vertex_from": "32", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.889103309Z" + "timestamp": "2025-11-27T04:01:49.319812-08:00" }, { "operation": "add_edge", - "rtt_ns": 831487, - "rtt_ms": 0.831487, + "rtt_ns": 2315916, + "rtt_ms": 2.315916, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.889404698Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.319815-08:00" }, { "operation": "add_edge", - "rtt_ns": 833118, - "rtt_ms": 0.833118, + "rtt_ns": 2575834, + "rtt_ms": 2.575834, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:50.889437588Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:49.319844-08:00" }, { "operation": "add_edge", - "rtt_ns": 682027, - "rtt_ms": 0.682027, + "rtt_ns": 1769542, + "rtt_ms": 1.769542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "791", - "timestamp": "2025-11-27T01:21:50.889510357Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:49.319881-08:00" }, { "operation": "add_edge", - "rtt_ns": 839497, - "rtt_ms": 0.839497, + "rtt_ns": 1305209, + "rtt_ms": 1.305209, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:50.889519047Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:49.321123-08:00" }, { "operation": "add_edge", - "rtt_ns": 857707, - "rtt_ms": 0.857707, + "rtt_ns": 1567042, + "rtt_ms": 1.567042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.889533397Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:49.321136-08:00" }, { "operation": "add_edge", - "rtt_ns": 857347, - "rtt_ms": 0.857347, + "rtt_ns": 1474208, + "rtt_ms": 1.474208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:50.889559627Z" + "vertex_to": "791", + "timestamp": "2025-11-27T04:01:49.321245-08:00" }, { "operation": "add_edge", - "rtt_ns": 752098, - "rtt_ms": 0.752098, + "rtt_ns": 1450542, + "rtt_ms": 1.450542, "checkpoint": 0, "vertex_from": "32", "vertex_to": "668", - "timestamp": "2025-11-27T01:21:50.889646527Z" + "timestamp": "2025-11-27T04:01:49.321263-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1103046, - "rtt_ms": 1.103046, + "operation": "add_edge", + "rtt_ns": 1797833, + "rtt_ms": 1.797833, "checkpoint": 0, - "vertex_from": "159", - "timestamp": "2025-11-27T01:21:50.890209855Z" + "vertex_from": "32", + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:49.321292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425506, - "rtt_ms": 1.425506, + "rtt_ns": 1488250, + "rtt_ms": 1.48825, "checkpoint": 0, "vertex_from": "32", "vertex_to": "965", - "timestamp": "2025-11-27T01:21:50.890329555Z" + "timestamp": "2025-11-27T04:01:49.321334-08:00" }, { "operation": "add_edge", - "rtt_ns": 923707, - "rtt_ms": 0.923707, + "rtt_ns": 1905375, + "rtt_ms": 1.905375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:50.890329785Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:49.321399-08:00" }, { "operation": "add_edge", - "rtt_ns": 905027, - "rtt_ms": 0.905027, + "rtt_ns": 2178083, + "rtt_ms": 2.178083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:50.890343905Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:49.321425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457806, - "rtt_ms": 1.457806, + "rtt_ns": 1698208, + "rtt_ms": 1.698208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:50.890353935Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:49.321453-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1573833, + "rtt_ms": 1.573833, + "checkpoint": 0, + "vertex_from": "159", + "timestamp": "2025-11-27T04:01:49.321456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527895, - "rtt_ms": 1.527895, + "rtt_ns": 1330333, + "rtt_ms": 1.330333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.891061982Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:49.322576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519475, - "rtt_ms": 1.519475, + "rtt_ns": 1309583, + "rtt_ms": 1.309583, "checkpoint": 0, "vertex_from": "32", "vertex_to": "299", - "timestamp": "2025-11-27T01:21:50.891080322Z" + "timestamp": "2025-11-27T04:01:49.322646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579445, - "rtt_ms": 1.579445, + "rtt_ns": 1421625, + "rtt_ms": 1.421625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "153", - "timestamp": "2025-11-27T01:21:50.891100212Z" + "timestamp": "2025-11-27T04:01:49.322686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602855, - "rtt_ms": 1.602855, + "rtt_ns": 1327209, + "rtt_ms": 1.327209, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.891114022Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:49.322727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762614, - "rtt_ms": 1.762614, + "rtt_ns": 1398625, + "rtt_ms": 1.398625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.891409981Z" + "vertex_to": "159", + "timestamp": "2025-11-27T04:01:49.322855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762124, - "rtt_ms": 1.762124, + "rtt_ns": 1442375, + "rtt_ms": 1.442375, "checkpoint": 0, "vertex_from": "32", "vertex_to": "586", - "timestamp": "2025-11-27T01:21:50.892093379Z" + "timestamp": "2025-11-27T04:01:49.322868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762614, - "rtt_ms": 1.762614, + "rtt_ns": 1419542, + "rtt_ms": 1.419542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "940", - "timestamp": "2025-11-27T01:21:50.892117819Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:49.322874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943574, - "rtt_ms": 1.943574, + "rtt_ns": 1740875, + "rtt_ms": 1.740875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "159", - "timestamp": "2025-11-27T01:21:50.892153909Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.323033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948423, - "rtt_ms": 1.948423, + "rtt_ns": 1906000, + "rtt_ms": 1.906, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.892279498Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:49.323043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211996, - "rtt_ms": 1.211996, + "rtt_ns": 1936250, + "rtt_ms": 1.93625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:50.892293428Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:49.32306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961323, - "rtt_ms": 1.961323, + "rtt_ns": 1086458, + "rtt_ms": 1.086458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "281", - "timestamp": "2025-11-27T01:21:50.892307008Z" + "timestamp": "2025-11-27T04:01:49.323664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210496, - "rtt_ms": 1.210496, + "rtt_ns": 979083, + "rtt_ms": 0.979083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.892312098Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:49.323707-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1608250, + "rtt_ms": 1.60825, + "checkpoint": 0, + "vertex_from": "32", + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:49.324296-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1197856, - "rtt_ms": 1.197856, + "rtt_ns": 1633166, + "rtt_ms": 1.633166, "checkpoint": 0, "vertex_from": "981", - "timestamp": "2025-11-27T01:21:50.892315798Z" + "timestamp": "2025-11-27T04:01:49.324504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886854, - "rtt_ms": 1.886854, + "rtt_ns": 1704208, + "rtt_ms": 1.704208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.892949776Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:49.324561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617545, - "rtt_ms": 1.617545, + "rtt_ns": 1751833, + "rtt_ms": 1.751833, "checkpoint": 0, "vertex_from": "32", "vertex_to": "553", - "timestamp": "2025-11-27T01:21:50.893028986Z" + "timestamp": "2025-11-27T04:01:49.324626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987993, - "rtt_ms": 1.987993, + "rtt_ns": 2003250, + "rtt_ms": 2.00325, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.894106822Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:01:49.324652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132503, - "rtt_ms": 2.132503, + "rtt_ns": 1634458, + "rtt_ms": 1.634458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.894227092Z" + "timestamp": "2025-11-27T04:01:49.32467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2061804, - "rtt_ms": 2.061804, + "rtt_ns": 1704958, + "rtt_ms": 1.704958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "981", - "timestamp": "2025-11-27T01:21:50.894378242Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:49.324766-08:00" }, { "operation": "add_edge", - "rtt_ns": 2221093, - "rtt_ms": 2.221093, + "rtt_ns": 1737792, + "rtt_ms": 1.737792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:50.894501471Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:49.324782-08:00" }, { "operation": "add_edge", - "rtt_ns": 2399233, - "rtt_ms": 2.399233, + "rtt_ns": 2056208, + "rtt_ms": 2.056208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:50.894693851Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:49.325721-08:00" }, { "operation": "add_edge", - "rtt_ns": 3022041, - "rtt_ms": 3.022041, + "rtt_ns": 1538334, + "rtt_ms": 1.538334, "checkpoint": 0, "vertex_from": "32", "vertex_to": "79", - "timestamp": "2025-11-27T01:21:50.895330599Z" + "timestamp": "2025-11-27T04:01:49.325837-08:00" }, { "operation": "add_edge", - "rtt_ns": 2424922, - "rtt_ms": 2.424922, + "rtt_ns": 1195458, + "rtt_ms": 1.195458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:50.895376098Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:49.32585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2385242, - "rtt_ms": 2.385242, + "rtt_ns": 1543584, + "rtt_ms": 1.543584, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:50.895415568Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:49.326171-08:00" }, { "operation": "add_edge", - "rtt_ns": 3130780, - "rtt_ms": 3.13078, + "rtt_ns": 1502750, + "rtt_ms": 1.50275, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:50.895444328Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:49.326285-08:00" }, { "operation": "add_edge", - "rtt_ns": 3311279, - "rtt_ms": 3.311279, + "rtt_ns": 1741166, + "rtt_ms": 1.741166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:50.895467558Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:49.326303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373216, - "rtt_ms": 1.373216, + "rtt_ns": 1707625, + "rtt_ms": 1.707625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.895482238Z" + "timestamp": "2025-11-27T04:01:49.326379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306466, - "rtt_ms": 1.306466, + "rtt_ns": 1006333, + "rtt_ms": 1.006333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.895534878Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:49.326851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419445, - "rtt_ms": 1.419445, + "rtt_ns": 2113333, + "rtt_ms": 2.113333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:50.896114526Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.32688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815694, - "rtt_ms": 1.815694, + "rtt_ns": 835084, + "rtt_ms": 0.835084, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "868", - "timestamp": "2025-11-27T01:21:50.896195476Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:49.327216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863324, - "rtt_ms": 1.863324, + "rtt_ns": 1517125, + "rtt_ms": 1.517125, "checkpoint": 0, "vertex_from": "32", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.896365875Z" + "timestamp": "2025-11-27T04:01:49.327239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568295, - "rtt_ms": 1.568295, + "rtt_ns": 3708708, + "rtt_ms": 3.708708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "334", - "timestamp": "2025-11-27T01:21:50.897036713Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:49.327417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718095, - "rtt_ms": 1.718095, + "rtt_ns": 2946667, + "rtt_ms": 2.946667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "279", - "timestamp": "2025-11-27T01:21:50.897095443Z" + "vertex_to": "981", + "timestamp": "2025-11-27T04:01:49.327451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701155, - "rtt_ms": 1.701155, + "rtt_ns": 1273083, + "rtt_ms": 1.273083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:50.897117843Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:49.327577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790564, - "rtt_ms": 1.790564, + "rtt_ns": 1326959, + "rtt_ms": 1.326959, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.897123363Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:49.327614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682095, - "rtt_ms": 1.682095, + "rtt_ns": 1479250, + "rtt_ms": 1.47925, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.897128423Z" + "vertex_to": "279", + "timestamp": "2025-11-27T04:01:49.327653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625034, - "rtt_ms": 1.625034, + "rtt_ns": 1043792, + "rtt_ms": 1.043792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:50.897161502Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:01:49.327895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724794, - "rtt_ms": 1.724794, + "rtt_ns": 2018500, + "rtt_ms": 2.0185, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "60", - "timestamp": "2025-11-27T01:21:50.897208172Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:49.328899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874994, - "rtt_ms": 1.874994, + "rtt_ns": 1696917, + "rtt_ms": 1.696917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.89799155Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:49.328936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947493, - "rtt_ms": 1.947493, + "rtt_ns": 1286583, + "rtt_ms": 1.286583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:50.898144089Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:49.328941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052636, - "rtt_ms": 1.052636, + "rtt_ns": 1750958, + "rtt_ms": 1.750958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:50.898171439Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:49.328968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072076, - "rtt_ms": 1.072076, + "rtt_ns": 1572042, + "rtt_ms": 1.572042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "286", - "timestamp": "2025-11-27T01:21:50.898202569Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:49.329026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086486, - "rtt_ms": 1.086486, + "rtt_ns": 1477541, + "rtt_ms": 1.477541, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:50.898211539Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:49.329093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151746, - "rtt_ms": 1.151746, + "rtt_ns": 3311000, + "rtt_ms": 3.311, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:50.898248259Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:49.329162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119977, - "rtt_ms": 1.119977, + "rtt_ns": 1818458, + "rtt_ms": 1.818458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "422", - "timestamp": "2025-11-27T01:21:50.898283639Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:49.329236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280926, - "rtt_ms": 1.280926, + "rtt_ns": 1699541, + "rtt_ms": 1.699541, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.898319549Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:49.329279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025663, - "rtt_ms": 2.025663, + "rtt_ns": 1466458, + "rtt_ms": 1.466458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:50.898393578Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:01:49.329363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624875, - "rtt_ms": 1.624875, + "rtt_ns": 1090250, + "rtt_ms": 1.09025, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "936", - "timestamp": "2025-11-27T01:21:50.898834587Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:49.330117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274996, - "rtt_ms": 1.274996, + "rtt_ns": 1375416, + "rtt_ms": 1.375416, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:50.899420355Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.330318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317586, - "rtt_ms": 1.317586, + "rtt_ns": 1574792, + "rtt_ms": 1.574792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "541", - "timestamp": "2025-11-27T01:21:50.899524505Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:01:49.330476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757994, - "rtt_ms": 1.757994, + "rtt_ns": 1332542, + "rtt_ms": 1.332542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:50.899930613Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:49.330495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742084, - "rtt_ms": 1.742084, + "rtt_ns": 1563459, + "rtt_ms": 1.563459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.900062583Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:49.330533-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118163, - "rtt_ms": 2.118163, + "rtt_ns": 1538417, + "rtt_ms": 1.538417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.900111583Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:01:49.330632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874274, - "rtt_ms": 1.874274, + "rtt_ns": 1705459, + "rtt_ms": 1.705459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "440", - "timestamp": "2025-11-27T01:21:50.900124393Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:49.330643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758754, - "rtt_ms": 1.758754, + "rtt_ns": 1570625, + "rtt_ms": 1.570625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.900153602Z" + "vertex_to": "440", + "timestamp": "2025-11-27T04:01:49.330809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880493, - "rtt_ms": 1.880493, + "rtt_ns": 1592209, + "rtt_ms": 1.592209, "checkpoint": 0, "vertex_from": "32", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:50.900165832Z" + "timestamp": "2025-11-27T04:01:49.330872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059063, - "rtt_ms": 2.059063, + "rtt_ns": 1605750, + "rtt_ms": 1.60575, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:50.900272702Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.33097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564635, - "rtt_ms": 1.564635, + "rtt_ns": 1266625, + "rtt_ms": 1.266625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "602", - "timestamp": "2025-11-27T01:21:50.900400012Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:49.331763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632985, - "rtt_ms": 1.632985, + "rtt_ns": 1646833, + "rtt_ms": 1.646833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "211", - "timestamp": "2025-11-27T01:21:50.90105456Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:01:49.331965-08:00" }, { "operation": "add_edge", - "rtt_ns": 985356, - "rtt_ms": 0.985356, + "rtt_ns": 1412292, + "rtt_ms": 1.412292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:50.901110699Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:49.332048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288736, - "rtt_ms": 1.288736, + "rtt_ns": 1993708, + "rtt_ms": 1.993708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "542", - "timestamp": "2025-11-27T01:21:50.901220539Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:49.332112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296976, - "rtt_ms": 1.296976, + "rtt_ns": 1475584, + "rtt_ms": 1.475584, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.901360779Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:01:49.332348-08:00" }, { "operation": "add_edge", - "rtt_ns": 2223782, - "rtt_ms": 2.223782, + "rtt_ns": 1866250, + "rtt_ms": 1.86625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.901749837Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:49.3324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724754, - "rtt_ms": 1.724754, + "rtt_ns": 1796083, + "rtt_ms": 1.796083, "checkpoint": 0, "vertex_from": "32", "vertex_to": "391", - "timestamp": "2025-11-27T01:21:50.901837547Z" + "timestamp": "2025-11-27T04:01:49.332441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739735, - "rtt_ms": 1.739735, + "rtt_ns": 1482084, + "rtt_ms": 1.482084, "checkpoint": 0, "vertex_from": "32", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.901906237Z" + "timestamp": "2025-11-27T04:01:49.332453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759405, - "rtt_ms": 1.759405, + "rtt_ns": 2090084, + "rtt_ms": 2.090084, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "826", - "timestamp": "2025-11-27T01:21:50.901914057Z" + "vertex_to": "211", + "timestamp": "2025-11-27T04:01:49.332567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655125, - "rtt_ms": 1.655125, + "rtt_ns": 1826166, + "rtt_ms": 1.826166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:50.901928927Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:49.332636-08:00" }, { "operation": "add_edge", - "rtt_ns": 955907, - "rtt_ms": 0.955907, + "rtt_ns": 1348541, + "rtt_ms": 1.348541, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:50.902011357Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:49.333114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293346, - "rtt_ms": 1.293346, + "rtt_ns": 1532417, + "rtt_ms": 1.532417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "185", - "timestamp": "2025-11-27T01:21:50.902655755Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:49.333646-08:00" }, { "operation": "add_edge", - "rtt_ns": 2296432, - "rtt_ms": 2.296432, + "rtt_ns": 1766125, + "rtt_ms": 1.766125, "checkpoint": 0, "vertex_from": "32", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.902697484Z" + "timestamp": "2025-11-27T04:01:49.333732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592255, - "rtt_ms": 1.592255, + "rtt_ns": 1794166, + "rtt_ms": 1.794166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:50.902704064Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:49.333844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513115, - "rtt_ms": 1.513115, + "rtt_ns": 1361583, + "rtt_ms": 1.361583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.902734884Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:49.333929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007587, - "rtt_ms": 1.007587, + "rtt_ns": 1752041, + "rtt_ms": 1.752041, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.902758864Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:49.334102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180233, - "rtt_ms": 2.180233, + "rtt_ns": 1767667, + "rtt_ms": 1.767667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:50.90401974Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:49.334209-08:00" }, { "operation": "add_edge", - "rtt_ns": 2803691, - "rtt_ms": 2.803691, + "rtt_ns": 1889333, + "rtt_ms": 1.889333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:50.904710908Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:49.334343-08:00" }, { "operation": "add_edge", - "rtt_ns": 2810460, - "rtt_ms": 2.81046, + "rtt_ns": 2017875, + "rtt_ms": 2.017875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:50.904823037Z" + "vertex_to": "185", + "timestamp": "2025-11-27T04:01:49.334419-08:00" }, { "operation": "add_edge", - "rtt_ns": 2930370, - "rtt_ms": 2.93037, + "rtt_ns": 1898208, + "rtt_ms": 1.898208, "checkpoint": 0, "vertex_from": "32", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.904845787Z" + "timestamp": "2025-11-27T04:01:49.334536-08:00" }, { "operation": "add_edge", - "rtt_ns": 2978450, - "rtt_ms": 2.97845, + "rtt_ns": 2080958, + "rtt_ms": 2.080958, "checkpoint": 0, "vertex_from": "32", "vertex_to": "521", - "timestamp": "2025-11-27T01:21:50.904908407Z" + "timestamp": "2025-11-27T04:01:49.335196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257872, - "rtt_ms": 2.257872, + "rtt_ns": 1555041, + "rtt_ms": 1.555041, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:50.904915697Z" + "vertex_to": "363", + "timestamp": "2025-11-27T04:01:49.335401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2304453, - "rtt_ms": 2.304453, + "rtt_ns": 1725208, + "rtt_ms": 1.725208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "363", - "timestamp": "2025-11-27T01:21:50.905003347Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:49.335459-08:00" }, { "operation": "add_edge", - "rtt_ns": 2299243, - "rtt_ms": 2.299243, + "rtt_ns": 1403708, + "rtt_ms": 1.403708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "597", - "timestamp": "2025-11-27T01:21:50.905040427Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:49.335614-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317673, - "rtt_ms": 2.317673, + "rtt_ns": 2050666, + "rtt_ms": 2.050666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:50.905077867Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:49.3357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108646, - "rtt_ms": 1.108646, + "rtt_ns": 1295208, + "rtt_ms": 1.295208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:50.905131056Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:01:49.335715-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2456802, - "rtt_ms": 2.456802, + "rtt_ns": 1828875, + "rtt_ms": 1.828875, "checkpoint": 0, "vertex_from": "845", - "timestamp": "2025-11-27T01:21:50.905162616Z" + "timestamp": "2025-11-27T04:01:49.335761-08:00" }, { "operation": "add_edge", - "rtt_ns": 661898, - "rtt_ms": 0.661898, + "rtt_ns": 1469042, + "rtt_ms": 1.469042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "684", - "timestamp": "2025-11-27T01:21:50.905375016Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:49.335813-08:00" }, { "operation": "add_edge", - "rtt_ns": 609388, - "rtt_ms": 0.609388, + "rtt_ns": 1727583, + "rtt_ms": 1.727583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.905458225Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:01:49.335831-08:00" }, { "operation": "add_edge", - "rtt_ns": 654808, - "rtt_ms": 0.654808, + "rtt_ns": 1396958, + "rtt_ms": 1.396958, "checkpoint": 0, "vertex_from": "32", "vertex_to": "356", - "timestamp": "2025-11-27T01:21:50.905479565Z" + "timestamp": "2025-11-27T04:01:49.335934-08:00" }, { "operation": "add_edge", - "rtt_ns": 755738, - "rtt_ms": 0.755738, + "rtt_ns": 2241333, + "rtt_ms": 2.241333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:50.905665785Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:49.337438-08:00" }, { "operation": "add_edge", - "rtt_ns": 777248, - "rtt_ms": 0.777248, + "rtt_ns": 1990333, + "rtt_ms": 1.990333, "checkpoint": 0, "vertex_from": "32", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:50.905695495Z" + "timestamp": "2025-11-27T04:01:49.33745-08:00" }, { "operation": "add_edge", - "rtt_ns": 645898, - "rtt_ms": 0.645898, + "rtt_ns": 1655083, + "rtt_ms": 1.655083, "checkpoint": 0, "vertex_from": "32", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.905779784Z" + "timestamp": "2025-11-27T04:01:49.337468-08:00" }, { "operation": "add_edge", - "rtt_ns": 720207, - "rtt_ms": 0.720207, + "rtt_ns": 1716000, + "rtt_ms": 1.716, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:50.905799684Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:49.337548-08:00" }, { "operation": "add_edge", - "rtt_ns": 795377, - "rtt_ms": 0.795377, + "rtt_ns": 2161042, + "rtt_ms": 2.161042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:50.905800984Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:49.337563-08:00" }, { "operation": "add_edge", - "rtt_ns": 878637, - "rtt_ms": 0.878637, + "rtt_ns": 2073500, + "rtt_ms": 2.0735, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:50.905920884Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:49.338008-08:00" }, { "operation": "add_edge", - "rtt_ns": 558838, - "rtt_ms": 0.558838, + "rtt_ns": 2273708, + "rtt_ms": 2.273708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:50.905935834Z" + "vertex_to": "845", + "timestamp": "2025-11-27T04:01:49.338035-08:00" }, { "operation": "add_edge", - "rtt_ns": 785508, - "rtt_ms": 0.785508, + "rtt_ns": 2717167, + "rtt_ms": 2.717167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "845", - "timestamp": "2025-11-27T01:21:50.905948564Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:49.338433-08:00" }, { "operation": "add_edge", - "rtt_ns": 637508, - "rtt_ms": 0.637508, + "rtt_ns": 2760708, + "rtt_ms": 2.760708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:50.906119323Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:49.338463-08:00" }, { "operation": "add_edge", - "rtt_ns": 673998, - "rtt_ms": 0.673998, + "rtt_ns": 2994833, + "rtt_ms": 2.994833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:50.906133483Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:49.338616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074456, - "rtt_ms": 1.074456, + "rtt_ns": 1205000, + "rtt_ms": 1.205, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "428", - "timestamp": "2025-11-27T01:21:50.906741741Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:49.338674-08:00" }, { "operation": "add_edge", - "rtt_ns": 924157, - "rtt_ms": 0.924157, + "rtt_ns": 1247667, + "rtt_ms": 1.247667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:50.906861251Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:49.338687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079847, - "rtt_ms": 1.079847, + "rtt_ns": 1402834, + "rtt_ms": 1.402834, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:50.906880911Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:01:49.338854-08:00" }, { "operation": "add_edge", - "rtt_ns": 963827, - "rtt_ms": 0.963827, + "rtt_ns": 1391250, + "rtt_ms": 1.39125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:50.906886191Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:49.33894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205235, - "rtt_ms": 1.205235, + "rtt_ns": 1787875, + "rtt_ms": 1.787875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:50.90690365Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:49.339799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145656, - "rtt_ms": 1.145656, + "rtt_ns": 2078833, + "rtt_ms": 2.078833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:50.90692671Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:49.340543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303686, - "rtt_ms": 1.303686, + "rtt_ns": 2508042, + "rtt_ms": 2.508042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:50.90710577Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:49.340544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855903, - "rtt_ms": 1.855903, + "rtt_ns": 1943166, + "rtt_ms": 1.943166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:50.907805627Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.34056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747704, - "rtt_ms": 1.747704, + "rtt_ns": 1755791, + "rtt_ms": 1.755791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.907869907Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:01:49.340612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765944, - "rtt_ms": 1.765944, + "rtt_ns": 3127416, + "rtt_ms": 3.127416, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:50.907900567Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:49.340692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403376, - "rtt_ms": 1.403376, + "rtt_ns": 2021583, + "rtt_ms": 2.021583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:50.908309626Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:49.340696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610055, - "rtt_ms": 1.610055, + "rtt_ns": 2034000, + "rtt_ms": 2.034, "checkpoint": 0, "vertex_from": "32", "vertex_to": "710", - "timestamp": "2025-11-27T01:21:50.908353146Z" + "timestamp": "2025-11-27T04:01:49.340722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472926, - "rtt_ms": 1.472926, + "rtt_ns": 1875625, + "rtt_ms": 1.875625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:50.908401136Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:49.340817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534795, - "rtt_ms": 1.534795, + "rtt_ns": 2458125, + "rtt_ms": 2.458125, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:50.908422576Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:49.340892-08:00" }, { "operation": "add_edge", - "rtt_ns": 525099, - "rtt_ms": 0.525099, + "rtt_ns": 1102291, + "rtt_ms": 1.102291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:50.908426936Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:49.340902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544595, - "rtt_ms": 1.544595, + "rtt_ns": 1309500, + "rtt_ms": 1.3095, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:50.908427756Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:49.341855-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1087257, - "rtt_ms": 1.087257, + "operation": "add_edge", + "rtt_ns": 1684041, + "rtt_ms": 1.684041, "checkpoint": 0, - "vertex_from": "977", - "timestamp": "2025-11-27T01:21:50.908960134Z" + "vertex_from": "32", + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:49.342409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870324, - "rtt_ms": 1.870324, + "rtt_ns": 1642792, + "rtt_ms": 1.642792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:50.908977394Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:49.342546-08:00" }, { "operation": "add_edge", - "rtt_ns": 2342882, - "rtt_ms": 2.342882, + "rtt_ns": 1964625, + "rtt_ms": 1.964625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "482", - "timestamp": "2025-11-27T01:21:50.909205473Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:49.342662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431856, - "rtt_ms": 1.431856, + "rtt_ns": 2115291, + "rtt_ms": 2.115291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:50.909239373Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:49.342676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548985, - "rtt_ms": 1.548985, + "rtt_ns": 1871875, + "rtt_ms": 1.871875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:50.909973051Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:49.34269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625364, - "rtt_ms": 1.625364, + "rtt_ns": 2199291, + "rtt_ms": 2.199291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:50.91005367Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:49.342743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651794, - "rtt_ms": 1.651794, + "rtt_ns": 2149375, + "rtt_ms": 2.149375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.91005452Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:49.342763-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2155125, + "rtt_ms": 2.155125, + "checkpoint": 0, + "vertex_from": "977", + "timestamp": "2025-11-27T04:01:49.342849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076046, - "rtt_ms": 1.076046, + "rtt_ns": 2014917, + "rtt_ms": 2.014917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:50.91005482Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:49.342908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716224, - "rtt_ms": 1.716224, + "rtt_ns": 1694458, + "rtt_ms": 1.694458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:50.91007052Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:49.34355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761254, - "rtt_ms": 1.761254, + "rtt_ns": 1526667, + "rtt_ms": 1.526667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:50.91007202Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:49.343936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649564, - "rtt_ms": 1.649564, + "rtt_ns": 1400541, + "rtt_ms": 1.400541, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:50.91007877Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:49.343947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333596, - "rtt_ms": 1.333596, + "rtt_ns": 1433750, + "rtt_ms": 1.43375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "977", - "timestamp": "2025-11-27T01:21:50.91029411Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:49.344125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911404, - "rtt_ms": 1.911404, + "rtt_ns": 1291666, + "rtt_ms": 1.291666, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:50.911119327Z" + "vertex_to": "977", + "timestamp": "2025-11-27T04:01:49.344142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894424, - "rtt_ms": 1.894424, + "rtt_ns": 1283167, + "rtt_ms": 1.283167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "437", - "timestamp": "2025-11-27T01:21:50.911134847Z" + "vertex_to": "327", + "timestamp": "2025-11-27T04:01:49.344193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633234, - "rtt_ms": 1.633234, + "rtt_ns": 1525208, + "rtt_ms": 1.525208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.911607145Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:01:49.344202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808255, - "rtt_ms": 1.808255, + "rtt_ns": 1533375, + "rtt_ms": 1.533375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "327", - "timestamp": "2025-11-27T01:21:50.911864265Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:49.344297-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464852, - "rtt_ms": 2.464852, + "rtt_ns": 1603875, + "rtt_ms": 1.603875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:50.912545592Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:49.344347-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321552, - "rtt_ms": 2.321552, + "rtt_ns": 1716459, + "rtt_ms": 1.716459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:50.912616902Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:49.344386-08:00" }, { "operation": "add_edge", - "rtt_ns": 2561442, - "rtt_ms": 2.561442, + "rtt_ns": 1403917, + "rtt_ms": 1.403917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "496", - "timestamp": "2025-11-27T01:21:50.912634972Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:49.345353-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567582, - "rtt_ms": 2.567582, + "rtt_ns": 1825792, + "rtt_ms": 1.825792, "checkpoint": 0, "vertex_from": "32", "vertex_to": "287", - "timestamp": "2025-11-27T01:21:50.912639752Z" + "timestamp": "2025-11-27T04:01:49.345377-08:00" }, { "operation": "add_edge", - "rtt_ns": 2609182, - "rtt_ms": 2.609182, + "rtt_ns": 1310833, + "rtt_ms": 1.310833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:50.912663982Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:01:49.345514-08:00" }, { "operation": "add_edge", - "rtt_ns": 2619242, - "rtt_ms": 2.619242, + "rtt_ns": 1591833, + "rtt_ms": 1.591833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:50.912674842Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:01:49.345529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565445, - "rtt_ms": 1.565445, + "rtt_ns": 1337666, + "rtt_ms": 1.337666, "checkpoint": 0, "vertex_from": "32", "vertex_to": "944", - "timestamp": "2025-11-27T01:21:50.912701822Z" + "timestamp": "2025-11-27T04:01:49.345531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614235, - "rtt_ms": 1.614235, + "rtt_ns": 1506500, + "rtt_ms": 1.5065, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "932", - "timestamp": "2025-11-27T01:21:50.912739222Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:49.345632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204747, - "rtt_ms": 1.204747, + "rtt_ns": 1514292, + "rtt_ms": 1.514292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "241", - "timestamp": "2025-11-27T01:21:50.912813512Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:01:49.345657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048556, - "rtt_ms": 1.048556, + "rtt_ns": 1308750, + "rtt_ms": 1.30875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:50.912915081Z" + "vertex_to": "46", + "timestamp": "2025-11-27T04:01:49.345696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156017, - "rtt_ms": 1.156017, + "rtt_ns": 1435792, + "rtt_ms": 1.435792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.913702709Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:49.345733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268986, - "rtt_ms": 1.268986, + "rtt_ns": 1519667, + "rtt_ms": 1.519667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "46", - "timestamp": "2025-11-27T01:21:50.913888418Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:49.345868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273326, - "rtt_ms": 1.273326, + "rtt_ns": 1308459, + "rtt_ms": 1.308459, "checkpoint": 0, "vertex_from": "32", "vertex_to": "916", - "timestamp": "2025-11-27T01:21:50.913914828Z" + "timestamp": "2025-11-27T04:01:49.346686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281836, - "rtt_ms": 1.281836, + "rtt_ns": 1572292, + "rtt_ms": 1.572292, "checkpoint": 0, "vertex_from": "32", "vertex_to": "402", - "timestamp": "2025-11-27T01:21:50.913918338Z" + "timestamp": "2025-11-27T04:01:49.346927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254936, - "rtt_ms": 1.254936, + "rtt_ns": 1465584, + "rtt_ms": 1.465584, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:50.913921428Z" + "vertex_to": "41", + "timestamp": "2025-11-27T04:01:49.346996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247746, - "rtt_ms": 1.247746, + "rtt_ns": 1384417, + "rtt_ms": 1.384417, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:50.913951568Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:49.347019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627605, - "rtt_ms": 1.627605, + "rtt_ns": 1545375, + "rtt_ms": 1.545375, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:50.914368517Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:49.347077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773744, - "rtt_ms": 1.773744, + "rtt_ns": 1580458, + "rtt_ms": 1.580458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "41", - "timestamp": "2025-11-27T01:21:50.914449836Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:49.347095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744654, - "rtt_ms": 1.744654, + "rtt_ns": 1877750, + "rtt_ms": 1.87775, "checkpoint": 0, "vertex_from": "32", "vertex_to": "561", - "timestamp": "2025-11-27T01:21:50.914559476Z" + "timestamp": "2025-11-27T04:01:49.347535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731175, - "rtt_ms": 1.731175, + "rtt_ns": 1905875, + "rtt_ms": 1.905875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:50.914647286Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:49.34764-08:00" }, { "operation": "add_edge", - "rtt_ns": 933607, - "rtt_ms": 0.933607, + "rtt_ns": 1958250, + "rtt_ms": 1.95825, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:50.915303584Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:49.347656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410376, - "rtt_ms": 1.410376, + "rtt_ns": 2298875, + "rtt_ms": 2.298875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:50.915330264Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:49.348169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430366, - "rtt_ms": 1.430366, + "rtt_ns": 1648458, + "rtt_ms": 1.648458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.915348414Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:49.348727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582465, - "rtt_ms": 1.582465, + "rtt_ns": 1634875, + "rtt_ms": 1.634875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.915505973Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:49.348731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617815, - "rtt_ms": 1.617815, + "rtt_ns": 1800708, + "rtt_ms": 1.800708, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.915507543Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:01:49.348828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629125, - "rtt_ms": 1.629125, + "rtt_ns": 1379958, + "rtt_ms": 1.379958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "339", - "timestamp": "2025-11-27T01:21:50.915582923Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:49.348916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542845, - "rtt_ms": 1.542845, + "rtt_ns": 2094000, + "rtt_ms": 2.094, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.916104781Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:49.349022-08:00" }, { "operation": "add_edge", - "rtt_ns": 2402322, - "rtt_ms": 2.402322, + "rtt_ns": 2345917, + "rtt_ms": 2.345917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:50.916106611Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.349033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654795, - "rtt_ms": 1.654795, + "rtt_ns": 2102334, + "rtt_ms": 2.102334, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:50.916113451Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:49.349099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563955, - "rtt_ms": 1.563955, + "rtt_ns": 968792, + "rtt_ms": 0.968792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:50.916212881Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:01:49.349139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183796, - "rtt_ms": 1.183796, + "rtt_ns": 1725833, + "rtt_ms": 1.725833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "566", - "timestamp": "2025-11-27T01:21:50.91653392Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:49.349383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578414, - "rtt_ms": 1.578414, + "rtt_ns": 1934791, + "rtt_ms": 1.934791, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:50.916884228Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:49.349576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591074, - "rtt_ms": 1.591074, + "rtt_ns": 1764500, + "rtt_ms": 1.7645, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "121", - "timestamp": "2025-11-27T01:21:50.916923828Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:49.350497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699084, - "rtt_ms": 1.699084, + "rtt_ns": 1521042, + "rtt_ms": 1.521042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "459", - "timestamp": "2025-11-27T01:21:50.917283857Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:49.350555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827644, - "rtt_ms": 1.827644, + "rtt_ns": 1655208, + "rtt_ms": 1.655208, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:50.917334827Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:49.350756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242246, - "rtt_ms": 1.242246, + "rtt_ns": 1453583, + "rtt_ms": 1.453583, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.917349337Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:49.350838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261886, - "rtt_ms": 1.261886, + "rtt_ns": 2138500, + "rtt_ms": 2.1385, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:50.917371497Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:01:49.350869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873574, - "rtt_ms": 1.873574, + "rtt_ns": 1864459, + "rtt_ms": 1.864459, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:50.917382707Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:49.350888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269696, - "rtt_ms": 1.269696, + "rtt_ns": 1356500, + "rtt_ms": 1.3565, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "412", - "timestamp": "2025-11-27T01:21:50.917385187Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:49.350933-08:00" }, { "operation": "add_edge", - "rtt_ns": 866427, - "rtt_ms": 0.866427, + "rtt_ns": 2079667, + "rtt_ms": 2.079667, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:50.917401687Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:01:49.350998-08:00" }, { "operation": "add_edge", - "rtt_ns": 725398, - "rtt_ms": 0.725398, + "rtt_ns": 2243042, + "rtt_ms": 2.243042, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.917611586Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:49.351072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442575, - "rtt_ms": 1.442575, + "rtt_ns": 1971000, + "rtt_ms": 1.971, "checkpoint": 0, "vertex_from": "32", "vertex_to": "432", - "timestamp": "2025-11-27T01:21:50.917656726Z" + "timestamp": "2025-11-27T04:01:49.351111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405246, - "rtt_ms": 1.405246, + "rtt_ns": 1264625, + "rtt_ms": 1.264625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:50.918331994Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:49.352199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056867, - "rtt_ms": 1.056867, + "rtt_ns": 1348625, + "rtt_ms": 1.348625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:50.918344304Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:49.352218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495935, - "rtt_ms": 1.495935, + "rtt_ns": 1144750, + "rtt_ms": 1.14475, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:50.918884662Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:49.352219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622774, - "rtt_ms": 1.622774, + "rtt_ns": 1683416, + "rtt_ms": 1.683416, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:50.918996301Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:49.35224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693184, - "rtt_ms": 1.693184, + "rtt_ns": 1447291, + "rtt_ms": 1.447291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "110", - "timestamp": "2025-11-27T01:21:50.919031071Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:49.352286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694164, - "rtt_ms": 1.694164, + "rtt_ns": 1299542, + "rtt_ms": 1.299542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:50.919049291Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:49.352298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683424, - "rtt_ms": 1.683424, + "rtt_ns": 1490333, + "rtt_ms": 1.490333, "checkpoint": 0, "vertex_from": "32", "vertex_to": "480", - "timestamp": "2025-11-27T01:21:50.919072111Z" + "timestamp": "2025-11-27T04:01:49.352379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672274, - "rtt_ms": 1.672274, + "rtt_ns": 1692333, + "rtt_ms": 1.692333, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:50.919079191Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:01:49.35247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431985, - "rtt_ms": 1.431985, + "rtt_ns": 1455458, + "rtt_ms": 1.455458, "checkpoint": 0, "vertex_from": "32", "vertex_to": "139", - "timestamp": "2025-11-27T01:21:50.919091551Z" + "timestamp": "2025-11-27T04:01:49.352567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495795, - "rtt_ms": 1.495795, + "rtt_ns": 2082458, + "rtt_ms": 2.082458, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:50.919111321Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:49.352582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109906, - "rtt_ms": 1.109906, + "rtt_ns": 1288083, + "rtt_ms": 1.288083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "979", - "timestamp": "2025-11-27T01:21:50.91945573Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:01:49.353575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909984, - "rtt_ms": 1.909984, + "rtt_ns": 1152542, + "rtt_ms": 1.152542, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:50.920796126Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:49.353624-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1762114, - "rtt_ms": 1.762114, + "operation": "add_edge", + "rtt_ns": 1332875, + "rtt_ms": 1.332875, "checkpoint": 0, - "vertex_from": "376", - "timestamp": "2025-11-27T01:21:50.920855345Z" + "vertex_from": "32", + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:49.353713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837574, - "rtt_ms": 1.837574, + "rtt_ns": 1541500, + "rtt_ms": 1.5415, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "789", - "timestamp": "2025-11-27T01:21:50.920869635Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:49.353743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847494, - "rtt_ms": 1.847494, + "rtt_ns": 1463833, + "rtt_ms": 1.463833, "checkpoint": 0, "vertex_from": "32", "vertex_to": "353", - "timestamp": "2025-11-27T01:21:50.920897685Z" + "timestamp": "2025-11-27T04:01:49.353763-08:00" }, { "operation": "add_edge", - "rtt_ns": 2580361, - "rtt_ms": 2.580361, + "rtt_ns": 1549500, + "rtt_ms": 1.5495, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:50.920914525Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:49.353769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947924, - "rtt_ms": 1.947924, + "rtt_ns": 1553917, + "rtt_ms": 1.553917, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:50.920945515Z" + "vertex_to": "979", + "timestamp": "2025-11-27T04:01:49.353773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910074, - "rtt_ms": 1.910074, + "rtt_ns": 1791625, + "rtt_ms": 1.791625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "865", - "timestamp": "2025-11-27T01:21:50.921367204Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:49.354033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2272613, - "rtt_ms": 2.272613, + "rtt_ns": 1519167, + "rtt_ms": 1.519167, "checkpoint": 0, "vertex_from": "32", "vertex_to": "203", - "timestamp": "2025-11-27T01:21:50.921385804Z" + "timestamp": "2025-11-27T04:01:49.354109-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2326473, - "rtt_ms": 2.326473, + "operation": "add_vertex", + "rtt_ns": 1875792, + "rtt_ms": 1.875792, "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:50.921407754Z" + "vertex_from": "376", + "timestamp": "2025-11-27T04:01:49.354444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2350983, - "rtt_ms": 2.350983, + "rtt_ns": 1314958, + "rtt_ms": 1.314958, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:50.921424434Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:01:49.354948-08:00" }, { "operation": "add_edge", - "rtt_ns": 913537, - "rtt_ms": 0.913537, + "rtt_ns": 1676500, + "rtt_ms": 1.6765, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "376", - "timestamp": "2025-11-27T01:21:50.921769162Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:49.355441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014956, - "rtt_ms": 1.014956, + "rtt_ns": 1534625, + "rtt_ms": 1.534625, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "563", - "timestamp": "2025-11-27T01:21:50.921812592Z" + "vertex_to": "157", + "timestamp": "2025-11-27T04:01:49.35557-08:00" }, { "operation": "add_edge", - "rtt_ns": 992837, - "rtt_ms": 0.992837, + "rtt_ns": 1474166, + "rtt_ms": 1.474166, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:50.921891272Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:01:49.355584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054027, - "rtt_ms": 1.054027, + "rtt_ns": 1909833, + "rtt_ms": 1.909833, "checkpoint": 0, "vertex_from": "32", "vertex_to": "812", - "timestamp": "2025-11-27T01:21:50.921924542Z" + "timestamp": "2025-11-27T04:01:49.355625-08:00" }, { "operation": "add_edge", - "rtt_ns": 979987, - "rtt_ms": 0.979987, + "rtt_ns": 1854542, + "rtt_ms": 1.854542, "checkpoint": 0, "vertex_from": "32", "vertex_to": "76", - "timestamp": "2025-11-27T01:21:50.921926382Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1058697, - "rtt_ms": 1.058697, - "checkpoint": 0, - "vertex_from": "32", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:50.921974262Z" + "timestamp": "2025-11-27T04:01:49.355625-08:00" }, { "operation": "add_edge", - "rtt_ns": 953237, - "rtt_ms": 0.953237, + "rtt_ns": 2058750, + "rtt_ms": 2.05875, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "722", - "timestamp": "2025-11-27T01:21:50.922364031Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:01:49.355635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006226, - "rtt_ms": 1.006226, + "rtt_ns": 1963250, + "rtt_ms": 1.96325, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:50.92243152Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:49.355738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132346, - "rtt_ms": 1.132346, + "rtt_ns": 2021292, + "rtt_ms": 2.021292, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:50.92250061Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:49.35578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221486, - "rtt_ms": 1.221486, + "rtt_ns": 1965959, + "rtt_ms": 1.965959, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "157", - "timestamp": "2025-11-27T01:21:50.92260892Z" + "vertex_to": "376", + "timestamp": "2025-11-27T04:01:49.356411-08:00" }, { "operation": "add_edge", - "rtt_ns": 884548, - "rtt_ms": 0.884548, + "rtt_ns": 1862083, + "rtt_ms": 1.862083, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:50.92265531Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:49.356812-08:00" }, { "operation": "add_edge", - "rtt_ns": 903487, - "rtt_ms": 0.903487, + "rtt_ns": 1697167, + "rtt_ms": 1.697167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:50.922717829Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:49.357436-08:00" }, { "operation": "add_edge", - "rtt_ns": 865777, - "rtt_ms": 0.865777, + "rtt_ns": 1850833, + "rtt_ms": 1.850833, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "844", - "timestamp": "2025-11-27T01:21:50.922758709Z" + "vertex_to": "349", + "timestamp": "2025-11-27T04:01:49.357476-08:00" }, { "operation": "add_edge", - "rtt_ns": 894477, - "rtt_ms": 0.894477, + "rtt_ns": 1878166, + "rtt_ms": 1.878166, "checkpoint": 0, "vertex_from": "32", "vertex_to": "570", - "timestamp": "2025-11-27T01:21:50.922822159Z" + "timestamp": "2025-11-27T04:01:49.357504-08:00" }, { "operation": "add_edge", - "rtt_ns": 938427, - "rtt_ms": 0.938427, + "rtt_ns": 2078792, + "rtt_ms": 2.078792, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "349", - "timestamp": "2025-11-27T01:21:50.922863879Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:49.35752-08:00" }, { "operation": "add_edge", - "rtt_ns": 926417, - "rtt_ms": 0.926417, + "rtt_ns": 1967291, + "rtt_ms": 1.967291, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "694", - "timestamp": "2025-11-27T01:21:50.922901959Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:01:49.357553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024287, - "rtt_ms": 1.024287, + "rtt_ns": 1772625, + "rtt_ms": 1.772625, "checkpoint": 0, "vertex_from": "32", "vertex_to": "199", - "timestamp": "2025-11-27T01:21:50.923456757Z" + "timestamp": "2025-11-27T04:01:49.357554-08:00" }, { "operation": "add_edge", - "rtt_ns": 951177, - "rtt_ms": 0.951177, + "rtt_ns": 1971208, + "rtt_ms": 1.971208, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:50.923608037Z" + "vertex_from": "32", + "vertex_to": "694", + "timestamp": "2025-11-27T04:01:49.357607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278706, - "rtt_ms": 1.278706, + "rtt_ns": 2199167, + "rtt_ms": 2.199167, "checkpoint": 0, "vertex_from": "32", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:50.923643927Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:49.357771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105896, - "rtt_ms": 1.105896, + "rtt_ns": 1627291, + "rtt_ms": 1.627291, "checkpoint": 0, "vertex_from": "32", "vertex_to": "601", - "timestamp": "2025-11-27T01:21:50.923720666Z" + "timestamp": "2025-11-27T04:01:49.35844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755004, - "rtt_ms": 1.755004, + "rtt_ns": 2202416, + "rtt_ms": 2.202416, "checkpoint": 0, "vertex_from": "32", "vertex_to": "880", - "timestamp": "2025-11-27T01:21:50.924256584Z" + "timestamp": "2025-11-27T04:01:49.358614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571725, - "rtt_ms": 1.571725, + "rtt_ns": 1217708, + "rtt_ms": 1.217708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:50.924290834Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:49.35899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618845, - "rtt_ms": 1.618845, + "rtt_ns": 1758083, + "rtt_ms": 1.758083, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:50.924378694Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.359311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589565, - "rtt_ms": 1.589565, + "rtt_ns": 2010917, + "rtt_ms": 2.010917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:50.924413374Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:01:49.359567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570715, - "rtt_ms": 1.570715, + "rtt_ns": 2048708, + "rtt_ms": 2.048708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.924435274Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:49.35957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883884, - "rtt_ms": 1.883884, + "rtt_ns": 2113500, + "rtt_ms": 2.1135, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:50.925342241Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:49.359618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2589061, - "rtt_ms": 2.589061, + "rtt_ns": 2214250, + "rtt_ms": 2.21425, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "740", - "timestamp": "2025-11-27T01:21:50.92549231Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:49.359651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905773, - "rtt_ms": 1.905773, + "rtt_ns": 2217834, + "rtt_ms": 2.217834, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:50.9255507Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:49.359695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475786, - "rtt_ms": 1.475786, + "rtt_ns": 1304458, + "rtt_ms": 1.304458, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.92573413Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:49.359747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653845, - "rtt_ms": 1.653845, + "rtt_ns": 2153334, + "rtt_ms": 2.153334, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "217", - "timestamp": "2025-11-27T01:21:50.925945479Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:49.359761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2244103, - "rtt_ms": 2.244103, + "rtt_ns": 1673875, + "rtt_ms": 1.673875, "checkpoint": 0, "vertex_from": "33", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:50.925965609Z" + "timestamp": "2025-11-27T04:01:49.36029-08:00" }, { "operation": "add_edge", - "rtt_ns": 3037779, - "rtt_ms": 3.037779, + "rtt_ns": 1367375, + "rtt_ms": 1.367375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.926648246Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.360358-08:00" }, { "operation": "add_edge", - "rtt_ns": 2242062, - "rtt_ms": 2.242062, + "rtt_ns": 1266375, + "rtt_ms": 1.266375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:50.926678476Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:49.360919-08:00" }, { "operation": "add_edge", - "rtt_ns": 2282842, - "rtt_ms": 2.282842, + "rtt_ns": 1670292, + "rtt_ms": 1.670292, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:50.926697276Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:01:49.360985-08:00" }, { "operation": "add_edge", - "rtt_ns": 2382662, - "rtt_ms": 2.382662, + "rtt_ns": 1458292, + "rtt_ms": 1.458292, "checkpoint": 0, "vertex_from": "33", "vertex_to": "44", - "timestamp": "2025-11-27T01:21:50.926763046Z" + "timestamp": "2025-11-27T04:01:49.361027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446525, - "rtt_ms": 1.446525, + "rtt_ns": 1498416, + "rtt_ms": 1.498416, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:50.926790096Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:49.361069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333336, - "rtt_ms": 1.333336, + "rtt_ns": 1431916, + "rtt_ms": 1.431916, "checkpoint": 0, "vertex_from": "33", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:50.926827246Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1514605, - "rtt_ms": 1.514605, - "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:50.927461054Z" + "timestamp": "2025-11-27T04:01:49.361128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744774, - "rtt_ms": 1.744774, + "rtt_ns": 1751334, + "rtt_ms": 1.751334, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:50.927480224Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:49.361371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940214, - "rtt_ms": 1.940214, + "rtt_ns": 1663709, + "rtt_ms": 1.663709, "checkpoint": 0, "vertex_from": "33", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:50.927491754Z" + "timestamp": "2025-11-27T04:01:49.361412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535535, - "rtt_ms": 1.535535, + "rtt_ns": 2022375, + "rtt_ms": 2.022375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:50.927502394Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:49.361784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474836, - "rtt_ms": 1.474836, + "rtt_ns": 1380125, + "rtt_ms": 1.380125, "checkpoint": 0, "vertex_from": "33", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:50.928125382Z" + "timestamp": "2025-11-27T04:01:49.362302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398465, - "rtt_ms": 1.398465, + "rtt_ns": 1357625, + "rtt_ms": 1.357625, "checkpoint": 0, "vertex_from": "33", "vertex_to": "872", - "timestamp": "2025-11-27T01:21:50.928164551Z" + "timestamp": "2025-11-27T04:01:49.362428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555615, - "rtt_ms": 1.555615, + "rtt_ns": 2355375, + "rtt_ms": 2.355375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:50.928235201Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:49.362647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454215, - "rtt_ms": 1.454215, + "rtt_ns": 2289208, + "rtt_ms": 2.289208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:50.928246801Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:49.362648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467405, - "rtt_ms": 1.467405, + "rtt_ns": 1678666, + "rtt_ms": 1.678666, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.928296061Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:49.362665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632945, - "rtt_ms": 1.632945, + "rtt_ns": 1733917, + "rtt_ms": 1.733917, "checkpoint": 0, "vertex_from": "33", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.928331321Z" + "timestamp": "2025-11-27T04:01:49.362763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137446, - "rtt_ms": 1.137446, + "rtt_ns": 1643375, + "rtt_ms": 1.643375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.92860114Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:49.362772-08:00" }, { "operation": "add_edge", - "rtt_ns": 983767, - "rtt_ms": 0.983767, + "rtt_ns": 1427958, + "rtt_ms": 1.427958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:50.929149288Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:49.362841-08:00" }, { "operation": "add_edge", - "rtt_ns": 894087, - "rtt_ms": 0.894087, + "rtt_ns": 1485167, + "rtt_ms": 1.485167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:50.929192508Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.362857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821954, - "rtt_ms": 1.821954, + "rtt_ns": 1498833, + "rtt_ms": 1.498833, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.929315358Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.363928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834774, - "rtt_ms": 1.834774, + "rtt_ns": 1364291, + "rtt_ms": 1.364291, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.929339388Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:49.36403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910914, - "rtt_ms": 1.910914, + "rtt_ns": 1739916, + "rtt_ms": 1.739916, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:50.929392728Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.364043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210536, - "rtt_ms": 1.210536, + "rtt_ns": 1297000, + "rtt_ms": 1.297, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:50.929446637Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:49.364155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206266, - "rtt_ms": 1.206266, + "rtt_ns": 2392584, + "rtt_ms": 2.392584, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:50.929538827Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:49.364179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321466, - "rtt_ms": 1.321466, + "rtt_ns": 1342292, + "rtt_ms": 1.342292, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:50.929569317Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:49.364184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463945, - "rtt_ms": 1.463945, + "rtt_ns": 1548833, + "rtt_ms": 1.548833, "checkpoint": 0, "vertex_from": "33", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:50.929590627Z" + "timestamp": "2025-11-27T04:01:49.364197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307386, - "rtt_ms": 1.307386, + "rtt_ns": 1568333, + "rtt_ms": 1.568333, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:50.930501054Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:49.364218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453416, - "rtt_ms": 1.453416, + "rtt_ns": 1538625, + "rtt_ms": 1.538625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "527", - "timestamp": "2025-11-27T01:21:50.930604154Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:49.364305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017434, - "rtt_ms": 2.017434, + "rtt_ns": 1555167, + "rtt_ms": 1.555167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:50.930622314Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:49.364329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375565, - "rtt_ms": 1.375565, + "rtt_ns": 1186167, + "rtt_ms": 1.186167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:50.930692263Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:49.365385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267266, - "rtt_ms": 1.267266, + "rtt_ns": 1311750, + "rtt_ms": 1.31175, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "964", - "timestamp": "2025-11-27T01:21:50.930715083Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:49.365469-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1751709, + "rtt_ms": 1.751709, + "checkpoint": 0, + "vertex_from": "615", + "timestamp": "2025-11-27T04:01:49.366088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194546, - "rtt_ms": 1.194546, + "rtt_ns": 1994916, + "rtt_ms": 1.994916, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:50.930734173Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:01:49.36618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398685, - "rtt_ms": 1.398685, + "rtt_ns": 2265917, + "rtt_ms": 2.265917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:50.930792383Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:49.366195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299506, - "rtt_ms": 1.299506, + "rtt_ns": 1911583, + "rtt_ms": 1.911583, "checkpoint": 0, "vertex_from": "33", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:50.930892053Z" + "timestamp": "2025-11-27T04:01:49.366217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325796, - "rtt_ms": 1.325796, + "rtt_ns": 2048542, + "rtt_ms": 2.048542, "checkpoint": 0, "vertex_from": "33", "vertex_to": "705", - "timestamp": "2025-11-27T01:21:50.930896413Z" + "timestamp": "2025-11-27T04:01:49.366268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555545, - "rtt_ms": 1.555545, + "rtt_ns": 2107416, + "rtt_ms": 2.107416, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:50.930897613Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 932947, - "rtt_ms": 0.932947, - "checkpoint": 0, - "vertex_from": "615", - "timestamp": "2025-11-27T01:21:50.931435791Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:49.366287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032356, - "rtt_ms": 1.032356, + "rtt_ns": 2259333, + "rtt_ms": 2.259333, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:50.93165639Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:49.366303-08:00" }, { "operation": "add_edge", - "rtt_ns": 971887, - "rtt_ms": 0.971887, + "rtt_ns": 2368041, + "rtt_ms": 2.368041, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:50.93166559Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:49.366399-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1089476, - "rtt_ms": 1.089476, + "rtt_ns": 2195959, + "rtt_ms": 2.195959, "checkpoint": 0, "vertex_from": "427", - "timestamp": "2025-11-27T01:21:50.93169845Z" + "timestamp": "2025-11-27T04:01:49.367582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000497, - "rtt_ms": 1.000497, + "rtt_ns": 1495458, + "rtt_ms": 1.495458, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:50.93179461Z" + "vertex_to": "615", + "timestamp": "2025-11-27T04:01:49.367583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529765, - "rtt_ms": 1.529765, + "rtt_ns": 1188875, + "rtt_ms": 1.188875, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:50.932265308Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.367588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640345, - "rtt_ms": 1.640345, + "rtt_ns": 1407917, + "rtt_ms": 1.407917, "checkpoint": 0, "vertex_from": "33", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:50.932356938Z" + "timestamp": "2025-11-27T04:01:49.367604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731964, - "rtt_ms": 1.731964, + "rtt_ns": 1302417, + "rtt_ms": 1.302417, "checkpoint": 0, "vertex_from": "33", "vertex_to": "52", - "timestamp": "2025-11-27T01:21:50.932629527Z" + "timestamp": "2025-11-27T04:01:49.367606-08:00" }, { "operation": "add_edge", - "rtt_ns": 2956560, - "rtt_ms": 2.95656, + "rtt_ns": 2526000, + "rtt_ms": 2.526, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.933850233Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:49.367996-08:00" }, { "operation": "add_edge", - "rtt_ns": 3024980, - "rtt_ms": 3.02498, + "rtt_ns": 1827875, + "rtt_ms": 1.827875, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.933924933Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.368116-08:00" }, { "operation": "add_edge", - "rtt_ns": 2513322, - "rtt_ms": 2.513322, + "rtt_ns": 1926667, + "rtt_ms": 1.926667, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "615", - "timestamp": "2025-11-27T01:21:50.933949563Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:49.368196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2254903, - "rtt_ms": 2.254903, + "rtt_ns": 2026542, + "rtt_ms": 2.026542, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.934521261Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:49.368208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2751991, - "rtt_ms": 2.751991, + "rtt_ns": 2549167, + "rtt_ms": 2.549167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "843", - "timestamp": "2025-11-27T01:21:50.934547691Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:49.368768-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225753, - "rtt_ms": 2.225753, + "rtt_ns": 2406459, + "rtt_ms": 2.406459, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:50.934583581Z" + "vertex_to": "427", + "timestamp": "2025-11-27T04:01:49.369989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2942220, - "rtt_ms": 2.94222, + "rtt_ns": 2486875, + "rtt_ms": 2.486875, "checkpoint": 0, "vertex_from": "33", "vertex_to": "163", - "timestamp": "2025-11-27T01:21:50.93460951Z" + "timestamp": "2025-11-27T04:01:49.370076-08:00" }, { "operation": "add_edge", - "rtt_ns": 3082630, - "rtt_ms": 3.08263, + "rtt_ns": 2317334, + "rtt_ms": 2.317334, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:50.9347401Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:49.370434-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2372209, + "rtt_ms": 2.372209, + "checkpoint": 0, + "vertex_from": "661", + "timestamp": "2025-11-27T04:01:49.370585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2184683, - "rtt_ms": 2.184683, + "rtt_ns": 3005584, + "rtt_ms": 3.005584, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:50.93481547Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:49.37059-08:00" }, { "operation": "add_edge", - "rtt_ns": 3119360, - "rtt_ms": 3.11936, + "rtt_ns": 2629666, + "rtt_ms": 2.629666, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "427", - "timestamp": "2025-11-27T01:21:50.93481849Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:49.370627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734054, - "rtt_ms": 1.734054, + "rtt_ns": 3022833, + "rtt_ms": 3.022833, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:50.935585917Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.370631-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1656744, - "rtt_ms": 1.656744, + "operation": "add_edge", + "rtt_ns": 3134792, + "rtt_ms": 3.134792, "checkpoint": 0, - "vertex_from": "661", - "timestamp": "2025-11-27T01:21:50.935590047Z" + "vertex_from": "33", + "vertex_to": "843", + "timestamp": "2025-11-27T04:01:49.370742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670264, - "rtt_ms": 1.670264, + "rtt_ns": 2645709, + "rtt_ms": 2.645709, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:50.935622177Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:49.370844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061476, - "rtt_ms": 1.061476, + "rtt_ns": 1274041, + "rtt_ms": 1.274041, "checkpoint": 0, "vertex_from": "33", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.935645797Z" + "timestamp": "2025-11-27T04:01:49.371709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100736, - "rtt_ms": 1.100736, + "rtt_ns": 1820667, + "rtt_ms": 1.820667, "checkpoint": 0, "vertex_from": "33", "vertex_to": "480", - "timestamp": "2025-11-27T01:21:50.935650057Z" + "timestamp": "2025-11-27T04:01:49.371899-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3248833, + "rtt_ms": 3.248833, + "checkpoint": 0, + "vertex_from": "33", + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:49.372017-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2205792, + "rtt_ms": 2.205792, + "checkpoint": 0, + "vertex_from": "690", + "timestamp": "2025-11-27T04:01:49.372198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202806, - "rtt_ms": 1.202806, + "rtt_ns": 1757625, + "rtt_ms": 1.757625, "checkpoint": 0, "vertex_from": "33", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:50.935813946Z" + "timestamp": "2025-11-27T04:01:49.372349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274706, - "rtt_ms": 1.274706, + "rtt_ns": 1748834, + "rtt_ms": 1.748834, "checkpoint": 0, "vertex_from": "33", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:50.936016546Z" + "timestamp": "2025-11-27T04:01:49.372379-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1533395, - "rtt_ms": 1.533395, + "operation": "add_edge", + "rtt_ns": 2137625, + "rtt_ms": 2.137625, "checkpoint": 0, - "vertex_from": "690", - "timestamp": "2025-11-27T01:21:50.936056496Z" + "vertex_from": "33", + "vertex_to": "661", + "timestamp": "2025-11-27T04:01:49.372724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845664, - "rtt_ms": 1.845664, + "rtt_ns": 2143333, + "rtt_ms": 2.143333, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:50.936665144Z" + "vertex_to": "34", + "timestamp": "2025-11-27T04:01:49.372776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074097, - "rtt_ms": 1.074097, + "rtt_ns": 2434500, + "rtt_ms": 2.4345, "checkpoint": 0, "vertex_from": "33", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.936697774Z" + "timestamp": "2025-11-27T04:01:49.374145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126047, - "rtt_ms": 1.126047, + "rtt_ns": 1448000, + "rtt_ms": 1.448, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "661", - "timestamp": "2025-11-27T01:21:50.936717084Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:49.374174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118106, - "rtt_ms": 1.118106, + "rtt_ns": 2253416, + "rtt_ms": 2.253416, "checkpoint": 0, "vertex_from": "33", "vertex_to": "96", - "timestamp": "2025-11-27T01:21:50.936770413Z" + "timestamp": "2025-11-27T04:01:49.374271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125116, - "rtt_ms": 1.125116, + "rtt_ns": 2061875, + "rtt_ms": 2.061875, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "617", - "timestamp": "2025-11-27T01:21:50.936772353Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:01:49.374443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252526, - "rtt_ms": 1.252526, + "rtt_ns": 3726792, + "rtt_ms": 3.726792, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:50.936839723Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:49.374469-08:00" }, { "operation": "add_edge", - "rtt_ns": 2309622, - "rtt_ms": 2.309622, + "rtt_ns": 2219417, + "rtt_ms": 2.219417, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "34", - "timestamp": "2025-11-27T01:21:50.937126202Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:49.374569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445186, - "rtt_ms": 1.445186, + "rtt_ns": 3743875, + "rtt_ms": 3.743875, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:50.937260172Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:49.37459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731754, - "rtt_ms": 1.731754, + "rtt_ns": 2899000, + "rtt_ms": 2.899, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "837", - "timestamp": "2025-11-27T01:21:50.93775076Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:49.374799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723614, - "rtt_ms": 1.723614, + "rtt_ns": 2662167, + "rtt_ms": 2.662167, "checkpoint": 0, "vertex_from": "33", "vertex_to": "690", - "timestamp": "2025-11-27T01:21:50.93778067Z" + "timestamp": "2025-11-27T04:01:49.37486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091247, - "rtt_ms": 1.091247, + "rtt_ns": 2347291, + "rtt_ms": 2.347291, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:50.9378633Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:49.375125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212926, - "rtt_ms": 1.212926, + "rtt_ns": 1263250, + "rtt_ms": 1.26325, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:50.93787917Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.375734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046277, - "rtt_ms": 1.046277, + "rtt_ns": 1212500, + "rtt_ms": 1.2125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:50.93788705Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:49.375804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136107, - "rtt_ms": 1.136107, + "rtt_ns": 1781667, + "rtt_ms": 1.781667, "checkpoint": 0, "vertex_from": "33", "vertex_to": "42", - "timestamp": "2025-11-27T01:21:50.93790984Z" + "timestamp": "2025-11-27T04:01:49.376054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216136, - "rtt_ms": 1.216136, + "rtt_ns": 1806416, + "rtt_ms": 1.806416, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:50.93791507Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:49.376252-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1234416, - "rtt_ms": 1.234416, + "rtt_ns": 2223875, + "rtt_ms": 2.223875, "checkpoint": 0, "vertex_from": "813", - "timestamp": "2025-11-27T01:21:50.93795349Z" + "timestamp": "2025-11-27T04:01:49.37637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434166, - "rtt_ms": 1.434166, + "rtt_ns": 2287625, + "rtt_ms": 2.287625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.938561258Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:49.376463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397205, - "rtt_ms": 1.397205, + "rtt_ns": 1362667, + "rtt_ms": 1.362667, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:50.938658717Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.37649-08:00" }, { "operation": "add_edge", - "rtt_ns": 888917, - "rtt_ms": 0.888917, + "rtt_ns": 1695375, + "rtt_ms": 1.695375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:50.938672717Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:49.376557-08:00" }, { "operation": "add_edge", - "rtt_ns": 931837, - "rtt_ms": 0.931837, + "rtt_ns": 2080750, + "rtt_ms": 2.08075, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:50.938683897Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:49.376651-08:00" }, { "operation": "add_edge", - "rtt_ns": 851187, - "rtt_ms": 0.851187, + "rtt_ns": 1936167, + "rtt_ms": 1.936167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:50.938716017Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:49.376736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548775, - "rtt_ms": 1.548775, + "rtt_ns": 1755750, + "rtt_ms": 1.75575, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "813", - "timestamp": "2025-11-27T01:21:50.939503005Z" + "vertex_to": "187", + "timestamp": "2025-11-27T04:01:49.377491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662605, - "rtt_ms": 1.662605, + "rtt_ns": 1561167, + "rtt_ms": 1.561167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.939543235Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:49.378052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627425, - "rtt_ms": 1.627425, + "rtt_ns": 1921166, + "rtt_ms": 1.921166, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:50.939543865Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:49.378174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665055, - "rtt_ms": 1.665055, + "rtt_ns": 1516583, + "rtt_ms": 1.516583, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "187", - "timestamp": "2025-11-27T01:21:50.939554385Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:49.378254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748384, - "rtt_ms": 1.748384, + "rtt_ns": 2547333, + "rtt_ms": 2.547333, "checkpoint": 0, "vertex_from": "33", "vertex_to": "692", - "timestamp": "2025-11-27T01:21:50.939659334Z" + "timestamp": "2025-11-27T04:01:49.378352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479415, - "rtt_ms": 1.479415, + "rtt_ns": 1859459, + "rtt_ms": 1.859459, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:50.940041953Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:49.378417-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2065041, + "rtt_ms": 2.065041, + "checkpoint": 0, + "vertex_from": "33", + "vertex_to": "813", + "timestamp": "2025-11-27T04:01:49.378436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415716, - "rtt_ms": 1.415716, + "rtt_ns": 1981750, + "rtt_ms": 1.98175, "checkpoint": 0, "vertex_from": "33", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:50.940075643Z" + "timestamp": "2025-11-27T04:01:49.378445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552755, - "rtt_ms": 1.552755, + "rtt_ns": 1922375, + "rtt_ms": 1.922375, "checkpoint": 0, "vertex_from": "33", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.940269932Z" + "timestamp": "2025-11-27T04:01:49.378576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626525, - "rtt_ms": 1.626525, + "rtt_ns": 2583375, + "rtt_ms": 2.583375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:50.940300592Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:49.378638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750445, - "rtt_ms": 1.750445, + "rtt_ns": 1154042, + "rtt_ms": 1.154042, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.940435992Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:49.378647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040296, - "rtt_ms": 1.040296, + "rtt_ns": 1142125, + "rtt_ms": 1.142125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:50.940597841Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:49.379579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734654, - "rtt_ms": 1.734654, + "rtt_ns": 1733041, + "rtt_ms": 1.733041, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:50.941281649Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:49.379908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928543, - "rtt_ms": 1.928543, + "rtt_ns": 1507084, + "rtt_ms": 1.507084, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:50.941436698Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:49.379925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905333, - "rtt_ms": 1.905333, + "rtt_ns": 1949792, + "rtt_ms": 1.949792, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:50.941449978Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:49.380003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839834, - "rtt_ms": 1.839834, + "rtt_ns": 1573417, + "rtt_ms": 1.573417, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:50.941500728Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:49.380021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568175, - "rtt_ms": 1.568175, + "rtt_ns": 1880708, + "rtt_ms": 1.880708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.941612098Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:49.380135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588425, - "rtt_ms": 1.588425, + "rtt_ns": 1712208, + "rtt_ms": 1.712208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:50.941665338Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:49.38036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375865, - "rtt_ms": 1.375865, + "rtt_ns": 1979292, + "rtt_ms": 1.979292, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:50.941678807Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:49.380557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152506, - "rtt_ms": 1.152506, + "rtt_ns": 2083958, + "rtt_ms": 2.083958, "checkpoint": 0, "vertex_from": "33", "vertex_to": "82", - "timestamp": "2025-11-27T01:21:50.941752387Z" + "timestamp": "2025-11-27T04:01:49.380724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332235, - "rtt_ms": 1.332235, + "rtt_ns": 1291333, + "rtt_ms": 1.291333, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:50.941769517Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:49.380871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507785, - "rtt_ms": 1.507785, + "rtt_ns": 1181500, + "rtt_ms": 1.1815, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:50.941778887Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:49.38109-08:00" }, { "operation": "add_edge", - "rtt_ns": 689508, - "rtt_ms": 0.689508, + "rtt_ns": 1409000, + "rtt_ms": 1.409, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:50.941972457Z" + "vertex_to": "440", + "timestamp": "2025-11-27T04:01:49.381545-08:00" }, { "operation": "add_edge", - "rtt_ns": 953137, - "rtt_ms": 0.953137, + "rtt_ns": 1702166, + "rtt_ms": 1.702166, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.942706954Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:49.381724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116136, - "rtt_ms": 1.116136, + "rtt_ns": 1898500, + "rtt_ms": 1.8985, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:50.942729274Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:49.381825-08:00" }, { "operation": "add_edge", - "rtt_ns": 954647, - "rtt_ms": 0.954647, + "rtt_ns": 3692333, + "rtt_ms": 3.692333, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:50.942734724Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:49.382054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241066, - "rtt_ms": 1.241066, + "rtt_ns": 1483375, + "rtt_ms": 1.483375, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:50.942743234Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:49.382208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321076, - "rtt_ms": 1.321076, + "rtt_ns": 1859292, + "rtt_ms": 1.859292, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:50.942759614Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:49.38222-08:00" }, { "operation": "add_edge", - "rtt_ns": 990747, - "rtt_ms": 0.990747, + "rtt_ns": 1796667, + "rtt_ms": 1.796667, "checkpoint": 0, "vertex_from": "33", "vertex_to": "851", - "timestamp": "2025-11-27T01:21:50.942762024Z" + "timestamp": "2025-11-27T04:01:49.382356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104146, - "rtt_ms": 1.104146, + "rtt_ns": 1691542, + "rtt_ms": 1.691542, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:50.942770714Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:49.382564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108587, - "rtt_ms": 1.108587, + "rtt_ns": 1501541, + "rtt_ms": 1.501541, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "440", - "timestamp": "2025-11-27T01:21:50.942788914Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:49.382592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374946, - "rtt_ms": 1.374946, + "rtt_ns": 1092167, + "rtt_ms": 1.092167, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:50.942825994Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:49.382817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672754, - "rtt_ms": 1.672754, + "rtt_ns": 1295292, + "rtt_ms": 1.295292, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:50.943647191Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:49.382842-08:00" }, { "operation": "add_edge", - "rtt_ns": 971747, - "rtt_ms": 0.971747, + "rtt_ns": 2975959, + "rtt_ms": 2.975959, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:50.943702161Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:49.38298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306266, - "rtt_ms": 1.306266, + "rtt_ns": 1208125, + "rtt_ms": 1.208125, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:50.9440421Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:01:49.383263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338206, - "rtt_ms": 1.338206, + "rtt_ns": 1493375, + "rtt_ms": 1.493375, "checkpoint": 0, "vertex_from": "33", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:50.94408359Z" + "timestamp": "2025-11-27T04:01:49.383319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416165, - "rtt_ms": 1.416165, + "rtt_ns": 1568667, + "rtt_ms": 1.568667, "checkpoint": 0, "vertex_from": "33", "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.944188299Z" + "timestamp": "2025-11-27T04:01:49.38379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416995, - "rtt_ms": 1.416995, + "rtt_ns": 1349500, + "rtt_ms": 1.3495, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:50.944244739Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:49.384167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517715, - "rtt_ms": 1.517715, + "rtt_ns": 1643667, + "rtt_ms": 1.643667, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "227", - "timestamp": "2025-11-27T01:21:50.944279909Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:49.384209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629665, - "rtt_ms": 1.629665, + "rtt_ns": 1856958, + "rtt_ms": 1.856958, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:50.944337829Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:49.384216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647704, - "rtt_ms": 1.647704, + "rtt_ns": 1396833, + "rtt_ms": 1.396833, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:50.944437908Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:49.38424-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443222, - "rtt_ms": 2.443222, + "rtt_ns": 2042542, + "rtt_ms": 2.042542, "checkpoint": 0, "vertex_from": "33", "vertex_to": "354", - "timestamp": "2025-11-27T01:21:50.945209176Z" + "timestamp": "2025-11-27T04:01:49.384251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156317, - "rtt_ms": 1.156317, + "rtt_ns": 1307750, + "rtt_ms": 1.30775, "checkpoint": 0, "vertex_from": "33", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.945241296Z" + "timestamp": "2025-11-27T04:01:49.384289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577935, - "rtt_ms": 1.577935, + "rtt_ns": 1755417, + "rtt_ms": 1.755417, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:50.945282056Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:49.384349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100367, - "rtt_ms": 1.100367, + "rtt_ns": 1516125, + "rtt_ms": 1.516125, "checkpoint": 0, "vertex_from": "33", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.945290456Z" + "timestamp": "2025-11-27T04:01:49.38478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651855, - "rtt_ms": 1.651855, + "rtt_ns": 1009833, + "rtt_ms": 1.009833, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:50.945301726Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:49.3848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348735, - "rtt_ms": 1.348735, + "rtt_ns": 1654500, + "rtt_ms": 1.6545, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:50.945392725Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:49.384974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620805, - "rtt_ms": 1.620805, + "rtt_ns": 1558459, + "rtt_ms": 1.558459, "checkpoint": 0, "vertex_from": "33", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.945960224Z" + "timestamp": "2025-11-27T04:01:49.385727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701924, - "rtt_ms": 1.701924, + "rtt_ns": 1514333, + "rtt_ms": 1.514333, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:50.945983913Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:01:49.385755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738154, - "rtt_ms": 1.738154, + "rtt_ns": 1554500, + "rtt_ms": 1.5545, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:50.945984113Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:49.385773-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2015864, - "rtt_ms": 2.015864, + "rtt_ns": 1584500, + "rtt_ms": 1.5845, "checkpoint": 0, "vertex_from": "250", - "timestamp": "2025-11-27T01:21:50.946456802Z" + "timestamp": "2025-11-27T04:01:49.385795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330406, - "rtt_ms": 1.330406, + "rtt_ns": 1504750, + "rtt_ms": 1.50475, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "721", - "timestamp": "2025-11-27T01:21:50.946573872Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:49.385854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291456, - "rtt_ms": 1.291456, + "rtt_ns": 1568334, + "rtt_ms": 1.568334, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:50.946574942Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:49.385858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424755, - "rtt_ms": 1.424755, + "rtt_ns": 1657209, + "rtt_ms": 1.657209, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:50.946637071Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:49.385909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422165, - "rtt_ms": 1.422165, + "rtt_ns": 1836083, + "rtt_ms": 1.836083, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:50.946725251Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:49.386811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368406, - "rtt_ms": 1.368406, + "rtt_ns": 2086291, + "rtt_ms": 2.086291, "checkpoint": 0, "vertex_from": "33", "vertex_to": "646", - "timestamp": "2025-11-27T01:21:50.946762321Z" + "timestamp": "2025-11-27T04:01:49.386867-08:00" }, { "operation": "add_vertex", - "rtt_ns": 795987, - "rtt_ms": 0.795987, + "rtt_ns": 2121167, + "rtt_ms": 2.121167, "checkpoint": 0, "vertex_from": "503", - "timestamp": "2025-11-27T01:21:50.946762681Z" + "timestamp": "2025-11-27T04:01:49.386923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512745, - "rtt_ms": 1.512745, + "rtt_ns": 2123334, + "rtt_ms": 2.123334, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:50.946804821Z" + "vertex_to": "250", + "timestamp": "2025-11-27T04:01:49.387919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486046, - "rtt_ms": 1.486046, + "rtt_ns": 2200083, + "rtt_ms": 2.200083, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:50.947471829Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:49.387956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599405, - "rtt_ms": 1.599405, + "rtt_ns": 2256834, + "rtt_ms": 2.256834, "checkpoint": 0, "vertex_from": "33", "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.947587468Z" + "timestamp": "2025-11-27T04:01:49.387986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650804, - "rtt_ms": 1.650804, + "rtt_ns": 2227916, + "rtt_ms": 2.227916, "checkpoint": 0, "vertex_from": "33", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:50.948227106Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1801754, - "rtt_ms": 1.801754, - "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "250", - "timestamp": "2025-11-27T01:21:50.948259016Z" + "timestamp": "2025-11-27T04:01:49.388003-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055853, - "rtt_ms": 2.055853, + "rtt_ns": 1546208, + "rtt_ms": 1.546208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "35", - "timestamp": "2025-11-27T01:21:50.948783064Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:49.388415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206603, - "rtt_ms": 2.206603, + "rtt_ns": 2573458, + "rtt_ms": 2.573458, "checkpoint": 0, "vertex_from": "33", "vertex_to": "814", - "timestamp": "2025-11-27T01:21:50.948844454Z" + "timestamp": "2025-11-27T04:01:49.388428-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041113, - "rtt_ms": 2.041113, + "rtt_ns": 2655584, + "rtt_ms": 2.655584, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:50.948847184Z" + "vertex_to": "35", + "timestamp": "2025-11-27T04:01:49.388514-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281992, - "rtt_ms": 2.281992, + "rtt_ns": 2615625, + "rtt_ms": 2.615625, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:50.948857244Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:49.388525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301912, - "rtt_ms": 2.301912, + "rtt_ns": 1732875, + "rtt_ms": 1.732875, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:50.949065453Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:49.388546-08:00" }, { "operation": "add_edge", - "rtt_ns": 2382392, - "rtt_ms": 2.382392, + "rtt_ns": 1718334, + "rtt_ms": 1.718334, "checkpoint": 0, "vertex_from": "33", "vertex_to": "503", - "timestamp": "2025-11-27T01:21:50.949145593Z" + "timestamp": "2025-11-27T04:01:49.388642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708594, - "rtt_ms": 1.708594, + "rtt_ns": 1341000, + "rtt_ms": 1.341, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:50.949183363Z" + "vertex_to": "376", + "timestamp": "2025-11-27T04:01:49.389345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011917, - "rtt_ms": 1.011917, + "rtt_ns": 1617708, + "rtt_ms": 1.617708, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:50.949272543Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:49.389539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104077, - "rtt_ms": 1.104077, + "rtt_ns": 1635917, + "rtt_ms": 1.635917, "checkpoint": 0, "vertex_from": "33", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.949332623Z" + "timestamp": "2025-11-27T04:01:49.389593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758484, - "rtt_ms": 1.758484, + "rtt_ns": 1664208, + "rtt_ms": 1.664208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "961", - "timestamp": "2025-11-27T01:21:50.949348192Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 616758, - "rtt_ms": 0.616758, - "checkpoint": 0, - "vertex_from": "223", - "timestamp": "2025-11-27T01:21:50.949685531Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:49.389651-08:00" }, { "operation": "add_edge", - "rtt_ns": 879907, - "rtt_ms": 0.879907, + "rtt_ns": 1469458, + "rtt_ms": 1.469458, "checkpoint": 0, "vertex_from": "33", "vertex_to": "533", - "timestamp": "2025-11-27T01:21:50.949728201Z" + "timestamp": "2025-11-27T04:01:49.389898-08:00" }, { "operation": "add_edge", - "rtt_ns": 964617, - "rtt_ms": 0.964617, + "rtt_ns": 1541917, + "rtt_ms": 1.541917, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "376", - "timestamp": "2025-11-27T01:21:50.949749161Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:49.390059-08:00" }, { "operation": "add_edge", - "rtt_ns": 974137, - "rtt_ms": 0.974137, + "rtt_ns": 1541750, + "rtt_ms": 1.54175, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "61", - "timestamp": "2025-11-27T01:21:50.949819901Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:49.390088-08:00" }, { "operation": "add_edge", - "rtt_ns": 673528, - "rtt_ms": 0.673528, + "rtt_ns": 1685208, + "rtt_ms": 1.685208, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:50.949820401Z" + "vertex_to": "61", + "timestamp": "2025-11-27T04:01:49.390101-08:00" }, { - "operation": "add_edge", - "rtt_ns": 978497, - "rtt_ms": 0.978497, + "operation": "add_vertex", + "rtt_ns": 1831667, + "rtt_ms": 1.831667, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:50.949836851Z" + "vertex_from": "223", + "timestamp": "2025-11-27T04:01:49.390358-08:00" }, { "operation": "add_edge", - "rtt_ns": 852027, - "rtt_ms": 0.852027, + "rtt_ns": 1863292, + "rtt_ms": 1.863292, "checkpoint": 0, "vertex_from": "33", "vertex_to": "78", - "timestamp": "2025-11-27T01:21:50.95003673Z" + "timestamp": "2025-11-27T04:01:49.390506-08:00" }, { "operation": "add_edge", - "rtt_ns": 769877, - "rtt_ms": 0.769877, + "rtt_ns": 1150250, + "rtt_ms": 1.15025, "checkpoint": 0, - "vertex_from": "33", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:50.95004304Z" + "vertex_from": "34", + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:49.39105-08:00" }, { "operation": "add_edge", - "rtt_ns": 707138, - "rtt_ms": 0.707138, + "rtt_ns": 1524292, + "rtt_ms": 1.524292, "checkpoint": 0, "vertex_from": "34", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:50.95005657Z" + "timestamp": "2025-11-27T04:01:49.39112-08:00" }, { "operation": "add_edge", - "rtt_ns": 745347, - "rtt_ms": 0.745347, + "rtt_ns": 1499542, + "rtt_ms": 1.499542, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:50.95007871Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:49.391151-08:00" }, { "operation": "add_edge", - "rtt_ns": 985687, - "rtt_ms": 0.985687, + "rtt_ns": 1721625, + "rtt_ms": 1.721625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:50.950714658Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:49.391262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073546, - "rtt_ms": 1.073546, + "rtt_ns": 1443834, + "rtt_ms": 1.443834, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:50.950894367Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:01:49.391534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245786, - "rtt_ms": 1.245786, + "rtt_ns": 2249459, + "rtt_ms": 2.249459, "checkpoint": 0, "vertex_from": "33", - "vertex_to": "223", - "timestamp": "2025-11-27T01:21:50.950932077Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:49.391595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200226, - "rtt_ms": 1.200226, + "rtt_ns": 1568708, + "rtt_ms": 1.568708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:50.950950527Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:49.391629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669394, - "rtt_ms": 1.669394, + "rtt_ns": 1719708, + "rtt_ms": 1.719708, "checkpoint": 0, "vertex_from": "34", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:50.951506965Z" + "timestamp": "2025-11-27T04:01:49.391822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698244, - "rtt_ms": 1.698244, + "rtt_ns": 1427875, + "rtt_ms": 1.427875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "403", - "timestamp": "2025-11-27T01:21:50.951519685Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:49.39269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549425, - "rtt_ms": 1.549425, + "rtt_ns": 1615375, + "rtt_ms": 1.615375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:50.951588035Z" + "vertex_to": "407", + "timestamp": "2025-11-27T04:01:49.392737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581745, - "rtt_ms": 1.581745, + "rtt_ns": 1433708, + "rtt_ms": 1.433708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:50.951625925Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:49.393063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586795, - "rtt_ms": 1.586795, + "rtt_ns": 2730583, + "rtt_ms": 2.730583, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:50.951666155Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:49.393237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611375, - "rtt_ms": 1.611375, + "rtt_ns": 1704708, + "rtt_ms": 1.704708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "407", - "timestamp": "2025-11-27T01:21:50.951670345Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:49.393301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066287, - "rtt_ms": 1.066287, + "rtt_ns": 2265292, + "rtt_ms": 2.265292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:50.952586662Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:49.393317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719945, - "rtt_ms": 1.719945, + "rtt_ns": 1497291, + "rtt_ms": 1.497291, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "661", - "timestamp": "2025-11-27T01:21:50.952615842Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:49.39332-08:00" }, { "operation": "add_edge", - "rtt_ns": 991707, - "rtt_ms": 0.991707, + "rtt_ns": 2234292, + "rtt_ms": 2.234292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:50.952618792Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:49.393386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688095, - "rtt_ms": 1.688095, + "rtt_ns": 1935875, + "rtt_ms": 1.935875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:50.952639912Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:01:49.393471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996153, - "rtt_ms": 1.996153, + "rtt_ns": 3509791, + "rtt_ms": 3.509791, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:50.952711671Z" + "vertex_from": "33", + "vertex_to": "223", + "timestamp": "2025-11-27T04:01:49.393869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206316, - "rtt_ms": 1.206316, + "rtt_ns": 1629625, + "rtt_ms": 1.629625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:50.952714851Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:49.39432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090616, - "rtt_ms": 1.090616, + "rtt_ns": 1259750, + "rtt_ms": 1.25975, "checkpoint": 0, "vertex_from": "34", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:50.952762741Z" + "timestamp": "2025-11-27T04:01:49.394562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869314, - "rtt_ms": 1.869314, + "rtt_ns": 1537917, + "rtt_ms": 1.537917, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:50.952802901Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:49.394603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225366, - "rtt_ms": 1.225366, + "rtt_ns": 1883667, + "rtt_ms": 1.883667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "466", - "timestamp": "2025-11-27T01:21:50.952893161Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:49.394623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305016, - "rtt_ms": 1.305016, + "rtt_ns": 1732834, + "rtt_ms": 1.732834, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:50.952895351Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:01:49.394972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068836, - "rtt_ms": 1.068836, + "rtt_ns": 1657625, + "rtt_ms": 1.657625, "checkpoint": 0, "vertex_from": "34", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:50.953689378Z" + "timestamp": "2025-11-27T04:01:49.395045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419675, - "rtt_ms": 1.419675, + "rtt_ns": 1848250, + "rtt_ms": 1.84825, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:50.954036947Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:49.395167-08:00" }, { "operation": "add_edge", - "rtt_ns": 2357302, - "rtt_ms": 2.357302, + "rtt_ns": 1879250, + "rtt_ms": 1.87925, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:50.954946114Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:49.3952-08:00" }, { "operation": "add_edge", - "rtt_ns": 2405943, - "rtt_ms": 2.405943, + "rtt_ns": 1409584, + "rtt_ms": 1.409584, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:50.955121754Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:49.395281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740955, - "rtt_ms": 1.740955, + "rtt_ns": 1968333, + "rtt_ms": 1.968333, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:50.955432833Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:49.39544-08:00" }, { "operation": "add_edge", - "rtt_ns": 2361883, - "rtt_ms": 2.361883, + "rtt_ns": 1536042, + "rtt_ms": 1.536042, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:50.955165664Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:49.396098-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286243, - "rtt_ms": 2.286243, + "rtt_ns": 1869250, + "rtt_ms": 1.86925, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "87", - "timestamp": "2025-11-27T01:21:50.955182904Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:49.396191-08:00" }, { "operation": "add_edge", - "rtt_ns": 2508442, - "rtt_ms": 2.508442, + "rtt_ns": 1593459, + "rtt_ms": 1.593459, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:50.955271973Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:49.396197-08:00" }, { "operation": "add_edge", - "rtt_ns": 2651561, - "rtt_ms": 2.651561, + "rtt_ns": 1617416, + "rtt_ms": 1.617416, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:50.955293583Z" + "vertex_to": "57", + "timestamp": "2025-11-27T04:01:49.396241-08:00" }, { "operation": "add_edge", - "rtt_ns": 2581752, - "rtt_ms": 2.581752, + "rtt_ns": 1308333, + "rtt_ms": 1.308333, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:50.955295013Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:49.396354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2484102, - "rtt_ms": 2.484102, + "rtt_ns": 1433583, + "rtt_ms": 1.433583, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "57", - "timestamp": "2025-11-27T01:21:50.955378543Z" + "vertex_to": "87", + "timestamp": "2025-11-27T04:01:49.396407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354206, - "rtt_ms": 1.354206, + "rtt_ns": 1788417, + "rtt_ms": 1.788417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:50.955393363Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:49.398196-08:00" }, { "operation": "add_edge", - "rtt_ns": 625538, - "rtt_ms": 0.625538, + "rtt_ns": 2023750, + "rtt_ms": 2.02375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:50.955572722Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:49.398223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584255, - "rtt_ms": 1.584255, + "rtt_ns": 3184125, + "rtt_ms": 3.184125, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:50.957033388Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:49.398353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694894, - "rtt_ms": 1.694894, + "rtt_ns": 2120584, + "rtt_ms": 2.120584, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:50.957119997Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:49.398362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598645, - "rtt_ms": 1.598645, + "rtt_ns": 2149416, + "rtt_ms": 2.149416, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:50.957129697Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:49.398368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695504, - "rtt_ms": 1.695504, + "rtt_ns": 2021208, + "rtt_ms": 2.021208, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:50.957129857Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:49.398378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674814, - "rtt_ms": 1.674814, + "rtt_ns": 2181500, + "rtt_ms": 2.1815, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:50.957134787Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:49.398389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636434, - "rtt_ms": 1.636434, + "rtt_ns": 2177750, + "rtt_ms": 2.17775, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:50.957141197Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:49.398404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684864, - "rtt_ms": 1.684864, + "rtt_ns": 3247667, + "rtt_ms": 3.247667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:50.957150957Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:49.398448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810324, - "rtt_ms": 1.810324, + "rtt_ns": 2332584, + "rtt_ms": 2.332584, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:50.957295727Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:49.398564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828315, - "rtt_ms": 1.828315, + "rtt_ns": 828125, + "rtt_ms": 0.828125, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:50.957350837Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:49.399053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851294, - "rtt_ms": 1.851294, + "rtt_ns": 855833, + "rtt_ms": 0.855833, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:50.957424896Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:49.399055-08:00" }, { "operation": "bfs", - "rtt_ns": 8405903, - "rtt_ms": 8, + "rtt_ns": 3919709, + "rtt_ms": 3, "checkpoint": 2, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "231", - "554", - "80", - "141", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "936", - "183", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "50", - "43", - "946", - "110", - "340", - "331", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "427", - "856", - "76", - "777", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "117", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "336", - "367", - "92", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "1001", - "398", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "464", - "737", - "578", - "138", - "818", - "855", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "538", - "463", - "388", - "640", - "62", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "956", - "669", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "126", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "558", - "313", - "909", - "66", - "256", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "859", - "676", - "322", - "263", - "650", - "505", - "954", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "603", - "321", - "98", - "528", - "58", - "690", - "1", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "151", - "88", - "636", - "0", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "798", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "413", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "979", - "918", - "432", - "373", - "1008", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "715", - "683", - "273", - "462", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "31", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "162", - "853", - "114", - "820", - "542", - "696", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "670", - "780", - "906", - "663", - "30", - "548" + "0" ], - "timestamp": "2025-11-27T01:21:53.00209182Z" + "timestamp": "2025-11-27T04:01:51.435545-08:00" }, { "operation": "bfs", - "rtt_ns": 4415496, - "rtt_ms": 4, + "rtt_ns": 2135166, + "rtt_ms": 2, "checkpoint": 2, "bfs_start": "1", "bfs_radius": 10, "bfs_result": [ - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "231", - "554", - "80", - "141", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "420", - "203", - "531", - "42", - "299", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "936", - "183", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "50", - "43", - "110", - "340", - "331", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "427", - "856", - "76", - "777", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "117", - "718", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "167", - "707", - "417", - "496", - "310", - "914", - "261", - "497", - "336", - "367", - "92", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "464", - "737", - "578", - "138", - "818", - "855", - "370", - "750", - "805", - "811", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "915", - "405", - "669", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "558", - "313", - "66", - "256", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "339", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "603", - "321", - "98", - "528", - "58", - "690", - "1", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "931", - "278", - "970", - "641", - "706", - "223", - "813", - "793", - "131", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "430", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "798", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "821", - "296", - "790", - "550", - "17", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "979", - "918", - "432", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "162", - "853", - "114", - "820", - "542", - "696", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "670", - "780", - "906", - "30", - "548" + "1" ], - "timestamp": "2025-11-27T01:21:53.006734045Z" + "timestamp": "2025-11-27T04:01:51.43787-08:00" }, { "operation": "bfs", - "rtt_ns": 4038227, - "rtt_ms": 4, + "rtt_ns": 1682834, + "rtt_ms": 1, "checkpoint": 2, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "231", - "554", - "80", - "141", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "420", - "203", - "531", - "42", - "299", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "936", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "50", - "43", - "110", - "340", - "331", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "427", - "856", - "76", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "117", - "718", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "167", - "707", - "417", - "496", - "310", - "914", - "261", - "497", - "336", - "367", - "92", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "464", - "737", - "578", - "138", - "818", - "370", - "750", - "805", - "811", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "915", - "405", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "558", - "313", - "66", - "256", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "339", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "136", - "326", - "613", - "603", - "321", - "98", - "528", - "58", - "690", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "931", - "278", - "970", - "641", - "706", - "223", - "813", - "793", - "131", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "798", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "821", - "296", - "790", - "550", - "17", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "979", - "918", - "432", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "162", - "114", - "820", - "542", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "670", - "780", - "906", - "30", - "548" + "2" ], - "timestamp": "2025-11-27T01:21:53.010990342Z" + "timestamp": "2025-11-27T04:01:51.43976-08:00" }, { "operation": "bfs", - "rtt_ns": 3254499, - "rtt_ms": 3, + "rtt_ns": 1991500, + "rtt_ms": 1, "checkpoint": 2, "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "231", - "554", - "80", - "141", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "420", - "203", - "531", - "42", - "299", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "936", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "503", - "583", - "113", - "407", - "50", - "43", - "110", - "340", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "7", - "25", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "427", - "856", - "76", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "117", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "167", - "707", - "417", - "496", - "310", - "914", - "261", - "336", - "367", - "92", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "464", - "737", - "578", - "138", - "818", - "370", - "805", - "811", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "4", - "610", - "424", - "459", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "915", - "405", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "525", - "832", - "860", - "527", - "90", - "789", - "274", - "152", - "993", - "448", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "558", - "313", - "66", - "256", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "967", - "266", - "338", - "339", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "136", - "326", - "613", - "603", - "321", - "98", - "528", - "58", - "690", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "931", - "278", - "641", - "706", - "223", - "813", - "793", - "131", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "798", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "710", - "296", - "790", - "550", - "17", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "979", - "918", - "432", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "162", - "114", - "820", - "542", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "670", - "780", - "906", - "30", - "548" + "4" ], - "timestamp": "2025-11-27T01:21:53.014863849Z" + "timestamp": "2025-11-27T04:01:51.441903-08:00" }, { "operation": "bfs", - "rtt_ns": 6591678, - "rtt_ms": 6, + "rtt_ns": 1402292, + "rtt_ms": 1, "checkpoint": 2, "bfs_start": "3", "bfs_radius": 10, "bfs_result": [ - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "231", - "554", - "80", - "141", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "420", - "203", - "531", - "42", - "299", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "560", - "39", - "285", - "936", - "45", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "503", - "583", - "113", - "407", - "50", - "43", - "110", - "340", - "331", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "7", - "25", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "801", - "69", - "427", - "856", - "76", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "117", - "718", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "167", - "707", - "417", - "496", - "310", - "914", - "261", - "336", - "367", - "92", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "464", - "737", - "578", - "138", - "818", - "370", - "750", - "805", - "811", - "553", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "915", - "405", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "558", - "313", - "66", - "256", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "967", - "266", - "338", - "339", - "456", - "344", - "816", - "561", - "85", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "136", - "326", - "613", - "603", - "321", - "98", - "528", - "58", - "690", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "772", - "209", - "931", - "278", - "641", - "706", - "223", - "813", - "793", - "131", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "522", - "480", - "342", - "808", - "647", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "798", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "710", - "296", - "790", - "550", - "17", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "979", - "918", - "432", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "776", - "545", - "577", - "356", - "348", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "162", - "114", - "820", - "542", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "670", - "780", - "906", - "30", - "548" + "3" ], - "timestamp": "2025-11-27T01:21:53.021723857Z" + "timestamp": "2025-11-27T04:01:51.443403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236906, - "rtt_ms": 1.236906, + "rtt_ns": 3360792, + "rtt_ms": 3.360792, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.023047972Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:51.446815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315586, - "rtt_ms": 1.315586, + "rtt_ns": 3487375, + "rtt_ms": 3.487375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.023078622Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.446986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766394, - "rtt_ms": 1.766394, + "rtt_ns": 3707666, + "rtt_ms": 3.707666, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.02355686Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:51.44722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780444, - "rtt_ms": 1.780444, + "rtt_ns": 3810542, + "rtt_ms": 3.810542, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:53.02359412Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.447323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789314, - "rtt_ms": 1.789314, + "rtt_ns": 4113500, + "rtt_ms": 4.1135, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.02359788Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.447552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804434, - "rtt_ms": 1.804434, + "rtt_ns": 4093542, + "rtt_ms": 4.093542, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:53.02360539Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.44758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929734, - "rtt_ms": 1.929734, + "rtt_ns": 4230625, + "rtt_ms": 4.230625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "37", - "timestamp": "2025-11-27T01:21:53.02371955Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:51.447717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956414, - "rtt_ms": 1.956414, + "rtt_ns": 4378416, + "rtt_ms": 4.378416, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.02375041Z" + "vertex_to": "37", + "timestamp": "2025-11-27T04:01:51.447854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928374, - "rtt_ms": 1.928374, + "rtt_ns": 4591583, + "rtt_ms": 4.591583, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.02375109Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:51.448105-08:00" }, { "operation": "add_edge", - "rtt_ns": 2008824, - "rtt_ms": 2.008824, + "rtt_ns": 4725125, + "rtt_ms": 4.725125, "checkpoint": 0, "vertex_from": "34", "vertex_to": "142", - "timestamp": "2025-11-27T01:21:53.02376366Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1362026, - "rtt_ms": 1.362026, - "checkpoint": 0, - "vertex_from": "885", - "timestamp": "2025-11-27T01:21:53.024922826Z" + "timestamp": "2025-11-27T04:01:51.448157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195896, - "rtt_ms": 1.195896, + "rtt_ns": 4194125, + "rtt_ms": 4.194125, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.024961476Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:51.451011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431845, - "rtt_ms": 1.431845, + "rtt_ns": 4207750, + "rtt_ms": 4.20775, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:53.025185925Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:51.451196-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1604145, - "rtt_ms": 1.604145, + "operation": "add_vertex", + "rtt_ns": 4355125, + "rtt_ms": 4.355125, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.025211195Z" + "vertex_from": "885", + "timestamp": "2025-11-27T04:01:51.45158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477305, - "rtt_ms": 1.477305, + "rtt_ns": 4473708, + "rtt_ms": 4.473708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.025230535Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.451799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514305, - "rtt_ms": 1.514305, + "rtt_ns": 4292083, + "rtt_ms": 4.292083, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.025235995Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:01:51.451846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661065, - "rtt_ms": 1.661065, + "rtt_ns": 4260666, + "rtt_ms": 4.260666, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.025259305Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.45198-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199213, - "rtt_ms": 2.199213, + "rtt_ns": 4415625, + "rtt_ms": 4.415625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:53.025280465Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.451997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738035, - "rtt_ms": 1.738035, + "rtt_ns": 4284542, + "rtt_ms": 4.284542, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "121", - "timestamp": "2025-11-27T01:21:53.025338515Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.45214-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320213, - "rtt_ms": 2.320213, + "rtt_ns": 4121375, + "rtt_ms": 4.121375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:53.025373705Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:51.452229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221106, - "rtt_ms": 1.221106, + "rtt_ns": 4524250, + "rtt_ms": 4.52425, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "885", - "timestamp": "2025-11-27T01:21:53.026144752Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:51.452684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198226, - "rtt_ms": 1.198226, + "rtt_ns": 4208084, + "rtt_ms": 4.208084, "checkpoint": 0, "vertex_from": "34", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.026162092Z" + "timestamp": "2025-11-27T04:01:51.455223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971963, - "rtt_ms": 1.971963, + "rtt_ns": 4163666, + "rtt_ms": 4.163666, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.027347448Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:51.455362-08:00" }, { "operation": "add_edge", - "rtt_ns": 2660102, - "rtt_ms": 2.660102, + "rtt_ns": 4388292, + "rtt_ms": 4.388292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "119", - "timestamp": "2025-11-27T01:21:53.027897537Z" + "vertex_to": "885", + "timestamp": "2025-11-27T04:01:51.45597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2698741, - "rtt_ms": 2.698741, + "rtt_ns": 4294000, + "rtt_ms": 4.294, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.027959126Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:51.456142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2889961, - "rtt_ms": 2.889961, + "rtt_ns": 4379417, + "rtt_ms": 4.379417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.028122496Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:51.45618-08:00" }, { "operation": "add_edge", - "rtt_ns": 2884621, - "rtt_ms": 2.884621, + "rtt_ns": 3977667, + "rtt_ms": 3.977667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:53.028166316Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:51.456208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2897551, - "rtt_ms": 2.897551, + "rtt_ns": 4389417, + "rtt_ms": 4.389417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.028237586Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.456387-08:00" }, { "operation": "add_edge", - "rtt_ns": 3102610, - "rtt_ms": 3.10261, + "rtt_ns": 4609083, + "rtt_ms": 4.609083, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:53.028316005Z" + "vertex_to": "119", + "timestamp": "2025-11-27T04:01:51.45659-08:00" }, { "operation": "add_edge", - "rtt_ns": 2640202, - "rtt_ms": 2.640202, + "rtt_ns": 4513125, + "rtt_ms": 4.513125, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.028803834Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:51.456654-08:00" }, { "operation": "add_edge", - "rtt_ns": 2688862, - "rtt_ms": 2.688862, + "rtt_ns": 4379583, + "rtt_ms": 4.379583, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:53.028836404Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:51.457065-08:00" }, { "operation": "add_edge", - "rtt_ns": 3689939, - "rtt_ms": 3.689939, + "rtt_ns": 4689250, + "rtt_ms": 4.68925, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.028877734Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.460053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620285, - "rtt_ms": 1.620285, + "rtt_ns": 4164917, + "rtt_ms": 4.164917, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.028969643Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:51.460309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093016, - "rtt_ms": 1.093016, + "rtt_ns": 4164667, + "rtt_ms": 4.164667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:53.028992263Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:51.460345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770295, - "rtt_ms": 1.770295, + "rtt_ns": 5222541, + "rtt_ms": 5.222541, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:53.029731201Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:51.460447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542315, - "rtt_ms": 1.542315, + "rtt_ns": 4792167, + "rtt_ms": 4.792167, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:53.029782191Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:51.461002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666394, - "rtt_ms": 1.666394, + "rtt_ns": 4981292, + "rtt_ms": 4.981292, "checkpoint": 0, "vertex_from": "34", "vertex_to": "553", - "timestamp": "2025-11-27T01:21:53.02983672Z" + "timestamp": "2025-11-27T04:01:51.461371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724344, - "rtt_ms": 1.724344, + "rtt_ns": 5480792, + "rtt_ms": 5.480792, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:53.02984846Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.461454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017666, - "rtt_ms": 1.017666, + "rtt_ns": 4552458, + "rtt_ms": 4.552458, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.02985521Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:51.46162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634025, - "rtt_ms": 1.634025, + "rtt_ns": 5187250, + "rtt_ms": 5.18725, "checkpoint": 0, "vertex_from": "34", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:53.02995781Z" + "timestamp": "2025-11-27T04:01:51.461843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046987, - "rtt_ms": 1.046987, + "rtt_ns": 5272458, + "rtt_ms": 5.272458, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:53.03001899Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:51.461864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758894, - "rtt_ms": 1.758894, + "rtt_ns": 4217416, + "rtt_ms": 4.217416, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:53.030564868Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.464272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710724, - "rtt_ms": 1.710724, + "rtt_ns": 4026542, + "rtt_ms": 4.026542, "checkpoint": 0, "vertex_from": "34", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.030589638Z" + "timestamp": "2025-11-27T04:01:51.464339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616165, - "rtt_ms": 1.616165, + "rtt_ns": 4428459, + "rtt_ms": 4.428459, "checkpoint": 0, "vertex_from": "34", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.030610458Z" + "timestamp": "2025-11-27T04:01:51.464878-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 4627250, + "rtt_ms": 4.62725, + "checkpoint": 0, + "vertex_from": "34", + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:51.464975-08:00" }, { "operation": "add_edge", - "rtt_ns": 948467, - "rtt_ms": 0.948467, + "rtt_ns": 3983167, + "rtt_ms": 3.983167, "checkpoint": 0, "vertex_from": "34", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.030683278Z" + "timestamp": "2025-11-27T04:01:51.464989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652525, - "rtt_ms": 1.652525, + "rtt_ns": 3728375, + "rtt_ms": 3.728375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "60", - "timestamp": "2025-11-27T01:21:53.031503815Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.465101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684025, - "rtt_ms": 1.684025, + "rtt_ns": 4050750, + "rtt_ms": 4.05075, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.031522765Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:01:51.465673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736965, - "rtt_ms": 1.736965, + "rtt_ns": 3940292, + "rtt_ms": 3.940292, "checkpoint": 0, "vertex_from": "34", "vertex_to": "41", - "timestamp": "2025-11-27T01:21:53.031594095Z" + "timestamp": "2025-11-27T04:01:51.465784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880614, - "rtt_ms": 1.880614, + "rtt_ns": 4341709, + "rtt_ms": 4.341709, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.031664635Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.465797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695015, - "rtt_ms": 1.695015, + "rtt_ns": 4074292, + "rtt_ms": 4.074292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.031715615Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.46594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165506, - "rtt_ms": 1.165506, + "rtt_ns": 3421959, + "rtt_ms": 3.421959, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.031757184Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:51.467763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164176, - "rtt_ms": 1.164176, + "rtt_ns": 3582750, + "rtt_ms": 3.58275, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:53.031777124Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.467856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824374, - "rtt_ms": 1.824374, + "rtt_ns": 3543083, + "rtt_ms": 3.543083, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.031784164Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.468423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567295, - "rtt_ms": 1.567295, + "rtt_ns": 2649084, + "rtt_ms": 2.649084, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:53.032252783Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.468447-08:00" }, { "operation": "add_edge", - "rtt_ns": 846467, - "rtt_ms": 0.846467, + "rtt_ns": 3373750, + "rtt_ms": 3.37375, "checkpoint": 0, "vertex_from": "34", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.032353762Z" + "timestamp": "2025-11-27T04:01:51.468476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790524, - "rtt_ms": 1.790524, + "rtt_ns": 3506500, + "rtt_ms": 3.5065, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.032358382Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:51.468497-08:00" }, { "operation": "add_edge", - "rtt_ns": 837247, - "rtt_ms": 0.837247, + "rtt_ns": 2827667, + "rtt_ms": 2.827667, "checkpoint": 0, "vertex_from": "34", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.032361562Z" + "timestamp": "2025-11-27T04:01:51.468501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360826, - "rtt_ms": 1.360826, + "rtt_ns": 3651125, + "rtt_ms": 3.651125, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:53.03311957Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:51.468627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366616, - "rtt_ms": 1.366616, + "rtt_ns": 2875500, + "rtt_ms": 2.8755, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.03314621Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:51.468661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431225, - "rtt_ms": 1.431225, + "rtt_ns": 2991875, + "rtt_ms": 2.991875, "checkpoint": 0, "vertex_from": "34", "vertex_to": "988", - "timestamp": "2025-11-27T01:21:53.03314837Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1560945, - "rtt_ms": 1.560945, - "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:53.03315725Z" + "timestamp": "2025-11-27T04:01:51.468934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519505, - "rtt_ms": 1.519505, + "rtt_ns": 2696750, + "rtt_ms": 2.69675, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.03318634Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.470555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452105, - "rtt_ms": 1.452105, + "rtt_ns": 2834791, + "rtt_ms": 2.834791, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:53.033238109Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:51.4706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634095, - "rtt_ms": 1.634095, + "rtt_ns": 2399584, + "rtt_ms": 2.399584, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.033998547Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:51.470848-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1642925, - "rtt_ms": 1.642925, + "rtt_ns": 2589875, + "rtt_ms": 2.589875, "checkpoint": 0, "vertex_from": "238", - "timestamp": "2025-11-27T01:21:53.034001307Z" + "timestamp": "2025-11-27T04:01:51.471068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649195, - "rtt_ms": 1.649195, + "rtt_ns": 2583917, + "rtt_ms": 2.583917, "checkpoint": 0, "vertex_from": "34", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:53.034009477Z" + "timestamp": "2025-11-27T04:01:51.471083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756284, - "rtt_ms": 1.756284, + "rtt_ns": 2590042, + "rtt_ms": 2.590042, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:53.034010857Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.471093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201926, - "rtt_ms": 1.201926, + "rtt_ns": 3031417, + "rtt_ms": 3.031417, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:53.034389806Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:51.471455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294155, - "rtt_ms": 1.294155, + "rtt_ns": 2850417, + "rtt_ms": 2.850417, "checkpoint": 0, "vertex_from": "34", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.034416475Z" + "timestamp": "2025-11-27T04:01:51.471479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725134, - "rtt_ms": 1.725134, + "rtt_ns": 3099750, + "rtt_ms": 3.09975, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.034883894Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.472036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922883, - "rtt_ms": 1.922883, + "rtt_ns": 3393167, + "rtt_ms": 3.393167, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.035073603Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.472055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1999033, - "rtt_ms": 1.999033, + "rtt_ns": 2598166, + "rtt_ms": 2.598166, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.035146623Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:51.4732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036524, - "rtt_ms": 2.036524, + "rtt_ns": 2409583, + "rtt_ms": 2.409583, "checkpoint": 0, "vertex_from": "34", "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.035276943Z" + "timestamp": "2025-11-27T04:01:51.473259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310145, - "rtt_ms": 1.310145, + "rtt_ns": 2252375, + "rtt_ms": 2.252375, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.035324212Z" + "vertex_to": "39", + "timestamp": "2025-11-27T04:01:51.473732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959553, - "rtt_ms": 1.959553, + "rtt_ns": 2643917, + "rtt_ms": 2.643917, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "238", - "timestamp": "2025-11-27T01:21:53.03596111Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:51.473738-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049123, - "rtt_ms": 2.049123, + "rtt_ns": 2674083, + "rtt_ms": 2.674083, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:53.03606029Z" + "vertex_to": "238", + "timestamp": "2025-11-27T04:01:51.473743-08:00" }, { "operation": "add_edge", - "rtt_ns": 2031713, - "rtt_ms": 2.031713, + "rtt_ns": 3211916, + "rtt_ms": 3.211916, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "39", - "timestamp": "2025-11-27T01:21:53.036422779Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.473769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2463932, - "rtt_ms": 2.463932, + "rtt_ns": 1776292, + "rtt_ms": 1.776292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.036463889Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:51.473833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748194, - "rtt_ms": 1.748194, + "rtt_ns": 2779500, + "rtt_ms": 2.7795, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.036633628Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:51.473864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578975, - "rtt_ms": 1.578975, + "rtt_ns": 1853250, + "rtt_ms": 1.85325, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.036654938Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:51.47389-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238193, - "rtt_ms": 2.238193, + "rtt_ns": 2464333, + "rtt_ms": 2.464333, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.036655808Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.473921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615775, - "rtt_ms": 1.615775, + "rtt_ns": 2269209, + "rtt_ms": 2.269209, "checkpoint": 0, "vertex_from": "34", "vertex_to": "163", - "timestamp": "2025-11-27T01:21:53.036764068Z" + "timestamp": "2025-11-27T04:01:51.47553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526695, - "rtt_ms": 1.526695, + "rtt_ns": 2375542, + "rtt_ms": 2.375542, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.036805048Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.475579-08:00" }, { "operation": "add_edge", - "rtt_ns": 875418, - "rtt_ms": 0.875418, + "rtt_ns": 1821667, + "rtt_ms": 1.821667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.036837848Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:51.475687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520996, - "rtt_ms": 1.520996, + "rtt_ns": 2088834, + "rtt_ms": 2.088834, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.036847488Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.475833-08:00" }, { "operation": "add_edge", - "rtt_ns": 801237, - "rtt_ms": 0.801237, + "rtt_ns": 2122833, + "rtt_ms": 2.122833, "checkpoint": 0, "vertex_from": "34", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:53.036862607Z" + "timestamp": "2025-11-27T04:01:51.475893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175756, - "rtt_ms": 1.175756, + "rtt_ns": 2199791, + "rtt_ms": 2.199791, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:53.037640715Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.47594-08:00" }, { "operation": "add_edge", - "rtt_ns": 949717, - "rtt_ms": 0.949717, + "rtt_ns": 2257209, + "rtt_ms": 2.257209, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.037716395Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.475991-08:00" }, { "operation": "add_edge", - "rtt_ns": 992086, - "rtt_ms": 0.992086, + "rtt_ns": 2122958, + "rtt_ms": 2.122958, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.037798534Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:51.476014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188286, - "rtt_ms": 1.188286, + "rtt_ns": 2234334, + "rtt_ms": 2.234334, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:53.037845154Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:51.476069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230126, - "rtt_ms": 1.230126, + "rtt_ns": 2202958, + "rtt_ms": 2.202958, "checkpoint": 0, "vertex_from": "34", "vertex_to": "173", - "timestamp": "2025-11-27T01:21:53.037885934Z" + "timestamp": "2025-11-27T04:01:51.476126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265616, - "rtt_ms": 1.265616, + "rtt_ns": 2171625, + "rtt_ms": 2.171625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.037900364Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.47786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486325, - "rtt_ms": 1.486325, + "rtt_ns": 2303292, + "rtt_ms": 2.303292, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:53.037910334Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.477883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069587, - "rtt_ms": 1.069587, + "rtt_ns": 2507834, + "rtt_ms": 2.507834, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "451", - "timestamp": "2025-11-27T01:21:53.037934104Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:51.47804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288436, - "rtt_ms": 1.288436, + "rtt_ns": 2333459, + "rtt_ms": 2.333459, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "628", - "timestamp": "2025-11-27T01:21:53.038138293Z" + "vertex_to": "287", + "timestamp": "2025-11-27T04:01:51.478168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330815, - "rtt_ms": 1.330815, + "rtt_ns": 2288667, + "rtt_ms": 2.288667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "287", - "timestamp": "2025-11-27T01:21:53.038170083Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.478281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161986, - "rtt_ms": 1.161986, + "rtt_ns": 2215333, + "rtt_ms": 2.215333, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.038803591Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:51.478287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029697, - "rtt_ms": 1.029697, + "rtt_ns": 2448625, + "rtt_ms": 2.448625, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:53.038829781Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:01:51.47839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115766, - "rtt_ms": 1.115766, + "rtt_ns": 2578667, + "rtt_ms": 2.578667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:53.038834211Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:01:51.478473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009707, - "rtt_ms": 1.009707, + "rtt_ns": 2501667, + "rtt_ms": 2.501667, "checkpoint": 0, "vertex_from": "34", "vertex_to": "154", - "timestamp": "2025-11-27T01:21:53.038856111Z" + "timestamp": "2025-11-27T04:01:51.478634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144317, - "rtt_ms": 1.144317, + "rtt_ns": 2645833, + "rtt_ms": 2.645833, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "355", - "timestamp": "2025-11-27T01:21:53.039046051Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:51.478661-08:00" }, { "operation": "add_edge", - "rtt_ns": 807488, - "rtt_ms": 0.807488, + "rtt_ns": 2050458, + "rtt_ms": 2.050458, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.039612759Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:51.480093-08:00" }, { "operation": "add_edge", - "rtt_ns": 809928, - "rtt_ms": 0.809928, + "rtt_ns": 2274875, + "rtt_ms": 2.274875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:53.039646059Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:01:51.480159-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2307708, + "rtt_ms": 2.307708, + "checkpoint": 0, + "vertex_from": "34", + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:51.480169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574325, - "rtt_ms": 1.574325, + "rtt_ns": 2138958, + "rtt_ms": 2.138958, "checkpoint": 0, "vertex_from": "34", "vertex_to": "172", - "timestamp": "2025-11-27T01:21:53.039714518Z" + "timestamp": "2025-11-27T04:01:51.480421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856184, - "rtt_ms": 1.856184, + "rtt_ns": 2054500, + "rtt_ms": 2.0545, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:53.039744738Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.480446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840474, - "rtt_ms": 1.840474, + "rtt_ns": 2360916, + "rtt_ms": 2.360916, "checkpoint": 0, "vertex_from": "34", "vertex_to": "837", - "timestamp": "2025-11-27T01:21:53.039777178Z" + "timestamp": "2025-11-27T04:01:51.480531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636385, - "rtt_ms": 1.636385, + "rtt_ns": 2875000, + "rtt_ms": 2.875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.039812198Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:51.481511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929154, - "rtt_ms": 1.929154, + "rtt_ns": 3238667, + "rtt_ms": 3.238667, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:53.039841338Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:51.481527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697665, - "rtt_ms": 1.697665, + "rtt_ns": 2898708, + "rtt_ms": 2.898708, "checkpoint": 0, "vertex_from": "34", "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.040555686Z" + "timestamp": "2025-11-27T04:01:51.481561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744495, - "rtt_ms": 1.744495, + "rtt_ns": 3110166, + "rtt_ms": 3.110166, "checkpoint": 0, "vertex_from": "34", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.040575626Z" + "timestamp": "2025-11-27T04:01:51.481585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035976, - "rtt_ms": 1.035976, + "rtt_ns": 2134875, + "rtt_ms": 2.134875, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:53.040683655Z" + "vertex_to": "435", + "timestamp": "2025-11-27T04:01:51.482295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079116, - "rtt_ms": 1.079116, + "rtt_ns": 1917750, + "rtt_ms": 1.91775, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "435", - "timestamp": "2025-11-27T01:21:53.040694035Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:01:51.48234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655594, - "rtt_ms": 1.655594, + "rtt_ns": 2172708, + "rtt_ms": 2.172708, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.040703265Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:51.482343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427146, - "rtt_ms": 1.427146, + "rtt_ns": 2369291, + "rtt_ms": 2.369291, "checkpoint": 0, "vertex_from": "34", - "vertex_to": "835", - "timestamp": "2025-11-27T01:21:53.041143064Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:51.482464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400885, - "rtt_ms": 1.400885, + "rtt_ns": 2069000, + "rtt_ms": 2.069, "checkpoint": 0, - "vertex_from": "35", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.041243913Z" + "vertex_from": "34", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.482516-08:00" }, { "operation": "add_edge", - "rtt_ns": 686507, - "rtt_ms": 0.686507, + "rtt_ns": 2308541, + "rtt_ms": 2.308541, "checkpoint": 0, - "vertex_from": "35", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.041244623Z" + "vertex_from": "34", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.48284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188406, - "rtt_ms": 1.188406, + "rtt_ns": 2317417, + "rtt_ms": 2.317417, "checkpoint": 0, - "vertex_from": "35", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.041873601Z" + "vertex_from": "34", + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:51.483829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202436, - "rtt_ms": 1.202436, + "rtt_ns": 2514167, + "rtt_ms": 2.514167, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.041897891Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.484045-08:00" }, { "operation": "add_edge", - "rtt_ns": 2280512, - "rtt_ms": 2.280512, + "rtt_ns": 2563542, + "rtt_ms": 2.563542, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:53.04209475Z" + "vertex_from": "35", + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.48415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2367132, - "rtt_ms": 2.367132, + "rtt_ns": 2771291, + "rtt_ms": 2.771291, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.04211254Z" + "vertex_from": "35", + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:51.484334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482855, - "rtt_ms": 1.482855, + "rtt_ns": 2146250, + "rtt_ms": 2.14625, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.04218982Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.484443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617524, - "rtt_ms": 1.617524, + "rtt_ns": 2121250, + "rtt_ms": 2.12125, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.04219513Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.484463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2508152, - "rtt_ms": 2.508152, + "rtt_ns": 2083916, + "rtt_ms": 2.083916, "checkpoint": 0, - "vertex_from": "34", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.04228654Z" + "vertex_from": "35", + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.484601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745944, - "rtt_ms": 1.745944, + "rtt_ns": 2168833, + "rtt_ms": 2.168833, "checkpoint": 0, "vertex_from": "35", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.042891868Z" + "timestamp": "2025-11-27T04:01:51.484634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676775, - "rtt_ms": 1.676775, + "rtt_ns": 2336959, + "rtt_ms": 2.336959, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.042921978Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.484683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707115, - "rtt_ms": 1.707115, + "rtt_ns": 2105083, + "rtt_ms": 2.105083, "checkpoint": 0, "vertex_from": "35", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.042952568Z" + "timestamp": "2025-11-27T04:01:51.484946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147516, - "rtt_ms": 1.147516, + "rtt_ns": 1910250, + "rtt_ms": 1.91025, "checkpoint": 0, "vertex_from": "35", "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.043022967Z" + "timestamp": "2025-11-27T04:01:51.485741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345116, - "rtt_ms": 1.345116, + "rtt_ns": 1823417, + "rtt_ms": 1.823417, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "36", - "timestamp": "2025-11-27T01:21:53.043244267Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.486159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242296, - "rtt_ms": 1.242296, + "rtt_ns": 2133250, + "rtt_ms": 2.13325, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.043338366Z" + "vertex_to": "36", + "timestamp": "2025-11-27T04:01:51.486179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205396, - "rtt_ms": 1.205396, + "rtt_ns": 1868458, + "rtt_ms": 1.868458, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.043396136Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.486503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315896, - "rtt_ms": 1.315896, + "rtt_ns": 2401792, + "rtt_ms": 2.401792, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.043429736Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.486555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343066, - "rtt_ms": 1.343066, + "rtt_ns": 2134209, + "rtt_ms": 2.134209, "checkpoint": 0, "vertex_from": "35", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.043539546Z" + "timestamp": "2025-11-27T04:01:51.486598-08:00" }, { "operation": "add_edge", - "rtt_ns": 587168, - "rtt_ms": 0.587168, + "rtt_ns": 2550667, + "rtt_ms": 2.550667, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.043540476Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.486995-08:00" }, { "operation": "add_edge", - "rtt_ns": 792678, - "rtt_ms": 0.792678, + "rtt_ns": 2438333, + "rtt_ms": 2.438333, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.044132404Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.48704-08:00" }, { "operation": "add_edge", - "rtt_ns": 902557, - "rtt_ms": 0.902557, + "rtt_ns": 2128458, + "rtt_ms": 2.128458, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.044148104Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.487076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287446, - "rtt_ms": 1.287446, + "rtt_ns": 2580042, + "rtt_ms": 2.580042, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.044180544Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.487264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915843, - "rtt_ms": 1.915843, + "rtt_ns": 1931625, + "rtt_ms": 1.931625, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.044203303Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.488092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354845, - "rtt_ms": 1.354845, + "rtt_ns": 2104625, + "rtt_ms": 2.104625, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.044277863Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.488285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765895, - "rtt_ms": 1.765895, + "rtt_ns": 2564916, + "rtt_ms": 2.564916, "checkpoint": 0, "vertex_from": "35", "vertex_to": "42", - "timestamp": "2025-11-27T01:21:53.044789852Z" + "timestamp": "2025-11-27T04:01:51.488306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512295, - "rtt_ms": 1.512295, + "rtt_ns": 1658084, + "rtt_ms": 1.658084, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.044943301Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.488735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434225, - "rtt_ms": 1.434225, + "rtt_ns": 2136917, + "rtt_ms": 2.136917, "checkpoint": 0, "vertex_from": "35", "vertex_to": "304", - "timestamp": "2025-11-27T01:21:53.044974821Z" + "timestamp": "2025-11-27T04:01:51.488736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461615, - "rtt_ms": 1.461615, + "rtt_ns": 1760667, + "rtt_ms": 1.760667, "checkpoint": 0, "vertex_from": "35", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.045003221Z" + "timestamp": "2025-11-27T04:01:51.488757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610435, - "rtt_ms": 1.610435, + "rtt_ns": 2045125, + "rtt_ms": 2.045125, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.045007671Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:51.489087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163776, - "rtt_ms": 1.163776, + "rtt_ns": 2706625, + "rtt_ms": 2.706625, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:53.04529718Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.489212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341395, - "rtt_ms": 1.341395, + "rtt_ns": 2675250, + "rtt_ms": 2.67525, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.045491839Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.489231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238816, - "rtt_ms": 1.238816, + "rtt_ns": 2042375, + "rtt_ms": 2.042375, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.045517799Z" + "vertex_to": "945", + "timestamp": "2025-11-27T04:01:51.489308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382085, - "rtt_ms": 1.382085, + "rtt_ns": 1966000, + "rtt_ms": 1.966, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "945", - "timestamp": "2025-11-27T01:21:53.045563899Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.490253-08:00" }, { "operation": "add_edge", - "rtt_ns": 797197, - "rtt_ms": 0.797197, + "rtt_ns": 1995250, + "rtt_ms": 1.99525, "checkpoint": 0, "vertex_from": "35", "vertex_to": "844", - "timestamp": "2025-11-27T01:21:53.045588469Z" + "timestamp": "2025-11-27T04:01:51.490303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412766, - "rtt_ms": 1.412766, + "rtt_ns": 2403042, + "rtt_ms": 2.403042, "checkpoint": 0, "vertex_from": "35", "vertex_to": "405", - "timestamp": "2025-11-27T01:21:53.045616969Z" + "timestamp": "2025-11-27T04:01:51.490496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068587, - "rtt_ms": 1.068587, + "rtt_ns": 1811334, + "rtt_ms": 1.811334, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.046013348Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:01:51.490549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224616, - "rtt_ms": 1.224616, + "rtt_ns": 1872125, + "rtt_ms": 1.872125, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.046228497Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:51.49096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219766, - "rtt_ms": 1.219766, + "rtt_ns": 2227208, + "rtt_ms": 2.227208, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:53.046228907Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.490986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382466, - "rtt_ms": 1.382466, + "rtt_ns": 2346750, + "rtt_ms": 2.34675, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "826", - "timestamp": "2025-11-27T01:21:53.046358557Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.491084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778144, - "rtt_ms": 1.778144, + "rtt_ns": 1883375, + "rtt_ms": 1.883375, "checkpoint": 0, "vertex_from": "35", "vertex_to": "204", - "timestamp": "2025-11-27T01:21:53.047076414Z" + "timestamp": "2025-11-27T04:01:51.491097-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321823, - "rtt_ms": 2.321823, + "rtt_ns": 1869458, + "rtt_ms": 1.869458, "checkpoint": 0, "vertex_from": "35", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.047814602Z" + "timestamp": "2025-11-27T04:01:51.491101-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328963, - "rtt_ms": 2.328963, + "rtt_ns": 1899791, + "rtt_ms": 1.899791, "checkpoint": 0, "vertex_from": "35", "vertex_to": "420", - "timestamp": "2025-11-27T01:21:53.047847822Z" + "timestamp": "2025-11-27T04:01:51.491209-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1816458, + "rtt_ms": 1.816458, + "checkpoint": 0, + "vertex_from": "35", + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.492315-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443862, - "rtt_ms": 2.443862, + "rtt_ns": 2242458, + "rtt_ms": 2.242458, "checkpoint": 0, "vertex_from": "35", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.048008511Z" + "timestamp": "2025-11-27T04:01:51.492499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2008143, - "rtt_ms": 2.008143, + "rtt_ns": 1975000, + "rtt_ms": 1.975, "checkpoint": 0, "vertex_from": "35", "vertex_to": "170", - "timestamp": "2025-11-27T01:21:53.048022901Z" + "timestamp": "2025-11-27T04:01:51.492525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829434, - "rtt_ms": 1.829434, + "rtt_ns": 2314834, + "rtt_ms": 2.314834, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.048059451Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:51.492619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934974, - "rtt_ms": 1.934974, + "rtt_ns": 1874334, + "rtt_ms": 1.874334, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.048164631Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.492861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2573472, - "rtt_ms": 2.573472, + "rtt_ns": 1925833, + "rtt_ms": 1.925833, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.048191291Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.492887-08:00" }, { "operation": "add_edge", - "rtt_ns": 2639582, - "rtt_ms": 2.639582, + "rtt_ns": 2104875, + "rtt_ms": 2.104875, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.048229021Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.493207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951883, - "rtt_ms": 1.951883, + "rtt_ns": 2184750, + "rtt_ms": 2.18475, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.04831229Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:51.493394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263216, - "rtt_ms": 1.263216, + "rtt_ns": 2360792, + "rtt_ms": 2.360792, "checkpoint": 0, "vertex_from": "35", "vertex_to": "344", - "timestamp": "2025-11-27T01:21:53.04834092Z" + "timestamp": "2025-11-27T04:01:51.493459-08:00" }, { "operation": "add_edge", - "rtt_ns": 821407, - "rtt_ms": 0.821407, + "rtt_ns": 2533791, + "rtt_ms": 2.533791, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:53.049051408Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.493619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075187, - "rtt_ms": 1.075187, + "rtt_ns": 1702458, + "rtt_ms": 1.702458, "checkpoint": 0, "vertex_from": "35", "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.049084438Z" + "timestamp": "2025-11-27T04:01:51.49402-08:00" }, { "operation": "add_edge", - "rtt_ns": 958877, - "rtt_ms": 0.958877, + "rtt_ns": 1461792, + "rtt_ms": 1.461792, "checkpoint": 0, "vertex_from": "35", "vertex_to": "184", - "timestamp": "2025-11-27T01:21:53.049124448Z" + "timestamp": "2025-11-27T04:01:51.494083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316616, - "rtt_ms": 1.316616, + "rtt_ns": 2337458, + "rtt_ms": 2.337458, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.049132328Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.494838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174356, - "rtt_ms": 1.174356, + "rtt_ns": 2311625, + "rtt_ms": 2.311625, "checkpoint": 0, "vertex_from": "35", "vertex_to": "658", - "timestamp": "2025-11-27T01:21:53.049234657Z" + "timestamp": "2025-11-27T04:01:51.494838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456485, - "rtt_ms": 1.456485, + "rtt_ns": 2219709, + "rtt_ms": 2.219709, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:53.049305417Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.495082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298166, - "rtt_ms": 1.298166, + "rtt_ns": 2222750, + "rtt_ms": 2.22275, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.049322387Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:51.495111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245756, - "rtt_ms": 1.245756, + "rtt_ns": 1924708, + "rtt_ms": 1.924708, "checkpoint": 0, "vertex_from": "35", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.049559196Z" + "timestamp": "2025-11-27T04:01:51.495133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875994, - "rtt_ms": 1.875994, + "rtt_ns": 1815042, + "rtt_ms": 1.815042, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.050068105Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:51.495436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748755, - "rtt_ms": 1.748755, + "rtt_ns": 2870208, + "rtt_ms": 2.870208, "checkpoint": 0, "vertex_from": "35", "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.050090765Z" + "timestamp": "2025-11-27T04:01:51.496267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116916, - "rtt_ms": 1.116916, + "rtt_ns": 2306375, + "rtt_ms": 2.306375, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:53.050202114Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.496327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401015, - "rtt_ms": 1.401015, + "rtt_ns": 2925833, + "rtt_ms": 2.925833, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.050526363Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:51.496386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475866, - "rtt_ms": 1.475866, + "rtt_ns": 1940458, + "rtt_ms": 1.940458, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "902", - "timestamp": "2025-11-27T01:21:53.050711693Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:51.496781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670965, - "rtt_ms": 1.670965, + "rtt_ns": 2721667, + "rtt_ms": 2.721667, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:53.050724213Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:51.496806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467746, - "rtt_ms": 1.467746, + "rtt_ns": 1986709, + "rtt_ms": 1.986709, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.050791433Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:01:51.496827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668835, - "rtt_ms": 1.668835, + "rtt_ns": 1766834, + "rtt_ms": 1.766834, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:53.050803593Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.49685-08:00" }, { "operation": "add_edge", - "rtt_ns": 852407, - "rtt_ms": 0.852407, + "rtt_ns": 1735583, + "rtt_ms": 1.735583, "checkpoint": 0, "vertex_from": "35", "vertex_to": "83", - "timestamp": "2025-11-27T01:21:53.050921732Z" + "timestamp": "2025-11-27T04:01:51.496869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649605, - "rtt_ms": 1.649605, + "rtt_ns": 2028500, + "rtt_ms": 2.0285, "checkpoint": 0, "vertex_from": "35", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:53.050956732Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.497141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408876, - "rtt_ms": 1.408876, + "rtt_ns": 2734250, + "rtt_ms": 2.73425, "checkpoint": 0, - "vertex_from": "35", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.050969172Z" + "vertex_from": "36", + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:51.498173-08:00" }, { "operation": "add_edge", - "rtt_ns": 851508, - "rtt_ms": 0.851508, + "rtt_ns": 2381458, + "rtt_ms": 2.381458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:53.051054722Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.49871-08:00" }, { "operation": "add_edge", - "rtt_ns": 966807, - "rtt_ms": 0.966807, + "rtt_ns": 1862000, + "rtt_ms": 1.862, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:53.051058922Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.498732-08:00" }, { "operation": "add_edge", - "rtt_ns": 716168, - "rtt_ms": 0.716168, + "rtt_ns": 2483292, + "rtt_ms": 2.483292, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.051243271Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:51.498753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169536, - "rtt_ms": 1.169536, + "rtt_ns": 1873583, + "rtt_ms": 1.873583, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.051882409Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:01:51.499016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109846, - "rtt_ms": 1.109846, + "rtt_ns": 2649250, + "rtt_ms": 2.64925, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.051903409Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.499037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161646, - "rtt_ms": 1.161646, + "rtt_ns": 2233750, + "rtt_ms": 2.23375, "checkpoint": 0, "vertex_from": "36", "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.051966339Z" + "timestamp": "2025-11-27T04:01:51.499062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002047, - "rtt_ms": 1.002047, + "rtt_ns": 2301625, + "rtt_ms": 2.301625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "730", - "timestamp": "2025-11-27T01:21:53.051972329Z" + "vertex_to": "472", + "timestamp": "2025-11-27T04:01:51.499084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255716, - "rtt_ms": 1.255716, + "rtt_ns": 2528000, + "rtt_ms": 2.528, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "472", - "timestamp": "2025-11-27T01:21:53.051981129Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.499379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010746, - "rtt_ms": 1.010746, + "rtt_ns": 2653125, + "rtt_ms": 2.653125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.052071128Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.49946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258436, - "rtt_ms": 1.258436, + "rtt_ns": 1371542, + "rtt_ms": 1.371542, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.052216118Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.500105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310816, - "rtt_ms": 1.310816, + "rtt_ns": 2080916, + "rtt_ms": 2.080916, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.052233388Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.500255-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146383, - "rtt_ms": 2.146383, + "rtt_ns": 1779625, + "rtt_ms": 1.779625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.053201875Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.500491-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087443, - "rtt_ms": 2.087443, + "rtt_ns": 1757834, + "rtt_ms": 1.757834, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.053331284Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:51.500513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831574, - "rtt_ms": 1.831574, + "rtt_ns": 1367791, + "rtt_ms": 1.367791, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.053736683Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:51.500829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800974, - "rtt_ms": 1.800974, + "rtt_ns": 2139917, + "rtt_ms": 2.139917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.053774333Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.501226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863114, - "rtt_ms": 1.863114, + "rtt_ns": 2182709, + "rtt_ms": 2.182709, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:53.053830853Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.501245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772134, - "rtt_ms": 1.772134, + "rtt_ns": 2225708, + "rtt_ms": 2.225708, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.053844022Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:51.501264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871683, - "rtt_ms": 1.871683, + "rtt_ns": 2603000, + "rtt_ms": 2.603, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.053854322Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:51.50162-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089083, - "rtt_ms": 2.089083, + "rtt_ns": 2264458, + "rtt_ms": 2.264458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:53.053973272Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.501646-08:00" }, { "operation": "add_edge", - "rtt_ns": 788307, - "rtt_ms": 0.788307, + "rtt_ns": 1776209, + "rtt_ms": 1.776209, "checkpoint": 0, "vertex_from": "36", "vertex_to": "40", - "timestamp": "2025-11-27T01:21:53.053991532Z" + "timestamp": "2025-11-27T04:01:51.502032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895004, - "rtt_ms": 1.895004, + "rtt_ns": 1562333, + "rtt_ms": 1.562333, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.054112872Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:51.502054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893704, - "rtt_ms": 1.893704, + "rtt_ns": 2136917, + "rtt_ms": 2.136917, "checkpoint": 0, "vertex_from": "36", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.054128162Z" + "timestamp": "2025-11-27T04:01:51.502244-08:00" }, { "operation": "add_edge", - "rtt_ns": 826627, - "rtt_ms": 0.826627, + "rtt_ns": 1749708, + "rtt_ms": 1.749708, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:53.054159421Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.502263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159586, - "rtt_ms": 1.159586, + "rtt_ns": 1451334, + "rtt_ms": 1.451334, "checkpoint": 0, "vertex_from": "36", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.054935029Z" + "timestamp": "2025-11-27T04:01:51.502282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262066, - "rtt_ms": 1.262066, + "rtt_ns": 1961625, + "rtt_ms": 1.961625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.055000419Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:51.503208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240196, - "rtt_ms": 1.240196, + "rtt_ns": 1638333, + "rtt_ms": 1.638333, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.055095998Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.503259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268725, - "rtt_ms": 1.268725, + "rtt_ns": 1624834, + "rtt_ms": 1.624834, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:53.055100718Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:51.503272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700435, - "rtt_ms": 1.700435, + "rtt_ns": 2343208, + "rtt_ms": 2.343208, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:53.055545707Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.503608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785954, - "rtt_ms": 1.785954, + "rtt_ns": 2392500, + "rtt_ms": 2.3925, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:53.055778716Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:51.50362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806464, - "rtt_ms": 1.806464, + "rtt_ns": 1716542, + "rtt_ms": 1.716542, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.055780776Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:51.503772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783804, - "rtt_ms": 1.783804, + "rtt_ns": 1839792, + "rtt_ms": 1.839792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.055912896Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.503873-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334423, - "rtt_ms": 2.334423, + "rtt_ns": 1749000, + "rtt_ms": 1.749, "checkpoint": 0, "vertex_from": "36", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.056494644Z" + "timestamp": "2025-11-27T04:01:51.503994-08:00" }, { "operation": "add_edge", - "rtt_ns": 2480301, - "rtt_ms": 2.480301, + "rtt_ns": 1981542, + "rtt_ms": 1.981542, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.056595133Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:51.504246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889043, - "rtt_ms": 1.889043, + "rtt_ns": 2009417, + "rtt_ms": 2.009417, "checkpoint": 0, "vertex_from": "36", "vertex_to": "170", - "timestamp": "2025-11-27T01:21:53.056890582Z" + "timestamp": "2025-11-27T04:01:51.504292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989473, - "rtt_ms": 1.989473, + "rtt_ns": 1455375, + "rtt_ms": 1.455375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:53.056925702Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.504716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204056, - "rtt_ms": 1.204056, + "rtt_ns": 1730125, + "rtt_ms": 1.730125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.056983832Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.504941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883114, - "rtt_ms": 1.883114, + "rtt_ns": 1688000, + "rtt_ms": 1.688, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.056985142Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:51.504961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930364, - "rtt_ms": 1.930364, + "rtt_ns": 1617125, + "rtt_ms": 1.617125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.057027972Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.505226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213326, - "rtt_ms": 1.213326, + "rtt_ns": 1475750, + "rtt_ms": 1.47575, "checkpoint": 0, "vertex_from": "36", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.057127372Z" + "timestamp": "2025-11-27T04:01:51.505249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601185, - "rtt_ms": 1.601185, + "rtt_ns": 1633375, + "rtt_ms": 1.633375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.057149092Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.505254-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1757500, + "rtt_ms": 1.7575, + "checkpoint": 0, + "vertex_from": "36", + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.505752-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1232726, - "rtt_ms": 1.232726, + "rtt_ns": 1898500, + "rtt_ms": 1.8985, "checkpoint": 0, "vertex_from": "633", - "timestamp": "2025-11-27T01:21:53.05773018Z" + "timestamp": "2025-11-27T04:01:51.505773-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032234, - "rtt_ms": 2.032234, + "rtt_ns": 1629500, + "rtt_ms": 1.6295, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.05781484Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:51.505924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245896, - "rtt_ms": 1.245896, + "rtt_ns": 1763083, + "rtt_ms": 1.763083, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.057841949Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.50601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361386, - "rtt_ms": 1.361386, + "rtt_ns": 1596292, + "rtt_ms": 1.596292, "checkpoint": 0, "vertex_from": "36", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.058390088Z" + "timestamp": "2025-11-27T04:01:51.506558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487636, - "rtt_ms": 1.487636, + "rtt_ns": 1656708, + "rtt_ms": 1.656708, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:53.058414048Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:01:51.506599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511665, - "rtt_ms": 1.511665, + "rtt_ns": 2182000, + "rtt_ms": 2.182, "checkpoint": 0, "vertex_from": "36", "vertex_to": "161", - "timestamp": "2025-11-27T01:21:53.058496637Z" + "timestamp": "2025-11-27T04:01:51.506899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625215, - "rtt_ms": 1.625215, + "rtt_ns": 1699167, + "rtt_ms": 1.699167, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.058516887Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:51.506956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581635, - "rtt_ms": 1.581635, + "rtt_ns": 1763875, + "rtt_ms": 1.763875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "213", - "timestamp": "2025-11-27T01:21:53.058568227Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.507013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067896, - "rtt_ms": 1.067896, + "rtt_ns": 1837208, + "rtt_ms": 1.837208, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "633", - "timestamp": "2025-11-27T01:21:53.058798386Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:51.507064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1950594, - "rtt_ms": 1.950594, + "rtt_ns": 1513000, + "rtt_ms": 1.513, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.059078796Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:51.507266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023203, - "rtt_ms": 2.023203, + "rtt_ns": 1558584, + "rtt_ms": 1.558584, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.059176165Z" + "vertex_to": "633", + "timestamp": "2025-11-27T04:01:51.507332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373165, - "rtt_ms": 1.373165, + "rtt_ns": 2235500, + "rtt_ms": 2.2355, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.059189285Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:51.508246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335935, - "rtt_ms": 1.335935, + "rtt_ns": 2341292, + "rtt_ms": 2.341292, "checkpoint": 0, "vertex_from": "36", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.059726993Z" + "timestamp": "2025-11-27T04:01:51.508267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189736, - "rtt_ms": 1.189736, + "rtt_ns": 2236750, + "rtt_ms": 2.23675, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.059758673Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:51.508798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920684, - "rtt_ms": 1.920684, + "rtt_ns": 2217583, + "rtt_ms": 2.217583, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.059763453Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.508818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315206, - "rtt_ms": 1.315206, + "rtt_ns": 2035625, + "rtt_ms": 2.035625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "936", - "timestamp": "2025-11-27T01:21:53.059812763Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:51.508993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323906, - "rtt_ms": 1.323906, + "rtt_ns": 2141167, + "rtt_ms": 2.141167, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.059842353Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.50941-08:00" }, { "operation": "add_edge", - "rtt_ns": 829167, - "rtt_ms": 0.829167, + "rtt_ns": 2530750, + "rtt_ms": 2.53075, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:53.059909473Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.509432-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1494295, - "rtt_ms": 1.494295, + "operation": "add_vertex", + "rtt_ns": 2101500, + "rtt_ms": 2.1015, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:53.059909513Z" + "vertex_from": "1009", + "timestamp": "2025-11-27T04:01:51.509435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198977, - "rtt_ms": 1.198977, + "rtt_ns": 2492791, + "rtt_ms": 2.492791, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:53.059998733Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:51.509507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509815, - "rtt_ms": 1.509815, + "rtt_ns": 2546000, + "rtt_ms": 2.546, "checkpoint": 0, "vertex_from": "36", "vertex_to": "101", - "timestamp": "2025-11-27T01:21:53.06068694Z" + "timestamp": "2025-11-27T04:01:51.509612-08:00" }, { "operation": "add_edge", - "rtt_ns": 972627, - "rtt_ms": 0.972627, + "rtt_ns": 1383167, + "rtt_ms": 1.383167, "checkpoint": 0, "vertex_from": "36", "vertex_to": "37", - "timestamp": "2025-11-27T01:21:53.06073216Z" + "timestamp": "2025-11-27T04:01:51.50963-08:00" }, { "operation": "add_edge", - "rtt_ns": 986487, - "rtt_ms": 0.986487, + "rtt_ns": 1618167, + "rtt_ms": 1.618167, "checkpoint": 0, "vertex_from": "36", "vertex_to": "802", - "timestamp": "2025-11-27T01:21:53.06075088Z" + "timestamp": "2025-11-27T04:01:51.509885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566205, - "rtt_ms": 1.566205, + "rtt_ns": 1753958, + "rtt_ms": 1.753958, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.06075649Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1080217, - "rtt_ms": 1.080217, - "checkpoint": 0, - "vertex_from": "1009", - "timestamp": "2025-11-27T01:21:53.06080979Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.510553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648095, - "rtt_ms": 1.648095, + "rtt_ns": 1611167, + "rtt_ms": 1.611167, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.061461618Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:51.510605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613194, - "rtt_ms": 1.613194, + "rtt_ns": 1825916, + "rtt_ms": 1.825916, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.061524737Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:51.510647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572244, - "rtt_ms": 1.572244, + "rtt_ns": 1474250, + "rtt_ms": 1.47425, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:53.061572077Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.510885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754834, - "rtt_ms": 1.754834, + "rtt_ns": 1508375, + "rtt_ms": 1.508375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.061597947Z" + "vertex_to": "1009", + "timestamp": "2025-11-27T04:01:51.510944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896343, - "rtt_ms": 1.896343, + "rtt_ns": 1533875, + "rtt_ms": 1.533875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:53.061807106Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:51.510968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440615, - "rtt_ms": 1.440615, + "rtt_ns": 1460458, + "rtt_ms": 1.460458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:53.062128395Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.511073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544175, - "rtt_ms": 1.544175, + "rtt_ns": 1746292, + "rtt_ms": 1.746292, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.062277615Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.511377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562465, - "rtt_ms": 1.562465, + "rtt_ns": 1925792, + "rtt_ms": 1.925792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.062314365Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:51.511434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629775, - "rtt_ms": 1.629775, + "rtt_ns": 1558917, + "rtt_ms": 1.558917, "checkpoint": 0, "vertex_from": "36", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.062387605Z" + "timestamp": "2025-11-27T04:01:51.511445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605064, - "rtt_ms": 1.605064, + "rtt_ns": 1731250, + "rtt_ms": 1.73125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "1009", - "timestamp": "2025-11-27T01:21:53.062415184Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.512381-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1272736, - "rtt_ms": 1.272736, + "operation": "add_edge", + "rtt_ns": 1820166, + "rtt_ms": 1.820166, "checkpoint": 0, - "vertex_from": "127", - "timestamp": "2025-11-27T01:21:53.062872093Z" + "vertex_from": "36", + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.512428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840593, - "rtt_ms": 1.840593, + "rtt_ns": 1888292, + "rtt_ms": 1.888292, "checkpoint": 0, "vertex_from": "36", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.063302861Z" + "timestamp": "2025-11-27T04:01:51.512442-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097703, - "rtt_ms": 2.097703, + "rtt_ns": 1493625, + "rtt_ms": 1.493625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.06362378Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.512463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2150183, - "rtt_ms": 2.150183, + "rtt_ns": 1597000, + "rtt_ms": 1.597, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.06372296Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:51.512543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565165, - "rtt_ms": 1.565165, + "rtt_ns": 1512208, + "rtt_ms": 1.512208, "checkpoint": 0, "vertex_from": "36", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.06384388Z" + "timestamp": "2025-11-27T04:01:51.512587-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2751721, - "rtt_ms": 2.751721, + "operation": "add_vertex", + "rtt_ns": 1757958, + "rtt_ms": 1.757958, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.064559837Z" + "vertex_from": "127", + "timestamp": "2025-11-27T04:01:51.512645-08:00" }, { "operation": "add_edge", - "rtt_ns": 2798091, - "rtt_ms": 2.798091, + "rtt_ns": 1932167, + "rtt_ms": 1.932167, "checkpoint": 0, "vertex_from": "36", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.065113476Z" + "timestamp": "2025-11-27T04:01:51.513311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827265, - "rtt_ms": 1.827265, + "rtt_ns": 2058750, + "rtt_ms": 2.05875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "812", - "timestamp": "2025-11-27T01:21:53.065131336Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.513495-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269833, - "rtt_ms": 2.269833, + "rtt_ns": 2355416, + "rtt_ms": 2.355416, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "127", - "timestamp": "2025-11-27T01:21:53.065142226Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:51.513803-08:00" }, { "operation": "add_edge", - "rtt_ns": 2820751, - "rtt_ms": 2.820751, + "rtt_ns": 1338250, + "rtt_ms": 1.33825, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.065236675Z" + "vertex_to": "127", + "timestamp": "2025-11-27T04:01:51.513984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612305, - "rtt_ms": 1.612305, + "rtt_ns": 1571917, + "rtt_ms": 1.571917, "checkpoint": 0, "vertex_from": "36", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.065237595Z" + "timestamp": "2025-11-27T04:01:51.514002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513705, - "rtt_ms": 1.513705, + "rtt_ns": 1766917, + "rtt_ms": 1.766917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.065237995Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.514232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2934420, - "rtt_ms": 2.93442, + "rtt_ns": 1867042, + "rtt_ms": 1.867042, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.065322905Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:01:51.51425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529265, - "rtt_ms": 1.529265, + "rtt_ns": 1831416, + "rtt_ms": 1.831416, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.065374065Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.514275-08:00" }, { "operation": "add_edge", - "rtt_ns": 3246880, - "rtt_ms": 3.24688, + "rtt_ns": 1719708, + "rtt_ms": 1.719708, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.065377055Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:51.514309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511886, - "rtt_ms": 1.511886, + "rtt_ns": 1810750, + "rtt_ms": 1.81075, "checkpoint": 0, "vertex_from": "36", "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.066072683Z" + "timestamp": "2025-11-27T04:01:51.514356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240396, - "rtt_ms": 1.240396, + "rtt_ns": 1592875, + "rtt_ms": 1.592875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:53.066479141Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:51.514905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415675, - "rtt_ms": 1.415675, + "rtt_ns": 1432375, + "rtt_ms": 1.432375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:53.066549731Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.514928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448975, - "rtt_ms": 1.448975, + "rtt_ns": 1625208, + "rtt_ms": 1.625208, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:53.066563751Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:51.51561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485025, - "rtt_ms": 1.485025, + "rtt_ns": 1616875, + "rtt_ms": 1.616875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.066628141Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:51.51562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443166, - "rtt_ms": 1.443166, + "rtt_ns": 1491208, + "rtt_ms": 1.491208, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:53.066681471Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:51.515767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486386, - "rtt_ms": 1.486386, + "rtt_ns": 2077459, + "rtt_ms": 2.077459, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.066725111Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:51.515882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401825, - "rtt_ms": 1.401825, + "rtt_ns": 1141750, + "rtt_ms": 1.14175, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "611", - "timestamp": "2025-11-27T01:21:53.06677687Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.516071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519725, - "rtt_ms": 1.519725, + "rtt_ns": 1848833, + "rtt_ms": 1.848833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:53.06689756Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:51.516082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123997, - "rtt_ms": 1.123997, + "rtt_ns": 1202750, + "rtt_ms": 1.20275, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:53.067604148Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.516109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546685, - "rtt_ms": 1.546685, + "rtt_ns": 1781416, + "rtt_ms": 1.781416, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.067620598Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:51.516138-08:00" }, { "operation": "add_edge", - "rtt_ns": 2368072, - "rtt_ms": 2.368072, + "rtt_ns": 1903625, + "rtt_ms": 1.903625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:53.067692047Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:01:51.516155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141886, - "rtt_ms": 1.141886, + "rtt_ns": 1860917, + "rtt_ms": 1.860917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.067692707Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.516172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130946, - "rtt_ms": 1.130946, + "rtt_ns": 1435875, + "rtt_ms": 1.435875, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.067695387Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:51.517058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809304, - "rtt_ms": 1.809304, + "rtt_ns": 1458709, + "rtt_ms": 1.458709, "checkpoint": 0, "vertex_from": "36", "vertex_to": "550", - "timestamp": "2025-11-27T01:21:53.068438645Z" + "timestamp": "2025-11-27T04:01:51.51707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664645, - "rtt_ms": 1.664645, + "rtt_ns": 1717625, + "rtt_ms": 1.717625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.068442395Z" + "vertex_to": "45", + "timestamp": "2025-11-27T04:01:51.517486-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1722274, - "rtt_ms": 1.722274, + "operation": "add_vertex", + "rtt_ns": 1452500, + "rtt_ms": 1.4525, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "45", - "timestamp": "2025-11-27T01:21:53.068448485Z" + "vertex_from": "252", + "timestamp": "2025-11-27T04:01:51.517524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776674, - "rtt_ms": 1.776674, + "rtt_ns": 1363917, + "rtt_ms": 1.363917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.068460215Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.517536-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1964004, - "rtt_ms": 1.964004, + "operation": "add_edge", + "rtt_ns": 1389250, + "rtt_ms": 1.38925, "checkpoint": 0, - "vertex_from": "252", - "timestamp": "2025-11-27T01:21:53.068863584Z" + "vertex_from": "36", + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:51.517545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244897, - "rtt_ms": 1.244897, + "rtt_ns": 1673917, + "rtt_ms": 1.673917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:53.068938984Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.517557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328435, - "rtt_ms": 1.328435, + "rtt_ns": 1492292, + "rtt_ms": 1.492292, "checkpoint": 0, "vertex_from": "36", "vertex_to": "43", - "timestamp": "2025-11-27T01:21:53.068950193Z" + "timestamp": "2025-11-27T04:01:51.517602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517946, - "rtt_ms": 1.517946, + "rtt_ns": 1594333, + "rtt_ms": 1.594333, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.069214653Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:51.517734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624415, - "rtt_ms": 1.624415, + "rtt_ns": 1665917, + "rtt_ms": 1.665917, "checkpoint": 0, "vertex_from": "36", "vertex_to": "114", - "timestamp": "2025-11-27T01:21:53.069229823Z" + "timestamp": "2025-11-27T04:01:51.517749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541816, - "rtt_ms": 1.541816, + "rtt_ns": 1449833, + "rtt_ms": 1.449833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:53.069235493Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:51.518521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263806, - "rtt_ms": 1.263806, + "rtt_ns": 1582833, + "rtt_ms": 1.582833, "checkpoint": 0, "vertex_from": "36", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.069703381Z" + "timestamp": "2025-11-27T04:01:51.518644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410516, - "rtt_ms": 1.410516, + "rtt_ns": 1713417, + "rtt_ms": 1.713417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:53.069871831Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.519316-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1459235, - "rtt_ms": 1.459235, + "operation": "add_vertex", + "rtt_ns": 1775500, + "rtt_ms": 1.7755, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "602", - "timestamp": "2025-11-27T01:21:53.06991048Z" + "vertex_from": "492", + "timestamp": "2025-11-27T04:01:51.519323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477455, - "rtt_ms": 1.477455, + "rtt_ns": 2076375, + "rtt_ms": 2.076375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.06992099Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.519635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753915, - "rtt_ms": 1.753915, + "rtt_ns": 2096792, + "rtt_ms": 2.096792, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.070706228Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:51.519635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884924, - "rtt_ms": 1.884924, + "rtt_ns": 2159833, + "rtt_ms": 2.159833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "252", - "timestamp": "2025-11-27T01:21:53.070748988Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:01:51.519648-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1838774, - "rtt_ms": 1.838774, + "operation": "add_edge", + "rtt_ns": 2141333, + "rtt_ms": 2.141333, "checkpoint": 0, - "vertex_from": "492", - "timestamp": "2025-11-27T01:21:53.070783438Z" + "vertex_from": "36", + "vertex_to": "252", + "timestamp": "2025-11-27T04:01:51.519666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570055, - "rtt_ms": 1.570055, + "rtt_ns": 2210500, + "rtt_ms": 2.2105, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:53.070802568Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:51.519961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630544, - "rtt_ms": 1.630544, + "rtt_ns": 1343500, + "rtt_ms": 1.3435, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.070848987Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.519989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177946, - "rtt_ms": 1.177946, + "rtt_ns": 1752083, + "rtt_ms": 1.752083, "checkpoint": 0, "vertex_from": "36", "vertex_to": "829", - "timestamp": "2025-11-27T01:21:53.070883487Z" + "timestamp": "2025-11-27T04:01:51.520274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861454, - "rtt_ms": 1.861454, + "rtt_ns": 2779459, + "rtt_ms": 2.779459, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:53.071101997Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:51.520515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054624, - "rtt_ms": 2.054624, + "rtt_ns": 1643666, + "rtt_ms": 1.643666, "checkpoint": 0, "vertex_from": "36", "vertex_to": "673", - "timestamp": "2025-11-27T01:21:53.071968134Z" + "timestamp": "2025-11-27T04:01:51.520961-08:00" }, { "operation": "add_edge", - "rtt_ns": 2514922, - "rtt_ms": 2.514922, + "rtt_ns": 1311000, + "rtt_ms": 1.311, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.072438502Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:51.520978-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2606151, - "rtt_ms": 2.606151, + "operation": "add_vertex", + "rtt_ns": 1347250, + "rtt_ms": 1.34725, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.072479932Z" + "vertex_from": "443", + "timestamp": "2025-11-27T04:01:51.520985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877594, - "rtt_ms": 1.877594, + "rtt_ns": 1584917, + "rtt_ms": 1.584917, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:53.072728051Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.521222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995863, - "rtt_ms": 1.995863, + "rtt_ns": 1596375, + "rtt_ms": 1.596375, "checkpoint": 0, "vertex_from": "36", "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.072746811Z" + "timestamp": "2025-11-27T04:01:51.521245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945483, - "rtt_ms": 1.945483, + "rtt_ns": 1934625, + "rtt_ms": 1.934625, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.072750531Z" + "vertex_to": "492", + "timestamp": "2025-11-27T04:01:51.521258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989483, - "rtt_ms": 1.989483, + "rtt_ns": 1305125, + "rtt_ms": 1.305125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "492", - "timestamp": "2025-11-27T01:21:53.072773261Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:51.521267-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2066123, - "rtt_ms": 2.066123, + "operation": "add_edge", + "rtt_ns": 1531500, + "rtt_ms": 1.5315, "checkpoint": 0, - "vertex_from": "443", - "timestamp": "2025-11-27T01:21:53.072779101Z" + "vertex_from": "36", + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:51.521522-08:00" }, { "operation": "add_edge", - "rtt_ns": 2363643, - "rtt_ms": 2.363643, + "rtt_ns": 1137958, + "rtt_ms": 1.137958, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:53.07324909Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:51.521654-08:00" }, { "operation": "add_edge", - "rtt_ns": 2521231, - "rtt_ms": 2.521231, + "rtt_ns": 1700709, + "rtt_ms": 1.700709, "checkpoint": 0, "vertex_from": "36", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.073625038Z" + "timestamp": "2025-11-27T04:01:51.521975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779994, - "rtt_ms": 1.779994, + "rtt_ns": 1382250, + "rtt_ms": 1.38225, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:53.073749268Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:51.522347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772734, - "rtt_ms": 1.772734, + "rtt_ns": 1427625, + "rtt_ms": 1.427625, "checkpoint": 0, "vertex_from": "36", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.074254006Z" + "timestamp": "2025-11-27T04:01:51.522407-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1326125, + "rtt_ms": 1.326125, + "checkpoint": 0, + "vertex_from": "36", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:51.522549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692874, - "rtt_ms": 1.692874, + "rtt_ns": 1586334, + "rtt_ms": 1.586334, "checkpoint": 0, "vertex_from": "36", "vertex_to": "443", - "timestamp": "2025-11-27T01:21:53.074472325Z" + "timestamp": "2025-11-27T04:01:51.522571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378335, - "rtt_ms": 1.378335, + "rtt_ns": 1329458, + "rtt_ms": 1.329458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "333", - "timestamp": "2025-11-27T01:21:53.074628675Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.522597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916084, - "rtt_ms": 1.916084, + "rtt_ns": 1430750, + "rtt_ms": 1.43075, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.074645215Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.522678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904654, - "rtt_ms": 1.904654, + "rtt_ns": 1392166, + "rtt_ms": 1.392166, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.074656545Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:01:51.522916-08:00" }, { "operation": "add_edge", - "rtt_ns": 2325902, - "rtt_ms": 2.325902, + "rtt_ns": 1278916, + "rtt_ms": 1.278916, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:53.074765414Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:51.522935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2046633, - "rtt_ms": 2.046633, + "rtt_ns": 1692916, + "rtt_ms": 1.692916, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.074794524Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.522952-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034233, - "rtt_ms": 2.034233, + "rtt_ns": 1480417, + "rtt_ms": 1.480417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.074808574Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:51.523459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818694, - "rtt_ms": 1.818694, + "rtt_ns": 1187708, + "rtt_ms": 1.187708, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.075444932Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:01:51.523868-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057553, - "rtt_ms": 2.057553, + "rtt_ns": 1535791, + "rtt_ms": 1.535791, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:53.075809241Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:51.523885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475986, - "rtt_ms": 1.475986, + "rtt_ns": 1494375, + "rtt_ms": 1.494375, "checkpoint": 0, "vertex_from": "36", "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.075949741Z" + "timestamp": "2025-11-27T04:01:51.523903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384025, - "rtt_ms": 1.384025, + "rtt_ns": 1786708, + "rtt_ms": 1.786708, "checkpoint": 0, "vertex_from": "36", "vertex_to": "820", - "timestamp": "2025-11-27T01:21:53.07601441Z" + "timestamp": "2025-11-27T04:01:51.524337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385335, - "rtt_ms": 1.385335, + "rtt_ns": 1846666, + "rtt_ms": 1.846666, "checkpoint": 0, "vertex_from": "36", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.07604457Z" + "timestamp": "2025-11-27T04:01:51.524444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814754, - "rtt_ms": 1.814754, + "rtt_ns": 1548042, + "rtt_ms": 1.548042, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:53.07607537Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:51.524465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366196, - "rtt_ms": 1.366196, + "rtt_ns": 1912125, + "rtt_ms": 1.912125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.07616216Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:51.524485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879344, - "rtt_ms": 1.879344, + "rtt_ns": 1559458, + "rtt_ms": 1.559458, "checkpoint": 0, "vertex_from": "36", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:53.076691198Z" + "timestamp": "2025-11-27T04:01:51.524495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342056, - "rtt_ms": 1.342056, + "rtt_ns": 1680166, + "rtt_ms": 1.680166, "checkpoint": 0, "vertex_from": "36", "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.076789128Z" + "timestamp": "2025-11-27T04:01:51.524633-08:00" }, { "operation": "add_edge", - "rtt_ns": 2190533, - "rtt_ms": 2.190533, + "rtt_ns": 1332334, + "rtt_ms": 1.332334, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.076837328Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2154283, - "rtt_ms": 2.154283, - "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "236", - "timestamp": "2025-11-27T01:21:53.076921497Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:51.525218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215686, - "rtt_ms": 1.215686, + "rtt_ns": 1776250, + "rtt_ms": 1.77625, "checkpoint": 0, "vertex_from": "36", "vertex_to": "337", - "timestamp": "2025-11-27T01:21:53.077026147Z" + "timestamp": "2025-11-27T04:01:51.525236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591655, - "rtt_ms": 1.591655, + "rtt_ns": 1407833, + "rtt_ms": 1.407833, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:53.077607715Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:51.525311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738604, - "rtt_ms": 1.738604, + "rtt_ns": 1485875, + "rtt_ms": 1.485875, "checkpoint": 0, "vertex_from": "36", "vertex_to": "610", - "timestamp": "2025-11-27T01:21:53.077689895Z" + "timestamp": "2025-11-27T04:01:51.525355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545045, - "rtt_ms": 1.545045, - "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.077708175Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1671775, - "rtt_ms": 1.671775, - "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:53.077717665Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1265666, - "rtt_ms": 1.265666, + "rtt_ns": 1422208, + "rtt_ms": 1.422208, "checkpoint": 0, "vertex_from": "36", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:53.077959514Z" + "timestamp": "2025-11-27T04:01:51.525888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217317, - "rtt_ms": 1.217317, + "rtt_ns": 1290000, + "rtt_ms": 1.29, "checkpoint": 0, "vertex_from": "36", "vertex_to": "649", - "timestamp": "2025-11-27T01:21:53.078142204Z" + "timestamp": "2025-11-27T04:01:51.525924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407655, - "rtt_ms": 1.407655, + "rtt_ns": 1668291, + "rtt_ms": 1.668291, "checkpoint": 0, "vertex_from": "36", "vertex_to": "792", - "timestamp": "2025-11-27T01:21:53.078246723Z" + "timestamp": "2025-11-27T04:01:51.526164-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182273, - "rtt_ms": 2.182273, + "rtt_ns": 1695458, + "rtt_ms": 1.695458, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:53.078258943Z" + "vertex_to": "38", + "timestamp": "2025-11-27T04:01:51.526181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236196, - "rtt_ms": 1.236196, + "rtt_ns": 1820125, + "rtt_ms": 1.820125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.078263703Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.526266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483295, - "rtt_ms": 1.483295, + "rtt_ns": 1954292, + "rtt_ms": 1.954292, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "38", - "timestamp": "2025-11-27T01:21:53.078273803Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:51.526293-08:00" }, { "operation": "add_edge", - "rtt_ns": 795428, - "rtt_ms": 0.795428, + "rtt_ns": 1112500, + "rtt_ms": 1.1125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.078404973Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.526425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262236, - "rtt_ms": 1.262236, + "rtt_ns": 1303417, + "rtt_ms": 1.303417, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:53.078981671Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:51.52654-08:00" }, { "operation": "add_edge", - "rtt_ns": 882637, - "rtt_ms": 0.882637, + "rtt_ns": 1334125, + "rtt_ms": 1.334125, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:53.079026581Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.52669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539455, - "rtt_ms": 1.539455, + "rtt_ns": 1576750, + "rtt_ms": 1.57675, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.07923106Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.526796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302256, - "rtt_ms": 1.302256, + "rtt_ns": 1374042, + "rtt_ms": 1.374042, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.07926351Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:51.527566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555865, - "rtt_ms": 1.555865, + "rtt_ns": 1348375, + "rtt_ms": 1.348375, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.07926575Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:51.527615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729355, - "rtt_ms": 1.729355, + "rtt_ns": 1867333, + "rtt_ms": 1.867333, "checkpoint": 0, - "vertex_from": "37", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.080005708Z" + "vertex_from": "36", + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:51.527758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774455, - "rtt_ms": 1.774455, + "rtt_ns": 1617125, + "rtt_ms": 1.617125, "checkpoint": 0, - "vertex_from": "37", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.080041628Z" + "vertex_from": "36", + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:51.527782-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1657454, - "rtt_ms": 1.657454, + "rtt_ns": 1258500, + "rtt_ms": 1.2585, "checkpoint": 0, "vertex_from": "218", - "timestamp": "2025-11-27T01:21:53.080065297Z" + "timestamp": "2025-11-27T04:01:51.5278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871324, - "rtt_ms": 1.871324, + "rtt_ns": 1891000, + "rtt_ms": 1.891, "checkpoint": 0, "vertex_from": "36", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.080118987Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.527816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207656, - "rtt_ms": 1.207656, + "rtt_ns": 1592750, + "rtt_ms": 1.59275, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.080191937Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.527888-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041144, - "rtt_ms": 2.041144, + "rtt_ns": 1477916, + "rtt_ms": 1.477916, "checkpoint": 0, - "vertex_from": "36", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:53.080302227Z" + "vertex_from": "37", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.527904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516025, - "rtt_ms": 1.516025, + "rtt_ns": 1423417, + "rtt_ms": 1.423417, "checkpoint": 0, "vertex_from": "37", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.080545176Z" + "timestamp": "2025-11-27T04:01:51.52822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403755, - "rtt_ms": 1.403755, + "rtt_ns": 1618209, + "rtt_ms": 1.618209, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:53.080672905Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.528309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493295, - "rtt_ms": 1.493295, + "rtt_ns": 1174000, + "rtt_ms": 1.174, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.080758175Z" + "vertex_to": "218", + "timestamp": "2025-11-27T04:01:51.528974-08:00" }, { "operation": "add_edge", - "rtt_ns": 923957, - "rtt_ms": 0.923957, + "rtt_ns": 1211625, + "rtt_ms": 1.211625, "checkpoint": 0, "vertex_from": "37", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.080931715Z" + "timestamp": "2025-11-27T04:01:51.528994-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1778804, - "rtt_ms": 1.778804, + "rtt_ns": 1438542, + "rtt_ms": 1.438542, "checkpoint": 0, "vertex_from": "952", - "timestamp": "2025-11-27T01:21:53.081013334Z" + "timestamp": "2025-11-27T04:01:51.529007-08:00" }, { "operation": "add_edge", - "rtt_ns": 977336, - "rtt_ms": 0.977336, + "rtt_ns": 1258458, + "rtt_ms": 1.258458, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.081020204Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:51.529017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008677, - "rtt_ms": 1.008677, + "rtt_ns": 1394584, + "rtt_ms": 1.394584, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "218", - "timestamp": "2025-11-27T01:21:53.081074274Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.529212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434835, - "rtt_ms": 1.434835, + "rtt_ns": 1632959, + "rtt_ms": 1.632959, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.081556102Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.529249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384875, - "rtt_ms": 1.384875, + "rtt_ns": 1422125, + "rtt_ms": 1.422125, "checkpoint": 0, "vertex_from": "37", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:53.081578022Z" + "timestamp": "2025-11-27T04:01:51.529326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493765, - "rtt_ms": 1.493765, + "rtt_ns": 1458459, + "rtt_ms": 1.458459, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.081798042Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.529347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771914, - "rtt_ms": 1.771914, + "rtt_ns": 1559917, + "rtt_ms": 1.559917, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.082532599Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.529781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1999313, - "rtt_ms": 1.999313, + "rtt_ns": 1473000, + "rtt_ms": 1.473, "checkpoint": 0, "vertex_from": "37", "vertex_to": "738", - "timestamp": "2025-11-27T01:21:53.082545859Z" + "timestamp": "2025-11-27T04:01:51.529782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899304, - "rtt_ms": 1.899304, + "rtt_ns": 957375, + "rtt_ms": 0.957375, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.082573619Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:51.530285-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113123, - "rtt_ms": 2.113123, + "rtt_ns": 1358375, + "rtt_ms": 1.358375, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.083188947Z" + "vertex_to": "952", + "timestamp": "2025-11-27T04:01:51.530366-08:00" }, { "operation": "add_edge", - "rtt_ns": 2330532, - "rtt_ms": 2.330532, + "rtt_ns": 1774375, + "rtt_ms": 1.774375, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.083263597Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.530749-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275263, - "rtt_ms": 2.275263, + "rtt_ns": 1551042, + "rtt_ms": 1.551042, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "952", - "timestamp": "2025-11-27T01:21:53.083289037Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.530765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743805, - "rtt_ms": 1.743805, + "rtt_ns": 1656000, + "rtt_ms": 1.656, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.083302407Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:51.531004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359292, - "rtt_ms": 2.359292, + "rtt_ns": 1771666, + "rtt_ms": 1.771666, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.083381666Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.531021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818634, - "rtt_ms": 1.818634, + "rtt_ns": 2042166, + "rtt_ms": 2.042166, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.083398036Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.531037-08:00" }, { "operation": "add_edge", - "rtt_ns": 928097, - "rtt_ms": 0.928097, + "rtt_ns": 2120250, + "rtt_ms": 2.12025, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.083463286Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.531138-08:00" }, { "operation": "add_edge", - "rtt_ns": 957287, - "rtt_ms": 0.957287, + "rtt_ns": 1556167, + "rtt_ms": 1.556167, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.083532096Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:51.531339-08:00" }, { "operation": "add_edge", - "rtt_ns": 989427, - "rtt_ms": 0.989427, + "rtt_ns": 1100416, + "rtt_ms": 1.100416, "checkpoint": 0, "vertex_from": "37", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.083537576Z" + "timestamp": "2025-11-27T04:01:51.531386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739164, - "rtt_ms": 1.739164, + "rtt_ns": 1620042, + "rtt_ms": 1.620042, "checkpoint": 0, "vertex_from": "37", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.083538926Z" + "timestamp": "2025-11-27T04:01:51.531402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046276, - "rtt_ms": 1.046276, + "rtt_ns": 1474333, + "rtt_ms": 1.474333, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.084350833Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.531842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114286, - "rtt_ms": 1.114286, + "rtt_ns": 1313500, + "rtt_ms": 1.3135, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.084378923Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:51.532064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027797, - "rtt_ms": 1.027797, + "rtt_ns": 1388792, + "rtt_ms": 1.388792, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.084410773Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.532155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179186, - "rtt_ms": 1.179186, + "rtt_ns": 1373166, + "rtt_ms": 1.373166, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:53.084469813Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:51.53276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438345, - "rtt_ms": 1.438345, + "rtt_ns": 1661000, + "rtt_ms": 1.661, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:53.084628982Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.533001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744335, - "rtt_ms": 1.744335, + "rtt_ns": 2282583, + "rtt_ms": 2.282583, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.085143701Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.533305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628965, - "rtt_ms": 1.628965, + "rtt_ns": 2109375, + "rtt_ms": 2.109375, "checkpoint": 0, "vertex_from": "37", "vertex_to": "403", - "timestamp": "2025-11-27T01:21:53.085167821Z" + "timestamp": "2025-11-27T04:01:51.533512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711835, - "rtt_ms": 1.711835, + "rtt_ns": 2619292, + "rtt_ms": 2.619292, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.085176621Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:51.533624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636915, - "rtt_ms": 1.636915, + "rtt_ns": 2803416, + "rtt_ms": 2.803416, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:53.085177061Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.533842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859764, - "rtt_ms": 1.859764, + "rtt_ns": 1703125, + "rtt_ms": 1.703125, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.0853928Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:51.533859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002517, - "rtt_ms": 1.002517, + "rtt_ns": 2034709, + "rtt_ms": 2.034709, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.08547307Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:51.533877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137357, - "rtt_ms": 1.137357, + "rtt_ns": 2748250, + "rtt_ms": 2.74825, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:53.085767659Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.533887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404166, - "rtt_ms": 1.404166, + "rtt_ns": 1868875, + "rtt_ms": 1.868875, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.085784349Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.533934-08:00" }, { "operation": "add_edge", - "rtt_ns": 810707, - "rtt_ms": 0.810707, + "rtt_ns": 1685208, + "rtt_ms": 1.685208, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "91", - "timestamp": "2025-11-27T01:21:53.085980228Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.534446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701045, - "rtt_ms": 1.701045, + "rtt_ns": 1446542, + "rtt_ms": 1.446542, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.086053458Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.534449-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192453, - "rtt_ms": 2.192453, + "rtt_ns": 1286834, + "rtt_ms": 1.286834, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.086604306Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:51.534799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453145, - "rtt_ms": 1.453145, + "rtt_ns": 1500583, + "rtt_ms": 1.500583, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.086630686Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:51.534806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288346, - "rtt_ms": 1.288346, + "rtt_ns": 1202417, + "rtt_ms": 1.202417, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:53.086682456Z" + "vertex_to": "760", + "timestamp": "2025-11-27T04:01:51.535062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286996, - "rtt_ms": 1.286996, + "rtt_ns": 1316000, + "rtt_ms": 1.316, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.086761376Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.535158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618994, - "rtt_ms": 1.618994, + "rtt_ns": 1316208, + "rtt_ms": 1.316208, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "760", - "timestamp": "2025-11-27T01:21:53.086798875Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:51.535193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654394, - "rtt_ms": 1.654394, + "rtt_ns": 1639417, + "rtt_ms": 1.639417, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.086799425Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:01:51.535264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061006, - "rtt_ms": 1.061006, + "rtt_ns": 1410709, + "rtt_ms": 1.410709, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.086846915Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:51.535346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204116, - "rtt_ms": 1.204116, + "rtt_ns": 1546709, + "rtt_ms": 1.546709, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:53.086972485Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.535435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760724, - "rtt_ms": 1.760724, + "rtt_ns": 1585625, + "rtt_ms": 1.585625, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.087742242Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.536033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112066, - "rtt_ms": 1.112066, + "rtt_ns": 1658167, + "rtt_ms": 1.658167, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:53.087744052Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:51.536108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067616, - "rtt_ms": 1.067616, + "rtt_ns": 1206083, + "rtt_ms": 1.206083, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.087751462Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:51.5364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156756, - "rtt_ms": 1.156756, + "rtt_ns": 1367542, + "rtt_ms": 1.367542, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.087762902Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:51.53643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709254, - "rtt_ms": 1.709254, + "rtt_ns": 1636833, + "rtt_ms": 1.636833, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.087763902Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.536446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235036, - "rtt_ms": 1.235036, + "rtt_ns": 1666583, + "rtt_ms": 1.666583, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.087997742Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:51.536467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288673, - "rtt_ms": 2.288673, + "rtt_ns": 1314167, + "rtt_ms": 1.314167, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "602", - "timestamp": "2025-11-27T01:21:53.089089278Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.536474-08:00" }, { "operation": "add_edge", - "rtt_ns": 2329163, - "rtt_ms": 2.329163, + "rtt_ns": 1288667, + "rtt_ms": 1.288667, "checkpoint": 0, "vertex_from": "37", "vertex_to": "676", - "timestamp": "2025-11-27T01:21:53.089177258Z" + "timestamp": "2025-11-27T04:01:51.536724-08:00" }, { "operation": "add_edge", - "rtt_ns": 2386873, - "rtt_ms": 2.386873, + "rtt_ns": 1396083, + "rtt_ms": 1.396083, "checkpoint": 0, "vertex_from": "37", "vertex_to": "834", - "timestamp": "2025-11-27T01:21:53.089187458Z" + "timestamp": "2025-11-27T04:01:51.536744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228583, - "rtt_ms": 2.228583, + "rtt_ns": 1493166, + "rtt_ms": 1.493166, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.089202118Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:01:51.536758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739945, - "rtt_ms": 1.739945, + "rtt_ns": 1359042, + "rtt_ms": 1.359042, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:53.089486667Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:51.537467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853425, - "rtt_ms": 1.853425, + "rtt_ns": 1293917, + "rtt_ms": 1.293917, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.089606077Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:51.537695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991854, - "rtt_ms": 1.991854, + "rtt_ns": 1678167, + "rtt_ms": 1.678167, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:53.089735576Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.537712-08:00" }, { "operation": "add_edge", - "rtt_ns": 2472193, - "rtt_ms": 2.472193, + "rtt_ns": 1300708, + "rtt_ms": 1.300708, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.090236865Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.537732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2636122, - "rtt_ms": 2.636122, + "rtt_ns": 1299875, + "rtt_ms": 1.299875, "checkpoint": 0, "vertex_from": "37", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.090400354Z" + "timestamp": "2025-11-27T04:01:51.537746-08:00" }, { "operation": "add_edge", - "rtt_ns": 682408, - "rtt_ms": 0.682408, + "rtt_ns": 1278875, + "rtt_ms": 1.278875, "checkpoint": 0, - "vertex_from": "38", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.090419294Z" + "vertex_from": "37", + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.537755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2477752, - "rtt_ms": 2.477752, + "rtt_ns": 1426667, + "rtt_ms": 1.426667, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.090478024Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.537894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425926, - "rtt_ms": 1.425926, + "rtt_ns": 1186792, + "rtt_ms": 1.186792, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.090517444Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:51.537931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401585, - "rtt_ms": 1.401585, + "rtt_ns": 1186417, + "rtt_ms": 1.186417, "checkpoint": 0, "vertex_from": "37", "vertex_to": "793", - "timestamp": "2025-11-27T01:21:53.090590963Z" + "timestamp": "2025-11-27T04:01:51.537946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398945, - "rtt_ms": 1.398945, + "rtt_ns": 1322417, + "rtt_ms": 1.322417, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:53.090602463Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.538047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403025, - "rtt_ms": 1.403025, + "rtt_ns": 1412458, + "rtt_ms": 1.412458, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:53.091010282Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:51.538881-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109073, - "rtt_ms": 2.109073, + "rtt_ns": 1234125, + "rtt_ms": 1.234125, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:53.091287881Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:51.53893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822784, - "rtt_ms": 1.822784, + "rtt_ns": 1500334, + "rtt_ms": 1.500334, "checkpoint": 0, "vertex_from": "37", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:53.091310741Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:51.539214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097456, - "rtt_ms": 1.097456, + "rtt_ns": 1507042, + "rtt_ms": 1.507042, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.091335161Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:51.53924-08:00" }, { "operation": "add_edge", - "rtt_ns": 936157, - "rtt_ms": 0.936157, + "rtt_ns": 1501791, + "rtt_ms": 1.501791, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.091415511Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:51.539257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368875, - "rtt_ms": 1.368875, + "rtt_ns": 1522208, + "rtt_ms": 1.522208, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "873", - "timestamp": "2025-11-27T01:21:53.091887619Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.539454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523235, - "rtt_ms": 1.523235, + "rtt_ns": 1471750, + "rtt_ms": 1.47175, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:53.091944029Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:51.53952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560615, - "rtt_ms": 1.560615, + "rtt_ns": 1628333, + "rtt_ms": 1.628333, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:53.091962949Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:51.539523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467196, - "rtt_ms": 1.467196, + "rtt_ns": 1841584, + "rtt_ms": 1.841584, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.092070579Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.539589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504636, - "rtt_ms": 1.504636, + "rtt_ns": 1725292, + "rtt_ms": 1.725292, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:53.092096729Z" + "vertex_to": "873", + "timestamp": "2025-11-27T04:01:51.539672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353986, - "rtt_ms": 1.353986, + "rtt_ns": 1120750, + "rtt_ms": 1.12075, "checkpoint": 0, "vertex_from": "38", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.092364958Z" + "timestamp": "2025-11-27T04:01:51.540051-08:00" }, { "operation": "add_edge", - "rtt_ns": 927477, - "rtt_ms": 0.927477, + "rtt_ns": 1334125, + "rtt_ms": 1.334125, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.092816196Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:51.540216-08:00" }, { "operation": "add_edge", - "rtt_ns": 785527, - "rtt_ms": 0.785527, + "rtt_ns": 1221958, + "rtt_ms": 1.221958, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.092883026Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.540463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559835, - "rtt_ms": 1.559835, + "rtt_ns": 1219916, + "rtt_ms": 1.219916, "checkpoint": 0, "vertex_from": "38", "vertex_to": "73", - "timestamp": "2025-11-27T01:21:53.092896286Z" + "timestamp": "2025-11-27T04:01:51.540478-08:00" }, { "operation": "add_edge", - "rtt_ns": 959637, - "rtt_ms": 0.959637, + "rtt_ns": 1276417, + "rtt_ms": 1.276417, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.092904466Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:51.540493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525235, - "rtt_ms": 1.525235, + "rtt_ns": 1153041, + "rtt_ms": 1.153041, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:53.092941746Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:51.540743-08:00" }, { "operation": "add_edge", - "rtt_ns": 941796, - "rtt_ms": 0.941796, + "rtt_ns": 1081500, + "rtt_ms": 1.0815, "checkpoint": 0, "vertex_from": "38", "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.093013075Z" + "timestamp": "2025-11-27T04:01:51.540755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767484, - "rtt_ms": 1.767484, + "rtt_ns": 2128458, + "rtt_ms": 2.128458, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.093079065Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.541652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2343682, - "rtt_ms": 2.343682, + "rtt_ns": 2148416, + "rtt_ms": 2.148416, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:53.093632693Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.54167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683254, - "rtt_ms": 1.683254, + "rtt_ns": 2288375, + "rtt_ms": 2.288375, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:53.093649043Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:51.541745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334255, - "rtt_ms": 1.334255, + "rtt_ns": 1723541, + "rtt_ms": 1.723541, "checkpoint": 0, "vertex_from": "38", "vertex_to": "51", - "timestamp": "2025-11-27T01:21:53.093700413Z" + "timestamp": "2025-11-27T04:01:51.54194-08:00" }, { "operation": "add_edge", - "rtt_ns": 917227, - "rtt_ms": 0.917227, + "rtt_ns": 1707917, + "rtt_ms": 1.707917, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.093734093Z" + "vertex_to": "924", + "timestamp": "2025-11-27T04:01:51.542202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927323, - "rtt_ms": 1.927323, + "rtt_ns": 1738458, + "rtt_ms": 1.738458, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.094833059Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.542202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967293, - "rtt_ms": 1.967293, + "rtt_ns": 1742209, + "rtt_ms": 1.742209, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.094910289Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.542221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922724, - "rtt_ms": 1.922724, + "rtt_ns": 2169292, + "rtt_ms": 2.169292, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:53.095003069Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.542222-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024094, - "rtt_ms": 2.024094, + "rtt_ns": 1554083, + "rtt_ms": 1.554083, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:53.095038319Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.54231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2800500, - "rtt_ms": 2.8005, + "rtt_ns": 1595167, + "rtt_ms": 1.595167, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.095684906Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.542339-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133763, - "rtt_ms": 2.133763, + "rtt_ns": 1127083, + "rtt_ms": 1.127083, "checkpoint": 0, "vertex_from": "38", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.095767336Z" + "timestamp": "2025-11-27T04:01:51.542873-08:00" }, { "operation": "add_edge", - "rtt_ns": 2893730, - "rtt_ms": 2.89373, + "rtt_ns": 1515875, + "rtt_ms": 1.515875, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "924", - "timestamp": "2025-11-27T01:21:53.095791906Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:51.543169-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194593, - "rtt_ms": 2.194593, + "rtt_ns": 1348375, + "rtt_ms": 1.348375, "checkpoint": 0, "vertex_from": "38", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.095844816Z" + "timestamp": "2025-11-27T04:01:51.543291-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130333, - "rtt_ms": 2.130333, + "rtt_ns": 1638291, + "rtt_ms": 1.638291, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.095865246Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:51.543309-08:00" }, { "operation": "add_edge", - "rtt_ns": 2252413, - "rtt_ms": 2.252413, + "rtt_ns": 1428375, + "rtt_ms": 1.428375, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.095954026Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:51.543651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473855, - "rtt_ms": 1.473855, + "rtt_ns": 1362958, + "rtt_ms": 1.362958, "checkpoint": 0, "vertex_from": "38", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.096513184Z" + "timestamp": "2025-11-27T04:01:51.543709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722234, - "rtt_ms": 1.722234, + "rtt_ns": 1510625, + "rtt_ms": 1.510625, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:53.096634083Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.543713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647914, - "rtt_ms": 1.647914, + "rtt_ns": 1515250, + "rtt_ms": 1.51525, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.096652193Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.543718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827904, - "rtt_ms": 1.827904, + "rtt_ns": 1505084, + "rtt_ms": 1.505084, "checkpoint": 0, "vertex_from": "38", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:53.096662463Z" + "timestamp": "2025-11-27T04:01:51.543727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479555, - "rtt_ms": 1.479555, + "rtt_ns": 1421291, + "rtt_ms": 1.421291, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:53.097346451Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.543732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591155, - "rtt_ms": 1.591155, + "rtt_ns": 1294417, + "rtt_ms": 1.294417, "checkpoint": 0, "vertex_from": "38", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.097359391Z" + "timestamp": "2025-11-27T04:01:51.544465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697425, - "rtt_ms": 1.697425, + "rtt_ns": 1711916, + "rtt_ms": 1.711916, "checkpoint": 0, "vertex_from": "38", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:53.097384081Z" + "timestamp": "2025-11-27T04:01:51.544586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573255, - "rtt_ms": 1.573255, + "rtt_ns": 1294000, + "rtt_ms": 1.294, "checkpoint": 0, "vertex_from": "38", "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.097419071Z" + "timestamp": "2025-11-27T04:01:51.544604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508205, - "rtt_ms": 1.508205, + "rtt_ns": 1484583, + "rtt_ms": 1.484583, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:53.097463951Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.544777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690355, - "rtt_ms": 1.690355, + "rtt_ns": 1084250, + "rtt_ms": 1.08425, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.097487241Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:51.544794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133716, - "rtt_ms": 1.133716, + "rtt_ns": 1365833, + "rtt_ms": 1.365833, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.0976479Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:51.545019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525376, - "rtt_ms": 1.525376, + "rtt_ns": 1335333, + "rtt_ms": 1.335333, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "43", - "timestamp": "2025-11-27T01:21:53.098178819Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.545054-08:00" }, { "operation": "add_edge", - "rtt_ns": 890867, - "rtt_ms": 0.890867, + "rtt_ns": 1492500, + "rtt_ms": 1.4925, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.098251338Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:51.545207-08:00" }, { "operation": "add_edge", - "rtt_ns": 939567, - "rtt_ms": 0.939567, + "rtt_ns": 1596875, + "rtt_ms": 1.596875, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.098326398Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.54533-08:00" }, { "operation": "add_edge", - "rtt_ns": 963877, - "rtt_ms": 0.963877, + "rtt_ns": 1611958, + "rtt_ms": 1.611958, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.098384018Z" + "vertex_to": "43", + "timestamp": "2025-11-27T04:01:51.54534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722095, - "rtt_ms": 1.722095, + "rtt_ns": 1497667, + "rtt_ms": 1.497667, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.098385808Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.546086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768385, - "rtt_ms": 1.768385, + "rtt_ns": 1351458, + "rtt_ms": 1.351458, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.098404368Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.546147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070907, - "rtt_ms": 1.070907, + "rtt_ns": 1737750, + "rtt_ms": 1.73775, "checkpoint": 0, "vertex_from": "38", "vertex_to": "944", - "timestamp": "2025-11-27T01:21:53.098418648Z" + "timestamp": "2025-11-27T04:01:51.546204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029547, - "rtt_ms": 1.029547, + "rtt_ns": 1626166, + "rtt_ms": 1.626166, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.098494098Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:51.546231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615345, - "rtt_ms": 1.615345, + "rtt_ns": 1409083, + "rtt_ms": 1.409083, "checkpoint": 0, "vertex_from": "38", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.099104016Z" + "timestamp": "2025-11-27T04:01:51.546429-08:00" }, { "operation": "add_edge", - "rtt_ns": 857908, - "rtt_ms": 0.857908, + "rtt_ns": 1669584, + "rtt_ms": 1.669584, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "604", - "timestamp": "2025-11-27T01:21:53.099110386Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.546447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540595, - "rtt_ms": 1.540595, + "rtt_ns": 1417625, + "rtt_ms": 1.417625, "checkpoint": 0, "vertex_from": "38", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.099190545Z" + "timestamp": "2025-11-27T04:01:51.546474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059356, - "rtt_ms": 1.059356, + "rtt_ns": 1492375, + "rtt_ms": 1.492375, "checkpoint": 0, "vertex_from": "38", "vertex_to": "161", - "timestamp": "2025-11-27T01:21:53.099239265Z" + "timestamp": "2025-11-27T04:01:51.5467-08:00" }, { "operation": "add_edge", - "rtt_ns": 936297, - "rtt_ms": 0.936297, + "rtt_ns": 1406584, + "rtt_ms": 1.406584, "checkpoint": 0, "vertex_from": "38", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.099263975Z" + "timestamp": "2025-11-27T04:01:51.546747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328596, - "rtt_ms": 1.328596, + "rtt_ns": 1547875, + "rtt_ms": 1.547875, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.099715544Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:01:51.546879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372445, - "rtt_ms": 1.372445, + "rtt_ns": 1136833, + "rtt_ms": 1.136833, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:53.099792353Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.547613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420695, - "rtt_ms": 1.420695, + "rtt_ns": 1583334, + "rtt_ms": 1.583334, "checkpoint": 0, "vertex_from": "38", "vertex_to": "154", - "timestamp": "2025-11-27T01:21:53.099805623Z" + "timestamp": "2025-11-27T04:01:51.547672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433395, - "rtt_ms": 1.433395, + "rtt_ns": 1589125, + "rtt_ms": 1.589125, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "54", - "timestamp": "2025-11-27T01:21:53.099838783Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.547737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736084, - "rtt_ms": 1.736084, + "rtt_ns": 1526417, + "rtt_ms": 1.526417, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:53.100230862Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:51.547759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287915, - "rtt_ms": 1.287915, + "rtt_ns": 1480042, + "rtt_ms": 1.480042, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.100399441Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:51.547929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209876, - "rtt_ms": 1.209876, + "rtt_ns": 1516417, + "rtt_ms": 1.516417, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.100474611Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:51.547947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248976, - "rtt_ms": 1.248976, + "rtt_ns": 1782208, + "rtt_ms": 1.782208, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.100489281Z" + "vertex_to": "54", + "timestamp": "2025-11-27T04:01:51.547987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491445, - "rtt_ms": 1.491445, + "rtt_ns": 1290458, + "rtt_ms": 1.290458, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:53.100596821Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:51.547992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924304, - "rtt_ms": 1.924304, + "rtt_ns": 1231667, + "rtt_ms": 1.231667, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:53.101116899Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.548113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417576, - "rtt_ms": 1.417576, + "rtt_ns": 1384417, + "rtt_ms": 1.384417, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.101224269Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.548132-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1405459, + "rtt_ms": 1.405459, + "checkpoint": 0, + "vertex_from": "406", + "timestamp": "2025-11-27T04:01:51.549079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512195, - "rtt_ms": 1.512195, + "rtt_ns": 1482250, + "rtt_ms": 1.48225, "checkpoint": 0, "vertex_from": "38", "vertex_to": "156", - "timestamp": "2025-11-27T01:21:53.101229299Z" + "timestamp": "2025-11-27T04:01:51.549098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007407, - "rtt_ms": 1.007407, + "rtt_ns": 1196708, + "rtt_ms": 1.196708, "checkpoint": 0, "vertex_from": "38", "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.101239389Z" + "timestamp": "2025-11-27T04:01:51.549126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478585, - "rtt_ms": 1.478585, + "rtt_ns": 1507708, + "rtt_ms": 1.507708, "checkpoint": 0, "vertex_from": "38", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.101318318Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1689625, - "rtt_ms": 1.689625, - "checkpoint": 0, - "vertex_from": "406", - "timestamp": "2025-11-27T01:21:53.101484298Z" + "timestamp": "2025-11-27T04:01:51.549268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330516, - "rtt_ms": 1.330516, + "rtt_ns": 1546333, + "rtt_ms": 1.546333, "checkpoint": 0, - "vertex_from": "39", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:53.102448005Z" + "vertex_from": "38", + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.549285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884213, - "rtt_ms": 1.884213, + "rtt_ns": 1313625, + "rtt_ms": 1.313625, "checkpoint": 0, - "vertex_from": "39", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.102482164Z" + "vertex_from": "38", + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:51.549303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314635, - "rtt_ms": 1.314635, + "rtt_ns": 1322291, + "rtt_ms": 1.322291, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:53.102539794Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:51.549456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341075, - "rtt_ms": 1.341075, + "rtt_ns": 1415166, + "rtt_ms": 1.415166, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:53.102582304Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.549529-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2216303, - "rtt_ms": 2.216303, + "rtt_ns": 1753750, + "rtt_ms": 1.75375, "checkpoint": 0, "vertex_from": "745", - "timestamp": "2025-11-27T01:21:53.102617994Z" + "timestamp": "2025-11-27T04:01:51.549703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425635, - "rtt_ms": 1.425635, + "rtt_ns": 1742584, + "rtt_ms": 1.742584, + "checkpoint": 0, + "vertex_from": "39", + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.549738-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1404500, + "rtt_ms": 1.4045, "checkpoint": 0, "vertex_from": "39", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.102656514Z" + "timestamp": "2025-11-27T04:01:51.550532-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180253, - "rtt_ms": 2.180253, + "rtt_ns": 1447667, + "rtt_ms": 1.447667, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.102671644Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:51.550546-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245363, - "rtt_ms": 2.245363, + "rtt_ns": 1471666, + "rtt_ms": 1.471666, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "488", - "timestamp": "2025-11-27T01:21:53.102721084Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:51.550551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503795, - "rtt_ms": 1.503795, + "rtt_ns": 2431333, + "rtt_ms": 2.431333, "checkpoint": 0, "vertex_from": "39", "vertex_to": "646", - "timestamp": "2025-11-27T01:21:53.102823123Z" + "timestamp": "2025-11-27T04:01:51.551717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938693, - "rtt_ms": 1.938693, + "rtt_ns": 2025792, + "rtt_ms": 2.025792, "checkpoint": 0, "vertex_from": "38", - "vertex_to": "406", - "timestamp": "2025-11-27T01:21:53.103423301Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1014857, - "rtt_ms": 1.014857, - "checkpoint": 0, - "vertex_from": "39", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:53.103498071Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:01:51.551729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053676, - "rtt_ms": 1.053676, + "rtt_ns": 2431209, + "rtt_ms": 2.431209, "checkpoint": 0, "vertex_from": "39", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.103503601Z" + "timestamp": "2025-11-27T04:01:51.551737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015197, - "rtt_ms": 1.015197, + "rtt_ns": 2214417, + "rtt_ms": 2.214417, "checkpoint": 0, "vertex_from": "39", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:53.103556521Z" + "timestamp": "2025-11-27T04:01:51.551745-08:00" }, { "operation": "add_edge", - "rtt_ns": 922987, - "rtt_ms": 0.922987, + "rtt_ns": 2306500, + "rtt_ms": 2.3065, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.103580921Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:51.551763-08:00" }, { "operation": "add_edge", - "rtt_ns": 909337, - "rtt_ms": 0.909337, + "rtt_ns": 2512708, + "rtt_ms": 2.512708, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:53.103582051Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:51.551781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021367, - "rtt_ms": 1.021367, + "rtt_ns": 2042833, + "rtt_ms": 2.042833, "checkpoint": 0, "vertex_from": "39", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:53.103604611Z" + "timestamp": "2025-11-27T04:01:51.551782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023446, - "rtt_ms": 1.023446, + "rtt_ns": 2038375, + "rtt_ms": 2.038375, "checkpoint": 0, "vertex_from": "39", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.10374551Z" + "timestamp": "2025-11-27T04:01:51.552591-08:00" }, { "operation": "add_edge", - "rtt_ns": 965757, - "rtt_ms": 0.965757, + "rtt_ns": 2084167, + "rtt_ms": 2.084167, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.104465258Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.552617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040517, - "rtt_ms": 1.040517, + "rtt_ns": 2370917, + "rtt_ms": 2.370917, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.104465438Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:51.55292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054127, - "rtt_ms": 1.054127, + "rtt_ns": 1278833, + "rtt_ms": 1.278833, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:53.104559038Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1941964, - "rtt_ms": 1.941964, - "checkpoint": 0, - "vertex_from": "38", - "vertex_to": "745", - "timestamp": "2025-11-27T01:21:53.104560348Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.553008-08:00" }, { "operation": "add_edge", - "rtt_ns": 2383333, - "rtt_ms": 2.383333, + "rtt_ns": 1486167, + "rtt_ms": 1.486167, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.105207086Z" + "vertex_to": "755", + "timestamp": "2025-11-27T04:01:51.55325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604995, - "rtt_ms": 1.604995, + "rtt_ns": 1473583, + "rtt_ms": 1.473583, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.105351245Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.553258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807484, - "rtt_ms": 1.807484, + "rtt_ns": 1552375, + "rtt_ms": 1.552375, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "755", - "timestamp": "2025-11-27T01:21:53.105366145Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.553335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762864, - "rtt_ms": 1.762864, + "rtt_ns": 2189625, + "rtt_ms": 2.189625, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "40", - "timestamp": "2025-11-27T01:21:53.105368115Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.553908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807194, - "rtt_ms": 1.807194, + "rtt_ns": 2317958, + "rtt_ms": 2.317958, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.105389935Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:51.554064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814684, - "rtt_ms": 1.814684, + "rtt_ns": 1489834, + "rtt_ms": 1.489834, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.105396865Z" + "vertex_to": "40", + "timestamp": "2025-11-27T04:01:51.554082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047876, - "rtt_ms": 1.047876, + "rtt_ns": 2360166, + "rtt_ms": 2.360166, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.106255792Z" + "vertex_from": "39", + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.5541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722124, - "rtt_ms": 1.722124, + "rtt_ns": 1195000, + "rtt_ms": 1.195, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.106282212Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.554117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826914, - "rtt_ms": 1.826914, + "rtt_ns": 1677667, + "rtt_ms": 1.677667, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.106293242Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:51.554687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775214, - "rtt_ms": 1.775214, + "rtt_ns": 1444500, + "rtt_ms": 1.4445, "checkpoint": 0, "vertex_from": "39", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.106336562Z" + "timestamp": "2025-11-27T04:01:51.554706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964914, - "rtt_ms": 1.964914, + "rtt_ns": 2409167, + "rtt_ms": 2.409167, "checkpoint": 0, "vertex_from": "39", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:53.106432022Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.555027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062637, - "rtt_ms": 1.062637, + "rtt_ns": 1172167, + "rtt_ms": 1.172167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.106460992Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.555255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079677, - "rtt_ms": 1.079677, + "rtt_ns": 2406000, + "rtt_ms": 2.406, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.106470432Z" + "vertex_from": "39", + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.555657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177056, - "rtt_ms": 1.177056, + "rtt_ns": 2120042, + "rtt_ms": 2.120042, "checkpoint": 0, "vertex_from": "40", "vertex_to": "420", - "timestamp": "2025-11-27T01:21:53.106544051Z" + "timestamp": "2025-11-27T04:01:51.556185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194406, - "rtt_ms": 1.194406, + "rtt_ns": 2102500, + "rtt_ms": 2.1025, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.106563251Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.556204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793774, - "rtt_ms": 1.793774, + "rtt_ns": 2320708, + "rtt_ms": 2.320708, "checkpoint": 0, "vertex_from": "40", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.107146779Z" + "timestamp": "2025-11-27T04:01:51.556229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181406, - "rtt_ms": 1.181406, + "rtt_ns": 1156417, + "rtt_ms": 1.156417, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.107465138Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:51.556415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266496, - "rtt_ms": 1.266496, + "rtt_ns": 1744959, + "rtt_ms": 1.744959, "checkpoint": 0, "vertex_from": "40", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.107523158Z" + "timestamp": "2025-11-27T04:01:51.556434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308926, - "rtt_ms": 1.308926, + "rtt_ns": 2456459, + "rtt_ms": 2.456459, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.107646608Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.556575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377366, - "rtt_ms": 1.377366, + "rtt_ns": 3256500, + "rtt_ms": 3.2565, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.107671928Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.556592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296255, - "rtt_ms": 1.296255, + "rtt_ns": 1607542, + "rtt_ms": 1.607542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.107757887Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.556635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250796, - "rtt_ms": 1.250796, + "rtt_ns": 1997084, + "rtt_ms": 1.997084, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.107795447Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:51.556704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445365, - "rtt_ms": 1.445365, + "rtt_ns": 1119125, + "rtt_ms": 1.119125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.107916577Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:51.557695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503885, - "rtt_ms": 1.503885, + "rtt_ns": 2057750, + "rtt_ms": 2.05775, "checkpoint": 0, "vertex_from": "40", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:53.107936547Z" + "timestamp": "2025-11-27T04:01:51.557716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836394, - "rtt_ms": 1.836394, + "rtt_ns": 1658666, + "rtt_ms": 1.658666, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.108400565Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:51.557863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323546, - "rtt_ms": 1.323546, + "rtt_ns": 1790875, + "rtt_ms": 1.790875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.108470955Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.558021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090297, - "rtt_ms": 1.090297, + "rtt_ns": 1950625, + "rtt_ms": 1.950625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:53.108556425Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.558137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009887, - "rtt_ms": 1.009887, + "rtt_ns": 1567125, + "rtt_ms": 1.567125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.108657375Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.558159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012017, - "rtt_ms": 1.012017, + "rtt_ns": 1754750, + "rtt_ms": 1.75475, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "916", - "timestamp": "2025-11-27T01:21:53.108684695Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.55819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173136, - "rtt_ms": 1.173136, + "rtt_ns": 1651167, + "rtt_ms": 1.651167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.108696904Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.558289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622605, - "rtt_ms": 1.622605, + "rtt_ns": 1894834, + "rtt_ms": 1.894834, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.109381572Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.55831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642465, - "rtt_ms": 1.642465, + "rtt_ns": 1784334, + "rtt_ms": 1.784334, + "checkpoint": 0, + "vertex_from": "40", + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:51.55849-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1255542, + "rtt_ms": 1.255542, "checkpoint": 0, "vertex_from": "40", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:53.109438772Z" + "timestamp": "2025-11-27T04:01:51.558972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544905, - "rtt_ms": 1.544905, + "rtt_ns": 1659333, + "rtt_ms": 1.659333, "checkpoint": 0, "vertex_from": "40", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.109462162Z" + "timestamp": "2025-11-27T04:01:51.559524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568895, - "rtt_ms": 1.568895, + "rtt_ns": 2021208, + "rtt_ms": 2.021208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:53.109506542Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.559717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318346, - "rtt_ms": 1.318346, + "rtt_ns": 1588916, + "rtt_ms": 1.588916, "checkpoint": 0, "vertex_from": "40", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.109719661Z" + "timestamp": "2025-11-27T04:01:51.559727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369476, - "rtt_ms": 1.369476, + "rtt_ns": 1448500, + "rtt_ms": 1.4485, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.109926561Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.559739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359736, - "rtt_ms": 1.359736, + "rtt_ns": 1580292, + "rtt_ms": 1.580292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "930", - "timestamp": "2025-11-27T01:21:53.1100611Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.559741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682035, - "rtt_ms": 1.682035, + "rtt_ns": 1726750, + "rtt_ms": 1.72675, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.11015376Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:51.559749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512645, - "rtt_ms": 1.512645, + "rtt_ns": 1566209, + "rtt_ms": 1.566209, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.11019788Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.559759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606115, - "rtt_ms": 1.606115, + "rtt_ns": 1348833, + "rtt_ms": 1.348833, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.11026412Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:01:51.559839-08:00" }, { "operation": "add_edge", - "rtt_ns": 996767, - "rtt_ms": 0.996767, + "rtt_ns": 1697250, + "rtt_ms": 1.69725, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.110380119Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:51.560008-08:00" }, { "operation": "add_edge", - "rtt_ns": 911587, - "rtt_ms": 0.911587, + "rtt_ns": 1220292, + "rtt_ms": 1.220292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.110418729Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.560194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023457, - "rtt_ms": 1.023457, + "rtt_ns": 1322208, + "rtt_ms": 1.322208, "checkpoint": 0, "vertex_from": "40", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.110463329Z" + "timestamp": "2025-11-27T04:01:51.560847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427096, - "rtt_ms": 1.427096, + "rtt_ns": 1189750, + "rtt_ms": 1.18975, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.110890198Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.56103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218536, - "rtt_ms": 1.218536, + "rtt_ns": 1408875, + "rtt_ms": 1.408875, "checkpoint": 0, "vertex_from": "40", "vertex_to": "934", - "timestamp": "2025-11-27T01:21:53.111146847Z" + "timestamp": "2025-11-27T04:01:51.561151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478116, - "rtt_ms": 1.478116, + "rtt_ns": 1491709, + "rtt_ms": 1.491709, "checkpoint": 0, "vertex_from": "40", "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.111198947Z" + "timestamp": "2025-11-27T04:01:51.561234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701455, - "rtt_ms": 1.701455, + "rtt_ns": 1625542, + "rtt_ms": 1.625542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "286", - "timestamp": "2025-11-27T01:21:53.111763785Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.561344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655105, - "rtt_ms": 1.655105, + "rtt_ns": 1656292, + "rtt_ms": 1.656292, "checkpoint": 0, "vertex_from": "40", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.111810705Z" + "timestamp": "2025-11-27T04:01:51.561416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654214, - "rtt_ms": 1.654214, + "rtt_ns": 1755750, + "rtt_ms": 1.75575, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.111852744Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:51.561484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141283, - "rtt_ms": 2.141283, + "rtt_ns": 1741958, + "rtt_ms": 1.741958, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.112406383Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:01:51.561492-08:00" }, { "operation": "add_edge", - "rtt_ns": 2389942, - "rtt_ms": 2.389942, + "rtt_ns": 1495625, + "rtt_ms": 1.495625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.112809741Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:51.561506-08:00" }, { "operation": "add_edge", - "rtt_ns": 2195132, - "rtt_ms": 2.195132, + "rtt_ns": 1408959, + "rtt_ms": 1.408959, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.11308679Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.561604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2753041, - "rtt_ms": 2.753041, + "rtt_ns": 1251084, + "rtt_ms": 1.251084, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.11313517Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.562099-08:00" }, { "operation": "add_edge", - "rtt_ns": 3259849, - "rtt_ms": 3.259849, + "rtt_ns": 1889417, + "rtt_ms": 1.889417, "checkpoint": 0, "vertex_from": "40", "vertex_to": "543", - "timestamp": "2025-11-27T01:21:53.113724298Z" + "timestamp": "2025-11-27T04:01:51.562921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2667421, - "rtt_ms": 2.667421, + "rtt_ns": 1794542, + "rtt_ms": 1.794542, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.113867238Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.562946-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778331, - "rtt_ms": 2.778331, + "rtt_ns": 1864125, + "rtt_ms": 1.864125, "checkpoint": 0, "vertex_from": "40", "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.113926297Z" + "timestamp": "2025-11-27T04:01:51.563099-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185492, - "rtt_ms": 2.185492, + "rtt_ns": 1702875, + "rtt_ms": 1.702875, "checkpoint": 0, "vertex_from": "40", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.113950907Z" + "timestamp": "2025-11-27T04:01:51.56312-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2166612, - "rtt_ms": 2.166612, + "operation": "add_vertex", + "rtt_ns": 1413083, + "rtt_ms": 1.413083, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.113978107Z" + "vertex_from": "973", + "timestamp": "2025-11-27T04:01:51.563515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201813, - "rtt_ms": 2.201813, + "rtt_ns": 2185834, + "rtt_ms": 2.185834, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.114055517Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.563532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737034, - "rtt_ms": 1.737034, + "rtt_ns": 2025416, + "rtt_ms": 2.025416, "checkpoint": 0, "vertex_from": "40", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.114144907Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1071927, - "rtt_ms": 1.071927, - "checkpoint": 0, - "vertex_from": "973", - "timestamp": "2025-11-27T01:21:53.114160667Z" + "timestamp": "2025-11-27T04:01:51.563532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356066, - "rtt_ms": 1.356066, + "rtt_ns": 2062959, + "rtt_ms": 2.062959, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:53.114167327Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.563548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045947, - "rtt_ms": 1.045947, + "rtt_ns": 1955459, + "rtt_ms": 1.955459, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.114182317Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:51.56356-08:00" }, { "operation": "add_edge", - "rtt_ns": 762058, - "rtt_ms": 0.762058, + "rtt_ns": 2284000, + "rtt_ms": 2.284, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:53.114490636Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.563777-08:00" }, { "operation": "add_edge", - "rtt_ns": 629078, - "rtt_ms": 0.629078, + "rtt_ns": 1367042, + "rtt_ms": 1.367042, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.114607795Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.56429-08:00" }, { "operation": "add_edge", - "rtt_ns": 845737, - "rtt_ms": 0.845737, + "rtt_ns": 1281625, + "rtt_ms": 1.281625, "checkpoint": 0, "vertex_from": "40", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.114714975Z" + "timestamp": "2025-11-27T04:01:51.564383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110686, - "rtt_ms": 1.110686, + "rtt_ns": 1568292, + "rtt_ms": 1.568292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.115259703Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:51.564516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122966, - "rtt_ms": 1.122966, + "rtt_ns": 1412708, + "rtt_ms": 1.412708, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.115307653Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.564534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190766, - "rtt_ms": 1.190766, + "rtt_ns": 1512166, + "rtt_ms": 1.512166, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "973", - "timestamp": "2025-11-27T01:21:53.115351783Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.565045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423256, - "rtt_ms": 1.423256, + "rtt_ns": 1505250, + "rtt_ms": 1.50525, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.115375653Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.565066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354496, - "rtt_ms": 1.354496, + "rtt_ns": 1457125, + "rtt_ms": 1.457125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.115410663Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.565236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603955, - "rtt_ms": 1.603955, + "rtt_ns": 1709250, + "rtt_ms": 1.70925, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.115531812Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.565258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393935, - "rtt_ms": 1.393935, + "rtt_ns": 1739250, + "rtt_ms": 1.73925, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.115562642Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.565272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554505, - "rtt_ms": 1.554505, + "rtt_ns": 1763500, + "rtt_ms": 1.7635, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "63", - "timestamp": "2025-11-27T01:21:53.11616386Z" + "vertex_to": "973", + "timestamp": "2025-11-27T04:01:51.565278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816334, - "rtt_ms": 1.816334, + "rtt_ns": 1399000, + "rtt_ms": 1.399, "checkpoint": 0, "vertex_from": "40", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.11630893Z" + "timestamp": "2025-11-27T04:01:51.565785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047627, - "rtt_ms": 1.047627, + "rtt_ns": 1332208, + "rtt_ms": 1.332208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.11630912Z" + "vertex_to": "63", + "timestamp": "2025-11-27T04:01:51.565849-08:00" }, { "operation": "add_edge", - "rtt_ns": 913547, - "rtt_ms": 0.913547, + "rtt_ns": 1610750, + "rtt_ms": 1.61075, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.11632574Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.565901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832194, - "rtt_ms": 1.832194, + "rtt_ns": 1395250, + "rtt_ms": 1.39525, "checkpoint": 0, "vertex_from": "40", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.116548959Z" + "timestamp": "2025-11-27T04:01:51.56593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265806, - "rtt_ms": 1.265806, + "rtt_ns": 1246708, + "rtt_ms": 1.246708, "checkpoint": 0, "vertex_from": "40", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:53.116579839Z" + "timestamp": "2025-11-27T04:01:51.566314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421695, - "rtt_ms": 1.421695, + "rtt_ns": 1188000, + "rtt_ms": 1.188, "checkpoint": 0, "vertex_from": "40", "vertex_to": "151", - "timestamp": "2025-11-27T01:21:53.116775148Z" + "timestamp": "2025-11-27T04:01:51.566426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284206, - "rtt_ms": 1.284206, + "rtt_ns": 1627750, + "rtt_ms": 1.62775, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.116817158Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.566675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443435, - "rtt_ms": 1.443435, + "rtt_ns": 1466834, + "rtt_ms": 1.466834, "checkpoint": 0, "vertex_from": "40", "vertex_to": "229", - "timestamp": "2025-11-27T01:21:53.116820778Z" + "timestamp": "2025-11-27T04:01:51.566726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368856, - "rtt_ms": 1.368856, + "rtt_ns": 1583583, + "rtt_ms": 1.583583, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.116932728Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.566857-08:00" }, { "operation": "add_edge", - "rtt_ns": 842137, - "rtt_ms": 0.842137, + "rtt_ns": 1608167, + "rtt_ms": 1.608167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:53.117007197Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.566888-08:00" }, { "operation": "add_edge", - "rtt_ns": 709517, - "rtt_ms": 0.709517, + "rtt_ns": 1302250, + "rtt_ms": 1.30225, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.117020237Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:51.567153-08:00" }, { "operation": "add_edge", - "rtt_ns": 721117, - "rtt_ms": 0.721117, + "rtt_ns": 1295417, + "rtt_ms": 1.295417, "checkpoint": 0, "vertex_from": "40", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.117031727Z" + "timestamp": "2025-11-27T04:01:51.567198-08:00" }, { "operation": "add_edge", - "rtt_ns": 719687, - "rtt_ms": 0.719687, + "rtt_ns": 1481042, + "rtt_ms": 1.481042, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.117047607Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.567268-08:00" }, { "operation": "add_edge", - "rtt_ns": 549508, - "rtt_ms": 0.549508, + "rtt_ns": 1168167, + "rtt_ms": 1.168167, "checkpoint": 0, "vertex_from": "40", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.117099907Z" + "timestamp": "2025-11-27T04:01:51.567596-08:00" }, { "operation": "add_edge", - "rtt_ns": 601848, - "rtt_ms": 0.601848, + "rtt_ns": 1706625, + "rtt_ms": 1.706625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "692", - "timestamp": "2025-11-27T01:21:53.117182937Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:51.567638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027987, - "rtt_ms": 1.027987, + "rtt_ns": 1550125, + "rtt_ms": 1.550125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:53.117806025Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.567866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032127, - "rtt_ms": 1.032127, + "rtt_ns": 1557667, + "rtt_ms": 1.557667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.117850325Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:51.568285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061056, - "rtt_ms": 1.061056, + "rtt_ns": 1411792, + "rtt_ms": 1.411792, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.117995144Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:51.568302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287066, - "rtt_ms": 1.287066, + "rtt_ns": 1633375, + "rtt_ms": 1.633375, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.118109324Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.568491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565965, - "rtt_ms": 1.565965, + "rtt_ns": 1876167, + "rtt_ms": 1.876167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.118587632Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:01:51.568553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509175, - "rtt_ms": 1.509175, + "rtt_ns": 1319333, + "rtt_ms": 1.319333, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:53.118610672Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:51.568589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616105, - "rtt_ms": 1.616105, + "rtt_ns": 1538083, + "rtt_ms": 1.538083, "checkpoint": 0, "vertex_from": "40", "vertex_to": "149", - "timestamp": "2025-11-27T01:21:53.118624772Z" + "timestamp": "2025-11-27T04:01:51.568737-08:00" }, { "operation": "add_edge", - "rtt_ns": 911477, - "rtt_ms": 0.911477, + "rtt_ns": 1588334, + "rtt_ms": 1.588334, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.118718932Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.568762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743255, - "rtt_ms": 1.743255, + "rtt_ns": 1180917, + "rtt_ms": 1.180917, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.118775922Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:51.56905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624475, - "rtt_ms": 1.624475, + "rtt_ns": 1509459, + "rtt_ms": 1.509459, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.118808762Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:51.569107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760745, - "rtt_ms": 1.760745, + "rtt_ns": 1503125, + "rtt_ms": 1.503125, "checkpoint": 0, "vertex_from": "40", "vertex_to": "459", - "timestamp": "2025-11-27T01:21:53.118809772Z" + "timestamp": "2025-11-27T04:01:51.569142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550245, - "rtt_ms": 1.550245, + "rtt_ns": 1102958, + "rtt_ms": 1.102958, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:53.11940165Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.569657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467506, - "rtt_ms": 1.467506, + "rtt_ns": 1517583, + "rtt_ms": 1.517583, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.11946354Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.56982-08:00" }, { "operation": "add_edge", - "rtt_ns": 879018, - "rtt_ms": 0.879018, + "rtt_ns": 1374458, + "rtt_ms": 1.374458, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.11946799Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:51.569868-08:00" }, { "operation": "add_edge", - "rtt_ns": 933987, - "rtt_ms": 0.933987, + "rtt_ns": 1885000, + "rtt_ms": 1.885, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "44", - "timestamp": "2025-11-27T01:21:53.119546749Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.570171-08:00" }, { "operation": "add_edge", - "rtt_ns": 2308802, - "rtt_ms": 2.308802, + "rtt_ns": 1599209, + "rtt_ms": 1.599209, "checkpoint": 0, "vertex_from": "40", "vertex_to": "376", - "timestamp": "2025-11-27T01:21:53.120420276Z" + "timestamp": "2025-11-27T04:01:51.570189-08:00" }, { "operation": "add_edge", - "rtt_ns": 2117823, - "rtt_ms": 2.117823, + "rtt_ns": 1522875, + "rtt_ms": 1.522875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:53.120743825Z" + "vertex_to": "44", + "timestamp": "2025-11-27T04:01:51.570286-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316142, - "rtt_ms": 2.316142, + "rtt_ns": 1328791, + "rtt_ms": 1.328791, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:53.121036424Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:51.570472-08:00" }, { "operation": "add_edge", - "rtt_ns": 2391692, - "rtt_ms": 2.391692, + "rtt_ns": 1749250, + "rtt_ms": 1.74925, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:53.121168734Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.570489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965993, - "rtt_ms": 1.965993, + "rtt_ns": 1551916, + "rtt_ms": 1.551916, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:53.121369713Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:51.570603-08:00" }, { "operation": "add_edge", - "rtt_ns": 3183039, - "rtt_ms": 3.183039, + "rtt_ns": 1504959, + "rtt_ms": 1.504959, + "checkpoint": 0, + "vertex_from": "40", + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:51.570614-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1360125, + "rtt_ms": 1.360125, "checkpoint": 0, "vertex_from": "40", "vertex_to": "533", - "timestamp": "2025-11-27T01:21:53.121994311Z" + "timestamp": "2025-11-27T04:01:51.571018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2609081, - "rtt_ms": 2.609081, + "rtt_ns": 1759875, + "rtt_ms": 1.759875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:53.122078901Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:51.571581-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 723698, - "rtt_ms": 0.723698, + "operation": "add_edge", + "rtt_ns": 1725291, + "rtt_ms": 1.725291, "checkpoint": 0, - "vertex_from": "728", - "timestamp": "2025-11-27T01:21:53.122097051Z" + "vertex_from": "40", + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:51.571594-08:00" }, { "operation": "add_edge", - "rtt_ns": 3313559, - "rtt_ms": 3.313559, + "rtt_ns": 1872625, + "rtt_ms": 1.872625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:53.122125301Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:51.572063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2600872, - "rtt_ms": 2.600872, + "rtt_ns": 1926875, + "rtt_ms": 1.926875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.122150031Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:51.572099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733415, - "rtt_ms": 1.733415, + "rtt_ns": 1832250, + "rtt_ms": 1.83225, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.122155341Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.57212-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1288833, + "rtt_ms": 1.288833, + "checkpoint": 0, + "vertex_from": "728", + "timestamp": "2025-11-27T04:01:51.57231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2803390, - "rtt_ms": 2.80339, + "rtt_ns": 1837458, + "rtt_ms": 1.837458, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "913", - "timestamp": "2025-11-27T01:21:53.12226836Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:01:51.572327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262866, - "rtt_ms": 1.262866, + "rtt_ns": 1937625, + "rtt_ms": 1.937625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "837", - "timestamp": "2025-11-27T01:21:53.1223011Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:51.572411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158306, - "rtt_ms": 1.158306, + "rtt_ns": 1882459, + "rtt_ms": 1.882459, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:53.12232934Z" + "vertex_to": "837", + "timestamp": "2025-11-27T04:01:51.572486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621325, - "rtt_ms": 1.621325, + "rtt_ns": 1876584, + "rtt_ms": 1.876584, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "590", - "timestamp": "2025-11-27T01:21:53.12236702Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:51.572491-08:00" }, { "operation": "add_edge", - "rtt_ns": 992417, - "rtt_ms": 0.992417, + "rtt_ns": 1039250, + "rtt_ms": 1.03925, "checkpoint": 0, "vertex_from": "40", "vertex_to": "180", - "timestamp": "2025-11-27T01:21:53.123073428Z" + "timestamp": "2025-11-27T04:01:51.572634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137246, - "rtt_ms": 1.137246, + "rtt_ns": 1119625, + "rtt_ms": 1.119625, "checkpoint": 0, "vertex_from": "40", "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.123133647Z" + "timestamp": "2025-11-27T04:01:51.572701-08:00" }, { "operation": "add_edge", - "rtt_ns": 877527, - "rtt_ms": 0.877527, + "rtt_ns": 1460292, + "rtt_ms": 1.460292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:53.123208327Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:51.573583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067566, - "rtt_ms": 1.067566, + "rtt_ns": 1534416, + "rtt_ms": 1.534416, "checkpoint": 0, "vertex_from": "40", "vertex_to": "457", - "timestamp": "2025-11-27T01:21:53.123220037Z" + "timestamp": "2025-11-27T04:01:51.573634-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1037837, - "rtt_ms": 1.037837, + "rtt_ns": 1504041, + "rtt_ms": 1.504041, "checkpoint": 0, "vertex_from": "985", - "timestamp": "2025-11-27T01:21:53.123308507Z" + "timestamp": "2025-11-27T04:01:51.573833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234686, - "rtt_ms": 1.234686, + "rtt_ns": 1509209, + "rtt_ms": 1.509209, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "728", - "timestamp": "2025-11-27T01:21:53.123332287Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:51.573997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018576, - "rtt_ms": 1.018576, + "rtt_ns": 1966125, + "rtt_ms": 1.966125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.123386866Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.57403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257925, - "rtt_ms": 1.257925, + "rtt_ns": 1785875, + "rtt_ms": 1.785875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:53.123414606Z" + "vertex_to": "728", + "timestamp": "2025-11-27T04:01:51.574096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348285, - "rtt_ms": 1.348285, + "rtt_ns": 1513791, + "rtt_ms": 1.513791, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.123475276Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:51.574149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262626, - "rtt_ms": 1.262626, + "rtt_ns": 1768833, + "rtt_ms": 1.768833, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.123565146Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.574261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059176, - "rtt_ms": 1.059176, + "rtt_ns": 1848041, + "rtt_ms": 1.848041, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.124133824Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.574261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080347, - "rtt_ms": 1.080347, + "rtt_ns": 1619208, + "rtt_ms": 1.619208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:53.124289844Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.574321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273896, - "rtt_ms": 1.273896, + "rtt_ns": 1121000, + "rtt_ms": 1.121, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:53.124495763Z" + "vertex_to": "985", + "timestamp": "2025-11-27T04:01:51.574954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216847, - "rtt_ms": 1.216847, + "rtt_ns": 1388875, + "rtt_ms": 1.388875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:53.124604753Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:51.574973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485176, - "rtt_ms": 1.485176, + "rtt_ns": 1497708, + "rtt_ms": 1.497708, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.124620673Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:51.575133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231606, - "rtt_ms": 1.231606, + "rtt_ns": 1224334, + "rtt_ms": 1.224334, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:53.124804362Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:51.575487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472065, - "rtt_ms": 1.472065, + "rtt_ns": 1423875, + "rtt_ms": 1.423875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "662", - "timestamp": "2025-11-27T01:21:53.124805652Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:51.575521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450846, - "rtt_ms": 1.450846, + "rtt_ns": 1700292, + "rtt_ms": 1.700292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:53.124867142Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:51.575739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588055, - "rtt_ms": 1.588055, + "rtt_ns": 1779584, + "rtt_ms": 1.779584, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "985", - "timestamp": "2025-11-27T01:21:53.124896962Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:51.575778-08:00" }, { "operation": "add_edge", - "rtt_ns": 803208, - "rtt_ms": 0.803208, + "rtt_ns": 1538625, + "rtt_ms": 1.538625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:53.124938892Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:51.5758-08:00" }, { "operation": "add_edge", - "rtt_ns": 679017, - "rtt_ms": 0.679017, + "rtt_ns": 1650167, + "rtt_ms": 1.650167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.124970021Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:51.575801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520525, - "rtt_ms": 1.520525, + "rtt_ns": 1524959, + "rtt_ms": 1.524959, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:53.124998311Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:51.575849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238476, - "rtt_ms": 1.238476, + "rtt_ns": 1398042, + "rtt_ms": 1.398042, "checkpoint": 0, "vertex_from": "40", "vertex_to": "217", - "timestamp": "2025-11-27T01:21:53.125735909Z" + "timestamp": "2025-11-27T04:01:51.576353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218976, - "rtt_ms": 1.218976, + "rtt_ns": 1475625, + "rtt_ms": 1.475625, "checkpoint": 0, "vertex_from": "40", "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.125824679Z" + "timestamp": "2025-11-27T04:01:51.576449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224126, - "rtt_ms": 1.224126, + "rtt_ns": 1334750, + "rtt_ms": 1.33475, "checkpoint": 0, "vertex_from": "40", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.125846609Z" + "timestamp": "2025-11-27T04:01:51.576468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099436, - "rtt_ms": 1.099436, + "rtt_ns": 964000, + "rtt_ms": 0.964, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:53.125906588Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.576705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626655, - "rtt_ms": 1.626655, + "rtt_ns": 1423333, + "rtt_ms": 1.423333, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:53.126432587Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:51.576947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551415, - "rtt_ms": 1.551415, + "rtt_ns": 1543292, + "rtt_ms": 1.543292, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "908", - "timestamp": "2025-11-27T01:21:53.126451407Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:51.577031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654144, - "rtt_ms": 1.654144, + "rtt_ns": 1251208, + "rtt_ms": 1.251208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.126525016Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:51.577101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603485, - "rtt_ms": 1.603485, + "rtt_ns": 1321375, + "rtt_ms": 1.321375, "checkpoint": 0, "vertex_from": "40", "vertex_to": "42", - "timestamp": "2025-11-27T01:21:53.126575006Z" + "timestamp": "2025-11-27T04:01:51.577124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667914, - "rtt_ms": 1.667914, + "rtt_ns": 1396167, + "rtt_ms": 1.396167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "752", - "timestamp": "2025-11-27T01:21:53.126608376Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:01:51.577175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624245, - "rtt_ms": 1.624245, + "rtt_ns": 1455000, + "rtt_ms": 1.455, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:53.126626036Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:51.577263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233316, - "rtt_ms": 1.233316, + "rtt_ns": 1292625, + "rtt_ms": 1.292625, "checkpoint": 0, "vertex_from": "40", "vertex_to": "346", - "timestamp": "2025-11-27T01:21:53.127081535Z" + "timestamp": "2025-11-27T04:01:51.577762-08:00" }, { "operation": "add_edge", - "rtt_ns": 754747, - "rtt_ms": 0.754747, + "rtt_ns": 1397333, + "rtt_ms": 1.397333, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "91", - "timestamp": "2025-11-27T01:21:53.127208104Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:51.577849-08:00" }, { "operation": "add_edge", - "rtt_ns": 796297, - "rtt_ms": 0.796297, + "rtt_ns": 1825667, + "rtt_ms": 1.825667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:53.127230554Z" + "vertex_to": "60", + "timestamp": "2025-11-27T04:01:51.57818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575495, - "rtt_ms": 1.575495, + "rtt_ns": 1697208, + "rtt_ms": 1.697208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "60", - "timestamp": "2025-11-27T01:21:53.127313374Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:51.578403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513315, - "rtt_ms": 1.513315, + "rtt_ns": 1395625, + "rtt_ms": 1.395625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:53.127339314Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:01:51.578429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621155, - "rtt_ms": 1.621155, + "rtt_ns": 1488167, + "rtt_ms": 1.488167, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.127530913Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:51.578438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041137, - "rtt_ms": 1.041137, + "rtt_ns": 1451125, + "rtt_ms": 1.451125, "checkpoint": 0, "vertex_from": "40", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.127567443Z" + "timestamp": "2025-11-27T04:01:51.578554-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356013, - "rtt_ms": 2.356013, + "rtt_ns": 1452375, + "rtt_ms": 1.452375, "checkpoint": 0, "vertex_from": "40", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.128932799Z" + "timestamp": "2025-11-27T04:01:51.578578-08:00" }, { "operation": "add_edge", - "rtt_ns": 2341513, - "rtt_ms": 2.341513, + "rtt_ns": 1418667, + "rtt_ms": 1.418667, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.128974089Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:01:51.578595-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379973, - "rtt_ms": 2.379973, + "rtt_ns": 1426250, + "rtt_ms": 1.42625, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "173", - "timestamp": "2025-11-27T01:21:53.128989599Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:51.57869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772695, - "rtt_ms": 1.772695, + "rtt_ns": 1397042, + "rtt_ms": 1.397042, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:53.129004949Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:51.579247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932044, - "rtt_ms": 1.932044, + "rtt_ns": 1495000, + "rtt_ms": 1.495, "checkpoint": 0, "vertex_from": "40", "vertex_to": "102", - "timestamp": "2025-11-27T01:21:53.129023969Z" + "timestamp": "2025-11-27T04:01:51.579258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261916, - "rtt_ms": 1.261916, + "rtt_ns": 1410250, + "rtt_ms": 1.41025, "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.130268075Z" + "vertex_from": "40", + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:51.579591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260516, - "rtt_ms": 1.260516, + "rtt_ns": 1309541, + "rtt_ms": 1.309541, "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.130285385Z" + "vertex_from": "40", + "vertex_to": "331", + "timestamp": "2025-11-27T04:01:51.579905-08:00" }, { "operation": "add_edge", - "rtt_ns": 3148010, - "rtt_ms": 3.14801, + "rtt_ns": 1665208, + "rtt_ms": 1.665208, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:53.130464384Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:51.580095-08:00" }, { "operation": "add_edge", - "rtt_ns": 3160490, - "rtt_ms": 3.16049, + "rtt_ns": 1433125, + "rtt_ms": 1.433125, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:53.130501164Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.580126-08:00" }, { "operation": "add_edge", - "rtt_ns": 3293260, - "rtt_ms": 3.29326, + "rtt_ns": 1550583, + "rtt_ms": 1.550583, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:53.130503224Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:01:51.580129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692604, - "rtt_ms": 1.692604, + "rtt_ns": 1763584, + "rtt_ms": 1.763584, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "331", - "timestamp": "2025-11-27T01:21:53.130668803Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:51.580168-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337352, - "rtt_ms": 2.337352, + "rtt_ns": 1687500, + "rtt_ms": 1.6875, "checkpoint": 0, "vertex_from": "40", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.131328731Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:01:51.580244-08:00" }, { "operation": "add_edge", - "rtt_ns": 3838858, - "rtt_ms": 3.838858, + "rtt_ns": 1820875, + "rtt_ms": 1.820875, "checkpoint": 0, "vertex_from": "40", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.131371171Z" + "timestamp": "2025-11-27T04:01:51.58026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083696, - "rtt_ms": 1.083696, + "rtt_ns": 1554083, + "rtt_ms": 1.554083, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.131374481Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.580804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105066, - "rtt_ms": 1.105066, + "rtt_ns": 1597958, + "rtt_ms": 1.597958, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.131375601Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.580857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2456162, - "rtt_ms": 2.456162, + "rtt_ns": 1373084, + "rtt_ms": 1.373084, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "358", - "timestamp": "2025-11-27T01:21:53.131390561Z" + "vertex_from": "41", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.580965-08:00" }, { "operation": "add_edge", - "rtt_ns": 3826028, - "rtt_ms": 3.826028, + "rtt_ns": 1925375, + "rtt_ms": 1.925375, "checkpoint": 0, - "vertex_from": "40", - "vertex_to": "744", - "timestamp": "2025-11-27T01:21:53.131394991Z" + "vertex_from": "41", + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:51.581831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214666, - "rtt_ms": 1.214666, + "rtt_ns": 1607792, + "rtt_ms": 1.607792, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.13171898Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.581853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641325, - "rtt_ms": 1.641325, + "rtt_ns": 1698792, + "rtt_ms": 1.698792, "checkpoint": 0, "vertex_from": "41", "vertex_to": "722", - "timestamp": "2025-11-27T01:21:53.132311328Z" + "timestamp": "2025-11-27T04:01:51.581869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887694, - "rtt_ms": 1.887694, + "rtt_ns": 1736708, + "rtt_ms": 1.736708, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.132353568Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.581997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113187, - "rtt_ms": 1.113187, + "rtt_ns": 2301333, + "rtt_ms": 2.301333, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.132443058Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.582428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976693, - "rtt_ms": 1.976693, + "rtt_ns": 2441791, + "rtt_ms": 2.441791, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.132481467Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.582572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685315, - "rtt_ms": 1.685315, + "rtt_ns": 1617958, + "rtt_ms": 1.617958, + "checkpoint": 0, + "vertex_from": "41", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.582584-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1862333, + "rtt_ms": 1.862333, "checkpoint": 0, "vertex_from": "41", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.133061606Z" + "timestamp": "2025-11-27T04:01:51.582668-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1792804, - "rtt_ms": 1.792804, + "rtt_ns": 1826833, + "rtt_ms": 1.826833, "checkpoint": 0, "vertex_from": "59", - "timestamp": "2025-11-27T01:21:53.133171435Z" + "timestamp": "2025-11-27T04:01:51.582686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834654, - "rtt_ms": 1.834654, + "rtt_ns": 2608250, + "rtt_ms": 2.60825, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.133207075Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:51.582705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846554, - "rtt_ms": 1.846554, + "rtt_ns": 1361000, + "rtt_ms": 1.361, "checkpoint": 0, "vertex_from": "41", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.133242935Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1967693, - "rtt_ms": 1.967693, - "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.133361354Z" + "timestamp": "2025-11-27T04:01:51.583194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815864, - "rtt_ms": 1.815864, + "rtt_ns": 1443000, + "rtt_ms": 1.443, "checkpoint": 0, "vertex_from": "41", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.133537524Z" + "timestamp": "2025-11-27T04:01:51.583296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940283, - "rtt_ms": 1.940283, + "rtt_ns": 1317084, + "rtt_ms": 1.317084, "checkpoint": 0, "vertex_from": "41", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.134295181Z" + "timestamp": "2025-11-27T04:01:51.583315-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007123, - "rtt_ms": 2.007123, + "rtt_ns": 1691792, + "rtt_ms": 1.691792, "checkpoint": 0, "vertex_from": "41", "vertex_to": "792", - "timestamp": "2025-11-27T01:21:53.134319851Z" + "timestamp": "2025-11-27T04:01:51.583561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987684, - "rtt_ms": 1.987684, + "rtt_ns": 1112875, + "rtt_ms": 1.112875, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:53.134470261Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.583782-08:00" }, { "operation": "add_edge", - "rtt_ns": 2415351, - "rtt_ms": 2.415351, + "rtt_ns": 1225708, + "rtt_ms": 1.225708, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.134860049Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:51.583799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806474, - "rtt_ms": 1.806474, + "rtt_ns": 1231083, + "rtt_ms": 1.231083, "checkpoint": 0, "vertex_from": "41", "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.134869879Z" + "timestamp": "2025-11-27T04:01:51.583817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653434, - "rtt_ms": 1.653434, + "rtt_ns": 1112959, + "rtt_ms": 1.112959, "checkpoint": 0, "vertex_from": "41", "vertex_to": "547", - "timestamp": "2025-11-27T01:21:53.134899849Z" + "timestamp": "2025-11-27T04:01:51.583819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729244, - "rtt_ms": 1.729244, + "rtt_ns": 1408583, + "rtt_ms": 1.408583, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "59", - "timestamp": "2025-11-27T01:21:53.134901059Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1360885, - "rtt_ms": 1.360885, - "checkpoint": 0, - "vertex_from": "41", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:53.134903299Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.58384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693274, - "rtt_ms": 1.693274, + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.134903859Z" + "vertex_to": "59", + "timestamp": "2025-11-27T04:01:51.584273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542505, - "rtt_ms": 1.542505, + "rtt_ns": 1763042, + "rtt_ms": 1.763042, "checkpoint": 0, "vertex_from": "41", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.134906039Z" + "timestamp": "2025-11-27T04:01:51.584959-08:00" }, { "operation": "add_vertex", - "rtt_ns": 619508, - "rtt_ms": 0.619508, + "rtt_ns": 1414958, + "rtt_ms": 1.414958, "checkpoint": 0, "vertex_from": "667", - "timestamp": "2025-11-27T01:21:53.134945149Z" + "timestamp": "2025-11-27T04:01:51.58498-08:00" }, { "operation": "add_edge", - "rtt_ns": 844728, - "rtt_ms": 0.844728, + "rtt_ns": 1699625, + "rtt_ms": 1.699625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.135141499Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:51.584997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011167, - "rtt_ms": 1.011167, + "rtt_ns": 1433834, + "rtt_ms": 1.433834, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:53.135884676Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:51.585217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026207, - "rtt_ms": 1.026207, + "rtt_ns": 1918709, + "rtt_ms": 1.918709, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.135891266Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.585235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422675, - "rtt_ms": 1.422675, + "rtt_ns": 1450667, + "rtt_ms": 1.450667, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:53.135894756Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.58525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550855, - "rtt_ms": 1.550855, + "rtt_ns": 1436833, + "rtt_ms": 1.436833, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.136453864Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:51.585278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579865, - "rtt_ms": 1.579865, + "rtt_ns": 1460542, + "rtt_ms": 1.460542, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.136488104Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:51.585278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589325, - "rtt_ms": 1.589325, + "rtt_ns": 1629125, + "rtt_ms": 1.629125, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:53.136496374Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.585449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606725, - "rtt_ms": 1.606725, + "rtt_ns": 1814708, + "rtt_ms": 1.814708, "checkpoint": 0, "vertex_from": "41", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.136512974Z" + "timestamp": "2025-11-27T04:01:51.586091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617495, - "rtt_ms": 1.617495, + "rtt_ns": 1413292, + "rtt_ms": 1.413292, "checkpoint": 0, "vertex_from": "41", "vertex_to": "667", - "timestamp": "2025-11-27T01:21:53.136563764Z" + "timestamp": "2025-11-27T04:01:51.586393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674605, - "rtt_ms": 1.674605, + "rtt_ns": 1451708, + "rtt_ms": 1.451708, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.136577914Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:51.586412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330226, - "rtt_ms": 1.330226, + "rtt_ns": 1584500, + "rtt_ms": 1.5845, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:53.137228322Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.586582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520965, - "rtt_ms": 1.520965, + "rtt_ns": 1411375, + "rtt_ms": 1.411375, "checkpoint": 0, "vertex_from": "41", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.137414821Z" + "timestamp": "2025-11-27T04:01:51.586662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2305902, - "rtt_ms": 2.305902, + "rtt_ns": 1610875, + "rtt_ms": 1.610875, "checkpoint": 0, "vertex_from": "41", "vertex_to": "824", - "timestamp": "2025-11-27T01:21:53.137454661Z" + "timestamp": "2025-11-27T04:01:51.586829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600325, - "rtt_ms": 1.600325, + "rtt_ns": 1571792, + "rtt_ms": 1.571792, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.137487331Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.586851-08:00" }, { "operation": "add_edge", - "rtt_ns": 992887, - "rtt_ms": 0.992887, + "rtt_ns": 1684916, + "rtt_ms": 1.684916, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:53.137559831Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.58692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048307, - "rtt_ms": 1.048307, + "rtt_ns": 1642167, + "rtt_ms": 1.642167, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.137628041Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:51.586921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821144, - "rtt_ms": 1.821144, + "rtt_ns": 1604292, + "rtt_ms": 1.604292, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.138277438Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.587055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811154, - "rtt_ms": 1.811154, + "rtt_ns": 1045625, + "rtt_ms": 1.045625, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.138301428Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:51.587137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806124, - "rtt_ms": 1.806124, + "rtt_ns": 1142750, + "rtt_ms": 1.14275, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:53.138305478Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:51.587555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134626, - "rtt_ms": 1.134626, + "rtt_ns": 1195667, + "rtt_ms": 1.195667, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:53.138364798Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:51.58759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888804, - "rtt_ms": 1.888804, + "rtt_ns": 1506042, + "rtt_ms": 1.506042, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.138404978Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:51.58817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364996, - "rtt_ms": 1.364996, + "rtt_ns": 1346416, + "rtt_ms": 1.346416, "checkpoint": 0, "vertex_from": "41", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.138781437Z" + "timestamp": "2025-11-27T04:01:51.588178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382186, - "rtt_ms": 1.382186, + "rtt_ns": 1745542, + "rtt_ms": 1.745542, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:53.138838237Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:51.588329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232616, - "rtt_ms": 1.232616, + "rtt_ns": 1406083, + "rtt_ms": 1.406083, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.138862867Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.588329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383035, - "rtt_ms": 1.383035, + "rtt_ns": 1517666, + "rtt_ms": 1.517666, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.138944236Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:51.58837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455685, - "rtt_ms": 1.455685, + "rtt_ns": 1330041, + "rtt_ms": 1.330041, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "107", - "timestamp": "2025-11-27T01:21:53.138946736Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.588387-08:00" }, { "operation": "add_edge", - "rtt_ns": 841378, - "rtt_ms": 0.841378, + "rtt_ns": 1620750, + "rtt_ms": 1.62075, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "665", - "timestamp": "2025-11-27T01:21:53.139148156Z" + "vertex_to": "107", + "timestamp": "2025-11-27T04:01:51.588542-08:00" }, { "operation": "add_edge", - "rtt_ns": 940957, - "rtt_ms": 0.940957, + "rtt_ns": 1448959, + "rtt_ms": 1.448959, "checkpoint": 0, "vertex_from": "41", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.139220155Z" + "timestamp": "2025-11-27T04:01:51.588587-08:00" }, { "operation": "add_edge", - "rtt_ns": 880557, - "rtt_ms": 0.880557, + "rtt_ns": 1552666, + "rtt_ms": 1.552666, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.139246615Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:51.589144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005847, - "rtt_ms": 1.005847, + "rtt_ns": 1613625, + "rtt_ms": 1.613625, "checkpoint": 0, "vertex_from": "41", "vertex_to": "589", - "timestamp": "2025-11-27T01:21:53.139309645Z" + "timestamp": "2025-11-27T04:01:51.589171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329426, - "rtt_ms": 1.329426, + "rtt_ns": 1290125, + "rtt_ms": 1.290125, "checkpoint": 0, "vertex_from": "41", "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.139735924Z" + "timestamp": "2025-11-27T04:01:51.589469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162116, - "rtt_ms": 1.162116, + "rtt_ns": 1342666, + "rtt_ms": 1.342666, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.140026373Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:51.589514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268346, - "rtt_ms": 1.268346, + "rtt_ns": 1322750, + "rtt_ms": 1.32275, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.140052283Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.589693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415175, - "rtt_ms": 1.415175, + "rtt_ns": 1379333, + "rtt_ms": 1.379333, "checkpoint": 0, "vertex_from": "41", "vertex_to": "902", - "timestamp": "2025-11-27T01:21:53.140254912Z" + "timestamp": "2025-11-27T04:01:51.589709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193523, - "rtt_ms": 2.193523, + "rtt_ns": 1397083, + "rtt_ms": 1.397083, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:53.141141569Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.589727-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196763, - "rtt_ms": 2.196763, + "rtt_ns": 1355167, + "rtt_ms": 1.355167, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "42", - "timestamp": "2025-11-27T01:21:53.141145059Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:51.589742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995753, - "rtt_ms": 1.995753, + "rtt_ns": 1859083, + "rtt_ms": 1.859083, "checkpoint": 0, "vertex_from": "41", "vertex_to": "195", - "timestamp": "2025-11-27T01:21:53.141145809Z" + "timestamp": "2025-11-27T04:01:51.590448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928754, - "rtt_ms": 1.928754, + "rtt_ns": 1923875, + "rtt_ms": 1.923875, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:53.141149949Z" + "vertex_to": "42", + "timestamp": "2025-11-27T04:01:51.590468-08:00" }, { "operation": "add_edge", - "rtt_ns": 2430482, - "rtt_ms": 2.430482, + "rtt_ns": 1484417, + "rtt_ms": 1.484417, "checkpoint": 0, "vertex_from": "41", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.141741517Z" + "timestamp": "2025-11-27T04:01:51.590955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2543552, - "rtt_ms": 2.543552, + "rtt_ns": 1900792, + "rtt_ms": 1.900792, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.141791367Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:51.591046-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088543, - "rtt_ms": 2.088543, + "rtt_ns": 1930834, + "rtt_ms": 1.930834, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:53.141826077Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.591105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782714, - "rtt_ms": 1.782714, + "rtt_ns": 1415875, + "rtt_ms": 1.415875, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:53.141835937Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1582465, - "rtt_ms": 1.582465, - "checkpoint": 0, - "vertex_from": "42", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.141838887Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.59111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835774, - "rtt_ms": 1.835774, + "rtt_ns": 1631583, + "rtt_ms": 1.631583, "checkpoint": 0, "vertex_from": "41", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.141863707Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:51.591148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192416, - "rtt_ms": 1.192416, + "rtt_ns": 1407459, + "rtt_ms": 1.407459, "checkpoint": 0, "vertex_from": "42", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.142337345Z" + "timestamp": "2025-11-27T04:01:51.59115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286286, - "rtt_ms": 1.286286, + "rtt_ns": 1376500, + "rtt_ms": 1.3765, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:53.142435105Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.591825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309486, - "rtt_ms": 1.309486, + "rtt_ns": 2122625, + "rtt_ms": 2.122625, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.142455485Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.59185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362336, - "rtt_ms": 1.362336, + "rtt_ns": 2377375, + "rtt_ms": 2.377375, "checkpoint": 0, - "vertex_from": "42", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.142513505Z" + "vertex_from": "41", + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:51.592087-08:00" }, { "operation": "add_edge", - "rtt_ns": 793447, - "rtt_ms": 0.793447, + "rtt_ns": 1632041, + "rtt_ms": 1.632041, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:53.142536874Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:51.592101-08:00" }, { "operation": "add_edge", - "rtt_ns": 790607, - "rtt_ms": 0.790607, + "rtt_ns": 1079500, + "rtt_ms": 1.0795, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:53.142583274Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:51.592126-08:00" }, { "operation": "add_edge", - "rtt_ns": 828777, - "rtt_ms": 0.828777, + "rtt_ns": 1650375, + "rtt_ms": 1.650375, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:53.142670694Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:51.592756-08:00" }, { "operation": "add_edge", - "rtt_ns": 906637, - "rtt_ms": 0.906637, + "rtt_ns": 1838666, + "rtt_ms": 1.838666, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.142771944Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.592794-08:00" }, { "operation": "add_edge", - "rtt_ns": 962457, - "rtt_ms": 0.962457, + "rtt_ns": 1795334, + "rtt_ms": 1.795334, "checkpoint": 0, "vertex_from": "42", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.142789904Z" + "timestamp": "2025-11-27T04:01:51.592906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012456, - "rtt_ms": 1.012456, + "rtt_ns": 1764125, + "rtt_ms": 1.764125, "checkpoint": 0, "vertex_from": "42", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.142850053Z" + "timestamp": "2025-11-27T04:01:51.592913-08:00" }, { "operation": "add_edge", - "rtt_ns": 739478, - "rtt_ms": 0.739478, + "rtt_ns": 1865208, + "rtt_ms": 1.865208, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:53.143078173Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:51.593017-08:00" }, { "operation": "add_edge", - "rtt_ns": 671798, - "rtt_ms": 0.671798, + "rtt_ns": 1480709, + "rtt_ms": 1.480709, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.143108133Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:51.593332-08:00" }, { "operation": "add_edge", - "rtt_ns": 720347, - "rtt_ms": 0.720347, + "rtt_ns": 1522708, + "rtt_ms": 1.522708, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.143177812Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.593348-08:00" }, { "operation": "add_edge", - "rtt_ns": 718358, - "rtt_ms": 0.718358, + "rtt_ns": 1406000, + "rtt_ms": 1.406, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.143256342Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:51.593508-08:00" }, { "operation": "add_edge", - "rtt_ns": 713048, - "rtt_ms": 0.713048, + "rtt_ns": 1393583, + "rtt_ms": 1.393583, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:53.143297972Z" + "vertex_to": "49", + "timestamp": "2025-11-27T04:01:51.593521-08:00" }, { "operation": "add_edge", - "rtt_ns": 655428, - "rtt_ms": 0.655428, + "rtt_ns": 1474542, + "rtt_ms": 1.474542, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.143327422Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.593563-08:00" }, { "operation": "add_edge", - "rtt_ns": 869137, - "rtt_ms": 0.869137, + "rtt_ns": 1381708, + "rtt_ms": 1.381708, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "49", - "timestamp": "2025-11-27T01:21:53.143383952Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:51.594299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056767, - "rtt_ms": 1.056767, + "rtt_ns": 1550875, + "rtt_ms": 1.550875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.14390822Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.59431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180106, - "rtt_ms": 1.180106, + "rtt_ns": 1333875, + "rtt_ms": 1.333875, "checkpoint": 0, "vertex_from": "42", "vertex_to": "156", - "timestamp": "2025-11-27T01:21:53.14397137Z" + "timestamp": "2025-11-27T04:01:51.594353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272875, - "rtt_ms": 1.272875, + "rtt_ns": 1372333, + "rtt_ms": 1.372333, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:53.144046409Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:51.594721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574005, - "rtt_ms": 1.574005, + "rtt_ns": 1233000, + "rtt_ms": 1.233, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "781", - "timestamp": "2025-11-27T01:21:53.144653908Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:51.594741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495215, - "rtt_ms": 1.495215, + "rtt_ns": 1480416, + "rtt_ms": 1.480416, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.144674627Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.594813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580434, - "rtt_ms": 1.580434, + "rtt_ns": 1918250, + "rtt_ms": 1.91825, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:53.144693937Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.594826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769674, - "rtt_ms": 1.769674, + "rtt_ns": 1419375, + "rtt_ms": 1.419375, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.145068926Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.594983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810864, - "rtt_ms": 1.810864, + "rtt_ns": 1600209, + "rtt_ms": 1.600209, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.145068846Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.595123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776174, - "rtt_ms": 1.776174, + "rtt_ns": 2634791, + "rtt_ms": 2.634791, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:53.145105146Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:51.59543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849344, - "rtt_ms": 1.849344, + "rtt_ns": 1215875, + "rtt_ms": 1.215875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:53.145234966Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:51.595526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362776, - "rtt_ms": 1.362776, + "rtt_ns": 1502833, + "rtt_ms": 1.502833, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.145272516Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.595805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250516, - "rtt_ms": 1.250516, + "rtt_ns": 1304958, + "rtt_ms": 1.304958, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:53.145298075Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:51.596132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349265, - "rtt_ms": 1.349265, + "rtt_ns": 1455458, + "rtt_ms": 1.455458, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.145322615Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.596178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243436, - "rtt_ms": 1.243436, + "rtt_ns": 1898042, + "rtt_ms": 1.898042, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.145899594Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:51.59664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231656, - "rtt_ms": 1.231656, + "rtt_ns": 2028458, + "rtt_ms": 2.028458, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:53.145926943Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:51.596842-08:00" }, { "operation": "add_edge", - "rtt_ns": 993677, - "rtt_ms": 0.993677, + "rtt_ns": 2543166, + "rtt_ms": 2.543166, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.146101993Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:51.596898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055287, - "rtt_ms": 1.055287, + "rtt_ns": 1508875, + "rtt_ms": 1.508875, "checkpoint": 0, "vertex_from": "42", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.146125733Z" + "timestamp": "2025-11-27T04:01:51.59694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062067, - "rtt_ms": 1.062067, + "rtt_ns": 1149667, + "rtt_ms": 1.149667, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:53.146134363Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.596955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063334, - "rtt_ms": 2.063334, + "rtt_ns": 2002708, + "rtt_ms": 2.002708, "checkpoint": 0, "vertex_from": "42", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.146739561Z" + "timestamp": "2025-11-27T04:01:51.596986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477686, - "rtt_ms": 1.477686, + "rtt_ns": 1526167, + "rtt_ms": 1.526167, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "468", - "timestamp": "2025-11-27T01:21:53.146776931Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:51.597053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597545, - "rtt_ms": 1.597545, + "rtt_ns": 1946875, + "rtt_ms": 1.946875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:53.146835081Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:51.597072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535896, - "rtt_ms": 1.535896, + "rtt_ns": 1238000, + "rtt_ms": 1.238, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:53.146859941Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:51.597371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594145, - "rtt_ms": 1.594145, + "rtt_ns": 1369000, + "rtt_ms": 1.369, "checkpoint": 0, "vertex_from": "42", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.146867621Z" + "timestamp": "2025-11-27T04:01:51.597548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109766, - "rtt_ms": 1.109766, + "rtt_ns": 1279625, + "rtt_ms": 1.279625, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.147216109Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.598179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427185, - "rtt_ms": 1.427185, + "rtt_ns": 1341417, + "rtt_ms": 1.341417, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.147328299Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:51.598185-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222613, - "rtt_ms": 2.222613, + "rtt_ns": 1554250, + "rtt_ms": 1.55425, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.148152456Z" + "vertex_to": "468", + "timestamp": "2025-11-27T04:01:51.598195-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495522, - "rtt_ms": 2.495522, + "rtt_ns": 1368416, + "rtt_ms": 1.368416, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:53.148623765Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.598324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2535752, - "rtt_ms": 2.535752, + "rtt_ns": 1418791, + "rtt_ms": 1.418791, "checkpoint": 0, "vertex_from": "42", "vertex_to": "706", - "timestamp": "2025-11-27T01:21:53.148672135Z" + "timestamp": "2025-11-27T04:01:51.598473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974474, - "rtt_ms": 1.974474, + "rtt_ns": 1517166, + "rtt_ms": 1.517166, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.148752865Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.598592-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119573, - "rtt_ms": 2.119573, + "rtt_ns": 1652875, + "rtt_ms": 1.652875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.148860774Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:51.59864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276493, - "rtt_ms": 2.276493, + "rtt_ns": 1818750, + "rtt_ms": 1.81875, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.149145393Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:51.598759-08:00" }, { "operation": "add_edge", - "rtt_ns": 2466442, - "rtt_ms": 2.466442, + "rtt_ns": 1609000, + "rtt_ms": 1.609, "checkpoint": 0, "vertex_from": "42", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.149303753Z" + "timestamp": "2025-11-27T04:01:51.599158-08:00" }, { "operation": "add_edge", - "rtt_ns": 2494652, - "rtt_ms": 2.494652, + "rtt_ns": 1470791, + "rtt_ms": 1.470791, "checkpoint": 0, "vertex_from": "42", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.149356283Z" + "timestamp": "2025-11-27T04:01:51.59965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2091273, - "rtt_ms": 2.091273, + "rtt_ns": 1613917, + "rtt_ms": 1.613917, "checkpoint": 0, - "vertex_from": "42", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.149421212Z" + "vertex_from": "43", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.600255-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208773, - "rtt_ms": 2.208773, + "rtt_ns": 2896709, + "rtt_ms": 2.896709, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.149425952Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.600269-08:00" }, { "operation": "add_edge", - "rtt_ns": 810997, - "rtt_ms": 0.810997, + "rtt_ns": 1528500, + "rtt_ms": 1.5285, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.149485062Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.600288-08:00" }, { "operation": "add_edge", - "rtt_ns": 943107, - "rtt_ms": 0.943107, + "rtt_ns": 2153458, + "rtt_ms": 2.153458, + "checkpoint": 0, + "vertex_from": "42", + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.600339-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1909625, + "rtt_ms": 1.909625, "checkpoint": 0, "vertex_from": "42", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.149568622Z" + "timestamp": "2025-11-27T04:01:51.600505-08:00" }, { "operation": "add_edge", - "rtt_ns": 836897, - "rtt_ms": 0.836897, + "rtt_ns": 2354833, + "rtt_ms": 2.354833, "checkpoint": 0, - "vertex_from": "43", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.149591702Z" + "vertex_from": "42", + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:51.600551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435106, - "rtt_ms": 1.435106, + "rtt_ns": 2286792, + "rtt_ms": 2.286792, "checkpoint": 0, "vertex_from": "42", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:53.149593182Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.600611-08:00" }, { "operation": "add_edge", - "rtt_ns": 769048, - "rtt_ms": 0.769048, + "rtt_ns": 2138917, + "rtt_ms": 2.138917, "checkpoint": 0, - "vertex_from": "43", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:53.149631232Z" + "vertex_from": "42", + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:51.600613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198966, - "rtt_ms": 1.198966, + "rtt_ns": 1040958, + "rtt_ms": 1.040958, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.150346069Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.601654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017766, - "rtt_ms": 1.017766, + "rtt_ns": 1383500, + "rtt_ms": 1.3835, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:53.150381959Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:51.601673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327146, - "rtt_ms": 1.327146, + "rtt_ns": 2350667, + "rtt_ms": 2.350667, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:53.150632599Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:51.602002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224657, - "rtt_ms": 1.224657, + "rtt_ns": 1492916, + "rtt_ms": 1.492916, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.150652809Z" + "vertex_to": "279", + "timestamp": "2025-11-27T04:01:51.602046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580905, - "rtt_ms": 1.580905, + "rtt_ns": 1799750, + "rtt_ms": 1.79975, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.151068417Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:51.60207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689955, - "rtt_ms": 1.689955, + "rtt_ns": 1797709, + "rtt_ms": 1.797709, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:53.151117117Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.602138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614325, - "rtt_ms": 1.614325, + "rtt_ns": 1929000, + "rtt_ms": 1.929, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.151209077Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:51.602187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643325, - "rtt_ms": 1.643325, + "rtt_ns": 1779208, + "rtt_ms": 1.779208, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.151237917Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:51.602291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667745, - "rtt_ms": 1.667745, + "rtt_ns": 1698666, + "rtt_ms": 1.698666, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "279", - "timestamp": "2025-11-27T01:21:53.151238727Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.602311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639445, - "rtt_ms": 1.639445, + "rtt_ns": 3191042, + "rtt_ms": 3.191042, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.151271637Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:51.602351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603495, - "rtt_ms": 1.603495, + "rtt_ns": 1457458, + "rtt_ms": 1.457458, "checkpoint": 0, "vertex_from": "43", "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.151950954Z" + "timestamp": "2025-11-27T04:01:51.603131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437285, - "rtt_ms": 1.437285, + "rtt_ns": 1493042, + "rtt_ms": 1.493042, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:53.152071324Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.603148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453236, - "rtt_ms": 1.453236, + "rtt_ns": 1421500, + "rtt_ms": 1.4215, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:53.152108694Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.603715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842094, - "rtt_ms": 1.842094, + "rtt_ns": 1624750, + "rtt_ms": 1.62475, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.152230283Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.603763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042166, - "rtt_ms": 1.042166, + "rtt_ns": 1463833, + "rtt_ms": 1.463833, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.152252483Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.603776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148546, - "rtt_ms": 1.148546, + "rtt_ns": 1775250, + "rtt_ms": 1.77525, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.152267453Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.603779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235956, - "rtt_ms": 1.235956, + "rtt_ns": 1593916, + "rtt_ms": 1.593916, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.152306183Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:51.603781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097496, - "rtt_ms": 1.097496, + "rtt_ns": 1457833, + "rtt_ms": 1.457833, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.152337433Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:51.60381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779504, - "rtt_ms": 1.779504, + "rtt_ns": 1806375, + "rtt_ms": 1.806375, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:53.153020201Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:51.603853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776874, - "rtt_ms": 1.776874, + "rtt_ns": 1872208, + "rtt_ms": 1.872208, "checkpoint": 0, "vertex_from": "43", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.153050231Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:51.603943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410606, - "rtt_ms": 1.410606, + "rtt_ns": 1030042, + "rtt_ms": 1.030042, "checkpoint": 0, "vertex_from": "43", "vertex_to": "876", - "timestamp": "2025-11-27T01:21:53.15336294Z" + "timestamp": "2025-11-27T04:01:51.60418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297436, - "rtt_ms": 1.297436, + "rtt_ns": 1364042, + "rtt_ms": 1.364042, "checkpoint": 0, "vertex_from": "43", "vertex_to": "323", - "timestamp": "2025-11-27T01:21:53.15337055Z" + "timestamp": "2025-11-27T04:01:51.605081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432835, - "rtt_ms": 1.432835, + "rtt_ns": 2082375, + "rtt_ms": 2.082375, "checkpoint": 0, - "vertex_from": "44", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.153543199Z" + "vertex_from": "43", + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.605215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355646, - "rtt_ms": 1.355646, + "rtt_ns": 1633542, + "rtt_ms": 1.633542, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.153587469Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:51.6054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329076, - "rtt_ms": 1.329076, + "rtt_ns": 1764417, + "rtt_ms": 1.764417, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.153600639Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:01:51.605576-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1345726, - "rtt_ms": 1.345726, + "operation": "add_vertex", + "rtt_ns": 1744750, + "rtt_ms": 1.74475, "checkpoint": 0, - "vertex_from": "44", - "vertex_to": "227", - "timestamp": "2025-11-27T01:21:53.153654089Z" + "vertex_from": "753", + "timestamp": "2025-11-27T04:01:51.605601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437105, - "rtt_ms": 1.437105, + "rtt_ns": 1839250, + "rtt_ms": 1.83925, "checkpoint": 0, "vertex_from": "44", "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.153691568Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1767944, - "rtt_ms": 1.767944, - "checkpoint": 0, - "vertex_from": "753", - "timestamp": "2025-11-27T01:21:53.154111357Z" + "timestamp": "2025-11-27T04:01:51.60562-08:00" }, { "operation": "add_edge", - "rtt_ns": 968346, - "rtt_ms": 0.968346, + "rtt_ns": 1973792, + "rtt_ms": 1.973792, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.154341636Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.605756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003496, - "rtt_ms": 1.003496, + "rtt_ns": 2033000, + "rtt_ms": 2.033, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.154368366Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.605811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347865, - "rtt_ms": 1.347865, + "rtt_ns": 1875292, + "rtt_ms": 1.875292, "checkpoint": 0, "vertex_from": "44", "vertex_to": "344", - "timestamp": "2025-11-27T01:21:53.154369546Z" + "timestamp": "2025-11-27T04:01:51.605819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327125, - "rtt_ms": 1.327125, + "rtt_ns": 1643041, + "rtt_ms": 1.643041, "checkpoint": 0, "vertex_from": "44", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.154380236Z" + "timestamp": "2025-11-27T04:01:51.605824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572835, - "rtt_ms": 1.572835, + "rtt_ns": 1022125, + "rtt_ms": 1.022125, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:53.155161954Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.606643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493325, - "rtt_ms": 1.493325, + "rtt_ns": 1623000, + "rtt_ms": 1.623, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:53.155187723Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.606705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658874, - "rtt_ms": 1.658874, + "rtt_ns": 1118583, + "rtt_ms": 1.118583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.155204803Z" + "vertex_to": "753", + "timestamp": "2025-11-27T04:01:51.606719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601804, - "rtt_ms": 1.601804, + "rtt_ns": 2046583, + "rtt_ms": 2.046583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.155204993Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:51.607262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556254, - "rtt_ms": 1.556254, + "rtt_ns": 2013875, + "rtt_ms": 2.013875, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.155212183Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.607415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278126, - "rtt_ms": 1.278126, + "rtt_ns": 1945209, + "rtt_ms": 1.945209, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "753", - "timestamp": "2025-11-27T01:21:53.155390213Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:51.607523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190956, - "rtt_ms": 1.190956, + "rtt_ns": 1824750, + "rtt_ms": 1.82475, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "182", - "timestamp": "2025-11-27T01:21:53.155573222Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:51.607639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396696, - "rtt_ms": 1.396696, + "rtt_ns": 2230209, + "rtt_ms": 2.230209, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:53.155767972Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.608055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496755, - "rtt_ms": 1.496755, + "rtt_ns": 2452708, + "rtt_ms": 2.452708, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.155867301Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.608209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591615, - "rtt_ms": 1.591615, + "rtt_ns": 2594208, + "rtt_ms": 2.594208, "checkpoint": 0, "vertex_from": "44", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.155935511Z" + "timestamp": "2025-11-27T04:01:51.608414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212736, - "rtt_ms": 1.212736, + "rtt_ns": 1952250, + "rtt_ms": 1.95225, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.156421099Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.608673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243576, - "rtt_ms": 1.243576, + "rtt_ns": 2037583, + "rtt_ms": 2.037583, "checkpoint": 0, "vertex_from": "44", "vertex_to": "960", - "timestamp": "2025-11-27T01:21:53.156432559Z" + "timestamp": "2025-11-27T04:01:51.609301-08:00" }, { "operation": "add_edge", - "rtt_ns": 911567, - "rtt_ms": 0.911567, + "rtt_ns": 1678709, + "rtt_ms": 1.678709, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "283", - "timestamp": "2025-11-27T01:21:53.156485779Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:51.609319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306296, - "rtt_ms": 1.306296, + "rtt_ns": 2690833, + "rtt_ms": 2.690833, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.156520649Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:51.609336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378485, - "rtt_ms": 1.378485, + "rtt_ns": 1965334, + "rtt_ms": 1.965334, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.156542139Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.609382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455116, - "rtt_ms": 1.455116, + "rtt_ns": 1207333, + "rtt_ms": 1.207333, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.156662969Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:51.609623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346935, - "rtt_ms": 1.346935, + "rtt_ns": 2135042, + "rtt_ms": 2.135042, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.156742098Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:51.609661-08:00" }, { "operation": "add_edge", - "rtt_ns": 931947, - "rtt_ms": 0.931947, + "rtt_ns": 3053375, + "rtt_ms": 3.053375, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.157366286Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:01:51.60976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012587, - "rtt_ms": 1.012587, + "rtt_ns": 1643917, + "rtt_ms": 1.643917, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:53.157434846Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:01:51.609855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534875, - "rtt_ms": 1.534875, + "rtt_ns": 1432459, + "rtt_ms": 1.432459, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.157471666Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.610106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635175, - "rtt_ms": 1.635175, + "rtt_ns": 924833, + "rtt_ms": 0.924833, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.157503346Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:51.610245-08:00" }, { "operation": "add_edge", - "rtt_ns": 988057, - "rtt_ms": 0.988057, + "rtt_ns": 1003291, + "rtt_ms": 1.003291, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.157510536Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.61086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046637, - "rtt_ms": 1.046637, + "rtt_ns": 1540791, + "rtt_ms": 1.540791, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.157533726Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.610878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770384, - "rtt_ms": 1.770384, + "rtt_ns": 1303375, + "rtt_ms": 1.303375, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.157539686Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.611064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477436, - "rtt_ms": 1.477436, + "rtt_ns": 1483166, + "rtt_ms": 1.483166, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.158220554Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:51.611106-08:00" }, { "operation": "add_edge", - "rtt_ns": 913867, - "rtt_ms": 0.913867, + "rtt_ns": 1571709, + "rtt_ms": 1.571709, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.158425583Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:51.611234-08:00" }, { "operation": "add_edge", - "rtt_ns": 952957, - "rtt_ms": 0.952957, + "rtt_ns": 1864625, + "rtt_ms": 1.864625, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.158426303Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.611247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059097, - "rtt_ms": 1.059097, + "rtt_ns": 1984000, + "rtt_ms": 1.984, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:53.158426883Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.611286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774584, - "rtt_ms": 1.774584, + "rtt_ns": 4306166, + "rtt_ms": 4.306166, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.158438793Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.612362-08:00" }, { "operation": "add_edge", - "rtt_ns": 941377, - "rtt_ms": 0.941377, + "rtt_ns": 2274417, + "rtt_ms": 2.274417, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:53.158451203Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:51.612383-08:00" }, { "operation": "add_edge", - "rtt_ns": 986327, - "rtt_ms": 0.986327, + "rtt_ns": 2392834, + "rtt_ms": 2.392834, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.158521113Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.612639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090657, - "rtt_ms": 1.090657, + "rtt_ns": 1860042, + "rtt_ms": 1.860042, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.158526833Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:51.612967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002534, - "rtt_ms": 2.002534, + "rtt_ns": 1985083, + "rtt_ms": 1.985083, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.158547433Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.61305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652075, - "rtt_ms": 1.652075, + "rtt_ns": 1826167, + "rtt_ms": 1.826167, "checkpoint": 0, "vertex_from": "44", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.159193431Z" + "timestamp": "2025-11-27T04:01:51.613063-08:00" }, { "operation": "add_edge", - "rtt_ns": 990037, - "rtt_ms": 0.990037, + "rtt_ns": 1826333, + "rtt_ms": 1.826333, "checkpoint": 0, "vertex_from": "44", "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.159212721Z" + "timestamp": "2025-11-27T04:01:51.613074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142946, - "rtt_ms": 1.142946, + "rtt_ns": 2402833, + "rtt_ms": 2.402833, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "781", - "timestamp": "2025-11-27T01:21:53.159691789Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.613263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884764, - "rtt_ms": 1.884764, + "rtt_ns": 1352584, + "rtt_ms": 1.352584, "checkpoint": 0, "vertex_from": "44", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.160314037Z" + "timestamp": "2025-11-27T04:01:51.613736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574051, - "rtt_ms": 2.574051, + "rtt_ns": 2553792, + "rtt_ms": 2.553792, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.161098354Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:51.613846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2597511, - "rtt_ms": 2.597511, + "rtt_ns": 3202542, + "rtt_ms": 3.202542, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.161125864Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:51.614081-08:00" }, { "operation": "add_edge", - "rtt_ns": 3313289, - "rtt_ms": 3.313289, + "rtt_ns": 2017875, + "rtt_ms": 2.017875, "checkpoint": 0, "vertex_from": "44", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.161742312Z" + "timestamp": "2025-11-27T04:01:51.614381-08:00" }, { "operation": "add_edge", - "rtt_ns": 2568841, - "rtt_ms": 2.568841, + "rtt_ns": 1886292, + "rtt_ms": 1.886292, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "565", - "timestamp": "2025-11-27T01:21:53.161764102Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.614526-08:00" }, { "operation": "add_edge", - "rtt_ns": 3352589, - "rtt_ms": 3.352589, + "rtt_ns": 1559917, + "rtt_ms": 1.559917, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.161780882Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.614613-08:00" }, { "operation": "add_edge", - "rtt_ns": 3388429, - "rtt_ms": 3.388429, + "rtt_ns": 1823583, + "rtt_ms": 1.823583, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.161828512Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:51.614899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182533, - "rtt_ms": 2.182533, + "rtt_ns": 1946750, + "rtt_ms": 1.94675, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.161876382Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.615011-08:00" }, { "operation": "add_edge", - "rtt_ns": 3442129, - "rtt_ms": 3.442129, + "rtt_ns": 2509542, + "rtt_ms": 2.509542, "checkpoint": 0, "vertex_from": "44", "vertex_to": "836", - "timestamp": "2025-11-27T01:21:53.161897342Z" + "timestamp": "2025-11-27T04:01:51.615478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597185, - "rtt_ms": 1.597185, + "rtt_ns": 1825042, + "rtt_ms": 1.825042, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.161912822Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.615562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2713931, - "rtt_ms": 2.713931, + "rtt_ns": 1892209, + "rtt_ms": 1.892209, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.161928412Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.61574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351836, - "rtt_ms": 1.351836, + "rtt_ns": 2481917, + "rtt_ms": 2.481917, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.16245143Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:51.615746-08:00" }, { "operation": "add_edge", - "rtt_ns": 750178, - "rtt_ms": 0.750178, + "rtt_ns": 1674042, + "rtt_ms": 1.674042, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.16249342Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.615756-08:00" }, { "operation": "add_edge", - "rtt_ns": 743708, - "rtt_ms": 0.743708, + "rtt_ns": 1428375, + "rtt_ms": 1.428375, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:53.16252604Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.615811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405606, - "rtt_ms": 1.405606, + "rtt_ns": 2129416, + "rtt_ms": 2.129416, "checkpoint": 0, "vertex_from": "44", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.16253255Z" + "timestamp": "2025-11-27T04:01:51.616656-08:00" }, { "operation": "add_edge", - "rtt_ns": 774468, - "rtt_ms": 0.774468, + "rtt_ns": 2137834, + "rtt_ms": 2.137834, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:53.16254237Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.616752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349665, - "rtt_ms": 1.349665, + "rtt_ns": 1789291, + "rtt_ms": 1.789291, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:53.163247937Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:51.616802-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2005000, + "rtt_ms": 2.005, + "checkpoint": 0, + "vertex_from": "44", + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:51.616905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609774, - "rtt_ms": 1.609774, + "rtt_ns": 1348125, + "rtt_ms": 1.348125, "checkpoint": 0, "vertex_from": "44", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.163487116Z" + "timestamp": "2025-11-27T04:01:51.616911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615914, - "rtt_ms": 1.615914, + "rtt_ns": 1294083, + "rtt_ms": 1.294083, "checkpoint": 0, "vertex_from": "44", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.163530056Z" + "timestamp": "2025-11-27T04:01:51.617041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717964, - "rtt_ms": 1.717964, + "rtt_ns": 1311958, + "rtt_ms": 1.311958, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.163548036Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:51.617053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636994, - "rtt_ms": 1.636994, + "rtt_ns": 1855792, + "rtt_ms": 1.855792, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "51", - "timestamp": "2025-11-27T01:21:53.163569166Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:51.617334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827574, - "rtt_ms": 1.827574, + "rtt_ns": 1579500, + "rtt_ms": 1.5795, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.164283114Z" + "vertex_to": "51", + "timestamp": "2025-11-27T04:01:51.617337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816544, - "rtt_ms": 1.816544, + "rtt_ns": 1574083, + "rtt_ms": 1.574083, "checkpoint": 0, "vertex_from": "44", "vertex_to": "660", - "timestamp": "2025-11-27T01:21:53.164311234Z" + "timestamp": "2025-11-27T04:01:51.618232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797724, - "rtt_ms": 1.797724, + "rtt_ns": 2896625, + "rtt_ms": 2.896625, "checkpoint": 0, "vertex_from": "44", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:53.164326094Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:51.618708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782174, - "rtt_ms": 1.782174, + "rtt_ns": 1437208, + "rtt_ms": 1.437208, + "checkpoint": 0, + "vertex_from": "45", + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:51.618772-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1925041, + "rtt_ms": 1.925041, "checkpoint": 0, "vertex_from": "44", "vertex_to": "833", - "timestamp": "2025-11-27T01:21:53.164328454Z" + "timestamp": "2025-11-27T04:01:51.618831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997633, - "rtt_ms": 1.997633, + "rtt_ns": 2031959, + "rtt_ms": 2.031959, "checkpoint": 0, "vertex_from": "44", "vertex_to": "113", - "timestamp": "2025-11-27T01:21:53.164531683Z" + "timestamp": "2025-11-27T04:01:51.618835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616815, - "rtt_ms": 1.616815, + "rtt_ns": 2108334, + "rtt_ms": 2.108334, "checkpoint": 0, - "vertex_from": "45", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.164868222Z" + "vertex_from": "44", + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:51.618864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455396, - "rtt_ms": 1.455396, + "rtt_ns": 1849375, + "rtt_ms": 1.849375, "checkpoint": 0, "vertex_from": "45", "vertex_to": "401", - "timestamp": "2025-11-27T01:21:53.164943902Z" + "timestamp": "2025-11-27T04:01:51.618893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384876, - "rtt_ms": 1.384876, + "rtt_ns": 2030916, + "rtt_ms": 2.030916, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.164955392Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.618944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491695, - "rtt_ms": 1.491695, + "rtt_ns": 1953666, + "rtt_ms": 1.953666, "checkpoint": 0, "vertex_from": "45", "vertex_to": "403", - "timestamp": "2025-11-27T01:21:53.165023461Z" + "timestamp": "2025-11-27T04:01:51.619007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528925, - "rtt_ms": 1.528925, + "rtt_ns": 1697667, + "rtt_ms": 1.697667, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:53.165079281Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.619035-08:00" }, { "operation": "add_edge", - "rtt_ns": 891947, - "rtt_ms": 0.891947, + "rtt_ns": 1335125, + "rtt_ms": 1.335125, "checkpoint": 0, "vertex_from": "45", "vertex_to": "368", - "timestamp": "2025-11-27T01:21:53.165177921Z" + "timestamp": "2025-11-27T04:01:51.619569-08:00" }, { "operation": "add_edge", - "rtt_ns": 893737, - "rtt_ms": 0.893737, + "rtt_ns": 1127000, + "rtt_ms": 1.127, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "362", - "timestamp": "2025-11-27T01:21:53.165224401Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.620135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015186, - "rtt_ms": 1.015186, + "rtt_ns": 1350583, + "rtt_ms": 1.350583, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:53.16532912Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.620386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672654, - "rtt_ms": 1.672654, + "rtt_ns": 1502833, + "rtt_ms": 1.502833, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.166000218Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.620397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285563, - "rtt_ms": 2.285563, + "rtt_ns": 1849291, + "rtt_ms": 1.849291, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.166819016Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:51.620559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098983, - "rtt_ms": 2.098983, + "rtt_ns": 1796125, + "rtt_ms": 1.796125, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.166969065Z" + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:51.620569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2619421, - "rtt_ms": 2.619421, + "rtt_ns": 1813917, + "rtt_ms": 1.813917, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.167564813Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:51.620651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2614112, - "rtt_ms": 2.614112, + "rtt_ns": 1864250, + "rtt_ms": 1.86425, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.167639373Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:01:51.620696-08:00" }, { "operation": "add_edge", - "rtt_ns": 2633422, - "rtt_ms": 2.633422, + "rtt_ns": 1758583, + "rtt_ms": 1.758583, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.167713993Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:51.620703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2760901, - "rtt_ms": 2.760901, + "rtt_ns": 1845042, + "rtt_ms": 1.845042, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:53.167719433Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.62071-08:00" }, { "operation": "add_edge", - "rtt_ns": 2613272, - "rtt_ms": 2.613272, + "rtt_ns": 1770791, + "rtt_ms": 1.770791, "checkpoint": 0, "vertex_from": "45", "vertex_to": "624", - "timestamp": "2025-11-27T01:21:53.167792883Z" + "timestamp": "2025-11-27T04:01:51.621341-08:00" }, { "operation": "add_edge", - "rtt_ns": 2498363, - "rtt_ms": 2.498363, + "rtt_ns": 1263083, + "rtt_ms": 1.263083, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "964", - "timestamp": "2025-11-27T01:21:53.167828793Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.621399-08:00" }, { "operation": "add_edge", - "rtt_ns": 3087340, - "rtt_ms": 3.08734, + "rtt_ns": 1163583, + "rtt_ms": 1.163583, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.168313051Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:01:51.62155-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362253, - "rtt_ms": 2.362253, + "rtt_ns": 1337041, + "rtt_ms": 1.337041, "checkpoint": 0, "vertex_from": "45", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.168364531Z" + "timestamp": "2025-11-27T04:01:51.621734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616785, - "rtt_ms": 1.616785, + "rtt_ns": 1685375, + "rtt_ms": 1.685375, "checkpoint": 0, "vertex_from": "45", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.168437061Z" + "timestamp": "2025-11-27T04:01:51.622245-08:00" }, { "operation": "add_edge", - "rtt_ns": 976307, - "rtt_ms": 0.976307, + "rtt_ns": 1684084, + "rtt_ms": 1.684084, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:53.16854264Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.622381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629605, - "rtt_ms": 1.629605, + "rtt_ns": 1699584, + "rtt_ms": 1.699584, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.16859975Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.622411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546355, - "rtt_ms": 1.546355, + "rtt_ns": 1799667, + "rtt_ms": 1.799667, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.169266668Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:51.622452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728025, - "rtt_ms": 1.728025, + "rtt_ns": 2062958, + "rtt_ms": 2.062958, "checkpoint": 0, "vertex_from": "45", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.169368288Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.622633-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1254958, + "rtt_ms": 1.254958, + "checkpoint": 0, + "vertex_from": "46", + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:51.622654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687395, - "rtt_ms": 1.687395, + "rtt_ns": 1993083, + "rtt_ms": 1.993083, "checkpoint": 0, "vertex_from": "45", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.169402488Z" + "timestamp": "2025-11-27T04:01:51.622698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093237, - "rtt_ms": 1.093237, + "rtt_ns": 1232042, + "rtt_ms": 1.232042, "checkpoint": 0, "vertex_from": "46", "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.169407538Z" + "timestamp": "2025-11-27T04:01:51.622784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144973, - "rtt_ms": 2.144973, + "rtt_ns": 1454375, + "rtt_ms": 1.454375, "checkpoint": 0, "vertex_from": "46", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:53.169940056Z" + "timestamp": "2025-11-27T04:01:51.622797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446076, - "rtt_ms": 1.446076, + "rtt_ns": 1409291, + "rtt_ms": 1.409291, "checkpoint": 0, "vertex_from": "46", "vertex_to": "649", - "timestamp": "2025-11-27T01:21:53.169990676Z" + "timestamp": "2025-11-27T04:01:51.623793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565045, - "rtt_ms": 1.565045, - "checkpoint": 0, - "vertex_from": "46", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.170003526Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1656195, - "rtt_ms": 1.656195, - "checkpoint": 0, - "vertex_from": "46", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.170021986Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1499435, - "rtt_ms": 1.499435, + "rtt_ns": 1502458, + "rtt_ms": 1.502458, "checkpoint": 0, "vertex_from": "46", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.170100225Z" + "timestamp": "2025-11-27T04:01:51.623914-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286362, - "rtt_ms": 2.286362, + "rtt_ns": 1681250, + "rtt_ms": 1.68125, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:53.170116355Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.623927-08:00" }, { "operation": "add_edge", - "rtt_ns": 872567, - "rtt_ms": 0.872567, + "rtt_ns": 1155583, + "rtt_ms": 1.155583, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.170143005Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.62394-08:00" }, { "operation": "add_edge", - "rtt_ns": 784887, - "rtt_ms": 0.784887, + "rtt_ns": 1307417, + "rtt_ms": 1.307417, "checkpoint": 0, "vertex_from": "46", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.170193555Z" + "timestamp": "2025-11-27T04:01:51.624007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249436, - "rtt_ms": 1.249436, + "rtt_ns": 2384000, + "rtt_ms": 2.384, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.170653114Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:51.624119-08:00" }, { "operation": "add_edge", - "rtt_ns": 886757, - "rtt_ms": 0.886757, + "rtt_ns": 1501333, + "rtt_ms": 1.501333, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.170878493Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:51.624137-08:00" }, { "operation": "add_edge", - "rtt_ns": 951947, - "rtt_ms": 0.951947, + "rtt_ns": 1398917, + "rtt_ms": 1.398917, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.170893493Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.624198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646834, - "rtt_ms": 1.646834, + "rtt_ns": 1807750, + "rtt_ms": 1.80775, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.171016762Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.62426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028226, - "rtt_ms": 1.028226, + "rtt_ns": 1655417, + "rtt_ms": 1.655417, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.171032632Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.624311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554505, - "rtt_ms": 1.554505, + "rtt_ns": 1349125, + "rtt_ms": 1.349125, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.17174893Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.625143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651275, - "rtt_ms": 1.651275, + "rtt_ns": 1265333, + "rtt_ms": 1.265333, "checkpoint": 0, "vertex_from": "46", "vertex_to": "568", - "timestamp": "2025-11-27T01:21:53.17176912Z" + "timestamp": "2025-11-27T04:01:51.625206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749544, - "rtt_ms": 1.749544, + "rtt_ns": 1484667, + "rtt_ms": 1.484667, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "48", - "timestamp": "2025-11-27T01:21:53.17177255Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:51.625413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141876, - "rtt_ms": 1.141876, + "rtt_ns": 1457958, + "rtt_ms": 1.457958, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:53.17179623Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.625578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835064, - "rtt_ms": 1.835064, + "rtt_ns": 1445167, + "rtt_ms": 1.445167, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:53.171936529Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.625644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246686, - "rtt_ms": 1.246686, + "rtt_ns": 2024833, + "rtt_ms": 2.024833, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.172127269Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:51.626162-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112463, - "rtt_ms": 2.112463, + "rtt_ns": 1949250, + "rtt_ms": 1.94925, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.172256358Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.62621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395655, - "rtt_ms": 1.395655, + "rtt_ns": 1999000, + "rtt_ms": 1.999, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.172290158Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.626312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411306, - "rtt_ms": 1.411306, + "rtt_ns": 2342625, + "rtt_ms": 2.342625, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.172429228Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.62635-08:00" }, { "operation": "add_edge", - "rtt_ns": 649488, - "rtt_ms": 0.649488, + "rtt_ns": 2697250, + "rtt_ms": 2.69725, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.172447258Z" + "vertex_from": "46", + "vertex_to": "48", + "timestamp": "2025-11-27T04:01:51.626612-08:00" }, { "operation": "add_edge", - "rtt_ns": 754777, - "rtt_ms": 0.754777, + "rtt_ns": 1669250, + "rtt_ms": 1.66925, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:53.172528497Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:51.627083-08:00" }, { "operation": "add_edge", - "rtt_ns": 778617, - "rtt_ms": 0.778617, + "rtt_ns": 1961500, + "rtt_ms": 1.9615, "checkpoint": 0, "vertex_from": "46", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.172528487Z" + "timestamp": "2025-11-27T04:01:51.627169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500345, - "rtt_ms": 1.500345, + "rtt_ns": 1740917, + "rtt_ms": 1.740917, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.172534427Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:51.62732-08:00" }, { "operation": "add_edge", - "rtt_ns": 764367, - "rtt_ms": 0.764367, + "rtt_ns": 2281041, + "rtt_ms": 2.281041, "checkpoint": 0, "vertex_from": "46", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:53.172535287Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.627427-08:00" }, { "operation": "add_edge", - "rtt_ns": 658668, - "rtt_ms": 0.658668, + "rtt_ns": 1398750, + "rtt_ms": 1.39875, "checkpoint": 0, "vertex_from": "47", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.172596827Z" + "timestamp": "2025-11-27T04:01:51.627562-08:00" }, { "operation": "add_edge", - "rtt_ns": 878177, - "rtt_ms": 0.878177, + "rtt_ns": 1609209, + "rtt_ms": 1.609209, "checkpoint": 0, "vertex_from": "47", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.173169335Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1102366, - "rtt_ms": 1.102366, - "checkpoint": 0, - "vertex_from": "691", - "timestamp": "2025-11-27T01:21:53.173231615Z" + "timestamp": "2025-11-27T04:01:51.62796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172646, - "rtt_ms": 1.172646, + "rtt_ns": 1400125, + "rtt_ms": 1.400125, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.173431544Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.628013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494105, - "rtt_ms": 1.494105, + "rtt_ns": 1728542, + "rtt_ms": 1.728542, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.173924683Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.628042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618314, - "rtt_ms": 1.618314, + "rtt_ns": 2461792, + "rtt_ms": 2.461792, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:53.174066892Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.628106-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1583665, - "rtt_ms": 1.583665, + "operation": "add_vertex", + "rtt_ns": 1902875, + "rtt_ms": 1.902875, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:53.174119632Z" + "vertex_from": "691", + "timestamp": "2025-11-27T04:01:51.628114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585055, - "rtt_ms": 1.585055, + "rtt_ns": 1349042, + "rtt_ms": 1.349042, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.174121712Z" + "vertex_from": "47", + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:51.62867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635875, - "rtt_ms": 1.635875, + "rtt_ns": 1885292, + "rtt_ms": 1.885292, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:53.174167242Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.629056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672805, - "rtt_ms": 1.672805, + "rtt_ns": 1673583, + "rtt_ms": 1.673583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:53.174271432Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:51.629102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983154, - "rtt_ms": 1.983154, + "rtt_ns": 2026750, + "rtt_ms": 2.02675, "checkpoint": 0, "vertex_from": "47", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.174514171Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:51.629113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484985, - "rtt_ms": 1.484985, + "rtt_ns": 1121750, + "rtt_ms": 1.12175, "checkpoint": 0, "vertex_from": "48", "vertex_to": "900", - "timestamp": "2025-11-27T01:21:53.17465714Z" + "timestamp": "2025-11-27T04:01:51.629136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069756, - "rtt_ms": 1.069756, + "rtt_ns": 1376125, + "rtt_ms": 1.376125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.175237978Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:51.629338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144806, - "rtt_ms": 1.144806, + "rtt_ns": 1898625, + "rtt_ms": 1.898625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.175265248Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.629463-08:00" }, { "operation": "add_edge", - "rtt_ns": 999016, - "rtt_ms": 0.999016, + "rtt_ns": 1438917, + "rtt_ms": 1.438917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.175271478Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:51.629481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204276, - "rtt_ms": 1.204276, + "rtt_ns": 1666125, + "rtt_ms": 1.666125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.175273158Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.629775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234166, - "rtt_ms": 1.234166, + "rtt_ns": 1771583, + "rtt_ms": 1.771583, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.175356968Z" + "vertex_from": "47", + "vertex_to": "691", + "timestamp": "2025-11-27T04:01:51.629886-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178573, - "rtt_ms": 2.178573, + "rtt_ns": 1791917, + "rtt_ms": 1.791917, "checkpoint": 0, - "vertex_from": "47", - "vertex_to": "691", - "timestamp": "2025-11-27T01:21:53.175410448Z" + "vertex_from": "48", + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.630896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567725, - "rtt_ms": 1.567725, + "rtt_ns": 1541375, + "rtt_ms": 1.541375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.175493578Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.631005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147783, - "rtt_ms": 2.147783, + "rtt_ns": 1565792, + "rtt_ms": 1.565792, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:53.175583587Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.631048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548315, - "rtt_ms": 1.548315, + "rtt_ns": 2404875, + "rtt_ms": 2.404875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.176206945Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:51.631075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692144, - "rtt_ms": 1.692144, + "rtt_ns": 1747958, + "rtt_ms": 1.747958, "checkpoint": 0, "vertex_from": "48", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.176207565Z" + "timestamp": "2025-11-27T04:01:51.631087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242646, - "rtt_ms": 1.242646, + "rtt_ns": 2051167, + "rtt_ms": 2.051167, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.176516874Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:51.631189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885214, - "rtt_ms": 1.885214, + "rtt_ns": 2142625, + "rtt_ms": 2.142625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:53.177159122Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.631201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1975694, - "rtt_ms": 1.975694, + "rtt_ns": 1503625, + "rtt_ms": 1.503625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.177214972Z" + "vertex_to": "985", + "timestamp": "2025-11-27T04:01:51.631279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055344, - "rtt_ms": 2.055344, + "rtt_ns": 1425250, + "rtt_ms": 1.42525, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "985", - "timestamp": "2025-11-27T01:21:53.177322342Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:51.631312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931024, - "rtt_ms": 1.931024, + "rtt_ns": 2309583, + "rtt_ms": 2.309583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:53.177343082Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:51.631424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880964, - "rtt_ms": 1.880964, + "rtt_ns": 1813833, + "rtt_ms": 1.813833, "checkpoint": 0, "vertex_from": "48", "vertex_to": "432", - "timestamp": "2025-11-27T01:21:53.177375912Z" + "timestamp": "2025-11-27T04:01:51.63289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012144, - "rtt_ms": 2.012144, + "rtt_ns": 1883708, + "rtt_ms": 1.883708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "77", - "timestamp": "2025-11-27T01:21:53.177603961Z" + "vertex_to": "103", + "timestamp": "2025-11-27T04:01:51.63289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284453, - "rtt_ms": 2.284453, + "rtt_ns": 1577334, + "rtt_ms": 1.577334, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "103", - "timestamp": "2025-11-27T01:21:53.177643411Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:51.63289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690425, - "rtt_ms": 1.690425, + "rtt_ns": 1488791, + "rtt_ms": 1.488791, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.17790038Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.632914-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1865750, + "rtt_ms": 1.86575, + "checkpoint": 0, + "vertex_from": "48", + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:51.632914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426556, - "rtt_ms": 1.426556, + "rtt_ns": 1660875, + "rtt_ms": 1.660875, "checkpoint": 0, "vertex_from": "48", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.17794551Z" + "timestamp": "2025-11-27T04:01:51.632943-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274673, - "rtt_ms": 2.274673, + "rtt_ns": 1840417, + "rtt_ms": 1.840417, "checkpoint": 0, "vertex_from": "48", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:53.178484128Z" + "timestamp": "2025-11-27T04:01:51.633031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356106, - "rtt_ms": 1.356106, + "rtt_ns": 2151500, + "rtt_ms": 2.1515, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:53.178517098Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.633049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439145, - "rtt_ms": 1.439145, + "rtt_ns": 1983708, + "rtt_ms": 1.983708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.178655647Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:01:51.633071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294615, - "rtt_ms": 1.294615, + "rtt_ns": 1885750, + "rtt_ms": 1.88575, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.178672107Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.633087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331205, - "rtt_ms": 1.331205, + "rtt_ns": 1941000, + "rtt_ms": 1.941, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.178676327Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.635052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382795, - "rtt_ms": 1.382795, + "rtt_ns": 2277542, + "rtt_ms": 2.277542, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.178707657Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.635327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769104, - "rtt_ms": 1.769104, + "rtt_ns": 2355500, + "rtt_ms": 2.3555, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:53.179374245Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:51.635445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492225, - "rtt_ms": 1.492225, + "rtt_ns": 2602833, + "rtt_ms": 2.602833, "checkpoint": 0, "vertex_from": "48", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.179393405Z" + "timestamp": "2025-11-27T04:01:51.635554-08:00" }, { "operation": "add_edge", - "rtt_ns": 900357, - "rtt_ms": 0.900357, + "rtt_ns": 2681166, + "rtt_ms": 2.681166, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.179418915Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.635573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837604, - "rtt_ms": 1.837604, + "rtt_ns": 2797917, + "rtt_ms": 2.797917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:53.179482255Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:51.635713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589805, - "rtt_ms": 1.589805, + "rtt_ns": 2815625, + "rtt_ms": 2.815625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:53.179537435Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:51.63573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546145, - "rtt_ms": 1.546145, + "rtt_ns": 2959750, + "rtt_ms": 2.95975, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.180037153Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.63585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491276, - "rtt_ms": 1.491276, + "rtt_ns": 2870750, + "rtt_ms": 2.87075, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "361", - "timestamp": "2025-11-27T01:21:53.180148953Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:51.635903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512836, - "rtt_ms": 1.512836, + "rtt_ns": 3081625, + "rtt_ms": 3.081625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.180186373Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.635973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520705, - "rtt_ms": 1.520705, + "rtt_ns": 1564750, + "rtt_ms": 1.56475, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "920", - "timestamp": "2025-11-27T01:21:53.180198722Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.637538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515385, - "rtt_ms": 1.515385, + "rtt_ns": 1952916, + "rtt_ms": 1.952916, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.180225622Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:51.637856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088536, - "rtt_ms": 1.088536, + "rtt_ns": 2162250, + "rtt_ms": 2.16225, "checkpoint": 0, "vertex_from": "48", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.180508641Z" + "timestamp": "2025-11-27T04:01:51.637876-08:00" }, { "operation": "add_edge", - "rtt_ns": 899727, - "rtt_ms": 0.899727, + "rtt_ns": 2563583, + "rtt_ms": 2.563583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.18104955Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:51.637892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692485, - "rtt_ms": 1.692485, + "rtt_ns": 2336708, + "rtt_ms": 2.336708, "checkpoint": 0, "vertex_from": "48", "vertex_to": "278", - "timestamp": "2025-11-27T01:21:53.18108748Z" + "timestamp": "2025-11-27T04:01:51.63791-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1642934, - "rtt_ms": 1.642934, + "rtt_ns": 2196375, + "rtt_ms": 2.196375, "checkpoint": 0, "vertex_from": "630", - "timestamp": "2025-11-27T01:21:53.181128289Z" + "timestamp": "2025-11-27T04:01:51.63793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590664, - "rtt_ms": 1.590664, + "rtt_ns": 2484375, + "rtt_ms": 2.484375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.181129339Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.637936-08:00" }, { "operation": "add_edge", - "rtt_ns": 960567, - "rtt_ms": 0.960567, + "rtt_ns": 2895458, + "rtt_ms": 2.895458, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:53.181160619Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.637948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145496, - "rtt_ms": 1.145496, + "rtt_ns": 2117750, + "rtt_ms": 2.11775, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:53.181184449Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.637969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137577, - "rtt_ms": 1.137577, + "rtt_ns": 3140416, + "rtt_ms": 3.140416, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.181365039Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.638696-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004894, - "rtt_ms": 2.004894, + "rtt_ns": 1143917, + "rtt_ms": 1.143917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.181380909Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.639114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683574, - "rtt_ms": 1.683574, + "rtt_ns": 1591334, + "rtt_ms": 1.591334, "checkpoint": 0, "vertex_from": "48", "vertex_to": "153", - "timestamp": "2025-11-27T01:21:53.181872757Z" + "timestamp": "2025-11-27T04:01:51.639131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491295, - "rtt_ms": 1.491295, + "rtt_ns": 1761875, + "rtt_ms": 1.761875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.182002006Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.639639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211366, - "rtt_ms": 1.211366, + "rtt_ns": 1715917, + "rtt_ms": 1.715917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "630", - "timestamp": "2025-11-27T01:21:53.182340265Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.639655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502745, - "rtt_ms": 1.502745, + "rtt_ns": 1770541, + "rtt_ms": 1.770541, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "229", - "timestamp": "2025-11-27T01:21:53.182553895Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:51.639664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483045, - "rtt_ms": 1.483045, + "rtt_ns": 1792084, + "rtt_ms": 1.792084, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:53.182613954Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:01:51.639722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645114, - "rtt_ms": 1.645114, + "rtt_ns": 1782542, + "rtt_ms": 1.782542, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.182733934Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:51.639732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408845, - "rtt_ms": 1.408845, + "rtt_ns": 1966334, + "rtt_ms": 1.966334, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.182776674Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:01:51.639877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176626, - "rtt_ms": 1.176626, + "rtt_ns": 2096916, + "rtt_ms": 2.096916, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "175", - "timestamp": "2025-11-27T01:21:53.183519591Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:51.639955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766754, - "rtt_ms": 1.766754, + "rtt_ns": 1555125, + "rtt_ms": 1.555125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.183642071Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.640252-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283422, - "rtt_ms": 2.283422, + "rtt_ns": 1299750, + "rtt_ms": 1.29975, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:53.183665861Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.640415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2483792, - "rtt_ms": 2.483792, + "rtt_ns": 1418334, + "rtt_ms": 1.418334, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.183669041Z" + "vertex_to": "122", + "timestamp": "2025-11-27T04:01:51.641075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132866, - "rtt_ms": 1.132866, + "rtt_ns": 1367208, + "rtt_ms": 1.367208, "checkpoint": 0, "vertex_from": "48", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.183688171Z" + "timestamp": "2025-11-27T04:01:51.64109-08:00" }, { "operation": "add_edge", - "rtt_ns": 2534872, - "rtt_ms": 2.534872, + "rtt_ns": 1425250, + "rtt_ms": 1.42525, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.183696671Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.641158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750735, - "rtt_ms": 1.750735, + "rtt_ns": 1547625, + "rtt_ms": 1.547625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "122", - "timestamp": "2025-11-27T01:21:53.183753841Z" + "vertex_to": "175", + "timestamp": "2025-11-27T04:01:51.641212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679204, - "rtt_ms": 1.679204, + "rtt_ns": 2319709, + "rtt_ms": 2.319709, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.184456858Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:51.641452-08:00" }, { "operation": "add_edge", - "rtt_ns": 954227, - "rtt_ms": 0.954227, + "rtt_ns": 1878125, + "rtt_ms": 1.878125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.184475578Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:51.641518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756684, - "rtt_ms": 1.756684, + "rtt_ns": 1568667, + "rtt_ms": 1.568667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:53.184492638Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:51.641524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915984, - "rtt_ms": 1.915984, + "rtt_ns": 1659584, + "rtt_ms": 1.659584, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.184531188Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:01:51.642735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231106, - "rtt_ms": 1.231106, + "rtt_ns": 2916708, + "rtt_ms": 2.916708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.184921527Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:51.642795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317126, - "rtt_ms": 1.317126, + "rtt_ns": 1763166, + "rtt_ms": 1.763166, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.184961627Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:51.642922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212976, - "rtt_ms": 1.212976, + "rtt_ns": 2893375, + "rtt_ms": 2.893375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:53.185707694Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:51.643149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010193, - "rtt_ms": 2.010193, + "rtt_ns": 2121875, + "rtt_ms": 2.121875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.185708544Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.643213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262836, - "rtt_ms": 1.262836, + "rtt_ns": 1750708, + "rtt_ms": 1.750708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.185722134Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:51.643277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263366, - "rtt_ms": 1.263366, + "rtt_ns": 2082042, + "rtt_ms": 2.082042, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:53.185740504Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.643295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129373, - "rtt_ms": 2.129373, + "rtt_ns": 2948917, + "rtt_ms": 2.948917, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.185800944Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.643365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292166, - "rtt_ms": 1.292166, + "rtt_ns": 1956916, + "rtt_ms": 1.956916, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.185825144Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:51.643477-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152103, - "rtt_ms": 2.152103, + "rtt_ns": 1116833, + "rtt_ms": 1.116833, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:53.185908844Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:01:51.644395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468245, - "rtt_ms": 1.468245, + "rtt_ns": 1294916, + "rtt_ms": 1.294916, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.186391102Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.644773-08:00" }, { "operation": "add_edge", - "rtt_ns": 2762991, - "rtt_ms": 2.762991, + "rtt_ns": 3391375, + "rtt_ms": 3.391375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "355", - "timestamp": "2025-11-27T01:21:53.186430252Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:51.644846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879204, - "rtt_ms": 1.879204, + "rtt_ns": 2146416, + "rtt_ms": 2.146416, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:53.187790128Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:51.644883-08:00" }, { "operation": "add_edge", - "rtt_ns": 2798831, - "rtt_ms": 2.798831, + "rtt_ns": 2268417, + "rtt_ms": 2.268417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:53.188540885Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.645064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2815061, - "rtt_ms": 2.815061, + "rtt_ns": 1788333, + "rtt_ms": 1.788333, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.188641775Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:51.645154-08:00" }, { "operation": "add_edge", - "rtt_ns": 2993591, - "rtt_ms": 2.993591, + "rtt_ns": 2025375, + "rtt_ms": 2.025375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "566", - "timestamp": "2025-11-27T01:21:53.188703815Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:01:51.645242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2925431, - "rtt_ms": 2.925431, + "rtt_ns": 2104834, + "rtt_ms": 2.104834, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.188727985Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.645254-08:00" }, { "operation": "add_edge", - "rtt_ns": 3819328, - "rtt_ms": 3.819328, + "rtt_ns": 2432541, + "rtt_ms": 2.432541, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.188783795Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.645355-08:00" }, { "operation": "add_edge", - "rtt_ns": 3157410, - "rtt_ms": 3.15741, + "rtt_ns": 985708, + "rtt_ms": 0.985708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "737", - "timestamp": "2025-11-27T01:21:53.188867104Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:51.645382-08:00" }, { "operation": "add_edge", - "rtt_ns": 3575059, - "rtt_ms": 3.575059, + "rtt_ns": 2566000, + "rtt_ms": 2.566, "checkpoint": 0, "vertex_from": "48", "vertex_to": "928", - "timestamp": "2025-11-27T01:21:53.189301353Z" + "timestamp": "2025-11-27T04:01:51.645862-08:00" }, { "operation": "add_edge", - "rtt_ns": 860318, - "rtt_ms": 0.860318, + "rtt_ns": 1377250, + "rtt_ms": 1.37725, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "50", - "timestamp": "2025-11-27T01:21:53.189402513Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:51.646151-08:00" }, { "operation": "add_edge", - "rtt_ns": 3101260, - "rtt_ms": 3.10126, + "rtt_ns": 1304416, + "rtt_ms": 1.304416, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "901", - "timestamp": "2025-11-27T01:21:53.189493872Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.646188-08:00" }, { "operation": "add_edge", - "rtt_ns": 3118150, - "rtt_ms": 3.11815, + "rtt_ns": 1235417, + "rtt_ms": 1.235417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.189549752Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:51.6463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2349402, - "rtt_ms": 2.349402, + "rtt_ns": 1281084, + "rtt_ms": 1.281084, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:53.19014099Z" + "vertex_to": "50", + "timestamp": "2025-11-27T04:01:51.646436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607945, - "rtt_ms": 1.607945, + "rtt_ns": 1616375, + "rtt_ms": 1.616375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:53.19025166Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:51.646465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555545, - "rtt_ms": 1.555545, + "rtt_ns": 2580417, + "rtt_ms": 2.580417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:53.19034043Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:51.647825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493746, - "rtt_ms": 1.493746, + "rtt_ns": 2612542, + "rtt_ms": 2.612542, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.19036276Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.647868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697974, - "rtt_ms": 1.697974, + "rtt_ns": 2521000, + "rtt_ms": 2.521, "checkpoint": 0, "vertex_from": "48", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.190427309Z" + "timestamp": "2025-11-27T04:01:51.647879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799994, - "rtt_ms": 1.799994, + "rtt_ns": 2709500, + "rtt_ms": 2.7095, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.190504859Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:51.648093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328016, - "rtt_ms": 1.328016, + "rtt_ns": 2219458, + "rtt_ms": 2.219458, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.190630739Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:51.648409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224526, - "rtt_ms": 1.224526, + "rtt_ns": 2611041, + "rtt_ms": 2.611041, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:53.190719898Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:51.648474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313865, - "rtt_ms": 1.313865, + "rtt_ns": 2047416, + "rtt_ms": 2.047416, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:53.190721158Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:51.648484-08:00" }, { "operation": "add_edge", - "rtt_ns": 780628, - "rtt_ms": 0.780628, + "rtt_ns": 2216958, + "rtt_ms": 2.216958, "checkpoint": 0, "vertex_from": "48", "vertex_to": "922", - "timestamp": "2025-11-27T01:21:53.190922518Z" + "timestamp": "2025-11-27T04:01:51.648683-08:00" }, { "operation": "add_edge", - "rtt_ns": 703858, - "rtt_ms": 0.703858, + "rtt_ns": 2589083, + "rtt_ms": 2.589083, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.190957238Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.648741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536625, - "rtt_ms": 1.536625, + "rtt_ns": 1136291, + "rtt_ms": 1.136291, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "406", - "timestamp": "2025-11-27T01:21:53.191087967Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:51.649018-08:00" }, { "operation": "add_edge", - "rtt_ns": 749637, - "rtt_ms": 0.749637, + "rtt_ns": 1208791, + "rtt_ms": 1.208791, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.191114087Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.649035-08:00" }, { "operation": "add_edge", - "rtt_ns": 814957, - "rtt_ms": 0.814957, + "rtt_ns": 1292458, + "rtt_ms": 1.292458, "checkpoint": 0, "vertex_from": "48", "vertex_to": "297", - "timestamp": "2025-11-27T01:21:53.191156827Z" + "timestamp": "2025-11-27T04:01:51.649161-08:00" }, { "operation": "add_edge", - "rtt_ns": 750458, - "rtt_ms": 0.750458, + "rtt_ns": 3106041, + "rtt_ms": 3.106041, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.191178637Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:51.649407-08:00" }, { "operation": "add_edge", - "rtt_ns": 878627, - "rtt_ms": 0.878627, + "rtt_ns": 958375, + "rtt_ms": 0.958375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.191385026Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:51.649443-08:00" }, { "operation": "add_edge", - "rtt_ns": 784477, - "rtt_ms": 0.784477, + "rtt_ns": 1367875, + "rtt_ms": 1.367875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:53.191416156Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:51.649462-08:00" }, { "operation": "add_edge", - "rtt_ns": 791628, - "rtt_ms": 0.791628, + "rtt_ns": 1705583, + "rtt_ms": 1.705583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.191514186Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:51.650181-08:00" }, { "operation": "add_edge", - "rtt_ns": 888808, - "rtt_ms": 0.888808, + "rtt_ns": 1541166, + "rtt_ms": 1.541166, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:53.191609816Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:51.650226-08:00" }, { "operation": "add_edge", - "rtt_ns": 710928, - "rtt_ms": 0.710928, + "rtt_ns": 1564042, + "rtt_ms": 1.564042, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.191634936Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:51.650601-08:00" }, { "operation": "add_edge", - "rtt_ns": 701118, - "rtt_ms": 0.701118, + "rtt_ns": 1455292, + "rtt_ms": 1.455292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.191661436Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.650618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211846, - "rtt_ms": 1.211846, + "rtt_ns": 1879292, + "rtt_ms": 1.879292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.192301483Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.650623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387005, - "rtt_ms": 1.387005, + "rtt_ns": 1724125, + "rtt_ms": 1.724125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.192566802Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.650743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455205, - "rtt_ms": 1.455205, + "rtt_ns": 2344375, + "rtt_ms": 2.344375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.192615582Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.650755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511565, - "rtt_ms": 1.511565, + "rtt_ns": 1695791, + "rtt_ms": 1.695791, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.192626632Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:51.651105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324476, - "rtt_ms": 1.324476, + "rtt_ns": 1756375, + "rtt_ms": 1.756375, "checkpoint": 0, "vertex_from": "48", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.192710802Z" + "timestamp": "2025-11-27T04:01:51.651221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727955, - "rtt_ms": 1.727955, + "rtt_ns": 1940541, + "rtt_ms": 1.940541, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:53.193145941Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:51.651385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658444, - "rtt_ms": 1.658444, + "rtt_ns": 1548959, + "rtt_ms": 1.548959, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:53.19317416Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:51.651731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571334, - "rtt_ms": 1.571334, + "rtt_ns": 1473500, + "rtt_ms": 1.4735, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:53.19318245Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:51.652229-08:00" }, { "operation": "add_edge", - "rtt_ns": 985577, - "rtt_ms": 0.985577, + "rtt_ns": 1905959, + "rtt_ms": 1.905959, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.19328929Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.652524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672585, - "rtt_ms": 1.672585, + "rtt_ns": 2053791, + "rtt_ms": 2.053791, "checkpoint": 0, "vertex_from": "48", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.19333966Z" + "timestamp": "2025-11-27T04:01:51.652677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761704, - "rtt_ms": 1.761704, + "rtt_ns": 2073250, + "rtt_ms": 2.07325, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.19339868Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:51.652818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509415, - "rtt_ms": 1.509415, + "rtt_ns": 2370375, + "rtt_ms": 2.370375, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:53.194126287Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:51.652973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074667, - "rtt_ms": 1.074667, + "rtt_ns": 1672458, + "rtt_ms": 1.672458, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:53.194259867Z" + "vertex_to": "923", + "timestamp": "2025-11-27T04:01:51.653058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698315, - "rtt_ms": 1.698315, + "rtt_ns": 1955208, + "rtt_ms": 1.955208, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:53.194266687Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.653177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564135, - "rtt_ms": 1.564135, + "rtt_ns": 2093292, + "rtt_ms": 2.093292, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "923", - "timestamp": "2025-11-27T01:21:53.194277107Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:51.653199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876824, - "rtt_ms": 1.876824, + "rtt_ns": 3131416, + "rtt_ms": 3.131416, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:53.195052284Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:51.653359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074163, - "rtt_ms": 2.074163, + "rtt_ns": 1757416, + "rtt_ms": 1.757416, "checkpoint": 0, "vertex_from": "48", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.195221464Z" + "timestamp": "2025-11-27T04:01:51.653489-08:00" }, { "operation": "add_edge", - "rtt_ns": 2595662, - "rtt_ms": 2.595662, + "rtt_ns": 1277250, + "rtt_ms": 1.27725, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.195223564Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:51.653507-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065433, - "rtt_ms": 2.065433, + "rtt_ns": 1113208, + "rtt_ms": 1.113208, "checkpoint": 0, "vertex_from": "48", "vertex_to": "210", - "timestamp": "2025-11-27T01:21:53.195355903Z" + "timestamp": "2025-11-27T04:01:51.653792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979623, - "rtt_ms": 1.979623, + "rtt_ns": 1276375, + "rtt_ms": 1.276375, "checkpoint": 0, "vertex_from": "48", "vertex_to": "78", - "timestamp": "2025-11-27T01:21:53.195379903Z" + "timestamp": "2025-11-27T04:01:51.65425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738064, - "rtt_ms": 1.738064, + "rtt_ns": 1205708, + "rtt_ms": 1.205708, "checkpoint": 0, "vertex_from": "48", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.195866021Z" + "timestamp": "2025-11-27T04:01:51.654265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688554, - "rtt_ms": 1.688554, + "rtt_ns": 1749750, + "rtt_ms": 1.74975, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:53.195950051Z" + "vertex_to": "231", + "timestamp": "2025-11-27T04:01:51.654568-08:00" }, { "operation": "add_edge", - "rtt_ns": 3387199, - "rtt_ms": 3.387199, + "rtt_ns": 1190667, + "rtt_ms": 1.190667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "231", - "timestamp": "2025-11-27T01:21:53.196729509Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:51.654681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2486732, - "rtt_ms": 2.486732, + "rtt_ns": 1749583, + "rtt_ms": 1.749583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "238", - "timestamp": "2025-11-27T01:21:53.196766099Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:51.654928-08:00" }, { "operation": "add_edge", - "rtt_ns": 2595131, - "rtt_ms": 2.595131, + "rtt_ns": 1431667, + "rtt_ms": 1.431667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "666", - "timestamp": "2025-11-27T01:21:53.196863708Z" + "vertex_to": "279", + "timestamp": "2025-11-27T04:01:51.65494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841834, - "rtt_ms": 1.841834, + "rtt_ns": 1772584, + "rtt_ms": 1.772584, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "675", - "timestamp": "2025-11-27T01:21:53.196896318Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:01:51.654973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634235, - "rtt_ms": 1.634235, + "rtt_ns": 1737667, + "rtt_ms": 1.737667, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:53.196991618Z" + "vertex_to": "238", + "timestamp": "2025-11-27T04:01:51.655098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835134, - "rtt_ms": 1.835134, + "rtt_ns": 1320708, + "rtt_ms": 1.320708, "checkpoint": 0, "vertex_from": "48", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.197061808Z" + "timestamp": "2025-11-27T04:01:51.655113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861454, - "rtt_ms": 1.861454, + "rtt_ns": 2633958, + "rtt_ms": 2.633958, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "279", - "timestamp": "2025-11-27T01:21:53.197085158Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:51.655159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790194, - "rtt_ms": 1.790194, + "rtt_ns": 1851916, + "rtt_ms": 1.851916, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:53.197171957Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:51.656103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319326, - "rtt_ms": 1.319326, + "rtt_ns": 1856125, + "rtt_ms": 1.856125, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.197187437Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:51.656122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327326, - "rtt_ms": 1.327326, + "rtt_ns": 1468875, + "rtt_ms": 1.468875, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:53.197280267Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:51.656442-08:00" }, { "operation": "add_edge", - "rtt_ns": 656007, - "rtt_ms": 0.656007, + "rtt_ns": 1548833, + "rtt_ms": 1.548833, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:53.197423366Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:51.65648-08:00" }, { "operation": "add_edge", - "rtt_ns": 694217, - "rtt_ms": 0.694217, + "rtt_ns": 1691416, + "rtt_ms": 1.691416, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.197425176Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:51.656632-08:00" }, { "operation": "add_edge", - "rtt_ns": 709458, - "rtt_ms": 0.709458, + "rtt_ns": 1510583, + "rtt_ms": 1.510583, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "851", - "timestamp": "2025-11-27T01:21:53.197607136Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.656672-08:00" }, { "operation": "add_edge", - "rtt_ns": 796638, - "rtt_ms": 0.796638, + "rtt_ns": 1589708, + "rtt_ms": 1.589708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.197661376Z" + "vertex_to": "851", + "timestamp": "2025-11-27T04:01:51.65669-08:00" }, { "operation": "add_edge", - "rtt_ns": 735638, - "rtt_ms": 0.735638, + "rtt_ns": 1630708, + "rtt_ms": 1.630708, "checkpoint": 0, "vertex_from": "48", "vertex_to": "123", - "timestamp": "2025-11-27T01:21:53.197728336Z" + "timestamp": "2025-11-27T04:01:51.656745-08:00" }, { "operation": "add_edge", - "rtt_ns": 753827, - "rtt_ms": 0.753827, + "rtt_ns": 2198625, + "rtt_ms": 2.198625, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.197816685Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.656768-08:00" }, { "operation": "add_edge", - "rtt_ns": 756777, - "rtt_ms": 0.756777, + "rtt_ns": 2261708, + "rtt_ms": 2.261708, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:53.197842945Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:51.656943-08:00" }, { "operation": "add_edge", - "rtt_ns": 815727, - "rtt_ms": 0.815727, + "rtt_ns": 1487875, + "rtt_ms": 1.487875, "checkpoint": 0, - "vertex_from": "49", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.198424223Z" + "vertex_from": "48", + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:51.657611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287196, - "rtt_ms": 1.287196, + "rtt_ns": 1657208, + "rtt_ms": 1.657208, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:53.198460293Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:51.657761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274346, - "rtt_ms": 1.274346, + "rtt_ns": 1417458, + "rtt_ms": 1.417458, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:53.198463303Z" + "vertex_from": "49", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.658108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056537, - "rtt_ms": 1.056537, + "rtt_ns": 1466000, + "rtt_ms": 1.466, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.198483163Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:51.658234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211696, - "rtt_ms": 1.211696, + "rtt_ns": 1641375, + "rtt_ms": 1.641375, "checkpoint": 0, - "vertex_from": "48", - "vertex_to": "56", - "timestamp": "2025-11-27T01:21:53.198493773Z" + "vertex_from": "49", + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:51.658314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689405, - "rtt_ms": 1.689405, + "rtt_ns": 1884417, + "rtt_ms": 1.884417, "checkpoint": 0, "vertex_from": "48", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:53.199114591Z" + "vertex_to": "56", + "timestamp": "2025-11-27T04:01:51.658365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497925, - "rtt_ms": 1.497925, + "rtt_ns": 1724375, + "rtt_ms": 1.724375, "checkpoint": 0, "vertex_from": "49", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.199160501Z" + "timestamp": "2025-11-27T04:01:51.65847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447645, - "rtt_ms": 1.447645, + "rtt_ns": 1926750, + "rtt_ms": 1.92675, "checkpoint": 0, - "vertex_from": "49", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:53.199177841Z" + "vertex_from": "48", + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:51.65856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446116, - "rtt_ms": 1.446116, + "rtt_ns": 2172458, + "rtt_ms": 2.172458, "checkpoint": 0, - "vertex_from": "49", - "vertex_to": "52", - "timestamp": "2025-11-27T01:21:53.199290351Z" + "vertex_from": "48", + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:51.658616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187206, - "rtt_ms": 1.187206, + "rtt_ns": 1978584, + "rtt_ms": 1.978584, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.199648919Z" + "vertex_to": "52", + "timestamp": "2025-11-27T04:01:51.65959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852384, - "rtt_ms": 1.852384, + "rtt_ns": 1641750, + "rtt_ms": 1.64175, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.199670309Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.65975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338696, - "rtt_ms": 1.338696, + "rtt_ns": 1516917, + "rtt_ms": 1.516917, "checkpoint": 0, "vertex_from": "49", "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.199804079Z" + "timestamp": "2025-11-27T04:01:51.659754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411756, - "rtt_ms": 1.411756, + "rtt_ns": 1443583, + "rtt_ms": 1.443583, "checkpoint": 0, "vertex_from": "49", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.199897259Z" + "timestamp": "2025-11-27T04:01:51.659759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402076, - "rtt_ms": 1.402076, + "rtt_ns": 2882708, + "rtt_ms": 2.882708, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.199897459Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.659829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546665, - "rtt_ms": 1.546665, + "rtt_ns": 1492958, + "rtt_ms": 1.492958, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.199972268Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.65986-08:00" }, { "operation": "add_edge", - "rtt_ns": 862447, - "rtt_ms": 0.862447, + "rtt_ns": 1302625, + "rtt_ms": 1.302625, "checkpoint": 0, "vertex_from": "49", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.200024128Z" + "timestamp": "2025-11-27T04:01:51.659864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278216, - "rtt_ms": 1.278216, + "rtt_ns": 1462250, + "rtt_ms": 1.46225, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:53.200459657Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.659933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235905, - "rtt_ms": 1.235905, + "rtt_ns": 2309917, + "rtt_ms": 2.309917, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.200528276Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.660072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436445, - "rtt_ms": 1.436445, + "rtt_ns": 1596375, + "rtt_ms": 1.596375, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.200554876Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:51.660213-08:00" }, { "operation": "add_edge", - "rtt_ns": 990767, - "rtt_ms": 0.990767, + "rtt_ns": 1421833, + "rtt_ms": 1.421833, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.200663336Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.661173-08:00" }, { "operation": "add_edge", - "rtt_ns": 882087, - "rtt_ms": 0.882087, + "rtt_ns": 1209834, + "rtt_ms": 1.209834, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.200688426Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:51.661283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041777, - "rtt_ms": 1.041777, + "rtt_ns": 1527084, + "rtt_ms": 1.527084, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.200692656Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.661357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114726, - "rtt_ms": 1.114726, + "rtt_ns": 1537750, + "rtt_ms": 1.53775, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:53.201576243Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:51.6614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721214, - "rtt_ms": 1.721214, + "rtt_ns": 1916125, + "rtt_ms": 1.916125, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.201621883Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.661507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744854, - "rtt_ms": 1.744854, + "rtt_ns": 1587666, + "rtt_ms": 1.587666, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.201644103Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:51.661522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673465, - "rtt_ms": 1.673465, + "rtt_ns": 1657958, + "rtt_ms": 1.657958, "checkpoint": 0, "vertex_from": "49", "vertex_to": "816", - "timestamp": "2025-11-27T01:21:53.201647823Z" + "timestamp": "2025-11-27T04:01:51.661523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677315, - "rtt_ms": 1.677315, + "rtt_ns": 1847042, + "rtt_ms": 1.847042, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.201703643Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:51.661607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160936, - "rtt_ms": 1.160936, + "rtt_ns": 1997542, + "rtt_ms": 1.997542, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.201851012Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:51.661753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698455, - "rtt_ms": 1.698455, + "rtt_ns": 1554333, + "rtt_ms": 1.554333, "checkpoint": 0, "vertex_from": "49", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.202229891Z" + "timestamp": "2025-11-27T04:01:51.661768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633245, - "rtt_ms": 1.633245, + "rtt_ns": 1063375, + "rtt_ms": 1.063375, "checkpoint": 0, "vertex_from": "49", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:53.202298961Z" + "timestamp": "2025-11-27T04:01:51.662347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777094, - "rtt_ms": 1.777094, + "rtt_ns": 1142083, + "rtt_ms": 1.142083, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:53.20233363Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.662749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679934, - "rtt_ms": 1.679934, + "rtt_ns": 1593792, + "rtt_ms": 1.593792, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.20237507Z" + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:51.662768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203876, - "rtt_ms": 1.203876, + "rtt_ns": 1251542, + "rtt_ms": 1.251542, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:53.202909109Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.662776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546185, - "rtt_ms": 1.546185, + "rtt_ns": 1440042, + "rtt_ms": 1.440042, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.203169228Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.662798-08:00" }, { "operation": "add_edge", - "rtt_ns": 2191713, - "rtt_ms": 2.191713, + "rtt_ns": 1489875, + "rtt_ms": 1.489875, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.203770686Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.662891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1999273, - "rtt_ms": 1.999273, + "rtt_ns": 1481917, + "rtt_ms": 1.481917, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.203853465Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.662992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225032, - "rtt_ms": 2.225032, + "rtt_ns": 1493459, + "rtt_ms": 1.493459, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.203874015Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.663016-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229802, - "rtt_ms": 2.229802, + "rtt_ns": 1773750, + "rtt_ms": 1.77375, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.203877345Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:51.663527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727854, - "rtt_ms": 1.727854, + "rtt_ns": 1791541, + "rtt_ms": 1.791541, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.203959395Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.66356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620425, - "rtt_ms": 1.620425, + "rtt_ns": 1307875, + "rtt_ms": 1.307875, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:53.203996805Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:51.664058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664345, - "rtt_ms": 1.664345, + "rtt_ns": 1212375, + "rtt_ms": 1.212375, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.203999215Z" + "vertex_to": "124", + "timestamp": "2025-11-27T04:01:51.664104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800594, - "rtt_ms": 1.800594, + "rtt_ns": 2006416, + "rtt_ms": 2.006416, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:53.204101015Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.664354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222056, - "rtt_ms": 1.222056, + "rtt_ns": 1336125, + "rtt_ms": 1.336125, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "842", - "timestamp": "2025-11-27T01:21:53.204133574Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:51.664866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016606, - "rtt_ms": 1.016606, + "rtt_ns": 2211791, + "rtt_ms": 2.211791, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "124", - "timestamp": "2025-11-27T01:21:53.204187394Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:01:51.66501-08:00" }, { "operation": "add_edge", - "rtt_ns": 884577, - "rtt_ms": 0.884577, + "rtt_ns": 2251833, + "rtt_ms": 2.251833, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:53.204763152Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:51.665028-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1119696, - "rtt_ms": 1.119696, + "rtt_ns": 2063917, + "rtt_ms": 2.063917, "checkpoint": 0, "vertex_from": "442", - "timestamp": "2025-11-27T01:21:53.204895562Z" + "timestamp": "2025-11-27T04:01:51.665059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117847, - "rtt_ms": 1.117847, + "rtt_ns": 2402333, + "rtt_ms": 2.402333, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.204973752Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.665171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606695, - "rtt_ms": 1.606695, + "rtt_ns": 1614084, + "rtt_ms": 1.614084, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.20556731Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:51.665176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771215, - "rtt_ms": 1.771215, + "rtt_ns": 2186458, + "rtt_ms": 2.186458, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:53.20564673Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.665203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661475, - "rtt_ms": 1.661475, + "rtt_ns": 1705958, + "rtt_ms": 1.705958, "checkpoint": 0, "vertex_from": "49", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.20566257Z" + "timestamp": "2025-11-27T04:01:51.666062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567365, - "rtt_ms": 1.567365, + "rtt_ns": 1072166, + "rtt_ms": 1.072166, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.20567013Z" + "vertex_to": "442", + "timestamp": "2025-11-27T04:01:51.666131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489126, - "rtt_ms": 1.489126, + "rtt_ns": 1261083, + "rtt_ms": 1.261083, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.20567843Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:51.666272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695875, - "rtt_ms": 1.695875, + "rtt_ns": 1349667, + "rtt_ms": 1.349667, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.20569541Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:51.666379-08:00" }, { "operation": "add_edge", - "rtt_ns": 980307, - "rtt_ms": 0.980307, + "rtt_ns": 1556917, + "rtt_ms": 1.556917, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:53.205745019Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.666423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315943, - "rtt_ms": 2.315943, + "rtt_ns": 1256666, + "rtt_ms": 1.256666, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:53.206451217Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:51.66646-08:00" }, { "operation": "add_edge", - "rtt_ns": 828417, - "rtt_ms": 0.828417, + "rtt_ns": 2388042, + "rtt_ms": 2.388042, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:53.206491827Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:51.666493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627465, - "rtt_ms": 1.627465, + "rtt_ns": 1466084, + "rtt_ms": 1.466084, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "442", - "timestamp": "2025-11-27T01:21:53.206523337Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:51.666638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561535, - "rtt_ms": 1.561535, + "rtt_ns": 2592667, + "rtt_ms": 2.592667, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.206537237Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.666652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062977, - "rtt_ms": 1.062977, + "rtt_ns": 1879375, + "rtt_ms": 1.879375, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.206631007Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.667057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587124, - "rtt_ms": 1.587124, + "rtt_ns": 1392792, + "rtt_ms": 1.392792, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "590", - "timestamp": "2025-11-27T01:21:53.207283564Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.667458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558875, - "rtt_ms": 1.558875, + "rtt_ns": 1649750, + "rtt_ms": 1.64975, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.207305294Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:51.667783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638474, - "rtt_ms": 1.638474, + "rtt_ns": 1263333, + "rtt_ms": 1.263333, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.207310784Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:51.667911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653524, - "rtt_ms": 1.653524, + "rtt_ns": 1518916, + "rtt_ms": 1.518916, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:53.207333104Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:01:51.667943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692594, - "rtt_ms": 1.692594, + "rtt_ns": 1636083, + "rtt_ms": 1.636083, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.207340194Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:51.668016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121657, - "rtt_ms": 1.121657, + "rtt_ns": 1575625, + "rtt_ms": 1.575625, "checkpoint": 0, "vertex_from": "49", "vertex_to": "169", - "timestamp": "2025-11-27T01:21:53.207574764Z" + "timestamp": "2025-11-27T04:01:51.66807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605935, - "rtt_ms": 1.605935, + "rtt_ns": 1640875, + "rtt_ms": 1.640875, "checkpoint": 0, "vertex_from": "49", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.208098972Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1629215, - "rtt_ms": 1.629215, - "checkpoint": 0, - "vertex_from": "409", - "timestamp": "2025-11-27T01:21:53.208154502Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.668102-08:00" }, { "operation": "add_edge", - "rtt_ns": 935818, - "rtt_ms": 0.935818, + "rtt_ns": 1888000, + "rtt_ms": 1.888, "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:53.208220812Z" + "vertex_from": "49", + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.668162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591395, - "rtt_ms": 1.591395, + "rtt_ns": 1425125, + "rtt_ms": 1.425125, "checkpoint": 0, "vertex_from": "50", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.208223572Z" + "timestamp": "2025-11-27T04:01:51.668885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744744, - "rtt_ms": 1.744744, + "rtt_ns": 1849375, + "rtt_ms": 1.849375, "checkpoint": 0, "vertex_from": "50", "vertex_to": "56", - "timestamp": "2025-11-27T01:21:53.208284541Z" + "timestamp": "2025-11-27T04:01:51.668907-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1003587, - "rtt_ms": 1.003587, + "rtt_ns": 971208, + "rtt_ms": 0.971208, "checkpoint": 0, "vertex_from": "995", - "timestamp": "2025-11-27T01:21:53.208318911Z" + "timestamp": "2025-11-27T04:01:51.668916-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1107287, - "rtt_ms": 1.107287, + "operation": "add_vertex", + "rtt_ns": 2446167, + "rtt_ms": 2.446167, "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.208413261Z" + "vertex_from": "409", + "timestamp": "2025-11-27T04:01:51.669101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093537, - "rtt_ms": 1.093537, + "rtt_ns": 1417333, + "rtt_ms": 1.417333, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.208429591Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.66933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454115, - "rtt_ms": 1.454115, + "rtt_ns": 1559042, + "rtt_ms": 1.559042, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:53.209030179Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:51.669343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717205, - "rtt_ms": 1.717205, + "rtt_ns": 1325125, + "rtt_ms": 1.325125, "checkpoint": 0, "vertex_from": "50", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.209058679Z" + "timestamp": "2025-11-27T04:01:51.669396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092737, - "rtt_ms": 1.092737, + "rtt_ns": 1404833, + "rtt_ms": 1.404833, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "995", - "timestamp": "2025-11-27T01:21:53.209412108Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.669567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407405, - "rtt_ms": 1.407405, + "rtt_ns": 2075875, + "rtt_ms": 2.075875, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.209507647Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:51.670095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312565, - "rtt_ms": 1.312565, + "rtt_ns": 1284333, + "rtt_ms": 1.284333, "checkpoint": 0, "vertex_from": "50", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.209538397Z" + "timestamp": "2025-11-27T04:01:51.670192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391735, - "rtt_ms": 1.391735, + "rtt_ns": 1529792, + "rtt_ms": 1.529792, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "409", - "timestamp": "2025-11-27T01:21:53.209546767Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.670416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846394, - "rtt_ms": 1.846394, + "rtt_ns": 1853667, + "rtt_ms": 1.853667, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.210132815Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.671198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927233, - "rtt_ms": 1.927233, + "rtt_ns": 2130458, + "rtt_ms": 2.130458, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.210149365Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:01:51.671232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762934, - "rtt_ms": 1.762934, + "rtt_ns": 2187792, + "rtt_ms": 2.187792, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.210193895Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.67152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844964, - "rtt_ms": 1.844964, + "rtt_ns": 1329250, + "rtt_ms": 1.32925, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.210259635Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:51.671522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270586, - "rtt_ms": 1.270586, + "rtt_ns": 2140167, + "rtt_ms": 2.140167, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.210301905Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:51.671537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331006, - "rtt_ms": 1.331006, + "rtt_ns": 1510417, + "rtt_ms": 1.510417, "checkpoint": 0, "vertex_from": "50", "vertex_to": "579", - "timestamp": "2025-11-27T01:21:53.210393045Z" + "timestamp": "2025-11-27T04:01:51.671606-08:00" }, { "operation": "add_edge", - "rtt_ns": 936457, - "rtt_ms": 0.936457, + "rtt_ns": 3563000, + "rtt_ms": 3.563, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:53.211070672Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:51.671666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680524, - "rtt_ms": 1.680524, + "rtt_ns": 1340250, + "rtt_ms": 1.34025, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:53.211094222Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:51.671757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598985, - "rtt_ms": 1.598985, + "rtt_ns": 2908292, + "rtt_ms": 2.908292, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.211138522Z" + "vertex_to": "995", + "timestamp": "2025-11-27T04:01:51.671824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593545, - "rtt_ms": 1.593545, + "rtt_ns": 2266292, + "rtt_ms": 2.266292, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:53.211141822Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.671835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658155, - "rtt_ms": 1.658155, + "rtt_ns": 1211000, + "rtt_ms": 1.211, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:53.211167092Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:51.672733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064237, - "rtt_ms": 1.064237, + "rtt_ns": 1086958, + "rtt_ms": 1.086958, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.211258772Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:51.672753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267156, - "rtt_ms": 1.267156, + "rtt_ns": 1520500, + "rtt_ms": 1.5205, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.211417561Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.673127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190706, - "rtt_ms": 1.190706, + "rtt_ns": 1945625, + "rtt_ms": 1.945625, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.211452161Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:51.673179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808414, - "rtt_ms": 1.808414, + "rtt_ns": 1758042, + "rtt_ms": 1.758042, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:53.212111559Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.673296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902553, - "rtt_ms": 1.902553, + "rtt_ns": 1790250, + "rtt_ms": 1.79025, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "213", - "timestamp": "2025-11-27T01:21:53.212296748Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.673313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319836, - "rtt_ms": 1.319836, + "rtt_ns": 1494208, + "rtt_ms": 1.494208, "checkpoint": 0, "vertex_from": "50", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.212415548Z" + "timestamp": "2025-11-27T04:01:51.67333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428816, - "rtt_ms": 1.428816, + "rtt_ns": 1631500, + "rtt_ms": 1.6315, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:53.212500858Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:01:51.673389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444645, - "rtt_ms": 1.444645, + "rtt_ns": 2210917, + "rtt_ms": 2.210917, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.212613137Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.673409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413345, - "rtt_ms": 1.413345, + "rtt_ns": 1701583, + "rtt_ms": 1.701583, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:53.212673427Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:51.673527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929604, - "rtt_ms": 1.929604, + "rtt_ns": 814334, + "rtt_ms": 0.814334, "checkpoint": 0, "vertex_from": "50", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.213069756Z" + "timestamp": "2025-11-27T04:01:51.673548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957824, - "rtt_ms": 1.957824, + "rtt_ns": 1703166, + "rtt_ms": 1.703166, "checkpoint": 0, "vertex_from": "50", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.213100906Z" + "timestamp": "2025-11-27T04:01:51.674457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823074, - "rtt_ms": 1.823074, + "rtt_ns": 1590542, + "rtt_ms": 1.590542, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.213242035Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.674718-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119893, - "rtt_ms": 2.119893, + "rtt_ns": 1411792, + "rtt_ms": 1.411792, "checkpoint": 0, "vertex_from": "50", "vertex_to": "596", - "timestamp": "2025-11-27T01:21:53.213572904Z" + "timestamp": "2025-11-27T04:01:51.674726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562505, - "rtt_ms": 1.562505, + "rtt_ns": 1480333, + "rtt_ms": 1.480333, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.213675674Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:51.674777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392096, - "rtt_ms": 1.392096, + "rtt_ns": 1610584, + "rtt_ms": 1.610584, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.213690594Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:51.67479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512175, - "rtt_ms": 1.512175, + "rtt_ns": 1299875, + "rtt_ms": 1.299875, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.213928883Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:51.674849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503865, - "rtt_ms": 1.503865, + "rtt_ns": 1490542, + "rtt_ms": 1.490542, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.214006063Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:51.67488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343406, - "rtt_ms": 1.343406, + "rtt_ns": 1556167, + "rtt_ms": 1.556167, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.214018013Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:51.674887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001727, - "rtt_ms": 1.001727, + "rtt_ns": 1372625, + "rtt_ms": 1.372625, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.214072693Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:51.6749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026816, - "rtt_ms": 1.026816, + "rtt_ns": 1555375, + "rtt_ms": 1.555375, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "231", - "timestamp": "2025-11-27T01:21:53.214130232Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.674966-08:00" }, { "operation": "add_edge", - "rtt_ns": 986787, - "rtt_ms": 0.986787, + "rtt_ns": 1408708, + "rtt_ms": 1.408708, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.214230192Z" + "vertex_to": "231", + "timestamp": "2025-11-27T04:01:51.676135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651875, - "rtt_ms": 1.651875, + "rtt_ns": 1717041, + "rtt_ms": 1.717041, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:53.214267282Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.676605-08:00" }, { "operation": "add_edge", - "rtt_ns": 743568, - "rtt_ms": 0.743568, + "rtt_ns": 1893792, + "rtt_ms": 1.893792, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.214317732Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:51.676746-08:00" }, { "operation": "add_edge", - "rtt_ns": 679538, - "rtt_ms": 0.679538, + "rtt_ns": 2434709, + "rtt_ms": 2.434709, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.214371352Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.676893-08:00" }, { "operation": "add_edge", - "rtt_ns": 715657, - "rtt_ms": 0.715657, + "rtt_ns": 2298875, + "rtt_ms": 2.298875, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:53.214392891Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.677077-08:00" }, { "operation": "add_edge", - "rtt_ns": 548508, - "rtt_ms": 0.548508, + "rtt_ns": 2362208, + "rtt_ms": 2.362208, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.214478771Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:51.677153-08:00" }, { "operation": "add_edge", - "rtt_ns": 538768, - "rtt_ms": 0.538768, + "rtt_ns": 1050125, + "rtt_ms": 1.050125, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.214547351Z" + "vertex_to": "115", + "timestamp": "2025-11-27T04:01:51.677187-08:00" }, { "operation": "add_edge", - "rtt_ns": 693177, - "rtt_ms": 0.693177, + "rtt_ns": 2249083, + "rtt_ms": 2.249083, "checkpoint": 0, "vertex_from": "50", "vertex_to": "422", - "timestamp": "2025-11-27T01:21:53.21471294Z" + "timestamp": "2025-11-27T04:01:51.677216-08:00" }, { "operation": "add_edge", - "rtt_ns": 665757, - "rtt_ms": 0.665757, + "rtt_ns": 2916584, + "rtt_ms": 2.916584, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "115", - "timestamp": "2025-11-27T01:21:53.21473998Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:51.677636-08:00" }, { "operation": "add_edge", - "rtt_ns": 718758, - "rtt_ms": 0.718758, + "rtt_ns": 2769125, + "rtt_ms": 2.769125, "checkpoint": 0, "vertex_from": "50", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.21495066Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.67765-08:00" }, { "operation": "add_vertex", - "rtt_ns": 836148, - "rtt_ms": 0.836148, + "rtt_ns": 1376416, + "rtt_ms": 1.376416, "checkpoint": 0, "vertex_from": "377", - "timestamp": "2025-11-27T01:21:53.21497065Z" + "timestamp": "2025-11-27T04:01:51.677983-08:00" }, { "operation": "add_edge", - "rtt_ns": 790037, - "rtt_ms": 0.790037, + "rtt_ns": 1369125, + "rtt_ms": 1.369125, + "checkpoint": 0, + "vertex_from": "50", + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.678116-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1571500, + "rtt_ms": 1.5715, "checkpoint": 0, "vertex_from": "50", "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.215058329Z" + "timestamp": "2025-11-27T04:01:51.678465-08:00" }, { "operation": "add_edge", - "rtt_ns": 782887, - "rtt_ms": 0.782887, + "rtt_ns": 1506750, + "rtt_ms": 1.50675, "checkpoint": 0, "vertex_from": "50", "vertex_to": "395", - "timestamp": "2025-11-27T01:21:53.215101719Z" + "timestamp": "2025-11-27T04:01:51.678588-08:00" }, { "operation": "add_edge", - "rtt_ns": 780627, - "rtt_ms": 0.780627, + "rtt_ns": 2433583, + "rtt_ms": 2.433583, "checkpoint": 0, - "vertex_from": "50", + "vertex_from": "51", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.215153239Z" + "timestamp": "2025-11-27T04:01:51.680085-08:00" }, { "operation": "add_edge", - "rtt_ns": 774858, - "rtt_ms": 0.774858, + "rtt_ns": 2007792, + "rtt_ms": 2.007792, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:53.215170909Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.680125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192986, - "rtt_ms": 1.192986, + "rtt_ns": 3107791, + "rtt_ms": 3.107791, "checkpoint": 0, - "vertex_from": "51", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:53.215741737Z" + "vertex_from": "50", + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:51.680262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300526, - "rtt_ms": 1.300526, + "rtt_ns": 2466875, + "rtt_ms": 2.466875, "checkpoint": 0, - "vertex_from": "51", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.215780847Z" + "vertex_from": "50", + "vertex_to": "377", + "timestamp": "2025-11-27T04:01:51.68045-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 5630959, + "rtt_ms": 5.630959, + "checkpoint": 0, + "vertex_from": "50", + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.680532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116517, - "rtt_ms": 1.116517, + "rtt_ns": 1970875, + "rtt_ms": 1.970875, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.215832797Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.680559-08:00" }, { "operation": "add_edge", - "rtt_ns": 911057, - "rtt_ms": 0.911057, + "rtt_ns": 3380625, + "rtt_ms": 3.380625, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:53.215863547Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:51.680568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255636, - "rtt_ms": 1.255636, + "rtt_ns": 2999875, + "rtt_ms": 2.999875, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.215998396Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:51.680636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625595, - "rtt_ms": 1.625595, + "rtt_ns": 3468958, + "rtt_ms": 3.468958, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.216685254Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.680687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722284, - "rtt_ms": 1.722284, + "rtt_ns": 2436292, + "rtt_ms": 2.436292, "checkpoint": 0, - "vertex_from": "50", - "vertex_to": "377", - "timestamp": "2025-11-27T01:21:53.216693724Z" + "vertex_from": "51", + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:51.680903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594085, - "rtt_ms": 1.594085, + "rtt_ns": 1679042, + "rtt_ms": 1.679042, "checkpoint": 0, "vertex_from": "51", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.216697024Z" + "timestamp": "2025-11-27T04:01:51.681765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732644, - "rtt_ms": 1.732644, + "rtt_ns": 1660667, + "rtt_ms": 1.660667, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.216905703Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.681787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627565, - "rtt_ms": 1.627565, + "rtt_ns": 1538958, + "rtt_ms": 1.538958, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.217409472Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.681802-08:00" }, { "operation": "add_edge", - "rtt_ns": 768337, - "rtt_ms": 0.768337, + "rtt_ns": 1340667, + "rtt_ms": 1.340667, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:53.217455161Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.681901-08:00" }, { "operation": "add_edge", - "rtt_ns": 2394662, - "rtt_ms": 2.394662, + "rtt_ns": 1432667, + "rtt_ms": 1.432667, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.217549111Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.681966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863514, - "rtt_ms": 1.863514, + "rtt_ns": 1671709, + "rtt_ms": 1.671709, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.217697581Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.682122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864104, - "rtt_ms": 1.864104, + "rtt_ns": 1474791, + "rtt_ms": 1.474791, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.217728541Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:51.682163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014174, - "rtt_ms": 2.014174, + "rtt_ns": 1348541, + "rtt_ms": 1.348541, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.217757801Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:51.68226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586505, - "rtt_ms": 1.586505, + "rtt_ns": 1637041, + "rtt_ms": 1.637041, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.218285119Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:51.682274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494655, - "rtt_ms": 1.494655, + "rtt_ns": 1706833, + "rtt_ms": 1.706833, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "906", - "timestamp": "2025-11-27T01:21:53.218402258Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.682276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742504, - "rtt_ms": 1.742504, + "rtt_ns": 1337750, + "rtt_ms": 1.33775, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:53.218438628Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:51.683305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471852, - "rtt_ms": 2.471852, + "rtt_ns": 1537875, + "rtt_ms": 1.537875, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:53.218471448Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:01:51.683325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568535, - "rtt_ms": 1.568535, + "rtt_ns": 1438166, + "rtt_ms": 1.438166, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.218979167Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.683342-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1271500, + "rtt_ms": 1.2715, + "checkpoint": 0, + "vertex_from": "52", + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:51.683548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573406, - "rtt_ms": 1.573406, + "rtt_ns": 1801667, + "rtt_ms": 1.801667, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.219029397Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.683569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505645, - "rtt_ms": 1.505645, + "rtt_ns": 1420125, + "rtt_ms": 1.420125, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:53.219055896Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.683584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379105, - "rtt_ms": 1.379105, + "rtt_ns": 1475417, + "rtt_ms": 1.475417, "checkpoint": 0, "vertex_from": "51", "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.219077636Z" + "timestamp": "2025-11-27T04:01:51.683599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096086, - "rtt_ms": 1.096086, + "rtt_ns": 1444917, + "rtt_ms": 1.444917, "checkpoint": 0, "vertex_from": "51", "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.219382435Z" + "timestamp": "2025-11-27T04:01:51.68372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122817, - "rtt_ms": 1.122817, + "rtt_ns": 1472500, + "rtt_ms": 1.4725, "checkpoint": 0, - "vertex_from": "52", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:53.219595505Z" + "vertex_from": "51", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.683735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882104, - "rtt_ms": 1.882104, + "rtt_ns": 1972625, + "rtt_ms": 1.972625, "checkpoint": 0, "vertex_from": "51", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.219611875Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.683776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880624, - "rtt_ms": 1.880624, + "rtt_ns": 1533000, + "rtt_ms": 1.533, "checkpoint": 0, - "vertex_from": "51", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.219639445Z" + "vertex_from": "52", + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.685134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267916, - "rtt_ms": 1.267916, + "rtt_ns": 1633666, + "rtt_ms": 1.633666, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.219707614Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:51.685203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870454, - "rtt_ms": 1.870454, + "rtt_ns": 1930875, + "rtt_ms": 1.930875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:53.220274772Z" + "vertex_to": "466", + "timestamp": "2025-11-27T04:01:51.685274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386946, - "rtt_ms": 1.386946, + "rtt_ns": 1992750, + "rtt_ms": 1.99275, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.220466722Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.685299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628504, - "rtt_ms": 1.628504, + "rtt_ns": 1769625, + "rtt_ms": 1.769625, "checkpoint": 0, "vertex_from": "52", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.220659051Z" + "timestamp": "2025-11-27T04:01:51.685319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820984, - "rtt_ms": 1.820984, + "rtt_ns": 1758209, + "rtt_ms": 1.758209, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:53.22087781Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:51.685479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510035, - "rtt_ms": 1.510035, + "rtt_ns": 1718625, + "rtt_ms": 1.718625, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.22089314Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.685495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832164, - "rtt_ms": 1.832164, + "rtt_ns": 1763084, + "rtt_ms": 1.763084, "checkpoint": 0, "vertex_from": "52", "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.221445709Z" + "timestamp": "2025-11-27T04:01:51.685498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938623, - "rtt_ms": 1.938623, + "rtt_ns": 2322667, + "rtt_ms": 2.322667, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.221579388Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:51.685649-08:00" }, { "operation": "add_edge", - "rtt_ns": 2704391, - "rtt_ms": 2.704391, + "rtt_ns": 2097250, + "rtt_ms": 2.09725, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "466", - "timestamp": "2025-11-27T01:21:53.221685378Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.685682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439446, - "rtt_ms": 1.439446, + "rtt_ns": 1145667, + "rtt_ms": 1.145667, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.221716168Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.686465-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019664, - "rtt_ms": 2.019664, + "rtt_ns": 1187916, + "rtt_ms": 1.187916, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "620", - "timestamp": "2025-11-27T01:21:53.221728608Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:51.686469-08:00" }, { "operation": "add_edge", - "rtt_ns": 3138759, - "rtt_ms": 3.138759, + "rtt_ns": 1226459, + "rtt_ms": 1.226459, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:53.222736574Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:51.686527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896824, - "rtt_ms": 1.896824, + "rtt_ns": 1512542, + "rtt_ms": 1.512542, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.222775814Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:01:51.686648-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187863, - "rtt_ms": 2.187863, + "rtt_ns": 1461958, + "rtt_ms": 1.461958, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:53.222848384Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.686666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097533, - "rtt_ms": 2.097533, + "rtt_ns": 1262500, + "rtt_ms": 1.2625, "checkpoint": 0, "vertex_from": "52", "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.222991983Z" + "timestamp": "2025-11-27T04:01:51.686743-08:00" }, { "operation": "add_edge", - "rtt_ns": 2555411, - "rtt_ms": 2.555411, + "rtt_ns": 1410666, + "rtt_ms": 1.410666, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.223023793Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.686907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601684, - "rtt_ms": 1.601684, + "rtt_ns": 1275875, + "rtt_ms": 1.275875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.223048633Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:51.686926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604855, - "rtt_ms": 1.604855, + "rtt_ns": 1356208, + "rtt_ms": 1.356208, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.223186443Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.687039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560994, - "rtt_ms": 1.560994, + "rtt_ns": 1708708, + "rtt_ms": 1.708708, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.223247912Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.687208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2078093, - "rtt_ms": 2.078093, + "rtt_ns": 1263500, + "rtt_ms": 1.2635, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:53.223809671Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.687792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148792, - "rtt_ms": 2.148792, + "rtt_ns": 1410250, + "rtt_ms": 1.41025, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.22387199Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:51.687879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568325, - "rtt_ms": 1.568325, + "rtt_ns": 1622292, + "rtt_ms": 1.622292, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.224593338Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.688093-08:00" }, { "operation": "add_edge", - "rtt_ns": 2313653, - "rtt_ms": 2.313653, + "rtt_ns": 1365917, + "rtt_ms": 1.365917, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.225052067Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.68811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221457, - "rtt_ms": 1.221457, + "rtt_ns": 1199292, + "rtt_ms": 1.199292, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.225094727Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.688126-08:00" }, { "operation": "add_edge", - "rtt_ns": 2322013, - "rtt_ms": 2.322013, + "rtt_ns": 1333708, + "rtt_ms": 1.333708, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.225103497Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.688241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929253, - "rtt_ms": 1.929253, + "rtt_ns": 1608083, + "rtt_ms": 1.608083, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.225117066Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:51.688256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241113, - "rtt_ms": 2.241113, + "rtt_ns": 1619042, + "rtt_ms": 1.619042, "checkpoint": 0, "vertex_from": "52", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.225234786Z" + "timestamp": "2025-11-27T04:01:51.688286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452605, - "rtt_ms": 1.452605, + "rtt_ns": 1095208, + "rtt_ms": 1.095208, "checkpoint": 0, "vertex_from": "52", "vertex_to": "94", - "timestamp": "2025-11-27T01:21:53.225263686Z" + "timestamp": "2025-11-27T04:01:51.688304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2238703, - "rtt_ms": 2.238703, + "rtt_ns": 1168667, + "rtt_ms": 1.168667, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.225288276Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:51.68905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2070454, - "rtt_ms": 2.070454, + "rtt_ns": 1276292, + "rtt_ms": 1.276292, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.225319636Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.689069-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471902, - "rtt_ms": 2.471902, + "rtt_ns": 855917, + "rtt_ms": 0.855917, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.225322376Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.689143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492325, - "rtt_ms": 1.492325, + "rtt_ns": 963750, + "rtt_ms": 0.96375, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:53.226087603Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:51.689206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097497, - "rtt_ms": 1.097497, + "rtt_ns": 1127208, + "rtt_ms": 1.127208, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:53.226202923Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:51.689221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123426, - "rtt_ms": 1.123426, + "rtt_ns": 1322292, + "rtt_ms": 1.322292, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.226220013Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.68958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319926, - "rtt_ms": 1.319926, + "rtt_ns": 1361291, + "rtt_ms": 1.361291, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.226556132Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.689666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547275, - "rtt_ms": 1.547275, + "rtt_ns": 2647167, + "rtt_ms": 2.647167, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.226600842Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.689687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562576, - "rtt_ms": 1.562576, + "rtt_ns": 1960209, + "rtt_ms": 1.960209, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.226682141Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:51.690087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435225, - "rtt_ms": 1.435225, + "rtt_ns": 2223125, + "rtt_ms": 2.223125, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.226724241Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.690333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463345, - "rtt_ms": 1.463345, + "rtt_ns": 1570417, + "rtt_ms": 1.570417, "checkpoint": 0, "vertex_from": "52", "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.226784251Z" + "timestamp": "2025-11-27T04:01:51.690621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569735, - "rtt_ms": 1.569735, + "rtt_ns": 1430458, + "rtt_ms": 1.430458, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.226834321Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.690637-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077263, - "rtt_ms": 2.077263, + "rtt_ns": 1610125, + "rtt_ms": 1.610125, "checkpoint": 0, "vertex_from": "52", "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.227402229Z" + "timestamp": "2025-11-27T04:01:51.69068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475406, - "rtt_ms": 1.475406, + "rtt_ns": 1564583, + "rtt_ms": 1.564583, "checkpoint": 0, "vertex_from": "52", "vertex_to": "389", - "timestamp": "2025-11-27T01:21:53.227564419Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1359366, - "rtt_ms": 1.359366, - "checkpoint": 0, - "vertex_from": "52", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.227580489Z" + "timestamp": "2025-11-27T04:01:51.69071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024677, - "rtt_ms": 1.024677, + "rtt_ns": 1377875, + "rtt_ms": 1.377875, "checkpoint": 0, "vertex_from": "52", "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.227582599Z" + "timestamp": "2025-11-27T04:01:51.690958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002087, - "rtt_ms": 1.002087, + "rtt_ns": 1290167, + "rtt_ms": 1.290167, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "77", - "timestamp": "2025-11-27T01:21:53.227604239Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.690979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533055, - "rtt_ms": 1.533055, + "rtt_ns": 1321708, + "rtt_ms": 1.321708, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.227737008Z" + "vertex_to": "77", + "timestamp": "2025-11-27T04:01:51.690991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660675, - "rtt_ms": 1.660675, + "rtt_ns": 1824000, + "rtt_ms": 1.824, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.228344956Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.691046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586025, - "rtt_ms": 1.586025, + "rtt_ns": 1210750, + "rtt_ms": 1.21075, "checkpoint": 0, "vertex_from": "52", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.228371206Z" + "timestamp": "2025-11-27T04:01:51.691545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690645, - "rtt_ms": 1.690645, + "rtt_ns": 1784250, + "rtt_ms": 1.78425, "checkpoint": 0, "vertex_from": "52", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.228416056Z" + "timestamp": "2025-11-27T04:01:51.691872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803294, - "rtt_ms": 1.803294, + "rtt_ns": 846042, + "rtt_ms": 0.846042, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:53.228638515Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.691893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423566, - "rtt_ms": 1.423566, + "rtt_ns": 1517542, + "rtt_ms": 1.517542, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:53.228826955Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.692497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429635, - "rtt_ms": 1.429635, + "rtt_ns": 2147875, + "rtt_ms": 2.147875, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.229010944Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:51.69277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304676, - "rtt_ms": 1.304676, + "rtt_ns": 1829542, + "rtt_ms": 1.829542, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.229043824Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.692789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548425, - "rtt_ms": 1.548425, + "rtt_ns": 2092625, + "rtt_ms": 2.092625, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.229113854Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.692803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600904, - "rtt_ms": 1.600904, + "rtt_ns": 2182291, + "rtt_ms": 2.182291, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.229211153Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:51.692865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296716, - "rtt_ms": 1.296716, + "rtt_ns": 2232750, + "rtt_ms": 2.23275, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.229668552Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:51.69287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122613, - "rtt_ms": 2.122613, + "rtt_ns": 2918709, + "rtt_ms": 2.918709, "checkpoint": 0, "vertex_from": "52", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.229705992Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.69391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006117, - "rtt_ms": 1.006117, + "rtt_ns": 1428667, + "rtt_ms": 1.428667, "checkpoint": 0, "vertex_from": "52", "vertex_to": "90", - "timestamp": "2025-11-27T01:21:53.229834582Z" + "timestamp": "2025-11-27T04:01:51.693929-08:00" }, { "operation": "add_edge", - "rtt_ns": 834927, - "rtt_ms": 0.834927, + "rtt_ns": 1072666, + "rtt_ms": 1.072666, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.229847061Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1549925, - "rtt_ms": 1.549925, - "checkpoint": 0, - "vertex_from": "52", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.229896101Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:51.693945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561215, - "rtt_ms": 1.561215, + "rtt_ns": 2086500, + "rtt_ms": 2.0865, "checkpoint": 0, "vertex_from": "52", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.229978021Z" + "timestamp": "2025-11-27T04:01:51.693959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372636, - "rtt_ms": 1.372636, + "rtt_ns": 2080917, + "rtt_ms": 2.080917, "checkpoint": 0, "vertex_from": "52", "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.230012561Z" + "timestamp": "2025-11-27T04:01:51.693975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496815, - "rtt_ms": 1.496815, + "rtt_ns": 2449083, + "rtt_ms": 2.449083, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.230541239Z" + "vertex_from": "52", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.693995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456076, - "rtt_ms": 1.456076, + "rtt_ns": 1503875, + "rtt_ms": 1.503875, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.230669379Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.694293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592165, - "rtt_ms": 1.592165, + "rtt_ns": 1490500, + "rtt_ms": 1.4905, "checkpoint": 0, "vertex_from": "53", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.230706969Z" + "timestamp": "2025-11-27T04:01:51.694295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049827, - "rtt_ms": 1.049827, + "rtt_ns": 1527708, + "rtt_ms": 1.527708, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:53.230756889Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.6943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115336, - "rtt_ms": 1.115336, + "rtt_ns": 1613958, + "rtt_ms": 1.613958, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:53.230784908Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:51.694482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137596, - "rtt_ms": 1.137596, + "rtt_ns": 1336291, + "rtt_ms": 1.336291, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.230972808Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.695332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241176, - "rtt_ms": 1.241176, + "rtt_ns": 1421667, + "rtt_ms": 1.421667, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:53.231138037Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.695351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172576, - "rtt_ms": 1.172576, + "rtt_ns": 1204250, + "rtt_ms": 1.20425, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.231151907Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:51.695499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340976, - "rtt_ms": 1.340976, + "rtt_ns": 1609667, + "rtt_ms": 1.609667, "checkpoint": 0, "vertex_from": "53", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.231189097Z" + "timestamp": "2025-11-27T04:01:51.695555-08:00" }, { "operation": "add_edge", - "rtt_ns": 675398, - "rtt_ms": 0.675398, + "rtt_ns": 1609125, + "rtt_ms": 1.609125, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.231217737Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:51.695569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226756, - "rtt_ms": 1.226756, + "rtt_ns": 1600208, + "rtt_ms": 1.600208, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.231240547Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.695576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156026, - "rtt_ms": 1.156026, + "rtt_ns": 1667208, + "rtt_ms": 1.667208, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.231864375Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:51.695579-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1229756, - "rtt_ms": 1.229756, + "rtt_ns": 1303916, + "rtt_ms": 1.303916, "checkpoint": 0, "vertex_from": "857", - "timestamp": "2025-11-27T01:21:53.231901155Z" + "timestamp": "2025-11-27T04:01:51.6956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219847, - "rtt_ms": 1.219847, + "rtt_ns": 1134916, + "rtt_ms": 1.134916, "checkpoint": 0, "vertex_from": "53", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.232005435Z" + "timestamp": "2025-11-27T04:01:51.696469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176136, - "rtt_ms": 1.176136, + "rtt_ns": 2077542, + "rtt_ms": 2.077542, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.232149814Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:51.69656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403835, - "rtt_ms": 1.403835, + "rtt_ns": 1230208, + "rtt_ms": 1.230208, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:53.232161804Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.696582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177207, - "rtt_ms": 1.177207, + "rtt_ns": 1261833, + "rtt_ms": 1.261833, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.232318054Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.696838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679405, - "rtt_ms": 1.679405, + "rtt_ns": 1290250, + "rtt_ms": 1.29025, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.232832612Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.69686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720405, - "rtt_ms": 1.720405, + "rtt_ns": 1315166, + "rtt_ms": 1.315166, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.232910332Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.696872-08:00" }, { "operation": "add_edge", - "rtt_ns": 941756, - "rtt_ms": 0.941756, + "rtt_ns": 1373917, + "rtt_ms": 1.373917, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.232949211Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.696876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723074, - "rtt_ms": 1.723074, + "rtt_ns": 1311333, + "rtt_ms": 1.311333, "checkpoint": 0, "vertex_from": "53", "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.232965211Z" + "timestamp": "2025-11-27T04:01:51.696892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750644, - "rtt_ms": 1.750644, + "rtt_ns": 1350792, + "rtt_ms": 1.350792, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.232968971Z" + "vertex_to": "857", + "timestamp": "2025-11-27T04:01:51.696951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245155, - "rtt_ms": 1.245155, + "rtt_ns": 3604209, + "rtt_ms": 3.604209, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.233564339Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.697906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758614, - "rtt_ms": 1.758614, + "rtt_ns": 1070000, + "rtt_ms": 1.07, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "857", - "timestamp": "2025-11-27T01:21:53.233660089Z" + "vertex_from": "54", + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:51.698022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595175, - "rtt_ms": 1.595175, + "rtt_ns": 1369666, + "rtt_ms": 1.369666, "checkpoint": 0, "vertex_from": "53", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.233746189Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:51.698246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640405, - "rtt_ms": 1.640405, + "rtt_ns": 1423000, + "rtt_ms": 1.423, "checkpoint": 0, "vertex_from": "53", "vertex_to": "150", - "timestamp": "2025-11-27T01:21:53.233803359Z" + "timestamp": "2025-11-27T04:01:51.698262-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007953, - "rtt_ms": 2.007953, + "rtt_ns": 1910250, + "rtt_ms": 1.91025, "checkpoint": 0, "vertex_from": "53", "vertex_to": "835", - "timestamp": "2025-11-27T01:21:53.233873508Z" + "timestamp": "2025-11-27T04:01:51.698382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741564, - "rtt_ms": 1.741564, + "rtt_ns": 1544375, + "rtt_ms": 1.544375, "checkpoint": 0, - "vertex_from": "54", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.234707915Z" + "vertex_from": "53", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.698419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749644, - "rtt_ms": 1.749644, + "rtt_ns": 1979917, + "rtt_ms": 1.979917, "checkpoint": 0, - "vertex_from": "54", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.234719455Z" + "vertex_from": "53", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.698542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774004, - "rtt_ms": 1.774004, + "rtt_ns": 1976416, + "rtt_ms": 1.976416, "checkpoint": 0, - "vertex_from": "54", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:53.234725095Z" + "vertex_from": "53", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.69856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097446, - "rtt_ms": 1.097446, + "rtt_ns": 1671084, + "rtt_ms": 1.671084, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.234758725Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:51.698564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026036, - "rtt_ms": 1.026036, + "rtt_ns": 1728500, + "rtt_ms": 1.7285, "checkpoint": 0, - "vertex_from": "54", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.234773415Z" + "vertex_from": "53", + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:51.69859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942833, - "rtt_ms": 1.942833, + "rtt_ns": 1258959, + "rtt_ms": 1.258959, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.234776575Z" + "vertex_from": "54", + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.699166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245276, - "rtt_ms": 1.245276, + "rtt_ns": 1090791, + "rtt_ms": 1.090791, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "589", - "timestamp": "2025-11-27T01:21:53.234811645Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:51.699512-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049873, - "rtt_ms": 2.049873, + "rtt_ns": 1342667, + "rtt_ms": 1.342667, "checkpoint": 0, - "vertex_from": "53", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:53.234961045Z" + "vertex_from": "54", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.69959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090487, - "rtt_ms": 1.090487, + "rtt_ns": 1342459, + "rtt_ms": 1.342459, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.235800082Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.699605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974894, - "rtt_ms": 1.974894, + "rtt_ns": 1653625, + "rtt_ms": 1.653625, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.235849612Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:51.699679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259316, - "rtt_ms": 1.259316, + "rtt_ns": 1316959, + "rtt_ms": 1.316959, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.235981021Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:51.69986-08:00" }, { "operation": "add_edge", - "rtt_ns": 2221072, - "rtt_ms": 2.221072, + "rtt_ns": 1969334, + "rtt_ms": 1.969334, "checkpoint": 0, "vertex_from": "54", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.236025611Z" + "timestamp": "2025-11-27T04:01:51.700352-08:00" }, { "operation": "add_edge", - "rtt_ns": 2366403, - "rtt_ms": 2.366403, + "rtt_ns": 1826959, + "rtt_ms": 1.826959, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.237141398Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.700388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2492112, - "rtt_ms": 2.492112, + "rtt_ns": 2074584, + "rtt_ms": 2.074584, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.237277167Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.70064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2361562, - "rtt_ms": 2.361562, + "rtt_ns": 2201041, + "rtt_ms": 2.201041, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:53.237327247Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.700791-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539632, - "rtt_ms": 2.539632, + "rtt_ns": 1598833, + "rtt_ms": 1.598833, "checkpoint": 0, "vertex_from": "54", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.237353017Z" + "timestamp": "2025-11-27T04:01:51.70119-08:00" }, { "operation": "add_edge", - "rtt_ns": 2604012, - "rtt_ms": 2.604012, + "rtt_ns": 1658791, + "rtt_ms": 1.658791, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.237363887Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.701338-08:00" }, { "operation": "add_edge", - "rtt_ns": 2660282, - "rtt_ms": 2.660282, + "rtt_ns": 2219834, + "rtt_ms": 2.219834, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.237387967Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.701387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806494, - "rtt_ms": 1.806494, + "rtt_ns": 1910375, + "rtt_ms": 1.910375, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "781", - "timestamp": "2025-11-27T01:21:53.237657706Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.701423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041783, - "rtt_ms": 2.041783, + "rtt_ns": 1858042, + "rtt_ms": 1.858042, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.237846095Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:51.701464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932234, - "rtt_ms": 1.932234, + "rtt_ns": 1928250, + "rtt_ms": 1.92825, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.237959405Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:51.701789-08:00" }, { "operation": "add_edge", - "rtt_ns": 2148013, - "rtt_ms": 2.148013, + "rtt_ns": 1535291, + "rtt_ms": 1.535291, "checkpoint": 0, "vertex_from": "54", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:53.238132014Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.701924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003576, - "rtt_ms": 1.003576, + "rtt_ns": 1306250, + "rtt_ms": 1.30625, "checkpoint": 0, "vertex_from": "54", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.238146094Z" + "timestamp": "2025-11-27T04:01:51.701947-08:00" }, { "operation": "add_edge", - "rtt_ns": 898147, - "rtt_ms": 0.898147, + "rtt_ns": 1160750, + "rtt_ms": 1.16075, "checkpoint": 0, "vertex_from": "55", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.238226694Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.701953-08:00" }, { "operation": "add_edge", - "rtt_ns": 960817, - "rtt_ms": 0.960817, + "rtt_ns": 1905000, + "rtt_ms": 1.905, "checkpoint": 0, - "vertex_from": "55", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.238240864Z" + "vertex_from": "54", + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:51.70226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276176, - "rtt_ms": 1.276176, + "rtt_ns": 1548667, + "rtt_ms": 1.548667, "checkpoint": 0, "vertex_from": "55", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.238630613Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.70274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065657, - "rtt_ms": 1.065657, + "rtt_ns": 1396292, + "rtt_ms": 1.396292, "checkpoint": 0, "vertex_from": "55", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.238725183Z" + "timestamp": "2025-11-27T04:01:51.702862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450495, - "rtt_ms": 1.450495, + "rtt_ns": 1283625, + "rtt_ms": 1.283625, + "checkpoint": 0, + "vertex_from": "56", + "vertex_to": "310", + "timestamp": "2025-11-27T04:01:51.703074-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1741750, + "rtt_ms": 1.74175, "checkpoint": 0, "vertex_from": "55", "vertex_to": "594", - "timestamp": "2025-11-27T01:21:53.238815902Z" + "timestamp": "2025-11-27T04:01:51.70313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511505, - "rtt_ms": 1.511505, + "rtt_ns": 1732458, + "rtt_ms": 1.732458, "checkpoint": 0, "vertex_from": "55", "vertex_to": "585", - "timestamp": "2025-11-27T01:21:53.238903542Z" + "timestamp": "2025-11-27T04:01:51.703159-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2001750, + "rtt_ms": 2.00175, + "checkpoint": 0, + "vertex_from": "55", + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.703341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101257, - "rtt_ms": 1.101257, + "rtt_ns": 1460291, + "rtt_ms": 1.460291, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "310", - "timestamp": "2025-11-27T01:21:53.238951912Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.703416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577145, - "rtt_ms": 1.577145, + "rtt_ns": 1173875, + "rtt_ms": 1.173875, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.23953769Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:51.703435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495565, - "rtt_ms": 1.495565, + "rtt_ns": 1680709, + "rtt_ms": 1.680709, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.239738049Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.703606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624005, - "rtt_ms": 1.624005, + "rtt_ns": 1825000, + "rtt_ms": 1.825, "checkpoint": 0, "vertex_from": "56", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.239757759Z" + "timestamp": "2025-11-27T04:01:51.703773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129346, - "rtt_ms": 1.129346, + "rtt_ns": 1073541, + "rtt_ms": 1.073541, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.239763189Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.704204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551175, - "rtt_ms": 1.551175, + "rtt_ns": 1471709, + "rtt_ms": 1.471709, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.239779289Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.704336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653055, - "rtt_ms": 1.653055, + "rtt_ns": 1657291, + "rtt_ms": 1.657291, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.239801289Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.704398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053967, - "rtt_ms": 1.053967, + "rtt_ns": 2063625, + "rtt_ms": 2.063625, "checkpoint": 0, "vertex_from": "56", "vertex_to": "785", - "timestamp": "2025-11-27T01:21:53.239958839Z" + "timestamp": "2025-11-27T04:01:51.705224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732204, - "rtt_ms": 1.732204, + "rtt_ns": 2173334, + "rtt_ms": 2.173334, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:53.240685696Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:01:51.705249-08:00" }, { "operation": "add_edge", - "rtt_ns": 946557, - "rtt_ms": 0.946557, + "rtt_ns": 1968084, + "rtt_ms": 1.968084, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:53.240706406Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:51.70531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927174, - "rtt_ms": 1.927174, + "rtt_ns": 1894833, + "rtt_ms": 1.894833, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.240744476Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:51.705331-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052153, - "rtt_ms": 2.052153, + "rtt_ns": 1909709, + "rtt_ms": 1.909709, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "283", - "timestamp": "2025-11-27T01:21:53.240779286Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:51.705516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247036, - "rtt_ms": 1.247036, + "rtt_ns": 2125334, + "rtt_ms": 2.125334, "checkpoint": 0, "vertex_from": "56", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.240785386Z" + "timestamp": "2025-11-27T04:01:51.705542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031307, - "rtt_ms": 1.031307, + "rtt_ns": 1358000, + "rtt_ms": 1.358, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.240795926Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.705563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089847, - "rtt_ms": 1.089847, + "rtt_ns": 1810625, + "rtt_ms": 1.810625, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.240870826Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.705587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149926, - "rtt_ms": 1.149926, + "rtt_ns": 1255291, + "rtt_ms": 1.255291, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:53.240894105Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:51.705655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118326, - "rtt_ms": 1.118326, + "rtt_ns": 1781834, + "rtt_ms": 1.781834, "checkpoint": 0, "vertex_from": "56", "vertex_to": "674", - "timestamp": "2025-11-27T01:21:53.240928545Z" + "timestamp": "2025-11-27T04:01:51.706121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585124, - "rtt_ms": 1.585124, + "rtt_ns": 1152708, + "rtt_ms": 1.152708, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.241545383Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.70667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313415, - "rtt_ms": 1.313415, + "rtt_ns": 1161125, + "rtt_ms": 1.161125, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.242110661Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:51.706726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461405, - "rtt_ms": 1.461405, + "rtt_ns": 1581291, + "rtt_ms": 1.581291, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.242148731Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.706893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725325, - "rtt_ms": 1.725325, + "rtt_ns": 1687041, + "rtt_ms": 1.687041, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.24262066Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.706914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855934, - "rtt_ms": 1.855934, + "rtt_ns": 1668292, + "rtt_ms": 1.668292, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.24264268Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:51.706919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957664, - "rtt_ms": 1.957664, + "rtt_ns": 1337125, + "rtt_ms": 1.337125, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.24266601Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.706925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143186, - "rtt_ms": 1.143186, + "rtt_ns": 1392583, + "rtt_ms": 1.392583, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "458", - "timestamp": "2025-11-27T01:21:53.242689689Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.706936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836803, - "rtt_ms": 1.836803, + "rtt_ns": 1298666, + "rtt_ms": 1.298666, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:53.242709739Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:51.706955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010153, - "rtt_ms": 2.010153, + "rtt_ns": 1678250, + "rtt_ms": 1.67825, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.242756139Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.70701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908724, - "rtt_ms": 1.908724, + "rtt_ns": 1374083, + "rtt_ms": 1.374083, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:53.242838689Z" + "vertex_to": "458", + "timestamp": "2025-11-27T04:01:51.707496-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113583, - "rtt_ms": 2.113583, + "rtt_ns": 1446000, + "rtt_ms": 1.446, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.242894029Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.708174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404896, - "rtt_ms": 1.404896, + "rtt_ns": 1563792, + "rtt_ms": 1.563792, "checkpoint": 0, "vertex_from": "56", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.243516757Z" + "timestamp": "2025-11-27T04:01:51.708235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468025, - "rtt_ms": 1.468025, + "rtt_ns": 1306583, + "rtt_ms": 1.306583, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.243617626Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.708243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379796, - "rtt_ms": 1.379796, + "rtt_ns": 1484750, + "rtt_ms": 1.48475, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.244071085Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.708441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479045, - "rtt_ms": 1.479045, + "rtt_ns": 1447959, + "rtt_ms": 1.447959, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.244145975Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.708459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532555, - "rtt_ms": 1.532555, + "rtt_ns": 1546542, + "rtt_ms": 1.546542, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.244178185Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.708473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345586, - "rtt_ms": 1.345586, + "rtt_ns": 1581000, + "rtt_ms": 1.581, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.244184935Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:51.708476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489705, - "rtt_ms": 1.489705, + "rtt_ns": 1562708, + "rtt_ms": 1.562708, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.244246864Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.708479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567375, - "rtt_ms": 1.567375, + "rtt_ns": 1570667, + "rtt_ms": 1.570667, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.244278274Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.708491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410985, - "rtt_ms": 1.410985, + "rtt_ns": 1108458, + "rtt_ms": 1.108458, "checkpoint": 0, "vertex_from": "56", "vertex_to": "737", - "timestamp": "2025-11-27T01:21:53.244306624Z" + "timestamp": "2025-11-27T04:01:51.708606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176487, - "rtt_ms": 1.176487, + "rtt_ns": 963208, + "rtt_ms": 0.963208, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.244795353Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:51.709437-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201792, - "rtt_ms": 2.201792, + "rtt_ns": 1279875, + "rtt_ms": 1.279875, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:53.244823202Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:51.709456-08:00" }, { "operation": "add_edge", - "rtt_ns": 824787, - "rtt_ms": 0.824787, + "rtt_ns": 1046792, + "rtt_ms": 1.046792, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.244897322Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.709653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415205, - "rtt_ms": 1.415205, + "rtt_ns": 1178500, + "rtt_ms": 1.1785, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:53.244934712Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:51.70967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105316, - "rtt_ms": 1.105316, + "rtt_ns": 1280125, + "rtt_ms": 1.280125, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.245285441Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.709722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098976, - "rtt_ms": 1.098976, + "rtt_ns": 1496791, + "rtt_ms": 1.496791, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:53.245285851Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.709742-08:00" }, { "operation": "add_edge", - "rtt_ns": 984796, - "rtt_ms": 0.984796, + "rtt_ns": 1390417, + "rtt_ms": 1.390417, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.245781609Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.70985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678954, - "rtt_ms": 1.678954, + "rtt_ns": 1624292, + "rtt_ms": 1.624292, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.245825679Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.709861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591815, - "rtt_ms": 1.591815, + "rtt_ns": 1405292, + "rtt_ms": 1.405292, "checkpoint": 0, "vertex_from": "56", "vertex_to": "564", - "timestamp": "2025-11-27T01:21:53.245840609Z" + "timestamp": "2025-11-27T04:01:51.709883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615515, - "rtt_ms": 1.615515, + "rtt_ns": 1486625, + "rtt_ms": 1.486625, "checkpoint": 0, "vertex_from": "56", "vertex_to": "841", - "timestamp": "2025-11-27T01:21:53.245895219Z" + "timestamp": "2025-11-27T04:01:51.709967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702375, - "rtt_ms": 1.702375, + "rtt_ns": 1031750, + "rtt_ms": 1.03175, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:53.246010099Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:51.710774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313796, - "rtt_ms": 1.313796, + "rtt_ns": 1158750, + "rtt_ms": 1.15875, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.246249908Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.710882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496646, - "rtt_ms": 1.496646, + "rtt_ns": 1292875, + "rtt_ms": 1.292875, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "188", - "timestamp": "2025-11-27T01:21:53.246321138Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:51.710964-08:00" }, { "operation": "add_edge", - "rtt_ns": 723618, - "rtt_ms": 0.723618, + "rtt_ns": 1542416, + "rtt_ms": 1.542416, "checkpoint": 0, - "vertex_from": "57", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.246974646Z" + "vertex_from": "56", + "vertex_to": "188", + "timestamp": "2025-11-27T04:01:51.71098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065786, - "rtt_ms": 1.065786, + "rtt_ns": 1344250, + "rtt_ms": 1.34425, "checkpoint": 0, - "vertex_from": "57", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.247077315Z" + "vertex_from": "56", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.710998-08:00" }, { "operation": "add_edge", - "rtt_ns": 825077, - "rtt_ms": 0.825077, + "rtt_ns": 1250709, + "rtt_ms": 1.250709, "checkpoint": 0, - "vertex_from": "57", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.247147255Z" + "vertex_from": "56", + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:51.711113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443276, - "rtt_ms": 1.443276, + "rtt_ns": 1675333, + "rtt_ms": 1.675333, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.247287355Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.711133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407326, - "rtt_ms": 1.407326, + "rtt_ns": 1322417, + "rtt_ms": 1.322417, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:53.247303545Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:51.711174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2218803, - "rtt_ms": 2.218803, + "rtt_ns": 1363917, + "rtt_ms": 1.363917, "checkpoint": 0, - "vertex_from": "56", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.247505614Z" + "vertex_from": "57", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.711333-08:00" }, { "operation": "add_edge", - "rtt_ns": 2648242, - "rtt_ms": 2.648242, + "rtt_ns": 1466292, + "rtt_ms": 1.466292, "checkpoint": 0, "vertex_from": "56", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.247546204Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:51.71135-08:00" }, { "operation": "add_edge", - "rtt_ns": 673788, - "rtt_ms": 0.673788, + "rtt_ns": 1324292, + "rtt_ms": 1.324292, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.247649264Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.712101-08:00" }, { "operation": "add_edge", - "rtt_ns": 677768, - "rtt_ms": 0.677768, + "rtt_ns": 1150125, + "rtt_ms": 1.150125, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.247758453Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:51.712283-08:00" }, { "operation": "add_edge", - "rtt_ns": 858037, - "rtt_ms": 0.858037, + "rtt_ns": 1417709, + "rtt_ms": 1.417709, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:53.248007912Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.712301-08:00" }, { "operation": "add_edge", - "rtt_ns": 709257, - "rtt_ms": 0.709257, + "rtt_ns": 1353250, + "rtt_ms": 1.35325, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:53.248013832Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.712318-08:00" }, { "operation": "add_edge", - "rtt_ns": 845107, - "rtt_ms": 0.845107, + "rtt_ns": 1348958, + "rtt_ms": 1.348958, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:53.248133922Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.71233-08:00" }, { "operation": "add_edge", - "rtt_ns": 2363093, - "rtt_ms": 2.363093, + "rtt_ns": 1219792, + "rtt_ms": 1.219792, "checkpoint": 0, - "vertex_from": "56", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:53.248189702Z" + "vertex_from": "57", + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:51.712333-08:00" }, { "operation": "add_edge", - "rtt_ns": 670008, - "rtt_ms": 0.670008, + "rtt_ns": 1393791, + "rtt_ms": 1.393791, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:53.248217602Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:51.712393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070597, - "rtt_ms": 1.070597, + "rtt_ns": 1222916, + "rtt_ms": 1.222916, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.248577671Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:51.712557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083286, - "rtt_ms": 1.083286, + "rtt_ns": 1245250, + "rtt_ms": 1.24525, "checkpoint": 0, "vertex_from": "57", "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.2487337Z" + "timestamp": "2025-11-27T04:01:51.712596-08:00" }, { "operation": "add_edge", - "rtt_ns": 3481289, - "rtt_ms": 3.481289, + "rtt_ns": 1539041, + "rtt_ms": 1.539041, "checkpoint": 0, - "vertex_from": "56", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.24876781Z" + "vertex_from": "57", + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.712713-08:00" }, { "operation": "add_edge", - "rtt_ns": 3120841, - "rtt_ms": 3.120841, + "rtt_ns": 1210459, + "rtt_ms": 1.210459, "checkpoint": 0, - "vertex_from": "56", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:53.24890384Z" + "vertex_from": "57", + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.713512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171886, - "rtt_ms": 1.171886, + "rtt_ns": 1428250, + "rtt_ms": 1.42825, "checkpoint": 0, "vertex_from": "57", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.248931209Z" + "timestamp": "2025-11-27T04:01:51.713529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182816, - "rtt_ms": 1.182816, + "rtt_ns": 2154709, + "rtt_ms": 2.154709, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:53.249762017Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:51.714489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776645, - "rtt_ms": 1.776645, + "rtt_ns": 2118708, + "rtt_ms": 2.118708, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.249785717Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:51.714514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778945, - "rtt_ms": 1.778945, + "rtt_ns": 2210750, + "rtt_ms": 2.21075, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.249794327Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:51.714529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661355, - "rtt_ms": 1.661355, + "rtt_ns": 2470292, + "rtt_ms": 2.470292, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:53.249797077Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:51.714801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605645, - "rtt_ms": 1.605645, + "rtt_ns": 1307667, + "rtt_ms": 1.307667, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:53.249824937Z" + "vertex_to": "85", + "timestamp": "2025-11-27T04:01:51.714821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401736, - "rtt_ms": 1.401736, + "rtt_ns": 1318792, + "rtt_ms": 1.318792, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.250136916Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.714849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569505, - "rtt_ms": 1.569505, + "rtt_ns": 2136083, + "rtt_ms": 2.136083, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "598", - "timestamp": "2025-11-27T01:21:53.250340545Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:51.714852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835205, - "rtt_ms": 1.835205, + "rtt_ns": 2567833, + "rtt_ms": 2.567833, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "85", - "timestamp": "2025-11-27T01:21:53.250771534Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.714852-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013053, - "rtt_ms": 2.013053, + "rtt_ns": 2284375, + "rtt_ms": 2.284375, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:53.250918433Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.71486-08:00" }, { "operation": "add_edge", - "rtt_ns": 2730861, - "rtt_ms": 2.730861, + "rtt_ns": 2271334, + "rtt_ms": 2.271334, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.250921823Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:01:51.714868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147766, - "rtt_ms": 1.147766, + "rtt_ns": 1464917, + "rtt_ms": 1.464917, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:53.250935163Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:51.71598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149576, - "rtt_ms": 1.149576, + "rtt_ns": 1142250, + "rtt_ms": 1.14225, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.250977963Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:51.715992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218096, - "rtt_ms": 1.218096, + "rtt_ns": 1191000, + "rtt_ms": 1.191, "checkpoint": 0, - "vertex_from": "57", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:53.251014703Z" + "vertex_from": "58", + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:51.716013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223556, - "rtt_ms": 1.223556, + "rtt_ns": 1219292, + "rtt_ms": 1.219292, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.251023513Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.716021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278816, - "rtt_ms": 1.278816, + "rtt_ns": 1587459, + "rtt_ms": 1.587459, "checkpoint": 0, "vertex_from": "57", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.251043783Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:51.716077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609405, - "rtt_ms": 1.609405, + "rtt_ns": 1373208, + "rtt_ms": 1.373208, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.251748171Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.716235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402786, - "rtt_ms": 1.402786, + "rtt_ns": 1736083, + "rtt_ms": 1.736083, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:53.251751681Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.716266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002576, - "rtt_ms": 1.002576, + "rtt_ns": 1432875, + "rtt_ms": 1.432875, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "570", - "timestamp": "2025-11-27T01:21:53.25177795Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:51.716302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466605, - "rtt_ms": 1.466605, + "rtt_ns": 1492334, + "rtt_ms": 1.492334, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:53.252446128Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:51.716347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631175, - "rtt_ms": 1.631175, + "rtt_ns": 1538333, + "rtt_ms": 1.538333, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.252554698Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:01:51.716393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2329812, - "rtt_ms": 2.329812, + "rtt_ns": 1281083, + "rtt_ms": 1.281083, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:53.253249945Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:51.717264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500314, - "rtt_ms": 1.500314, + "rtt_ns": 1046250, + "rtt_ms": 1.04625, "checkpoint": 0, "vertex_from": "58", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.253253625Z" + "timestamp": "2025-11-27T04:01:51.717282-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250622, - "rtt_ms": 2.250622, + "rtt_ns": 1532375, + "rtt_ms": 1.532375, "checkpoint": 0, "vertex_from": "58", "vertex_to": "77", - "timestamp": "2025-11-27T01:21:53.253275495Z" + "timestamp": "2025-11-27T04:01:51.717546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515705, - "rtt_ms": 1.515705, + "rtt_ns": 1568666, + "rtt_ms": 1.568666, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "372", - "timestamp": "2025-11-27T01:21:53.253297505Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:51.717562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2367652, - "rtt_ms": 2.367652, + "rtt_ns": 1500625, + "rtt_ms": 1.500625, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:53.253304805Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.717579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2309442, - "rtt_ms": 2.309442, + "rtt_ns": 1558833, + "rtt_ms": 1.558833, "checkpoint": 0, "vertex_from": "58", "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.253354865Z" + "timestamp": "2025-11-27T04:01:51.717581-08:00" }, { "operation": "add_edge", - "rtt_ns": 2345492, - "rtt_ms": 2.345492, + "rtt_ns": 1202708, + "rtt_ms": 1.202708, "checkpoint": 0, - "vertex_from": "58", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.253361935Z" + "vertex_from": "59", + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.717599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631484, - "rtt_ms": 1.631484, + "rtt_ns": 1356583, + "rtt_ms": 1.356583, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.253381965Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:01:51.717659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517595, - "rtt_ms": 1.517595, + "rtt_ns": 1328125, + "rtt_ms": 1.328125, "checkpoint": 0, "vertex_from": "58", "vertex_to": "406", - "timestamp": "2025-11-27T01:21:53.254075923Z" + "timestamp": "2025-11-27T04:01:51.717676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653615, - "rtt_ms": 1.653615, + "rtt_ns": 1482125, + "rtt_ms": 1.482125, "checkpoint": 0, "vertex_from": "58", - "vertex_to": "101", - "timestamp": "2025-11-27T01:21:53.254101473Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1398616, - "rtt_ms": 1.398616, - "checkpoint": 0, - "vertex_from": "59", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.254651911Z" + "vertex_to": "372", + "timestamp": "2025-11-27T04:01:51.717751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327926, - "rtt_ms": 1.327926, + "rtt_ns": 1290750, + "rtt_ms": 1.29075, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:53.254712871Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.718556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435695, - "rtt_ms": 1.435695, + "rtt_ns": 1069666, + "rtt_ms": 1.069666, "checkpoint": 0, "vertex_from": "59", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.25473706Z" + "timestamp": "2025-11-27T04:01:51.718617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431275, - "rtt_ms": 1.431275, + "rtt_ns": 1208792, + "rtt_ms": 1.208792, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "457", - "timestamp": "2025-11-27T01:21:53.25473833Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:51.718869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379505, - "rtt_ms": 1.379505, + "rtt_ns": 1213792, + "rtt_ms": 1.213792, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.2547427Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.71889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484055, - "rtt_ms": 1.484055, + "rtt_ns": 1337625, + "rtt_ms": 1.337625, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.2547621Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:01:51.7189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230975, - "rtt_ms": 1.230975, + "rtt_ns": 1323292, + "rtt_ms": 1.323292, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.255334008Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.718905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028963, - "rtt_ms": 2.028963, + "rtt_ns": 1637667, + "rtt_ms": 1.637667, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.255387808Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.71892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337205, - "rtt_ms": 1.337205, + "rtt_ns": 1342584, + "rtt_ms": 1.342584, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:53.255415618Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.718922-08:00" }, { "operation": "add_edge", - "rtt_ns": 2183113, - "rtt_ms": 2.183113, + "rtt_ns": 1347042, + "rtt_ms": 1.347042, "checkpoint": 0, "vertex_from": "59", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.255439958Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:51.718948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413015, - "rtt_ms": 1.413015, + "rtt_ns": 1273875, + "rtt_ms": 1.273875, "checkpoint": 0, "vertex_from": "60", "vertex_to": "900", - "timestamp": "2025-11-27T01:21:53.256067136Z" + "timestamp": "2025-11-27T04:01:51.719027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709634, - "rtt_ms": 1.709634, + "rtt_ns": 1313750, + "rtt_ms": 1.31375, "checkpoint": 0, "vertex_from": "60", "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.256423855Z" + "timestamp": "2025-11-27T04:01:51.719872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875994, - "rtt_ms": 1.875994, + "rtt_ns": 1272917, + "rtt_ms": 1.272917, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.256621304Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:51.719891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254046, - "rtt_ms": 1.254046, + "rtt_ns": 1164709, + "rtt_ms": 1.164709, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "566", - "timestamp": "2025-11-27T01:21:53.256695384Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:51.720056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955444, - "rtt_ms": 1.955444, + "rtt_ns": 1132375, + "rtt_ms": 1.132375, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.256695624Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:51.720161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944654, - "rtt_ms": 1.944654, + "rtt_ns": 1358250, + "rtt_ms": 1.35825, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:53.256709124Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:51.720279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096624, - "rtt_ms": 2.096624, + "rtt_ns": 1435042, + "rtt_ms": 1.435042, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.256835624Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.720357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906674, - "rtt_ms": 1.906674, + "rtt_ns": 1497958, + "rtt_ms": 1.497958, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.257296192Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:01:51.720449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962564, - "rtt_ms": 1.962564, + "rtt_ns": 1568875, + "rtt_ms": 1.568875, "checkpoint": 0, "vertex_from": "60", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.257298212Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2001484, - "rtt_ms": 2.001484, - "checkpoint": 0, - "vertex_from": "60", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.257418362Z" + "timestamp": "2025-11-27T04:01:51.720474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461045, - "rtt_ms": 1.461045, + "rtt_ns": 1629000, + "rtt_ms": 1.629, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.257529671Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.720499-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067914, - "rtt_ms": 2.067914, + "rtt_ns": 1637792, + "rtt_ms": 1.637792, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:53.258778738Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:51.720539-08:00" }, { "operation": "add_edge", - "rtt_ns": 2367062, - "rtt_ms": 2.367062, + "rtt_ns": 1325833, + "rtt_ms": 1.325833, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "64", - "timestamp": "2025-11-27T01:21:53.258792367Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:51.721383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962113, - "rtt_ms": 1.962113, + "rtt_ns": 1440000, + "rtt_ms": 1.44, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.258799247Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:51.721602-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163693, - "rtt_ms": 2.163693, + "rtt_ns": 1729208, + "rtt_ms": 1.729208, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:53.258861117Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.721621-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317263, - "rtt_ms": 2.317263, + "rtt_ns": 1751000, + "rtt_ms": 1.751, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.258942147Z" + "vertex_to": "64", + "timestamp": "2025-11-27T04:01:51.721624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2317763, - "rtt_ms": 2.317763, + "rtt_ns": 1353708, + "rtt_ms": 1.353708, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:53.259014647Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:51.721634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769275, - "rtt_ms": 1.769275, + "rtt_ns": 1163208, + "rtt_ms": 1.163208, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.259067907Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.721638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826334, - "rtt_ms": 1.826334, + "rtt_ns": 1427416, + "rtt_ms": 1.427416, "checkpoint": 0, "vertex_from": "60", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.259127996Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.721785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620205, - "rtt_ms": 1.620205, + "rtt_ns": 1283750, + "rtt_ms": 1.28375, "checkpoint": 0, "vertex_from": "61", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.259151426Z" + "timestamp": "2025-11-27T04:01:51.721824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772644, - "rtt_ms": 1.772644, + "rtt_ns": 1365334, + "rtt_ms": 1.365334, "checkpoint": 0, "vertex_from": "60", "vertex_to": "970", - "timestamp": "2025-11-27T01:21:53.259193156Z" + "timestamp": "2025-11-27T04:01:51.721865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112496, - "rtt_ms": 1.112496, + "rtt_ns": 1545167, + "rtt_ms": 1.545167, "checkpoint": 0, - "vertex_from": "62", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:53.260182703Z" + "vertex_from": "60", + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.721995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266536, - "rtt_ms": 1.266536, + "rtt_ns": 1221250, + "rtt_ms": 1.22125, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.260213123Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.722824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352346, - "rtt_ms": 1.352346, + "rtt_ns": 1043125, + "rtt_ms": 1.043125, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.260215313Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:51.722831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422096, - "rtt_ms": 1.422096, + "rtt_ns": 1466583, + "rtt_ms": 1.466583, "checkpoint": 0, - "vertex_from": "62", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.260225293Z" + "vertex_from": "61", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.72285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209046, - "rtt_ms": 1.209046, + "rtt_ns": 1308916, + "rtt_ms": 1.308916, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:53.260225663Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.722931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449486, - "rtt_ms": 1.449486, + "rtt_ns": 1443292, + "rtt_ms": 1.443292, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.260245843Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:51.72308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610195, - "rtt_ms": 1.610195, + "rtt_ns": 1456625, + "rtt_ms": 1.456625, "checkpoint": 0, - "vertex_from": "61", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.260390792Z" + "vertex_from": "62", + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:51.723096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743304, - "rtt_ms": 1.743304, + "rtt_ns": 1286667, + "rtt_ms": 1.286667, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:53.26093859Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.723112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806674, - "rtt_ms": 1.806674, + "rtt_ns": 1504625, + "rtt_ms": 1.504625, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.26096003Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.723129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867574, - "rtt_ms": 1.867574, + "rtt_ns": 1521125, + "rtt_ms": 1.521125, "checkpoint": 0, "vertex_from": "62", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.26099807Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.723387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273266, - "rtt_ms": 1.273266, + "rtt_ns": 1405125, + "rtt_ms": 1.405125, "checkpoint": 0, - "vertex_from": "63", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.261490609Z" + "vertex_from": "62", + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:51.723402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844674, - "rtt_ms": 1.844674, + "rtt_ns": 967958, + "rtt_ms": 0.967958, "checkpoint": 0, - "vertex_from": "63", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.262059307Z" + "vertex_from": "64", + "vertex_to": "295", + "timestamp": "2025-11-27T04:01:51.724064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871324, - "rtt_ms": 1.871324, + "rtt_ns": 1171167, + "rtt_ms": 1.171167, "checkpoint": 0, "vertex_from": "64", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.262097827Z" + "timestamp": "2025-11-27T04:01:51.724103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944603, - "rtt_ms": 1.944603, + "rtt_ns": 1561125, + "rtt_ms": 1.561125, "checkpoint": 0, "vertex_from": "63", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.262129966Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:51.724412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925513, - "rtt_ms": 1.925513, + "rtt_ns": 1039625, + "rtt_ms": 1.039625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "295", - "timestamp": "2025-11-27T01:21:53.262174546Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:51.724427-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1612042, + "rtt_ms": 1.612042, + "checkpoint": 0, + "vertex_from": "63", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.724444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821374, - "rtt_ms": 1.821374, + "rtt_ns": 1396583, + "rtt_ms": 1.396583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:53.262216056Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.724527-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062263, - "rtt_ms": 2.062263, + "rtt_ns": 1480292, + "rtt_ms": 1.480292, "checkpoint": 0, "vertex_from": "64", "vertex_to": "646", - "timestamp": "2025-11-27T01:21:53.262291086Z" + "timestamp": "2025-11-27T04:01:51.724561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313026, - "rtt_ms": 1.313026, + "rtt_ns": 1173291, + "rtt_ms": 1.173291, "checkpoint": 0, "vertex_from": "64", "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.262313056Z" + "timestamp": "2025-11-27T04:01:51.724576-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377166, - "rtt_ms": 1.377166, + "rtt_ns": 1463958, + "rtt_ms": 1.463958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.262317306Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:51.724577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362166, - "rtt_ms": 1.362166, + "rtt_ns": 1760250, + "rtt_ms": 1.76025, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:53.262324126Z" + "vertex_from": "63", + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.724587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404445, - "rtt_ms": 1.404445, + "rtt_ns": 1386209, + "rtt_ms": 1.386209, "checkpoint": 0, "vertex_from": "64", "vertex_to": "353", - "timestamp": "2025-11-27T01:21:53.262896724Z" + "timestamp": "2025-11-27T04:01:51.725451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115106, - "rtt_ms": 1.115106, + "rtt_ns": 1367584, + "rtt_ms": 1.367584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:53.263429822Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.725471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072336, - "rtt_ms": 1.072336, + "rtt_ns": 1026459, + "rtt_ms": 1.026459, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.26397068Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.725614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719314, - "rtt_ms": 1.719314, + "rtt_ns": 1266083, + "rtt_ms": 1.266083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.26401108Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.725678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989693, - "rtt_ms": 1.989693, + "rtt_ns": 1238125, + "rtt_ms": 1.238125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.26408905Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.725683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874944, - "rtt_ms": 1.874944, + "rtt_ns": 1256375, + "rtt_ms": 1.256375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.26409202Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.725684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915854, - "rtt_ms": 1.915854, + "rtt_ns": 1797292, + "rtt_ms": 1.797292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.26409189Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.726327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815344, - "rtt_ms": 1.815344, + "rtt_ns": 2082125, + "rtt_ms": 2.082125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "554", - "timestamp": "2025-11-27T01:21:53.26413438Z" + "timestamp": "2025-11-27T04:01:51.72666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030964, - "rtt_ms": 2.030964, + "rtt_ns": 2099291, + "rtt_ms": 2.099291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.26416284Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:51.726676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174382, - "rtt_ms": 2.174382, + "rtt_ns": 2159083, + "rtt_ms": 2.159083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.264235109Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:51.726722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971043, - "rtt_ms": 1.971043, + "rtt_ns": 1319750, + "rtt_ms": 1.31975, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.264297459Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.727006-08:00" }, { "operation": "add_edge", - "rtt_ns": 933437, - "rtt_ms": 0.933437, + "rtt_ns": 2295709, + "rtt_ms": 2.295709, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.264905007Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.727748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527615, - "rtt_ms": 1.527615, + "rtt_ns": 2293000, + "rtt_ms": 2.293, "checkpoint": 0, "vertex_from": "64", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.264958847Z" + "timestamp": "2025-11-27T04:01:51.727765-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108643, - "rtt_ms": 2.108643, + "rtt_ns": 1439791, + "rtt_ms": 1.439791, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:53.266121443Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.727767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337983, - "rtt_ms": 2.337983, + "rtt_ns": 2101208, + "rtt_ms": 2.101208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "427", - "timestamp": "2025-11-27T01:21:53.266429163Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:51.727781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441392, - "rtt_ms": 2.441392, + "rtt_ns": 2170500, + "rtt_ms": 2.1705, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.266605232Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.727787-08:00" }, { "operation": "add_edge", - "rtt_ns": 3118990, - "rtt_ms": 3.11899, + "rtt_ns": 2112500, + "rtt_ms": 2.1125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.2672125Z" + "vertex_to": "427", + "timestamp": "2025-11-27T04:01:51.727796-08:00" }, { "operation": "add_edge", - "rtt_ns": 3148370, - "rtt_ms": 3.14837, + "rtt_ns": 1284791, + "rtt_ms": 1.284791, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:53.26728416Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.728007-08:00" }, { "operation": "add_edge", - "rtt_ns": 3081961, - "rtt_ms": 3.081961, + "rtt_ns": 1363167, + "rtt_ms": 1.363167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.26731833Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:51.728024-08:00" }, { "operation": "add_edge", - "rtt_ns": 3308229, - "rtt_ms": 3.308229, + "rtt_ns": 1366500, + "rtt_ms": 1.3665, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.267403229Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.728043-08:00" }, { "operation": "add_edge", - "rtt_ns": 2523392, - "rtt_ms": 2.523392, + "rtt_ns": 1638333, + "rtt_ms": 1.638333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:53.267430069Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:51.728645-08:00" }, { "operation": "add_edge", - "rtt_ns": 3164810, - "rtt_ms": 3.16481, + "rtt_ns": 1279042, + "rtt_ms": 1.279042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.267463969Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:51.729028-08:00" }, { "operation": "add_edge", - "rtt_ns": 2520002, - "rtt_ms": 2.520002, + "rtt_ns": 1448833, + "rtt_ms": 1.448833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:53.267480449Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.729231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400296, - "rtt_ms": 1.400296, + "rtt_ns": 1478542, + "rtt_ms": 1.478542, "checkpoint": 0, "vertex_from": "64", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:53.267522929Z" + "timestamp": "2025-11-27T04:01:51.729247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009857, - "rtt_ms": 1.009857, + "rtt_ns": 1473875, + "rtt_ms": 1.473875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "364", - "timestamp": "2025-11-27T01:21:53.267616759Z" + "timestamp": "2025-11-27T04:01:51.729262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202116, - "rtt_ms": 1.202116, + "rtt_ns": 1318333, + "rtt_ms": 1.318333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.267632669Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:51.729365-08:00" }, { "operation": "add_edge", - "rtt_ns": 624518, - "rtt_ms": 0.624518, + "rtt_ns": 1615417, + "rtt_ms": 1.615417, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:53.267943978Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:51.729381-08:00" }, { "operation": "add_edge", - "rtt_ns": 697628, - "rtt_ms": 0.697628, + "rtt_ns": 1374500, + "rtt_ms": 1.3745, "checkpoint": 0, "vertex_from": "64", "vertex_to": "583", - "timestamp": "2025-11-27T01:21:53.267983188Z" + "timestamp": "2025-11-27T04:01:51.729383-08:00" }, { "operation": "add_edge", - "rtt_ns": 774158, - "rtt_ms": 0.774158, + "rtt_ns": 1602334, + "rtt_ms": 1.602334, "checkpoint": 0, "vertex_from": "64", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.267987998Z" + "timestamp": "2025-11-27T04:01:51.729399-08:00" }, { "operation": "add_edge", - "rtt_ns": 737568, - "rtt_ms": 0.737568, + "rtt_ns": 1539292, + "rtt_ms": 1.539292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:53.268168457Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:51.729564-08:00" }, { "operation": "add_edge", - "rtt_ns": 851248, - "rtt_ms": 0.851248, + "rtt_ns": 1311291, + "rtt_ms": 1.311291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:53.268256177Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:51.729958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123187, - "rtt_ms": 1.123187, + "rtt_ns": 1102750, + "rtt_ms": 1.10275, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:53.268604586Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:51.730366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259126, - "rtt_ms": 1.259126, + "rtt_ns": 1137791, + "rtt_ms": 1.137791, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.268724635Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:51.730385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126536, - "rtt_ms": 1.126536, + "rtt_ns": 1216083, + "rtt_ms": 1.216083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.268746465Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:51.730781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188416, - "rtt_ms": 1.188416, + "rtt_ns": 1641375, + "rtt_ms": 1.641375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:53.268823685Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:51.730873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364346, - "rtt_ms": 1.364346, + "rtt_ns": 1861292, + "rtt_ms": 1.861292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:53.268888185Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.73089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694304, - "rtt_ms": 1.694304, + "rtt_ns": 1509667, + "rtt_ms": 1.509667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:53.269640232Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:51.730914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689214, - "rtt_ms": 1.689214, + "rtt_ns": 1581042, + "rtt_ms": 1.581042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:53.269678112Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.730965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810514, - "rtt_ms": 1.810514, + "rtt_ns": 1662750, + "rtt_ms": 1.66275, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.269794482Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:51.731044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753564, - "rtt_ms": 1.753564, + "rtt_ns": 1095208, + "rtt_ms": 1.095208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:53.269923511Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:51.731054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393785, - "rtt_ms": 1.393785, + "rtt_ns": 1696166, + "rtt_ms": 1.696166, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.269999471Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:51.731062-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1230296, - "rtt_ms": 1.230296, + "operation": "add_edge", + "rtt_ns": 1290666, + "rtt_ms": 1.290666, "checkpoint": 0, - "vertex_from": "206", - "timestamp": "2025-11-27T01:21:53.270123581Z" + "vertex_from": "64", + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:51.731677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339116, - "rtt_ms": 1.339116, + "rtt_ns": 1330959, + "rtt_ms": 1.330959, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.270164221Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:51.731698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494465, - "rtt_ms": 1.494465, + "rtt_ns": 998250, + "rtt_ms": 0.99825, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.27024281Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.731966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540595, - "rtt_ms": 1.540595, + "rtt_ns": 1110625, + "rtt_ms": 1.110625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:53.27026654Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.731984-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025003, - "rtt_ms": 2.025003, + "rtt_ns": 1457875, + "rtt_ms": 1.457875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:53.27028254Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:51.732372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063527, - "rtt_ms": 1.063527, + "rtt_ns": 1606958, + "rtt_ms": 1.606958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "93", - "timestamp": "2025-11-27T01:21:53.270988318Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.732389-08:00" }, { - "operation": "add_edge", - "rtt_ns": 870827, - "rtt_ms": 0.870827, + "operation": "add_vertex", + "rtt_ns": 1515417, + "rtt_ms": 1.515417, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:53.271037108Z" + "vertex_from": "206", + "timestamp": "2025-11-27T04:01:51.732408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279056, - "rtt_ms": 1.279056, + "rtt_ns": 1357458, + "rtt_ms": 1.357458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:53.271074668Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:51.732422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432356, - "rtt_ms": 1.432356, + "rtt_ns": 1669625, + "rtt_ms": 1.669625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.271111988Z" + "vertex_to": "93", + "timestamp": "2025-11-27T04:01:51.732724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018907, - "rtt_ms": 1.018907, + "rtt_ns": 1696250, + "rtt_ms": 1.69625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "206", - "timestamp": "2025-11-27T01:21:53.271143058Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:51.732742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550965, - "rtt_ms": 1.550965, + "rtt_ns": 1462583, + "rtt_ms": 1.462583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:53.271192967Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.733161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192676, - "rtt_ms": 1.192676, + "rtt_ns": 1498833, + "rtt_ms": 1.498833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:53.271193837Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:51.733176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650535, - "rtt_ms": 1.650535, + "rtt_ns": 1426959, + "rtt_ms": 1.426959, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:53.271934905Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:51.733394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691235, - "rtt_ms": 1.691235, + "rtt_ns": 1424917, + "rtt_ms": 1.424917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.271935495Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:51.73341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675265, - "rtt_ms": 1.675265, + "rtt_ns": 1264667, + "rtt_ms": 1.264667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.271944495Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.733654-08:00" }, { "operation": "add_edge", - "rtt_ns": 954627, - "rtt_ms": 0.954627, + "rtt_ns": 1347416, + "rtt_ms": 1.347416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "65", - "timestamp": "2025-11-27T01:21:53.272030455Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.733721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319225, - "rtt_ms": 1.319225, + "rtt_ns": 1644000, + "rtt_ms": 1.644, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:53.272463643Z" + "vertex_to": "206", + "timestamp": "2025-11-27T04:01:51.734052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557805, - "rtt_ms": 1.557805, + "rtt_ns": 1758042, + "rtt_ms": 1.758042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.272547553Z" + "vertex_to": "65", + "timestamp": "2025-11-27T04:01:51.734181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440355, - "rtt_ms": 1.440355, + "rtt_ns": 1635750, + "rtt_ms": 1.63575, "checkpoint": 0, "vertex_from": "64", "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.272559423Z" + "timestamp": "2025-11-27T04:01:51.734361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532835, - "rtt_ms": 1.532835, + "rtt_ns": 1685000, + "rtt_ms": 1.685, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.272571033Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:51.734428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411266, - "rtt_ms": 1.411266, + "rtt_ns": 1345958, + "rtt_ms": 1.345958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:53.272606583Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:51.735003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451856, - "rtt_ms": 1.451856, + "rtt_ns": 1299250, + "rtt_ms": 1.29925, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:53.272646453Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.735021-08:00" }, { "operation": "add_edge", - "rtt_ns": 774997, - "rtt_ms": 0.774997, + "rtt_ns": 1626291, + "rtt_ms": 1.626291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:53.272721292Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:51.735037-08:00" }, { "operation": "add_edge", - "rtt_ns": 795927, - "rtt_ms": 0.795927, + "rtt_ns": 1661417, + "rtt_ms": 1.661417, "checkpoint": 0, "vertex_from": "64", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.272732722Z" + "timestamp": "2025-11-27T04:01:51.735056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120376, - "rtt_ms": 1.120376, + "rtt_ns": 1908708, + "rtt_ms": 1.908708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.273152111Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:51.735071-08:00" }, { "operation": "add_edge", - "rtt_ns": 844497, - "rtt_ms": 0.844497, + "rtt_ns": 1941958, + "rtt_ms": 1.941958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:53.27330981Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:51.735119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427965, - "rtt_ms": 1.427965, + "rtt_ns": 1544292, + "rtt_ms": 1.544292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "920", - "timestamp": "2025-11-27T01:21:53.27336569Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:51.735906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662344, - "rtt_ms": 1.662344, + "rtt_ns": 1742291, + "rtt_ms": 1.742291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.274223477Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.735924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576984, - "rtt_ms": 1.576984, + "rtt_ns": 1889625, + "rtt_ms": 1.889625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "867", - "timestamp": "2025-11-27T01:21:53.274225347Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:51.735943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685634, - "rtt_ms": 1.685634, + "rtt_ns": 2215000, + "rtt_ms": 2.215, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.274236777Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.736645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688154, - "rtt_ms": 1.688154, + "rtt_ns": 1592000, + "rtt_ms": 1.592, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.274260757Z" + "vertex_to": "407", + "timestamp": "2025-11-27T04:01:51.736663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676594, - "rtt_ms": 1.676594, + "rtt_ns": 1895458, + "rtt_ms": 1.895458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:53.274284847Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.736952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885834, - "rtt_ms": 1.885834, + "rtt_ns": 1999875, + "rtt_ms": 1.999875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.274619736Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:01:51.737023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935504, - "rtt_ms": 1.935504, + "rtt_ns": 1954333, + "rtt_ms": 1.954333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "933", - "timestamp": "2025-11-27T01:21:53.274658026Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:51.737077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356156, - "rtt_ms": 1.356156, + "rtt_ns": 2080042, + "rtt_ms": 2.080042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:53.274724016Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:51.737084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591955, - "rtt_ms": 1.591955, + "rtt_ns": 2057583, + "rtt_ms": 2.057583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "407", - "timestamp": "2025-11-27T01:21:53.274745516Z" + "vertex_to": "933", + "timestamp": "2025-11-27T04:01:51.737095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438126, - "rtt_ms": 1.438126, + "rtt_ns": 1436875, + "rtt_ms": 1.436875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:53.274749316Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:51.737344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052477, - "rtt_ms": 1.052477, + "rtt_ns": 1416750, + "rtt_ms": 1.41675, "checkpoint": 0, "vertex_from": "64", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.275279324Z" + "timestamp": "2025-11-27T04:01:51.73736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583165, - "rtt_ms": 1.583165, + "rtt_ns": 1767958, + "rtt_ms": 1.767958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:53.275845722Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:51.737693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699945, - "rtt_ms": 1.699945, + "rtt_ns": 2036291, + "rtt_ms": 2.036291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:53.275924732Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:51.738701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674715, - "rtt_ms": 1.674715, + "rtt_ns": 2114125, + "rtt_ms": 2.114125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "812", - "timestamp": "2025-11-27T01:21:53.275961112Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:51.738761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728295, - "rtt_ms": 1.728295, + "rtt_ns": 1874042, + "rtt_ms": 1.874042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:53.275966462Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.73897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897303, - "rtt_ms": 1.897303, + "rtt_ns": 1644167, + "rtt_ms": 1.644167, "checkpoint": 0, "vertex_from": "64", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.276649179Z" + "timestamp": "2025-11-27T04:01:51.738989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063743, - "rtt_ms": 2.063743, + "rtt_ns": 1981958, + "rtt_ms": 1.981958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.276722899Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.739007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579231, - "rtt_ms": 2.579231, + "rtt_ns": 2256916, + "rtt_ms": 2.256916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.277304997Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:01:51.739212-08:00" }, { "operation": "add_edge", - "rtt_ns": 2670621, - "rtt_ms": 2.670621, + "rtt_ns": 1535375, + "rtt_ms": 1.535375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.277417757Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:51.739229-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185583, - "rtt_ms": 2.185583, + "rtt_ns": 1870583, + "rtt_ms": 1.870583, "checkpoint": 0, "vertex_from": "64", "vertex_to": "480", - "timestamp": "2025-11-27T01:21:53.277466327Z" + "timestamp": "2025-11-27T04:01:51.739232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528325, - "rtt_ms": 1.528325, + "rtt_ns": 2166041, + "rtt_ms": 2.166041, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.277490917Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:51.739244-08:00" }, { "operation": "add_edge", - "rtt_ns": 2879961, - "rtt_ms": 2.879961, + "rtt_ns": 2174416, + "rtt_ms": 2.174416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.277502537Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.739261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659305, - "rtt_ms": 1.659305, + "rtt_ns": 1471708, + "rtt_ms": 1.471708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.277506377Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:51.740733-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1523833, + "rtt_ms": 1.523833, + "checkpoint": 0, + "vertex_from": "64", + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:51.740754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587825, - "rtt_ms": 1.587825, + "rtt_ns": 2083166, + "rtt_ms": 2.083166, "checkpoint": 0, "vertex_from": "64", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.277514597Z" + "timestamp": "2025-11-27T04:01:51.740787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556515, - "rtt_ms": 1.556515, + "rtt_ns": 1834000, + "rtt_ms": 1.834, "checkpoint": 0, "vertex_from": "64", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.277524467Z" + "timestamp": "2025-11-27T04:01:51.740806-08:00" }, { "operation": "add_edge", - "rtt_ns": 952307, - "rtt_ms": 0.952307, + "rtt_ns": 2059833, + "rtt_ms": 2.059833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:53.278260034Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.740822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635045, - "rtt_ms": 1.635045, + "rtt_ns": 1624833, + "rtt_ms": 1.624833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "916", - "timestamp": "2025-11-27T01:21:53.278359004Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:51.740837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061817, - "rtt_ms": 1.061817, + "rtt_ns": 1844042, + "rtt_ms": 1.844042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:53.278480774Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:51.740852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866854, - "rtt_ms": 1.866854, + "rtt_ns": 1639625, + "rtt_ms": 1.639625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.278517653Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:51.740872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062406, - "rtt_ms": 1.062406, + "rtt_ns": 1897084, + "rtt_ms": 1.897084, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.278529993Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.740887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840384, - "rtt_ms": 1.840384, + "rtt_ns": 1642833, + "rtt_ms": 1.642833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:53.279367851Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.740887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871784, - "rtt_ms": 1.871784, + "rtt_ns": 1591292, + "rtt_ms": 1.591292, "checkpoint": 0, "vertex_from": "64", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:53.279379791Z" + "timestamp": "2025-11-27T04:01:51.742326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134487, - "rtt_ms": 1.134487, + "rtt_ns": 1566875, + "rtt_ms": 1.566875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:53.279396091Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:51.742455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913924, - "rtt_ms": 1.913924, + "rtt_ns": 1639958, + "rtt_ms": 1.639958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.279405781Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.742463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910474, - "rtt_ms": 1.910474, + "rtt_ns": 1687541, + "rtt_ms": 1.687541, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "868", - "timestamp": "2025-11-27T01:21:53.279414801Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:51.742476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934063, - "rtt_ms": 1.934063, + "rtt_ns": 1635458, + "rtt_ms": 1.635458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:53.27944975Z" + "vertex_to": "411", + "timestamp": "2025-11-27T04:01:51.742489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407665, - "rtt_ms": 1.407665, + "rtt_ns": 1693875, + "rtt_ms": 1.693875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.279767869Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:51.7425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544435, - "rtt_ms": 1.544435, + "rtt_ns": 1859083, + "rtt_ms": 1.859083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "425", - "timestamp": "2025-11-27T01:21:53.280075778Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:01:51.742697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669914, - "rtt_ms": 1.669914, + "rtt_ns": 1827625, + "rtt_ms": 1.827625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "666", - "timestamp": "2025-11-27T01:21:53.280152118Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:51.742716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756925, - "rtt_ms": 1.756925, + "rtt_ns": 1877000, + "rtt_ms": 1.877, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "411", - "timestamp": "2025-11-27T01:21:53.280276828Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:01:51.74275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420975, - "rtt_ms": 1.420975, + "rtt_ns": 2093042, + "rtt_ms": 2.093042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:53.280818246Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:51.742848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519215, - "rtt_ms": 1.519215, + "rtt_ns": 1127083, + "rtt_ms": 1.127083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.280888696Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:51.743604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169137, - "rtt_ms": 1.169137, + "rtt_ns": 1052250, + "rtt_ms": 1.05225, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.280938656Z" + "vertex_to": "504", + "timestamp": "2025-11-27T04:01:51.743751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556684, - "rtt_ms": 1.556684, + "rtt_ns": 1186375, + "rtt_ms": 1.186375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.280973855Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:51.743937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611294, - "rtt_ms": 1.611294, + "rtt_ns": 1457458, + "rtt_ms": 1.457458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.281017985Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.743947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655664, - "rtt_ms": 1.655664, + "rtt_ns": 1489875, + "rtt_ms": 1.489875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:53.281036815Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.743954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605335, - "rtt_ms": 1.605335, + "rtt_ns": 1641625, + "rtt_ms": 1.641625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:53.281056425Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:51.743969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876304, - "rtt_ms": 1.876304, + "rtt_ns": 1543834, + "rtt_ms": 1.543834, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "636", - "timestamp": "2025-11-27T01:21:53.281953312Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.743999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811534, - "rtt_ms": 1.811534, + "rtt_ns": 1149750, + "rtt_ms": 1.14975, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "504", - "timestamp": "2025-11-27T01:21:53.281965642Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:51.744001-08:00" }, { "operation": "add_edge", - "rtt_ns": 961557, - "rtt_ms": 0.961557, + "rtt_ns": 1500250, + "rtt_ms": 1.50025, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "75", - "timestamp": "2025-11-27T01:21:53.281981002Z" + "vertex_to": "636", + "timestamp": "2025-11-27T04:01:51.744002-08:00" }, { "operation": "add_edge", - "rtt_ns": 960227, - "rtt_ms": 0.960227, + "rtt_ns": 1337542, + "rtt_ms": 1.337542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.281997972Z" + "vertex_to": "691", + "timestamp": "2025-11-27T04:01:51.744054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026417, - "rtt_ms": 1.026417, + "rtt_ns": 1566667, + "rtt_ms": 1.566667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "805", - "timestamp": "2025-11-27T01:21:53.282001252Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.745171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736294, - "rtt_ms": 1.736294, + "rtt_ns": 1437125, + "rtt_ms": 1.437125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "691", - "timestamp": "2025-11-27T01:21:53.282014602Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:01:51.745188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195186, - "rtt_ms": 1.195186, + "rtt_ns": 1386375, + "rtt_ms": 1.386375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:53.282016152Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:51.745341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136656, - "rtt_ms": 1.136656, + "rtt_ns": 1363541, + "rtt_ms": 1.363541, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.282026642Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:51.745365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292305, - "rtt_ms": 1.292305, + "rtt_ns": 1365333, + "rtt_ms": 1.365333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.282232791Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:51.745366-08:00" }, { "operation": "add_edge", - "rtt_ns": 949287, - "rtt_ms": 0.949287, + "rtt_ns": 1315250, + "rtt_ms": 1.31525, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.282903729Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.745372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847064, - "rtt_ms": 1.847064, + "rtt_ns": 1445917, + "rtt_ms": 1.445917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:53.282905419Z" + "vertex_to": "75", + "timestamp": "2025-11-27T04:01:51.745384-08:00" }, { "operation": "add_edge", - "rtt_ns": 988057, - "rtt_ms": 0.988057, + "rtt_ns": 1386625, + "rtt_ms": 1.386625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:53.282970609Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:51.745389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005387, - "rtt_ms": 1.005387, + "rtt_ns": 1453583, + "rtt_ms": 1.453583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:53.282972419Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.745401-08:00" }, { "operation": "add_edge", - "rtt_ns": 975437, - "rtt_ms": 0.975437, + "rtt_ns": 1435250, + "rtt_ms": 1.43525, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.282974319Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.745407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630364, - "rtt_ms": 1.630364, + "rtt_ns": 1374958, + "rtt_ms": 1.374958, "checkpoint": 0, "vertex_from": "64", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.283646756Z" + "timestamp": "2025-11-27T04:01:51.746548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645954, - "rtt_ms": 1.645954, + "rtt_ns": 1389958, + "rtt_ms": 1.389958, "checkpoint": 0, "vertex_from": "64", "vertex_to": "177", - "timestamp": "2025-11-27T01:21:53.283665296Z" + "timestamp": "2025-11-27T04:01:51.746579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665774, - "rtt_ms": 1.665774, + "rtt_ns": 1260875, + "rtt_ms": 1.260875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.283668196Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:51.746646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673964, - "rtt_ms": 1.673964, + "rtt_ns": 1366833, + "rtt_ms": 1.366833, "checkpoint": 0, "vertex_from": "64", "vertex_to": "458", - "timestamp": "2025-11-27T01:21:53.283702236Z" + "timestamp": "2025-11-27T04:01:51.746709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511015, - "rtt_ms": 1.511015, + "rtt_ns": 1322500, + "rtt_ms": 1.3225, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "182", - "timestamp": "2025-11-27T01:21:53.283745736Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:51.746712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586665, - "rtt_ms": 1.586665, + "rtt_ns": 1469208, + "rtt_ms": 1.469208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.284494044Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.746835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540915, - "rtt_ms": 1.540915, + "rtt_ns": 1555375, + "rtt_ms": 1.555375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.284516544Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:01:51.746921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660945, - "rtt_ms": 1.660945, + "rtt_ns": 1542833, + "rtt_ms": 1.542833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.284566044Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:51.746951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662414, - "rtt_ms": 1.662414, + "rtt_ns": 1553916, + "rtt_ms": 1.553916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:53.284635403Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.746956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779144, - "rtt_ms": 1.779144, + "rtt_ns": 1589167, + "rtt_ms": 1.589167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:53.284753533Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.746963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591225, - "rtt_ms": 1.591225, + "rtt_ns": 1148709, + "rtt_ms": 1.148709, "checkpoint": 0, "vertex_from": "64", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.285294911Z" + "timestamp": "2025-11-27T04:01:51.747796-08:00" }, { "operation": "add_edge", - "rtt_ns": 941477, - "rtt_ms": 0.941477, + "rtt_ns": 976458, + "rtt_ms": 0.976458, "checkpoint": 0, "vertex_from": "64", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.285460061Z" + "timestamp": "2025-11-27T04:01:51.747813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811255, - "rtt_ms": 1.811255, + "rtt_ns": 1386000, + "rtt_ms": 1.386, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.285480861Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:51.748096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836895, - "rtt_ms": 1.836895, + "rtt_ns": 1395916, + "rtt_ms": 1.395916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "716", - "timestamp": "2025-11-27T01:21:53.285485511Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:51.74811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820045, - "rtt_ms": 1.820045, + "rtt_ns": 1530375, + "rtt_ms": 1.530375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:53.285486741Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.748112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741755, - "rtt_ms": 1.741755, + "rtt_ns": 1584208, + "rtt_ms": 1.584208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:53.285490341Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:51.748133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941984, - "rtt_ms": 1.941984, + "rtt_ns": 1423792, + "rtt_ms": 1.423792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:53.286437978Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:51.748381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903213, - "rtt_ms": 1.903213, + "rtt_ns": 1476708, + "rtt_ms": 1.476708, "checkpoint": 0, "vertex_from": "64", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.286471437Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2626542, - "rtt_ms": 2.626542, - "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.287265925Z" + "timestamp": "2025-11-27T04:01:51.7484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2562802, - "rtt_ms": 2.562802, + "rtt_ns": 1451541, + "rtt_ms": 1.451541, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.287318185Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:51.748415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527032, - "rtt_ms": 2.527032, + "rtt_ns": 1651667, + "rtt_ms": 1.651667, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.287822943Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:51.748604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495932, - "rtt_ms": 2.495932, + "rtt_ns": 1284667, + "rtt_ms": 1.284667, "checkpoint": 0, "vertex_from": "64", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:53.287956993Z" + "timestamp": "2025-11-27T04:01:51.749082-08:00" }, { "operation": "add_edge", - "rtt_ns": 2530422, - "rtt_ms": 2.530422, + "rtt_ns": 1279458, + "rtt_ms": 1.279458, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.288017243Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:51.749093-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567531, - "rtt_ms": 2.567531, + "rtt_ns": 1452375, + "rtt_ms": 1.452375, "checkpoint": 0, "vertex_from": "64", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.288059342Z" + "timestamp": "2025-11-27T04:01:51.749565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627651, - "rtt_ms": 2.627651, + "rtt_ns": 1503209, + "rtt_ms": 1.503209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:53.288115582Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.7496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736434, - "rtt_ms": 1.736434, + "rtt_ns": 1533792, + "rtt_ms": 1.533792, "checkpoint": 0, "vertex_from": "64", "vertex_to": "657", - "timestamp": "2025-11-27T01:21:53.288175982Z" + "timestamp": "2025-11-27T04:01:51.749667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716285, - "rtt_ms": 1.716285, + "rtt_ns": 1621792, + "rtt_ms": 1.621792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:53.288194162Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:51.749732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2716661, - "rtt_ms": 2.716661, + "rtt_ns": 1360542, + "rtt_ms": 1.360542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.288198922Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:01:51.749761-08:00" }, { "operation": "add_edge", - "rtt_ns": 976407, - "rtt_ms": 0.976407, + "rtt_ns": 1398791, + "rtt_ms": 1.398791, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.288295752Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:51.749781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044937, - "rtt_ms": 1.044937, + "rtt_ns": 1386709, + "rtt_ms": 1.386709, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "409", - "timestamp": "2025-11-27T01:21:53.288312202Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.749803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145817, - "rtt_ms": 1.145817, + "rtt_ns": 1619500, + "rtt_ms": 1.6195, "checkpoint": 0, "vertex_from": "64", "vertex_to": "165", - "timestamp": "2025-11-27T01:21:53.28896996Z" + "timestamp": "2025-11-27T04:01:51.750224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137367, - "rtt_ms": 1.137367, + "rtt_ns": 1388500, + "rtt_ms": 1.3885, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:53.289254059Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:51.750483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195117, - "rtt_ms": 1.195117, + "rtt_ns": 1497792, + "rtt_ms": 1.497792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.289255859Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:51.750581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251506, - "rtt_ms": 1.251506, + "rtt_ns": 1723042, + "rtt_ms": 1.723042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:53.289270059Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:51.751327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175206, - "rtt_ms": 1.175206, + "rtt_ns": 1817541, + "rtt_ms": 1.817541, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:53.289352668Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.751383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710674, - "rtt_ms": 1.710674, + "rtt_ns": 1724375, + "rtt_ms": 1.724375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:53.289669177Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:51.751393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648455, - "rtt_ms": 1.648455, + "rtt_ns": 1630125, + "rtt_ms": 1.630125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:53.289844157Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:51.751412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645325, - "rtt_ms": 1.645325, + "rtt_ns": 1766250, + "rtt_ms": 1.76625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.289845627Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:51.7515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560555, - "rtt_ms": 1.560555, + "rtt_ns": 1753166, + "rtt_ms": 1.753166, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:53.289857657Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:51.751557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572125, - "rtt_ms": 1.572125, + "rtt_ns": 1908000, + "rtt_ms": 1.908, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.289885847Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:51.75167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257856, - "rtt_ms": 1.257856, + "rtt_ns": 2037167, + "rtt_ms": 2.037167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "922", - "timestamp": "2025-11-27T01:21:53.290530255Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:51.752262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227426, - "rtt_ms": 1.227426, + "rtt_ns": 1699791, + "rtt_ms": 1.699791, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:53.290581404Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.752283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369845, - "rtt_ms": 1.369845, + "rtt_ns": 1906584, + "rtt_ms": 1.906584, "checkpoint": 0, "vertex_from": "64", "vertex_to": "286", - "timestamp": "2025-11-27T01:21:53.290625074Z" + "timestamp": "2025-11-27T04:01:51.75239-08:00" }, { "operation": "add_edge", - "rtt_ns": 963447, - "rtt_ms": 0.963447, + "rtt_ns": 1206125, + "rtt_ms": 1.206125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "341", - "timestamp": "2025-11-27T01:21:53.290634844Z" + "timestamp": "2025-11-27T04:01:51.7526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679134, - "rtt_ms": 1.679134, + "rtt_ns": 1289125, + "rtt_ms": 1.289125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.290650824Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:01:51.752618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475715, - "rtt_ms": 1.475715, + "rtt_ns": 1249250, + "rtt_ms": 1.24925, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.290732994Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:01:51.752751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433995, - "rtt_ms": 1.433995, + "rtt_ns": 1483167, + "rtt_ms": 1.483167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "684", - "timestamp": "2025-11-27T01:21:53.291281532Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:51.752868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460785, - "rtt_ms": 1.460785, + "rtt_ns": 1472792, + "rtt_ms": 1.472792, "checkpoint": 0, "vertex_from": "64", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.291306932Z" + "timestamp": "2025-11-27T04:01:51.752885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449435, - "rtt_ms": 1.449435, + "rtt_ns": 1767292, + "rtt_ms": 1.767292, "checkpoint": 0, "vertex_from": "64", "vertex_to": "533", - "timestamp": "2025-11-27T01:21:53.291308152Z" + "timestamp": "2025-11-27T04:01:51.753326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459925, - "rtt_ms": 1.459925, + "rtt_ns": 1706750, + "rtt_ms": 1.70675, "checkpoint": 0, "vertex_from": "64", "vertex_to": "163", - "timestamp": "2025-11-27T01:21:53.291347292Z" + "timestamp": "2025-11-27T04:01:51.753378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018687, - "rtt_ms": 1.018687, + "rtt_ns": 1539292, + "rtt_ms": 1.539292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:53.291602041Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:51.753803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172477, - "rtt_ms": 1.172477, + "rtt_ns": 1220042, + "rtt_ms": 1.220042, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:53.291798841Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:01:51.753821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204046, - "rtt_ms": 1.204046, + "rtt_ns": 1755209, + "rtt_ms": 1.755209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "188", - "timestamp": "2025-11-27T01:21:53.29184062Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:51.754039-08:00" }, { "operation": "add_edge", - "rtt_ns": 755588, - "rtt_ms": 0.755588, + "rtt_ns": 1665541, + "rtt_ms": 1.665541, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:53.292359229Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:51.754057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102587, - "rtt_ms": 1.102587, + "rtt_ns": 1576292, + "rtt_ms": 1.576292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.292386099Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:51.754195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079237, - "rtt_ms": 1.079237, + "rtt_ns": 1325333, + "rtt_ms": 1.325333, "checkpoint": 0, "vertex_from": "64", "vertex_to": "77", - "timestamp": "2025-11-27T01:21:53.292387579Z" + "timestamp": "2025-11-27T04:01:51.754211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864174, - "rtt_ms": 1.864174, + "rtt_ns": 1357500, + "rtt_ms": 1.3575, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.292598458Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:51.754226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305806, - "rtt_ms": 1.305806, + "rtt_ns": 959583, + "rtt_ms": 0.959583, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.292616028Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:51.754339-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087523, - "rtt_ms": 2.087523, + "rtt_ns": 1613209, + "rtt_ms": 1.613209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "565", - "timestamp": "2025-11-27T01:21:53.292619638Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:51.754365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276716, - "rtt_ms": 1.276716, + "rtt_ns": 1335167, + "rtt_ms": 1.335167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.292626268Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:51.754662-08:00" }, { "operation": "add_edge", - "rtt_ns": 2446052, - "rtt_ms": 2.446052, + "rtt_ns": 1460083, + "rtt_ms": 1.460083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:53.293098376Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:51.755266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432175, - "rtt_ms": 1.432175, + "rtt_ns": 1055250, + "rtt_ms": 1.05525, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.293232726Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:51.755282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065366, - "rtt_ms": 1.065366, + "rtt_ns": 1085834, + "rtt_ms": 1.085834, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:53.293665254Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:51.755298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084196, - "rtt_ms": 1.084196, + "rtt_ns": 1300167, + "rtt_ms": 1.300167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:53.293701584Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:01:51.755496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926044, - "rtt_ms": 1.926044, + "rtt_ns": 1263833, + "rtt_ms": 1.263833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.293768274Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:51.755636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437995, - "rtt_ms": 1.437995, + "rtt_ns": 1823125, + "rtt_ms": 1.823125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:53.293828544Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.755645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312625, - "rtt_ms": 1.312625, + "rtt_ns": 1602541, + "rtt_ms": 1.602541, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.293940983Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:51.75566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553814, - "rtt_ms": 1.553814, + "rtt_ns": 1636250, + "rtt_ms": 1.63625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "849", - "timestamp": "2025-11-27T01:21:53.293942013Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:51.755676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324075, - "rtt_ms": 1.324075, + "rtt_ns": 1309875, + "rtt_ms": 1.309875, "checkpoint": 0, "vertex_from": "64", "vertex_to": "675", - "timestamp": "2025-11-27T01:21:53.293945353Z" + "timestamp": "2025-11-27T04:01:51.755694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609564, - "rtt_ms": 1.609564, + "rtt_ns": 1359625, + "rtt_ms": 1.359625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:53.293970083Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.756023-08:00" }, { "operation": "add_edge", - "rtt_ns": 895827, - "rtt_ms": 0.895827, + "rtt_ns": 1330625, + "rtt_ms": 1.330625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "302", - "timestamp": "2025-11-27T01:21:53.293995573Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.756827-08:00" }, { "operation": "add_edge", - "rtt_ns": 776677, - "rtt_ms": 0.776677, + "rtt_ns": 1761791, + "rtt_ms": 1.761791, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "737", - "timestamp": "2025-11-27T01:21:53.294011443Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:51.75706-08:00" }, { "operation": "add_edge", - "rtt_ns": 581518, - "rtt_ms": 0.581518, + "rtt_ns": 1544000, + "rtt_ms": 1.544, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.294284192Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:01:51.756827-08:00" }, { "operation": "add_edge", - "rtt_ns": 678618, - "rtt_ms": 0.678618, + "rtt_ns": 1434416, + "rtt_ms": 1.434416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:53.294345292Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:51.757095-08:00" }, { "operation": "add_edge", - "rtt_ns": 719278, - "rtt_ms": 0.719278, + "rtt_ns": 1419792, + "rtt_ms": 1.419792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:53.294488602Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:51.757116-08:00" }, { "operation": "add_edge", - "rtt_ns": 758167, - "rtt_ms": 0.758167, + "rtt_ns": 1849791, + "rtt_ms": 1.849791, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:53.294588031Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:01:51.757117-08:00" }, { "operation": "add_edge", - "rtt_ns": 662718, - "rtt_ms": 0.662718, + "rtt_ns": 1486917, + "rtt_ms": 1.486917, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:53.294609291Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:51.757125-08:00" }, { "operation": "add_edge", - "rtt_ns": 711408, - "rtt_ms": 0.711408, + "rtt_ns": 1589291, + "rtt_ms": 1.589291, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:53.294653361Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:51.757235-08:00" }, { "operation": "add_vertex", - "rtt_ns": 774008, - "rtt_ms": 0.774008, + "rtt_ns": 1679208, + "rtt_ms": 1.679208, "checkpoint": 0, "vertex_from": "972", - "timestamp": "2025-11-27T01:21:53.294718111Z" + "timestamp": "2025-11-27T04:01:51.757356-08:00" }, { "operation": "add_edge", - "rtt_ns": 713978, - "rtt_ms": 0.713978, + "rtt_ns": 1098584, + "rtt_ms": 1.098584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:53.295628608Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:51.758215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154666, - "rtt_ms": 1.154666, + "rtt_ns": 1116542, + "rtt_ms": 1.116542, "checkpoint": 0, "vertex_from": "64", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.296137876Z" + "timestamp": "2025-11-27T04:01:51.758234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351726, - "rtt_ms": 1.351726, + "rtt_ns": 1271125, + "rtt_ms": 1.271125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.296312856Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:51.7584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704484, - "rtt_ms": 1.704484, + "rtt_ns": 1359209, + "rtt_ms": 1.359209, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:53.296650264Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:51.758418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815964, - "rtt_ms": 1.815964, + "rtt_ns": 1537625, + "rtt_ms": 1.537625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "972", - "timestamp": "2025-11-27T01:21:53.296827014Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:51.75861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941524, - "rtt_ms": 1.941524, + "rtt_ns": 1564083, + "rtt_ms": 1.564083, "checkpoint": 0, "vertex_from": "64", "vertex_to": "245", - "timestamp": "2025-11-27T01:21:53.296872714Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1908814, - "rtt_ms": 1.908814, - "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:53.296884424Z" + "timestamp": "2025-11-27T04:01:51.758625-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030594, - "rtt_ms": 2.030594, + "rtt_ns": 1478834, + "rtt_ms": 1.478834, "checkpoint": 0, "vertex_from": "64", "vertex_to": "900", - "timestamp": "2025-11-27T01:21:53.296938884Z" + "timestamp": "2025-11-27T04:01:51.758627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687744, - "rtt_ms": 1.687744, + "rtt_ns": 1389959, + "rtt_ms": 1.389959, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:53.297318592Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.758627-08:00" }, { "operation": "add_edge", - "rtt_ns": 2801491, - "rtt_ms": 2.801491, + "rtt_ns": 1642709, + "rtt_ms": 1.642709, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.297807721Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:51.758738-08:00" }, { "operation": "add_edge", - "rtt_ns": 2895571, - "rtt_ms": 2.895571, + "rtt_ns": 1425958, + "rtt_ms": 1.425958, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:53.297892141Z" + "vertex_to": "972", + "timestamp": "2025-11-27T04:01:51.758783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800184, - "rtt_ms": 1.800184, + "rtt_ns": 1290417, + "rtt_ms": 1.290417, "checkpoint": 0, "vertex_from": "64", "vertex_to": "910", - "timestamp": "2025-11-27T01:21:53.29794014Z" + "timestamp": "2025-11-27T04:01:51.759525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695714, - "rtt_ms": 1.695714, + "rtt_ns": 1187042, + "rtt_ms": 1.187042, "checkpoint": 0, "vertex_from": "64", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.29800959Z" + "timestamp": "2025-11-27T04:01:51.759588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400336, - "rtt_ms": 1.400336, + "rtt_ns": 1506000, + "rtt_ms": 1.506, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:53.29805194Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:51.759721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237626, - "rtt_ms": 1.237626, + "rtt_ns": 1320000, + "rtt_ms": 1.32, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "781", - "timestamp": "2025-11-27T01:21:53.29806668Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:51.759739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248826, - "rtt_ms": 1.248826, + "rtt_ns": 1132125, + "rtt_ms": 1.132125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.29818869Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:01:51.759916-08:00" }, { "operation": "add_edge", - "rtt_ns": 936777, - "rtt_ms": 0.936777, + "rtt_ns": 1308666, + "rtt_ms": 1.308666, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:53.298256809Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:51.759934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403955, - "rtt_ms": 1.403955, + "rtt_ns": 1475167, + "rtt_ms": 1.475167, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "572", - "timestamp": "2025-11-27T01:21:53.298277879Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:51.760086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424715, - "rtt_ms": 1.424715, + "rtt_ns": 1710750, + "rtt_ms": 1.71075, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:53.298310569Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.760339-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 677547, - "rtt_ms": 0.677547, + "operation": "add_edge", + "rtt_ns": 1775708, + "rtt_ms": 1.775708, "checkpoint": 0, - "vertex_from": "555", - "timestamp": "2025-11-27T01:21:53.298571928Z" + "vertex_from": "64", + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:51.760515-08:00" }, { "operation": "add_edge", - "rtt_ns": 875047, - "rtt_ms": 0.875047, + "rtt_ns": 1986708, + "rtt_ms": 1.986708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "738", - "timestamp": "2025-11-27T01:21:53.298684118Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:51.760614-08:00" }, { "operation": "add_edge", - "rtt_ns": 709288, - "rtt_ms": 0.709288, + "rtt_ns": 1527584, + "rtt_ms": 1.527584, "checkpoint": 0, "vertex_from": "64", "vertex_to": "233", - "timestamp": "2025-11-27T01:21:53.298720108Z" + "timestamp": "2025-11-27T04:01:51.76125-08:00" }, { "operation": "add_edge", - "rtt_ns": 803028, - "rtt_ms": 0.803028, + "rtt_ns": 1353750, + "rtt_ms": 1.35375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.298744248Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:01:51.76127-08:00" }, { "operation": "add_edge", - "rtt_ns": 722228, - "rtt_ms": 0.722228, + "rtt_ns": 1349834, + "rtt_ms": 1.349834, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:53.298775378Z" + "vertex_to": "83", + "timestamp": "2025-11-27T04:01:51.761285-08:00" }, { "operation": "add_edge", - "rtt_ns": 722098, - "rtt_ms": 0.722098, + "rtt_ns": 1567041, + "rtt_ms": 1.567041, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "101", - "timestamp": "2025-11-27T01:21:53.298790778Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:51.761306-08:00" }, { "operation": "add_edge", - "rtt_ns": 636528, - "rtt_ms": 0.636528, + "rtt_ns": 1234834, + "rtt_ms": 1.234834, "checkpoint": 0, "vertex_from": "64", "vertex_to": "404", - "timestamp": "2025-11-27T01:21:53.298894587Z" + "timestamp": "2025-11-27T04:01:51.761321-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1810417, + "rtt_ms": 1.810417, + "checkpoint": 0, + "vertex_from": "555", + "timestamp": "2025-11-27T04:01:51.761339-08:00" }, { "operation": "add_edge", - "rtt_ns": 739387, - "rtt_ms": 0.739387, + "rtt_ns": 1863916, + "rtt_ms": 1.863916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "83", - "timestamp": "2025-11-27T01:21:53.298929497Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.761453-08:00" }, { "operation": "add_edge", - "rtt_ns": 664408, - "rtt_ms": 0.664408, + "rtt_ns": 1228250, + "rtt_ms": 1.22825, "checkpoint": 0, "vertex_from": "64", "vertex_to": "270", - "timestamp": "2025-11-27T01:21:53.298947137Z" + "timestamp": "2025-11-27T04:01:51.761568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120907, - "rtt_ms": 1.120907, + "rtt_ns": 1182709, + "rtt_ms": 1.182709, "checkpoint": 0, "vertex_from": "64", "vertex_to": "368", - "timestamp": "2025-11-27T01:21:53.299433506Z" + "timestamp": "2025-11-27T04:01:51.7617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719005, - "rtt_ms": 1.719005, + "rtt_ns": 1218666, + "rtt_ms": 1.218666, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "555", - "timestamp": "2025-11-27T01:21:53.300291403Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1573495, - "rtt_ms": 1.573495, - "checkpoint": 0, - "vertex_from": "839", - "timestamp": "2025-11-27T01:21:53.300296943Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:01:51.761835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568735, - "rtt_ms": 1.568735, + "rtt_ns": 1078334, + "rtt_ms": 1.078334, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:53.300314083Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.762647-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1453406, - "rtt_ms": 1.453406, + "operation": "add_edge", + "rtt_ns": 1982958, + "rtt_ms": 1.982958, "checkpoint": 0, - "vertex_from": "539", - "timestamp": "2025-11-27T01:21:53.300349753Z" + "vertex_from": "64", + "vertex_to": "555", + "timestamp": "2025-11-27T04:01:51.763322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658974, - "rtt_ms": 1.658974, + "rtt_ns": 2036334, + "rtt_ms": 2.036334, "checkpoint": 0, "vertex_from": "64", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.300451352Z" + "timestamp": "2025-11-27T04:01:51.763344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625025, - "rtt_ms": 1.625025, + "rtt_ns": 2073750, + "rtt_ms": 2.07375, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.300556792Z" + "vertex_to": "89", + "timestamp": "2025-11-27T04:01:51.763359-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1892754, - "rtt_ms": 1.892754, + "operation": "add_vertex", + "rtt_ns": 2110042, + "rtt_ms": 2.110042, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "718", - "timestamp": "2025-11-27T01:21:53.300578922Z" + "vertex_from": "839", + "timestamp": "2025-11-27T04:01:51.763361-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2039167, + "rtt_ms": 2.039167, + "checkpoint": 0, + "vertex_from": "539", + "timestamp": "2025-11-27T04:01:51.763363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802184, - "rtt_ms": 1.802184, + "rtt_ns": 1533083, + "rtt_ms": 1.533083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "89", - "timestamp": "2025-11-27T01:21:53.300578732Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.763371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394095, - "rtt_ms": 1.394095, + "rtt_ns": 1677042, + "rtt_ms": 1.677042, "checkpoint": 0, "vertex_from": "64", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.300836841Z" + "timestamp": "2025-11-27T04:01:51.763378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908254, - "rtt_ms": 1.908254, + "rtt_ns": 2119000, + "rtt_ms": 2.119, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.300857141Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:51.76339-08:00" }, { "operation": "add_edge", - "rtt_ns": 781477, - "rtt_ms": 0.781477, + "rtt_ns": 1943542, + "rtt_ms": 1.943542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.30107536Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:51.763397-08:00" }, { "operation": "add_edge", - "rtt_ns": 911127, - "rtt_ms": 0.911127, + "rtt_ns": 1579250, + "rtt_ms": 1.57925, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "839", - "timestamp": "2025-11-27T01:21:53.30120873Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:51.764227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258135, - "rtt_ms": 1.258135, + "rtt_ns": 1335250, + "rtt_ms": 1.33525, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "539", - "timestamp": "2025-11-27T01:21:53.301608418Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:51.764707-08:00" }, { "operation": "add_edge", - "rtt_ns": 830017, - "rtt_ms": 0.830017, + "rtt_ns": 1320041, + "rtt_ms": 1.320041, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "752", - "timestamp": "2025-11-27T01:21:53.301669358Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:51.76472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390605, - "rtt_ms": 1.390605, + "rtt_ns": 1377500, + "rtt_ms": 1.3775, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:53.301707088Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:51.764756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293966, - "rtt_ms": 1.293966, + "rtt_ns": 1536250, + "rtt_ms": 1.53625, "checkpoint": 0, "vertex_from": "64", "vertex_to": "992", - "timestamp": "2025-11-27T01:21:53.301747318Z" + "timestamp": "2025-11-27T04:01:51.76486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239626, - "rtt_ms": 1.239626, + "rtt_ns": 1658292, + "rtt_ms": 1.658292, "checkpoint": 0, "vertex_from": "64", "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.301798258Z" + "timestamp": "2025-11-27T04:01:51.765003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224256, - "rtt_ms": 1.224256, + "rtt_ns": 1661625, + "rtt_ms": 1.661625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:53.301806938Z" + "vertex_to": "839", + "timestamp": "2025-11-27T04:01:51.765023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433025, - "rtt_ms": 1.433025, + "rtt_ns": 1645459, + "rtt_ms": 1.645459, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "248", - "timestamp": "2025-11-27T01:21:53.302014057Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:51.765036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500085, - "rtt_ms": 1.500085, + "rtt_ns": 1695875, + "rtt_ms": 1.695875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:53.302577405Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:01:51.76506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720894, - "rtt_ms": 1.720894, + "rtt_ns": 1768750, + "rtt_ms": 1.76875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.302580455Z" + "vertex_to": "248", + "timestamp": "2025-11-27T04:01:51.765132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440995, - "rtt_ms": 1.440995, + "rtt_ns": 1524791, + "rtt_ms": 1.524791, "checkpoint": 0, "vertex_from": "64", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.302651165Z" + "timestamp": "2025-11-27T04:01:51.765753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075606, - "rtt_ms": 1.075606, + "rtt_ns": 1632125, + "rtt_ms": 1.632125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "327", - "timestamp": "2025-11-27T01:21:53.302825444Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:51.76634-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1619584, + "rtt_ms": 1.619584, + "checkpoint": 0, + "vertex_from": "64", + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:51.76634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318116, - "rtt_ms": 1.318116, + "rtt_ns": 1653125, + "rtt_ms": 1.653125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "703", - "timestamp": "2025-11-27T01:21:53.303027564Z" + "timestamp": "2025-11-27T04:01:51.76641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323335, - "rtt_ms": 1.323335, + "rtt_ns": 1387667, + "rtt_ms": 1.387667, "checkpoint": 0, "vertex_from": "64", "vertex_to": "432", - "timestamp": "2025-11-27T01:21:53.303132423Z" + "timestamp": "2025-11-27T04:01:51.766411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539175, - "rtt_ms": 1.539175, + "rtt_ns": 1291125, + "rtt_ms": 1.291125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:53.303148723Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:51.766425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912154, - "rtt_ms": 1.912154, + "rtt_ns": 1651834, + "rtt_ms": 1.651834, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:53.303583172Z" + "vertex_to": "327", + "timestamp": "2025-11-27T04:01:51.766512-08:00" }, { "operation": "add_edge", - "rtt_ns": 952147, - "rtt_ms": 0.952147, + "rtt_ns": 1642750, + "rtt_ms": 1.64275, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:53.303778611Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:51.766646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221296, - "rtt_ms": 1.221296, + "rtt_ns": 1613584, + "rtt_ms": 1.613584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:53.303803631Z" + "vertex_to": "890", + "timestamp": "2025-11-27T04:01:51.766674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789164, - "rtt_ms": 1.789164, + "rtt_ns": 1797500, + "rtt_ms": 1.7975, "checkpoint": 0, "vertex_from": "64", "vertex_to": "398", - "timestamp": "2025-11-27T01:21:53.303805161Z" + "timestamp": "2025-11-27T04:01:51.766836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218376, - "rtt_ms": 1.218376, + "rtt_ns": 1158625, + "rtt_ms": 1.158625, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:53.303871641Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:51.76757-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083323, - "rtt_ms": 2.083323, + "rtt_ns": 1817084, + "rtt_ms": 1.817084, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:53.303883321Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:51.767572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343166, - "rtt_ms": 1.343166, + "rtt_ns": 1365792, + "rtt_ms": 1.365792, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "890", - "timestamp": "2025-11-27T01:21:53.303922441Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:51.767793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054536, - "rtt_ms": 1.054536, + "rtt_ns": 1522333, + "rtt_ms": 1.522333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:53.30408345Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:51.767865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591245, - "rtt_ms": 1.591245, + "rtt_ns": 1540916, + "rtt_ms": 1.540916, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:53.304725908Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:51.767883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593045, - "rtt_ms": 1.593045, + "rtt_ns": 1627042, + "rtt_ms": 1.627042, "checkpoint": 0, "vertex_from": "64", "vertex_to": "228", - "timestamp": "2025-11-27T01:21:53.304743568Z" + "timestamp": "2025-11-27T04:01:51.76804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185096, - "rtt_ms": 1.185096, + "rtt_ns": 1551208, + "rtt_ms": 1.551208, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:53.304770218Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:51.768065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295276, - "rtt_ms": 1.295276, + "rtt_ns": 1389458, + "rtt_ms": 1.389458, "checkpoint": 0, "vertex_from": "64", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.305102157Z" + "timestamp": "2025-11-27T04:01:51.768065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874374, - "rtt_ms": 1.874374, + "rtt_ns": 1228708, + "rtt_ms": 1.228708, "checkpoint": 0, "vertex_from": "64", "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.305748545Z" + "timestamp": "2025-11-27T04:01:51.768066-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036464, - "rtt_ms": 2.036464, + "rtt_ns": 1431000, + "rtt_ms": 1.431, "checkpoint": 0, "vertex_from": "64", "vertex_to": "590", - "timestamp": "2025-11-27T01:21:53.305841825Z" + "timestamp": "2025-11-27T04:01:51.768078-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1955574, - "rtt_ms": 1.955574, + "rtt_ns": 1255167, + "rtt_ms": 1.255167, "checkpoint": 0, "vertex_from": "125", - "timestamp": "2025-11-27T01:21:53.305843695Z" + "timestamp": "2025-11-27T04:01:51.768828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178983, - "rtt_ms": 2.178983, + "rtt_ns": 1197333, + "rtt_ms": 1.197333, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:53.305958884Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:51.769063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1935464, - "rtt_ms": 1.935464, + "rtt_ns": 1510125, + "rtt_ms": 1.510125, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:53.306020764Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:51.769084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151973, - "rtt_ms": 2.151973, + "rtt_ns": 1252875, + "rtt_ms": 1.252875, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:53.306076174Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:51.769294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055374, - "rtt_ms": 2.055374, + "rtt_ns": 1521584, + "rtt_ms": 1.521584, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:53.306782772Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:51.769315-08:00" }, { "operation": "add_edge", - "rtt_ns": 2154133, - "rtt_ms": 2.154133, + "rtt_ns": 1447250, + "rtt_ms": 1.44725, "checkpoint": 0, "vertex_from": "64", "vertex_to": "880", - "timestamp": "2025-11-27T01:21:53.306899641Z" + "timestamp": "2025-11-27T04:01:51.769331-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207613, - "rtt_ms": 2.207613, + "rtt_ns": 1280542, + "rtt_ms": 1.280542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.306979741Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:01:51.769349-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146903, - "rtt_ms": 2.146903, + "rtt_ns": 1298209, + "rtt_ms": 1.298209, "checkpoint": 0, "vertex_from": "64", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.30725082Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1540535, - "rtt_ms": 1.540535, - "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:53.30729038Z" + "timestamp": "2025-11-27T04:01:51.769364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549315, - "rtt_ms": 1.549315, + "rtt_ns": 1297416, + "rtt_ms": 1.297416, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "125", - "timestamp": "2025-11-27T01:21:53.30739347Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:51.769379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586035, - "rtt_ms": 1.586035, + "rtt_ns": 1451166, + "rtt_ms": 1.451166, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "121", - "timestamp": "2025-11-27T01:21:53.30742974Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1438065, - "rtt_ms": 1.438065, - "checkpoint": 0, - "vertex_from": "862", - "timestamp": "2025-11-27T01:21:53.307461019Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:51.769518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530685, - "rtt_ms": 1.530685, + "rtt_ns": 1563709, + "rtt_ms": 1.563709, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:53.307490989Z" + "vertex_to": "125", + "timestamp": "2025-11-27T04:01:51.770392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452665, - "rtt_ms": 1.452665, + "rtt_ns": 1325375, + "rtt_ms": 1.325375, "checkpoint": 0, "vertex_from": "64", "vertex_to": "876", - "timestamp": "2025-11-27T01:21:53.307531389Z" + "timestamp": "2025-11-27T04:01:51.77041-08:00" }, { - "operation": "add_edge", - "rtt_ns": 985726, - "rtt_ms": 0.985726, + "operation": "add_vertex", + "rtt_ns": 1362625, + "rtt_ms": 1.362625, "checkpoint": 0, - "vertex_from": "64", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:53.307769768Z" + "vertex_from": "862", + "timestamp": "2025-11-27T04:01:51.770427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242906, - "rtt_ms": 1.242906, + "rtt_ns": 1498125, + "rtt_ms": 1.498125, "checkpoint": 0, "vertex_from": "64", "vertex_to": "359", - "timestamp": "2025-11-27T01:21:53.308223937Z" + "timestamp": "2025-11-27T04:01:51.77083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123597, - "rtt_ms": 1.123597, + "rtt_ns": 1485542, + "rtt_ms": 1.485542, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:53.308375507Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:01:51.77085-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1497415, - "rtt_ms": 1.497415, + "rtt_ns": 1548792, + "rtt_ms": 1.548792, "checkpoint": 0, "vertex_from": "686", - "timestamp": "2025-11-27T01:21:53.308400576Z" + "timestamp": "2025-11-27T04:01:51.770867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103106, - "rtt_ms": 1.103106, + "rtt_ns": 1754708, + "rtt_ms": 1.754708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "485", - "timestamp": "2025-11-27T01:21:53.308534156Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:51.771049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242736, - "rtt_ms": 1.242736, + "rtt_ns": 1744000, + "rtt_ms": 1.744, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "820", - "timestamp": "2025-11-27T01:21:53.308534506Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:51.771094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141576, - "rtt_ms": 1.141576, + "rtt_ns": 1728334, + "rtt_ms": 1.728334, "checkpoint": 0, "vertex_from": "64", "vertex_to": "418", - "timestamp": "2025-11-27T01:21:53.308537176Z" + "timestamp": "2025-11-27T04:01:51.771108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034727, - "rtt_ms": 1.034727, + "rtt_ns": 1837250, + "rtt_ms": 1.83725, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.308566996Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:51.771356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179997, - "rtt_ms": 1.179997, + "rtt_ns": 1392292, + "rtt_ms": 1.392292, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:53.308672486Z" + "vertex_to": "862", + "timestamp": "2025-11-27T04:01:51.77182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787925, - "rtt_ms": 1.787925, + "rtt_ns": 1426083, + "rtt_ms": 1.426083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "862", - "timestamp": "2025-11-27T01:21:53.309249274Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.771837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578125, - "rtt_ms": 1.578125, + "rtt_ns": 1645833, + "rtt_ms": 1.645833, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:53.309348873Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:51.772039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457775, - "rtt_ms": 1.457775, + "rtt_ns": 1483083, + "rtt_ms": 1.483083, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "573", - "timestamp": "2025-11-27T01:21:53.309683062Z" + "vertex_to": "686", + "timestamp": "2025-11-27T04:01:51.77235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353286, - "rtt_ms": 1.353286, + "rtt_ns": 1550584, + "rtt_ms": 1.550584, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:53.309921052Z" + "vertex_from": "64", + "vertex_to": "573", + "timestamp": "2025-11-27T04:01:51.772402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556686, - "rtt_ms": 1.556686, + "rtt_ns": 1677708, + "rtt_ms": 1.677708, "checkpoint": 0, "vertex_from": "64", - "vertex_to": "686", - "timestamp": "2025-11-27T01:21:53.309957852Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:51.772509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444815, - "rtt_ms": 1.444815, + "rtt_ns": 1532417, + "rtt_ms": 1.532417, "checkpoint": 0, "vertex_from": "65", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.309980431Z" + "timestamp": "2025-11-27T04:01:51.772628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606804, - "rtt_ms": 1.606804, + "rtt_ns": 1592250, + "rtt_ms": 1.59225, "checkpoint": 0, "vertex_from": "64", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:53.309984021Z" + "timestamp": "2025-11-27T04:01:51.772644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458475, - "rtt_ms": 1.458475, + "rtt_ns": 1321208, + "rtt_ms": 1.321208, "checkpoint": 0, "vertex_from": "65", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.309996941Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1331965, - "rtt_ms": 1.331965, - "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:53.310005541Z" + "timestamp": "2025-11-27T04:01:51.77268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222996, - "rtt_ms": 1.222996, + "rtt_ns": 1586750, + "rtt_ms": 1.58675, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:53.31047451Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:51.772696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217207, - "rtt_ms": 1.217207, + "rtt_ns": 1695208, + "rtt_ms": 1.695208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.31056748Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:51.773516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079353, - "rtt_ms": 2.079353, + "rtt_ns": 1492500, + "rtt_ms": 1.4925, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:53.310616009Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:51.773533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052327, - "rtt_ms": 1.052327, + "rtt_ns": 1025000, + "rtt_ms": 1.025, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.310737669Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.773535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389736, - "rtt_ms": 1.389736, + "rtt_ns": 1711417, + "rtt_ms": 1.711417, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.311376157Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:51.773549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418796, - "rtt_ms": 1.418796, + "rtt_ns": 1171959, + "rtt_ms": 1.171959, "checkpoint": 0, "vertex_from": "65", "vertex_to": "610", - "timestamp": "2025-11-27T01:21:53.311400377Z" + "timestamp": "2025-11-27T04:01:51.773817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397706, - "rtt_ms": 1.397706, + "rtt_ns": 1441292, + "rtt_ms": 1.441292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "686", - "timestamp": "2025-11-27T01:21:53.311403887Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.773844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531965, - "rtt_ms": 1.531965, + "rtt_ns": 1156583, + "rtt_ms": 1.156583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.311453707Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:51.773853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619144, - "rtt_ms": 1.619144, + "rtt_ns": 1528458, + "rtt_ms": 1.528458, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.311577786Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.77388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232906, - "rtt_ms": 1.232906, + "rtt_ns": 1292416, + "rtt_ms": 1.292416, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:53.311709976Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.773973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731145, - "rtt_ms": 1.731145, + "rtt_ns": 1466875, + "rtt_ms": 1.466875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:53.311729266Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.774096-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2192023, - "rtt_ms": 2.192023, + "rtt_ns": 1614375, + "rtt_ms": 1.614375, "checkpoint": 0, "vertex_from": "500", - "timestamp": "2025-11-27T01:21:53.312810852Z" + "timestamp": "2025-11-27T04:01:51.775165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2244502, - "rtt_ms": 2.244502, + "rtt_ns": 1299292, + "rtt_ms": 1.299292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:53.312813032Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:51.775182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479395, - "rtt_ms": 1.479395, + "rtt_ns": 1771500, + "rtt_ms": 1.7715, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.312882232Z" + "vertex_to": "686", + "timestamp": "2025-11-27T04:01:51.775289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540705, - "rtt_ms": 1.540705, + "rtt_ns": 1994333, + "rtt_ms": 1.994333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:53.312919852Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:51.77553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566955, - "rtt_ms": 1.566955, + "rtt_ns": 1918375, + "rtt_ms": 1.918375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.312971992Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:51.775736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077103, - "rtt_ms": 2.077103, + "rtt_ns": 1910459, + "rtt_ms": 1.910459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "66", - "timestamp": "2025-11-27T01:21:53.31353281Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:51.775755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2904480, - "rtt_ms": 2.90448, + "rtt_ns": 1808542, + "rtt_ms": 1.808542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:53.313643209Z" + "vertex_to": "66", + "timestamp": "2025-11-27T04:01:51.775782-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163843, - "rtt_ms": 2.163843, + "rtt_ns": 2418833, + "rtt_ms": 2.418833, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:53.313876939Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:51.775955-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174703, - "rtt_ms": 2.174703, + "rtt_ns": 1923000, + "rtt_ms": 1.923, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.313905319Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.77602-08:00" }, { "operation": "add_edge", - "rtt_ns": 2342393, - "rtt_ms": 2.342393, + "rtt_ns": 2410167, + "rtt_ms": 2.410167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.313921699Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.776264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390566, - "rtt_ms": 1.390566, + "rtt_ns": 1460083, + "rtt_ms": 1.460083, "checkpoint": 0, "vertex_from": "65", "vertex_to": "500", - "timestamp": "2025-11-27T01:21:53.314201988Z" + "timestamp": "2025-11-27T04:01:51.776625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486315, - "rtt_ms": 1.486315, + "rtt_ns": 1452459, + "rtt_ms": 1.452459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.314301837Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.776742-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1578291, + "rtt_ms": 1.578291, + "checkpoint": 0, + "vertex_from": "65", + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:51.776761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430885, - "rtt_ms": 1.430885, + "rtt_ns": 1205917, + "rtt_ms": 1.205917, "checkpoint": 0, "vertex_from": "65", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.314315517Z" + "timestamp": "2025-11-27T04:01:51.776943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413125, - "rtt_ms": 1.413125, + "rtt_ns": 1429417, + "rtt_ms": 1.429417, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.314334177Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.77696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439195, - "rtt_ms": 1.439195, + "rtt_ns": 1335500, + "rtt_ms": 1.3355, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "485", - "timestamp": "2025-11-27T01:21:53.314412427Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.777091-08:00" }, { "operation": "add_edge", - "rtt_ns": 921317, - "rtt_ms": 0.921317, + "rtt_ns": 1324250, + "rtt_ms": 1.32425, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.314456247Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:51.777107-08:00" }, { "operation": "add_edge", - "rtt_ns": 820468, - "rtt_ms": 0.820468, + "rtt_ns": 1172000, + "rtt_ms": 1.172, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:53.314465287Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.77713-08:00" }, { "operation": "add_edge", - "rtt_ns": 803877, - "rtt_ms": 0.803877, + "rtt_ns": 1032000, + "rtt_ms": 1.032, "checkpoint": 0, "vertex_from": "65", "vertex_to": "93", - "timestamp": "2025-11-27T01:21:53.314682156Z" + "timestamp": "2025-11-27T04:01:51.777298-08:00" }, { "operation": "add_edge", - "rtt_ns": 835457, - "rtt_ms": 0.835457, + "rtt_ns": 1456000, + "rtt_ms": 1.456, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.314759596Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:51.777477-08:00" }, { "operation": "add_edge", - "rtt_ns": 875727, - "rtt_ms": 0.875727, + "rtt_ns": 1062834, + "rtt_ms": 1.062834, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.314782286Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:51.778006-08:00" }, { "operation": "add_edge", - "rtt_ns": 606648, - "rtt_ms": 0.606648, + "rtt_ns": 1506250, + "rtt_ms": 1.50625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.314810346Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.778133-08:00" }, { "operation": "add_edge", - "rtt_ns": 674008, - "rtt_ms": 0.674008, + "rtt_ns": 1454583, + "rtt_ms": 1.454583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:53.315010445Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:51.778198-08:00" }, { "operation": "add_edge", - "rtt_ns": 760898, - "rtt_ms": 0.760898, + "rtt_ns": 1280333, + "rtt_ms": 1.280333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:53.315064985Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:51.778241-08:00" }, { "operation": "add_edge", - "rtt_ns": 834337, - "rtt_ms": 0.834337, + "rtt_ns": 1647542, + "rtt_ms": 1.647542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:53.315151264Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:51.778409-08:00" }, { "operation": "add_edge", - "rtt_ns": 796367, - "rtt_ms": 0.796367, + "rtt_ns": 1303292, + "rtt_ms": 1.303292, "checkpoint": 0, "vertex_from": "65", "vertex_to": "569", - "timestamp": "2025-11-27T01:21:53.315213004Z" + "timestamp": "2025-11-27T04:01:51.778411-08:00" }, { "operation": "add_edge", - "rtt_ns": 778447, - "rtt_ms": 0.778447, + "rtt_ns": 1289875, + "rtt_ms": 1.289875, "checkpoint": 0, "vertex_from": "65", "vertex_to": "466", - "timestamp": "2025-11-27T01:21:53.315236654Z" + "timestamp": "2025-11-27T04:01:51.77842-08:00" }, { "operation": "add_edge", - "rtt_ns": 559278, - "rtt_ms": 0.559278, + "rtt_ns": 1337208, + "rtt_ms": 1.337208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.315320064Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:51.778428-08:00" }, { "operation": "add_edge", - "rtt_ns": 872037, - "rtt_ms": 0.872037, + "rtt_ns": 1131709, + "rtt_ms": 1.131709, "checkpoint": 0, "vertex_from": "65", "vertex_to": "547", - "timestamp": "2025-11-27T01:21:53.315339234Z" + "timestamp": "2025-11-27T04:01:51.77843-08:00" }, { "operation": "add_edge", - "rtt_ns": 668208, - "rtt_ms": 0.668208, + "rtt_ns": 1521125, + "rtt_ms": 1.521125, "checkpoint": 0, "vertex_from": "65", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.315351994Z" + "timestamp": "2025-11-27T04:01:51.779002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130946, - "rtt_ms": 1.130946, + "rtt_ns": 1133833, + "rtt_ms": 1.133833, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "866", - "timestamp": "2025-11-27T01:21:53.315942712Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.779377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186036, - "rtt_ms": 1.186036, + "rtt_ns": 1199625, + "rtt_ms": 1.199625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:53.315970532Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:01:51.779398-08:00" }, { "operation": "add_edge", - "rtt_ns": 955567, - "rtt_ms": 0.955567, + "rtt_ns": 1410250, + "rtt_ms": 1.41025, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:53.316169781Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:51.779823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050847, - "rtt_ms": 1.050847, + "rtt_ns": 1474709, + "rtt_ms": 1.474709, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.316289111Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1226306, - "rtt_ms": 1.226306, - "checkpoint": 0, - "vertex_from": "607", - "timestamp": "2025-11-27T01:21:53.316296491Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.779906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161097, - "rtt_ms": 1.161097, + "rtt_ns": 1784500, + "rtt_ms": 1.7845, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:53.316313811Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:51.779919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353845, - "rtt_ms": 1.353845, + "rtt_ns": 1933041, + "rtt_ms": 1.933041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.31636609Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:51.77994-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145363, - "rtt_ms": 2.145363, + "rtt_ns": 1538166, + "rtt_ms": 1.538166, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.317488557Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:51.779959-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2132693, - "rtt_ms": 2.132693, + "rtt_ns": 1551500, + "rtt_ms": 1.5515, "checkpoint": 0, - "vertex_from": "234", - "timestamp": "2025-11-27T01:21:53.317489427Z" + "vertex_from": "607", + "timestamp": "2025-11-27T04:01:51.779962-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1559208, + "rtt_ms": 1.559208, + "checkpoint": 0, + "vertex_from": "65", + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:51.779989-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1198296, - "rtt_ms": 1.198296, + "rtt_ns": 943042, + "rtt_ms": 0.943042, "checkpoint": 0, - "vertex_from": "249", - "timestamp": "2025-11-27T01:21:53.317490437Z" + "vertex_from": "234", + "timestamp": "2025-11-27T04:01:51.780322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544175, - "rtt_ms": 1.544175, + "rtt_ns": 1031583, + "rtt_ms": 1.031583, "checkpoint": 0, "vertex_from": "65", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:53.317488647Z" + "timestamp": "2025-11-27T04:01:51.780431-08:00" }, { "operation": "add_edge", - "rtt_ns": 2168833, - "rtt_ms": 2.168833, + "rtt_ns": 1671875, + "rtt_ms": 1.671875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.317490467Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.780676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400956, - "rtt_ms": 1.400956, + "rtt_ns": 1244834, + "rtt_ms": 1.244834, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.317572297Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.781186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635815, - "rtt_ms": 1.635815, + "rtt_ns": 1457000, + "rtt_ms": 1.457, "checkpoint": 0, "vertex_from": "65", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.317609277Z" + "timestamp": "2025-11-27T04:01:51.781283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424775, - "rtt_ms": 1.424775, + "rtt_ns": 1504750, + "rtt_ms": 1.50475, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.317741586Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.781539-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1395676, - "rtt_ms": 1.395676, + "operation": "add_vertex", + "rtt_ns": 1639833, + "rtt_ms": 1.639833, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.317764016Z" + "vertex_from": "249", + "timestamp": "2025-11-27T04:01:51.781561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491865, - "rtt_ms": 1.491865, + "rtt_ns": 1614500, + "rtt_ms": 1.6145, "checkpoint": 0, "vertex_from": "65", "vertex_to": "607", - "timestamp": "2025-11-27T01:21:53.317788806Z" + "timestamp": "2025-11-27T04:01:51.781578-08:00" }, { "operation": "add_edge", - "rtt_ns": 960417, - "rtt_ms": 0.960417, + "rtt_ns": 1724375, + "rtt_ms": 1.724375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "234", - "timestamp": "2025-11-27T01:21:53.318451164Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.781684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265426, - "rtt_ms": 1.265426, + "rtt_ns": 1383916, + "rtt_ms": 1.383916, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:53.318758183Z" + "vertex_to": "234", + "timestamp": "2025-11-27T04:01:51.781706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277376, - "rtt_ms": 1.277376, + "rtt_ns": 1805792, + "rtt_ms": 1.805792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.318771613Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.781713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199776, - "rtt_ms": 1.199776, + "rtt_ns": 1992583, + "rtt_ms": 1.992583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.318774723Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:51.782424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287746, - "rtt_ms": 1.287746, + "rtt_ns": 1159250, + "rtt_ms": 1.15925, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "249", - "timestamp": "2025-11-27T01:21:53.318779313Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:51.782444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290415, - "rtt_ms": 1.290415, + "rtt_ns": 1775208, + "rtt_ms": 1.775208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:53.318904222Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.782453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438625, - "rtt_ms": 1.438625, + "rtt_ns": 1449250, + "rtt_ms": 1.44925, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.318929362Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.782636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649425, - "rtt_ms": 1.649425, + "rtt_ns": 1490000, + "rtt_ms": 1.49, "checkpoint": 0, "vertex_from": "65", "vertex_to": "397", - "timestamp": "2025-11-27T01:21:53.319415081Z" + "timestamp": "2025-11-27T04:01:51.783069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645685, - "rtt_ms": 1.645685, + "rtt_ns": 1546500, + "rtt_ms": 1.5465, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:53.319436761Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.783087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772744, - "rtt_ms": 1.772744, + "rtt_ns": 1650208, + "rtt_ms": 1.650208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.31951574Z" + "vertex_to": "249", + "timestamp": "2025-11-27T04:01:51.783211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374485, - "rtt_ms": 1.374485, + "rtt_ns": 1541125, + "rtt_ms": 1.541125, "checkpoint": 0, "vertex_from": "65", "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.319827849Z" + "timestamp": "2025-11-27T04:01:51.783247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423935, - "rtt_ms": 1.423935, + "rtt_ns": 1617500, + "rtt_ms": 1.6175, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.320202168Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:51.783303-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028293, - "rtt_ms": 2.028293, + "rtt_ns": 1671583, + "rtt_ms": 1.671583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.320803066Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:51.783385-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137863, - "rtt_ms": 2.137863, + "rtt_ns": 1293750, + "rtt_ms": 1.29375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.320920226Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.783739-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040054, - "rtt_ms": 2.040054, + "rtt_ns": 1106375, + "rtt_ms": 1.106375, "checkpoint": 0, "vertex_from": "65", "vertex_to": "665", - "timestamp": "2025-11-27T01:21:53.320947706Z" + "timestamp": "2025-11-27T04:01:51.783744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277332, - "rtt_ms": 2.277332, + "rtt_ns": 1533125, + "rtt_ms": 1.533125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.321037605Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.783958-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1579584, + "rtt_ms": 1.579584, + "checkpoint": 0, + "vertex_from": "65", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.784035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631544, - "rtt_ms": 1.631544, + "rtt_ns": 1375292, + "rtt_ms": 1.375292, "checkpoint": 0, "vertex_from": "65", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.321048365Z" + "timestamp": "2025-11-27T04:01:51.784463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563295, - "rtt_ms": 1.563295, + "rtt_ns": 1432125, + "rtt_ms": 1.432125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:53.321081165Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:51.784502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715484, - "rtt_ms": 1.715484, + "rtt_ns": 1370459, + "rtt_ms": 1.370459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.321153805Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.784757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338946, - "rtt_ms": 1.338946, + "rtt_ns": 1469125, + "rtt_ms": 1.469125, "checkpoint": 0, "vertex_from": "65", "vertex_to": "165", - "timestamp": "2025-11-27T01:21:53.321168215Z" + "timestamp": "2025-11-27T04:01:51.784774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2557192, - "rtt_ms": 2.557192, + "rtt_ns": 1672500, + "rtt_ms": 1.6725, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.321488344Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.784885-08:00" }, { "operation": "add_edge", - "rtt_ns": 726397, - "rtt_ms": 0.726397, + "rtt_ns": 1652791, + "rtt_ms": 1.652791, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.321674793Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:51.784901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518115, - "rtt_ms": 1.518115, + "rtt_ns": 1113500, + "rtt_ms": 1.1135, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.321721873Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:51.78515-08:00" }, { "operation": "add_edge", - "rtt_ns": 834227, - "rtt_ms": 0.834227, + "rtt_ns": 1406708, + "rtt_ms": 1.406708, "checkpoint": 0, "vertex_from": "65", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.321755723Z" + "timestamp": "2025-11-27T04:01:51.785152-08:00" }, { "operation": "add_edge", - "rtt_ns": 994377, - "rtt_ms": 0.994377, + "rtt_ns": 1224917, + "rtt_ms": 1.224917, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.321798643Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.785184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438386, - "rtt_ms": 1.438386, + "rtt_ns": 1567333, + "rtt_ms": 1.567333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.322479311Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.785307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356065, - "rtt_ms": 1.356065, + "rtt_ns": 1367208, + "rtt_ms": 1.367208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:53.32251126Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.785848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479885, - "rtt_ms": 1.479885, + "rtt_ns": 1403959, + "rtt_ms": 1.403959, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.32252979Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.785907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374545, - "rtt_ms": 1.374545, + "rtt_ns": 1252459, + "rtt_ms": 1.252459, "checkpoint": 0, "vertex_from": "65", "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.32254416Z" + "timestamp": "2025-11-27T04:01:51.786028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467495, - "rtt_ms": 1.467495, + "rtt_ns": 1788167, + "rtt_ms": 1.788167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.32255023Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:51.786546-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1820125, + "rtt_ms": 1.820125, + "checkpoint": 0, + "vertex_from": "65", + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:51.786722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177206, - "rtt_ms": 1.177206, + "rtt_ns": 1853250, + "rtt_ms": 1.85325, "checkpoint": 0, "vertex_from": "65", "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.32266816Z" + "timestamp": "2025-11-27T04:01:51.786739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205226, - "rtt_ms": 1.205226, + "rtt_ns": 1509708, + "rtt_ms": 1.509708, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.322962029Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:51.78682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291836, - "rtt_ms": 1.291836, + "rtt_ns": 2043541, + "rtt_ms": 2.043541, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:53.322968169Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.787196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334866, - "rtt_ms": 1.334866, + "rtt_ns": 2281917, + "rtt_ms": 2.281917, "checkpoint": 0, "vertex_from": "65", "vertex_to": "291", - "timestamp": "2025-11-27T01:21:53.323058409Z" + "timestamp": "2025-11-27T04:01:51.787432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274196, - "rtt_ms": 1.274196, + "rtt_ns": 1618666, + "rtt_ms": 1.618666, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.323073859Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:51.787526-08:00" }, { "operation": "add_edge", - "rtt_ns": 605528, - "rtt_ms": 0.605528, + "rtt_ns": 1518375, + "rtt_ms": 1.518375, "checkpoint": 0, "vertex_from": "65", "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.323150978Z" + "timestamp": "2025-11-27T04:01:51.787547-08:00" }, { "operation": "add_edge", - "rtt_ns": 674687, - "rtt_ms": 0.674687, + "rtt_ns": 2496792, + "rtt_ms": 2.496792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:53.323155528Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.787682-08:00" }, { "operation": "add_edge", - "rtt_ns": 989587, - "rtt_ms": 0.989587, + "rtt_ns": 1957167, + "rtt_ms": 1.957167, "checkpoint": 0, "vertex_from": "65", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.323502307Z" + "timestamp": "2025-11-27T04:01:51.787806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226656, - "rtt_ms": 1.226656, + "rtt_ns": 1149459, + "rtt_ms": 1.149459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:53.323759186Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.787972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239816, - "rtt_ms": 1.239816, + "rtt_ns": 1194625, + "rtt_ms": 1.194625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:53.323791896Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.788392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589085, - "rtt_ms": 1.589085, + "rtt_ns": 1661042, + "rtt_ms": 1.661042, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:53.324258545Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:51.788401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395005, - "rtt_ms": 1.395005, + "rtt_ns": 1711542, + "rtt_ms": 1.711542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:53.324358784Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:51.788435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445415, - "rtt_ms": 1.445415, + "rtt_ns": 1910875, + "rtt_ms": 1.910875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.324414904Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:51.788458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257776, - "rtt_ms": 1.257776, + "rtt_ns": 1263667, + "rtt_ms": 1.263667, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:53.324415824Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:51.78907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344375, - "rtt_ms": 1.344375, + "rtt_ns": 1657041, + "rtt_ms": 1.657041, "checkpoint": 0, "vertex_from": "65", "vertex_to": "209", - "timestamp": "2025-11-27T01:21:53.324419754Z" + "timestamp": "2025-11-27T04:01:51.78909-08:00" }, { "operation": "add_edge", - "rtt_ns": 925307, - "rtt_ms": 0.925307, + "rtt_ns": 1814625, + "rtt_ms": 1.814625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.324429844Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:51.789342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416605, - "rtt_ms": 1.416605, + "rtt_ns": 1904584, + "rtt_ms": 1.904584, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.324476024Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:51.789452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335096, - "rtt_ms": 1.335096, + "rtt_ns": 1797292, + "rtt_ms": 1.797292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.324486814Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:51.78948-08:00" }, { "operation": "add_edge", - "rtt_ns": 787698, - "rtt_ms": 0.787698, + "rtt_ns": 1699667, + "rtt_ms": 1.699667, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.324548164Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:51.789672-08:00" }, { "operation": "add_edge", - "rtt_ns": 549598, - "rtt_ms": 0.549598, + "rtt_ns": 1332792, + "rtt_ms": 1.332792, "checkpoint": 0, "vertex_from": "65", "vertex_to": "94", - "timestamp": "2025-11-27T01:21:53.324809453Z" + "timestamp": "2025-11-27T04:01:51.789726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060707, - "rtt_ms": 1.060707, + "rtt_ns": 1307667, + "rtt_ms": 1.307667, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.324853733Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:51.789745-08:00" }, { "operation": "add_edge", - "rtt_ns": 580179, - "rtt_ms": 0.580179, + "rtt_ns": 1813333, + "rtt_ms": 1.813333, "checkpoint": 0, "vertex_from": "65", "vertex_to": "666", - "timestamp": "2025-11-27T01:21:53.324940173Z" - }, - { - "operation": "add_edge", - "rtt_ns": 545418, - "rtt_ms": 0.545418, - "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "718", - "timestamp": "2025-11-27T01:21:53.324967962Z" + "timestamp": "2025-11-27T04:01:51.790215-08:00" }, { "operation": "add_edge", - "rtt_ns": 619768, - "rtt_ms": 0.619768, + "rtt_ns": 1813417, + "rtt_ms": 1.813417, "checkpoint": 0, "vertex_from": "65", "vertex_to": "142", - "timestamp": "2025-11-27T01:21:53.325036762Z" + "timestamp": "2025-11-27T04:01:51.790272-08:00" }, { "operation": "add_edge", - "rtt_ns": 658598, - "rtt_ms": 0.658598, + "rtt_ns": 1541084, + "rtt_ms": 1.541084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:53.325074592Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:01:51.790612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022887, - "rtt_ms": 1.022887, + "rtt_ns": 1541250, + "rtt_ms": 1.54125, "checkpoint": 0, "vertex_from": "65", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.325454171Z" + "timestamp": "2025-11-27T04:01:51.790632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110916, - "rtt_ms": 1.110916, + "rtt_ns": 1313750, + "rtt_ms": 1.31375, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.32558828Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.790796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059426, - "rtt_ms": 1.059426, + "rtt_ns": 1523209, + "rtt_ms": 1.523209, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.32560842Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.790866-08:00" }, { "operation": "add_edge", - "rtt_ns": 866297, - "rtt_ms": 0.866297, + "rtt_ns": 1440500, + "rtt_ms": 1.4405, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.32572121Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:51.790894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317436, - "rtt_ms": 1.317436, + "rtt_ns": 1323125, + "rtt_ms": 1.323125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.32580509Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:51.791069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018517, - "rtt_ms": 1.018517, + "rtt_ns": 1435958, + "rtt_ms": 1.435958, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.32582867Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.791164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547996, - "rtt_ms": 1.547996, + "rtt_ns": 1505584, + "rtt_ms": 1.505584, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:53.326516918Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.791179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631514, - "rtt_ms": 1.631514, + "rtt_ns": 1297250, + "rtt_ms": 1.29725, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:53.326572277Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.791571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665175, - "rtt_ms": 1.665175, + "rtt_ns": 1628458, + "rtt_ms": 1.628458, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "110", - "timestamp": "2025-11-27T01:21:53.326741277Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:51.791846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270126, - "rtt_ms": 1.270126, + "rtt_ns": 1121458, + "rtt_ms": 1.121458, "checkpoint": 0, "vertex_from": "65", "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.326859186Z" + "timestamp": "2025-11-27T04:01:51.791919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829944, - "rtt_ms": 1.829944, + "rtt_ns": 1506625, + "rtt_ms": 1.506625, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.326867856Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:51.79214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658075, - "rtt_ms": 1.658075, + "rtt_ns": 1575166, + "rtt_ms": 1.575166, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:53.327114236Z" + "vertex_to": "110", + "timestamp": "2025-11-27T04:01:51.792189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505096, - "rtt_ms": 1.505096, + "rtt_ns": 1462792, + "rtt_ms": 1.462792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.327114376Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:51.792534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633915, - "rtt_ms": 1.633915, + "rtt_ns": 1659750, + "rtt_ms": 1.65975, "checkpoint": 0, "vertex_from": "65", "vertex_to": "135", - "timestamp": "2025-11-27T01:21:53.327356225Z" + "timestamp": "2025-11-27T04:01:51.792556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728104, - "rtt_ms": 1.728104, + "rtt_ns": 1703833, + "rtt_ms": 1.703833, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:53.327534574Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.792571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816114, - "rtt_ms": 1.816114, + "rtt_ns": 1424000, + "rtt_ms": 1.424, "checkpoint": 0, "vertex_from": "65", "vertex_to": "214", - "timestamp": "2025-11-27T01:21:53.327645894Z" + "timestamp": "2025-11-27T04:01:51.792589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215106, - "rtt_ms": 1.215106, + "rtt_ns": 1423666, + "rtt_ms": 1.423666, "checkpoint": 0, "vertex_from": "65", "vertex_to": "326", - "timestamp": "2025-11-27T01:21:53.327733344Z" + "timestamp": "2025-11-27T04:01:51.792603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319766, - "rtt_ms": 1.319766, + "rtt_ns": 1537041, + "rtt_ms": 1.537041, "checkpoint": 0, "vertex_from": "65", "vertex_to": "154", - "timestamp": "2025-11-27T01:21:53.327893233Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1621915, - "rtt_ms": 1.621915, - "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:53.328483651Z" + "timestamp": "2025-11-27T04:01:51.793109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397885, - "rtt_ms": 1.397885, + "rtt_ns": 1276834, + "rtt_ms": 1.276834, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "73", - "timestamp": "2025-11-27T01:21:53.328513521Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:51.793125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801454, - "rtt_ms": 1.801454, + "rtt_ns": 1390041, + "rtt_ms": 1.390041, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:53.328543991Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:51.79331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481785, - "rtt_ms": 1.481785, + "rtt_ns": 1187167, + "rtt_ms": 1.187167, "checkpoint": 0, "vertex_from": "65", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.328596831Z" + "timestamp": "2025-11-27T04:01:51.793377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758755, - "rtt_ms": 1.758755, + "rtt_ns": 1504041, + "rtt_ms": 1.504041, "checkpoint": 0, "vertex_from": "65", "vertex_to": "370", - "timestamp": "2025-11-27T01:21:53.328627581Z" + "timestamp": "2025-11-27T04:01:51.793645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286376, - "rtt_ms": 1.286376, + "rtt_ns": 1297125, + "rtt_ms": 1.297125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:53.328643311Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.793901-08:00" }, { "operation": "add_edge", - "rtt_ns": 868847, - "rtt_ms": 0.868847, + "rtt_ns": 1347084, + "rtt_ms": 1.347084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.32876287Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:51.793919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127076, - "rtt_ms": 1.127076, + "rtt_ns": 1563333, + "rtt_ms": 1.563333, "checkpoint": 0, "vertex_from": "65", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.32877374Z" + "timestamp": "2025-11-27T04:01:51.794153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043086, - "rtt_ms": 1.043086, + "rtt_ns": 1611333, + "rtt_ms": 1.611333, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.3287776Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:51.794169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247766, - "rtt_ms": 1.247766, + "rtt_ns": 1674208, + "rtt_ms": 1.674208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.32878352Z" + "vertex_to": "73", + "timestamp": "2025-11-27T04:01:51.794215-08:00" }, { "operation": "add_edge", - "rtt_ns": 887897, - "rtt_ms": 0.887897, + "rtt_ns": 1139625, + "rtt_ms": 1.139625, "checkpoint": 0, "vertex_from": "65", "vertex_to": "888", - "timestamp": "2025-11-27T01:21:53.329402438Z" + "timestamp": "2025-11-27T04:01:51.794452-08:00" }, { "operation": "add_edge", - "rtt_ns": 941907, - "rtt_ms": 0.941907, + "rtt_ns": 1346958, + "rtt_ms": 1.346958, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.329486928Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.794457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013757, - "rtt_ms": 1.013757, + "rtt_ns": 1360542, + "rtt_ms": 1.360542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "539", - "timestamp": "2025-11-27T01:21:53.329498438Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:51.794739-08:00" }, { "operation": "add_edge", - "rtt_ns": 926207, - "rtt_ms": 0.926207, + "rtt_ns": 1109250, + "rtt_ms": 1.10925, "checkpoint": 0, "vertex_from": "65", "vertex_to": "561", - "timestamp": "2025-11-27T01:21:53.329523878Z" + "timestamp": "2025-11-27T04:01:51.794756-08:00" }, { "operation": "add_edge", - "rtt_ns": 959037, - "rtt_ms": 0.959037, + "rtt_ns": 1720167, + "rtt_ms": 1.720167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.329587058Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:01:51.794846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087446, - "rtt_ms": 1.087446, + "rtt_ns": 1066792, + "rtt_ms": 1.066792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:53.329731637Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:51.795221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511896, - "rtt_ms": 1.511896, + "rtt_ns": 1511959, + "rtt_ms": 1.511959, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:53.330276476Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.795414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529646, - "rtt_ms": 1.529646, + "rtt_ns": 1760000, + "rtt_ms": 1.76, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:53.330304116Z" + "vertex_to": "187", + "timestamp": "2025-11-27T04:01:51.795976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527106, - "rtt_ms": 1.527106, + "rtt_ns": 1825125, + "rtt_ms": 1.825125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "187", - "timestamp": "2025-11-27T01:21:53.330305556Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:51.795995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565845, - "rtt_ms": 1.565845, + "rtt_ns": 2535125, + "rtt_ms": 2.535125, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:53.330350105Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:51.796455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155157, - "rtt_ms": 1.155157, + "rtt_ns": 2026042, + "rtt_ms": 2.026042, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.330888174Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.796486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305945, - "rtt_ms": 1.305945, + "rtt_ns": 2243208, + "rtt_ms": 2.243208, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.331583451Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:51.796984-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108343, - "rtt_ms": 2.108343, + "rtt_ns": 2548542, + "rtt_ms": 2.548542, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:53.331598021Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:51.797002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2111953, - "rtt_ms": 2.111953, + "rtt_ns": 2170042, + "rtt_ms": 2.170042, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "472", - "timestamp": "2025-11-27T01:21:53.331612021Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:51.797018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324215, - "rtt_ms": 1.324215, + "rtt_ns": 2274708, + "rtt_ms": 2.274708, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:53.331632401Z" + "vertex_to": "472", + "timestamp": "2025-11-27T04:01:51.797032-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131883, - "rtt_ms": 2.131883, + "rtt_ns": 1050959, + "rtt_ms": 1.050959, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:53.331657101Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:01:51.797047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2263043, - "rtt_ms": 2.263043, + "rtt_ns": 1892583, + "rtt_ms": 1.892583, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.331666731Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:51.797114-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103803, - "rtt_ms": 2.103803, + "rtt_ns": 1933167, + "rtt_ms": 1.933167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.331692851Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.797348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439026, - "rtt_ms": 1.439026, + "rtt_ns": 2003250, + "rtt_ms": 2.00325, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "78", - "timestamp": "2025-11-27T01:21:53.331790541Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.79798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771904, - "rtt_ms": 1.771904, + "rtt_ns": 1555250, + "rtt_ms": 1.55525, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "171", - "timestamp": "2025-11-27T01:21:53.33207748Z" + "vertex_to": "78", + "timestamp": "2025-11-27T04:01:51.798044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893713, - "rtt_ms": 1.893713, + "rtt_ns": 1781084, + "rtt_ms": 1.781084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:53.332783817Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:51.798237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234456, - "rtt_ms": 1.234456, + "rtt_ns": 1039792, + "rtt_ms": 1.039792, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.332834067Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.798389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656455, - "rtt_ms": 1.656455, + "rtt_ns": 1593292, + "rtt_ms": 1.593292, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.333241866Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:51.798578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848444, - "rtt_ms": 1.848444, + "rtt_ns": 1983875, + "rtt_ms": 1.983875, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.333461565Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:51.799031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864894, - "rtt_ms": 1.864894, + "rtt_ns": 2046500, + "rtt_ms": 2.0465, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.333533515Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.799049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575825, - "rtt_ms": 1.575825, + "rtt_ns": 3636167, + "rtt_ms": 3.636167, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.333654205Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.800752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978113, - "rtt_ms": 1.978113, + "rtt_ns": 3757459, + "rtt_ms": 3.757459, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:53.333672994Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.800776-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113013, - "rtt_ms": 2.113013, + "rtt_ns": 3764709, + "rtt_ms": 3.764709, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.333746524Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:51.800798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966443, - "rtt_ms": 1.966443, + "rtt_ns": 2722084, + "rtt_ms": 2.722084, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:53.333758254Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:51.80096-08:00" }, { "operation": "add_edge", - "rtt_ns": 2750641, - "rtt_ms": 2.750641, + "rtt_ns": 2994750, + "rtt_ms": 2.99475, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.334408742Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:51.800978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626455, - "rtt_ms": 1.626455, + "rtt_ns": 2950000, + "rtt_ms": 2.95, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:53.334462392Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:51.800995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760425, - "rtt_ms": 1.760425, + "rtt_ns": 2622250, + "rtt_ms": 2.62225, "checkpoint": 0, "vertex_from": "65", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.334545672Z" + "timestamp": "2025-11-27T04:01:51.801012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034566, - "rtt_ms": 1.034566, + "rtt_ns": 2448584, + "rtt_ms": 2.448584, "checkpoint": 0, "vertex_from": "65", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:53.334570511Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:51.801028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116036, - "rtt_ms": 1.116036, + "rtt_ns": 1977583, + "rtt_ms": 1.977583, "checkpoint": 0, "vertex_from": "65", "vertex_to": "325", - "timestamp": "2025-11-27T01:21:53.334578931Z" + "timestamp": "2025-11-27T04:01:51.801028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346545, - "rtt_ms": 1.346545, + "rtt_ns": 2069208, + "rtt_ms": 2.069208, "checkpoint": 0, "vertex_from": "65", "vertex_to": "452", - "timestamp": "2025-11-27T01:21:53.334589391Z" + "timestamp": "2025-11-27T04:01:51.801102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254215, - "rtt_ms": 1.254215, + "rtt_ns": 1605834, + "rtt_ms": 1.605834, "checkpoint": 0, "vertex_from": "65", "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.33490993Z" + "timestamp": "2025-11-27T04:01:51.802383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267136, - "rtt_ms": 1.267136, + "rtt_ns": 1425041, + "rtt_ms": 1.425041, "checkpoint": 0, - "vertex_from": "65", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:53.33494223Z" + "vertex_from": "66", + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:51.802404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772654, - "rtt_ms": 1.772654, + "rtt_ns": 1621416, + "rtt_ms": 1.621416, "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:53.335533388Z" + "vertex_from": "65", + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:51.80242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028437, - "rtt_ms": 1.028437, + "rtt_ns": 1677500, + "rtt_ms": 1.6775, "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.335619218Z" + "vertex_from": "65", + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:51.802431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053807, - "rtt_ms": 1.053807, + "rtt_ns": 1348250, + "rtt_ms": 1.34825, "checkpoint": 0, "vertex_from": "66", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.335634348Z" + "timestamp": "2025-11-27T04:01:51.802453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888684, - "rtt_ms": 1.888684, + "rtt_ns": 1565334, + "rtt_ms": 1.565334, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.335636598Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.802594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241286, - "rtt_ms": 1.241286, + "rtt_ns": 1654209, + "rtt_ms": 1.654209, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "484", - "timestamp": "2025-11-27T01:21:53.335652158Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.802615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362425, - "rtt_ms": 1.362425, + "rtt_ns": 1603875, + "rtt_ms": 1.603875, "checkpoint": 0, "vertex_from": "66", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.335826657Z" + "timestamp": "2025-11-27T04:01:51.802617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295256, - "rtt_ms": 1.295256, + "rtt_ns": 1669833, + "rtt_ms": 1.669833, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.335867427Z" + "vertex_to": "484", + "timestamp": "2025-11-27T04:01:51.802665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349545, - "rtt_ms": 1.349545, + "rtt_ns": 1725666, + "rtt_ms": 1.725666, "checkpoint": 0, "vertex_from": "66", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:53.335897097Z" + "timestamp": "2025-11-27T04:01:51.802754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683935, - "rtt_ms": 1.683935, + "rtt_ns": 976791, + "rtt_ms": 0.976791, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:53.336627175Z" + "vertex_to": "68", + "timestamp": "2025-11-27T04:01:51.803594-08:00" }, { "operation": "add_edge", - "rtt_ns": 998297, - "rtt_ms": 0.998297, + "rtt_ns": 1018708, + "rtt_ms": 1.018708, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.336652575Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.803614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747475, - "rtt_ms": 1.747475, + "rtt_ns": 1393958, + "rtt_ms": 1.393958, "checkpoint": 0, "vertex_from": "66", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.336659175Z" + "timestamp": "2025-11-27T04:01:51.803798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026107, - "rtt_ms": 1.026107, + "rtt_ns": 1422625, + "rtt_ms": 1.422625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.336662205Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:51.803843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405936, - "rtt_ms": 1.405936, + "rtt_ns": 1486292, + "rtt_ms": 1.486292, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:53.336941934Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.80394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833064, - "rtt_ms": 1.833064, + "rtt_ns": 1201667, + "rtt_ms": 1.201667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "68", - "timestamp": "2025-11-27T01:21:53.337473252Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.803957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735105, - "rtt_ms": 1.735105, + "rtt_ns": 1380500, + "rtt_ms": 1.3805, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.337603342Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:51.803998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001684, - "rtt_ms": 2.001684, + "rtt_ns": 1634625, + "rtt_ms": 1.634625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.337622122Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:51.804019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057086, - "rtt_ms": 1.057086, + "rtt_ns": 1781500, + "rtt_ms": 1.7815, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.337711731Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:51.804214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104156, - "rtt_ms": 1.104156, + "rtt_ns": 1557084, + "rtt_ms": 1.557084, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.337732491Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.804223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910474, - "rtt_ms": 1.910474, + "rtt_ns": 1137125, + "rtt_ms": 1.137125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.337739411Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.804982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163006, - "rtt_ms": 1.163006, + "rtt_ns": 1896334, + "rtt_ms": 1.896334, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.337826601Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:51.805491-08:00" }, { "operation": "add_edge", - "rtt_ns": 995346, - "rtt_ms": 0.995346, + "rtt_ns": 1775500, + "rtt_ms": 1.7755, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "716", - "timestamp": "2025-11-27T01:21:53.338619258Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.805575-08:00" }, { "operation": "add_edge", - "rtt_ns": 2746551, - "rtt_ms": 2.746551, + "rtt_ns": 2011000, + "rtt_ms": 2.011, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:53.338645818Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.805625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244986, - "rtt_ms": 1.244986, + "rtt_ns": 1662083, + "rtt_ms": 1.662083, "checkpoint": 0, "vertex_from": "66", "vertex_to": "392", - "timestamp": "2025-11-27T01:21:53.338719958Z" + "timestamp": "2025-11-27T04:01:51.805661-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107563, - "rtt_ms": 2.107563, + "rtt_ns": 1724542, + "rtt_ms": 1.724542, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.338768278Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.805682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955934, - "rtt_ms": 1.955934, + "rtt_ns": 1741875, + "rtt_ms": 1.741875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.338899278Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.805683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271656, - "rtt_ms": 1.271656, + "rtt_ns": 1478042, + "rtt_ms": 1.478042, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.339100097Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:51.805695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1892664, - "rtt_ms": 1.892664, + "rtt_ns": 1473917, + "rtt_ms": 1.473917, "checkpoint": 0, "vertex_from": "66", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.339606085Z" + "timestamp": "2025-11-27T04:01:51.805698-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2162633, - "rtt_ms": 2.162633, + "rtt_ns": 1743375, + "rtt_ms": 1.743375, "checkpoint": 0, "vertex_from": "571", - "timestamp": "2025-11-27T01:21:53.339768235Z" + "timestamp": "2025-11-27T04:01:51.805763-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074454, - "rtt_ms": 2.074454, - "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.339815285Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2121993, - "rtt_ms": 2.121993, + "rtt_ns": 1607458, + "rtt_ms": 1.607458, "checkpoint": 0, "vertex_from": "66", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.339855994Z" + "timestamp": "2025-11-27T04:01:51.80659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410056, - "rtt_ms": 1.410056, + "rtt_ns": 1477708, + "rtt_ms": 1.477708, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:53.340057434Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.806972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658205, - "rtt_ms": 1.658205, + "rtt_ns": 1361000, + "rtt_ms": 1.361, "checkpoint": 0, "vertex_from": "66", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.340278793Z" + "timestamp": "2025-11-27T04:01:51.806987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276896, - "rtt_ms": 1.276896, + "rtt_ns": 1339667, + "rtt_ms": 1.339667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.340379643Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:51.807002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823354, - "rtt_ms": 1.823354, + "rtt_ns": 1424625, + "rtt_ms": 1.424625, "checkpoint": 0, "vertex_from": "66", "vertex_to": "396", - "timestamp": "2025-11-27T01:21:53.340592992Z" + "timestamp": "2025-11-27T04:01:51.807109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902054, - "rtt_ms": 1.902054, + "rtt_ns": 1425166, + "rtt_ms": 1.425166, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.340625102Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:51.807125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834764, - "rtt_ms": 1.834764, + "rtt_ns": 1457417, + "rtt_ms": 1.457417, "checkpoint": 0, "vertex_from": "66", "vertex_to": "774", - "timestamp": "2025-11-27T01:21:53.340735002Z" + "timestamp": "2025-11-27T04:01:51.807154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230806, - "rtt_ms": 1.230806, + "rtt_ns": 1407667, + "rtt_ms": 1.407667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.340838101Z" + "vertex_to": "571", + "timestamp": "2025-11-27T04:01:51.807171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776394, - "rtt_ms": 1.776394, + "rtt_ns": 1618125, + "rtt_ms": 1.618125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "571", - "timestamp": "2025-11-27T01:21:53.341544989Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:51.807194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738535, - "rtt_ms": 1.738535, + "rtt_ns": 1531833, + "rtt_ms": 1.531833, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.341595649Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.807216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961263, - "rtt_ms": 1.961263, + "rtt_ns": 1412791, + "rtt_ms": 1.412791, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.341778228Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.808004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208642, - "rtt_ms": 2.208642, + "rtt_ns": 1689542, + "rtt_ms": 1.689542, "checkpoint": 0, "vertex_from": "66", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:53.342267036Z" + "timestamp": "2025-11-27T04:01:51.808692-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001643, - "rtt_ms": 2.001643, + "rtt_ns": 1807834, + "rtt_ms": 1.807834, "checkpoint": 0, "vertex_from": "66", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.342282636Z" + "timestamp": "2025-11-27T04:01:51.808917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964863, - "rtt_ms": 1.964863, + "rtt_ns": 1974416, + "rtt_ms": 1.974416, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.342345426Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:51.80913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767624, - "rtt_ms": 1.767624, + "rtt_ns": 2456375, + "rtt_ms": 2.456375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:53.342362586Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.809429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802944, - "rtt_ms": 1.802944, + "rtt_ns": 2274416, + "rtt_ms": 2.274416, "checkpoint": 0, "vertex_from": "66", "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.342429236Z" + "timestamp": "2025-11-27T04:01:51.809446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626355, - "rtt_ms": 1.626355, + "rtt_ns": 2244417, + "rtt_ms": 2.244417, "checkpoint": 0, "vertex_from": "66", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.342465966Z" + "timestamp": "2025-11-27T04:01:51.80946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774224, - "rtt_ms": 1.774224, + "rtt_ns": 1716209, + "rtt_ms": 1.716209, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.342510396Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:51.809721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778314, - "rtt_ms": 1.778314, + "rtt_ns": 2605125, + "rtt_ms": 2.605125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.343324533Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.809731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193746, - "rtt_ms": 1.193746, + "rtt_ns": 2544291, + "rtt_ms": 2.544291, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.343477862Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.809739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727994, - "rtt_ms": 1.727994, + "rtt_ns": 2808875, + "rtt_ms": 2.808875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.343507592Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.809797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916113, - "rtt_ms": 1.916113, + "rtt_ns": 1371167, + "rtt_ms": 1.371167, "checkpoint": 0, "vertex_from": "66", "vertex_to": "685", - "timestamp": "2025-11-27T01:21:53.343513742Z" + "timestamp": "2025-11-27T04:01:51.810065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286696, - "rtt_ms": 1.286696, + "rtt_ns": 1602416, + "rtt_ms": 1.602416, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.343554942Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.810521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215756, - "rtt_ms": 1.215756, + "rtt_ns": 1432792, + "rtt_ms": 1.432792, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "244", - "timestamp": "2025-11-27T01:21:53.343563122Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:51.810563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149966, - "rtt_ms": 1.149966, + "rtt_ns": 1210541, + "rtt_ms": 1.210541, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.343580752Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:01:51.810672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218706, - "rtt_ms": 1.218706, + "rtt_ns": 1334708, + "rtt_ms": 1.334708, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "965", - "timestamp": "2025-11-27T01:21:53.343583302Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.810765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181936, - "rtt_ms": 1.181936, + "rtt_ns": 1446042, + "rtt_ms": 1.446042, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:53.343649312Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:01:51.810893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969233, - "rtt_ms": 1.969233, + "rtt_ns": 1343500, + "rtt_ms": 1.3435, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:53.344481019Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:51.811075-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1284086, - "rtt_ms": 1.284086, + "rtt_ns": 1418500, + "rtt_ms": 1.4185, "checkpoint": 0, "vertex_from": "475", - "timestamp": "2025-11-27T01:21:53.344612549Z" + "timestamp": "2025-11-27T04:01:51.811221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379606, - "rtt_ms": 1.379606, + "rtt_ns": 1620750, + "rtt_ms": 1.62075, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.344858878Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.811343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695745, - "rtt_ms": 1.695745, + "rtt_ns": 1692458, + "rtt_ms": 1.692458, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.345211197Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:51.811435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679795, - "rtt_ms": 1.679795, + "rtt_ns": 1580375, + "rtt_ms": 1.580375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.345262877Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.811647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627275, - "rtt_ms": 1.627275, + "rtt_ns": 1270208, + "rtt_ms": 1.270208, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.345280407Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.812036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765914, - "rtt_ms": 1.765914, + "rtt_ns": 1527000, + "rtt_ms": 1.527, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.345322346Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.812092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773694, - "rtt_ms": 1.773694, + "rtt_ns": 1224542, + "rtt_ms": 1.224542, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.345338596Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:51.812301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879314, - "rtt_ms": 1.879314, + "rtt_ns": 1795333, + "rtt_ms": 1.795333, "checkpoint": 0, "vertex_from": "66", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.345387626Z" + "timestamp": "2025-11-27T04:01:51.812319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906364, - "rtt_ms": 1.906364, + "rtt_ns": 1675167, + "rtt_ms": 1.675167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.345490866Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:51.812348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015457, - "rtt_ms": 1.015457, + "rtt_ns": 1337667, + "rtt_ms": 1.337667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:53.345498566Z" + "vertex_to": "475", + "timestamp": "2025-11-27T04:01:51.812559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359255, - "rtt_ms": 1.359255, + "rtt_ns": 1679625, + "rtt_ms": 1.679625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "475", - "timestamp": "2025-11-27T01:21:53.345972164Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:51.812575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171056, - "rtt_ms": 1.171056, + "rtt_ns": 1272750, + "rtt_ms": 1.27275, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.346031764Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:51.81271-08:00" }, { "operation": "add_edge", - "rtt_ns": 880517, - "rtt_ms": 0.880517, + "rtt_ns": 1490541, + "rtt_ms": 1.490541, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:53.346093194Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.812834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581465, - "rtt_ms": 1.581465, + "rtt_ns": 1525542, + "rtt_ms": 1.525542, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.346921671Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.813174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516455, - "rtt_ms": 1.516455, + "rtt_ns": 1167625, + "rtt_ms": 1.167625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.347016701Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:51.813469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715145, - "rtt_ms": 1.715145, + "rtt_ns": 1244000, + "rtt_ms": 1.244, "checkpoint": 0, "vertex_from": "66", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:53.347039281Z" + "timestamp": "2025-11-27T04:01:51.813564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651965, - "rtt_ms": 1.651965, + "rtt_ns": 1401208, + "rtt_ms": 1.401208, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:53.347041461Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:51.813752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777364, - "rtt_ms": 1.777364, + "rtt_ns": 1736583, + "rtt_ms": 1.736583, "checkpoint": 0, "vertex_from": "66", "vertex_to": "904", - "timestamp": "2025-11-27T01:21:53.347042311Z" + "timestamp": "2025-11-27T04:01:51.81383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850894, - "rtt_ms": 1.850894, + "rtt_ns": 1836042, + "rtt_ms": 1.836042, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:53.347132711Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:51.813875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366176, - "rtt_ms": 1.366176, + "rtt_ns": 1349209, + "rtt_ms": 1.349209, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:53.34746101Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.813925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557955, - "rtt_ms": 1.557955, + "rtt_ns": 1599542, + "rtt_ms": 1.599542, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.347590889Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:51.81416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2739001, - "rtt_ms": 2.739001, + "rtt_ns": 1490125, + "rtt_ms": 1.490125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.348231337Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:51.814201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129966, - "rtt_ms": 1.129966, + "rtt_ns": 1383334, + "rtt_ms": 1.383334, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.348264127Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:51.814219-08:00" }, { "operation": "add_edge", - "rtt_ns": 2352843, - "rtt_ms": 2.352843, + "rtt_ns": 1086083, + "rtt_ms": 1.086083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:53.348326897Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.814651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405976, - "rtt_ms": 1.405976, + "rtt_ns": 1340209, + "rtt_ms": 1.340209, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.348328947Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:51.814811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317636, - "rtt_ms": 1.317636, + "rtt_ns": 1652583, + "rtt_ms": 1.652583, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:53.348362237Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.814828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1381256, - "rtt_ms": 1.381256, + "rtt_ns": 1384750, + "rtt_ms": 1.38475, "checkpoint": 0, "vertex_from": "66", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.348399257Z" + "timestamp": "2025-11-27T04:01:51.815139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434385, - "rtt_ms": 1.434385, + "rtt_ns": 1281333, + "rtt_ms": 1.281333, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.348478116Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:51.815157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444145, - "rtt_ms": 1.444145, + "rtt_ns": 1620500, + "rtt_ms": 1.6205, "checkpoint": 0, "vertex_from": "66", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.348486246Z" + "timestamp": "2025-11-27T04:01:51.815452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179486, - "rtt_ms": 1.179486, + "rtt_ns": 1592834, + "rtt_ms": 1.592834, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.348641456Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.815519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059067, - "rtt_ms": 1.059067, + "rtt_ns": 1385667, + "rtt_ms": 1.385667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:53.349299714Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.815548-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1558583, + "rtt_ms": 1.558583, + "checkpoint": 0, + "vertex_from": "66", + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.815761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740145, - "rtt_ms": 1.740145, + "rtt_ns": 1557042, + "rtt_ms": 1.557042, "checkpoint": 0, "vertex_from": "66", "vertex_to": "620", - "timestamp": "2025-11-27T01:21:53.349332374Z" + "timestamp": "2025-11-27T04:01:51.815778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243986, - "rtt_ms": 1.243986, + "rtt_ns": 1232083, + "rtt_ms": 1.232083, "checkpoint": 0, "vertex_from": "66", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.349572753Z" + "timestamp": "2025-11-27T04:01:51.816061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247456, - "rtt_ms": 1.247456, + "rtt_ns": 1510875, + "rtt_ms": 1.510875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "171", - "timestamp": "2025-11-27T01:21:53.349611823Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:51.816323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443486, - "rtt_ms": 1.443486, + "rtt_ns": 1674625, + "rtt_ms": 1.674625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.349709423Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:51.816326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427065, - "rtt_ms": 1.427065, + "rtt_ns": 1187292, + "rtt_ms": 1.187292, + "checkpoint": 0, + "vertex_from": "66", + "vertex_to": "171", + "timestamp": "2025-11-27T04:01:51.816345-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1615792, + "rtt_ms": 1.615792, "checkpoint": 0, "vertex_from": "66", "vertex_to": "781", - "timestamp": "2025-11-27T01:21:53.349758042Z" + "timestamp": "2025-11-27T04:01:51.816756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363445, - "rtt_ms": 1.363445, + "rtt_ns": 1319500, + "rtt_ms": 1.3195, "checkpoint": 0, "vertex_from": "66", "vertex_to": "417", - "timestamp": "2025-11-27T01:21:53.349764692Z" + "timestamp": "2025-11-27T04:01:51.816774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199326, - "rtt_ms": 1.199326, + "rtt_ns": 1520625, + "rtt_ms": 1.520625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.349841622Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.817041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374606, - "rtt_ms": 1.374606, + "rtt_ns": 1521125, + "rtt_ms": 1.521125, "checkpoint": 0, "vertex_from": "66", "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.349864462Z" + "timestamp": "2025-11-27T04:01:51.817071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388066, - "rtt_ms": 1.388066, + "rtt_ns": 1338083, + "rtt_ms": 1.338083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.349868102Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.817101-08:00" }, { "operation": "add_edge", - "rtt_ns": 607488, - "rtt_ms": 0.607488, + "rtt_ns": 1534291, + "rtt_ms": 1.534291, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.349941722Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:51.817313-08:00" }, { "operation": "add_edge", - "rtt_ns": 675938, - "rtt_ms": 0.675938, + "rtt_ns": 1299916, + "rtt_ms": 1.299916, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:53.349976532Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.817363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500795, - "rtt_ms": 1.500795, + "rtt_ns": 1407792, + "rtt_ms": 1.407792, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "183", - "timestamp": "2025-11-27T01:21:53.351075448Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:51.817735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792614, - "rtt_ms": 1.792614, + "rtt_ns": 1478542, + "rtt_ms": 1.478542, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:53.351503517Z" + "vertex_to": "183", + "timestamp": "2025-11-27T04:01:51.817803-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051643, - "rtt_ms": 2.051643, + "rtt_ns": 1827292, + "rtt_ms": 1.827292, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:53.351669766Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:51.818173-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025884, - "rtt_ms": 2.025884, + "rtt_ns": 1445250, + "rtt_ms": 1.44525, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:53.351784986Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.81822-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042664, - "rtt_ms": 2.042664, + "rtt_ns": 1531750, + "rtt_ms": 1.53175, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.351809266Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:51.818288-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014494, - "rtt_ms": 2.014494, + "rtt_ns": 1498625, + "rtt_ms": 1.498625, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "121", - "timestamp": "2025-11-27T01:21:53.351880816Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:51.818601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2476882, - "rtt_ms": 2.476882, + "rtt_ns": 1344875, + "rtt_ms": 1.344875, "checkpoint": 0, "vertex_from": "66", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.352454534Z" + "timestamp": "2025-11-27T04:01:51.818709-08:00" }, { "operation": "add_edge", - "rtt_ns": 2673241, - "rtt_ms": 2.673241, + "rtt_ns": 1682583, + "rtt_ms": 1.682583, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:53.352543893Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:51.818726-08:00" }, { "operation": "add_edge", - "rtt_ns": 2729671, - "rtt_ms": 2.729671, + "rtt_ns": 1672167, + "rtt_ms": 1.672167, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:53.352573313Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:01:51.818744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2661921, - "rtt_ms": 2.661921, + "rtt_ns": 1448458, + "rtt_ms": 1.448458, "checkpoint": 0, "vertex_from": "66", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.352605933Z" + "timestamp": "2025-11-27T04:01:51.818763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715305, - "rtt_ms": 1.715305, + "rtt_ns": 1482209, + "rtt_ms": 1.482209, "checkpoint": 0, "vertex_from": "66", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:53.352794333Z" + "timestamp": "2025-11-27T04:01:51.819218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328735, - "rtt_ms": 1.328735, + "rtt_ns": 1476917, + "rtt_ms": 1.476917, "checkpoint": 0, "vertex_from": "66", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:53.352834232Z" + "timestamp": "2025-11-27T04:01:51.819281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000796, - "rtt_ms": 1.000796, + "rtt_ns": 1182166, + "rtt_ms": 1.182166, "checkpoint": 0, "vertex_from": "66", "vertex_to": "270", - "timestamp": "2025-11-27T01:21:53.352884652Z" + "timestamp": "2025-11-27T04:01:51.819784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135846, - "rtt_ms": 1.135846, + "rtt_ns": 1577708, + "rtt_ms": 1.577708, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.352948362Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.819799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207556, - "rtt_ms": 1.207556, + "rtt_ns": 1393750, + "rtt_ms": 1.39375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.352994392Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:51.820103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359296, - "rtt_ms": 1.359296, + "rtt_ns": 1850833, + "rtt_ms": 1.850833, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.353030392Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:51.82014-08:00" }, { "operation": "add_edge", - "rtt_ns": 824537, - "rtt_ms": 0.824537, + "rtt_ns": 1981792, + "rtt_ms": 1.981792, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:53.353282071Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:51.820156-08:00" }, { "operation": "add_edge", - "rtt_ns": 774078, - "rtt_ms": 0.774078, + "rtt_ns": 1393709, + "rtt_ms": 1.393709, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:53.353349091Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:51.820157-08:00" }, { "operation": "add_edge", - "rtt_ns": 803858, - "rtt_ms": 0.803858, + "rtt_ns": 1448458, + "rtt_ms": 1.448458, "checkpoint": 0, "vertex_from": "66", "vertex_to": "720", - "timestamp": "2025-11-27T01:21:53.353349401Z" + "timestamp": "2025-11-27T04:01:51.820175-08:00" }, { "operation": "add_edge", - "rtt_ns": 755758, - "rtt_ms": 0.755758, + "rtt_ns": 1432458, + "rtt_ms": 1.432458, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:53.353364391Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:51.820178-08:00" }, { "operation": "add_edge", - "rtt_ns": 722877, - "rtt_ms": 0.722877, + "rtt_ns": 1565500, + "rtt_ms": 1.5655, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:53.35351873Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:51.820847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212616, - "rtt_ms": 1.212616, + "rtt_ns": 1882417, + "rtt_ms": 1.882417, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:53.354208658Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:51.821101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294576, - "rtt_ms": 1.294576, + "rtt_ns": 1444083, + "rtt_ms": 1.444083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "543", - "timestamp": "2025-11-27T01:21:53.354245108Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:51.821603-08:00" }, { "operation": "add_edge", - "rtt_ns": 980436, - "rtt_ms": 0.980436, + "rtt_ns": 1807125, + "rtt_ms": 1.807125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "541", - "timestamp": "2025-11-27T01:21:53.354332177Z" + "vertex_to": "543", + "timestamp": "2025-11-27T04:01:51.821607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519105, - "rtt_ms": 1.519105, + "rtt_ns": 1538958, + "rtt_ms": 1.538958, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:53.354360317Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:01:51.821715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330545, - "rtt_ms": 1.330545, + "rtt_ns": 1539000, + "rtt_ms": 1.539, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.354362327Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:51.821718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483895, - "rtt_ms": 1.483895, + "rtt_ns": 1960125, + "rtt_ms": 1.960125, "checkpoint": 0, "vertex_from": "66", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.354371037Z" + "timestamp": "2025-11-27T04:01:51.821747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044116, - "rtt_ms": 1.044116, + "rtt_ns": 1594708, + "rtt_ms": 1.594708, "checkpoint": 0, "vertex_from": "66", "vertex_to": "652", - "timestamp": "2025-11-27T01:21:53.354394897Z" + "timestamp": "2025-11-27T04:01:51.821753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126416, - "rtt_ms": 1.126416, + "rtt_ns": 1678000, + "rtt_ms": 1.678, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:53.354410127Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:51.821783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760224, - "rtt_ms": 1.760224, + "rtt_ns": 1664667, + "rtt_ms": 1.664667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:53.355127105Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.821806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947864, - "rtt_ms": 1.947864, + "rtt_ns": 1412375, + "rtt_ms": 1.412375, "checkpoint": 0, "vertex_from": "66", "vertex_to": "566", - "timestamp": "2025-11-27T01:21:53.355468024Z" + "timestamp": "2025-11-27T04:01:51.822261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433545, - "rtt_ms": 1.433545, + "rtt_ns": 1365208, + "rtt_ms": 1.365208, "checkpoint": 0, "vertex_from": "66", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:53.355643513Z" + "timestamp": "2025-11-27T04:01:51.822468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339366, - "rtt_ms": 1.339366, + "rtt_ns": 1223125, + "rtt_ms": 1.223125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:53.355683683Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:51.822977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558764, - "rtt_ms": 1.558764, + "rtt_ns": 1245875, + "rtt_ms": 1.245875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:53.355805552Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:51.822995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468005, - "rtt_ms": 1.468005, + "rtt_ns": 1386333, + "rtt_ms": 1.386333, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:53.355831412Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:51.82317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551945, - "rtt_ms": 1.551945, + "rtt_ns": 1383000, + "rtt_ms": 1.383, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:53.355925372Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:51.823189-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062333, - "rtt_ms": 2.062333, + "rtt_ns": 1622125, + "rtt_ms": 1.622125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.35647382Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:51.82323-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126943, - "rtt_ms": 2.126943, + "rtt_ns": 1678833, + "rtt_ms": 1.678833, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.35652477Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.823395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530105, - "rtt_ms": 1.530105, + "rtt_ns": 1808041, + "rtt_ms": 1.808041, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.35665885Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:51.823412-08:00" }, { "operation": "add_edge", - "rtt_ns": 2299953, - "rtt_ms": 2.299953, + "rtt_ns": 1181084, + "rtt_ms": 1.181084, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.35666271Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:51.823443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017647, - "rtt_ms": 1.017647, + "rtt_ns": 995709, + "rtt_ms": 0.995709, "checkpoint": 0, "vertex_from": "66", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:53.35666389Z" + "timestamp": "2025-11-27T04:01:51.823466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364525, - "rtt_ms": 1.364525, + "rtt_ns": 1770875, + "rtt_ms": 1.770875, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:53.356833639Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:51.82349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155796, - "rtt_ms": 1.155796, + "rtt_ns": 1279084, + "rtt_ms": 1.279084, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:53.356842559Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.824275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178697, - "rtt_ms": 1.178697, + "rtt_ns": 1309833, + "rtt_ms": 1.309833, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:53.357012699Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:51.824288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732455, - "rtt_ms": 1.732455, + "rtt_ns": 1010334, + "rtt_ms": 1.010334, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.357539057Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.824422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633885, - "rtt_ms": 1.633885, + "rtt_ns": 1249250, + "rtt_ms": 1.24925, "checkpoint": 0, "vertex_from": "66", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:53.357561357Z" + "timestamp": "2025-11-27T04:01:51.824439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094646, - "rtt_ms": 1.094646, + "rtt_ns": 1371083, + "rtt_ms": 1.371083, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "333", - "timestamp": "2025-11-27T01:21:53.357761846Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.824602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297296, - "rtt_ms": 1.297296, + "rtt_ns": 1264750, + "rtt_ms": 1.26475, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.357958146Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:51.82466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546465, - "rtt_ms": 1.546465, + "rtt_ns": 1209958, + "rtt_ms": 1.209958, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.358022665Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:01:51.824676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206786, - "rtt_ms": 1.206786, + "rtt_ns": 1535917, + "rtt_ms": 1.535917, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.358043025Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:51.824707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397835, - "rtt_ms": 1.397835, + "rtt_ns": 1614625, + "rtt_ms": 1.614625, "checkpoint": 0, "vertex_from": "66", "vertex_to": "229", - "timestamp": "2025-11-27T01:21:53.358062175Z" + "timestamp": "2025-11-27T04:01:51.825058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560865, - "rtt_ms": 1.560865, + "rtt_ns": 1609500, + "rtt_ms": 1.6095, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:53.358087225Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.8251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294356, - "rtt_ms": 1.294356, + "rtt_ns": 1092833, + "rtt_ms": 1.092833, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "490", - "timestamp": "2025-11-27T01:21:53.358140345Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:01:51.825516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166066, - "rtt_ms": 1.166066, + "rtt_ns": 1491666, + "rtt_ms": 1.491666, "checkpoint": 0, "vertex_from": "66", "vertex_to": "404", - "timestamp": "2025-11-27T01:21:53.358180535Z" + "timestamp": "2025-11-27T04:01:51.82578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155396, - "rtt_ms": 1.155396, + "rtt_ns": 1521125, + "rtt_ms": 1.521125, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "684", - "timestamp": "2025-11-27T01:21:53.358696273Z" + "vertex_to": "490", + "timestamp": "2025-11-27T04:01:51.825799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159876, - "rtt_ms": 1.159876, + "rtt_ns": 1374833, + "rtt_ms": 1.374833, "checkpoint": 0, "vertex_from": "66", "vertex_to": "732", - "timestamp": "2025-11-27T01:21:53.358722683Z" + "timestamp": "2025-11-27T04:01:51.825815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211596, - "rtt_ms": 1.211596, + "rtt_ns": 1182459, + "rtt_ms": 1.182459, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.358975162Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:51.825891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549625, - "rtt_ms": 1.549625, + "rtt_ns": 1421834, + "rtt_ms": 1.421834, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "794", - "timestamp": "2025-11-27T01:21:53.35961405Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:51.826099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710515, - "rtt_ms": 1.710515, + "rtt_ns": 1544000, + "rtt_ms": 1.544, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "67", - "timestamp": "2025-11-27T01:21:53.35985265Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.826147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918523, - "rtt_ms": 1.918523, + "rtt_ns": 1557708, + "rtt_ms": 1.557708, "checkpoint": 0, "vertex_from": "66", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:53.359878159Z" + "timestamp": "2025-11-27T04:01:51.826218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863094, - "rtt_ms": 1.863094, + "rtt_ns": 1859667, + "rtt_ms": 1.859667, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:53.359907609Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:01:51.826919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738334, - "rtt_ms": 1.738334, + "rtt_ns": 1834083, + "rtt_ms": 1.834083, "checkpoint": 0, - "vertex_from": "67", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.359920709Z" + "vertex_from": "66", + "vertex_to": "690", + "timestamp": "2025-11-27T04:01:51.826937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832544, - "rtt_ms": 1.832544, + "rtt_ns": 1359708, + "rtt_ms": 1.359708, "checkpoint": 0, - "vertex_from": "66", - "vertex_to": "690", - "timestamp": "2025-11-27T01:21:53.359922909Z" + "vertex_from": "67", + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:51.827176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906134, - "rtt_ms": 1.906134, + "rtt_ns": 1707375, + "rtt_ms": 1.707375, "checkpoint": 0, "vertex_from": "66", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.359930329Z" + "vertex_to": "67", + "timestamp": "2025-11-27T04:01:51.827224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544435, - "rtt_ms": 1.544435, + "rtt_ns": 1458250, + "rtt_ms": 1.45825, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:53.360268008Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:51.82724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609705, - "rtt_ms": 1.609705, + "rtt_ns": 1541875, + "rtt_ms": 1.541875, "checkpoint": 0, "vertex_from": "67", "vertex_to": "464", - "timestamp": "2025-11-27T01:21:53.360306838Z" + "timestamp": "2025-11-27T04:01:51.827342-08:00" }, { "operation": "add_edge", - "rtt_ns": 774408, - "rtt_ms": 0.774408, + "rtt_ns": 1431542, + "rtt_ms": 1.431542, "checkpoint": 0, "vertex_from": "67", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.360390268Z" + "timestamp": "2025-11-27T04:01:51.827532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484956, - "rtt_ms": 1.484956, + "rtt_ns": 1333500, + "rtt_ms": 1.3335, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.360461828Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.827553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034727, - "rtt_ms": 1.034727, + "rtt_ns": 1444583, + "rtt_ms": 1.444583, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.360957896Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:51.827592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226125, - "rtt_ms": 1.226125, + "rtt_ns": 1854083, + "rtt_ms": 1.854083, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.361079725Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:51.827747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291256, - "rtt_ms": 1.291256, + "rtt_ns": 1180334, + "rtt_ms": 1.180334, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.361216535Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.828421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311896, - "rtt_ms": 1.311896, + "rtt_ns": 1564500, + "rtt_ms": 1.5645, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.361244465Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.828484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368466, - "rtt_ms": 1.368466, + "rtt_ns": 1465209, + "rtt_ms": 1.465209, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.361247585Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.828644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984754, - "rtt_ms": 1.984754, + "rtt_ns": 1723125, + "rtt_ms": 1.723125, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.361893483Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.828661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833674, - "rtt_ms": 1.833674, + "rtt_ns": 1472542, + "rtt_ms": 1.472542, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.362103422Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.828816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812594, - "rtt_ms": 1.812594, + "rtt_ns": 1302833, + "rtt_ms": 1.302833, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.362120782Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:51.828836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927503, - "rtt_ms": 1.927503, + "rtt_ns": 1629750, + "rtt_ms": 1.62975, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.362390361Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.828855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548075, - "rtt_ms": 1.548075, + "rtt_ns": 1324458, + "rtt_ms": 1.324458, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:53.36276728Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:51.828878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552755, - "rtt_ms": 1.552755, + "rtt_ns": 1290041, + "rtt_ms": 1.290041, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "713", - "timestamp": "2025-11-27T01:21:53.36279929Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.828883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587635, - "rtt_ms": 1.587635, + "rtt_ns": 1136583, + "rtt_ms": 1.136583, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:53.36283722Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:51.828884-08:00" }, { "operation": "add_edge", - "rtt_ns": 2482081, - "rtt_ms": 2.482081, + "rtt_ns": 1325791, + "rtt_ms": 1.325791, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:53.362873459Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:01:51.829812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997323, - "rtt_ms": 1.997323, + "rtt_ns": 1171875, + "rtt_ms": 1.171875, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.362956449Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:51.829833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105056, - "rtt_ms": 1.105056, + "rtt_ns": 1592375, + "rtt_ms": 1.592375, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:53.363000559Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:51.830016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586955, - "rtt_ms": 1.586955, + "rtt_ns": 1149083, + "rtt_ms": 1.149083, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "946", - "timestamp": "2025-11-27T01:21:53.363691617Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.830034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614725, - "rtt_ms": 1.614725, + "rtt_ns": 1491833, + "rtt_ms": 1.491833, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "555", - "timestamp": "2025-11-27T01:21:53.363736947Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:51.830136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2666302, - "rtt_ms": 2.666302, + "rtt_ns": 1327625, + "rtt_ms": 1.327625, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:53.363747007Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:01:51.830164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366675, - "rtt_ms": 1.366675, + "rtt_ns": 1411375, + "rtt_ms": 1.411375, "checkpoint": 0, "vertex_from": "67", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.363758686Z" + "timestamp": "2025-11-27T04:01:51.830267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773334, - "rtt_ms": 1.773334, + "rtt_ns": 1446458, + "rtt_ms": 1.446458, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.364573904Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:51.830325-08:00" }, { "operation": "add_edge", - "rtt_ns": 2413252, - "rtt_ms": 2.413252, + "rtt_ns": 1460000, + "rtt_ms": 1.46, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.365371191Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.830345-08:00" }, { "operation": "add_edge", - "rtt_ns": 2597881, - "rtt_ms": 2.597881, + "rtt_ns": 1557416, + "rtt_ms": 1.557416, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.365436401Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:01:51.830375-08:00" }, { "operation": "add_edge", - "rtt_ns": 2713981, - "rtt_ms": 2.713981, + "rtt_ns": 1569708, + "rtt_ms": 1.569708, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:53.365483381Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:01:51.831707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2510972, - "rtt_ms": 2.510972, + "rtt_ns": 1896500, + "rtt_ms": 1.8965, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.365513031Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.83173-08:00" }, { "operation": "add_edge", - "rtt_ns": 2719882, - "rtt_ms": 2.719882, + "rtt_ns": 1796000, + "rtt_ms": 1.796, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.365594891Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:51.831831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937494, - "rtt_ms": 1.937494, + "rtt_ns": 1666834, + "rtt_ms": 1.666834, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:53.365631591Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:51.832013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004153, - "rtt_ms": 2.004153, + "rtt_ns": 2201500, + "rtt_ms": 2.2015, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "737", - "timestamp": "2025-11-27T01:21:53.36574242Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.832014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1996214, - "rtt_ms": 1.996214, + "rtt_ns": 2044042, + "rtt_ms": 2.044042, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.36575611Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:51.832061-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050163, - "rtt_ms": 2.050163, + "rtt_ns": 1764625, + "rtt_ms": 1.764625, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.36579927Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.83214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260216, - "rtt_ms": 1.260216, + "rtt_ns": 1934708, + "rtt_ms": 1.934708, "checkpoint": 0, "vertex_from": "67", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.36583621Z" + "timestamp": "2025-11-27T04:01:51.832261-08:00" }, { "operation": "add_edge", - "rtt_ns": 789238, - "rtt_ms": 0.789238, + "rtt_ns": 2259959, + "rtt_ms": 2.259959, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:53.366161799Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.832425-08:00" }, { "operation": "add_edge", - "rtt_ns": 780438, - "rtt_ms": 0.780438, + "rtt_ns": 2157833, + "rtt_ms": 2.157833, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.366218369Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.832426-08:00" }, { "operation": "add_edge", - "rtt_ns": 757518, - "rtt_ms": 0.757518, + "rtt_ns": 1437833, + "rtt_ms": 1.437833, "checkpoint": 0, "vertex_from": "67", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.366242259Z" + "timestamp": "2025-11-27T04:01:51.833146-08:00" }, { "operation": "add_edge", - "rtt_ns": 731528, - "rtt_ms": 0.731528, + "rtt_ns": 1477292, + "rtt_ms": 1.477292, "checkpoint": 0, "vertex_from": "67", "vertex_to": "568", - "timestamp": "2025-11-27T01:21:53.366245469Z" + "timestamp": "2025-11-27T04:01:51.833209-08:00" }, { "operation": "add_edge", - "rtt_ns": 804267, - "rtt_ms": 0.804267, + "rtt_ns": 1546458, + "rtt_ms": 1.546458, "checkpoint": 0, "vertex_from": "67", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.366400468Z" + "timestamp": "2025-11-27T04:01:51.833378-08:00" }, { "operation": "add_edge", - "rtt_ns": 862457, - "rtt_ms": 0.862457, + "rtt_ns": 1334542, + "rtt_ms": 1.334542, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:53.366495298Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.833397-08:00" }, { "operation": "add_edge", - "rtt_ns": 769398, - "rtt_ms": 0.769398, + "rtt_ns": 1272125, + "rtt_ms": 1.272125, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.366526648Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.833413-08:00" }, { "operation": "add_edge", - "rtt_ns": 848338, - "rtt_ms": 0.848338, + "rtt_ns": 1413667, + "rtt_ms": 1.413667, "checkpoint": 0, "vertex_from": "67", "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.366591798Z" + "timestamp": "2025-11-27T04:01:51.833429-08:00" }, { "operation": "add_edge", - "rtt_ns": 843077, - "rtt_ms": 0.843077, + "rtt_ns": 1433500, + "rtt_ms": 1.4335, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.366643437Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:51.833447-08:00" }, { "operation": "add_edge", - "rtt_ns": 837677, - "rtt_ms": 0.837677, + "rtt_ns": 1287500, + "rtt_ms": 1.2875, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:53.366675307Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.833714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058366, - "rtt_ms": 1.058366, + "rtt_ns": 1516958, + "rtt_ms": 1.516958, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.367301715Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:51.833779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105546, - "rtt_ms": 1.105546, + "rtt_ns": 1425042, + "rtt_ms": 1.425042, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.367324885Z" + "vertex_to": "108", + "timestamp": "2025-11-27T04:01:51.833851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068077, - "rtt_ms": 1.068077, + "rtt_ns": 1391750, + "rtt_ms": 1.39175, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:53.367471395Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.834538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324896, - "rtt_ms": 1.324896, + "rtt_ns": 1382083, + "rtt_ms": 1.382083, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "108", - "timestamp": "2025-11-27T01:21:53.367487765Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:51.834592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250776, - "rtt_ms": 1.250776, + "rtt_ns": 1581166, + "rtt_ms": 1.581166, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:53.367498225Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:51.835011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171156, - "rtt_ms": 1.171156, + "rtt_ns": 1622292, + "rtt_ms": 1.622292, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:53.367698814Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.83502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647995, - "rtt_ms": 1.647995, + "rtt_ns": 1579958, + "rtt_ms": 1.579958, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.368145093Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.835027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623425, - "rtt_ms": 1.623425, + "rtt_ns": 1659084, + "rtt_ms": 1.659084, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:53.368216702Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:51.835038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667605, - "rtt_ms": 1.667605, + "rtt_ns": 1342083, + "rtt_ms": 1.342083, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.368311882Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.835059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026347, - "rtt_ms": 1.026347, + "rtt_ns": 1712125, + "rtt_ms": 1.712125, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:53.368329362Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:51.835126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672565, - "rtt_ms": 1.672565, + "rtt_ns": 1640541, + "rtt_ms": 1.640541, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.368348632Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:51.835421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919204, - "rtt_ms": 1.919204, + "rtt_ns": 1595500, + "rtt_ms": 1.5955, "checkpoint": 0, "vertex_from": "67", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:53.369247829Z" + "timestamp": "2025-11-27T04:01:51.835449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124846, - "rtt_ms": 1.124846, + "rtt_ns": 1136250, + "rtt_ms": 1.13625, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.369271839Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:51.83573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570865, - "rtt_ms": 1.570865, + "rtt_ns": 1394875, + "rtt_ms": 1.394875, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.369271969Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.835934-08:00" }, { "operation": "add_edge", - "rtt_ns": 958677, - "rtt_ms": 0.958677, + "rtt_ns": 1258292, + "rtt_ms": 1.258292, "checkpoint": 0, "vertex_from": "67", "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.369271979Z" + "timestamp": "2025-11-27T04:01:51.83632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057647, - "rtt_ms": 1.057647, + "rtt_ns": 1578875, + "rtt_ms": 1.578875, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.369275079Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:51.836592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805624, - "rtt_ms": 1.805624, + "rtt_ns": 1582458, + "rtt_ms": 1.582458, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:53.369295029Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.836611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822764, - "rtt_ms": 1.822764, + "rtt_ns": 1498458, + "rtt_ms": 1.498458, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:53.369322299Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:51.836626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875854, - "rtt_ms": 1.875854, + "rtt_ns": 1619000, + "rtt_ms": 1.619, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.369349149Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:51.83664-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1073625, + "rtt_ms": 1.073625, + "checkpoint": 0, + "vertex_from": "431", + "timestamp": "2025-11-27T04:01:51.836806-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1783208, + "rtt_ms": 1.783208, + "checkpoint": 0, + "vertex_from": "67", + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:51.836822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620395, - "rtt_ms": 1.620395, + "rtt_ns": 1417458, + "rtt_ms": 1.417458, "checkpoint": 0, "vertex_from": "67", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.369970197Z" + "timestamp": "2025-11-27T04:01:51.836839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654055, - "rtt_ms": 1.654055, + "rtt_ns": 1404584, + "rtt_ms": 1.404584, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.369984687Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:51.836854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445785, - "rtt_ms": 1.445785, + "rtt_ns": 1426708, + "rtt_ms": 1.426708, "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:53.370723074Z" + "vertex_from": "67", + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:51.837362-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1511166, + "rtt_ms": 1.511166, + "checkpoint": 0, + "vertex_from": "67", + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:51.837832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256296, - "rtt_ms": 1.256296, + "rtt_ns": 1309292, + "rtt_ms": 1.309292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:53.371229073Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:51.837903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966624, - "rtt_ms": 1.966624, + "rtt_ns": 1263958, + "rtt_ms": 1.263958, "checkpoint": 0, "vertex_from": "68", "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.371317543Z" + "timestamp": "2025-11-27T04:01:51.837905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041383, - "rtt_ms": 2.041383, + "rtt_ns": 1496083, + "rtt_ms": 1.496083, "checkpoint": 0, "vertex_from": "68", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.371339332Z" + "timestamp": "2025-11-27T04:01:51.838108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359775, - "rtt_ms": 1.359775, + "rtt_ns": 1550542, + "rtt_ms": 1.550542, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:53.371346192Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.838177-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143223, - "rtt_ms": 2.143223, + "rtt_ns": 1362667, + "rtt_ms": 1.362667, "checkpoint": 0, - "vertex_from": "67", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:53.371418382Z" + "vertex_from": "68", + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:51.838203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175383, - "rtt_ms": 2.175383, + "rtt_ns": 1404375, + "rtt_ms": 1.404375, "checkpoint": 0, "vertex_from": "67", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:53.371429412Z" + "vertex_to": "431", + "timestamp": "2025-11-27T04:01:51.838211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142103, - "rtt_ms": 2.142103, + "rtt_ns": 1356208, + "rtt_ms": 1.356208, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.371465652Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2313443, - "rtt_ms": 2.313443, - "checkpoint": 0, - "vertex_from": "431", - "timestamp": "2025-11-27T01:21:53.371588642Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.838211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489246, - "rtt_ms": 1.489246, + "rtt_ns": 1421125, + "rtt_ms": 1.421125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.37221453Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:51.838244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023216, - "rtt_ms": 1.023216, + "rtt_ns": 1290750, + "rtt_ms": 1.29075, "checkpoint": 0, "vertex_from": "68", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.372253629Z" + "timestamp": "2025-11-27T04:01:51.838653-08:00" }, { "operation": "add_edge", - "rtt_ns": 3126990, - "rtt_ms": 3.12699, + "rtt_ns": 1007667, + "rtt_ms": 1.007667, "checkpoint": 0, - "vertex_from": "67", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:53.372402359Z" + "vertex_from": "68", + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.839186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309535, - "rtt_ms": 1.309535, + "rtt_ns": 1299334, + "rtt_ms": 1.299334, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:53.372628048Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:51.839204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340496, - "rtt_ms": 1.340496, + "rtt_ns": 1297709, + "rtt_ms": 1.297709, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.372681028Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:51.83951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398916, - "rtt_ms": 1.398916, + "rtt_ns": 1413916, + "rtt_ms": 1.413916, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.372747218Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:51.839524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337375, - "rtt_ms": 1.337375, + "rtt_ns": 1641875, + "rtt_ms": 1.641875, "checkpoint": 0, - "vertex_from": "67", - "vertex_to": "431", - "timestamp": "2025-11-27T01:21:53.372926647Z" + "vertex_from": "68", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.839548-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077803, - "rtt_ms": 2.077803, + "rtt_ns": 1743333, + "rtt_ms": 1.743333, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.373509625Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:51.839579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128023, - "rtt_ms": 2.128023, + "rtt_ns": 1554792, + "rtt_ms": 1.554792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:53.373548585Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.839767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2350612, - "rtt_ms": 2.350612, + "rtt_ns": 1584042, + "rtt_ms": 1.584042, "checkpoint": 0, "vertex_from": "68", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.373817394Z" + "timestamp": "2025-11-27T04:01:51.839788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671994, - "rtt_ms": 1.671994, + "rtt_ns": 1556541, + "rtt_ms": 1.556541, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.373887734Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.839802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512945, - "rtt_ms": 1.512945, + "rtt_ns": 1311167, + "rtt_ms": 1.311167, "checkpoint": 0, "vertex_from": "68", "vertex_to": "113", - "timestamp": "2025-11-27T01:21:53.374141913Z" + "timestamp": "2025-11-27T04:01:51.839966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673054, - "rtt_ms": 1.673054, + "rtt_ns": 1491625, + "rtt_ms": 1.491625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:53.374354752Z" + "timestamp": "2025-11-27T04:01:51.840678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462835, - "rtt_ms": 1.462835, + "rtt_ns": 1574291, + "rtt_ms": 1.574291, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "206", - "timestamp": "2025-11-27T01:21:53.374390692Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.840779-08:00" }, { "operation": "add_edge", - "rtt_ns": 2181613, - "rtt_ms": 2.181613, + "rtt_ns": 1162834, + "rtt_ms": 1.162834, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.374440482Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:51.840966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681494, - "rtt_ms": 1.681494, + "rtt_ns": 1216250, + "rtt_ms": 1.21625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.375570678Z" + "timestamp": "2025-11-27T04:01:51.840984-08:00" }, { "operation": "add_edge", - "rtt_ns": 3211279, - "rtt_ms": 3.211279, + "rtt_ns": 1485667, + "rtt_ms": 1.485667, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.375614568Z" + "vertex_to": "206", + "timestamp": "2025-11-27T04:01:51.840999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2880780, - "rtt_ms": 2.88078, + "rtt_ns": 1487292, + "rtt_ms": 1.487292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.375629958Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.841012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216046, - "rtt_ms": 1.216046, + "rtt_ns": 1478125, + "rtt_ms": 1.478125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:53.375657608Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:51.841027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571975, - "rtt_ms": 1.571975, + "rtt_ns": 1351541, + "rtt_ms": 1.351541, "checkpoint": 0, "vertex_from": "68", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.375714658Z" + "timestamp": "2025-11-27T04:01:51.84114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387356, - "rtt_ms": 1.387356, + "rtt_ns": 1561667, + "rtt_ms": 1.561667, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:53.375743078Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2199973, - "rtt_ms": 2.199973, - "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:53.375750188Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:51.841142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378066, - "rtt_ms": 1.378066, + "rtt_ns": 1261208, + "rtt_ms": 1.261208, "checkpoint": 0, "vertex_from": "68", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.375769748Z" + "timestamp": "2025-11-27T04:01:51.841228-08:00" }, { "operation": "add_edge", - "rtt_ns": 2260883, - "rtt_ms": 2.260883, + "rtt_ns": 1210125, + "rtt_ms": 1.210125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.375771288Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.842195-08:00" }, { "operation": "add_edge", - "rtt_ns": 2179093, - "rtt_ms": 2.179093, + "rtt_ns": 1248500, + "rtt_ms": 1.2485, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:53.375997657Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.842215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004747, - "rtt_ms": 1.004747, + "rtt_ns": 1205792, + "rtt_ms": 1.205792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "411", - "timestamp": "2025-11-27T01:21:53.376663465Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:51.842346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315646, - "rtt_ms": 1.315646, + "rtt_ns": 1585584, + "rtt_ms": 1.585584, "checkpoint": 0, "vertex_from": "68", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.376888384Z" + "timestamp": "2025-11-27T04:01:51.842365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352936, - "rtt_ms": 1.352936, + "rtt_ns": 1230500, + "rtt_ms": 1.2305, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.376984674Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.842374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255656, - "rtt_ms": 1.255656, + "rtt_ns": 1694500, + "rtt_ms": 1.6945, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.377027344Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:51.842374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306066, - "rtt_ms": 1.306066, + "rtt_ns": 1425916, + "rtt_ms": 1.425916, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "406", - "timestamp": "2025-11-27T01:21:53.377057624Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.84244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474165, - "rtt_ms": 1.474165, + "rtt_ns": 1423667, + "rtt_ms": 1.423667, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.377090073Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:51.842451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415255, - "rtt_ms": 1.415255, + "rtt_ns": 1259542, + "rtt_ms": 1.259542, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.377130633Z" + "vertex_to": "123", + "timestamp": "2025-11-27T04:01:51.842489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374995, - "rtt_ms": 1.374995, + "rtt_ns": 1537375, + "rtt_ms": 1.537375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "123", - "timestamp": "2025-11-27T01:21:53.377148463Z" + "vertex_to": "411", + "timestamp": "2025-11-27T04:01:51.842539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509055, - "rtt_ms": 1.509055, + "rtt_ns": 1303417, + "rtt_ms": 1.303417, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:53.377256473Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.843744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003307, - "rtt_ms": 1.003307, + "rtt_ns": 1694833, + "rtt_ms": 1.694833, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:53.377667652Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:51.84407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690255, - "rtt_ms": 1.690255, + "rtt_ns": 1765042, + "rtt_ms": 1.765042, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:53.377689162Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:51.844131-08:00" }, { "operation": "add_edge", - "rtt_ns": 833887, - "rtt_ms": 0.833887, + "rtt_ns": 1926042, + "rtt_ms": 1.926042, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:53.377723401Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:51.844142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322096, - "rtt_ms": 1.322096, + "rtt_ns": 1606834, + "rtt_ms": 1.606834, "checkpoint": 0, "vertex_from": "68", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.378579169Z" + "timestamp": "2025-11-27T04:01:51.844148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603725, - "rtt_ms": 1.603725, + "rtt_ns": 2010166, + "rtt_ms": 2.010166, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:53.378591199Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:51.844206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538776, - "rtt_ms": 1.538776, + "rtt_ns": 1730792, + "rtt_ms": 1.730792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.378630639Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.84422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620175, - "rtt_ms": 1.620175, + "rtt_ns": 1936000, + "rtt_ms": 1.936, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:53.378648379Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.844388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612294, - "rtt_ms": 1.612294, + "rtt_ns": 2047792, + "rtt_ms": 2.047792, "checkpoint": 0, "vertex_from": "68", "vertex_to": "353", - "timestamp": "2025-11-27T01:21:53.378671018Z" + "timestamp": "2025-11-27T04:01:51.844423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152637, - "rtt_ms": 1.152637, + "rtt_ns": 2212209, + "rtt_ms": 2.212209, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.378877038Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:51.84456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333465, - "rtt_ms": 1.333465, + "rtt_ns": 1489959, + "rtt_ms": 1.489959, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.379024337Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.845235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895204, - "rtt_ms": 1.895204, + "rtt_ns": 1266167, + "rtt_ms": 1.266167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.379026977Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.845339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390715, - "rtt_ms": 1.390715, + "rtt_ns": 1322292, + "rtt_ms": 1.322292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.379059657Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.845544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927164, - "rtt_ms": 1.927164, + "rtt_ns": 1356042, + "rtt_ms": 1.356042, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.379076917Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.845563-08:00" }, { "operation": "add_edge", - "rtt_ns": 631368, - "rtt_ms": 0.631368, + "rtt_ns": 1453333, + "rtt_ms": 1.453333, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.379280587Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.845585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014827, - "rtt_ms": 1.014827, + "rtt_ns": 1312167, + "rtt_ms": 1.312167, "checkpoint": 0, "vertex_from": "68", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.379892695Z" + "timestamp": "2025-11-27T04:01:51.845736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299646, - "rtt_ms": 1.299646, + "rtt_ns": 1362833, + "rtt_ms": 1.362833, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.379893005Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:51.845752-08:00" }, { "operation": "add_edge", - "rtt_ns": 895057, - "rtt_ms": 0.895057, + "rtt_ns": 1623875, + "rtt_ms": 1.623875, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.379920504Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:51.845768-08:00" }, { "operation": "add_edge", - "rtt_ns": 921067, - "rtt_ms": 0.921067, + "rtt_ns": 1663041, + "rtt_ms": 1.663041, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:53.379981684Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.845813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373615, - "rtt_ms": 1.373615, + "rtt_ns": 1262083, + "rtt_ms": 1.262083, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.380005304Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.845822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343746, - "rtt_ms": 1.343746, + "rtt_ns": 1181416, + "rtt_ms": 1.181416, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:53.380015544Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:51.846521-08:00" }, { "operation": "add_edge", - "rtt_ns": 957107, - "rtt_ms": 0.957107, + "rtt_ns": 1303917, + "rtt_ms": 1.303917, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:53.380034514Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.84654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010597, - "rtt_ms": 1.010597, + "rtt_ns": 1034500, + "rtt_ms": 1.0345, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.380038764Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:51.846787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470825, - "rtt_ms": 1.470825, + "rtt_ns": 1400833, + "rtt_ms": 1.400833, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:53.380050924Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.846965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177816, - "rtt_ms": 1.177816, + "rtt_ns": 1397834, + "rtt_ms": 1.397834, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:53.381071321Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.846984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259626, - "rtt_ms": 1.259626, + "rtt_ns": 1178916, + "rtt_ms": 1.178916, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:53.38124206Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:51.847002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029353, - "rtt_ms": 2.029353, + "rtt_ns": 1566500, + "rtt_ms": 1.5665, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.38131069Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:51.847111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430165, - "rtt_ms": 1.430165, + "rtt_ns": 1312083, + "rtt_ms": 1.312083, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.38132398Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:01:51.847128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370966, - "rtt_ms": 1.370966, + "rtt_ns": 1471792, + "rtt_ms": 1.471792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:53.38138758Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:51.84724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434885, - "rtt_ms": 1.434885, + "rtt_ns": 1563375, + "rtt_ms": 1.563375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.381475079Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:51.8473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572825, - "rtt_ms": 1.572825, + "rtt_ns": 1307166, + "rtt_ms": 1.307166, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.381494439Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.848095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546135, - "rtt_ms": 1.546135, + "rtt_ns": 1637167, + "rtt_ms": 1.637167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "721", - "timestamp": "2025-11-27T01:21:53.381555529Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:51.848159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594225, - "rtt_ms": 1.594225, + "rtt_ns": 1157209, + "rtt_ms": 1.157209, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:53.381629299Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.848269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612625, - "rtt_ms": 1.612625, + "rtt_ns": 1804792, + "rtt_ms": 1.804792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.381665279Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.848346-08:00" }, { "operation": "add_edge", - "rtt_ns": 804777, - "rtt_ms": 0.804777, + "rtt_ns": 1629875, + "rtt_ms": 1.629875, "checkpoint": 0, "vertex_from": "68", "vertex_to": "112", - "timestamp": "2025-11-27T01:21:53.381877048Z" + "timestamp": "2025-11-27T04:01:51.848596-08:00" }, { "operation": "add_edge", - "rtt_ns": 647138, - "rtt_ms": 0.647138, + "rtt_ns": 1623042, + "rtt_ms": 1.623042, "checkpoint": 0, "vertex_from": "68", "vertex_to": "412", - "timestamp": "2025-11-27T01:21:53.381890028Z" + "timestamp": "2025-11-27T04:01:51.848608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068516, - "rtt_ms": 1.068516, + "rtt_ns": 1650375, + "rtt_ms": 1.650375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.382380096Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.848778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012287, - "rtt_ms": 1.012287, + "rtt_ns": 1539458, + "rtt_ms": 1.539458, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.382508076Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:51.848781-08:00" }, { "operation": "add_edge", - "rtt_ns": 984507, - "rtt_ms": 0.984507, + "rtt_ns": 1488042, + "rtt_ms": 1.488042, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.382541216Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:51.848791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225485, - "rtt_ms": 1.225485, + "rtt_ns": 1808083, + "rtt_ms": 1.808083, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.382614385Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.848811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320005, - "rtt_ms": 1.320005, + "rtt_ns": 1269125, + "rtt_ms": 1.269125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.382646485Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.849367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243386, - "rtt_ms": 1.243386, + "rtt_ns": 1141000, + "rtt_ms": 1.141, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.382719625Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:51.849411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095296, - "rtt_ms": 1.095296, + "rtt_ns": 1266792, + "rtt_ms": 1.266792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.382761555Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:51.849427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206406, - "rtt_ms": 1.206406, + "rtt_ns": 1500750, + "rtt_ms": 1.50075, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:53.382838255Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.849849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153476, - "rtt_ms": 1.153476, + "rtt_ns": 1385167, + "rtt_ms": 1.385167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:53.383534982Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:51.850177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664424, - "rtt_ms": 1.664424, + "rtt_ns": 1630208, + "rtt_ms": 1.630208, "checkpoint": 0, "vertex_from": "68", "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.383555442Z" + "timestamp": "2025-11-27T04:01:51.850228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680114, - "rtt_ms": 1.680114, + "rtt_ns": 1745625, + "rtt_ms": 1.745625, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.383558582Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:51.850526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696455, - "rtt_ms": 1.696455, + "rtt_ns": 1765708, + "rtt_ms": 1.765708, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:53.38434387Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.850547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074893, - "rtt_ms": 2.074893, + "rtt_ns": 1944000, + "rtt_ms": 1.944, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:53.384584479Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:51.850553-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073463, - "rtt_ms": 2.073463, + "rtt_ns": 1751333, + "rtt_ms": 1.751333, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:53.384794348Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:51.850563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339136, - "rtt_ms": 1.339136, + "rtt_ns": 1209667, + "rtt_ms": 1.209667, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "754", - "timestamp": "2025-11-27T01:21:53.384899178Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:51.850579-08:00" }, { "operation": "add_edge", - "rtt_ns": 2353893, - "rtt_ms": 2.353893, + "rtt_ns": 1157750, + "rtt_ms": 1.15775, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:53.384969648Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:51.850587-08:00" }, { "operation": "add_edge", - "rtt_ns": 2585611, - "rtt_ms": 2.585611, + "rtt_ns": 1269166, + "rtt_ms": 1.269166, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.385128307Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:51.850681-08:00" }, { "operation": "add_edge", - "rtt_ns": 2909880, - "rtt_ms": 2.90988, + "rtt_ns": 1446625, + "rtt_ms": 1.446625, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:53.385748815Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:51.851297-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315493, - "rtt_ms": 2.315493, + "rtt_ns": 1070000, + "rtt_ms": 1.07, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.385872395Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.851597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375473, - "rtt_ms": 2.375473, + "rtt_ns": 1257750, + "rtt_ms": 1.25775, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:53.385911385Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:51.851813-08:00" }, { "operation": "add_edge", - "rtt_ns": 3211890, - "rtt_ms": 3.21189, + "rtt_ns": 1698417, + "rtt_ms": 1.698417, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.385974325Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.851877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658904, - "rtt_ms": 1.658904, + "rtt_ns": 1678083, + "rtt_ms": 1.678083, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.386005094Z" + "vertex_to": "754", + "timestamp": "2025-11-27T04:01:51.851907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483285, - "rtt_ms": 1.483285, + "rtt_ns": 1480500, + "rtt_ms": 1.4805, "checkpoint": 0, "vertex_from": "68", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:53.386069074Z" + "timestamp": "2025-11-27T04:01:51.852028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302246, - "rtt_ms": 1.302246, + "rtt_ns": 1467375, + "rtt_ms": 1.467375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:53.386097884Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.852047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249026, - "rtt_ms": 1.249026, + "rtt_ns": 1370292, + "rtt_ms": 1.370292, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:53.386149384Z" + "vertex_to": "70", + "timestamp": "2025-11-27T04:01:51.852053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273346, - "rtt_ms": 1.273346, + "rtt_ns": 1501709, + "rtt_ms": 1.501709, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.386243924Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:51.852066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131317, - "rtt_ms": 1.131317, + "rtt_ns": 1497500, + "rtt_ms": 1.4975, "checkpoint": 0, "vertex_from": "68", "vertex_to": "121", - "timestamp": "2025-11-27T01:21:53.386261614Z" + "timestamp": "2025-11-27T04:01:51.852086-08:00" }, { "operation": "add_edge", - "rtt_ns": 911447, - "rtt_ms": 0.911447, + "rtt_ns": 1316208, + "rtt_ms": 1.316208, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.386824172Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:51.852615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099627, - "rtt_ms": 1.099627, + "rtt_ns": 1607833, + "rtt_ms": 1.607833, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "70", - "timestamp": "2025-11-27T01:21:53.386849542Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.853206-08:00" }, { "operation": "add_edge", - "rtt_ns": 982297, - "rtt_ms": 0.982297, + "rtt_ns": 1408625, + "rtt_ms": 1.408625, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:53.386856142Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:51.853224-08:00" }, { "operation": "add_edge", - "rtt_ns": 998817, - "rtt_ms": 0.998817, + "rtt_ns": 1075791, + "rtt_ms": 1.075791, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.387004901Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:01:51.853692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596704, - "rtt_ms": 1.596704, + "rtt_ns": 1641750, + "rtt_ms": 1.64175, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:53.387572449Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.853709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671055, - "rtt_ms": 1.671055, + "rtt_ns": 1847500, + "rtt_ms": 1.8475, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:53.387741119Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.853726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712735, - "rtt_ms": 1.712735, + "rtt_ns": 1711666, + "rtt_ms": 1.711666, "checkpoint": 0, "vertex_from": "68", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:53.387811809Z" + "timestamp": "2025-11-27T04:01:51.853741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560245, - "rtt_ms": 1.560245, + "rtt_ns": 1702083, + "rtt_ms": 1.702083, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.387823169Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:01:51.853757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747194, - "rtt_ms": 1.747194, + "rtt_ns": 1725417, + "rtt_ms": 1.725417, "checkpoint": 0, "vertex_from": "68", "vertex_to": "454", - "timestamp": "2025-11-27T01:21:53.387897918Z" + "timestamp": "2025-11-27T04:01:51.853773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969554, - "rtt_ms": 1.969554, + "rtt_ns": 1704791, + "rtt_ms": 1.704791, "checkpoint": 0, "vertex_from": "68", "vertex_to": "311", - "timestamp": "2025-11-27T01:21:53.388795186Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1223917, - "rtt_ms": 1.223917, - "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:53.388797416Z" + "timestamp": "2025-11-27T04:01:51.853791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962004, - "rtt_ms": 1.962004, + "rtt_ns": 1944583, + "rtt_ms": 1.944583, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.388819156Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:51.853854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080977, - "rtt_ms": 1.080977, + "rtt_ns": 1279416, + "rtt_ms": 1.279416, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:53.388823516Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:51.855021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2646841, - "rtt_ms": 2.646841, + "rtt_ns": 1345792, + "rtt_ms": 1.345792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "661", - "timestamp": "2025-11-27T01:21:53.388892395Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:51.855039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968174, - "rtt_ms": 1.968174, + "rtt_ns": 1296291, + "rtt_ms": 1.296291, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.388974295Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:51.855054-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125293, - "rtt_ms": 2.125293, + "rtt_ns": 1293708, + "rtt_ms": 1.293708, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "403", - "timestamp": "2025-11-27T01:21:53.388976655Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.855067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368255, - "rtt_ms": 1.368255, + "rtt_ns": 1862208, + "rtt_ms": 1.862208, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.389181134Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:51.855087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807664, - "rtt_ms": 1.807664, + "rtt_ns": 1887875, + "rtt_ms": 1.887875, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:53.389632093Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.855096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821565, - "rtt_ms": 1.821565, + "rtt_ns": 1255541, + "rtt_ms": 1.255541, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:53.389720563Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:51.85511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210276, - "rtt_ms": 1.210276, + "rtt_ns": 1414500, + "rtt_ms": 1.4145, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.390009312Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:51.855124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223656, - "rtt_ms": 1.223656, + "rtt_ns": 1410375, + "rtt_ms": 1.410375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:53.390049852Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.855138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450805, - "rtt_ms": 1.450805, + "rtt_ns": 1693792, + "rtt_ms": 1.693792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.390247291Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.855486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475055, - "rtt_ms": 1.475055, + "rtt_ns": 3059000, + "rtt_ms": 3.059, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:53.390297771Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:51.858082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406306, - "rtt_ms": 1.406306, + "rtt_ns": 2597125, + "rtt_ms": 2.597125, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.390383911Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:01:51.858083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442765, - "rtt_ms": 1.442765, + "rtt_ns": 2972583, + "rtt_ms": 2.972583, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:53.39041892Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:51.858083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322946, - "rtt_ms": 1.322946, + "rtt_ns": 2986875, + "rtt_ms": 2.986875, "checkpoint": 0, "vertex_from": "68", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.390956269Z" + "timestamp": "2025-11-27T04:01:51.858083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054516, - "rtt_ms": 1.054516, + "rtt_ns": 3028667, + "rtt_ms": 3.028667, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.391105148Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.858097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924114, - "rtt_ms": 1.924114, + "rtt_ns": 3027625, + "rtt_ms": 3.027625, "checkpoint": 0, "vertex_from": "68", "vertex_to": "232", - "timestamp": "2025-11-27T01:21:53.391106578Z" + "timestamp": "2025-11-27T04:01:51.858115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276063, - "rtt_ms": 2.276063, + "rtt_ns": 3105458, + "rtt_ms": 3.105458, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "362", - "timestamp": "2025-11-27T01:21:53.391170778Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:51.85816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282516, - "rtt_ms": 1.282516, + "rtt_ns": 3065083, + "rtt_ms": 3.065083, "checkpoint": 0, "vertex_from": "68", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.391292998Z" + "timestamp": "2025-11-27T04:01:51.85819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574115, - "rtt_ms": 1.574115, + "rtt_ns": 3166250, + "rtt_ms": 3.16625, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:53.391296388Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.858304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055297, - "rtt_ms": 1.055297, + "rtt_ns": 3305750, + "rtt_ms": 3.30575, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "914", - "timestamp": "2025-11-27T01:21:53.391303808Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:01:51.858346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611574, - "rtt_ms": 1.611574, + "rtt_ns": 1198625, + "rtt_ms": 1.198625, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.391996605Z" + "vertex_to": "69", + "timestamp": "2025-11-27T04:01:51.859546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607785, - "rtt_ms": 1.607785, + "rtt_ns": 1499250, + "rtt_ms": 1.49925, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.392027895Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:51.85966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756954, - "rtt_ms": 1.756954, + "rtt_ns": 1687375, + "rtt_ms": 1.687375, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "826", - "timestamp": "2025-11-27T01:21:53.392056155Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:51.859774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224966, - "rtt_ms": 1.224966, + "rtt_ns": 1700500, + "rtt_ms": 1.7005, "checkpoint": 0, "vertex_from": "68", "vertex_to": "701", - "timestamp": "2025-11-27T01:21:53.392332884Z" + "timestamp": "2025-11-27T04:01:51.859817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246526, - "rtt_ms": 1.246526, + "rtt_ns": 1628167, + "rtt_ms": 1.628167, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:53.392353594Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:51.859819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413895, - "rtt_ms": 1.413895, + "rtt_ns": 1803792, + "rtt_ms": 1.803792, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:53.392372204Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:51.859902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242786, - "rtt_ms": 1.242786, + "rtt_ns": 1657042, + "rtt_ms": 1.657042, "checkpoint": 0, "vertex_from": "68", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:53.392541094Z" + "timestamp": "2025-11-27T04:01:51.859962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719854, - "rtt_ms": 1.719854, + "rtt_ns": 1887250, + "rtt_ms": 1.88725, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:53.392895842Z" + "vertex_to": "826", + "timestamp": "2025-11-27T04:01:51.859971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602344, - "rtt_ms": 1.602344, + "rtt_ns": 1892417, + "rtt_ms": 1.892417, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:53.392897032Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:51.859979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595944, - "rtt_ms": 1.595944, + "rtt_ns": 1945416, + "rtt_ms": 1.945416, "checkpoint": 0, "vertex_from": "68", - "vertex_to": "69", - "timestamp": "2025-11-27T01:21:53.392901402Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.86003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168606, - "rtt_ms": 1.168606, + "rtt_ns": 1370708, + "rtt_ms": 1.370708, "checkpoint": 0, "vertex_from": "68", "vertex_to": "779", - "timestamp": "2025-11-27T01:21:53.393167161Z" + "timestamp": "2025-11-27T04:01:51.860918-08:00" }, { "operation": "add_edge", - "rtt_ns": 838657, - "rtt_ms": 0.838657, + "rtt_ns": 1274375, + "rtt_ms": 1.274375, "checkpoint": 0, - "vertex_from": "69", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.393172941Z" + "vertex_from": "68", + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:51.860935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098146, - "rtt_ms": 1.098146, + "rtt_ns": 1350750, + "rtt_ms": 1.35075, "checkpoint": 0, - "vertex_from": "69", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.3936421Z" + "vertex_from": "68", + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:51.861126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721555, - "rtt_ms": 1.721555, + "rtt_ns": 1271417, + "rtt_ms": 1.271417, "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:53.39375081Z" + "vertex_from": "69", + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:51.861302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459215, - "rtt_ms": 1.459215, + "rtt_ns": 1516209, + "rtt_ms": 1.516209, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.393833289Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.861335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563425, - "rtt_ms": 1.563425, + "rtt_ns": 1523000, + "rtt_ms": 1.523, "checkpoint": 0, "vertex_from": "69", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.393918559Z" + "timestamp": "2025-11-27T04:01:51.861344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873604, - "rtt_ms": 1.873604, + "rtt_ns": 1411708, + "rtt_ms": 1.411708, "checkpoint": 0, - "vertex_from": "68", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:53.393931109Z" + "vertex_from": "69", + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.861385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722365, - "rtt_ms": 1.722365, + "rtt_ns": 1544959, + "rtt_ms": 1.544959, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:53.394625147Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.861448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502575, - "rtt_ms": 1.502575, + "rtt_ns": 1480167, + "rtt_ms": 1.480167, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:53.394677516Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.86146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807084, - "rtt_ms": 1.807084, + "rtt_ns": 1624792, + "rtt_ms": 1.624792, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.394705646Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.861589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826404, - "rtt_ms": 1.826404, + "rtt_ns": 1227375, + "rtt_ms": 1.227375, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.394723736Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.862354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561105, - "rtt_ms": 1.561105, + "rtt_ns": 1515959, + "rtt_ms": 1.515959, "checkpoint": 0, "vertex_from": "69", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.394732536Z" + "timestamp": "2025-11-27T04:01:51.862436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731264, - "rtt_ms": 1.731264, + "rtt_ns": 1348917, + "rtt_ms": 1.348917, "checkpoint": 0, "vertex_from": "69", "vertex_to": "414", - "timestamp": "2025-11-27T01:21:53.395483424Z" + "timestamp": "2025-11-27T04:01:51.862654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743624, - "rtt_ms": 1.743624, + "rtt_ns": 1325083, + "rtt_ms": 1.325083, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:53.395577813Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.862671-08:00" }, { "operation": "add_edge", - "rtt_ns": 994766, - "rtt_ms": 0.994766, + "rtt_ns": 1477708, + "rtt_ms": 1.477708, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:53.395620843Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:51.862814-08:00" }, { "operation": "add_edge", - "rtt_ns": 960557, - "rtt_ms": 0.960557, + "rtt_ns": 1896417, + "rtt_ms": 1.896417, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.395685463Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:51.862833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017367, - "rtt_ms": 1.017367, + "rtt_ns": 1457500, + "rtt_ms": 1.4575, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:53.395723813Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:51.862844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084667, - "rtt_ms": 1.084667, + "rtt_ns": 1402375, + "rtt_ms": 1.402375, "checkpoint": 0, "vertex_from": "69", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.395762903Z" + "timestamp": "2025-11-27T04:01:51.862863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922183, - "rtt_ms": 1.922183, + "rtt_ns": 1430167, + "rtt_ms": 1.430167, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:53.395854312Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:51.86288-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230462, - "rtt_ms": 2.230462, + "rtt_ns": 1292209, + "rtt_ms": 1.292209, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.395873732Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:51.862882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011823, - "rtt_ms": 2.011823, + "rtt_ns": 1943041, + "rtt_ms": 1.943041, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.395931862Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.864299-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1655708, + "rtt_ms": 1.655708, + "checkpoint": 0, + "vertex_from": "69", + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:51.86431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917914, - "rtt_ms": 1.917914, + "rtt_ns": 2086083, + "rtt_ms": 2.086083, "checkpoint": 0, "vertex_from": "69", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.39665156Z" + "timestamp": "2025-11-27T04:01:51.864522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208567, - "rtt_ms": 1.208567, + "rtt_ns": 1854042, + "rtt_ms": 1.854042, "checkpoint": 0, "vertex_from": "69", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.3967874Z" + "timestamp": "2025-11-27T04:01:51.864525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164716, - "rtt_ms": 1.164716, + "rtt_ns": 1936917, + "rtt_ms": 1.936917, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.396850779Z" + "vertex_to": "71", + "timestamp": "2025-11-27T04:01:51.864752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453115, - "rtt_ms": 1.453115, + "rtt_ns": 1882375, + "rtt_ms": 1.882375, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:53.396937769Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:51.864765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239616, - "rtt_ms": 1.239616, + "rtt_ns": 1892667, + "rtt_ms": 1.892667, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:53.397003489Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.864775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344866, - "rtt_ms": 1.344866, + "rtt_ns": 2096167, + "rtt_ms": 2.096167, "checkpoint": 0, "vertex_from": "69", "vertex_to": "329", - "timestamp": "2025-11-27T01:21:53.397069579Z" + "timestamp": "2025-11-27T04:01:51.864943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481126, - "rtt_ms": 1.481126, + "rtt_ns": 2145875, + "rtt_ms": 2.145875, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "71", - "timestamp": "2025-11-27T01:21:53.397103699Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:51.86501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199336, - "rtt_ms": 1.199336, + "rtt_ns": 2202833, + "rtt_ms": 2.202833, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:53.397132048Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.865037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364326, - "rtt_ms": 1.364326, + "rtt_ns": 1617458, + "rtt_ms": 1.617458, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.397219478Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:51.865918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362086, - "rtt_ms": 1.362086, + "rtt_ns": 1419583, + "rtt_ms": 1.419583, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.397236548Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.865946-08:00" }, { "operation": "add_edge", - "rtt_ns": 653658, - "rtt_ms": 0.653658, + "rtt_ns": 1674917, + "rtt_ms": 1.674917, "checkpoint": 0, "vertex_from": "69", "vertex_to": "658", - "timestamp": "2025-11-27T01:21:53.397305868Z" + "timestamp": "2025-11-27T04:01:51.865986-08:00" }, { "operation": "add_edge", - "rtt_ns": 778097, - "rtt_ms": 0.778097, + "rtt_ns": 1517959, + "rtt_ms": 1.517959, "checkpoint": 0, "vertex_from": "69", "vertex_to": "184", - "timestamp": "2025-11-27T01:21:53.397567487Z" + "timestamp": "2025-11-27T04:01:51.866041-08:00" }, { "operation": "add_edge", - "rtt_ns": 725528, - "rtt_ms": 0.725528, + "rtt_ns": 1202083, + "rtt_ms": 1.202083, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.397577397Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:51.866146-08:00" }, { "operation": "add_edge", - "rtt_ns": 759157, - "rtt_ms": 0.759157, + "rtt_ns": 1538250, + "rtt_ms": 1.53825, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.397763536Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:51.866315-08:00" }, { "operation": "add_edge", - "rtt_ns": 823727, - "rtt_ms": 0.823727, + "rtt_ns": 1699625, + "rtt_ms": 1.699625, "checkpoint": 0, "vertex_from": "69", "vertex_to": "786", - "timestamp": "2025-11-27T01:21:53.397763546Z" + "timestamp": "2025-11-27T04:01:51.866455-08:00" }, { "operation": "add_edge", - "rtt_ns": 829737, - "rtt_ms": 0.829737, + "rtt_ns": 1706000, + "rtt_ms": 1.706, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:53.397900916Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.866472-08:00" }, { "operation": "add_edge", - "rtt_ns": 831527, - "rtt_ms": 0.831527, + "rtt_ns": 1567125, + "rtt_ms": 1.567125, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:53.397936486Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:51.866577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375736, - "rtt_ms": 1.375736, + "rtt_ns": 1632834, + "rtt_ms": 1.632834, "checkpoint": 0, "vertex_from": "69", "vertex_to": "812", - "timestamp": "2025-11-27T01:21:53.398596114Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1498166, - "rtt_ms": 1.498166, - "checkpoint": 0, - "vertex_from": "69", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:53.398631434Z" + "timestamp": "2025-11-27T04:01:51.86667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403355, - "rtt_ms": 1.403355, + "rtt_ns": 1264417, + "rtt_ms": 1.264417, "checkpoint": 0, "vertex_from": "69", "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.398710263Z" + "timestamp": "2025-11-27T04:01:51.867211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191846, - "rtt_ms": 1.191846, + "rtt_ns": 1307000, + "rtt_ms": 1.307, "checkpoint": 0, "vertex_from": "69", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.398760393Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1197146, - "rtt_ms": 1.197146, - "checkpoint": 0, - "vertex_from": "69", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.398775913Z" + "timestamp": "2025-11-27T04:01:51.867296-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1543105, - "rtt_ms": 1.543105, + "rtt_ns": 1392291, + "rtt_ms": 1.392291, "checkpoint": 0, "vertex_from": "846", - "timestamp": "2025-11-27T01:21:53.398782423Z" + "timestamp": "2025-11-27T04:01:51.867313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006284, - "rtt_ms": 2.006284, + "rtt_ns": 1157750, + "rtt_ms": 1.15775, "checkpoint": 0, "vertex_from": "69", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.39977214Z" + "timestamp": "2025-11-27T04:01:51.867473-08:00" }, { "operation": "add_edge", - "rtt_ns": 2644782, - "rtt_ms": 2.644782, + "rtt_ns": 1395209, + "rtt_ms": 1.395209, "checkpoint": 0, "vertex_from": "69", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.400410128Z" + "timestamp": "2025-11-27T04:01:51.867542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563382, - "rtt_ms": 2.563382, + "rtt_ns": 1609584, + "rtt_ms": 1.609584, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.400501008Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.867652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2616882, - "rtt_ms": 2.616882, + "rtt_ns": 1273708, + "rtt_ms": 1.273708, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.400519588Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.867747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942213, - "rtt_ms": 1.942213, + "rtt_ns": 1241917, + "rtt_ms": 1.241917, "checkpoint": 0, "vertex_from": "69", "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.400539567Z" + "timestamp": "2025-11-27T04:01:51.867821-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1381750, + "rtt_ms": 1.38175, + "checkpoint": 0, + "vertex_from": "69", + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.867837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911463, - "rtt_ms": 1.911463, + "rtt_ns": 1700000, + "rtt_ms": 1.7, "checkpoint": 0, "vertex_from": "69", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:53.400544777Z" + "timestamp": "2025-11-27T04:01:51.868372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905304, - "rtt_ms": 1.905304, + "rtt_ns": 1267459, + "rtt_ms": 1.267459, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.400667847Z" + "vertex_to": "846", + "timestamp": "2025-11-27T04:01:51.868581-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002494, - "rtt_ms": 2.002494, + "rtt_ns": 1303500, + "rtt_ms": 1.3035, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.400713797Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.868602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962114, - "rtt_ms": 1.962114, + "rtt_ns": 1705458, + "rtt_ms": 1.705458, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.400739067Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.868918-08:00" }, { "operation": "add_edge", - "rtt_ns": 980977, - "rtt_ms": 0.980977, + "rtt_ns": 1264417, + "rtt_ms": 1.264417, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.400754467Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:51.868919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971974, - "rtt_ms": 1.971974, + "rtt_ns": 1488625, + "rtt_ms": 1.488625, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "846", - "timestamp": "2025-11-27T01:21:53.400754827Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.869031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155306, - "rtt_ms": 1.155306, + "rtt_ns": 1660042, + "rtt_ms": 1.660042, "checkpoint": 0, "vertex_from": "69", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:53.401566344Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:51.869134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053817, - "rtt_ms": 1.053817, + "rtt_ns": 1369458, + "rtt_ms": 1.369458, "checkpoint": 0, "vertex_from": "70", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.401594414Z" + "timestamp": "2025-11-27T04:01:51.869208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177196, - "rtt_ms": 1.177196, + "rtt_ns": 1480875, + "rtt_ms": 1.480875, "checkpoint": 0, "vertex_from": "69", "vertex_to": "598", - "timestamp": "2025-11-27T01:21:53.401679754Z" + "timestamp": "2025-11-27T04:01:51.869229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149817, - "rtt_ms": 1.149817, + "rtt_ns": 1419375, + "rtt_ms": 1.419375, "checkpoint": 0, - "vertex_from": "70", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:53.401695304Z" + "vertex_from": "69", + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.869241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191876, - "rtt_ms": 1.191876, + "rtt_ns": 1520625, + "rtt_ms": 1.520625, "checkpoint": 0, - "vertex_from": "69", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.401712284Z" + "vertex_from": "70", + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:51.869894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022896, - "rtt_ms": 1.022896, + "rtt_ns": 1336250, + "rtt_ms": 1.33625, "checkpoint": 0, "vertex_from": "70", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.401737363Z" + "timestamp": "2025-11-27T04:01:51.869938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712084, - "rtt_ms": 1.712084, + "rtt_ns": 1620666, + "rtt_ms": 1.620666, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.402468841Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:51.870203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745294, - "rtt_ms": 1.745294, + "rtt_ns": 1210375, + "rtt_ms": 1.210375, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.402501911Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.870242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806924, - "rtt_ms": 1.806924, + "rtt_ns": 1428917, + "rtt_ms": 1.428917, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:53.402546891Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:51.87067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883264, - "rtt_ms": 1.883264, + "rtt_ns": 1780125, + "rtt_ms": 1.780125, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:53.402552271Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:51.870699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412435, - "rtt_ms": 1.412435, + "rtt_ns": 1781167, + "rtt_ms": 1.781167, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:53.402980049Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.870701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456605, - "rtt_ms": 1.456605, + "rtt_ns": 1778625, + "rtt_ms": 1.778625, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.403051859Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:51.870914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433345, - "rtt_ms": 1.433345, + "rtt_ns": 1775625, + "rtt_ms": 1.775625, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:53.403129819Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:51.871006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529095, - "rtt_ms": 1.529095, + "rtt_ns": 1812750, + "rtt_ms": 1.81275, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:53.403209779Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.871021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297776, - "rtt_ms": 1.297776, + "rtt_ns": 1276125, + "rtt_ms": 1.276125, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:53.403767517Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:01:51.871172-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200892, - "rtt_ms": 2.200892, + "rtt_ns": 1344250, + "rtt_ms": 1.34425, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "91", - "timestamp": "2025-11-27T01:21:53.403914896Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:51.871284-08:00" }, { "operation": "add_edge", - "rtt_ns": 943987, - "rtt_ms": 0.943987, + "rtt_ns": 1585333, + "rtt_ms": 1.585333, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:53.403925316Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:51.871829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2235823, - "rtt_ms": 2.235823, + "rtt_ns": 1792250, + "rtt_ms": 1.79225, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.403974286Z" + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:51.871996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476305, - "rtt_ms": 1.476305, + "rtt_ns": 1449083, + "rtt_ms": 1.449083, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.404029506Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:51.87212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548105, - "rtt_ms": 1.548105, + "rtt_ns": 2111416, + "rtt_ms": 2.111416, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.404051686Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.872813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563975, - "rtt_ms": 1.563975, + "rtt_ns": 2127666, + "rtt_ms": 2.127666, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:53.404111876Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:51.87283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656175, - "rtt_ms": 1.656175, + "rtt_ns": 1965000, + "rtt_ms": 1.965, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.404709484Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:51.872987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047886, - "rtt_ms": 1.047886, + "rtt_ns": 1848375, + "rtt_ms": 1.848375, "checkpoint": 0, "vertex_from": "70", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.404816503Z" + "timestamp": "2025-11-27T04:01:51.873021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730504, - "rtt_ms": 1.730504, + "rtt_ns": 2389875, + "rtt_ms": 2.389875, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.404861443Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:51.873305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672074, - "rtt_ms": 1.672074, + "rtt_ns": 1423250, + "rtt_ms": 1.42325, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:53.404882813Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.873544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196766, - "rtt_ms": 1.196766, + "rtt_ns": 2277083, + "rtt_ms": 2.277083, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:53.405249472Z" + "vertex_to": "72", + "timestamp": "2025-11-27T04:01:51.873561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921274, - "rtt_ms": 1.921274, + "rtt_ns": 2572959, + "rtt_ms": 2.572959, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.40589669Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:51.873579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039177, - "rtt_ms": 1.039177, + "rtt_ns": 1585167, + "rtt_ms": 1.585167, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.40590208Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.873582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884764, - "rtt_ms": 1.884764, + "rtt_ns": 1915167, + "rtt_ms": 1.915167, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.40591558Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:51.873747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210336, - "rtt_ms": 1.210336, + "rtt_ns": 1065042, + "rtt_ms": 1.065042, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.40592117Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.874087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040717, - "rtt_ms": 1.040717, + "rtt_ns": 1282125, + "rtt_ms": 1.282125, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.40592532Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.874114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120037, - "rtt_ms": 1.120037, + "rtt_ns": 1152833, + "rtt_ms": 1.152833, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.40593954Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.874141-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016474, - "rtt_ms": 2.016474, + "rtt_ns": 1566042, + "rtt_ms": 1.566042, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:53.40594306Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:51.87438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834454, - "rtt_ms": 1.834454, + "rtt_ns": 1269542, + "rtt_ms": 1.269542, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.40594764Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.874576-08:00" }, { "operation": "add_edge", - "rtt_ns": 2116163, - "rtt_ms": 2.116163, + "rtt_ns": 1251167, + "rtt_ms": 1.251167, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "72", - "timestamp": "2025-11-27T01:21:53.406037629Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.874834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437635, - "rtt_ms": 1.437635, + "rtt_ns": 1102625, + "rtt_ms": 1.102625, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.406690117Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:51.874851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269176, - "rtt_ms": 1.269176, + "rtt_ns": 1340250, + "rtt_ms": 1.34025, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.407174326Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.87492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696085, - "rtt_ms": 1.696085, + "rtt_ns": 1504500, + "rtt_ms": 1.5045, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.407594445Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:51.875049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831784, - "rtt_ms": 1.831784, + "rtt_ns": 1547750, + "rtt_ms": 1.54775, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.407776534Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.87511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955654, - "rtt_ms": 1.955654, + "rtt_ns": 1280792, + "rtt_ms": 1.280792, "checkpoint": 0, "vertex_from": "70", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.407877934Z" + "timestamp": "2025-11-27T04:01:51.875368-08:00" }, { "operation": "add_edge", - "rtt_ns": 2549692, - "rtt_ms": 2.549692, + "rtt_ns": 1247667, + "rtt_ms": 1.247667, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:53.408467722Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:51.875389-08:00" }, { "operation": "add_edge", - "rtt_ns": 2708201, - "rtt_ms": 2.708201, + "rtt_ns": 1052042, + "rtt_ms": 1.052042, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:53.408635341Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.875433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2711251, - "rtt_ms": 2.711251, + "rtt_ns": 1445500, + "rtt_ms": 1.4455, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:53.408652261Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:51.875562-08:00" }, { "operation": "add_edge", - "rtt_ns": 3359240, - "rtt_ms": 3.35924, + "rtt_ns": 1185458, + "rtt_ms": 1.185458, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.409398279Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.876106-08:00" }, { "operation": "add_edge", - "rtt_ns": 3502479, - "rtt_ms": 3.502479, + "rtt_ns": 1581709, + "rtt_ms": 1.581709, "checkpoint": 0, "vertex_from": "70", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.409450909Z" + "timestamp": "2025-11-27T04:01:51.876159-08:00" }, { "operation": "add_edge", - "rtt_ns": 2761622, - "rtt_ms": 2.761622, + "rtt_ns": 1498875, + "rtt_ms": 1.498875, "checkpoint": 0, "vertex_from": "70", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:53.409452779Z" + "timestamp": "2025-11-27T04:01:51.87635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680725, - "rtt_ms": 1.680725, + "rtt_ns": 1002166, + "rtt_ms": 1.002166, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "490", - "timestamp": "2025-11-27T01:21:53.409458519Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:51.876392-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340892, - "rtt_ms": 2.340892, + "rtt_ns": 1616625, + "rtt_ms": 1.616625, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.409516498Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.876452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654624, - "rtt_ms": 1.654624, + "rtt_ns": 1511334, + "rtt_ms": 1.511334, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.409533738Z" + "vertex_to": "490", + "timestamp": "2025-11-27T04:01:51.876625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1939283, - "rtt_ms": 1.939283, + "rtt_ns": 1619000, + "rtt_ms": 1.619, "checkpoint": 0, "vertex_from": "70", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.409535348Z" + "timestamp": "2025-11-27T04:01:51.876669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074476, - "rtt_ms": 1.074476, + "rtt_ns": 1128125, + "rtt_ms": 1.128125, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:53.409544228Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.876692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693235, - "rtt_ms": 1.693235, + "rtt_ns": 1343625, + "rtt_ms": 1.343625, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.410346526Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.876713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104616, - "rtt_ms": 1.104616, + "rtt_ns": 1513208, + "rtt_ms": 1.513208, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.410504915Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.876947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869044, - "rtt_ms": 1.869044, + "rtt_ns": 1539792, + "rtt_ms": 1.539792, "checkpoint": 0, "vertex_from": "70", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.410505525Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.877647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625175, - "rtt_ms": 1.625175, + "rtt_ns": 1404916, + "rtt_ms": 1.404916, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.411159653Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.877756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668025, - "rtt_ms": 1.668025, + "rtt_ns": 1424167, + "rtt_ms": 1.424167, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.411186343Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.877818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652925, - "rtt_ms": 1.652925, + "rtt_ns": 1794959, + "rtt_ms": 1.794959, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.411189223Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:51.877956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734094, - "rtt_ms": 1.734094, + "rtt_ns": 1691375, + "rtt_ms": 1.691375, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.411193433Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.878144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655485, - "rtt_ms": 1.655485, + "rtt_ns": 1469292, + "rtt_ms": 1.469292, "checkpoint": 0, "vertex_from": "71", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.411201723Z" + "timestamp": "2025-11-27T04:01:51.878162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767414, - "rtt_ms": 1.767414, + "rtt_ns": 1631500, + "rtt_ms": 1.6315, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.411219383Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.878302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769394, - "rtt_ms": 1.769394, + "rtt_ns": 1613708, + "rtt_ms": 1.613708, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.411223553Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.878327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606295, - "rtt_ms": 1.606295, + "rtt_ns": 1723250, + "rtt_ms": 1.72325, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "90", - "timestamp": "2025-11-27T01:21:53.41211317Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.878349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896784, - "rtt_ms": 1.896784, + "rtt_ns": 1429959, + "rtt_ms": 1.429959, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.41224449Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:51.878378-08:00" }, { "operation": "add_edge", - "rtt_ns": 2170523, - "rtt_ms": 2.170523, + "rtt_ns": 1345625, + "rtt_ms": 1.345625, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:53.412676888Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.879165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582185, - "rtt_ms": 1.582185, + "rtt_ns": 1537416, + "rtt_ms": 1.537416, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.412742758Z" + "vertex_to": "90", + "timestamp": "2025-11-27T04:01:51.879186-08:00" }, { "operation": "add_edge", - "rtt_ns": 2788411, - "rtt_ms": 2.788411, + "rtt_ns": 1251917, + "rtt_ms": 1.251917, "checkpoint": 0, "vertex_from": "71", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.413982744Z" + "timestamp": "2025-11-27T04:01:51.879397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2940160, - "rtt_ms": 2.94016, + "rtt_ns": 1478083, + "rtt_ms": 1.478083, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.414127843Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.879435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2928120, - "rtt_ms": 2.92812, + "rtt_ns": 1698250, + "rtt_ms": 1.69825, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:53.414149083Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:51.879455-08:00" }, { "operation": "add_edge", - "rtt_ns": 2949980, - "rtt_ms": 2.94998, + "rtt_ns": 1258917, + "rtt_ms": 1.258917, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.414152523Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:51.879587-08:00" }, { "operation": "add_edge", - "rtt_ns": 2970920, - "rtt_ms": 2.97092, + "rtt_ns": 1447500, + "rtt_ms": 1.4475, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.414161333Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.87961-08:00" }, { "operation": "add_edge", - "rtt_ns": 3020600, - "rtt_ms": 3.0206, + "rtt_ns": 1354584, + "rtt_ms": 1.354584, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:53.414246363Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:51.879659-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178963, - "rtt_ms": 2.178963, + "rtt_ns": 1404333, + "rtt_ms": 1.404333, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:53.414293423Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:51.879784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622645, - "rtt_ms": 1.622645, + "rtt_ns": 1469666, + "rtt_ms": 1.469666, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:53.414366603Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:51.87982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126703, - "rtt_ms": 2.126703, + "rtt_ns": 1162709, + "rtt_ms": 1.162709, "checkpoint": 0, "vertex_from": "71", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:53.414372163Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:51.880356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703585, - "rtt_ms": 1.703585, + "rtt_ns": 1458791, + "rtt_ms": 1.458791, "checkpoint": 0, "vertex_from": "71", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.414381513Z" + "timestamp": "2025-11-27T04:01:51.880626-08:00" }, { "operation": "add_edge", - "rtt_ns": 881917, - "rtt_ms": 0.881917, + "rtt_ns": 1658084, + "rtt_ms": 1.658084, "checkpoint": 0, "vertex_from": "71", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:53.41501084Z" + "timestamp": "2025-11-27T04:01:51.881094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065896, - "rtt_ms": 1.065896, + "rtt_ns": 1328125, + "rtt_ms": 1.328125, "checkpoint": 0, - "vertex_from": "71", - "vertex_to": "472", - "timestamp": "2025-11-27T01:21:53.41505096Z" + "vertex_from": "72", + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.881112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267716, - "rtt_ms": 1.267716, + "rtt_ns": 1866666, + "rtt_ms": 1.866666, "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:53.415430049Z" + "vertex_from": "71", + "vertex_to": "472", + "timestamp": "2025-11-27T04:01:51.881266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694455, - "rtt_ms": 1.694455, + "rtt_ns": 1461875, + "rtt_ms": 1.461875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:53.415848258Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:51.881282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714015, - "rtt_ms": 1.714015, + "rtt_ns": 1689750, + "rtt_ms": 1.68975, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:53.415864988Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:51.8813-08:00" }, { "operation": "add_edge", - "rtt_ns": 866197, - "rtt_ms": 0.866197, + "rtt_ns": 1682916, + "rtt_ms": 1.682916, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:53.415919197Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.881342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670684, - "rtt_ms": 1.670684, + "rtt_ns": 1776375, + "rtt_ms": 1.776375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.415967297Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:51.881365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615385, - "rtt_ms": 1.615385, + "rtt_ns": 1944542, + "rtt_ms": 1.944542, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:53.415998897Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:51.881402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766924, - "rtt_ms": 1.766924, + "rtt_ns": 1520333, + "rtt_ms": 1.520333, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.416014517Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:51.881877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256826, - "rtt_ms": 1.256826, + "rtt_ns": 1355500, + "rtt_ms": 1.3555, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:53.416268586Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:51.881984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924183, - "rtt_ms": 1.924183, + "rtt_ns": 1121167, + "rtt_ms": 1.121167, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:53.416293566Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:51.882423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921653, - "rtt_ms": 1.921653, + "rtt_ns": 1403417, + "rtt_ms": 1.403417, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "565", - "timestamp": "2025-11-27T01:21:53.416295606Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:51.882517-08:00" }, { "operation": "add_edge", - "rtt_ns": 981277, - "rtt_ms": 0.981277, + "rtt_ns": 1312875, + "rtt_ms": 1.312875, "checkpoint": 0, "vertex_from": "72", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:53.416412736Z" + "timestamp": "2025-11-27T04:01:51.88258-08:00" }, { "operation": "add_edge", - "rtt_ns": 691917, - "rtt_ms": 0.691917, + "rtt_ns": 1409750, + "rtt_ms": 1.40975, "checkpoint": 0, "vertex_from": "72", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.416542325Z" + "timestamp": "2025-11-27T04:01:51.882693-08:00" }, { "operation": "add_edge", - "rtt_ns": 846107, - "rtt_ms": 0.846107, + "rtt_ns": 1769042, + "rtt_ms": 1.769042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:53.416712595Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:51.882864-08:00" }, { "operation": "add_edge", - "rtt_ns": 838568, - "rtt_ms": 0.838568, + "rtt_ns": 1514833, + "rtt_ms": 1.514833, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "930", - "timestamp": "2025-11-27T01:21:53.416759045Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.882881-08:00" }, { "operation": "add_edge", - "rtt_ns": 880597, - "rtt_ms": 0.880597, + "rtt_ns": 1492000, + "rtt_ms": 1.492, "checkpoint": 0, "vertex_from": "72", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.416880294Z" + "timestamp": "2025-11-27T04:01:51.882895-08:00" }, { "operation": "add_edge", - "rtt_ns": 942197, - "rtt_ms": 0.942197, + "rtt_ns": 1229875, + "rtt_ms": 1.229875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.416910314Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.883237-08:00" }, { "operation": "add_edge", - "rtt_ns": 647688, - "rtt_ms": 0.647688, + "rtt_ns": 1894208, + "rtt_ms": 1.894208, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.416917174Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:01:51.883239-08:00" }, { "operation": "add_edge", - "rtt_ns": 921647, - "rtt_ms": 0.921647, + "rtt_ns": 1590583, + "rtt_ms": 1.590583, "checkpoint": 0, "vertex_from": "72", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.416937214Z" + "timestamp": "2025-11-27T04:01:51.883469-08:00" }, { "operation": "add_edge", - "rtt_ns": 725988, - "rtt_ms": 0.725988, + "rtt_ns": 1468292, + "rtt_ms": 1.468292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:53.417140254Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:51.883988-08:00" }, { "operation": "add_edge", - "rtt_ns": 899377, - "rtt_ms": 0.899377, + "rtt_ns": 1607417, + "rtt_ms": 1.607417, "checkpoint": 0, "vertex_from": "72", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:53.417194193Z" + "timestamp": "2025-11-27T04:01:51.884031-08:00" }, { "operation": "add_edge", - "rtt_ns": 950927, - "rtt_ms": 0.950927, + "rtt_ns": 1382917, + "rtt_ms": 1.382917, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "407", - "timestamp": "2025-11-27T01:21:53.417710982Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:51.884076-08:00" }, { "operation": "add_edge", - "rtt_ns": 855778, - "rtt_ms": 0.855778, + "rtt_ns": 1244583, + "rtt_ms": 1.244583, "checkpoint": 0, "vertex_from": "72", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.417737082Z" + "timestamp": "2025-11-27T04:01:51.884141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477196, - "rtt_ms": 1.477196, + "rtt_ns": 1295667, + "rtt_ms": 1.295667, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:53.417774952Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:51.884161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061947, - "rtt_ms": 1.061947, + "rtt_ns": 1666375, + "rtt_ms": 1.666375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:53.417775652Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:51.884248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329326, - "rtt_ms": 1.329326, + "rtt_ns": 1505958, + "rtt_ms": 1.505958, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:53.417873211Z" + "vertex_to": "407", + "timestamp": "2025-11-27T04:01:51.884387-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 983250, + "rtt_ms": 0.98325, + "checkpoint": 0, + "vertex_from": "72", + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.884453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009887, - "rtt_ms": 1.009887, + "rtt_ns": 1357541, + "rtt_ms": 1.357541, "checkpoint": 0, "vertex_from": "72", "vertex_to": "184", - "timestamp": "2025-11-27T01:21:53.417922261Z" + "timestamp": "2025-11-27T04:01:51.884596-08:00" }, { "operation": "add_edge", - "rtt_ns": 895957, - "rtt_ms": 0.895957, + "rtt_ns": 1417417, + "rtt_ms": 1.417417, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:53.418671959Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.884657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504806, - "rtt_ms": 1.504806, + "rtt_ns": 1352458, + "rtt_ms": 1.352458, "checkpoint": 0, "vertex_from": "72", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:53.418701019Z" + "timestamp": "2025-11-27T04:01:51.885386-08:00" }, { "operation": "add_edge", - "rtt_ns": 963467, - "rtt_ms": 0.963467, + "rtt_ns": 1418125, + "rtt_ms": 1.418125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:53.418703259Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:51.885407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775135, - "rtt_ms": 1.775135, + "rtt_ns": 1579625, + "rtt_ms": 1.579625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.418714179Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:51.885657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804354, - "rtt_ms": 1.804354, + "rtt_ns": 1513291, + "rtt_ms": 1.513291, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.418724408Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:51.885675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590324, - "rtt_ms": 1.590324, + "rtt_ns": 1442834, + "rtt_ms": 1.442834, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.418734938Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:51.885691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180066, - "rtt_ms": 1.180066, + "rtt_ns": 1318125, + "rtt_ms": 1.318125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:53.418893738Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:51.885706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966174, - "rtt_ms": 1.966174, + "rtt_ns": 1578291, + "rtt_ms": 1.578291, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:53.419743785Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:51.88572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897354, - "rtt_ms": 1.897354, + "rtt_ns": 1232334, + "rtt_ms": 1.232334, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:53.419773165Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.88589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856944, - "rtt_ms": 1.856944, + "rtt_ns": 1346709, + "rtt_ms": 1.346709, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.419780265Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:01:51.885943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187366, - "rtt_ms": 1.187366, + "rtt_ns": 1528625, + "rtt_ms": 1.528625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "461", - "timestamp": "2025-11-27T01:21:53.419861025Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.885982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784444, - "rtt_ms": 1.784444, + "rtt_ns": 1108500, + "rtt_ms": 1.1085, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.420489443Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:51.8868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803575, - "rtt_ms": 1.803575, + "rtt_ns": 1315083, + "rtt_ms": 1.315083, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:53.420541533Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:51.886973-08:00" }, { "operation": "add_edge", - "rtt_ns": 2130033, - "rtt_ms": 2.130033, + "rtt_ns": 1377125, + "rtt_ms": 1.377125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:53.420846052Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:51.887053-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197382, - "rtt_ms": 2.197382, + "rtt_ns": 1816333, + "rtt_ms": 1.816333, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.420900351Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.887204-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032673, - "rtt_ms": 2.032673, + "rtt_ns": 1551042, + "rtt_ms": 1.551042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:53.420928641Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.887272-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228003, - "rtt_ms": 2.228003, + "rtt_ns": 1906375, + "rtt_ms": 1.906375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:53.420953951Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:51.887314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516275, - "rtt_ms": 1.516275, + "rtt_ns": 1558709, + "rtt_ms": 1.558709, "checkpoint": 0, "vertex_from": "72", "vertex_to": "271", - "timestamp": "2025-11-27T01:21:53.42129881Z" + "timestamp": "2025-11-27T04:01:51.88745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539555, - "rtt_ms": 1.539555, + "rtt_ns": 1804083, + "rtt_ms": 1.804083, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.42131389Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:51.887511-08:00" }, { "operation": "add_edge", - "rtt_ns": 844747, - "rtt_ms": 0.844747, + "rtt_ns": 1624041, + "rtt_ms": 1.624041, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.42138754Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:51.887568-08:00" }, { "operation": "add_edge", - "rtt_ns": 924347, - "rtt_ms": 0.924347, + "rtt_ns": 1775000, + "rtt_ms": 1.775, "checkpoint": 0, "vertex_from": "72", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.42141517Z" + "timestamp": "2025-11-27T04:01:51.887757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722414, - "rtt_ms": 1.722414, + "rtt_ns": 1339625, + "rtt_ms": 1.339625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:53.421467439Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:01:51.888393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624504, - "rtt_ms": 1.624504, + "rtt_ns": 1647750, + "rtt_ms": 1.64775, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:53.421488149Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.888449-08:00" }, { "operation": "add_edge", - "rtt_ns": 843717, - "rtt_ms": 0.843717, + "rtt_ns": 1504375, + "rtt_ms": 1.504375, "checkpoint": 0, "vertex_from": "72", "vertex_to": "515", - "timestamp": "2025-11-27T01:21:53.421691779Z" + "timestamp": "2025-11-27T04:01:51.888478-08:00" }, { "operation": "add_edge", - "rtt_ns": 739808, - "rtt_ms": 0.739808, + "rtt_ns": 1506750, + "rtt_ms": 1.50675, "checkpoint": 0, "vertex_from": "72", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:53.421695599Z" + "timestamp": "2025-11-27T04:01:51.888779-08:00" }, { "operation": "add_edge", - "rtt_ns": 839118, - "rtt_ms": 0.839118, + "rtt_ns": 1287625, + "rtt_ms": 1.287625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "809", - "timestamp": "2025-11-27T01:21:53.421740729Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.8888-08:00" }, { "operation": "add_edge", - "rtt_ns": 905217, - "rtt_ms": 0.905217, + "rtt_ns": 1498375, + "rtt_ms": 1.498375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "76", - "timestamp": "2025-11-27T01:21:53.421835758Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:51.888815-08:00" }, { "operation": "add_edge", - "rtt_ns": 730518, - "rtt_ms": 0.730518, + "rtt_ns": 1653167, + "rtt_ms": 1.653167, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:53.422030688Z" + "vertex_to": "76", + "timestamp": "2025-11-27T04:01:51.888858-08:00" }, { "operation": "add_edge", - "rtt_ns": 748097, - "rtt_ms": 0.748097, + "rtt_ns": 1265666, + "rtt_ms": 1.265666, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "105", - "timestamp": "2025-11-27T01:21:53.422062907Z" + "vertex_to": "74", + "timestamp": "2025-11-27T04:01:51.889024-08:00" }, { "operation": "add_edge", - "rtt_ns": 844407, - "rtt_ms": 0.844407, + "rtt_ns": 1526959, + "rtt_ms": 1.526959, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.422232917Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:51.889097-08:00" }, { "operation": "add_edge", - "rtt_ns": 806488, - "rtt_ms": 0.806488, + "rtt_ns": 1768500, + "rtt_ms": 1.7685, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:53.422295827Z" + "vertex_to": "105", + "timestamp": "2025-11-27T04:01:51.889221-08:00" }, { "operation": "add_edge", - "rtt_ns": 857748, - "rtt_ms": 0.857748, + "rtt_ns": 1645125, + "rtt_ms": 1.645125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "74", - "timestamp": "2025-11-27T01:21:53.422326237Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:51.89004-08:00" }, { "operation": "add_edge", - "rtt_ns": 939966, - "rtt_ms": 0.939966, + "rtt_ns": 1589125, + "rtt_ms": 1.589125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:53.422356306Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:51.890042-08:00" }, { "operation": "add_edge", - "rtt_ns": 765947, - "rtt_ms": 0.765947, + "rtt_ns": 1714125, + "rtt_ms": 1.714125, "checkpoint": 0, "vertex_from": "72", "vertex_to": "649", - "timestamp": "2025-11-27T01:21:53.422463036Z" + "timestamp": "2025-11-27T04:01:51.890194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165996, - "rtt_ms": 1.165996, + "rtt_ns": 1184833, + "rtt_ms": 1.184833, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:53.422859695Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:51.89021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179996, - "rtt_ms": 1.179996, + "rtt_ns": 1397958, + "rtt_ms": 1.397958, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:53.423016904Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:51.890214-08:00" }, { "operation": "add_edge", - "rtt_ns": 811857, - "rtt_ms": 0.811857, + "rtt_ns": 1369250, + "rtt_ms": 1.36925, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:53.423046134Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:51.890228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038836, - "rtt_ms": 1.038836, + "rtt_ns": 1255458, + "rtt_ms": 1.255458, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:53.423070384Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:51.890354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068627, - "rtt_ms": 1.068627, + "rtt_ns": 1147875, + "rtt_ms": 1.147875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.423133174Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:51.89037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549024, - "rtt_ms": 1.549024, + "rtt_ns": 1599083, + "rtt_ms": 1.599083, "checkpoint": 0, "vertex_from": "72", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.423290993Z" + "timestamp": "2025-11-27T04:01:51.89038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038136, - "rtt_ms": 1.038136, + "rtt_ns": 1585041, + "rtt_ms": 1.585041, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:53.423335003Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:51.890385-08:00" }, { "operation": "add_edge", - "rtt_ns": 870017, - "rtt_ms": 0.870017, + "rtt_ns": 1511666, + "rtt_ms": 1.511666, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:53.423941101Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.891898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586705, - "rtt_ms": 1.586705, + "rtt_ns": 1720708, + "rtt_ms": 1.720708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "485", - "timestamp": "2025-11-27T01:21:53.423944471Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:51.891915-08:00" }, { "operation": "add_edge", - "rtt_ns": 902387, - "rtt_ms": 0.902387, + "rtt_ns": 1549166, + "rtt_ms": 1.549166, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.423949971Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:51.89193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110976, - "rtt_ms": 1.110976, + "rtt_ns": 1903792, + "rtt_ms": 1.903792, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:53.423971891Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:51.891946-08:00" }, { "operation": "add_edge", - "rtt_ns": 986157, - "rtt_ms": 0.986157, + "rtt_ns": 1750208, + "rtt_ms": 1.750208, "checkpoint": 0, "vertex_from": "72", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.424004311Z" + "timestamp": "2025-11-27T04:01:51.891961-08:00" }, { "operation": "add_edge", - "rtt_ns": 874037, - "rtt_ms": 0.874037, + "rtt_ns": 1761292, + "rtt_ms": 1.761292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:53.424008471Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:51.891975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688064, - "rtt_ms": 1.688064, + "rtt_ns": 1947334, + "rtt_ms": 1.947334, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:53.424015721Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:51.891989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551195, - "rtt_ms": 1.551195, + "rtt_ns": 1774875, + "rtt_ms": 1.774875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:53.424015781Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:51.892003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240916, - "rtt_ms": 1.240916, + "rtt_ns": 1663625, + "rtt_ms": 1.663625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.424533189Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:51.892018-08:00" }, { "operation": "add_edge", - "rtt_ns": 954167, - "rtt_ms": 0.954167, + "rtt_ns": 1662583, + "rtt_ms": 1.662583, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:53.424899958Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.892033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564315, - "rtt_ms": 1.564315, + "rtt_ns": 1192208, + "rtt_ms": 1.192208, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.424900928Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:51.893154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370056, - "rtt_ms": 1.370056, + "rtt_ns": 1249209, + "rtt_ms": 1.249209, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.425312567Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:01:51.893268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402816, - "rtt_ms": 1.402816, + "rtt_ns": 1546209, + "rtt_ms": 1.546209, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.425420557Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.893522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507125, - "rtt_ms": 1.507125, + "rtt_ns": 1538833, + "rtt_ms": 1.538833, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:53.425458976Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.893542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484725, - "rtt_ms": 1.484725, + "rtt_ns": 1568541, + "rtt_ms": 1.568541, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:53.425494346Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:51.893558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489815, - "rtt_ms": 1.489815, + "rtt_ns": 1540375, + "rtt_ms": 1.540375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:53.425495466Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:51.893574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533475, - "rtt_ms": 1.533475, + "rtt_ns": 1647083, + "rtt_ms": 1.647083, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:53.425506696Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:51.893594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500435, - "rtt_ms": 1.500435, + "rtt_ns": 1688667, + "rtt_ms": 1.688667, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.425517416Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:51.893605-08:00" }, { "operation": "add_edge", - "rtt_ns": 805678, - "rtt_ms": 0.805678, + "rtt_ns": 1731125, + "rtt_ms": 1.731125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:53.426301174Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:51.89363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783925, - "rtt_ms": 1.783925, + "rtt_ns": 1783625, + "rtt_ms": 1.783625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.426318344Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:51.893714-08:00" }, { "operation": "add_edge", - "rtt_ns": 877547, - "rtt_ms": 0.877547, + "rtt_ns": 1319542, + "rtt_ms": 1.319542, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "972", - "timestamp": "2025-11-27T01:21:53.426374593Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:51.894591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525865, - "rtt_ms": 1.525865, + "rtt_ns": 1439125, + "rtt_ms": 1.439125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "241", - "timestamp": "2025-11-27T01:21:53.426426983Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:51.894594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559135, - "rtt_ms": 1.559135, + "rtt_ns": 1217750, + "rtt_ms": 1.21775, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:53.426461263Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:51.894849-08:00" }, { "operation": "add_edge", - "rtt_ns": 992077, - "rtt_ms": 0.992077, + "rtt_ns": 1209000, + "rtt_ms": 1.209, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:53.426511463Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:01:51.894924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099197, - "rtt_ms": 1.099197, + "rtt_ns": 1436167, + "rtt_ms": 1.436167, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:53.426559383Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:51.894979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141026, - "rtt_ms": 1.141026, + "rtt_ns": 1437958, + "rtt_ms": 1.437958, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.426562803Z" + "vertex_to": "972", + "timestamp": "2025-11-27T04:01:51.894997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300576, - "rtt_ms": 1.300576, + "rtt_ns": 1585291, + "rtt_ms": 1.585291, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:53.426614283Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:51.895109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332725, - "rtt_ms": 1.332725, + "rtt_ns": 1568625, + "rtt_ms": 1.568625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.427636209Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:51.895164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184346, - "rtt_ms": 1.184346, + "rtt_ns": 1608458, + "rtt_ms": 1.608458, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:53.427648819Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:51.895183-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143123, - "rtt_ms": 2.143123, + "rtt_ns": 1627334, + "rtt_ms": 1.627334, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "334", - "timestamp": "2025-11-27T01:21:53.427653659Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.895234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661704, - "rtt_ms": 1.661704, + "rtt_ns": 1492292, + "rtt_ms": 1.492292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:53.427981558Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.896084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966564, - "rtt_ms": 1.966564, + "rtt_ns": 1273000, + "rtt_ms": 1.273, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "817", - "timestamp": "2025-11-27T01:21:53.428342927Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:51.896123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873744, - "rtt_ms": 1.873744, + "rtt_ns": 1431459, + "rtt_ms": 1.431459, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:53.428435637Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.896429-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027784, - "rtt_ms": 2.027784, + "rtt_ns": 1851791, + "rtt_ms": 1.851791, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.428455997Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:51.896448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909804, - "rtt_ms": 1.909804, + "rtt_ns": 1522250, + "rtt_ms": 1.52225, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:53.428474197Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:51.896449-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059824, - "rtt_ms": 2.059824, + "rtt_ns": 1483750, + "rtt_ms": 1.48375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:53.428572847Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:51.896464-08:00" }, { "operation": "add_edge", - "rtt_ns": 946367, - "rtt_ms": 0.946367, + "rtt_ns": 1300083, + "rtt_ms": 1.300083, "checkpoint": 0, "vertex_from": "72", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.428601976Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 706498, - "rtt_ms": 0.706498, - "checkpoint": 0, - "vertex_from": "723", - "timestamp": "2025-11-27T01:21:53.428690496Z" + "timestamp": "2025-11-27T04:01:51.896484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581555, - "rtt_ms": 1.581555, + "rtt_ns": 1397292, + "rtt_ms": 1.397292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.429231854Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:51.896507-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1623035, - "rtt_ms": 1.623035, + "operation": "add_vertex", + "rtt_ns": 1565625, + "rtt_ms": 1.565625, "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:53.429260934Z" + "vertex_from": "723", + "timestamp": "2025-11-27T04:01:51.896802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2724761, - "rtt_ms": 2.724761, + "rtt_ns": 1655041, + "rtt_ms": 1.655041, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.429340394Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.896821-08:00" }, { "operation": "add_edge", - "rtt_ns": 993597, - "rtt_ms": 0.993597, + "rtt_ns": 1327291, + "rtt_ms": 1.327291, "checkpoint": 0, "vertex_from": "72", "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.429431244Z" + "timestamp": "2025-11-27T04:01:51.897452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007707, - "rtt_ms": 1.007707, + "rtt_ns": 1137167, + "rtt_ms": 1.137167, "checkpoint": 0, "vertex_from": "72", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.429465504Z" + "timestamp": "2025-11-27T04:01:51.897568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208016, - "rtt_ms": 1.208016, + "rtt_ns": 1550500, + "rtt_ms": 1.5505, "checkpoint": 0, "vertex_from": "72", "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.429551803Z" + "timestamp": "2025-11-27T04:01:51.897637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534045, - "rtt_ms": 1.534045, + "rtt_ns": 1209541, + "rtt_ms": 1.209541, "checkpoint": 0, "vertex_from": "72", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:53.430009182Z" + "timestamp": "2025-11-27T04:01:51.897659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589194, - "rtt_ms": 1.589194, + "rtt_ns": 1239292, + "rtt_ms": 1.239292, "checkpoint": 0, "vertex_from": "72", "vertex_to": "434", - "timestamp": "2025-11-27T01:21:53.430163101Z" + "timestamp": "2025-11-27T04:01:51.897691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505935, - "rtt_ms": 1.505935, + "rtt_ns": 1381042, + "rtt_ms": 1.381042, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "723", - "timestamp": "2025-11-27T01:21:53.430196741Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:51.897866-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1406500, + "rtt_ms": 1.4065, + "checkpoint": 0, + "vertex_from": "72", + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:51.897915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635945, - "rtt_ms": 1.635945, + "rtt_ns": 1629166, + "rtt_ms": 1.629166, "checkpoint": 0, "vertex_from": "72", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.430239961Z" + "timestamp": "2025-11-27T04:01:51.898094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155216, - "rtt_ms": 1.155216, + "rtt_ns": 1333875, + "rtt_ms": 1.333875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.43049724Z" + "vertex_to": "723", + "timestamp": "2025-11-27T04:01:51.898137-08:00" }, { "operation": "add_edge", - "rtt_ns": 838558, - "rtt_ms": 0.838558, + "rtt_ns": 1467625, + "rtt_ms": 1.467625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "665", - "timestamp": "2025-11-27T01:21:53.431079759Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.89829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099746, - "rtt_ms": 1.099746, + "rtt_ns": 1326292, + "rtt_ms": 1.326292, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:53.431110018Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:51.899019-08:00" }, { "operation": "add_edge", - "rtt_ns": 925227, - "rtt_ms": 0.925227, + "rtt_ns": 1412541, + "rtt_ms": 1.412541, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:53.431123308Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:51.899072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624965, - "rtt_ms": 1.624965, + "rtt_ns": 1575375, + "rtt_ms": 1.575375, "checkpoint": 0, "vertex_from": "72", "vertex_to": "77", - "timestamp": "2025-11-27T01:21:53.431177838Z" + "timestamp": "2025-11-27T04:01:51.899214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762024, - "rtt_ms": 1.762024, + "rtt_ns": 1701375, + "rtt_ms": 1.701375, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:53.431194238Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:51.899272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977674, - "rtt_ms": 1.977674, + "rtt_ns": 1436208, + "rtt_ms": 1.436208, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:53.431211218Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:51.899352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957364, - "rtt_ms": 1.957364, + "rtt_ns": 1942625, + "rtt_ms": 1.942625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:53.431219488Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:51.899396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842184, - "rtt_ms": 1.842184, + "rtt_ns": 1400875, + "rtt_ms": 1.400875, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:53.431308638Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:51.899496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176637, - "rtt_ms": 1.176637, + "rtt_ns": 1631000, + "rtt_ms": 1.631, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:53.431340648Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:51.899498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706815, - "rtt_ms": 1.706815, + "rtt_ns": 1380416, + "rtt_ms": 1.380416, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:53.432204945Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:51.899518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292456, - "rtt_ms": 1.292456, + "rtt_ns": 1399500, + "rtt_ms": 1.3995, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:53.432417834Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.899692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372015, - "rtt_ms": 1.372015, + "rtt_ns": 1147417, + "rtt_ms": 1.147417, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:53.432453594Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:51.900362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294276, - "rtt_ms": 1.294276, + "rtt_ns": 1445000, + "rtt_ms": 1.445, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:53.432489364Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:51.900466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382516, - "rtt_ms": 1.382516, + "rtt_ns": 1049458, + "rtt_ms": 1.049458, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "909", - "timestamp": "2025-11-27T01:21:53.432561204Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:51.900549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397456, - "rtt_ms": 1.397456, + "rtt_ns": 1489417, + "rtt_ms": 1.489417, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "937", - "timestamp": "2025-11-27T01:21:53.432609764Z" + "vertex_to": "909", + "timestamp": "2025-11-27T04:01:51.900563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388796, - "rtt_ms": 1.388796, + "rtt_ns": 1048125, + "rtt_ms": 1.048125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "244", - "timestamp": "2025-11-27T01:21:53.432609844Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:51.900567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284745, - "rtt_ms": 1.284745, + "rtt_ns": 1257542, + "rtt_ms": 1.257542, "checkpoint": 0, "vertex_from": "72", "vertex_to": "600", - "timestamp": "2025-11-27T01:21:53.432626433Z" + "timestamp": "2025-11-27T04:01:51.900755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316735, - "rtt_ms": 1.316735, + "rtt_ns": 1500625, + "rtt_ms": 1.500625, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:53.432626633Z" + "vertex_to": "937", + "timestamp": "2025-11-27T04:01:51.900773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534205, - "rtt_ms": 1.534205, + "rtt_ns": 1529708, + "rtt_ms": 1.529708, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.432645353Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:01:51.900883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067636, - "rtt_ms": 1.067636, + "rtt_ns": 1554209, + "rtt_ms": 1.554209, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "707", - "timestamp": "2025-11-27T01:21:53.43352312Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:51.900953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108926, - "rtt_ms": 1.108926, + "rtt_ns": 1370500, + "rtt_ms": 1.3705, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:53.4335278Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:51.901064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333685, - "rtt_ms": 1.333685, + "rtt_ns": 1212000, + "rtt_ms": 1.212, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:53.43353993Z" + "vertex_to": "103", + "timestamp": "2025-11-27T04:01:51.901776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070756, - "rtt_ms": 1.070756, + "rtt_ns": 1623375, + "rtt_ms": 1.623375, "checkpoint": 0, "vertex_from": "72", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.43356159Z" + "timestamp": "2025-11-27T04:01:51.901986-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1742024, - "rtt_ms": 1.742024, + "operation": "add_edge", + "rtt_ns": 1536042, + "rtt_ms": 1.536042, "checkpoint": 0, - "vertex_from": "605", - "timestamp": "2025-11-27T01:21:53.434305058Z" + "vertex_from": "72", + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:51.902086-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1764385, - "rtt_ms": 1.764385, + "rtt_ns": 1538500, + "rtt_ms": 1.5385, "checkpoint": 0, "vertex_from": "371", - "timestamp": "2025-11-27T01:21:53.434393498Z" + "timestamp": "2025-11-27T04:01:51.902107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873443, - "rtt_ms": 1.873443, + "rtt_ns": 1285375, + "rtt_ms": 1.285375, "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:53.434484737Z" + "vertex_from": "73", + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:51.902239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899333, - "rtt_ms": 1.899333, + "rtt_ns": 1493125, + "rtt_ms": 1.493125, "checkpoint": 0, "vertex_from": "72", - "vertex_to": "103", - "timestamp": "2025-11-27T01:21:53.434510657Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:51.902267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958674, - "rtt_ms": 1.958674, + "rtt_ns": 1530750, + "rtt_ms": 1.53075, "checkpoint": 0, "vertex_from": "72", "vertex_to": "170", - "timestamp": "2025-11-27T01:21:53.434586747Z" + "timestamp": "2025-11-27T04:01:51.902286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494355, - "rtt_ms": 1.494355, + "rtt_ns": 1416625, + "rtt_ms": 1.416625, "checkpoint": 0, "vertex_from": "73", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:53.435018415Z" + "timestamp": "2025-11-27T04:01:51.9023-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1558805, - "rtt_ms": 1.558805, + "operation": "add_vertex", + "rtt_ns": 1834750, + "rtt_ms": 1.83475, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:53.435122455Z" + "vertex_from": "605", + "timestamp": "2025-11-27T04:01:51.902303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584765, - "rtt_ms": 1.584765, + "rtt_ns": 1260167, + "rtt_ms": 1.260167, "checkpoint": 0, "vertex_from": "73", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:53.435126555Z" + "timestamp": "2025-11-27T04:01:51.902325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617185, - "rtt_ms": 1.617185, + "rtt_ns": 1128333, + "rtt_ms": 1.128333, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:53.435146885Z" + "vertex_from": "72", + "vertex_to": "371", + "timestamp": "2025-11-27T04:01:51.903236-08:00" }, { "operation": "add_edge", - "rtt_ns": 648998, - "rtt_ms": 0.648998, + "rtt_ns": 1374625, + "rtt_ms": 1.374625, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:53.435236995Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.903362-08:00" }, { "operation": "add_edge", - "rtt_ns": 730218, - "rtt_ms": 0.730218, + "rtt_ns": 1663667, + "rtt_ms": 1.663667, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:53.435242075Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:51.903441-08:00" }, { "operation": "add_edge", - "rtt_ns": 780508, - "rtt_ms": 0.780508, + "rtt_ns": 1480458, + "rtt_ms": 1.480458, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.435266475Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:51.903567-08:00" }, { "operation": "add_edge", - "rtt_ns": 2695801, - "rtt_ms": 2.695801, + "rtt_ns": 1408083, + "rtt_ms": 1.408083, "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:53.435342514Z" + "vertex_from": "73", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.903734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603464, - "rtt_ms": 1.603464, + "rtt_ns": 1447875, + "rtt_ms": 1.447875, "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "371", - "timestamp": "2025-11-27T01:21:53.435997522Z" + "vertex_from": "73", + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.903734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073487, - "rtt_ms": 1.073487, + "rtt_ns": 1493916, + "rtt_ms": 1.493916, "checkpoint": 0, "vertex_from": "73", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.436092782Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1978203, - "rtt_ms": 1.978203, - "checkpoint": 0, - "vertex_from": "72", - "vertex_to": "605", - "timestamp": "2025-11-27T01:21:53.436283561Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1606475, - "rtt_ms": 1.606475, - "checkpoint": 0, - "vertex_from": "207", - "timestamp": "2025-11-27T01:21:53.43684549Z" + "timestamp": "2025-11-27T04:01:51.903762-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011794, - "rtt_ms": 2.011794, + "rtt_ns": 1632959, + "rtt_ms": 1.632959, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.437135349Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:51.903935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133913, - "rtt_ms": 2.133913, + "rtt_ns": 1704583, + "rtt_ms": 1.704583, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.437282558Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:51.903946-08:00" }, { "operation": "add_edge", - "rtt_ns": 2214563, - "rtt_ms": 2.214563, + "rtt_ns": 1690000, + "rtt_ms": 1.69, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:53.437341928Z" + "vertex_from": "72", + "vertex_to": "605", + "timestamp": "2025-11-27T04:01:51.903993-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2124603, - "rtt_ms": 2.124603, + "operation": "add_vertex", + "rtt_ns": 1324167, + "rtt_ms": 1.324167, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:53.437392208Z" + "vertex_from": "207", + "timestamp": "2025-11-27T04:01:51.904564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605135, - "rtt_ms": 1.605135, + "rtt_ns": 1822750, + "rtt_ms": 1.82275, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.437603987Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:51.905187-08:00" }, { "operation": "add_edge", - "rtt_ns": 2276343, - "rtt_ms": 2.276343, + "rtt_ns": 1817292, + "rtt_ms": 1.817292, "checkpoint": 0, "vertex_from": "73", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:53.437619457Z" + "timestamp": "2025-11-27T04:01:51.905385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820924, - "rtt_ms": 1.820924, + "rtt_ns": 1666125, + "rtt_ms": 1.666125, "checkpoint": 0, "vertex_from": "73", "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.437914866Z" + "timestamp": "2025-11-27T04:01:51.905401-08:00" }, { "operation": "add_edge", - "rtt_ns": 2724101, - "rtt_ms": 2.724101, + "rtt_ns": 1656375, + "rtt_ms": 1.656375, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:53.437967496Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:51.905419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795375, - "rtt_ms": 1.795375, + "rtt_ns": 1502916, + "rtt_ms": 1.502916, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:53.438079786Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:51.905439-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082243, - "rtt_ms": 2.082243, + "rtt_ns": 2337042, + "rtt_ms": 2.337042, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "207", - "timestamp": "2025-11-27T01:21:53.438928073Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:51.90578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599385, - "rtt_ms": 1.599385, + "rtt_ns": 2247625, + "rtt_ms": 2.247625, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:53.438942493Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:51.906195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815464, - "rtt_ms": 1.815464, + "rtt_ns": 2190750, + "rtt_ms": 2.19075, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:53.438952073Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:51.906218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686335, - "rtt_ms": 1.686335, + "rtt_ns": 2482375, + "rtt_ms": 2.482375, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:53.438970283Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.906218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621775, - "rtt_ms": 1.621775, + "rtt_ns": 987584, + "rtt_ms": 0.987584, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:53.439015313Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:51.906374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459046, - "rtt_ms": 1.459046, + "rtt_ns": 990375, + "rtt_ms": 0.990375, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:53.439063753Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:51.906392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555835, - "rtt_ms": 1.555835, + "rtt_ns": 1253833, + "rtt_ms": 1.253833, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:53.439176332Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:51.906696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786124, - "rtt_ms": 1.786124, + "rtt_ns": 1564250, + "rtt_ms": 1.56425, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "122", - "timestamp": "2025-11-27T01:21:53.43970289Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:51.906753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910394, - "rtt_ms": 1.910394, + "rtt_ns": 2220667, + "rtt_ms": 2.220667, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:53.43987926Z" + "vertex_to": "207", + "timestamp": "2025-11-27T04:01:51.906785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809694, - "rtt_ms": 1.809694, + "rtt_ns": 1553000, + "rtt_ms": 1.553, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:53.43989059Z" + "vertex_to": "122", + "timestamp": "2025-11-27T04:01:51.906973-08:00" }, { "operation": "add_edge", - "rtt_ns": 979057, - "rtt_ms": 0.979057, + "rtt_ns": 1267916, + "rtt_ms": 1.267916, "checkpoint": 0, "vertex_from": "73", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:53.43990834Z" + "timestamp": "2025-11-27T04:01:51.907463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100676, - "rtt_ms": 1.100676, + "rtt_ns": 1262333, + "rtt_ms": 1.262333, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:53.440044239Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.907483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133496, - "rtt_ms": 1.133496, + "rtt_ns": 1709708, + "rtt_ms": 1.709708, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.440086579Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:51.907491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751524, - "rtt_ms": 1.751524, + "rtt_ns": 1563250, + "rtt_ms": 1.56325, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:53.440816017Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:51.907783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638635, - "rtt_ms": 1.638635, + "rtt_ns": 1427334, + "rtt_ms": 1.427334, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:53.440816317Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:51.907802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137737, - "rtt_ms": 1.137737, + "rtt_ns": 1534209, + "rtt_ms": 1.534209, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:53.440841727Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:51.907927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871884, - "rtt_ms": 1.871884, + "rtt_ns": 1187125, + "rtt_ms": 1.187125, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:53.440843597Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:51.907941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835264, - "rtt_ms": 1.835264, + "rtt_ns": 1637792, + "rtt_ms": 1.637792, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:53.440852007Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:51.908335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246476, - "rtt_ms": 1.246476, + "rtt_ns": 1566500, + "rtt_ms": 1.5665, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.441138526Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:51.908353-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1403895, - "rtt_ms": 1.403895, + "rtt_ns": 1466959, + "rtt_ms": 1.466959, "checkpoint": 0, "vertex_from": "679", - "timestamp": "2025-11-27T01:21:53.441289225Z" + "timestamp": "2025-11-27T04:01:51.908442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460385, - "rtt_ms": 1.460385, + "rtt_ns": 1547250, + "rtt_ms": 1.54725, "checkpoint": 0, "vertex_from": "73", "vertex_to": "433", - "timestamp": "2025-11-27T01:21:53.441369625Z" + "timestamp": "2025-11-27T04:01:51.909031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296836, - "rtt_ms": 1.296836, + "rtt_ns": 1316250, + "rtt_ms": 1.31625, "checkpoint": 0, "vertex_from": "73", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:53.441384445Z" + "timestamp": "2025-11-27T04:01:51.9091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370896, - "rtt_ms": 1.370896, + "rtt_ns": 1894916, + "rtt_ms": 1.894916, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:53.441416015Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.909359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258506, - "rtt_ms": 1.258506, + "rtt_ns": 1928042, + "rtt_ms": 1.928042, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:53.442075413Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:51.909421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251715, - "rtt_ms": 1.251715, + "rtt_ns": 1495000, + "rtt_ms": 1.495, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:53.442108622Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.909437-08:00" }, { "operation": "add_edge", - "rtt_ns": 982946, - "rtt_ms": 0.982946, + "rtt_ns": 1636625, + "rtt_ms": 1.636625, "checkpoint": 0, - "vertex_from": "74", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:53.442122472Z" + "vertex_from": "73", + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:51.909439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466155, - "rtt_ms": 1.466155, + "rtt_ns": 1512459, + "rtt_ms": 1.512459, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:53.442283182Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:51.909441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464115, - "rtt_ms": 1.464115, + "rtt_ns": 1024125, + "rtt_ms": 1.024125, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.442306692Z" + "vertex_to": "679", + "timestamp": "2025-11-27T04:01:51.909466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990613, - "rtt_ms": 1.990613, + "rtt_ns": 1225292, + "rtt_ms": 1.225292, "checkpoint": 0, "vertex_from": "73", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.44283721Z" + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:51.909579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664864, - "rtt_ms": 1.664864, + "rtt_ns": 1354750, + "rtt_ms": 1.35475, "checkpoint": 0, - "vertex_from": "74", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:53.443035199Z" + "vertex_from": "73", + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.909691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660334, - "rtt_ms": 1.660334, + "rtt_ns": 1310709, + "rtt_ms": 1.310709, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:53.443046089Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:51.910748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780754, - "rtt_ms": 1.780754, + "rtt_ns": 1667292, + "rtt_ms": 1.667292, "checkpoint": 0, - "vertex_from": "73", - "vertex_to": "679", - "timestamp": "2025-11-27T01:21:53.443070499Z" + "vertex_from": "74", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:51.910769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668854, - "rtt_ms": 1.668854, + "rtt_ns": 1821333, + "rtt_ms": 1.821333, "checkpoint": 0, "vertex_from": "74", "vertex_to": "153", - "timestamp": "2025-11-27T01:21:53.443087099Z" + "timestamp": "2025-11-27T04:01:51.911243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380125, - "rtt_ms": 1.380125, + "rtt_ns": 2228041, + "rtt_ms": 2.228041, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:53.443456908Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:51.91126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368876, - "rtt_ms": 1.368876, + "rtt_ns": 1913916, + "rtt_ms": 1.913916, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:53.443479398Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:51.911276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706044, - "rtt_ms": 1.706044, + "rtt_ns": 1712625, + "rtt_ms": 1.712625, "checkpoint": 0, "vertex_from": "74", "vertex_to": "338", - "timestamp": "2025-11-27T01:21:53.444014106Z" + "timestamp": "2025-11-27T04:01:51.911292-08:00" }, { "operation": "add_edge", - "rtt_ns": 2060964, - "rtt_ms": 2.060964, + "rtt_ns": 2208375, + "rtt_ms": 2.208375, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:53.444184176Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:51.911676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130046, - "rtt_ms": 1.130046, + "rtt_ns": 2250125, + "rtt_ms": 2.250125, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:53.444202395Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:51.911693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174826, - "rtt_ms": 1.174826, + "rtt_ns": 2266292, + "rtt_ms": 2.266292, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:53.444262855Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:51.911707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285656, - "rtt_ms": 1.285656, + "rtt_ns": 2032167, + "rtt_ms": 2.032167, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:53.444332505Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:51.911724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496065, - "rtt_ms": 1.496065, + "rtt_ns": 1501417, + "rtt_ms": 1.501417, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:53.444334095Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:51.912252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337516, - "rtt_ms": 1.337516, + "rtt_ns": 1748042, + "rtt_ms": 1.748042, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:53.444374235Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:51.912518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515905, - "rtt_ms": 1.515905, + "rtt_ns": 1321708, + "rtt_ms": 1.321708, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:53.444974243Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:51.912583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557515, - "rtt_ms": 1.557515, + "rtt_ns": 1286542, + "rtt_ms": 1.286542, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:53.445037743Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:51.913011-08:00" }, { "operation": "add_edge", - "rtt_ns": 2770041, - "rtt_ms": 2.770041, + "rtt_ns": 2213500, + "rtt_ms": 2.2135, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:53.445054153Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:51.913922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165616, - "rtt_ms": 1.165616, + "rtt_ns": 2663917, + "rtt_ms": 2.663917, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:53.445181202Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:51.913957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196596, - "rtt_ms": 1.196596, + "rtt_ns": 2740708, + "rtt_ms": 2.740708, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:53.445530071Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:51.913985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210726, - "rtt_ms": 1.210726, + "rtt_ns": 1753042, + "rtt_ms": 1.753042, "checkpoint": 0, "vertex_from": "74", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:53.445545761Z" + "timestamp": "2025-11-27T04:01:51.914272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339076, - "rtt_ms": 1.339076, + "rtt_ns": 2096625, + "rtt_ms": 2.096625, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:53.445603911Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:51.91435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230116, - "rtt_ms": 1.230116, + "rtt_ns": 2856125, + "rtt_ms": 2.856125, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:53.445605221Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:51.914549-08:00" }, { "operation": "add_edge", - "rtt_ns": 742728, - "rtt_ms": 0.742728, + "rtt_ns": 2365291, + "rtt_ms": 2.365291, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:53.445717671Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:51.914949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629674, - "rtt_ms": 1.629674, + "rtt_ns": 3690083, + "rtt_ms": 3.690083, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:53.44581528Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:51.914967-08:00" }, { "operation": "add_edge", - "rtt_ns": 772387, - "rtt_ms": 0.772387, + "rtt_ns": 3307042, + "rtt_ms": 3.307042, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:53.44582711Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:51.914984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104597, - "rtt_ms": 1.104597, + "rtt_ns": 1988541, + "rtt_ms": 1.988541, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:53.446286979Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:51.915001-08:00" }, { "operation": "add_edge", - "rtt_ns": 902987, - "rtt_ms": 0.902987, + "rtt_ns": 1349916, + "rtt_ms": 1.349916, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:53.446449368Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:51.915272-08:00" }, { "operation": "add_edge", - "rtt_ns": 934177, - "rtt_ms": 0.934177, + "rtt_ns": 1291833, + "rtt_ms": 1.291833, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:53.446464828Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:51.915278-08:00" }, { "operation": "add_edge", - "rtt_ns": 2278723, - "rtt_ms": 2.278723, + "rtt_ns": 1328792, + "rtt_ms": 1.328792, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:53.446482478Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:51.915289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572565, - "rtt_ms": 1.572565, + "rtt_ns": 962625, + "rtt_ms": 0.962625, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:53.446611778Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:51.915513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483565, - "rtt_ms": 1.483565, + "rtt_ns": 1439584, + "rtt_ms": 1.439584, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:53.447089366Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:51.915712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552725, - "rtt_ms": 1.552725, + "rtt_ns": 1629250, + "rtt_ms": 1.62925, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:53.447271336Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:51.91598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694045, - "rtt_ms": 1.694045, + "rtt_ns": 1003458, + "rtt_ms": 1.003458, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:53.447298996Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:51.916005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581015, - "rtt_ms": 1.581015, + "rtt_ns": 1266792, + "rtt_ms": 1.266792, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:53.447397055Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:51.916217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737125, - "rtt_ms": 1.737125, + "rtt_ns": 1269833, + "rtt_ms": 1.269833, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:53.447565105Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:51.916237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299416, - "rtt_ms": 1.299416, + "rtt_ns": 1461792, + "rtt_ms": 1.461792, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:53.447587315Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:51.91674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236416, - "rtt_ms": 1.236416, + "rtt_ns": 1774500, + "rtt_ms": 1.7745, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:53.447849134Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:51.916759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728885, - "rtt_ms": 1.728885, + "rtt_ns": 1475000, + "rtt_ms": 1.475, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:53.448179303Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:51.916764-08:00" }, { "operation": "add_edge", - "rtt_ns": 989727, - "rtt_ms": 0.989727, + "rtt_ns": 1501958, + "rtt_ms": 1.501958, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "80", - "timestamp": "2025-11-27T01:21:53.448264393Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:51.916775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812145, - "rtt_ms": 1.812145, + "rtt_ns": 1218917, + "rtt_ms": 1.218917, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:53.448278293Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:51.916932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811205, - "rtt_ms": 1.811205, + "rtt_ns": 1903000, + "rtt_ms": 1.903, "checkpoint": 0, "vertex_from": "74", "vertex_to": "679", - "timestamp": "2025-11-27T01:21:53.448294623Z" + "timestamp": "2025-11-27T04:01:51.917417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208146, - "rtt_ms": 1.208146, + "rtt_ns": 1454875, + "rtt_ms": 1.454875, "checkpoint": 0, "vertex_from": "74", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:53.448298672Z" + "timestamp": "2025-11-27T04:01:51.917435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391335, - "rtt_ms": 1.391335, + "rtt_ns": 2007541, + "rtt_ms": 2.007541, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:53.448692131Z" + "vertex_to": "80", + "timestamp": "2025-11-27T04:01:51.918014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334376, - "rtt_ms": 1.334376, + "rtt_ns": 1297208, + "rtt_ms": 1.297208, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:53.448733231Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:51.918039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511975, - "rtt_ms": 1.511975, + "rtt_ns": 1145708, + "rtt_ms": 1.145708, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:53.44908196Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:51.918079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920514, - "rtt_ms": 1.920514, + "rtt_ns": 1884167, + "rtt_ms": 1.884167, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:53.449509359Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:51.918102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848674, - "rtt_ms": 1.848674, + "rtt_ns": 1348084, + "rtt_ms": 1.348084, "checkpoint": 0, "vertex_from": "74", "vertex_to": "269", - "timestamp": "2025-11-27T01:21:53.450034837Z" + "timestamp": "2025-11-27T04:01:51.918124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809404, - "rtt_ms": 1.809404, + "rtt_ns": 1909084, + "rtt_ms": 1.909084, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:53.450090407Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:51.918147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839124, - "rtt_ms": 1.839124, + "rtt_ns": 1434959, + "rtt_ms": 1.434959, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:53.450109127Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:51.918194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261923, - "rtt_ms": 2.261923, + "rtt_ns": 1472291, + "rtt_ms": 1.472291, "checkpoint": 0, "vertex_from": "74", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:53.450112787Z" + "timestamp": "2025-11-27T04:01:51.918237-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 995750, + "rtt_ms": 0.99575, + "checkpoint": 0, + "vertex_from": "74", + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:51.918413-08:00" }, { "operation": "bfs", - "rtt_ns": 7998644, - "rtt_ms": 7, + "rtt_ns": 3859042, + "rtt_ms": 3, "checkpoint": 3, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "1001", - "398", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "855", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "538", - "463", - "388", - "640", - "62", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "956", - "669", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "679", - "126", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "859", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "603", - "321", - "98", - "528", - "58", - "690", - "1", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "151", - "88", - "636", - "0", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "413", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "373", - "1008", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "715", - "683", - "273", - "462", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "31", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "853", - "114", - "820", - "542", - "696", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "663", - "30", - "548" + "0" ], - "timestamp": "2025-11-27T01:21:55.493074713Z" + "timestamp": "2025-11-27T04:01:53.957238-08:00" }, { "operation": "bfs", - "rtt_ns": 6315829, - "rtt_ms": 6, + "rtt_ns": 2135708, + "rtt_ms": 2, "checkpoint": 3, "bfs_start": "1", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "728", - "92", - "218", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "855", - "370", - "750", - "805", - "811", - "553", - "923", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "669", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "603", - "321", - "98", - "528", - "58", - "690", - "1", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "853", - "114", - "820", - "542", - "696", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "1" ], - "timestamp": "2025-11-27T01:21:55.50019308Z" + "timestamp": "2025-11-27T04:01:53.959567-08:00" }, { "operation": "bfs", - "rtt_ns": 5557162, - "rtt_ms": 5, + "rtt_ns": 1894875, + "rtt_ms": 1, "checkpoint": 3, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "728", - "92", - "218", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "805", - "811", - "553", - "923", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "603", - "321", - "98", - "528", - "58", - "690", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "988", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "2" ], - "timestamp": "2025-11-27T01:21:55.505973501Z" + "timestamp": "2025-11-27T04:01:53.961748-08:00" }, { "operation": "bfs", - "rtt_ns": 4774585, - "rtt_ms": 4, + "rtt_ns": 2138333, + "rtt_ms": 2, "checkpoint": 3, "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "995", - "336", - "367", - "728", - "92", - "218", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "805", - "811", - "553", - "923", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "603", - "321", - "98", - "528", - "58", - "690", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "988", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "296", - "790", - "550", - "17", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "4" ], - "timestamp": "2025-11-27T01:21:55.510982575Z" + "timestamp": "2025-11-27T04:01:53.964003-08:00" }, { "operation": "bfs", - "rtt_ns": 4734115, - "rtt_ms": 4, + "rtt_ns": 1481834, + "rtt_ms": 1, "checkpoint": 3, "bfs_start": "3", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "768", - "385", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "587", - "868", - "307", - "534", - "546", - "844", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "995", - "336", - "367", - "728", - "92", - "218", - "236", - "472", - "198", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "805", - "811", - "553", - "923", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "603", - "321", - "98", - "528", - "58", - "690", - "360", - "541", - "132", - "369", - "920", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "896", - "834", - "618", - "241", - "582", - "988", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "296", - "790", - "550", - "17", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "976", - "932", - "23", - "488", - "193", - "852", - "287", - "709", - "490", - "168", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "705", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "3" ], - "timestamp": "2025-11-27T01:21:55.515941969Z" + "timestamp": "2025-11-27T04:01:53.9656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823544, - "rtt_ms": 1.823544, + "rtt_ns": 3189792, + "rtt_ms": 3.189792, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.517790123Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:53.968829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833544, - "rtt_ms": 1.833544, + "rtt_ns": 3343209, + "rtt_ms": 3.343209, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "683", - "timestamp": "2025-11-27T01:21:55.517831543Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:53.969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856004, - "rtt_ms": 1.856004, + "rtt_ns": 3417416, + "rtt_ms": 3.417416, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:55.517839163Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:53.96911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827344, - "rtt_ms": 1.827344, + "rtt_ns": 3598958, + "rtt_ms": 3.598958, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:55.517840803Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:53.969302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830764, - "rtt_ms": 1.830764, + "rtt_ns": 3655667, + "rtt_ms": 3.655667, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.517859863Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:53.969332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833674, - "rtt_ms": 1.833674, + "rtt_ns": 3869250, + "rtt_ms": 3.86925, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.517878323Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:53.969569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884524, - "rtt_ms": 1.884524, + "rtt_ns": 4034334, + "rtt_ms": 4.034334, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.517894163Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:53.969708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862124, - "rtt_ms": 1.862124, + "rtt_ns": 4137000, + "rtt_ms": 4.137, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.517903223Z" + "vertex_to": "683", + "timestamp": "2025-11-27T04:01:53.969844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2875661, - "rtt_ms": 2.875661, + "rtt_ns": 4313875, + "rtt_ms": 4.313875, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:55.51890009Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:53.969988-08:00" }, { "operation": "add_edge", - "rtt_ns": 3092760, - "rtt_ms": 3.09276, + "rtt_ns": 4496333, + "rtt_ms": 4.496333, "checkpoint": 0, "vertex_from": "74", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.519120769Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:53.970127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971454, - "rtt_ms": 1.971454, + "rtt_ns": 4170375, + "rtt_ms": 4.170375, "checkpoint": 0, "vertex_from": "74", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.519806477Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2063503, - "rtt_ms": 2.063503, - "checkpoint": 0, - "vertex_from": "75", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:55.519906866Z" + "timestamp": "2025-11-27T04:01:53.973173-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160633, - "rtt_ms": 2.160633, + "rtt_ns": 4389750, + "rtt_ms": 4.38975, "checkpoint": 0, "vertex_from": "74", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.519957436Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2189323, - "rtt_ms": 2.189323, - "checkpoint": 0, - "vertex_from": "75", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.520069426Z" + "timestamp": "2025-11-27T04:01:53.973222-08:00" }, { "operation": "add_edge", - "rtt_ns": 2475912, - "rtt_ms": 2.475912, + "rtt_ns": 4377958, + "rtt_ms": 4.377958, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.520383515Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:53.97349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300655, - "rtt_ms": 1.300655, + "rtt_ns": 4297291, + "rtt_ms": 4.297291, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.52168588Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:53.973601-08:00" }, { "operation": "add_edge", - "rtt_ns": 3827347, - "rtt_ms": 3.827347, + "rtt_ns": 4711209, + "rtt_ms": 4.711209, "checkpoint": 0, "vertex_from": "75", "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.52168993Z" + "timestamp": "2025-11-27T04:01:53.974045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1920673, - "rtt_ms": 1.920673, + "rtt_ns": 4409833, + "rtt_ms": 4.409833, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:55.52173041Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:53.974256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776054, - "rtt_ms": 1.776054, + "rtt_ns": 4587375, + "rtt_ms": 4.587375, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.521736Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:53.974297-08:00" }, { "operation": "add_edge", - "rtt_ns": 3880937, - "rtt_ms": 3.880937, + "rtt_ns": 4914750, + "rtt_ms": 4.91475, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:55.52178226Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:53.974485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2679011, - "rtt_ms": 2.679011, + "rtt_ns": 4368583, + "rtt_ms": 4.368583, "checkpoint": 0, "vertex_from": "75", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.52180126Z" + "timestamp": "2025-11-27T04:01:53.9745-08:00" }, { "operation": "add_edge", - "rtt_ns": 3480698, - "rtt_ms": 3.480698, + "rtt_ns": 4547791, + "rtt_ms": 4.547791, "checkpoint": 0, "vertex_from": "75", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.522383578Z" + "timestamp": "2025-11-27T04:01:53.974539-08:00" }, { "operation": "add_edge", - "rtt_ns": 2396442, - "rtt_ms": 2.396442, + "rtt_ns": 3938791, + "rtt_ms": 3.938791, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.522467488Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:53.977162-08:00" }, { "operation": "add_edge", - "rtt_ns": 4627925, - "rtt_ms": 4.627925, + "rtt_ns": 4085000, + "rtt_ms": 4.085, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:55.522471128Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:53.97726-08:00" }, { "operation": "add_edge", - "rtt_ns": 2708411, - "rtt_ms": 2.708411, + "rtt_ns": 4133583, + "rtt_ms": 4.133583, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.522620287Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:53.977736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545815, - "rtt_ms": 1.545815, + "rtt_ns": 4343333, + "rtt_ms": 4.343333, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.523234205Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:53.977835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133246, - "rtt_ms": 1.133246, + "rtt_ns": 3847542, + "rtt_ms": 3.847542, "checkpoint": 0, - "vertex_from": "76", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:55.523607684Z" + "vertex_from": "75", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:53.977894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018844, - "rtt_ms": 2.018844, + "rtt_ns": 4250042, + "rtt_ms": 4.250042, "checkpoint": 0, "vertex_from": "75", "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.523711734Z" + "timestamp": "2025-11-27T04:01:53.978548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204946, - "rtt_ms": 1.204946, + "rtt_ns": 4550541, + "rtt_ms": 4.550541, "checkpoint": 0, - "vertex_from": "76", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:55.523826823Z" + "vertex_from": "75", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:53.978808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042063, - "rtt_ms": 2.042063, + "rtt_ns": 4396625, + "rtt_ms": 4.396625, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.523848693Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:53.978898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389275, - "rtt_ms": 1.389275, + "rtt_ns": 4483917, + "rtt_ms": 4.483917, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.523858113Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:53.97897-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251253, - "rtt_ms": 2.251253, + "rtt_ns": 4482792, + "rtt_ms": 4.482792, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:55.523988503Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:53.979026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619155, - "rtt_ms": 1.619155, + "rtt_ns": 4238625, + "rtt_ms": 4.238625, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.524003733Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:53.981403-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319473, - "rtt_ms": 2.319473, + "rtt_ns": 4198250, + "rtt_ms": 4.19825, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.524051523Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:53.98146-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376872, - "rtt_ms": 2.376872, + "rtt_ns": 4279667, + "rtt_ms": 4.279667, "checkpoint": 0, "vertex_from": "75", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:55.524160352Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:53.982018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581965, - "rtt_ms": 1.581965, + "rtt_ns": 4210541, + "rtt_ms": 4.210541, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:55.5248181Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:53.982107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211726, - "rtt_ms": 1.211726, + "rtt_ns": 4391750, + "rtt_ms": 4.39175, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.52482083Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:53.982231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520605, - "rtt_ms": 1.520605, + "rtt_ns": 4342542, + "rtt_ms": 4.342542, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:55.525372258Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:53.982892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357815, - "rtt_ms": 1.357815, + "rtt_ns": 4052375, + "rtt_ms": 4.052375, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.525410468Z" + "vertex_to": "82", + "timestamp": "2025-11-27T04:01:53.983024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644575, - "rtt_ms": 1.644575, + "rtt_ns": 4226208, + "rtt_ms": 4.226208, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.525504068Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:53.983127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356556, - "rtt_ms": 1.356556, + "rtt_ns": 4330709, + "rtt_ms": 4.330709, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.525517608Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:53.983142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287146, - "rtt_ms": 1.287146, + "rtt_ns": 4962083, + "rtt_ms": 4.962083, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.526108926Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:53.983989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2443652, - "rtt_ms": 2.443652, + "rtt_ns": 4246375, + "rtt_ms": 4.246375, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.526156646Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:53.985708-08:00" }, { "operation": "add_edge", - "rtt_ns": 2181983, - "rtt_ms": 2.181983, + "rtt_ns": 4383667, + "rtt_ms": 4.383667, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:55.526171556Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:53.985788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353806, - "rtt_ms": 1.353806, + "rtt_ns": 4348250, + "rtt_ms": 4.34825, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.526172956Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:53.986368-08:00" }, { "operation": "add_edge", - "rtt_ns": 2243723, - "rtt_ms": 2.243723, + "rtt_ns": 4263250, + "rtt_ms": 4.26325, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.526248556Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:53.986496-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444003, - "rtt_ms": 2.444003, + "rtt_ns": 4401792, + "rtt_ms": 4.401792, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "82", - "timestamp": "2025-11-27T01:21:55.526273506Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:53.986512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849884, - "rtt_ms": 1.849884, + "rtt_ns": 3524125, + "rtt_ms": 3.524125, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:55.527261402Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:53.986652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768754, - "rtt_ms": 1.768754, + "rtt_ns": 4382958, + "rtt_ms": 4.382958, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:55.527289412Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:53.987277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917144, - "rtt_ms": 1.917144, + "rtt_ns": 4362542, + "rtt_ms": 4.362542, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:55.527292152Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:53.987388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137736, - "rtt_ms": 1.137736, + "rtt_ns": 4333167, + "rtt_ms": 4.333167, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "805", - "timestamp": "2025-11-27T01:21:55.527311902Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:53.987476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818514, - "rtt_ms": 1.818514, + "rtt_ns": 4365125, + "rtt_ms": 4.365125, "checkpoint": 0, "vertex_from": "76", "vertex_to": "368", - "timestamp": "2025-11-27T01:21:55.527323612Z" + "timestamp": "2025-11-27T04:01:53.988355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390156, - "rtt_ms": 1.390156, + "rtt_ns": 4076541, + "rtt_ms": 4.076541, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.527500262Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:53.989786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363386, - "rtt_ms": 1.363386, + "rtt_ns": 4309500, + "rtt_ms": 4.3095, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:55.527535892Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:53.990099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396535, - "rtt_ms": 1.396535, + "rtt_ns": 4648709, + "rtt_ms": 4.648709, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.527646281Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:53.991146-08:00" }, { "operation": "add_edge", - "rtt_ns": 2356302, - "rtt_ms": 2.356302, + "rtt_ns": 4849000, + "rtt_ms": 4.849, "checkpoint": 0, "vertex_from": "76", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:55.528514478Z" + "timestamp": "2025-11-27T04:01:53.991218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2254082, - "rtt_ms": 2.254082, + "rtt_ns": 4734958, + "rtt_ms": 4.734958, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.528528388Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:01:53.991248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606045, - "rtt_ms": 1.606045, + "rtt_ns": 4603041, + "rtt_ms": 4.603041, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.528868227Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:53.991256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964614, - "rtt_ms": 1.964614, + "rtt_ns": 4027709, + "rtt_ms": 4.027709, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.529278826Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:53.991505-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1784514, - "rtt_ms": 1.784514, + "operation": "add_edge", + "rtt_ns": 3299625, + "rtt_ms": 3.299625, "checkpoint": 0, - "vertex_from": "698", - "timestamp": "2025-11-27T01:21:55.529322926Z" + "vertex_from": "76", + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:53.991656-08:00" }, { "operation": "add_edge", - "rtt_ns": 2500682, - "rtt_ms": 2.500682, + "rtt_ns": 4539375, + "rtt_ms": 4.539375, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.529791384Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:53.991817-08:00" }, { "operation": "add_edge", - "rtt_ns": 2553592, - "rtt_ms": 2.553592, + "rtt_ns": 5026708, + "rtt_ms": 5.026708, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.529880624Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:53.992416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2589372, - "rtt_ms": 2.589372, + "rtt_ns": 3398666, + "rtt_ms": 3.398666, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.529882774Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:53.993187-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416162, - "rtt_ms": 2.416162, + "rtt_ns": 3119708, + "rtt_ms": 3.119708, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.529918084Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:53.99322-08:00" }, { "operation": "add_edge", - "rtt_ns": 2319373, - "rtt_ms": 2.319373, + "rtt_ns": 2410917, + "rtt_ms": 2.410917, "checkpoint": 0, "vertex_from": "76", "vertex_to": "646", - "timestamp": "2025-11-27T01:21:55.529967134Z" + "timestamp": "2025-11-27T04:01:53.99366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532166, - "rtt_ms": 1.532166, + "rtt_ns": 2454875, + "rtt_ms": 2.454875, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:55.530062004Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:53.993713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558975, - "rtt_ms": 1.558975, + "rtt_ns": 3084000, + "rtt_ms": 3.084, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:55.530078303Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:53.994233-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 3109791, + "rtt_ms": 3.109791, + "checkpoint": 0, + "vertex_from": "698", + "timestamp": "2025-11-27T04:01:53.994331-08:00" }, { "operation": "add_edge", - "rtt_ns": 833247, - "rtt_ms": 0.833247, + "rtt_ns": 2682541, + "rtt_ms": 2.682541, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "835", - "timestamp": "2025-11-27T01:21:55.530113623Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:53.99434-08:00" }, { "operation": "add_edge", - "rtt_ns": 908707, - "rtt_ms": 0.908707, + "rtt_ns": 2587875, + "rtt_ms": 2.587875, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "698", - "timestamp": "2025-11-27T01:21:55.530231843Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:01:53.994406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786035, - "rtt_ms": 1.786035, + "rtt_ns": 2910291, + "rtt_ms": 2.910291, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.530656142Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:53.994417-08:00" }, { "operation": "add_edge", - "rtt_ns": 961777, - "rtt_ms": 0.961777, + "rtt_ns": 2364334, + "rtt_ms": 2.364334, "checkpoint": 0, "vertex_from": "76", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.530754671Z" + "timestamp": "2025-11-27T04:01:53.994785-08:00" }, { "operation": "add_edge", - "rtt_ns": 886747, - "rtt_ms": 0.886747, + "rtt_ns": 2416000, + "rtt_ms": 2.416, "checkpoint": 0, "vertex_from": "76", "vertex_to": "844", - "timestamp": "2025-11-27T01:21:55.530771291Z" + "timestamp": "2025-11-27T04:01:53.995637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084967, - "rtt_ms": 1.084967, + "rtt_ns": 2598250, + "rtt_ms": 2.59825, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.531004291Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:53.995805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744565, - "rtt_ms": 1.744565, + "rtt_ns": 2472250, + "rtt_ms": 2.47225, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.531626899Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:53.996187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690014, - "rtt_ms": 1.690014, + "rtt_ns": 2642334, + "rtt_ms": 2.642334, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.531752778Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:53.996305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655385, - "rtt_ms": 1.655385, + "rtt_ns": 2457833, + "rtt_ms": 2.457833, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:55.531770088Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:53.996692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842984, - "rtt_ms": 1.842984, + "rtt_ns": 2383084, + "rtt_ms": 2.383084, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.531811308Z" + "vertex_to": "698", + "timestamp": "2025-11-27T04:01:53.996715-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1735195, - "rtt_ms": 1.735195, + "rtt_ns": 2536375, + "rtt_ms": 2.536375, "checkpoint": 0, "vertex_from": "444", - "timestamp": "2025-11-27T01:21:55.531818108Z" + "timestamp": "2025-11-27T04:01:53.996878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587135, - "rtt_ms": 1.587135, + "rtt_ns": 2498375, + "rtt_ms": 2.498375, "checkpoint": 0, "vertex_from": "76", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.531820348Z" + "timestamp": "2025-11-27T04:01:53.996917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072747, - "rtt_ms": 1.072747, + "rtt_ns": 2165583, + "rtt_ms": 2.165583, "checkpoint": 0, - "vertex_from": "77", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:55.531845868Z" + "vertex_from": "76", + "vertex_to": "718", + "timestamp": "2025-11-27T04:01:53.996952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197806, - "rtt_ms": 1.197806, + "rtt_ns": 2593125, + "rtt_ms": 2.593125, "checkpoint": 0, "vertex_from": "76", - "vertex_to": "718", - "timestamp": "2025-11-27T01:21:55.531855958Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:53.997001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105067, - "rtt_ms": 1.105067, + "rtt_ns": 2041208, + "rtt_ms": 2.041208, "checkpoint": 0, "vertex_from": "77", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.531861988Z" + "timestamp": "2025-11-27T04:01:53.99768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494895, - "rtt_ms": 1.494895, + "rtt_ns": 2142500, + "rtt_ms": 2.1425, "checkpoint": 0, "vertex_from": "77", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.532500536Z" + "timestamp": "2025-11-27T04:01:53.998331-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2597708, + "rtt_ms": 2.597708, + "checkpoint": 0, + "vertex_from": "77", + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:53.998404-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2483584, + "rtt_ms": 2.483584, + "checkpoint": 0, + "vertex_from": "77", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:53.998792-08:00" }, { "operation": "add_edge", - "rtt_ns": 946527, - "rtt_ms": 0.946527, + "rtt_ns": 2050250, + "rtt_ms": 2.05025, "checkpoint": 0, "vertex_from": "76", "vertex_to": "444", - "timestamp": "2025-11-27T01:21:55.532765065Z" + "timestamp": "2025-11-27T04:01:53.998929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012387, - "rtt_ms": 1.012387, + "rtt_ns": 2388416, + "rtt_ms": 2.388416, "checkpoint": 0, "vertex_from": "77", "vertex_to": "960", - "timestamp": "2025-11-27T01:21:55.532767185Z" + "timestamp": "2025-11-27T04:01:53.999082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061996, - "rtt_ms": 1.061996, + "rtt_ns": 2296833, + "rtt_ms": 2.296833, "checkpoint": 0, "vertex_from": "77", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.532909664Z" + "timestamp": "2025-11-27T04:01:53.999299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198906, - "rtt_ms": 1.198906, + "rtt_ns": 2606917, + "rtt_ms": 2.606917, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.533012014Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:53.999323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452145, - "rtt_ms": 1.452145, + "rtt_ns": 2579041, + "rtt_ms": 2.579041, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.533083054Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:53.999498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608115, - "rtt_ms": 1.608115, + "rtt_ns": 2693500, + "rtt_ms": 2.6935, "checkpoint": 0, "vertex_from": "77", "vertex_to": "652", - "timestamp": "2025-11-27T01:21:55.533429913Z" + "timestamp": "2025-11-27T04:01:53.999646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676904, - "rtt_ms": 1.676904, + "rtt_ns": 2196208, + "rtt_ms": 2.196208, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:55.533449562Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:53.999877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750694, - "rtt_ms": 1.750694, + "rtt_ns": 2504250, + "rtt_ms": 2.50425, "checkpoint": 0, "vertex_from": "77", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.533617032Z" + "timestamp": "2025-11-27T04:01:54.000837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784294, - "rtt_ms": 1.784294, + "rtt_ns": 2451209, + "rtt_ms": 2.451209, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:55.533643982Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.000856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579094, - "rtt_ms": 1.579094, + "rtt_ns": 2150250, + "rtt_ms": 2.15025, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.53408177Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.001236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689414, - "rtt_ms": 1.689414, + "rtt_ns": 2477125, + "rtt_ms": 2.477125, "checkpoint": 0, "vertex_from": "77", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.534457939Z" + "timestamp": "2025-11-27T04:01:54.001272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860224, - "rtt_ms": 1.860224, + "rtt_ns": 2383084, + "rtt_ms": 2.383084, "checkpoint": 0, "vertex_from": "77", "vertex_to": "342", - "timestamp": "2025-11-27T01:21:55.534631029Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1025986, - "rtt_ms": 1.025986, - "checkpoint": 0, - "vertex_from": "77", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:55.534644308Z" + "timestamp": "2025-11-27T04:01:54.001314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663244, - "rtt_ms": 1.663244, + "rtt_ns": 2444166, + "rtt_ms": 2.444166, "checkpoint": 0, "vertex_from": "77", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.534676478Z" + "timestamp": "2025-11-27T04:01:54.001744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102606, - "rtt_ms": 1.102606, + "rtt_ns": 2443833, + "rtt_ms": 2.443833, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.534747798Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:54.001768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724324, - "rtt_ms": 1.724324, + "rtt_ns": 2188833, + "rtt_ms": 2.188833, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:55.534808288Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.001849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971374, - "rtt_ms": 1.971374, + "rtt_ns": 2365208, + "rtt_ms": 2.365208, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.534882428Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:54.001864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491735, - "rtt_ms": 1.491735, + "rtt_ns": 2359208, + "rtt_ms": 2.359208, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.534943567Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:54.002237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514204, - "rtt_ms": 1.514204, + "rtt_ns": 2335709, + "rtt_ms": 2.335709, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:55.534946477Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.003174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092246, - "rtt_ms": 1.092246, + "rtt_ns": 2342167, + "rtt_ms": 2.342167, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.535551585Z" + "vertex_to": "81", + "timestamp": "2025-11-27T04:01:54.0032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560615, - "rtt_ms": 1.560615, + "rtt_ns": 2486500, + "rtt_ms": 2.4865, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "81", - "timestamp": "2025-11-27T01:21:55.535643135Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.003802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125447, - "rtt_ms": 1.125447, + "rtt_ns": 2657167, + "rtt_ms": 2.657167, "checkpoint": 0, "vertex_from": "77", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.535759455Z" + "timestamp": "2025-11-27T04:01:54.003931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270776, - "rtt_ms": 1.270776, + "rtt_ns": 2694291, + "rtt_ms": 2.694291, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.535916304Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.003932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128106, - "rtt_ms": 1.128106, + "rtt_ns": 2286625, + "rtt_ms": 2.286625, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.536011324Z" + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:54.004137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358156, - "rtt_ms": 1.358156, + "rtt_ns": 2448416, + "rtt_ms": 2.448416, "checkpoint": 0, "vertex_from": "77", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.536035994Z" + "timestamp": "2025-11-27T04:01:54.004194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287666, - "rtt_ms": 1.287666, + "rtt_ns": 2508583, + "rtt_ms": 2.508583, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.536037694Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:54.004373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847484, - "rtt_ms": 1.847484, + "rtt_ns": 2615209, + "rtt_ms": 2.615209, "checkpoint": 0, "vertex_from": "77", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:55.536657492Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.004386-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1176897, - "rtt_ms": 1.176897, + "operation": "add_edge", + "rtt_ns": 2569666, + "rtt_ms": 2.569666, "checkpoint": 0, - "vertex_from": "884", - "timestamp": "2025-11-27T01:21:55.536731242Z" + "vertex_from": "78", + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.004808-08:00" }, { "operation": "add_edge", - "rtt_ns": 848678, - "rtt_ms": 0.848678, + "rtt_ns": 2379500, + "rtt_ms": 2.3795, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:55.536766022Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:54.005555-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2531834, + "rtt_ms": 2.531834, + "checkpoint": 0, + "vertex_from": "884", + "timestamp": "2025-11-27T04:01:54.005734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834214, - "rtt_ms": 1.834214, + "rtt_ns": 2294917, + "rtt_ms": 2.294917, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.536783001Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.006682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035246, - "rtt_ms": 1.035246, + "rtt_ns": 2565917, + "rtt_ms": 2.565917, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.536795601Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:54.006704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866674, - "rtt_ms": 1.866674, + "rtt_ns": 2346792, + "rtt_ms": 2.346792, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.536812441Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:54.006722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177896, - "rtt_ms": 1.177896, + "rtt_ns": 2807167, + "rtt_ms": 2.807167, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:55.536822151Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:54.006742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522775, - "rtt_ms": 1.522775, + "rtt_ns": 3045917, + "rtt_ms": 3.045917, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.537560489Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:54.006849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549125, - "rtt_ms": 1.549125, + "rtt_ns": 2929875, + "rtt_ms": 2.929875, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.537561469Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.006864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523285, - "rtt_ms": 1.523285, + "rtt_ns": 2780542, + "rtt_ms": 2.780542, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.537563399Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:54.006976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253466, - "rtt_ms": 1.253466, + "rtt_ns": 2582500, + "rtt_ms": 2.5825, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.537913748Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:54.007393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207306, - "rtt_ms": 1.207306, + "rtt_ns": 2093250, + "rtt_ms": 2.09325, "checkpoint": 0, "vertex_from": "78", "vertex_to": "884", - "timestamp": "2025-11-27T01:21:55.537938808Z" + "timestamp": "2025-11-27T04:01:54.007829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689645, - "rtt_ms": 1.689645, + "rtt_ns": 2283875, + "rtt_ms": 2.283875, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.538503626Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.00784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830364, - "rtt_ms": 1.830364, + "rtt_ns": 1892333, + "rtt_ms": 1.892333, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.538597906Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.008598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861765, - "rtt_ms": 1.861765, + "rtt_ns": 2194667, + "rtt_ms": 2.194667, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.538645916Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.008938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095657, - "rtt_ms": 1.095657, + "rtt_ns": 2279167, + "rtt_ms": 2.279167, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.538659356Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.009002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868655, - "rtt_ms": 1.868655, + "rtt_ns": 2370958, + "rtt_ms": 2.370958, "checkpoint": 0, "vertex_from": "78", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.538665656Z" + "timestamp": "2025-11-27T04:01:54.009054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128806, - "rtt_ms": 1.128806, + "rtt_ns": 2331417, + "rtt_ms": 2.331417, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:55.538694815Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.009181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1929244, - "rtt_ms": 1.929244, + "rtt_ns": 2225791, + "rtt_ms": 2.225791, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.538752895Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.009203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267016, - "rtt_ms": 1.267016, + "rtt_ns": 2356750, + "rtt_ms": 2.35675, "checkpoint": 0, "vertex_from": "78", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.538828985Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:54.009222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433365, - "rtt_ms": 1.433365, + "rtt_ns": 1999167, + "rtt_ms": 1.999167, "checkpoint": 0, "vertex_from": "78", "vertex_to": "149", - "timestamp": "2025-11-27T01:21:55.539373053Z" + "timestamp": "2025-11-27T04:01:54.009395-08:00" }, { "operation": "add_edge", - "rtt_ns": 982967, - "rtt_ms": 0.982967, + "rtt_ns": 1921542, + "rtt_ms": 1.921542, "checkpoint": 0, "vertex_from": "79", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:55.539582203Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.009752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019986, - "rtt_ms": 1.019986, + "rtt_ns": 2020708, + "rtt_ms": 2.020708, "checkpoint": 0, "vertex_from": "79", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.539666822Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:54.009862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189386, - "rtt_ms": 1.189386, + "rtt_ns": 2272875, + "rtt_ms": 2.272875, "checkpoint": 0, "vertex_from": "79", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.539694682Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1968764, - "rtt_ms": 1.968764, - "checkpoint": 0, - "vertex_from": "78", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.539883632Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.010872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232176, - "rtt_ms": 1.232176, + "rtt_ns": 2082708, + "rtt_ms": 2.082708, "checkpoint": 0, "vertex_from": "79", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.539899552Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.011023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407225, - "rtt_ms": 1.407225, + "rtt_ns": 2198000, + "rtt_ms": 2.198, "checkpoint": 0, "vertex_from": "79", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.540069861Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.011202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328736, - "rtt_ms": 1.328736, + "rtt_ns": 2191334, + "rtt_ms": 2.191334, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.540083101Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.011248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427896, - "rtt_ms": 1.427896, + "rtt_ns": 2117584, + "rtt_ms": 2.117584, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.540124301Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.0113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332666, - "rtt_ms": 1.332666, + "rtt_ns": 2362209, + "rtt_ms": 2.362209, "checkpoint": 0, "vertex_from": "80", "vertex_to": "554", - "timestamp": "2025-11-27T01:21:55.540163001Z" + "timestamp": "2025-11-27T04:01:54.011566-08:00" }, { "operation": "add_edge", - "rtt_ns": 634627, - "rtt_ms": 0.634627, + "rtt_ns": 2284542, + "rtt_ms": 2.284542, "checkpoint": 0, "vertex_from": "80", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.54021877Z" + "timestamp": "2025-11-27T04:01:54.011682-08:00" }, { "operation": "add_edge", - "rtt_ns": 855977, - "rtt_ms": 0.855977, + "rtt_ns": 2051416, + "rtt_ms": 2.051416, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.54023224Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.011805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135917, - "rtt_ms": 1.135917, + "rtt_ns": 2597375, + "rtt_ms": 2.597375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.540803989Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.01182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223406, - "rtt_ms": 1.223406, + "rtt_ns": 1957833, + "rtt_ms": 1.957833, "checkpoint": 0, "vertex_from": "80", "vertex_to": "401", - "timestamp": "2025-11-27T01:21:55.540919838Z" + "timestamp": "2025-11-27T04:01:54.011822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140436, - "rtt_ms": 1.140436, + "rtt_ns": 1939125, + "rtt_ms": 1.939125, "checkpoint": 0, "vertex_from": "80", "vertex_to": "594", - "timestamp": "2025-11-27T01:21:55.541041098Z" + "timestamp": "2025-11-27T04:01:54.012963-08:00" }, { "operation": "add_edge", - "rtt_ns": 984607, - "rtt_ms": 0.984607, + "rtt_ns": 2164875, + "rtt_ms": 2.164875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.541068908Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:54.01304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211056, - "rtt_ms": 1.211056, + "rtt_ns": 1955417, + "rtt_ms": 1.955417, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:55.541096918Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1452125, - "rtt_ms": 1.452125, - "checkpoint": 0, - "vertex_from": "567", - "timestamp": "2025-11-27T01:21:55.541525506Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:01:54.013257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545915, - "rtt_ms": 1.545915, + "rtt_ns": 2029959, + "rtt_ms": 2.029959, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.541765575Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.013279-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1562295, - "rtt_ms": 1.562295, + "operation": "add_vertex", + "rtt_ns": 2233750, + "rtt_ms": 2.23375, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:55.541795745Z" + "vertex_from": "567", + "timestamp": "2025-11-27T04:01:54.013438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696494, - "rtt_ms": 1.696494, + "rtt_ns": 1725541, + "rtt_ms": 1.725541, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "286", - "timestamp": "2025-11-27T01:21:55.541822815Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:54.013551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682184, - "rtt_ms": 1.682184, + "rtt_ns": 2042459, + "rtt_ms": 2.042459, "checkpoint": 0, "vertex_from": "80", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.541846375Z" + "timestamp": "2025-11-27T04:01:54.01361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179116, - "rtt_ms": 1.179116, + "rtt_ns": 1945542, + "rtt_ms": 1.945542, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "370", - "timestamp": "2025-11-27T01:21:55.541984385Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.013628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761464, - "rtt_ms": 1.761464, + "rtt_ns": 2239416, + "rtt_ms": 2.239416, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "207", - "timestamp": "2025-11-27T01:21:55.542831422Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:01:54.014063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062783, - "rtt_ms": 2.062783, + "rtt_ns": 2297458, + "rtt_ms": 2.297458, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:55.542983731Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:54.014104-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025513, - "rtt_ms": 2.025513, + "rtt_ns": 1648875, + "rtt_ms": 1.648875, "checkpoint": 0, "vertex_from": "80", "vertex_to": "394", - "timestamp": "2025-11-27T01:21:55.543123671Z" + "timestamp": "2025-11-27T04:01:54.014908-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102703, - "rtt_ms": 2.102703, + "rtt_ns": 1908125, + "rtt_ms": 1.908125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.543145171Z" + "vertex_to": "207", + "timestamp": "2025-11-27T04:01:54.014951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492935, - "rtt_ms": 1.492935, + "rtt_ns": 1736959, + "rtt_ms": 1.736959, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:55.54325981Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.015289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766354, - "rtt_ms": 1.766354, + "rtt_ns": 1795042, + "rtt_ms": 1.795042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "567", - "timestamp": "2025-11-27T01:21:55.54329208Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.015424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830364, - "rtt_ms": 1.830364, + "rtt_ns": 2005667, + "rtt_ms": 2.005667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.543627039Z" + "vertex_to": "567", + "timestamp": "2025-11-27T04:01:54.015444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2458382, - "rtt_ms": 2.458382, + "rtt_ns": 2485542, + "rtt_ms": 2.485542, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.544306127Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.01545-08:00" }, { "operation": "add_edge", - "rtt_ns": 2394012, - "rtt_ms": 2.394012, + "rtt_ns": 1395292, + "rtt_ms": 1.395292, "checkpoint": 0, "vertex_from": "80", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.544380197Z" + "timestamp": "2025-11-27T04:01:54.01546-08:00" }, { "operation": "add_edge", - "rtt_ns": 2570292, - "rtt_ms": 2.570292, + "rtt_ns": 1886250, + "rtt_ms": 1.88625, "checkpoint": 0, "vertex_from": "80", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.544393887Z" + "timestamp": "2025-11-27T04:01:54.015498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573425, - "rtt_ms": 1.573425, + "rtt_ns": 2242834, + "rtt_ms": 2.242834, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.544406717Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:54.015523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373215, - "rtt_ms": 1.373215, + "rtt_ns": 2233417, + "rtt_ms": 2.233417, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:55.544497856Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.01634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796454, - "rtt_ms": 1.796454, + "rtt_ns": 1824000, + "rtt_ms": 1.824, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:55.544942925Z" + "vertex_to": "86", + "timestamp": "2025-11-27T04:01:54.016733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754825, - "rtt_ms": 1.754825, + "rtt_ns": 1826750, + "rtt_ms": 1.82675, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.545047885Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:54.016779-08:00" }, { "operation": "add_edge", - "rtt_ns": 755547, - "rtt_ms": 0.755547, + "rtt_ns": 2274750, + "rtt_ms": 2.27475, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:55.545063484Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:54.017726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447005, - "rtt_ms": 1.447005, + "rtt_ns": 2299667, + "rtt_ms": 2.299667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:55.545075414Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.017747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2255193, - "rtt_ms": 2.255193, + "rtt_ns": 2270542, + "rtt_ms": 2.270542, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "86", - "timestamp": "2025-11-27T01:21:55.545240164Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:54.017769-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024884, - "rtt_ms": 2.024884, + "rtt_ns": 2497541, + "rtt_ms": 2.497541, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.545285964Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:54.017787-08:00" }, { "operation": "add_edge", - "rtt_ns": 977917, - "rtt_ms": 0.977917, + "rtt_ns": 1866625, + "rtt_ms": 1.866625, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:55.545923062Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:54.018208-08:00" }, { "operation": "add_edge", - "rtt_ns": 900807, - "rtt_ms": 0.900807, + "rtt_ns": 2873584, + "rtt_ms": 2.873584, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.545950022Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:54.018335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557945, - "rtt_ms": 1.557945, + "rtt_ns": 2866500, + "rtt_ms": 2.8665, "checkpoint": 0, "vertex_from": "80", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:55.545952862Z" + "timestamp": "2025-11-27T04:01:54.01839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548655, - "rtt_ms": 1.548655, + "rtt_ns": 3346375, + "rtt_ms": 3.346375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:55.545956672Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.018771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584335, - "rtt_ms": 1.584335, + "rtt_ns": 2146250, + "rtt_ms": 2.14625, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:55.545966582Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:54.01888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699335, - "rtt_ms": 1.699335, + "rtt_ns": 2137041, + "rtt_ms": 2.137041, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:55.546198571Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:54.018917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172157, - "rtt_ms": 1.172157, + "rtt_ns": 1835542, + "rtt_ms": 1.835542, "checkpoint": 0, "vertex_from": "80", "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.546237201Z" + "timestamp": "2025-11-27T04:01:54.019583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223377, - "rtt_ms": 1.223377, + "rtt_ns": 1879250, + "rtt_ms": 1.87925, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.546300571Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:54.019606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091316, - "rtt_ms": 1.091316, + "rtt_ns": 1789834, + "rtt_ms": 1.789834, "checkpoint": 0, "vertex_from": "80", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.54637868Z" + "timestamp": "2025-11-27T04:01:54.019999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178686, - "rtt_ms": 1.178686, + "rtt_ns": 2251667, + "rtt_ms": 2.251667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.54642247Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1066606, - "rtt_ms": 1.066606, - "checkpoint": 0, - "vertex_from": "989", - "timestamp": "2025-11-27T01:21:55.546991918Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.020021-08:00" }, { "operation": "add_edge", - "rtt_ns": 773097, - "rtt_ms": 0.773097, + "rtt_ns": 2255250, + "rtt_ms": 2.25525, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.547074668Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.020043-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1149856, - "rtt_ms": 1.149856, + "operation": "add_vertex", + "rtt_ns": 1873416, + "rtt_ms": 1.873416, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.547108468Z" + "vertex_from": "989", + "timestamp": "2025-11-27T04:01:54.020214-08:00" }, { "operation": "add_edge", - "rtt_ns": 898567, - "rtt_ms": 0.898567, + "rtt_ns": 1402167, + "rtt_ms": 1.402167, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "406", - "timestamp": "2025-11-27T01:21:55.547136848Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.020284-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1200336, - "rtt_ms": 1.200336, + "rtt_ns": 1630750, + "rtt_ms": 1.63075, "checkpoint": 0, "vertex_from": "799", - "timestamp": "2025-11-27T01:21:55.547155878Z" + "timestamp": "2025-11-27T04:01:54.020403-08:00" }, { "operation": "add_edge", - "rtt_ns": 995937, - "rtt_ms": 0.995937, + "rtt_ns": 2032209, + "rtt_ms": 2.032209, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:55.547195978Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:54.020424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268506, - "rtt_ms": 1.268506, + "rtt_ns": 1972292, + "rtt_ms": 1.972292, "checkpoint": 0, "vertex_from": "80", "vertex_to": "625", - "timestamp": "2025-11-27T01:21:55.547238158Z" + "timestamp": "2025-11-27T04:01:54.020891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300036, - "rtt_ms": 1.300036, + "rtt_ns": 1901917, + "rtt_ms": 1.901917, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:55.547251728Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:54.021509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463916, - "rtt_ms": 1.463916, + "rtt_ns": 1320042, + "rtt_ms": 1.320042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.547887796Z" + "vertex_to": "989", + "timestamp": "2025-11-27T04:01:54.021535-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1542195, - "rtt_ms": 1.542195, + "rtt_ns": 1834458, + "rtt_ms": 1.834458, "checkpoint": 0, "vertex_from": "742", - "timestamp": "2025-11-27T01:21:55.547924215Z" + "timestamp": "2025-11-27T04:01:54.021857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079546, - "rtt_ms": 1.079546, + "rtt_ns": 1832916, + "rtt_ms": 1.832916, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.548217374Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.021877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171226, - "rtt_ms": 1.171226, + "rtt_ns": 1888916, + "rtt_ms": 1.888916, + "checkpoint": 0, + "vertex_from": "80", + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:54.02189-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1626125, + "rtt_ms": 1.626125, "checkpoint": 0, "vertex_from": "80", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.548248004Z" + "timestamp": "2025-11-27T04:01:54.021912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090726, - "rtt_ms": 1.090726, + "rtt_ns": 2351083, + "rtt_ms": 2.351083, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.548287864Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:54.021936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252456, - "rtt_ms": 1.252456, + "rtt_ns": 1547125, + "rtt_ms": 1.547125, "checkpoint": 0, "vertex_from": "80", "vertex_to": "799", - "timestamp": "2025-11-27T01:21:55.548408854Z" + "timestamp": "2025-11-27T04:01:54.021951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434066, - "rtt_ms": 1.434066, + "rtt_ns": 1694833, + "rtt_ms": 1.694833, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "989", - "timestamp": "2025-11-27T01:21:55.548426444Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:54.02212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444985, - "rtt_ms": 1.444985, + "rtt_ns": 1992166, + "rtt_ms": 1.992166, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:55.548554793Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:54.022884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747794, - "rtt_ms": 1.747794, + "rtt_ns": 1702750, + "rtt_ms": 1.70275, "checkpoint": 0, "vertex_from": "80", "vertex_to": "97", - "timestamp": "2025-11-27T01:21:55.548987692Z" + "timestamp": "2025-11-27T04:01:54.023241-08:00" }, { "operation": "add_edge", - "rtt_ns": 808538, - "rtt_ms": 0.808538, + "rtt_ns": 1835125, + "rtt_ms": 1.835125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:55.549027042Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.023345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246306, - "rtt_ms": 1.246306, + "rtt_ns": 1779000, + "rtt_ms": 1.779, "checkpoint": 0, "vertex_from": "80", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.549136062Z" + "timestamp": "2025-11-27T04:01:54.023671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896104, - "rtt_ms": 1.896104, + "rtt_ns": 1781417, + "rtt_ms": 1.781417, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.549150632Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:54.023696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348306, - "rtt_ms": 1.348306, + "rtt_ns": 1807375, + "rtt_ms": 1.807375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "742", - "timestamp": "2025-11-27T01:21:55.549272811Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:54.02376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059397, - "rtt_ms": 1.059397, + "rtt_ns": 1925709, + "rtt_ms": 1.925709, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.549310381Z" + "vertex_to": "742", + "timestamp": "2025-11-27T04:01:54.023783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142377, - "rtt_ms": 1.142377, + "rtt_ns": 1907458, + "rtt_ms": 1.907458, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:55.549432641Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.023786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477356, - "rtt_ms": 1.477356, + "rtt_ns": 1683083, + "rtt_ms": 1.683083, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.550033229Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:01:54.023804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624405, - "rtt_ms": 1.624405, + "rtt_ns": 1911708, + "rtt_ms": 1.911708, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:55.550052569Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.023848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653565, - "rtt_ms": 1.653565, + "rtt_ns": 1786042, + "rtt_ms": 1.786042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "940", - "timestamp": "2025-11-27T01:21:55.550064089Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:54.024671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393566, - "rtt_ms": 1.393566, + "rtt_ns": 1454291, + "rtt_ms": 1.454291, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.550382538Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.024696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262166, - "rtt_ms": 1.262166, + "rtt_ns": 1241791, + "rtt_ms": 1.241791, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.550400008Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:54.025025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340105, - "rtt_ms": 1.340105, + "rtt_ns": 1703000, + "rtt_ms": 1.703, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:55.550491977Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.025049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253366, - "rtt_ms": 1.253366, + "rtt_ns": 1602375, + "rtt_ms": 1.602375, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:55.550564827Z" + "vertex_to": "149", + "timestamp": "2025-11-27T04:01:54.025274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541345, - "rtt_ms": 1.541345, + "rtt_ns": 1653167, + "rtt_ms": 1.653167, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "149", - "timestamp": "2025-11-27T01:21:55.550570197Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.025352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367796, - "rtt_ms": 1.367796, + "rtt_ns": 1740083, + "rtt_ms": 1.740083, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:55.550642137Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:54.025501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229616, - "rtt_ms": 1.229616, + "rtt_ns": 1908042, + "rtt_ms": 1.908042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.550663347Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:54.025696-08:00" }, { "operation": "add_edge", - "rtt_ns": 748767, - "rtt_ms": 0.748767, + "rtt_ns": 1902792, + "rtt_ms": 1.902792, "checkpoint": 0, "vertex_from": "80", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.550782876Z" + "timestamp": "2025-11-27T04:01:54.025752-08:00" }, { "operation": "add_edge", - "rtt_ns": 744997, - "rtt_ms": 0.744997, + "rtt_ns": 1956916, + "rtt_ms": 1.956916, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:55.550799156Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.025762-08:00" }, { "operation": "add_edge", - "rtt_ns": 751977, - "rtt_ms": 0.751977, + "rtt_ns": 1785292, + "rtt_ms": 1.785292, "checkpoint": 0, "vertex_from": "80", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.550817296Z" + "timestamp": "2025-11-27T04:01:54.026484-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1888917, + "rtt_ms": 1.888917, + "checkpoint": 0, + "vertex_from": "80", + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:54.026565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529185, - "rtt_ms": 1.529185, + "rtt_ns": 1567750, + "rtt_ms": 1.56775, "checkpoint": 0, "vertex_from": "80", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:55.551930693Z" + "timestamp": "2025-11-27T04:01:54.026618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580405, - "rtt_ms": 1.580405, + "rtt_ns": 1651000, + "rtt_ms": 1.651, "checkpoint": 0, "vertex_from": "80", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.551964593Z" + "timestamp": "2025-11-27T04:01:54.026678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757115, - "rtt_ms": 1.757115, + "rtt_ns": 1407208, + "rtt_ms": 1.407208, "checkpoint": 0, "vertex_from": "80", "vertex_to": "908", - "timestamp": "2025-11-27T01:21:55.552251282Z" + "timestamp": "2025-11-27T04:01:54.026682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713794, - "rtt_ms": 1.713794, + "rtt_ns": 1650459, + "rtt_ms": 1.650459, "checkpoint": 0, "vertex_from": "80", "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.552285101Z" + "timestamp": "2025-11-27T04:01:54.027152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788244, - "rtt_ms": 1.788244, + "rtt_ns": 1803625, + "rtt_ms": 1.803625, "checkpoint": 0, "vertex_from": "80", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.552354671Z" + "timestamp": "2025-11-27T04:01:54.027157-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372232, - "rtt_ms": 2.372232, + "rtt_ns": 1934833, + "rtt_ms": 1.934833, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:55.553037099Z" + "vertex_to": "99", + "timestamp": "2025-11-27T04:01:54.027644-08:00" }, { "operation": "add_edge", - "rtt_ns": 2413442, - "rtt_ms": 2.413442, + "rtt_ns": 1909292, + "rtt_ms": 1.909292, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "99", - "timestamp": "2025-11-27T01:21:55.553057249Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:54.027672-08:00" }, { "operation": "add_edge", - "rtt_ns": 2263233, - "rtt_ms": 2.263233, + "rtt_ns": 1990250, + "rtt_ms": 1.99025, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:55.553081729Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:54.027744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2321253, - "rtt_ms": 2.321253, + "rtt_ns": 1541000, + "rtt_ms": 1.541, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:55.553121839Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:54.028225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392212, - "rtt_ms": 2.392212, + "rtt_ns": 1826709, + "rtt_ms": 1.826709, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:55.553176648Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:54.028447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248595, - "rtt_ms": 1.248595, + "rtt_ns": 2064417, + "rtt_ms": 2.064417, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:55.553181298Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:54.028549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377995, - "rtt_ms": 1.377995, + "rtt_ns": 1905542, + "rtt_ms": 1.905542, "checkpoint": 0, "vertex_from": "80", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:55.553343788Z" + "timestamp": "2025-11-27T04:01:54.028585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151456, - "rtt_ms": 1.151456, + "rtt_ns": 2049167, + "rtt_ms": 2.049167, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.553404128Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:54.028617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190476, - "rtt_ms": 1.190476, + "rtt_ns": 1469666, + "rtt_ms": 1.469666, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.553476787Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.028627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192726, - "rtt_ms": 1.192726, + "rtt_ns": 1784291, + "rtt_ms": 1.784291, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.553548527Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.028937-08:00" }, { "operation": "add_edge", - "rtt_ns": 715667, - "rtt_ms": 0.715667, + "rtt_ns": 1608167, + "rtt_ms": 1.608167, "checkpoint": 0, "vertex_from": "80", "vertex_to": "201", - "timestamp": "2025-11-27T01:21:55.553798566Z" + "timestamp": "2025-11-27T04:01:54.029355-08:00" }, { "operation": "add_edge", - "rtt_ns": 788327, - "rtt_ms": 0.788327, + "rtt_ns": 1769333, + "rtt_ms": 1.769333, "checkpoint": 0, "vertex_from": "80", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.553827026Z" + "timestamp": "2025-11-27T04:01:54.029415-08:00" }, { "operation": "add_edge", - "rtt_ns": 894727, - "rtt_ms": 0.894727, + "rtt_ns": 1319042, + "rtt_ms": 1.319042, + "checkpoint": 0, + "vertex_from": "80", + "vertex_to": "88", + "timestamp": "2025-11-27T04:01:54.029769-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2121458, + "rtt_ms": 2.121458, "checkpoint": 0, "vertex_from": "80", "vertex_to": "481", - "timestamp": "2025-11-27T01:21:55.553953916Z" + "timestamp": "2025-11-27T04:01:54.029794-08:00" }, { "operation": "add_edge", - "rtt_ns": 813808, - "rtt_ms": 0.813808, + "rtt_ns": 1790000, + "rtt_ms": 1.79, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "713", - "timestamp": "2025-11-27T01:21:55.553996186Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.030016-08:00" }, { "operation": "add_edge", - "rtt_ns": 876418, - "rtt_ms": 0.876418, + "rtt_ns": 1552708, + "rtt_ms": 1.552708, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "88", - "timestamp": "2025-11-27T01:21:55.554054066Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.030181-08:00" }, { "operation": "add_edge", - "rtt_ns": 959066, - "rtt_ms": 0.959066, + "rtt_ns": 1707000, + "rtt_ms": 1.707, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.554082205Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:01:54.030259-08:00" }, { "operation": "add_edge", - "rtt_ns": 971007, - "rtt_ms": 0.971007, + "rtt_ns": 1726250, + "rtt_ms": 1.72625, "checkpoint": 0, "vertex_from": "80", "vertex_to": "84", - "timestamp": "2025-11-27T01:21:55.554316615Z" + "timestamp": "2025-11-27T04:01:54.030312-08:00" }, { "operation": "add_edge", - "rtt_ns": 985226, - "rtt_ms": 0.985226, + "rtt_ns": 1777167, + "rtt_ms": 1.777167, "checkpoint": 0, "vertex_from": "80", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.554390654Z" + "timestamp": "2025-11-27T04:01:54.030395-08:00" }, { "operation": "add_edge", - "rtt_ns": 948247, - "rtt_ms": 0.948247, + "rtt_ns": 1654417, + "rtt_ms": 1.654417, "checkpoint": 0, "vertex_from": "80", "vertex_to": "346", - "timestamp": "2025-11-27T01:21:55.554498014Z" + "timestamp": "2025-11-27T04:01:54.030593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052617, - "rtt_ms": 1.052617, + "rtt_ns": 1526792, + "rtt_ms": 1.526792, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.554530604Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:01:54.030943-08:00" }, { "operation": "add_edge", - "rtt_ns": 734728, - "rtt_ms": 0.734728, + "rtt_ns": 1675958, + "rtt_ms": 1.675958, "checkpoint": 0, "vertex_from": "80", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.554535234Z" + "timestamp": "2025-11-27T04:01:54.031033-08:00" }, { "operation": "add_edge", - "rtt_ns": 794958, - "rtt_ms": 0.794958, + "rtt_ns": 1447833, + "rtt_ms": 1.447833, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "91", - "timestamp": "2025-11-27T01:21:55.554623614Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:01:54.031465-08:00" }, { "operation": "add_edge", - "rtt_ns": 820347, - "rtt_ms": 0.820347, + "rtt_ns": 1689542, + "rtt_ms": 1.689542, "checkpoint": 0, "vertex_from": "80", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.554821403Z" + "timestamp": "2025-11-27T04:01:54.031485-08:00" }, { "operation": "add_edge", - "rtt_ns": 802427, - "rtt_ms": 0.802427, + "rtt_ns": 1800917, + "rtt_ms": 1.800917, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "398", - "timestamp": "2025-11-27T01:21:55.554857573Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.031572-08:00" }, { "operation": "add_edge", - "rtt_ns": 917867, - "rtt_ms": 0.917867, + "rtt_ns": 1530916, + "rtt_ms": 1.530916, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.554872783Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:54.031927-08:00" }, { "operation": "add_edge", - "rtt_ns": 808628, - "rtt_ms": 0.808628, + "rtt_ns": 1828083, + "rtt_ms": 1.828083, "checkpoint": 0, "vertex_from": "80", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.554891783Z" + "timestamp": "2025-11-27T04:01:54.032011-08:00" }, { "operation": "add_edge", - "rtt_ns": 758647, - "rtt_ms": 0.758647, + "rtt_ns": 2001958, + "rtt_ms": 2.001958, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.555076892Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:54.032315-08:00" }, { "operation": "add_edge", - "rtt_ns": 579998, - "rtt_ms": 0.579998, + "rtt_ns": 2232750, + "rtt_ms": 2.23275, "checkpoint": 0, "vertex_from": "80", "vertex_to": "344", - "timestamp": "2025-11-27T01:21:55.555112872Z" + "timestamp": "2025-11-27T04:01:54.032827-08:00" }, { "operation": "add_edge", - "rtt_ns": 758878, - "rtt_ms": 0.758878, + "rtt_ns": 1866542, + "rtt_ms": 1.866542, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:55.555150632Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.032901-08:00" }, { "operation": "add_edge", - "rtt_ns": 670718, - "rtt_ms": 0.670718, + "rtt_ns": 2689667, + "rtt_ms": 2.689667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:55.555169792Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.03295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038636, - "rtt_ms": 1.038636, + "rtt_ns": 2055875, + "rtt_ms": 2.055875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:55.555931159Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082916, - "rtt_ms": 1.082916, + "rtt_ns": 1759792, + "rtt_ms": 1.759792, "checkpoint": 0, "vertex_from": "80", "vertex_to": "82", - "timestamp": "2025-11-27T01:21:55.555956709Z" + "timestamp": "2025-11-27T04:01:54.033332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332315, - "rtt_ms": 1.332315, + "rtt_ns": 1870875, + "rtt_ms": 1.870875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.555957109Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:54.033356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143316, - "rtt_ms": 1.143316, + "rtt_ns": 2418708, + "rtt_ms": 2.418708, "checkpoint": 0, "vertex_from": "80", "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.555965699Z" + "timestamp": "2025-11-27T04:01:54.033885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137046, - "rtt_ms": 1.137046, + "rtt_ns": 2017208, + "rtt_ms": 2.017208, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.555996039Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:54.033946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622745, - "rtt_ms": 1.622745, + "rtt_ns": 2024125, + "rtt_ms": 2.024125, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.556159719Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:54.034341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067516, - "rtt_ms": 1.067516, + "rtt_ns": 2359625, + "rtt_ms": 2.359625, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "485", - "timestamp": "2025-11-27T01:21:55.556181588Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:01:54.034374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1728415, - "rtt_ms": 1.728415, + "rtt_ns": 1470041, + "rtt_ms": 1.470041, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "173", - "timestamp": "2025-11-27T01:21:55.556806547Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:54.034827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671834, - "rtt_ms": 1.671834, + "rtt_ns": 1899708, + "rtt_ms": 1.899708, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:55.556823756Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.034851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750514, - "rtt_ms": 1.750514, + "rtt_ns": 2341792, + "rtt_ms": 2.341792, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:55.556922946Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:54.035172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092257, - "rtt_ms": 1.092257, + "rtt_ns": 2433083, + "rtt_ms": 2.433083, "checkpoint": 0, "vertex_from": "80", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.557050096Z" + "timestamp": "2025-11-27T04:01:54.035435-08:00" }, { "operation": "add_edge", - "rtt_ns": 835248, - "rtt_ms": 0.835248, + "rtt_ns": 2119209, + "rtt_ms": 2.119209, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:55.557660124Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:54.035453-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1789265, - "rtt_ms": 1.789265, + "operation": "add_vertex", + "rtt_ns": 1097209, + "rtt_ms": 1.097209, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "901", - "timestamp": "2025-11-27T01:21:55.557756944Z" + "vertex_from": "489", + "timestamp": "2025-11-27T04:01:54.035472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642285, - "rtt_ms": 1.642285, + "rtt_ns": 2814667, + "rtt_ms": 2.814667, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:55.557824683Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:54.035717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844274, - "rtt_ms": 1.844274, + "rtt_ns": 1853708, + "rtt_ms": 1.853708, "checkpoint": 0, "vertex_from": "80", "vertex_to": "833", - "timestamp": "2025-11-27T01:21:55.557841163Z" + "timestamp": "2025-11-27T04:01:54.035741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697064, - "rtt_ms": 1.697064, + "rtt_ns": 1811917, + "rtt_ms": 1.811917, "checkpoint": 0, "vertex_from": "80", "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.557858383Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1054186, - "rtt_ms": 1.054186, - "checkpoint": 0, - "vertex_from": "489", - "timestamp": "2025-11-27T01:21:55.557866023Z" + "timestamp": "2025-11-27T04:01:54.035759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928394, - "rtt_ms": 1.928394, + "rtt_ns": 1598875, + "rtt_ms": 1.598875, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:55.557886383Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:54.035941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2069744, - "rtt_ms": 2.069744, + "rtt_ns": 1626834, + "rtt_ms": 1.626834, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.558002033Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.036479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125847, - "rtt_ms": 1.125847, + "rtt_ns": 1696167, + "rtt_ms": 1.696167, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.558049743Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:54.036524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657364, - "rtt_ms": 1.657364, + "rtt_ns": 1747542, + "rtt_ms": 1.747542, "checkpoint": 0, "vertex_from": "80", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.55870949Z" + "timestamp": "2025-11-27T04:01:54.03692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083307, - "rtt_ms": 1.083307, + "rtt_ns": 1483209, + "rtt_ms": 1.483209, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "188", - "timestamp": "2025-11-27T01:21:55.55884117Z" + "vertex_to": "489", + "timestamp": "2025-11-27T04:01:54.036956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237146, - "rtt_ms": 1.237146, + "rtt_ns": 1584958, + "rtt_ms": 1.584958, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:55.559062789Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:54.037345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406595, - "rtt_ms": 1.406595, + "rtt_ns": 1928875, + "rtt_ms": 1.928875, "checkpoint": 0, "vertex_from": "80", "vertex_to": "233", - "timestamp": "2025-11-27T01:21:55.559067799Z" + "timestamp": "2025-11-27T04:01:54.037365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246706, - "rtt_ms": 1.246706, + "rtt_ns": 1917541, + "rtt_ms": 1.917541, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:55.559105809Z" + "vertex_to": "188", + "timestamp": "2025-11-27T04:01:54.037371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277116, - "rtt_ms": 1.277116, + "rtt_ns": 1441250, + "rtt_ms": 1.44125, "checkpoint": 0, - "vertex_from": "80", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.559119739Z" + "vertex_from": "81", + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.037383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272956, - "rtt_ms": 1.272956, + "rtt_ns": 1690042, + "rtt_ms": 1.690042, "checkpoint": 0, "vertex_from": "80", - "vertex_to": "489", - "timestamp": "2025-11-27T01:21:55.559139279Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:54.037432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293226, - "rtt_ms": 1.293226, + "rtt_ns": 1723458, + "rtt_ms": 1.723458, "checkpoint": 0, - "vertex_from": "81", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.559180519Z" + "vertex_from": "80", + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:54.037441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583755, - "rtt_ms": 1.583755, + "rtt_ns": 1142833, + "rtt_ms": 1.142833, "checkpoint": 0, "vertex_from": "81", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.559634298Z" + "timestamp": "2025-11-27T04:01:54.037668-08:00" }, { "operation": "add_edge", - "rtt_ns": 898657, - "rtt_ms": 0.898657, + "rtt_ns": 1506541, + "rtt_ms": 1.506541, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.559740797Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.037989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894424, - "rtt_ms": 1.894424, + "rtt_ns": 1501583, + "rtt_ms": 1.501583, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.559897917Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.038461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215677, - "rtt_ms": 1.215677, + "rtt_ns": 1670250, + "rtt_ms": 1.67025, "checkpoint": 0, "vertex_from": "81", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.559926917Z" + "timestamp": "2025-11-27T04:01:54.038592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509936, - "rtt_ms": 1.509936, + "rtt_ns": 1554958, + "rtt_ms": 1.554958, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.560573305Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.03892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482226, - "rtt_ms": 1.482226, + "rtt_ns": 1516334, + "rtt_ms": 1.516334, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:55.560588685Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.038949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471246, - "rtt_ms": 1.471246, + "rtt_ns": 1784417, + "rtt_ms": 1.784417, "checkpoint": 0, "vertex_from": "81", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.560591415Z" + "timestamp": "2025-11-27T04:01:54.039169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458655, - "rtt_ms": 1.458655, + "rtt_ns": 1518000, + "rtt_ms": 1.518, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.560599504Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.039187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433355, - "rtt_ms": 1.433355, + "rtt_ns": 1856250, + "rtt_ms": 1.85625, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.560614444Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.039202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423055, - "rtt_ms": 1.423055, + "rtt_ns": 1854709, + "rtt_ms": 1.854709, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.561321612Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:54.039228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445845, - "rtt_ms": 1.445845, + "rtt_ns": 1802209, + "rtt_ms": 1.802209, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:55.561373782Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.039245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718645, - "rtt_ms": 1.718645, + "rtt_ns": 1534666, + "rtt_ms": 1.534666, "checkpoint": 0, "vertex_from": "81", "vertex_to": "657", - "timestamp": "2025-11-27T01:21:55.561461442Z" + "timestamp": "2025-11-27T04:01:54.039524-08:00" }, { "operation": "add_edge", - "rtt_ns": 2425423, - "rtt_ms": 2.425423, + "rtt_ns": 1252750, + "rtt_ms": 1.25275, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.561494642Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.039716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904204, - "rtt_ms": 1.904204, + "rtt_ns": 1174292, + "rtt_ms": 1.174292, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.561539602Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:54.039767-08:00" }, { "operation": "add_edge", - "rtt_ns": 974816, - "rtt_ms": 0.974816, + "rtt_ns": 1190584, + "rtt_ms": 1.190584, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.561564271Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.040437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022316, - "rtt_ms": 1.022316, + "rtt_ns": 1571083, + "rtt_ms": 1.571083, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:55.561614731Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.040522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031097, - "rtt_ms": 1.031097, + "rtt_ns": 1623333, + "rtt_ms": 1.623333, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.561631521Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:54.040545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057377, - "rtt_ms": 1.057377, + "rtt_ns": 1453584, + "rtt_ms": 1.453584, "checkpoint": 0, "vertex_from": "81", "vertex_to": "686", - "timestamp": "2025-11-27T01:21:55.561673021Z" + "timestamp": "2025-11-27T04:01:54.040657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145636, - "rtt_ms": 1.145636, + "rtt_ns": 1537125, + "rtt_ms": 1.537125, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:55.561719781Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:54.040708-08:00" }, { "operation": "add_edge", - "rtt_ns": 932817, - "rtt_ms": 0.932817, + "rtt_ns": 1287917, + "rtt_ms": 1.287917, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.562395249Z" + "vertex_to": "107", + "timestamp": "2025-11-27T04:01:54.041058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109577, - "rtt_ms": 1.109577, + "rtt_ns": 1880542, + "rtt_ms": 1.880542, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.562432209Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.041068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122826, - "rtt_ms": 1.122826, + "rtt_ns": 1552375, + "rtt_ms": 1.552375, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "107", - "timestamp": "2025-11-27T01:21:55.562664198Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.041078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430165, - "rtt_ms": 1.430165, + "rtt_ns": 1420625, + "rtt_ms": 1.420625, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.562805547Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.041137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330796, - "rtt_ms": 1.330796, + "rtt_ns": 1928916, + "rtt_ms": 1.928916, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:55.562946757Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.041158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374496, - "rtt_ms": 1.374496, + "rtt_ns": 1373292, + "rtt_ms": 1.373292, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.563007247Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:54.041897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474386, - "rtt_ms": 1.474386, + "rtt_ns": 1251375, + "rtt_ms": 1.251375, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.563039357Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.041909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638054, - "rtt_ms": 1.638054, + "rtt_ns": 1444292, + "rtt_ms": 1.444292, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.563139086Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.042154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479565, - "rtt_ms": 1.479565, + "rtt_ns": 1654542, + "rtt_ms": 1.654542, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.563153436Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.042201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976134, - "rtt_ms": 1.976134, + "rtt_ns": 1774041, + "rtt_ms": 1.774041, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.563696895Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.042212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323816, - "rtt_ms": 1.323816, + "rtt_ns": 1374083, + "rtt_ms": 1.374083, "checkpoint": 0, "vertex_from": "81", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.563720765Z" + "timestamp": "2025-11-27T04:01:54.042434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353805, - "rtt_ms": 1.353805, + "rtt_ns": 1376416, + "rtt_ms": 1.376416, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.563788004Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.042455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070477, - "rtt_ms": 1.070477, + "rtt_ns": 1332334, + "rtt_ms": 1.332334, "checkpoint": 0, "vertex_from": "81", "vertex_to": "393", - "timestamp": "2025-11-27T01:21:55.563877344Z" + "timestamp": "2025-11-27T04:01:54.04247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232236, - "rtt_ms": 1.232236, + "rtt_ns": 1421500, + "rtt_ms": 1.4215, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.563898504Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.042491-08:00" }, { "operation": "add_edge", - "rtt_ns": 892327, - "rtt_ms": 0.892327, + "rtt_ns": 1527959, + "rtt_ms": 1.527959, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.563900814Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:54.042686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055187, - "rtt_ms": 1.055187, + "rtt_ns": 1393458, + "rtt_ms": 1.393458, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.564004034Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:54.043303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517555, - "rtt_ms": 1.517555, + "rtt_ns": 1538542, + "rtt_ms": 1.538542, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:55.564557882Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:54.043438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578005, - "rtt_ms": 1.578005, + "rtt_ns": 1556125, + "rtt_ms": 1.556125, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.564732721Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:54.043711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070406, - "rtt_ms": 1.070406, + "rtt_ns": 1311625, + "rtt_ms": 1.311625, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.564768341Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:54.043803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639175, - "rtt_ms": 1.639175, + "rtt_ns": 1591541, + "rtt_ms": 1.591541, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:55.564779911Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:54.044026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316066, - "rtt_ms": 1.316066, + "rtt_ns": 1852083, + "rtt_ms": 1.852083, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:55.5651052Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.044066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255766, - "rtt_ms": 1.255766, + "rtt_ns": 1632917, + "rtt_ms": 1.632917, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:55.56513424Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:54.044089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316366, - "rtt_ms": 1.316366, + "rtt_ns": 1963375, + "rtt_ms": 1.963375, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:55.56521723Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.044165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547524, - "rtt_ms": 1.547524, + "rtt_ns": 1550917, + "rtt_ms": 1.550917, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:55.565272779Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:54.04424-08:00" }, { "operation": "add_edge", - "rtt_ns": 2465562, - "rtt_ms": 2.465562, + "rtt_ns": 1788792, + "rtt_ms": 1.788792, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:55.566367586Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:54.04426-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563361, - "rtt_ms": 2.563361, + "rtt_ns": 1168292, + "rtt_ms": 1.168292, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "850", - "timestamp": "2025-11-27T01:21:55.566569225Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:54.044608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627881, - "rtt_ms": 2.627881, + "rtt_ns": 1440834, + "rtt_ms": 1.440834, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:55.567186803Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:01:54.044746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2504522, - "rtt_ms": 2.504522, + "rtt_ns": 1335250, + "rtt_ms": 1.33525, "checkpoint": 0, "vertex_from": "81", "vertex_to": "155", - "timestamp": "2025-11-27T01:21:55.567239153Z" + "timestamp": "2025-11-27T04:01:54.045047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495832, - "rtt_ms": 2.495832, + "rtt_ns": 1263416, + "rtt_ms": 1.263416, "checkpoint": 0, "vertex_from": "81", "vertex_to": "118", - "timestamp": "2025-11-27T01:21:55.567266473Z" + "timestamp": "2025-11-27T04:01:54.045067-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541101, - "rtt_ms": 2.541101, + "rtt_ns": 1931625, + "rtt_ms": 1.931625, "checkpoint": 0, "vertex_from": "81", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.567322352Z" + "timestamp": "2025-11-27T04:01:54.045959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2314112, - "rtt_ms": 2.314112, + "rtt_ns": 1810959, + "rtt_ms": 1.810959, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "835", - "timestamp": "2025-11-27T01:21:55.567421082Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:54.045977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2878650, - "rtt_ms": 2.87865, + "rtt_ns": 1925666, + "rtt_ms": 1.925666, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.56801425Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 870707, - "rtt_ms": 0.870707, - "checkpoint": 0, - "vertex_from": "819", - "timestamp": "2025-11-27T01:21:55.56806025Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:01:54.045993-08:00" }, { "operation": "add_edge", - "rtt_ns": 2852631, - "rtt_ms": 2.852631, + "rtt_ns": 1922000, + "rtt_ms": 1.922, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.56812632Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.046011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812314, - "rtt_ms": 1.812314, + "rtt_ns": 1755875, + "rtt_ms": 1.755875, "checkpoint": 0, "vertex_from": "81", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.56818151Z" + "timestamp": "2025-11-27T04:01:54.046027-08:00" }, { "operation": "add_edge", - "rtt_ns": 3001620, - "rtt_ms": 3.00162, + "rtt_ns": 2024042, + "rtt_ms": 2.024042, "checkpoint": 0, "vertex_from": "81", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:55.5682205Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.046265-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1545208, + "rtt_ms": 1.545208, + "checkpoint": 0, + "vertex_from": "819", + "timestamp": "2025-11-27T04:01:54.046294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655165, - "rtt_ms": 1.655165, + "rtt_ns": 1695959, + "rtt_ms": 1.695959, "checkpoint": 0, "vertex_from": "81", "vertex_to": "912", - "timestamp": "2025-11-27T01:21:55.56822541Z" + "timestamp": "2025-11-27T04:01:54.046305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662655, - "rtt_ms": 1.662655, + "rtt_ns": 1430541, + "rtt_ms": 1.430541, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.568986127Z" + "vertex_to": "483", + "timestamp": "2025-11-27T04:01:54.046499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593235, - "rtt_ms": 1.593235, + "rtt_ns": 1471875, + "rtt_ms": 1.471875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "84", - "timestamp": "2025-11-27T01:21:55.569016037Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.046521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750864, - "rtt_ms": 1.750864, + "rtt_ns": 1612541, + "rtt_ms": 1.612541, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "483", - "timestamp": "2025-11-27T01:21:55.569018847Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:54.047625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787244, - "rtt_ms": 1.787244, + "rtt_ns": 1574792, + "rtt_ms": 1.574792, "checkpoint": 0, - "vertex_from": "82", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.569027527Z" + "vertex_from": "81", + "vertex_to": "819", + "timestamp": "2025-11-27T04:01:54.047869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171966, - "rtt_ms": 1.171966, + "rtt_ns": 1916750, + "rtt_ms": 1.91675, "checkpoint": 0, - "vertex_from": "81", - "vertex_to": "819", - "timestamp": "2025-11-27T01:21:55.569233006Z" + "vertex_from": "82", + "vertex_to": "84", + "timestamp": "2025-11-27T04:01:54.047894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266406, - "rtt_ms": 1.266406, + "rtt_ns": 1902125, + "rtt_ms": 1.902125, "checkpoint": 0, "vertex_from": "82", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.569282386Z" + "timestamp": "2025-11-27T04:01:54.047895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204866, - "rtt_ms": 1.204866, + "rtt_ns": 1587667, + "rtt_ms": 1.587667, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:55.569333296Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.047902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165806, - "rtt_ms": 1.165806, + "rtt_ns": 1951625, + "rtt_ms": 1.951625, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:55.569350206Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:54.047912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230986, - "rtt_ms": 1.230986, + "rtt_ns": 2092708, + "rtt_ms": 2.092708, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.569458076Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.048358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329795, - "rtt_ms": 1.329795, + "rtt_ns": 2350292, + "rtt_ms": 2.350292, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.569552425Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:54.048378-08:00" }, { "operation": "add_edge", - "rtt_ns": 731908, - "rtt_ms": 0.731908, + "rtt_ns": 1884000, + "rtt_ms": 1.884, "checkpoint": 0, "vertex_from": "82", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.569719625Z" + "timestamp": "2025-11-27T04:01:54.048384-08:00" }, { "operation": "add_edge", - "rtt_ns": 729528, - "rtt_ms": 0.729528, + "rtt_ns": 2236334, + "rtt_ms": 2.236334, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.569758925Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.048758-08:00" }, { "operation": "add_edge", - "rtt_ns": 774968, - "rtt_ms": 0.774968, + "rtt_ns": 1237583, + "rtt_ms": 1.237583, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:55.569795205Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.049597-08:00" }, { "operation": "add_edge", - "rtt_ns": 627118, - "rtt_ms": 0.627118, + "rtt_ns": 1732917, + "rtt_ms": 1.732917, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.569862304Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:54.049603-08:00" }, { "operation": "add_edge", - "rtt_ns": 848907, - "rtt_ms": 0.848907, + "rtt_ns": 1243000, + "rtt_ms": 1.243, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.569867434Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.049622-08:00" }, { "operation": "add_edge", - "rtt_ns": 784508, - "rtt_ms": 0.784508, + "rtt_ns": 1744625, + "rtt_ms": 1.744625, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "223", - "timestamp": "2025-11-27T01:21:55.570068934Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.049649-08:00" }, { "operation": "add_edge", - "rtt_ns": 831487, - "rtt_ms": 0.831487, + "rtt_ns": 1769292, + "rtt_ms": 1.769292, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:55.570183433Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.049665-08:00" }, { "operation": "add_edge", - "rtt_ns": 870627, - "rtt_ms": 0.870627, + "rtt_ns": 1753167, + "rtt_ms": 1.753167, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.570205593Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:54.049667-08:00" }, { "operation": "add_edge", - "rtt_ns": 828227, - "rtt_ms": 0.828227, + "rtt_ns": 1785125, + "rtt_ms": 1.785125, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.570287733Z" + "vertex_to": "223", + "timestamp": "2025-11-27T04:01:54.049682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065517, - "rtt_ms": 1.065517, + "rtt_ns": 2069958, + "rtt_ms": 2.069958, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.570619572Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:54.049698-08:00" }, { "operation": "add_edge", - "rtt_ns": 970227, - "rtt_ms": 0.970227, + "rtt_ns": 1119375, + "rtt_ms": 1.119375, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:55.570834991Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.049879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079376, - "rtt_ms": 1.079376, + "rtt_ns": 1903791, + "rtt_ms": 1.903791, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.570876091Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.050289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058327, - "rtt_ms": 1.058327, + "rtt_ns": 1380666, + "rtt_ms": 1.380666, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.570927271Z" + "vertex_to": "846", + "timestamp": "2025-11-27T04:01:54.051063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339276, - "rtt_ms": 1.339276, + "rtt_ns": 1381583, + "rtt_ms": 1.381583, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.571060131Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:54.05108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319416, - "rtt_ms": 1.319416, + "rtt_ns": 1431625, + "rtt_ms": 1.431625, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.571079531Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.051099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518595, - "rtt_ms": 1.518595, + "rtt_ns": 1768917, + "rtt_ms": 1.768917, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "993", - "timestamp": "2025-11-27T01:21:55.571589179Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.051367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549455, - "rtt_ms": 1.549455, + "rtt_ns": 1760041, + "rtt_ms": 1.760041, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.571756998Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:54.051383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168216, - "rtt_ms": 1.168216, + "rtt_ns": 1749417, + "rtt_ms": 1.749417, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.571789028Z" + "vertex_to": "993", + "timestamp": "2025-11-27T04:01:54.051399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501085, - "rtt_ms": 1.501085, + "rtt_ns": 1807917, + "rtt_ms": 1.807917, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "846", - "timestamp": "2025-11-27T01:21:55.571791818Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:54.051414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636345, - "rtt_ms": 1.636345, + "rtt_ns": 1761875, + "rtt_ms": 1.761875, "checkpoint": 0, "vertex_from": "82", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.571821528Z" + "timestamp": "2025-11-27T04:01:54.051429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079537, - "rtt_ms": 1.079537, + "rtt_ns": 1231875, + "rtt_ms": 1.231875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "723", - "timestamp": "2025-11-27T01:21:55.572008598Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:54.051522-08:00" }, { "operation": "add_edge", - "rtt_ns": 892878, - "rtt_ms": 0.892878, + "rtt_ns": 1750708, + "rtt_ms": 1.750708, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.572651336Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:54.051631-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1692014, - "rtt_ms": 1.692014, + "rtt_ns": 1763583, + "rtt_ms": 1.763583, "checkpoint": 0, "vertex_from": "621", - "timestamp": "2025-11-27T01:21:55.572758365Z" + "timestamp": "2025-11-27T04:01:54.052846-08:00" }, { "operation": "add_edge", - "rtt_ns": 950737, - "rtt_ms": 0.950737, + "rtt_ns": 2088375, + "rtt_ms": 2.088375, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:55.572773885Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.05372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911494, - "rtt_ms": 1.911494, + "rtt_ns": 2218458, + "rtt_ms": 2.218458, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:55.572789005Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:01:54.053744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2015834, - "rtt_ms": 2.015834, + "rtt_ns": 2315958, + "rtt_ms": 2.315958, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:55.572852585Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:54.053746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774764, - "rtt_ms": 1.774764, + "rtt_ns": 2371334, + "rtt_ms": 2.371334, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.572855845Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.053755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289746, - "rtt_ms": 1.289746, + "rtt_ns": 2347208, + "rtt_ms": 2.347208, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.572879725Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.053762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619725, - "rtt_ms": 1.619725, + "rtt_ns": 2701666, + "rtt_ms": 2.701666, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.573410243Z" + "vertex_to": "723", + "timestamp": "2025-11-27T04:01:54.053766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731845, - "rtt_ms": 1.731845, + "rtt_ns": 2679500, + "rtt_ms": 2.6795, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.573526463Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:54.05378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572515, - "rtt_ms": 1.572515, + "rtt_ns": 3057333, + "rtt_ms": 3.057333, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "906", - "timestamp": "2025-11-27T01:21:55.573582723Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.054425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135516, - "rtt_ms": 1.135516, + "rtt_ns": 3044000, + "rtt_ms": 3.044, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.573787922Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.054444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206136, - "rtt_ms": 1.206136, + "rtt_ns": 1892000, + "rtt_ms": 1.892, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:55.573997201Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:01:54.054738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232856, - "rtt_ms": 1.232856, + "rtt_ns": 1514959, + "rtt_ms": 1.514959, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.574086691Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.055278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962294, - "rtt_ms": 1.962294, + "rtt_ns": 1523083, + "rtt_ms": 1.523083, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.574737259Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:54.05529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986934, - "rtt_ms": 1.986934, + "rtt_ns": 1553375, + "rtt_ms": 1.553375, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.574867489Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:54.055298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2482272, - "rtt_ms": 2.482272, + "rtt_ns": 1530917, + "rtt_ms": 1.530917, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "621", - "timestamp": "2025-11-27T01:21:55.575240877Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.055311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796104, - "rtt_ms": 1.796104, + "rtt_ns": 1642708, + "rtt_ms": 1.642708, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.575325757Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.055364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305716, - "rtt_ms": 1.305716, + "rtt_ns": 1631958, + "rtt_ms": 1.631958, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:55.575393777Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:01:54.055391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119153, - "rtt_ms": 2.119153, + "rtt_ns": 1225000, + "rtt_ms": 1.225, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:55.575530466Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.05567-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049723, - "rtt_ms": 2.049723, + "rtt_ns": 1928041, + "rtt_ms": 1.928041, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.575633916Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.055675-08:00" }, { "operation": "add_edge", - "rtt_ns": 2802081, - "rtt_ms": 2.802081, + "rtt_ns": 1338459, + "rtt_ms": 1.338459, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "932", - "timestamp": "2025-11-27T01:21:55.575659296Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.055764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303983, - "rtt_ms": 2.303983, + "rtt_ns": 1190708, + "rtt_ms": 1.190708, "checkpoint": 0, "vertex_from": "82", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.576302804Z" + "timestamp": "2025-11-27T04:01:54.055932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539332, - "rtt_ms": 2.539332, + "rtt_ns": 1269584, + "rtt_ms": 1.269584, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.576328224Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.056562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496165, - "rtt_ms": 1.496165, + "rtt_ns": 1262709, + "rtt_ms": 1.262709, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.576738132Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.056628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447585, - "rtt_ms": 1.447585, + "rtt_ns": 1584250, + "rtt_ms": 1.58425, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.576774752Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:54.056883-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039393, - "rtt_ms": 2.039393, + "rtt_ns": 1219291, + "rtt_ms": 1.219291, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:55.576907732Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.056985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473415, - "rtt_ms": 1.473415, + "rtt_ns": 1332750, + "rtt_ms": 1.33275, "checkpoint": 0, "vertex_from": "82", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.577004951Z" + "timestamp": "2025-11-27T04:01:54.057004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610744, - "rtt_ms": 1.610744, + "rtt_ns": 1084583, + "rtt_ms": 1.084583, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.577005451Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:54.057018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286332, - "rtt_ms": 2.286332, + "rtt_ns": 1362666, + "rtt_ms": 1.362666, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.577024821Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:54.057039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430645, - "rtt_ms": 1.430645, + "rtt_ns": 1742500, + "rtt_ms": 1.7425, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:55.577065251Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.057054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453235, - "rtt_ms": 1.453235, + "rtt_ns": 1675792, + "rtt_ms": 1.675792, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.577114311Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.057069-08:00" }, { "operation": "add_edge", - "rtt_ns": 890447, - "rtt_ms": 0.890447, + "rtt_ns": 1862750, + "rtt_ms": 1.86275, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:55.577194111Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:54.057142-08:00" }, { "operation": "add_edge", - "rtt_ns": 741727, - "rtt_ms": 0.741727, + "rtt_ns": 1412917, + "rtt_ms": 1.412917, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:55.577650279Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.057977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102847, - "rtt_ms": 1.102847, + "rtt_ns": 1122125, + "rtt_ms": 1.122125, "checkpoint": 0, "vertex_from": "82", "vertex_to": "115", - "timestamp": "2025-11-27T01:21:55.577878639Z" + "timestamp": "2025-11-27T04:01:54.058007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549415, - "rtt_ms": 1.549415, + "rtt_ns": 1161417, + "rtt_ms": 1.161417, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.577879999Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:54.058181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142117, - "rtt_ms": 1.142117, + "rtt_ns": 1580125, + "rtt_ms": 1.580125, "checkpoint": 0, "vertex_from": "82", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.577881259Z" + "timestamp": "2025-11-27T04:01:54.05821-08:00" }, { "operation": "add_edge", - "rtt_ns": 888057, - "rtt_ms": 0.888057, + "rtt_ns": 1214084, + "rtt_ms": 1.214084, "checkpoint": 0, "vertex_from": "82", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.577893898Z" + "timestamp": "2025-11-27T04:01:54.058219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209456, - "rtt_ms": 1.209456, + "rtt_ns": 1158542, + "rtt_ms": 1.158542, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.578404247Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.058228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410126, - "rtt_ms": 1.410126, + "rtt_ns": 1481209, + "rtt_ms": 1.481209, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.578476437Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.058521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452246, - "rtt_ms": 1.452246, + "rtt_ns": 1603250, + "rtt_ms": 1.60325, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.578478167Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:54.058589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606255, - "rtt_ms": 1.606255, + "rtt_ns": 1592875, + "rtt_ms": 1.592875, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.578721366Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:54.058648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327286, - "rtt_ms": 1.327286, + "rtt_ns": 1556958, + "rtt_ms": 1.556958, "checkpoint": 0, "vertex_from": "82", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:55.578978505Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.058699-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001334, - "rtt_ms": 2.001334, + "rtt_ns": 1243209, + "rtt_ms": 1.243209, "checkpoint": 0, - "vertex_from": "82", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:55.579007845Z" + "vertex_from": "83", + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.059425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188786, - "rtt_ms": 1.188786, + "rtt_ns": 1431666, + "rtt_ms": 1.431666, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:55.579070825Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.059439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211956, - "rtt_ms": 1.211956, + "rtt_ns": 1386334, + "rtt_ms": 1.386334, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.579107444Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.059615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662884, - "rtt_ms": 1.662884, + "rtt_ns": 1445000, + "rtt_ms": 1.445, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.579544203Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:54.059656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220915, - "rtt_ms": 1.220915, + "rtt_ns": 1685542, + "rtt_ms": 1.685542, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.579698102Z" + "vertex_from": "82", + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:54.059666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010896, - "rtt_ms": 1.010896, + "rtt_ns": 1308958, + "rtt_ms": 1.308958, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.579733402Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.059831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900163, - "rtt_ms": 1.900163, + "rtt_ns": 1201083, + "rtt_ms": 1.201083, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.579780272Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:54.05985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389665, - "rtt_ms": 1.389665, + "rtt_ns": 1719750, + "rtt_ms": 1.71975, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.579795822Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.05994-08:00" }, { "operation": "add_edge", - "rtt_ns": 921697, - "rtt_ms": 0.921697, + "rtt_ns": 1511959, + "rtt_ms": 1.511959, "checkpoint": 0, "vertex_from": "83", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.579901402Z" + "timestamp": "2025-11-27T04:01:54.060212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467075, - "rtt_ms": 1.467075, + "rtt_ns": 1639000, + "rtt_ms": 1.639, "checkpoint": 0, "vertex_from": "83", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:55.579946182Z" + "timestamp": "2025-11-27T04:01:54.060229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470355, - "rtt_ms": 1.470355, + "rtt_ns": 1215916, + "rtt_ms": 1.215916, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "279", - "timestamp": "2025-11-27T01:21:55.58054235Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:01:54.060883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575895, - "rtt_ms": 1.575895, + "rtt_ns": 1465792, + "rtt_ms": 1.465792, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.58058446Z" + "vertex_to": "279", + "timestamp": "2025-11-27T04:01:54.060907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095236, - "rtt_ms": 1.095236, + "rtt_ns": 1390209, + "rtt_ms": 1.390209, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.580644119Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:54.061006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537115, - "rtt_ms": 1.537115, + "rtt_ns": 1371417, + "rtt_ms": 1.371417, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:55.580645349Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.061028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193137, - "rtt_ms": 1.193137, + "rtt_ns": 1617959, + "rtt_ms": 1.617959, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "812", - "timestamp": "2025-11-27T01:21:55.580892969Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.061046-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 809457, - "rtt_ms": 0.809457, + "operation": "add_edge", + "rtt_ns": 1321750, + "rtt_ms": 1.32175, "checkpoint": 0, - "vertex_from": "637", - "timestamp": "2025-11-27T01:21:55.581396247Z" + "vertex_from": "83", + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:54.061263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726125, - "rtt_ms": 1.726125, + "rtt_ns": 1449042, + "rtt_ms": 1.449042, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "589", - "timestamp": "2025-11-27T01:21:55.581523607Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.061281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701854, - "rtt_ms": 1.701854, + "rtt_ns": 1195792, + "rtt_ms": 1.195792, "checkpoint": 0, "vertex_from": "83", "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.581649566Z" + "timestamp": "2025-11-27T04:01:54.061425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966144, - "rtt_ms": 1.966144, + "rtt_ns": 1222750, + "rtt_ms": 1.22275, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.581700726Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.061436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099864, - "rtt_ms": 2.099864, + "rtt_ns": 1592959, + "rtt_ms": 1.592959, "checkpoint": 0, "vertex_from": "83", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:55.581881676Z" + "timestamp": "2025-11-27T04:01:54.061444-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1541583, + "rtt_ms": 1.541583, + "checkpoint": 0, + "vertex_from": "84", + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:54.062824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013273, - "rtt_ms": 2.013273, + "rtt_ns": 1579459, + "rtt_ms": 1.579459, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.581916195Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:54.062843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063407, - "rtt_ms": 1.063407, + "rtt_ns": 1850292, + "rtt_ms": 1.850292, "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.582765853Z" + "vertex_from": "83", + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:54.062858-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1967375, + "rtt_ms": 1.967375, + "checkpoint": 0, + "vertex_from": "637", + "timestamp": "2025-11-27T04:01:54.062876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135097, - "rtt_ms": 1.135097, + "rtt_ns": 1445500, + "rtt_ms": 1.4455, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:55.582787203Z" + "vertex_to": "121", + "timestamp": "2025-11-27T04:01:54.06289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2145504, - "rtt_ms": 2.145504, + "rtt_ns": 2083458, + "rtt_ms": 2.083458, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:55.582791073Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.063112-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347702, - "rtt_ms": 2.347702, + "rtt_ns": 2247958, + "rtt_ms": 2.247958, "checkpoint": 0, "vertex_from": "83", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.582891272Z" + "timestamp": "2025-11-27T04:01:54.063133-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002663, - "rtt_ms": 2.002663, + "rtt_ns": 2096250, + "rtt_ms": 2.09625, "checkpoint": 0, "vertex_from": "83", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.582896572Z" + "timestamp": "2025-11-27T04:01:54.063143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035326, - "rtt_ms": 1.035326, + "rtt_ns": 1711333, + "rtt_ms": 1.711333, "checkpoint": 0, "vertex_from": "84", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:55.582919292Z" + "timestamp": "2025-11-27T04:01:54.063149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097917, - "rtt_ms": 1.097917, + "rtt_ns": 1743916, + "rtt_ms": 1.743916, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "121", - "timestamp": "2025-11-27T01:21:55.583016512Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:54.06317-08:00" }, { "operation": "add_edge", - "rtt_ns": 2965291, - "rtt_ms": 2.965291, + "rtt_ns": 1482833, + "rtt_ms": 1.482833, "checkpoint": 0, "vertex_from": "83", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.58361218Z" + "vertex_to": "637", + "timestamp": "2025-11-27T04:01:54.064359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285143, - "rtt_ms": 2.285143, + "rtt_ns": 1278000, + "rtt_ms": 1.278, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "637", - "timestamp": "2025-11-27T01:21:55.58368185Z" + "vertex_from": "84", + "vertex_to": "559", + "timestamp": "2025-11-27T04:01:54.064391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193423, - "rtt_ms": 2.193423, + "rtt_ns": 1275334, + "rtt_ms": 1.275334, "checkpoint": 0, - "vertex_from": "83", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:55.58372034Z" + "vertex_from": "84", + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:54.064421-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1637708, + "rtt_ms": 1.637708, + "checkpoint": 0, + "vertex_from": "84", + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:54.064482-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1616458, + "rtt_ms": 1.616458, + "checkpoint": 0, + "vertex_from": "84", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.064508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981843, - "rtt_ms": 1.981843, + "rtt_ns": 1779333, + "rtt_ms": 1.779333, "checkpoint": 0, "vertex_from": "84", "vertex_to": "105", - "timestamp": "2025-11-27T01:21:55.584774246Z" + "timestamp": "2025-11-27T04:01:54.064638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870594, - "rtt_ms": 1.870594, + "rtt_ns": 1523458, + "rtt_ms": 1.523458, "checkpoint": 0, "vertex_from": "84", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.584790756Z" + "timestamp": "2025-11-27T04:01:54.064657-08:00" }, { "operation": "add_edge", - "rtt_ns": 2060143, - "rtt_ms": 2.060143, + "rtt_ns": 1838917, + "rtt_ms": 1.838917, "checkpoint": 0, "vertex_from": "84", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.584827596Z" + "timestamp": "2025-11-27T04:01:54.064663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983424, - "rtt_ms": 1.983424, + "rtt_ns": 1603375, + "rtt_ms": 1.603375, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "559", - "timestamp": "2025-11-27T01:21:55.584881326Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:54.064754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293146, - "rtt_ms": 1.293146, + "rtt_ns": 1654834, + "rtt_ms": 1.654834, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:55.584906506Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:54.064826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956173, - "rtt_ms": 1.956173, + "rtt_ns": 1183416, + "rtt_ms": 1.183416, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.584973795Z" + "vertex_to": "154", + "timestamp": "2025-11-27T04:01:54.065575-08:00" }, { "operation": "add_edge", - "rtt_ns": 2196852, - "rtt_ms": 2.196852, + "rtt_ns": 1233542, + "rtt_ms": 1.233542, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:55.584985725Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.065593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364525, - "rtt_ms": 1.364525, + "rtt_ns": 1192708, + "rtt_ms": 1.192708, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:55.585047505Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.065701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340285, - "rtt_ms": 1.340285, + "rtt_ns": 1097834, + "rtt_ms": 1.097834, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.585061645Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:54.065853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2411882, - "rtt_ms": 2.411882, + "rtt_ns": 1434417, + "rtt_ms": 1.434417, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.585304464Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:54.065871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073456, - "rtt_ms": 1.073456, + "rtt_ns": 1218666, + "rtt_ms": 1.218666, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:55.585865302Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.065883-08:00" }, { "operation": "add_edge", - "rtt_ns": 986266, - "rtt_ms": 0.986266, + "rtt_ns": 1403417, + "rtt_ms": 1.403417, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.585868232Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:54.065886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540485, - "rtt_ms": 1.540485, + "rtt_ns": 1131458, + "rtt_ms": 1.131458, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "154", - "timestamp": "2025-11-27T01:21:55.586315611Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.065958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472715, - "rtt_ms": 1.472715, + "rtt_ns": 1335000, + "rtt_ms": 1.335, "checkpoint": 0, "vertex_from": "84", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:55.586380041Z" + "timestamp": "2025-11-27T04:01:54.065974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349806, - "rtt_ms": 1.349806, + "rtt_ns": 1431167, + "rtt_ms": 1.431167, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:55.586398221Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.066089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338856, - "rtt_ms": 1.338856, + "rtt_ns": 1206958, + "rtt_ms": 1.206958, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.586401591Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.067061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881044, - "rtt_ms": 1.881044, + "rtt_ns": 1538292, + "rtt_ms": 1.538292, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.586856529Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.067114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089727, - "rtt_ms": 1.089727, + "rtt_ns": 1313125, + "rtt_ms": 1.313125, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "120", - "timestamp": "2025-11-27T01:21:55.586959249Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.0672-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103143, - "rtt_ms": 2.103143, + "rtt_ns": 1357791, + "rtt_ms": 1.357791, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.587089618Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:54.067244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831574, - "rtt_ms": 1.831574, + "rtt_ns": 1548750, + "rtt_ms": 1.54875, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.587137238Z" + "vertex_to": "120", + "timestamp": "2025-11-27T04:01:54.067251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341076, - "rtt_ms": 1.341076, + "rtt_ns": 1690625, + "rtt_ms": 1.690625, "checkpoint": 0, "vertex_from": "84", "vertex_to": "707", - "timestamp": "2025-11-27T01:21:55.587207348Z" + "timestamp": "2025-11-27T04:01:54.067285-08:00" }, { "operation": "add_edge", - "rtt_ns": 2388662, - "rtt_ms": 2.388662, + "rtt_ns": 1340750, + "rtt_ms": 1.34075, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.587217758Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:54.0673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612484, - "rtt_ms": 1.612484, + "rtt_ns": 1352167, + "rtt_ms": 1.352167, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:55.588011485Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:54.067328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070486, - "rtt_ms": 1.070486, + "rtt_ns": 1512042, + "rtt_ms": 1.512042, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:55.588032735Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:54.067383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636344, - "rtt_ms": 1.636344, + "rtt_ns": 1408583, + "rtt_ms": 1.408583, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.588038575Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:54.067499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724084, - "rtt_ms": 1.724084, + "rtt_ns": 1143666, + "rtt_ms": 1.143666, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.588040665Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.068346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689934, - "rtt_ms": 1.689934, + "rtt_ns": 1061166, + "rtt_ms": 1.061166, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:55.588071035Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.06839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357406, - "rtt_ms": 1.357406, + "rtt_ns": 1498250, + "rtt_ms": 1.49825, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:55.588215355Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:54.068785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282446, - "rtt_ms": 1.282446, + "rtt_ns": 1687459, + "rtt_ms": 1.687459, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:55.588373934Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:01:54.068802-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1299096, - "rtt_ms": 1.299096, + "rtt_ns": 1755667, + "rtt_ms": 1.755667, "checkpoint": 0, "vertex_from": "239", - "timestamp": "2025-11-27T01:21:55.588437944Z" + "timestamp": "2025-11-27T04:01:54.068818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250906, - "rtt_ms": 1.250906, + "rtt_ns": 1450792, + "rtt_ms": 1.450792, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.588469274Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.068835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334586, - "rtt_ms": 1.334586, + "rtt_ns": 1354583, + "rtt_ms": 1.354583, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "425", - "timestamp": "2025-11-27T01:21:55.588543334Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:54.068854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460456, - "rtt_ms": 1.460456, + "rtt_ns": 1853250, + "rtt_ms": 1.85325, "checkpoint": 0, "vertex_from": "84", "vertex_to": "278", - "timestamp": "2025-11-27T01:21:55.589474281Z" + "timestamp": "2025-11-27T04:01:54.069098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597705, - "rtt_ms": 1.597705, - "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "713", - "timestamp": "2025-11-27T01:21:55.58963914Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1607035, - "rtt_ms": 1.607035, + "rtt_ns": 1894167, + "rtt_ms": 1.894167, "checkpoint": 0, "vertex_from": "84", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.58964045Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2051014, - "rtt_ms": 2.051014, - "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.590091109Z" + "timestamp": "2025-11-27T04:01:54.069146-08:00" }, { "operation": "add_edge", - "rtt_ns": 2207483, - "rtt_ms": 2.207483, + "rtt_ns": 1917500, + "rtt_ms": 1.9175, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.590583097Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:01:54.069218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2619422, - "rtt_ms": 2.619422, + "rtt_ns": 1263750, + "rtt_ms": 1.26375, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.590691297Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.069654-08:00" }, { "operation": "add_edge", - "rtt_ns": 2480402, - "rtt_ms": 2.480402, + "rtt_ns": 1686750, + "rtt_ms": 1.68675, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.590696647Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:54.070034-08:00" }, { "operation": "add_edge", - "rtt_ns": 2304773, - "rtt_ms": 2.304773, + "rtt_ns": 1051250, + "rtt_ms": 1.05125, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "239", - "timestamp": "2025-11-27T01:21:55.590743187Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:54.070199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258032, - "rtt_ms": 2.258032, + "rtt_ns": 1380292, + "rtt_ms": 1.380292, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.590802166Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:54.070216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2332362, - "rtt_ms": 2.332362, + "rtt_ns": 1680584, + "rtt_ms": 1.680584, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.590803116Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:01:54.070484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305966, - "rtt_ms": 1.305966, + "rtt_ns": 1684625, + "rtt_ms": 1.684625, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "775", - "timestamp": "2025-11-27T01:21:55.590946186Z" + "vertex_to": "239", + "timestamp": "2025-11-27T04:01:54.070503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002577, - "rtt_ms": 1.002577, + "rtt_ns": 1662208, + "rtt_ms": 1.662208, "checkpoint": 0, "vertex_from": "84", "vertex_to": "610", - "timestamp": "2025-11-27T01:21:55.591094786Z" + "timestamp": "2025-11-27T04:01:54.070517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625335, - "rtt_ms": 1.625335, + "rtt_ns": 1416875, + "rtt_ms": 1.416875, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:55.591101436Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.070518-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465716, - "rtt_ms": 1.465716, + "rtt_ns": 1300125, + "rtt_ms": 1.300125, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:55.591107726Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:54.07052-08:00" }, { "operation": "add_edge", - "rtt_ns": 717528, - "rtt_ms": 0.717528, + "rtt_ns": 1860458, + "rtt_ms": 1.860458, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.591303345Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:54.070647-08:00" }, { "operation": "add_edge", - "rtt_ns": 710648, - "rtt_ms": 0.710648, + "rtt_ns": 1401875, + "rtt_ms": 1.401875, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.591514624Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.071057-08:00" }, { "operation": "add_edge", - "rtt_ns": 922267, - "rtt_ms": 0.922267, + "rtt_ns": 1379459, + "rtt_ms": 1.379459, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.591620494Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:54.071416-08:00" }, { "operation": "add_edge", - "rtt_ns": 863668, - "rtt_ms": 0.863668, + "rtt_ns": 1233250, + "rtt_ms": 1.23325, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:55.591667774Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.071433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026407, - "rtt_ms": 1.026407, + "rtt_ns": 1489041, + "rtt_ms": 1.489041, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:55.591718824Z" + "vertex_to": "106", + "timestamp": "2025-11-27T04:01:54.071706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060846, - "rtt_ms": 1.060846, + "rtt_ns": 1629041, + "rtt_ms": 1.629041, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.591806893Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.072114-08:00" }, { "operation": "add_edge", - "rtt_ns": 927527, - "rtt_ms": 0.927527, + "rtt_ns": 1483375, + "rtt_ms": 1.483375, "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "106", - "timestamp": "2025-11-27T01:21:55.591875073Z" + "vertex_from": "85", + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.072133-08:00" }, { "operation": "add_edge", - "rtt_ns": 815017, - "rtt_ms": 0.815017, + "rtt_ns": 1646000, + "rtt_ms": 1.646, "checkpoint": 0, "vertex_from": "84", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.591918233Z" + "timestamp": "2025-11-27T04:01:54.07215-08:00" }, { "operation": "add_edge", - "rtt_ns": 880297, - "rtt_ms": 0.880297, + "rtt_ns": 1647833, + "rtt_ms": 1.647833, "checkpoint": 0, "vertex_from": "84", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.591975943Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.072169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800484, - "rtt_ms": 1.800484, + "rtt_ns": 1719041, + "rtt_ms": 1.719041, "checkpoint": 0, "vertex_from": "84", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:55.59290961Z" + "timestamp": "2025-11-27T04:01:54.072236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437176, - "rtt_ms": 1.437176, - "checkpoint": 0, - "vertex_from": "84", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.59295318Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1771844, - "rtt_ms": 1.771844, + "rtt_ns": 1824833, + "rtt_ms": 1.824833, "checkpoint": 0, "vertex_from": "84", "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.593075979Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1993943, - "rtt_ms": 1.993943, - "checkpoint": 0, - "vertex_from": "85", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.593714117Z" + "timestamp": "2025-11-27T04:01:54.072344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106433, - "rtt_ms": 2.106433, + "rtt_ns": 1302833, + "rtt_ms": 1.302833, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.593728537Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.072361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093324, - "rtt_ms": 2.093324, + "rtt_ns": 1254750, + "rtt_ms": 1.25475, "checkpoint": 0, "vertex_from": "85", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.593901667Z" + "timestamp": "2025-11-27T04:01:54.072689-08:00" }, { "operation": "add_edge", - "rtt_ns": 2233103, - "rtt_ms": 2.233103, + "rtt_ns": 1367375, + "rtt_ms": 1.367375, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.593902027Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.072784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054423, - "rtt_ms": 2.054423, + "rtt_ns": 1501959, + "rtt_ms": 1.501959, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "689", - "timestamp": "2025-11-27T01:21:55.593973816Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.073211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042893, - "rtt_ms": 2.042893, + "rtt_ns": 1314750, + "rtt_ms": 1.31475, "checkpoint": 0, "vertex_from": "85", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.594019976Z" + "timestamp": "2025-11-27T04:01:54.073448-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176443, - "rtt_ms": 2.176443, + "rtt_ns": 1316917, + "rtt_ms": 1.316917, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.594053726Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:54.073467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272456, - "rtt_ms": 1.272456, + "rtt_ns": 1388750, + "rtt_ms": 1.38875, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:55.594183766Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:54.073733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369055, - "rtt_ms": 1.369055, + "rtt_ns": 1580708, + "rtt_ms": 1.580708, "checkpoint": 0, "vertex_from": "85", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.594323005Z" + "timestamp": "2025-11-27T04:01:54.07375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260146, - "rtt_ms": 1.260146, + "rtt_ns": 1651875, + "rtt_ms": 1.651875, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.594337105Z" + "vertex_to": "689", + "timestamp": "2025-11-27T04:01:54.073767-08:00" }, { "operation": "add_edge", - "rtt_ns": 795618, - "rtt_ms": 0.795618, + "rtt_ns": 1406917, + "rtt_ms": 1.406917, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:55.594511965Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:54.073769-08:00" }, { "operation": "add_edge", - "rtt_ns": 800868, - "rtt_ms": 0.800868, + "rtt_ns": 1546125, + "rtt_ms": 1.546125, "checkpoint": 0, "vertex_from": "85", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:55.594530675Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.073783-08:00" }, { "operation": "add_edge", - "rtt_ns": 641348, - "rtt_ms": 0.641348, + "rtt_ns": 1181083, + "rtt_ms": 1.181083, "checkpoint": 0, "vertex_from": "85", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.594544425Z" + "timestamp": "2025-11-27T04:01:54.073966-08:00" }, { "operation": "add_edge", - "rtt_ns": 695617, - "rtt_ms": 0.695617, + "rtt_ns": 1600500, + "rtt_ms": 1.6005, "checkpoint": 0, "vertex_from": "85", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:55.594598454Z" + "timestamp": "2025-11-27T04:01:54.07429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012727, - "rtt_ms": 1.012727, + "rtt_ns": 1282125, + "rtt_ms": 1.282125, + "checkpoint": 0, + "vertex_from": "86", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.074732-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1538959, + "rtt_ms": 1.538959, "checkpoint": 0, "vertex_from": "85", "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.594987403Z" + "timestamp": "2025-11-27T04:01:54.074752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105617, - "rtt_ms": 1.105617, + "rtt_ns": 1274958, + "rtt_ms": 1.274958, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.595160603Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:54.075059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031017, - "rtt_ms": 1.031017, + "rtt_ns": 1637250, + "rtt_ms": 1.63725, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.595215853Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.075105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265136, - "rtt_ms": 1.265136, + "rtt_ns": 1580916, + "rtt_ms": 1.580916, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.595286392Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:54.075332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514966, - "rtt_ms": 1.514966, + "rtt_ns": 1713542, + "rtt_ms": 1.713542, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:55.59611443Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.075448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601565, - "rtt_ms": 1.601565, + "rtt_ns": 1797334, + "rtt_ms": 1.797334, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.59611464Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.075567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798185, - "rtt_ms": 1.798185, + "rtt_ns": 1828417, + "rtt_ms": 1.828417, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:55.59612248Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:54.075598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790225, - "rtt_ms": 1.790225, + "rtt_ns": 1698375, + "rtt_ms": 1.698375, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.59612813Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:54.075665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608964, - "rtt_ms": 1.608964, + "rtt_ns": 1379750, + "rtt_ms": 1.37975, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:55.596140939Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:54.075671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601564, - "rtt_ms": 1.601564, + "rtt_ns": 1253667, + "rtt_ms": 1.253667, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.596148479Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.075986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177336, - "rtt_ms": 1.177336, + "rtt_ns": 1251167, + "rtt_ms": 1.251167, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.596166199Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.076004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584095, - "rtt_ms": 1.584095, + "rtt_ns": 1351583, + "rtt_ms": 1.351583, "checkpoint": 0, - "vertex_from": "86", + "vertex_from": "87", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.596871697Z" + "timestamp": "2025-11-27T04:01:54.077356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862364, - "rtt_ms": 1.862364, + "rtt_ns": 1917958, + "rtt_ms": 1.917958, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.597024057Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.077367-08:00" }, { "operation": "add_edge", - "rtt_ns": 939316, - "rtt_ms": 0.939316, + "rtt_ns": 2275958, + "rtt_ms": 2.275958, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:55.597054966Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.077382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842004, - "rtt_ms": 1.842004, + "rtt_ns": 1400500, + "rtt_ms": 1.4005, "checkpoint": 0, - "vertex_from": "86", - "vertex_to": "409", - "timestamp": "2025-11-27T01:21:55.597059596Z" + "vertex_from": "87", + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.077388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066596, - "rtt_ms": 1.066596, + "rtt_ns": 1825875, + "rtt_ms": 1.825875, "checkpoint": 0, "vertex_from": "86", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.597190666Z" + "timestamp": "2025-11-27T04:01:54.077394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674295, - "rtt_ms": 1.674295, + "rtt_ns": 2334084, + "rtt_ms": 2.334084, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:55.597817104Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:01:54.077396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790064, - "rtt_ms": 1.790064, + "rtt_ns": 2067708, + "rtt_ms": 2.067708, "checkpoint": 0, "vertex_from": "86", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.597905914Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:54.077401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754785, - "rtt_ms": 1.754785, + "rtt_ns": 1817209, + "rtt_ms": 1.817209, "checkpoint": 0, - "vertex_from": "87", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.597922244Z" + "vertex_from": "86", + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.077416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777364, - "rtt_ms": 1.777364, + "rtt_ns": 1798750, + "rtt_ms": 1.79875, "checkpoint": 0, - "vertex_from": "87", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.597926603Z" + "vertex_from": "86", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:54.077465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063266, - "rtt_ms": 1.063266, + "rtt_ns": 1793250, + "rtt_ms": 1.79325, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.597935903Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1941103, - "rtt_ms": 1.941103, - "checkpoint": 0, - "vertex_from": "86", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.598070333Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.077465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088017, - "rtt_ms": 1.088017, + "rtt_ns": 1373500, + "rtt_ms": 1.3735, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:55.598143803Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.078731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362955, - "rtt_ms": 1.362955, + "rtt_ns": 1346458, + "rtt_ms": 1.346458, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.598388572Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.078748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485935, - "rtt_ms": 1.485935, + "rtt_ns": 1377125, + "rtt_ms": 1.377125, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:55.598677491Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.078774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646845, - "rtt_ms": 1.646845, + "rtt_ns": 1557208, + "rtt_ms": 1.557208, "checkpoint": 0, "vertex_from": "87", "vertex_to": "316", - "timestamp": "2025-11-27T01:21:55.598708171Z" + "timestamp": "2025-11-27T04:01:54.07894-08:00" }, { "operation": "add_edge", - "rtt_ns": 797267, - "rtt_ms": 0.797267, + "rtt_ns": 1519167, + "rtt_ms": 1.519167, "checkpoint": 0, "vertex_from": "88", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.59886805Z" + "timestamp": "2025-11-27T04:01:54.078986-08:00" }, { "operation": "add_edge", - "rtt_ns": 993137, - "rtt_ms": 0.993137, + "rtt_ns": 1568917, + "rtt_ms": 1.568917, "checkpoint": 0, "vertex_from": "88", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.59892953Z" + "timestamp": "2025-11-27T04:01:54.079036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037216, - "rtt_ms": 1.037216, + "rtt_ns": 1664709, + "rtt_ms": 1.664709, "checkpoint": 0, - "vertex_from": "87", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:55.59894398Z" + "vertex_from": "88", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.079084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126616, - "rtt_ms": 1.126616, + "rtt_ns": 1696042, + "rtt_ms": 1.696042, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.59894431Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:54.079094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069617, - "rtt_ms": 1.069617, + "rtt_ns": 1720792, + "rtt_ms": 1.720792, "checkpoint": 0, - "vertex_from": "88", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.59899748Z" + "vertex_from": "87", + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:54.079109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122106, - "rtt_ms": 1.122106, + "rtt_ns": 1799708, + "rtt_ms": 1.799708, "checkpoint": 0, "vertex_from": "87", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.59904484Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:54.07917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571644, - "rtt_ms": 1.571644, + "rtt_ns": 1490500, + "rtt_ms": 1.4905, "checkpoint": 0, "vertex_from": "88", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.599715897Z" + "timestamp": "2025-11-27T04:01:54.080222-08:00" }, { "operation": "add_edge", - "rtt_ns": 999877, - "rtt_ms": 0.999877, + "rtt_ns": 1326083, + "rtt_ms": 1.326083, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.599868837Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.080267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488505, - "rtt_ms": 1.488505, + "rtt_ns": 1504833, + "rtt_ms": 1.504833, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.599877787Z" + "vertex_to": "91", + "timestamp": "2025-11-27T04:01:54.080282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245306, - "rtt_ms": 1.245306, + "rtt_ns": 1167500, + "rtt_ms": 1.1675, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "91", - "timestamp": "2025-11-27T01:21:55.599924007Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:54.080338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229466, - "rtt_ms": 1.229466, + "rtt_ns": 1338000, + "rtt_ms": 1.338, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.599938707Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.080375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132916, - "rtt_ms": 1.132916, + "rtt_ns": 1488666, + "rtt_ms": 1.488666, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.600063766Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.080475-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1748417, + "rtt_ms": 1.748417, + "checkpoint": 0, + "vertex_from": "88", + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:54.080497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283236, - "rtt_ms": 1.283236, + "rtt_ns": 1406042, + "rtt_ms": 1.406042, "checkpoint": 0, "vertex_from": "88", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.600228236Z" + "timestamp": "2025-11-27T04:01:54.080501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358595, - "rtt_ms": 1.358595, + "rtt_ns": 1407042, + "rtt_ms": 1.407042, "checkpoint": 0, "vertex_from": "88", "vertex_to": "674", - "timestamp": "2025-11-27T01:21:55.600357245Z" + "timestamp": "2025-11-27T04:01:54.080517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414905, - "rtt_ms": 1.414905, + "rtt_ns": 1476708, + "rtt_ms": 1.476708, "checkpoint": 0, "vertex_from": "88", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.600359735Z" + "timestamp": "2025-11-27T04:01:54.080563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392755, - "rtt_ms": 1.392755, + "rtt_ns": 1803833, + "rtt_ms": 1.803833, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:55.600438435Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.08218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232157, - "rtt_ms": 1.232157, + "rtt_ns": 2003083, + "rtt_ms": 2.003083, "checkpoint": 0, "vertex_from": "88", "vertex_to": "677", - "timestamp": "2025-11-27T01:21:55.600948684Z" + "timestamp": "2025-11-27T04:01:54.082228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042336, - "rtt_ms": 1.042336, + "rtt_ns": 2290917, + "rtt_ms": 2.290917, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.600981583Z" + "vertex_to": "190", + "timestamp": "2025-11-27T04:01:54.082575-08:00" }, { "operation": "add_edge", - "rtt_ns": 924997, - "rtt_ms": 0.924997, + "rtt_ns": 2258042, + "rtt_ms": 2.258042, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.600989533Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.082597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136086, - "rtt_ms": 1.136086, + "rtt_ns": 2199084, + "rtt_ms": 2.199084, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "190", - "timestamp": "2025-11-27T01:21:55.601015073Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.082701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123316, - "rtt_ms": 1.123316, + "rtt_ns": 2504292, + "rtt_ms": 2.504292, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.601047693Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.082773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254416, - "rtt_ms": 1.254416, + "rtt_ns": 2234125, + "rtt_ms": 2.234125, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.601123923Z" + "vertex_to": "98", + "timestamp": "2025-11-27T04:01:54.082798-08:00" }, { "operation": "add_edge", - "rtt_ns": 927117, - "rtt_ms": 0.927117, + "rtt_ns": 2351542, + "rtt_ms": 2.351542, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.601156473Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.082829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425426, - "rtt_ms": 1.425426, + "rtt_ns": 2324541, + "rtt_ms": 2.324541, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.601783371Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:01:54.082844-08:00" }, { "operation": "add_edge", - "rtt_ns": 860338, - "rtt_ms": 0.860338, + "rtt_ns": 2440000, + "rtt_ms": 2.44, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.601908481Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.082938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556886, - "rtt_ms": 1.556886, + "rtt_ns": 1120375, + "rtt_ms": 1.120375, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "630", - "timestamp": "2025-11-27T01:21:55.601917631Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:01:54.083349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488565, - "rtt_ms": 1.488565, + "rtt_ns": 1413791, + "rtt_ms": 1.413791, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "98", - "timestamp": "2025-11-27T01:21:55.60192793Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:54.083596-08:00" }, { "operation": "add_edge", - "rtt_ns": 955687, - "rtt_ms": 0.955687, + "rtt_ns": 1438666, + "rtt_ms": 1.438666, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.60197143Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:01:54.084015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002047, - "rtt_ms": 1.002047, + "rtt_ns": 1495375, + "rtt_ms": 1.495375, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "908", - "timestamp": "2025-11-27T01:21:55.60199293Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:54.084093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018827, - "rtt_ms": 1.018827, + "rtt_ns": 1607125, + "rtt_ms": 1.607125, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "426", - "timestamp": "2025-11-27T01:21:55.60200145Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.084311-08:00" }, { "operation": "add_edge", - "rtt_ns": 877967, - "rtt_ms": 0.877967, + "rtt_ns": 1497459, + "rtt_ms": 1.497459, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.60200273Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.084438-08:00" }, { "operation": "add_edge", - "rtt_ns": 861717, - "rtt_ms": 0.861717, + "rtt_ns": 1744541, + "rtt_ms": 1.744541, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "187", - "timestamp": "2025-11-27T01:21:55.60201886Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.084575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219196, - "rtt_ms": 1.219196, + "rtt_ns": 1791208, + "rtt_ms": 1.791208, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:55.60216855Z" + "vertex_to": "187", + "timestamp": "2025-11-27T04:01:54.08459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245127, - "rtt_ms": 1.245127, + "rtt_ns": 1757042, + "rtt_ms": 1.757042, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.603173957Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.084602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201376, - "rtt_ms": 1.201376, + "rtt_ns": 1850542, + "rtt_ms": 1.850542, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.603194966Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.084625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297635, - "rtt_ms": 1.297635, + "rtt_ns": 1488167, + "rtt_ms": 1.488167, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.603215706Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.084839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325485, - "rtt_ms": 1.325485, + "rtt_ns": 1444084, + "rtt_ms": 1.444084, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.603234566Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:54.085042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470375, - "rtt_ms": 1.470375, + "rtt_ns": 1583833, + "rtt_ms": 1.583833, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.603254616Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.085599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351286, - "rtt_ms": 1.351286, + "rtt_ns": 1522500, + "rtt_ms": 1.5225, "checkpoint": 0, "vertex_from": "88", "vertex_to": "898", - "timestamp": "2025-11-27T01:21:55.603353956Z" + "timestamp": "2025-11-27T04:01:54.085617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372676, - "rtt_ms": 1.372676, + "rtt_ns": 1365833, + "rtt_ms": 1.365833, "checkpoint": 0, "vertex_from": "88", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.603376356Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1227006, - "rtt_ms": 1.227006, - "checkpoint": 0, - "vertex_from": "699", - "timestamp": "2025-11-27T01:21:55.603397126Z" + "timestamp": "2025-11-27T04:01:54.085678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446076, - "rtt_ms": 1.446076, + "rtt_ns": 1254792, + "rtt_ms": 1.254792, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:55.603418836Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:01:54.085694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404126, - "rtt_ms": 1.404126, + "rtt_ns": 1488792, + "rtt_ms": 1.488792, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "302", - "timestamp": "2025-11-27T01:21:55.603423896Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:54.086091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629254, - "rtt_ms": 1.629254, + "rtt_ns": 1480833, + "rtt_ms": 1.480833, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.604804161Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:54.086107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580325, - "rtt_ms": 1.580325, + "rtt_ns": 1402292, + "rtt_ms": 1.402292, "checkpoint": 0, "vertex_from": "88", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.604815681Z" + "timestamp": "2025-11-27T04:01:54.086243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652625, - "rtt_ms": 1.652625, + "rtt_ns": 1785708, + "rtt_ms": 1.785708, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.604868821Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.086376-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1833541, + "rtt_ms": 1.833541, + "checkpoint": 0, + "vertex_from": "699", + "timestamp": "2025-11-27T04:01:54.08641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756845, - "rtt_ms": 1.756845, + "rtt_ns": 1380083, + "rtt_ms": 1.380083, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:55.604952791Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.086424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805064, - "rtt_ms": 1.805064, + "rtt_ns": 1497875, + "rtt_ms": 1.497875, "checkpoint": 0, "vertex_from": "88", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.6051821Z" + "timestamp": "2025-11-27T04:01:54.087117-08:00" }, { "operation": "add_edge", - "rtt_ns": 623228, - "rtt_ms": 0.623228, + "rtt_ns": 1447333, + "rtt_ms": 1.447333, "checkpoint": 0, - "vertex_from": "89", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.605439859Z" + "vertex_from": "88", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.087142-08:00" }, { "operation": "add_edge", - "rtt_ns": 2329593, - "rtt_ms": 2.329593, + "rtt_ns": 1557417, + "rtt_ms": 1.557417, "checkpoint": 0, "vertex_from": "88", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.605684229Z" + "timestamp": "2025-11-27T04:01:54.087158-08:00" }, { "operation": "add_edge", - "rtt_ns": 839927, - "rtt_ms": 0.839927, + "rtt_ns": 1856000, + "rtt_ms": 1.856, "checkpoint": 0, - "vertex_from": "89", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.605709608Z" + "vertex_from": "88", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.087535-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294372, - "rtt_ms": 2.294372, + "rtt_ns": 1308416, + "rtt_ms": 1.308416, "checkpoint": 0, - "vertex_from": "88", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.605718838Z" + "vertex_from": "89", + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.087552-08:00" }, { "operation": "add_edge", - "rtt_ns": 794247, - "rtt_ms": 0.794247, + "rtt_ns": 1190584, + "rtt_ms": 1.190584, "checkpoint": 0, "vertex_from": "89", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.605747738Z" + "timestamp": "2025-11-27T04:01:54.087568-08:00" }, { "operation": "add_edge", - "rtt_ns": 594358, - "rtt_ms": 0.594358, + "rtt_ns": 1475333, + "rtt_ms": 1.475333, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.605777618Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.087583-08:00" }, { "operation": "add_edge", - "rtt_ns": 2546452, - "rtt_ms": 2.546452, + "rtt_ns": 1173000, + "rtt_ms": 1.173, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.605801678Z" + "vertex_to": "699", + "timestamp": "2025-11-27T04:01:54.087583-08:00" }, { "operation": "add_edge", - "rtt_ns": 2420372, - "rtt_ms": 2.420372, + "rtt_ns": 1650042, + "rtt_ms": 1.650042, "checkpoint": 0, "vertex_from": "88", - "vertex_to": "699", - "timestamp": "2025-11-27T01:21:55.605817688Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.087742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2426142, - "rtt_ms": 2.426142, + "rtt_ns": 1492791, + "rtt_ms": 1.492791, "checkpoint": 0, - "vertex_from": "88", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.605845788Z" + "vertex_from": "89", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.087918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330596, - "rtt_ms": 1.330596, + "rtt_ns": 1413500, + "rtt_ms": 1.4135, "checkpoint": 0, - "vertex_from": "88", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.606135667Z" + "vertex_from": "89", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.088572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299866, - "rtt_ms": 1.299866, + "rtt_ns": 1472208, + "rtt_ms": 1.472208, "checkpoint": 0, "vertex_from": "89", "vertex_to": "820", - "timestamp": "2025-11-27T01:21:55.606741225Z" + "timestamp": "2025-11-27T04:01:54.08859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181996, - "rtt_ms": 1.181996, + "rtt_ns": 1305458, + "rtt_ms": 1.305458, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.606867145Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.088842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094067, - "rtt_ms": 1.094067, + "rtt_ns": 1299208, + "rtt_ms": 1.299208, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:55.606874515Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:54.088852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155237, - "rtt_ms": 1.155237, + "rtt_ns": 1294000, + "rtt_ms": 1.294, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.606874875Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:54.088863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260376, - "rtt_ms": 1.260376, + "rtt_ns": 1728667, + "rtt_ms": 1.728667, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.606970714Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:54.088872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235876, - "rtt_ms": 1.235876, + "rtt_ns": 1296166, + "rtt_ms": 1.296166, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:55.606984014Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:54.08888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808504, - "rtt_ms": 1.808504, + "rtt_ns": 1366375, + "rtt_ms": 1.366375, "checkpoint": 0, "vertex_from": "89", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.607626952Z" + "timestamp": "2025-11-27T04:01:54.08895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793184, - "rtt_ms": 1.793184, + "rtt_ns": 1395500, + "rtt_ms": 1.3955, "checkpoint": 0, "vertex_from": "89", "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.607639842Z" + "timestamp": "2025-11-27T04:01:54.089138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847624, - "rtt_ms": 1.847624, + "rtt_ns": 1237000, + "rtt_ms": 1.237, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:55.607650092Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.089155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691655, - "rtt_ms": 1.691655, + "rtt_ns": 1337625, + "rtt_ms": 1.337625, "checkpoint": 0, "vertex_from": "89", "vertex_to": "113", - "timestamp": "2025-11-27T01:21:55.60843554Z" + "timestamp": "2025-11-27T04:01:54.089912-08:00" }, { "operation": "add_edge", - "rtt_ns": 2429392, - "rtt_ms": 2.429392, + "rtt_ns": 1404125, + "rtt_ms": 1.404125, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.608566199Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.089996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757494, - "rtt_ms": 1.757494, + "rtt_ns": 1269375, + "rtt_ms": 1.269375, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.608626309Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.09022-08:00" }, { "operation": "add_edge", - "rtt_ns": 2287822, - "rtt_ms": 2.287822, + "rtt_ns": 1188458, + "rtt_ms": 1.188458, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:55.609164267Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.090327-08:00" }, { "operation": "add_edge", - "rtt_ns": 2256893, - "rtt_ms": 2.256893, + "rtt_ns": 1491416, + "rtt_ms": 1.491416, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.609229927Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.090344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2363092, - "rtt_ms": 2.363092, + "rtt_ns": 1516625, + "rtt_ms": 1.516625, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.609239177Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:54.090359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2296493, - "rtt_ms": 2.296493, + "rtt_ns": 1216708, + "rtt_ms": 1.216708, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "96", - "timestamp": "2025-11-27T01:21:55.609281327Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:54.090373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881154, - "rtt_ms": 1.881154, + "rtt_ns": 1519333, + "rtt_ms": 1.519333, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.609531996Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:54.090383-08:00" }, { "operation": "add_edge", - "rtt_ns": 2150783, - "rtt_ms": 2.150783, + "rtt_ns": 1557459, + "rtt_ms": 1.557459, "checkpoint": 0, "vertex_from": "89", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.609779675Z" + "timestamp": "2025-11-27T04:01:54.090438-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326803, - "rtt_ms": 2.326803, + "rtt_ns": 1643541, + "rtt_ms": 1.643541, "checkpoint": 0, "vertex_from": "89", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.609967525Z" + "vertex_to": "96", + "timestamp": "2025-11-27T04:01:54.090515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026783, - "rtt_ms": 2.026783, + "rtt_ns": 1142208, + "rtt_ms": 1.142208, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.610654492Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:54.091363-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275162, - "rtt_ms": 2.275162, + "rtt_ns": 1020500, + "rtt_ms": 1.0205, "checkpoint": 0, - "vertex_from": "89", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:55.610712302Z" + "vertex_from": "90", + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.09138-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146653, - "rtt_ms": 2.146653, + "rtt_ns": 1078291, + "rtt_ms": 1.078291, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.610714472Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:54.091452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576855, - "rtt_ms": 1.576855, + "rtt_ns": 1557584, + "rtt_ms": 1.557584, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:55.610742772Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:54.091471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567735, - "rtt_ms": 1.567735, + "rtt_ns": 1487541, + "rtt_ms": 1.487541, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.610800162Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.091485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579305, - "rtt_ms": 1.579305, + "rtt_ns": 1175375, + "rtt_ms": 1.175375, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.610819332Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.091504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362765, - "rtt_ms": 1.362765, + "rtt_ns": 1266625, + "rtt_ms": 1.266625, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:55.610896461Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.09165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158596, - "rtt_ms": 1.158596, + "rtt_ns": 1226750, + "rtt_ms": 1.22675, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.610940401Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.091666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685724, - "rtt_ms": 1.685724, + "rtt_ns": 1406334, + "rtt_ms": 1.406334, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.610967701Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.091751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001826, - "rtt_ms": 1.001826, + "rtt_ns": 1525458, + "rtt_ms": 1.525458, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.610971031Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.092041-08:00" }, { "operation": "add_edge", - "rtt_ns": 906457, - "rtt_ms": 0.906457, + "rtt_ns": 1151250, + "rtt_ms": 1.15125, "checkpoint": 0, "vertex_from": "90", "vertex_to": "393", - "timestamp": "2025-11-27T01:21:55.611622399Z" + "timestamp": "2025-11-27T04:01:54.092532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000127, - "rtt_ms": 1.000127, + "rtt_ns": 1209542, + "rtt_ms": 1.209542, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.611713189Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.092696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925544, - "rtt_ms": 1.925544, + "rtt_ns": 1244209, + "rtt_ms": 1.244209, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.612582196Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.092752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640815, - "rtt_ms": 1.640815, + "rtt_ns": 1406875, + "rtt_ms": 1.406875, "checkpoint": 0, - "vertex_from": "91", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.612609366Z" + "vertex_from": "90", + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.092771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790294, - "rtt_ms": 1.790294, + "rtt_ns": 1315375, + "rtt_ms": 1.315375, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.612610986Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.092786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672375, - "rtt_ms": 1.672375, + "rtt_ns": 1259375, + "rtt_ms": 1.259375, "checkpoint": 0, - "vertex_from": "90", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.612613646Z" + "vertex_from": "91", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.093011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882374, - "rtt_ms": 1.882374, + "rtt_ns": 1376250, + "rtt_ms": 1.37625, "checkpoint": 0, - "vertex_from": "90", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:55.612626876Z" + "vertex_from": "91", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.093043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783795, - "rtt_ms": 1.783795, + "rtt_ns": 1849917, + "rtt_ms": 1.849917, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.612681086Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:54.093302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884204, - "rtt_ms": 1.884204, + "rtt_ns": 1667625, + "rtt_ms": 1.667625, "checkpoint": 0, "vertex_from": "90", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.612686486Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:54.093318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771654, - "rtt_ms": 1.771654, + "rtt_ns": 1395791, + "rtt_ms": 1.395791, "checkpoint": 0, "vertex_from": "91", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.612744755Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.093438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771194, - "rtt_ms": 1.771194, + "rtt_ns": 1510209, + "rtt_ms": 1.510209, "checkpoint": 0, - "vertex_from": "91", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:55.613486233Z" + "vertex_from": "92", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.094208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951924, - "rtt_ms": 1.951924, + "rtt_ns": 1258583, + "rtt_ms": 1.258583, "checkpoint": 0, - "vertex_from": "91", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.613575443Z" + "vertex_from": "92", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.09427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518055, - "rtt_ms": 1.518055, + "rtt_ns": 1612791, + "rtt_ms": 1.612791, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:55.614132911Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.094366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535055, - "rtt_ms": 1.535055, + "rtt_ns": 1618958, + "rtt_ms": 1.618958, "checkpoint": 0, "vertex_from": "92", "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.614147061Z" + "timestamp": "2025-11-27T04:01:54.094391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570145, - "rtt_ms": 1.570145, + "rtt_ns": 1366666, + "rtt_ms": 1.366666, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.614153781Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.09441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496625, - "rtt_ms": 1.496625, + "rtt_ns": 1894208, + "rtt_ms": 1.894208, + "checkpoint": 0, + "vertex_from": "91", + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:54.094427-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1657041, + "rtt_ms": 1.657041, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.614183971Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:54.094444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557605, - "rtt_ms": 1.557605, + "rtt_ns": 1501250, + "rtt_ms": 1.50125, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.614186431Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.09494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607155, - "rtt_ms": 1.607155, + "rtt_ns": 1662042, + "rtt_ms": 1.662042, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.614217771Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:54.094981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556765, - "rtt_ms": 1.556765, + "rtt_ns": 1965084, + "rtt_ms": 1.965084, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.614238761Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.095268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325986, - "rtt_ms": 1.325986, + "rtt_ns": 1131292, + "rtt_ms": 1.131292, "checkpoint": 0, "vertex_from": "92", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.614902379Z" + "timestamp": "2025-11-27T04:01:54.095342-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306913, - "rtt_ms": 2.306913, + "rtt_ns": 1362709, + "rtt_ms": 1.362709, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.615052438Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:54.095635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621905, - "rtt_ms": 1.621905, + "rtt_ns": 1205000, + "rtt_ms": 1.205, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.615109348Z" + "vertex_to": "287", + "timestamp": "2025-11-27T04:01:54.09565-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1230750, + "rtt_ms": 1.23075, + "checkpoint": 0, + "vertex_from": "92", + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.095659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682375, - "rtt_ms": 1.682375, + "rtt_ns": 1338167, + "rtt_ms": 1.338167, "checkpoint": 0, "vertex_from": "92", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.615836786Z" + "timestamp": "2025-11-27T04:01:54.095731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693515, - "rtt_ms": 1.693515, + "rtt_ns": 1518542, + "rtt_ms": 1.518542, "checkpoint": 0, "vertex_from": "92", "vertex_to": "563", - "timestamp": "2025-11-27T01:21:55.615841716Z" + "timestamp": "2025-11-27T04:01:54.095886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659185, - "rtt_ms": 1.659185, + "rtt_ns": 1493750, + "rtt_ms": 1.49375, "checkpoint": 0, "vertex_from": "92", "vertex_to": "420", - "timestamp": "2025-11-27T01:21:55.615844886Z" + "timestamp": "2025-11-27T04:01:54.095904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655895, - "rtt_ms": 1.655895, + "rtt_ns": 1085916, + "rtt_ms": 1.085916, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "287", - "timestamp": "2025-11-27T01:21:55.615874726Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.09643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690935, - "rtt_ms": 1.690935, + "rtt_ns": 1240583, + "rtt_ms": 1.240583, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.615878136Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:54.09651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745974, - "rtt_ms": 1.745974, + "rtt_ns": 1568500, + "rtt_ms": 1.5685, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:55.615880065Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:54.096511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671984, - "rtt_ms": 1.671984, + "rtt_ns": 1556917, + "rtt_ms": 1.556917, "checkpoint": 0, "vertex_from": "92", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:55.615911345Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:54.096539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008236, - "rtt_ms": 1.008236, + "rtt_ns": 1790083, + "rtt_ms": 1.790083, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:55.615911665Z" + "vertex_from": "93", + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:54.097441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020007, - "rtt_ms": 1.020007, + "rtt_ns": 1726708, + "rtt_ms": 1.726708, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:55.616074385Z" + "vertex_from": "93", + "vertex_to": "426", + "timestamp": "2025-11-27T04:01:54.097458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653445, - "rtt_ms": 1.653445, + "rtt_ns": 1816125, + "rtt_ms": 1.816125, "checkpoint": 0, - "vertex_from": "92", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.616763643Z" + "vertex_from": "93", + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:54.097477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018766, - "rtt_ms": 1.018766, + "rtt_ns": 1855542, + "rtt_ms": 1.855542, "checkpoint": 0, "vertex_from": "92", "vertex_to": "201", - "timestamp": "2025-11-27T01:21:55.616856942Z" + "timestamp": "2025-11-27T04:01:54.097491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1454886, - "rtt_ms": 1.454886, + "rtt_ns": 1624958, + "rtt_ms": 1.624958, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:55.617367751Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:54.097512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370996, - "rtt_ms": 1.370996, + "rtt_ns": 988750, + "rtt_ms": 0.98875, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.617446351Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1592934, - "rtt_ms": 1.592934, - "checkpoint": 0, - "vertex_from": "93", - "vertex_to": "426", - "timestamp": "2025-11-27T01:21:55.61746893Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.097528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600985, - "rtt_ms": 1.600985, + "rtt_ns": 1638917, + "rtt_ms": 1.638917, "checkpoint": 0, "vertex_from": "94", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.61748225Z" + "timestamp": "2025-11-27T04:01:54.097544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607145, - "rtt_ms": 1.607145, + "rtt_ns": 1871250, + "rtt_ms": 1.87125, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:55.61748702Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1644734, - "rtt_ms": 1.644734, - "checkpoint": 0, - "vertex_from": "93", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.6174911Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:54.098382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666364, - "rtt_ms": 1.666364, + "rtt_ns": 1876375, + "rtt_ms": 1.876375, "checkpoint": 0, - "vertex_from": "93", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:55.61751035Z" + "vertex_from": "94", + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.098388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624705, - "rtt_ms": 1.624705, + "rtt_ns": 1997125, + "rtt_ms": 1.997125, "checkpoint": 0, "vertex_from": "94", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.61753723Z" + "timestamp": "2025-11-27T04:01:54.098428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481205, - "rtt_ms": 1.481205, + "rtt_ns": 1460167, + "rtt_ms": 1.460167, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.618245688Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.098919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546385, - "rtt_ms": 1.546385, + "rtt_ns": 1988000, + "rtt_ms": 1.988, "checkpoint": 0, "vertex_from": "94", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.618404117Z" + "timestamp": "2025-11-27T04:01:54.09943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109826, - "rtt_ms": 1.109826, + "rtt_ns": 1973500, + "rtt_ms": 1.9735, "checkpoint": 0, "vertex_from": "94", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.618478827Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1360256, - "rtt_ms": 1.360256, - "checkpoint": 0, - "vertex_from": "95", - "timestamp": "2025-11-27T01:21:55.618872226Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.099451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498456, - "rtt_ms": 1.498456, + "rtt_ns": 1937958, + "rtt_ms": 1.937958, "checkpoint": 0, "vertex_from": "94", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.618986356Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1487096, - "rtt_ms": 1.487096, - "checkpoint": 0, - "vertex_from": "95", - "timestamp": "2025-11-27T01:21:55.619025236Z" + "timestamp": "2025-11-27T04:01:54.099467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574255, - "rtt_ms": 1.574255, + "rtt_ns": 1976375, + "rtt_ms": 1.976375, "checkpoint": 0, "vertex_from": "94", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.619044275Z" + "timestamp": "2025-11-27T04:01:54.099468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564475, - "rtt_ms": 1.564475, + "rtt_ns": 1943541, + "rtt_ms": 1.943541, "checkpoint": 0, "vertex_from": "94", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.619056415Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1610864, - "rtt_ms": 1.610864, - "checkpoint": 0, - "vertex_from": "94", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.619057975Z" + "timestamp": "2025-11-27T04:01:54.099488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586445, - "rtt_ms": 1.586445, + "rtt_ns": 1990750, + "rtt_ms": 1.99075, "checkpoint": 0, "vertex_from": "94", "vertex_to": "140", - "timestamp": "2025-11-27T01:21:55.619069945Z" + "timestamp": "2025-11-27T04:01:54.099503-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1182676, - "rtt_ms": 1.182676, + "rtt_ns": 1488750, + "rtt_ms": 1.48875, "checkpoint": 0, "vertex_from": "95", - "timestamp": "2025-11-27T01:21:55.619429814Z" + "timestamp": "2025-11-27T04:01:54.099874-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1185507, - "rtt_ms": 1.185507, + "operation": "add_vertex", + "rtt_ns": 1443334, + "rtt_ms": 1.443334, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.619591264Z" + "vertex_from": "95", + "timestamp": "2025-11-27T04:01:54.099874-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1018257, - "rtt_ms": 1.018257, + "operation": "add_vertex", + "rtt_ns": 1515833, + "rtt_ms": 1.515833, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.620077472Z" + "vertex_from": "95", + "timestamp": "2025-11-27T04:01:54.099906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125857, - "rtt_ms": 1.125857, + "rtt_ns": 1153333, + "rtt_ms": 1.153333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.620183592Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.100074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349586, - "rtt_ms": 1.349586, + "rtt_ns": 1471709, + "rtt_ms": 1.471709, "checkpoint": 0, "vertex_from": "95", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.620222222Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.101379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746005, - "rtt_ms": 1.746005, + "rtt_ns": 1521500, + "rtt_ms": 1.5215, "checkpoint": 0, - "vertex_from": "96", + "vertex_from": "95", "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.620226132Z" + "timestamp": "2025-11-27T04:01:54.101396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202587, - "rtt_ms": 1.202587, + "rtt_ns": 1907208, + "rtt_ms": 1.907208, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.620248112Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.101411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264466, - "rtt_ms": 1.264466, + "rtt_ns": 1969750, + "rtt_ms": 1.96975, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.620252272Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.101439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363616, - "rtt_ms": 1.363616, + "rtt_ns": 1366542, + "rtt_ms": 1.366542, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.620436031Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:54.101442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437865, - "rtt_ms": 1.437865, + "rtt_ns": 2034250, + "rtt_ms": 2.03425, "checkpoint": 0, - "vertex_from": "95", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.620463481Z" + "vertex_from": "96", + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.101465-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1671465, - "rtt_ms": 1.671465, + "rtt_ns": 1590083, + "rtt_ms": 1.590083, "checkpoint": 0, "vertex_from": "429", - "timestamp": "2025-11-27T01:21:55.621102649Z" + "timestamp": "2025-11-27T04:01:54.101466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037687, - "rtt_ms": 1.037687, + "rtt_ns": 2018583, + "rtt_ms": 2.018583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.621116759Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:54.101471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530735, - "rtt_ms": 1.530735, + "rtt_ns": 1999583, + "rtt_ms": 1.999583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.621122899Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:54.101488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588204, - "rtt_ms": 1.588204, + "rtt_ns": 2024750, + "rtt_ms": 2.02475, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.621772946Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:54.101495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447825, - "rtt_ms": 1.447825, + "rtt_ns": 1492750, + "rtt_ms": 1.49275, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.621884626Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.102935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677794, - "rtt_ms": 1.677794, + "rtt_ns": 1539167, + "rtt_ms": 1.539167, "checkpoint": 0, "vertex_from": "96", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.621926536Z" + "timestamp": "2025-11-27T04:01:54.102983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786064, - "rtt_ms": 1.786064, + "rtt_ns": 1614417, + "rtt_ms": 1.614417, "checkpoint": 0, "vertex_from": "96", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.622009066Z" + "timestamp": "2025-11-27T04:01:54.103028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628324, - "rtt_ms": 1.628324, + "rtt_ns": 1735792, + "rtt_ms": 1.735792, "checkpoint": 0, "vertex_from": "96", "vertex_to": "206", - "timestamp": "2025-11-27T01:21:55.622092985Z" + "timestamp": "2025-11-27T04:01:54.103225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860733, - "rtt_ms": 1.860733, + "rtt_ns": 1828750, + "rtt_ms": 1.82875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "668", - "timestamp": "2025-11-27T01:21:55.622114295Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.103226-08:00" }, { "operation": "add_edge", - "rtt_ns": 992866, - "rtt_ms": 0.992866, + "rtt_ns": 1779875, + "rtt_ms": 1.779875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:55.622116415Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:54.103246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898893, - "rtt_ms": 1.898893, + "rtt_ns": 1758292, + "rtt_ms": 1.758292, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.622125855Z" + "vertex_to": "112", + "timestamp": "2025-11-27T04:01:54.103255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053446, - "rtt_ms": 1.053446, + "rtt_ns": 1793250, + "rtt_ms": 1.79325, "checkpoint": 0, "vertex_from": "95", "vertex_to": "429", - "timestamp": "2025-11-27T01:21:55.622156345Z" + "timestamp": "2025-11-27T04:01:54.10326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772214, - "rtt_ms": 1.772214, + "rtt_ns": 1878292, + "rtt_ms": 1.878292, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "112", - "timestamp": "2025-11-27T01:21:55.622889933Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:54.10326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366936, - "rtt_ms": 1.366936, + "rtt_ns": 1851291, + "rtt_ms": 1.851291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.623461491Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.103323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516065, - "rtt_ms": 1.516065, + "rtt_ns": 1710209, + "rtt_ms": 1.710209, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:55.623526021Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:54.105035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425955, - "rtt_ms": 1.425955, + "rtt_ns": 2074292, + "rtt_ms": 2.074292, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:55.62354318Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.105104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440685, - "rtt_ms": 1.440685, + "rtt_ns": 2065750, + "rtt_ms": 2.06575, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "812", - "timestamp": "2025-11-27T01:21:55.62355644Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:01:54.105327-08:00" }, { "operation": "add_edge", - "rtt_ns": 2107543, - "rtt_ms": 2.107543, + "rtt_ns": 2160500, + "rtt_ms": 2.1605, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.623993139Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.105407-08:00" }, { "operation": "add_edge", - "rtt_ns": 2369923, - "rtt_ms": 2.369923, + "rtt_ns": 2265333, + "rtt_ms": 2.265333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:55.624145769Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:54.105526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2055943, - "rtt_ms": 2.055943, + "rtt_ns": 2608666, + "rtt_ms": 2.608666, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "331", - "timestamp": "2025-11-27T01:21:55.624183058Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:54.105545-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2335625, + "rtt_ms": 2.335625, + "checkpoint": 0, + "vertex_from": "96", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:54.105562-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2391083, + "rtt_ms": 2.391083, + "checkpoint": 0, + "vertex_from": "96", + "vertex_to": "812", + "timestamp": "2025-11-27T04:01:54.105648-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283652, - "rtt_ms": 2.283652, + "rtt_ns": 2686250, + "rtt_ms": 2.68625, "checkpoint": 0, "vertex_from": "96", "vertex_to": "167", - "timestamp": "2025-11-27T01:21:55.624211458Z" + "timestamp": "2025-11-27T04:01:54.105913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484045, - "rtt_ms": 1.484045, + "rtt_ns": 3092041, + "rtt_ms": 3.092041, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:55.624374608Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:54.106078-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251743, - "rtt_ms": 2.251743, + "rtt_ns": 1424583, + "rtt_ms": 1.424583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:55.624409228Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.106833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671494, - "rtt_ms": 1.671494, + "rtt_ns": 1814000, + "rtt_ms": 1.814, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.625135495Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:54.10685-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1261500, + "rtt_ms": 1.2615, + "checkpoint": 0, + "vertex_from": "96", + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:54.107177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744185, - "rtt_ms": 1.744185, + "rtt_ns": 1669917, + "rtt_ms": 1.669917, "checkpoint": 0, "vertex_from": "96", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.625301635Z" + "timestamp": "2025-11-27T04:01:54.107197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864784, - "rtt_ms": 1.864784, + "rtt_ns": 1666250, + "rtt_ms": 1.66625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.625392075Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:54.107212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849245, - "rtt_ms": 1.849245, + "rtt_ns": 1575833, + "rtt_ms": 1.575833, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.625393925Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.107227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973173, - "rtt_ms": 1.973173, + "rtt_ns": 1681333, + "rtt_ms": 1.681333, "checkpoint": 0, "vertex_from": "96", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.626120582Z" + "timestamp": "2025-11-27T04:01:54.107245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2656262, - "rtt_ms": 2.656262, + "rtt_ns": 1930625, + "rtt_ms": 1.930625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:55.62686877Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:54.107259-08:00" }, { "operation": "add_edge", - "rtt_ns": 2788502, - "rtt_ms": 2.788502, + "rtt_ns": 2166667, + "rtt_ms": 2.166667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.62697278Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.107274-08:00" }, { "operation": "add_edge", - "rtt_ns": 2601002, - "rtt_ms": 2.601002, + "rtt_ns": 1379833, + "rtt_ms": 1.379833, "checkpoint": 0, "vertex_from": "96", "vertex_to": "643", - "timestamp": "2025-11-27T01:21:55.62697769Z" + "timestamp": "2025-11-27T04:01:54.107458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2587681, - "rtt_ms": 2.587681, + "rtt_ns": 1016709, + "rtt_ms": 1.016709, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:55.627000469Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.108291-08:00" }, { "operation": "add_edge", - "rtt_ns": 3012590, - "rtt_ms": 3.01259, + "rtt_ns": 1533084, + "rtt_ms": 1.533084, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:55.627007169Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:54.108384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878274, - "rtt_ms": 1.878274, + "rtt_ns": 1607750, + "rtt_ms": 1.60775, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.627019949Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:54.108441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641784, - "rtt_ms": 1.641784, + "rtt_ns": 994917, + "rtt_ms": 0.994917, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.627037869Z" + "vertex_to": "101", + "timestamp": "2025-11-27T04:01:54.108455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747564, - "rtt_ms": 1.747564, + "rtt_ns": 1408083, + "rtt_ms": 1.408083, "checkpoint": 0, "vertex_from": "96", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.627051129Z" + "timestamp": "2025-11-27T04:01:54.108586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023507, - "rtt_ms": 1.023507, + "rtt_ns": 1529458, + "rtt_ms": 1.529458, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.627147549Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.108789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789724, - "rtt_ms": 1.789724, + "rtt_ns": 1617250, + "rtt_ms": 1.61725, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.627183929Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.108829-08:00" }, { "operation": "add_edge", - "rtt_ns": 945647, - "rtt_ms": 0.945647, + "rtt_ns": 1842583, + "rtt_ms": 1.842583, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:55.627816867Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.10904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611725, - "rtt_ms": 1.611725, + "rtt_ns": 1812916, + "rtt_ms": 1.812916, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.628620774Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:54.109058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721194, - "rtt_ms": 1.721194, + "rtt_ns": 2429292, + "rtt_ms": 2.429292, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.628698854Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:54.109657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539175, - "rtt_ms": 1.539175, + "rtt_ns": 1332500, + "rtt_ms": 1.3325, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:55.628724554Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.10979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747704, - "rtt_ms": 1.747704, + "rtt_ns": 1912750, + "rtt_ms": 1.91275, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.628727124Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.110355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604205, - "rtt_ms": 1.604205, + "rtt_ns": 1786917, + "rtt_ms": 1.786917, "checkpoint": 0, "vertex_from": "96", "vertex_to": "356", - "timestamp": "2025-11-27T01:21:55.628753404Z" + "timestamp": "2025-11-27T04:01:54.110373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760615, - "rtt_ms": 1.760615, + "rtt_ns": 1682875, + "rtt_ms": 1.682875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "101", - "timestamp": "2025-11-27T01:21:55.628762954Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:54.110513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710955, - "rtt_ms": 1.710955, + "rtt_ns": 1875000, + "rtt_ms": 1.875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.628763484Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:54.110665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755935, - "rtt_ms": 1.755935, + "rtt_ns": 1641916, + "rtt_ms": 1.641916, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.628796584Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:54.110683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822834, - "rtt_ms": 1.822834, + "rtt_ns": 2507584, + "rtt_ms": 2.507584, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.628845303Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:54.1108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469365, - "rtt_ms": 1.469365, + "rtt_ns": 2433750, + "rtt_ms": 2.43375, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:55.629287562Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.110818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036017, - "rtt_ms": 1.036017, + "rtt_ns": 1174417, + "rtt_ms": 1.174417, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:55.629658681Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:54.110832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596904, - "rtt_ms": 1.596904, + "rtt_ns": 2033125, + "rtt_ms": 2.033125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "104", - "timestamp": "2025-11-27T01:21:55.630394538Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:54.111092-08:00" }, { "operation": "add_edge", - "rtt_ns": 767417, - "rtt_ms": 0.767417, + "rtt_ns": 1319000, + "rtt_ms": 1.319, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.630427998Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:54.11111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705124, - "rtt_ms": 1.705124, + "rtt_ns": 1378666, + "rtt_ms": 1.378666, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.630434398Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.111753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639275, - "rtt_ms": 1.639275, + "rtt_ns": 965791, + "rtt_ms": 0.965791, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.630485388Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.111785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787594, - "rtt_ms": 1.787594, + "rtt_ns": 1399375, + "rtt_ms": 1.399375, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.630513228Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.112084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813434, - "rtt_ms": 1.813434, + "rtt_ns": 2076750, + "rtt_ms": 2.07675, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:55.630513568Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:54.112433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764194, - "rtt_ms": 1.764194, + "rtt_ns": 1968333, + "rtt_ms": 1.968333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:55.630519328Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.112485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755554, - "rtt_ms": 1.755554, + "rtt_ns": 1852875, + "rtt_ms": 1.852875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.630520218Z" + "vertex_to": "104", + "timestamp": "2025-11-27T04:01:54.112519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253706, - "rtt_ms": 1.253706, + "rtt_ns": 1708000, + "rtt_ms": 1.708, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.630542028Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.112541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776374, - "rtt_ms": 1.776374, + "rtt_ns": 1798250, + "rtt_ms": 1.79825, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.630542528Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:54.112599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638145, - "rtt_ms": 1.638145, + "rtt_ns": 1633500, + "rtt_ms": 1.6335, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "369", - "timestamp": "2025-11-27T01:21:55.632073673Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:54.112727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751204, - "rtt_ms": 1.751204, + "rtt_ns": 1654167, + "rtt_ms": 1.654167, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.632146962Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:01:54.112764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642114, - "rtt_ms": 1.642114, + "rtt_ns": 1494917, + "rtt_ms": 1.494917, "checkpoint": 0, "vertex_from": "96", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:55.632156652Z" + "timestamp": "2025-11-27T04:01:54.113283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680544, - "rtt_ms": 1.680544, + "rtt_ns": 1560875, + "rtt_ms": 1.560875, "checkpoint": 0, "vertex_from": "96", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.632166622Z" + "timestamp": "2025-11-27T04:01:54.113315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679854, - "rtt_ms": 1.679854, + "rtt_ns": 1202041, + "rtt_ms": 1.202041, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "171", - "timestamp": "2025-11-27T01:21:55.632194722Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:54.113802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653274, - "rtt_ms": 1.653274, + "rtt_ns": 1303000, + "rtt_ms": 1.303, "checkpoint": 0, "vertex_from": "96", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.632196452Z" + "timestamp": "2025-11-27T04:01:54.113824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707544, - "rtt_ms": 1.707544, + "rtt_ns": 1873667, + "rtt_ms": 1.873667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:55.632230462Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:01:54.113959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804344, - "rtt_ms": 1.804344, + "rtt_ns": 1679542, + "rtt_ms": 1.679542, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:55.632233552Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:54.114115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693884, - "rtt_ms": 1.693884, + "rtt_ns": 1590000, + "rtt_ms": 1.59, "checkpoint": 0, "vertex_from": "96", "vertex_to": "780", - "timestamp": "2025-11-27T01:21:55.632237602Z" + "timestamp": "2025-11-27T04:01:54.114133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738744, - "rtt_ms": 1.738744, + "rtt_ns": 1737666, + "rtt_ms": 1.737666, "checkpoint": 0, "vertex_from": "96", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:55.632260832Z" + "timestamp": "2025-11-27T04:01:54.114224-08:00" }, { "operation": "add_edge", - "rtt_ns": 740948, - "rtt_ms": 0.740948, + "rtt_ns": 2015958, + "rtt_ms": 2.015958, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:55.63290926Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:01:54.114782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113256, - "rtt_ms": 1.113256, + "rtt_ns": 2088500, + "rtt_ms": 2.0885, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.633188839Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:54.114817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530846, - "rtt_ms": 1.530846, + "rtt_ns": 1659667, + "rtt_ms": 1.659667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "902", - "timestamp": "2025-11-27T01:21:55.633689638Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:54.114977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505626, - "rtt_ms": 1.505626, + "rtt_ns": 1312916, + "rtt_ms": 1.312916, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "728", - "timestamp": "2025-11-27T01:21:55.633704128Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.115137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621355, - "rtt_ms": 1.621355, + "rtt_ns": 1871291, + "rtt_ms": 1.871291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:55.633818117Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:54.115155-08:00" }, { "operation": "add_edge", - "rtt_ns": 911687, - "rtt_ms": 0.911687, + "rtt_ns": 1363875, + "rtt_ms": 1.363875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:55.633822677Z" + "vertex_to": "728", + "timestamp": "2025-11-27T04:01:54.115171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619965, - "rtt_ms": 1.619965, + "rtt_ns": 1094958, + "rtt_ms": 1.094958, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:55.633855257Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.11521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716845, - "rtt_ms": 1.716845, + "rtt_ns": 1265750, + "rtt_ms": 1.26575, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:55.633866037Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:54.115226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610505, - "rtt_ms": 1.610505, + "rtt_ns": 1818208, + "rtt_ms": 1.818208, "checkpoint": 0, "vertex_from": "96", "vertex_to": "105", - "timestamp": "2025-11-27T01:21:55.633872897Z" + "timestamp": "2025-11-27T04:01:54.115951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643515, - "rtt_ms": 1.643515, + "rtt_ns": 1759625, + "rtt_ms": 1.759625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.633875257Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:54.115985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642345, - "rtt_ms": 1.642345, + "rtt_ns": 1183959, + "rtt_ms": 1.183959, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.633881187Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:54.116322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414876, - "rtt_ms": 1.414876, + "rtt_ns": 1212833, + "rtt_ms": 1.212833, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.634605115Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.116369-08:00" }, { "operation": "add_edge", - "rtt_ns": 965787, - "rtt_ms": 0.965787, + "rtt_ns": 1598042, + "rtt_ms": 1.598042, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:55.634670814Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.116418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568635, - "rtt_ms": 1.568635, + "rtt_ns": 1692333, + "rtt_ms": 1.692333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.635392202Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.116476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615155, - "rtt_ms": 1.615155, + "rtt_ns": 1621458, + "rtt_ms": 1.621458, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:55.635434542Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:54.1166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773004, - "rtt_ms": 1.773004, + "rtt_ns": 1443125, + "rtt_ms": 1.443125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.635463332Z" + "vertex_to": "714", + "timestamp": "2025-11-27T04:01:54.116615-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072883, - "rtt_ms": 2.072883, + "rtt_ns": 1460167, + "rtt_ms": 1.460167, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "173", - "timestamp": "2025-11-27T01:21:55.63595062Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:54.116689-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139163, - "rtt_ms": 2.139163, + "rtt_ns": 1565583, + "rtt_ms": 1.565583, "checkpoint": 0, "vertex_from": "96", "vertex_to": "649", - "timestamp": "2025-11-27T01:21:55.63600644Z" + "timestamp": "2025-11-27T04:01:54.116777-08:00" }, { "operation": "add_edge", - "rtt_ns": 2252793, - "rtt_ms": 2.252793, + "rtt_ns": 1392167, + "rtt_ms": 1.392167, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:55.63613232Z" + "vertex_to": "173", + "timestamp": "2025-11-27T04:01:54.117345-08:00" }, { "operation": "add_edge", - "rtt_ns": 2499762, - "rtt_ms": 2.499762, + "rtt_ns": 1364500, + "rtt_ms": 1.3645, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "714", - "timestamp": "2025-11-27T01:21:55.636356069Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.117352-08:00" }, { "operation": "add_edge", - "rtt_ns": 2667811, - "rtt_ms": 2.667811, + "rtt_ns": 1056750, + "rtt_ms": 1.05675, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.636550268Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:54.117533-08:00" }, { "operation": "add_edge", - "rtt_ns": 2534382, - "rtt_ms": 2.534382, + "rtt_ns": 1130792, + "rtt_ms": 1.130792, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:55.637140587Z" + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:54.117549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2622822, - "rtt_ms": 2.622822, + "rtt_ns": 1422375, + "rtt_ms": 1.422375, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.637294576Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:54.117746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969114, - "rtt_ms": 1.969114, + "rtt_ns": 1547959, + "rtt_ms": 1.547959, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:55.637363216Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.117918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937014, - "rtt_ms": 1.937014, + "rtt_ns": 1479333, + "rtt_ms": 1.479333, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:55.637374626Z" + "vertex_to": "97", + "timestamp": "2025-11-27T04:01:54.11808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921114, - "rtt_ms": 1.921114, + "rtt_ns": 1482958, + "rtt_ms": 1.482958, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "97", - "timestamp": "2025-11-27T01:21:55.637385486Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.118098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401636, - "rtt_ms": 1.401636, + "rtt_ns": 1572541, + "rtt_ms": 1.572541, "checkpoint": 0, "vertex_from": "96", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:55.637409736Z" + "timestamp": "2025-11-27T04:01:54.118264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545705, - "rtt_ms": 1.545705, + "rtt_ns": 2549291, + "rtt_ms": 2.549291, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.637501645Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.119327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409535, - "rtt_ms": 1.409535, + "rtt_ns": 1986875, + "rtt_ms": 1.986875, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.637543305Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:54.119521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040377, - "rtt_ms": 1.040377, + "rtt_ns": 2355500, + "rtt_ms": 2.3555, "checkpoint": 0, "vertex_from": "96", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.637592185Z" + "timestamp": "2025-11-27T04:01:54.119708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254916, - "rtt_ms": 1.254916, + "rtt_ns": 2362041, + "rtt_ms": 2.362041, "checkpoint": 0, "vertex_from": "96", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.637612795Z" + "timestamp": "2025-11-27T04:01:54.119709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245146, - "rtt_ms": 1.245146, + "rtt_ns": 2178250, + "rtt_ms": 2.17825, "checkpoint": 0, "vertex_from": "96", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.638540792Z" + "timestamp": "2025-11-27T04:01:54.119729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189026, - "rtt_ms": 1.189026, + "rtt_ns": 1844208, + "rtt_ms": 1.844208, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.638576342Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:54.119763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440045, - "rtt_ms": 1.440045, + "rtt_ns": 2057250, + "rtt_ms": 2.05725, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:55.638583042Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.119804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229026, - "rtt_ms": 1.229026, + "rtt_ns": 1667958, + "rtt_ms": 1.667958, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:55.638605532Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:01:54.119935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251686, - "rtt_ms": 1.251686, + "rtt_ns": 1873292, + "rtt_ms": 1.873292, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.638615672Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:54.119954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274456, - "rtt_ms": 1.274456, + "rtt_ns": 1969750, + "rtt_ms": 1.96975, "checkpoint": 0, "vertex_from": "96", "vertex_to": "141", - "timestamp": "2025-11-27T01:21:55.638685422Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1844565, - "rtt_ms": 1.844565, - "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "459", - "timestamp": "2025-11-27T01:21:55.6393502Z" + "timestamp": "2025-11-27T04:01:54.120069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826165, - "rtt_ms": 1.826165, + "rtt_ns": 1511417, + "rtt_ms": 1.511417, "checkpoint": 0, "vertex_from": "96", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.63937085Z" + "timestamp": "2025-11-27T04:01:54.12084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786415, - "rtt_ms": 1.786415, + "rtt_ns": 1370250, + "rtt_ms": 1.37025, "checkpoint": 0, "vertex_from": "96", "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.63937973Z" + "timestamp": "2025-11-27T04:01:54.120892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990554, - "rtt_ms": 1.990554, + "rtt_ns": 1462500, + "rtt_ms": 1.4625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.639605049Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:54.121172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237026, - "rtt_ms": 1.237026, + "rtt_ns": 1458000, + "rtt_ms": 1.458, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "929", - "timestamp": "2025-11-27T01:21:55.639844608Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:54.121189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318896, - "rtt_ms": 1.318896, + "rtt_ns": 1398625, + "rtt_ms": 1.398625, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:55.639864368Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:01:54.121204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340786, - "rtt_ms": 1.340786, + "rtt_ns": 1599959, + "rtt_ms": 1.599959, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:55.639919088Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:54.121365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320306, - "rtt_ms": 1.320306, + "rtt_ns": 1432125, + "rtt_ms": 1.432125, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.639937558Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.121387-08:00" }, { "operation": "add_edge", - "rtt_ns": 668857, - "rtt_ms": 0.668857, + "rtt_ns": 1685042, + "rtt_ms": 1.685042, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "425", - "timestamp": "2025-11-27T01:21:55.640020807Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.121394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360905, - "rtt_ms": 1.360905, + "rtt_ns": 1499208, + "rtt_ms": 1.499208, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.640048197Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.121435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479975, - "rtt_ms": 1.479975, + "rtt_ns": 1456000, + "rtt_ms": 1.456, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:55.640064827Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:01:54.121526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114396, - "rtt_ms": 1.114396, + "rtt_ns": 1502667, + "rtt_ms": 1.502667, "checkpoint": 0, "vertex_from": "96", "vertex_to": "803", - "timestamp": "2025-11-27T01:21:55.640487106Z" + "timestamp": "2025-11-27T04:01:54.122343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326436, - "rtt_ms": 1.326436, + "rtt_ns": 1468416, + "rtt_ms": 1.468416, "checkpoint": 0, "vertex_from": "96", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.640707925Z" + "timestamp": "2025-11-27T04:01:54.122363-08:00" }, { "operation": "add_edge", - "rtt_ns": 865807, - "rtt_ms": 0.865807, + "rtt_ns": 1383459, + "rtt_ms": 1.383459, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.640711515Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.122588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107476, - "rtt_ms": 1.107476, + "rtt_ns": 1431417, + "rtt_ms": 1.431417, "checkpoint": 0, "vertex_from": "96", "vertex_to": "229", - "timestamp": "2025-11-27T01:21:55.640713675Z" + "timestamp": "2025-11-27T04:01:54.122604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585044, - "rtt_ms": 1.585044, + "rtt_ns": 1431042, + "rtt_ms": 1.431042, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.641504982Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.122621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589844, - "rtt_ms": 1.589844, + "rtt_ns": 1252625, + "rtt_ms": 1.252625, "checkpoint": 0, "vertex_from": "96", "vertex_to": "204", - "timestamp": "2025-11-27T01:21:55.641528802Z" + "timestamp": "2025-11-27T04:01:54.12264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516575, - "rtt_ms": 1.516575, + "rtt_ns": 1129916, + "rtt_ms": 1.129916, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:55.641538692Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.122656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675594, - "rtt_ms": 1.675594, + "rtt_ns": 1287041, + "rtt_ms": 1.287041, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.641541452Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:54.122682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504135, - "rtt_ms": 1.504135, + "rtt_ns": 1352750, + "rtt_ms": 1.35275, "checkpoint": 0, "vertex_from": "96", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:55.641553942Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1308525, - "rtt_ms": 1.308525, - "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.641796521Z" + "timestamp": "2025-11-27T04:01:54.122788-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006174, - "rtt_ms": 2.006174, + "rtt_ns": 1503500, + "rtt_ms": 1.5035, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.642074561Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:54.122869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456215, - "rtt_ms": 1.456215, + "rtt_ns": 1178167, + "rtt_ms": 1.178167, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:55.6421715Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.123835-08:00" }, { "operation": "add_edge", - "rtt_ns": 704518, - "rtt_ms": 0.704518, + "rtt_ns": 1264375, + "rtt_ms": 1.264375, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "102", - "timestamp": "2025-11-27T01:21:55.64223449Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.123853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551215, - "rtt_ms": 1.551215, + "rtt_ns": 1491209, + "rtt_ms": 1.491209, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.64226475Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:54.123855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597295, - "rtt_ms": 1.597295, + "rtt_ns": 1399959, + "rtt_ms": 1.399959, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:55.64230658Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:54.124005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260426, - "rtt_ms": 1.260426, + "rtt_ns": 1397834, + "rtt_ms": 1.397834, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:55.642804048Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:54.12402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354286, - "rtt_ms": 1.354286, + "rtt_ns": 1244958, + "rtt_ms": 1.244958, "checkpoint": 0, "vertex_from": "96", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.642913258Z" + "timestamp": "2025-11-27T04:01:54.124035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189206, - "rtt_ms": 1.189206, + "rtt_ns": 1358250, + "rtt_ms": 1.35825, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.642987727Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:54.124048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623135, - "rtt_ms": 1.623135, + "rtt_ns": 1719250, + "rtt_ms": 1.71925, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:55.643129287Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.124063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609145, - "rtt_ms": 1.609145, + "rtt_ns": 1434667, + "rtt_ms": 1.434667, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.643149507Z" + "vertex_to": "102", + "timestamp": "2025-11-27T04:01:54.124076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797334, - "rtt_ms": 1.797334, + "rtt_ns": 1337958, + "rtt_ms": 1.337958, "checkpoint": 0, "vertex_from": "96", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:55.643873845Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:54.124209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735314, - "rtt_ms": 1.735314, + "rtt_ns": 1002250, + "rtt_ms": 1.00225, "checkpoint": 0, - "vertex_from": "96", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:55.643908334Z" + "vertex_from": "97", + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.125079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676084, - "rtt_ms": 1.676084, + "rtt_ns": 1109292, + "rtt_ms": 1.109292, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:55.643911794Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:54.125145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613974, - "rtt_ms": 1.613974, + "rtt_ns": 1178208, + "rtt_ms": 1.178208, "checkpoint": 0, "vertex_from": "97", "vertex_to": "453", - "timestamp": "2025-11-27T01:21:55.643923784Z" + "timestamp": "2025-11-27T04:01:54.125198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669014, - "rtt_ms": 1.669014, + "rtt_ns": 1400084, + "rtt_ms": 1.400084, "checkpoint": 0, - "vertex_from": "97", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.643935654Z" + "vertex_from": "96", + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:54.125254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691485, - "rtt_ms": 1.691485, + "rtt_ns": 1553708, + "rtt_ms": 1.553708, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:55.644497013Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:54.12541-08:00" }, { "operation": "add_edge", - "rtt_ns": 730378, - "rtt_ms": 0.730378, + "rtt_ns": 1378083, + "rtt_ms": 1.378083, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:55.644669542Z" + "vertex_to": "795", + "timestamp": "2025-11-27T04:01:54.125427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538455, - "rtt_ms": 1.538455, + "rtt_ns": 1431541, + "rtt_ms": 1.431541, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.644670872Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.125437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830835, - "rtt_ms": 1.830835, + "rtt_ns": 1605250, + "rtt_ms": 1.60525, "checkpoint": 0, - "vertex_from": "97", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.644820112Z" + "vertex_from": "96", + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:54.125441-08:00" }, { "operation": "add_edge", - "rtt_ns": 969846, - "rtt_ms": 0.969846, + "rtt_ns": 1237500, + "rtt_ms": 1.2375, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:55.644845541Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.125447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695284, - "rtt_ms": 1.695284, + "rtt_ns": 1543625, + "rtt_ms": 1.543625, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.644846971Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.125608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943803, - "rtt_ms": 1.943803, + "rtt_ns": 1385875, + "rtt_ms": 1.385875, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "795", - "timestamp": "2025-11-27T01:21:55.644859081Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:54.126532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136517, - "rtt_ms": 1.136517, + "rtt_ns": 1349416, + "rtt_ms": 1.349416, "checkpoint": 0, "vertex_from": "97", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.645062191Z" + "timestamp": "2025-11-27T04:01:54.126605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659455, - "rtt_ms": 1.659455, + "rtt_ns": 1585833, + "rtt_ms": 1.585833, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "114", - "timestamp": "2025-11-27T01:21:55.645572879Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:54.126668-08:00" }, { "operation": "add_edge", - "rtt_ns": 823908, - "rtt_ms": 0.823908, + "rtt_ns": 1366459, + "rtt_ms": 1.366459, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.645684379Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:54.126805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798145, - "rtt_ms": 1.798145, + "rtt_ns": 1457000, + "rtt_ms": 1.457, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:55.645708219Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:54.126868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062227, - "rtt_ms": 1.062227, + "rtt_ns": 1473500, + "rtt_ms": 1.4735, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.645733649Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:54.126921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249556, - "rtt_ms": 1.249556, + "rtt_ns": 1743292, + "rtt_ms": 1.743292, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:55.645749059Z" + "vertex_to": "114", + "timestamp": "2025-11-27T04:01:54.126943-08:00" }, { "operation": "add_edge", - "rtt_ns": 2090023, - "rtt_ms": 2.090023, + "rtt_ns": 1499417, + "rtt_ms": 1.499417, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.646762625Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.127109-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056924, - "rtt_ms": 2.056924, + "rtt_ns": 1775708, + "rtt_ms": 1.775708, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.646905275Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:54.127203-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114924, - "rtt_ms": 2.114924, + "rtt_ns": 1812417, + "rtt_ms": 1.812417, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.646963575Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.127254-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230992, - "rtt_ms": 2.230992, + "rtt_ns": 1287042, + "rtt_ms": 1.287042, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.647052964Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:54.127956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640634, - "rtt_ms": 1.640634, + "rtt_ns": 1440625, + "rtt_ms": 1.440625, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.647390653Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:54.127974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846374, - "rtt_ms": 1.846374, + "rtt_ns": 1590334, + "rtt_ms": 1.590334, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.647420923Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.128198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786764, - "rtt_ms": 1.786764, + "rtt_ns": 1359875, + "rtt_ms": 1.359875, "checkpoint": 0, "vertex_from": "97", "vertex_to": "158", - "timestamp": "2025-11-27T01:21:55.647472553Z" + "timestamp": "2025-11-27T04:01:54.12823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491892, - "rtt_ms": 2.491892, + "rtt_ns": 1301875, + "rtt_ms": 1.301875, "checkpoint": 0, "vertex_from": "97", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.648226671Z" + "timestamp": "2025-11-27T04:01:54.128246-08:00" }, { "operation": "add_edge", - "rtt_ns": 2518162, - "rtt_ms": 2.518162, + "rtt_ns": 1560625, + "rtt_ms": 1.560625, "checkpoint": 0, "vertex_from": "97", "vertex_to": "460", - "timestamp": "2025-11-27T01:21:55.648231421Z" + "timestamp": "2025-11-27T04:01:54.128484-08:00" }, { "operation": "add_edge", - "rtt_ns": 3180920, - "rtt_ms": 3.18092, + "rtt_ns": 1388125, + "rtt_ms": 1.388125, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.648244371Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:54.128499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494045, - "rtt_ms": 1.494045, + "rtt_ns": 1310584, + "rtt_ms": 1.310584, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:55.64840101Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:54.128515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565745, - "rtt_ms": 1.565745, + "rtt_ns": 1724834, + "rtt_ms": 1.724834, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.649039918Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.128531-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285373, - "rtt_ms": 2.285373, + "rtt_ns": 1529125, + "rtt_ms": 1.529125, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:55.649051348Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:54.128784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997154, - "rtt_ms": 1.997154, + "rtt_ns": 1231291, + "rtt_ms": 1.231291, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:55.649051568Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:54.12943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702565, - "rtt_ms": 1.702565, + "rtt_ns": 1472666, + "rtt_ms": 1.472666, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:55.649094688Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:54.129447-08:00" }, { "operation": "add_edge", - "rtt_ns": 2140833, - "rtt_ms": 2.140833, + "rtt_ns": 1490000, + "rtt_ms": 1.49, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:55.649106038Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:54.129721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708395, - "rtt_ms": 1.708395, + "rtt_ns": 1231166, + "rtt_ms": 1.231166, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:55.649132628Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.129747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760934, - "rtt_ms": 1.760934, + "rtt_ns": 1516083, + "rtt_ms": 1.516083, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.649989565Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.129762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756584, - "rtt_ms": 1.756584, + "rtt_ns": 1477208, + "rtt_ms": 1.477208, "checkpoint": 0, "vertex_from": "97", "vertex_to": "801", - "timestamp": "2025-11-27T01:21:55.649990855Z" + "timestamp": "2025-11-27T04:01:54.129977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611385, - "rtt_ms": 1.611385, + "rtt_ns": 1208917, + "rtt_ms": 1.208917, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.650013985Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.129994-08:00" }, { "operation": "add_edge", - "rtt_ns": 978837, - "rtt_ms": 0.978837, + "rtt_ns": 1524042, + "rtt_ms": 1.524042, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.650032375Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.130009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802244, - "rtt_ms": 1.802244, + "rtt_ns": 2066917, + "rtt_ms": 2.066917, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.650049225Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:54.130024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046397, - "rtt_ms": 1.046397, + "rtt_ns": 1651458, + "rtt_ms": 1.651458, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.650100175Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.130183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106326, - "rtt_ms": 1.106326, + "rtt_ns": 1555083, + "rtt_ms": 1.555083, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.650202764Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:54.130986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296106, - "rtt_ms": 1.296106, + "rtt_ns": 1605416, + "rtt_ms": 1.605416, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.650338484Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.131054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760024, - "rtt_ms": 1.760024, + "rtt_ns": 1219000, + "rtt_ms": 1.219, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "100", - "timestamp": "2025-11-27T01:21:55.650868392Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:54.131229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831214, - "rtt_ms": 1.831214, + "rtt_ns": 1403791, + "rtt_ms": 1.403791, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.650966192Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.131382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425695, - "rtt_ms": 1.425695, + "rtt_ns": 1620500, + "rtt_ms": 1.6205, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.65147752Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.131384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355726, - "rtt_ms": 1.355726, + "rtt_ns": 1405708, + "rtt_ms": 1.405708, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.6515599Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:01:54.131401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562345, - "rtt_ms": 1.562345, + "rtt_ns": 1385208, + "rtt_ms": 1.385208, "checkpoint": 0, "vertex_from": "97", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.65159621Z" + "timestamp": "2025-11-27T04:01:54.13141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614765, - "rtt_ms": 1.614765, + "rtt_ns": 1698375, + "rtt_ms": 1.698375, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.65160779Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.13142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998463, - "rtt_ms": 1.998463, + "rtt_ns": 1861625, + "rtt_ms": 1.861625, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:55.652100708Z" + "vertex_to": "100", + "timestamp": "2025-11-27T04:01:54.131609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278176, - "rtt_ms": 1.278176, + "rtt_ns": 1503375, + "rtt_ms": 1.503375, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.652147978Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:54.131689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237626, - "rtt_ms": 1.237626, + "rtt_ns": 1487208, + "rtt_ms": 1.487208, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:55.652205378Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:54.132476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2292393, - "rtt_ms": 2.292393, + "rtt_ns": 1246333, + "rtt_ms": 1.246333, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:55.652308018Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:54.132476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2418372, - "rtt_ms": 2.418372, + "rtt_ns": 2301792, + "rtt_ms": 2.301792, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "227", - "timestamp": "2025-11-27T01:21:55.652412387Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:54.133357-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132533, - "rtt_ms": 2.132533, + "rtt_ns": 1989875, + "rtt_ms": 1.989875, "checkpoint": 0, "vertex_from": "97", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:55.652472787Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:54.133375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682154, - "rtt_ms": 1.682154, + "rtt_ns": 1994416, + "rtt_ms": 1.994416, "checkpoint": 0, - "vertex_from": "98", - "vertex_to": "295", - "timestamp": "2025-11-27T01:21:55.653291914Z" + "vertex_from": "97", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.133378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717484, - "rtt_ms": 1.717484, + "rtt_ns": 1700250, + "rtt_ms": 1.70025, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.653316484Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.13339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115516, - "rtt_ms": 1.115516, + "rtt_ns": 1985292, + "rtt_ms": 1.985292, "checkpoint": 0, - "vertex_from": "98", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.653322564Z" + "vertex_from": "97", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.133396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177956, - "rtt_ms": 1.177956, + "rtt_ns": 1983792, + "rtt_ms": 1.983792, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.653327334Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.133405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772494, - "rtt_ms": 1.772494, + "rtt_ns": 1803417, + "rtt_ms": 1.803417, "checkpoint": 0, - "vertex_from": "97", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.653333814Z" + "vertex_from": "98", + "vertex_to": "295", + "timestamp": "2025-11-27T04:01:54.133414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864104, - "rtt_ms": 1.864104, + "rtt_ns": 2047125, + "rtt_ms": 2.047125, "checkpoint": 0, "vertex_from": "97", "vertex_to": "643", - "timestamp": "2025-11-27T01:21:55.653343854Z" + "timestamp": "2025-11-27T04:01:54.133449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699435, - "rtt_ms": 1.699435, + "rtt_ns": 1464125, + "rtt_ms": 1.464125, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.654113332Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.133943-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109803, - "rtt_ms": 2.109803, + "rtt_ns": 1616916, + "rtt_ms": 1.616916, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.654216431Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.134096-08:00" }, { "operation": "add_edge", - "rtt_ns": 932747, - "rtt_ms": 0.932747, + "rtt_ns": 1295750, + "rtt_ms": 1.29575, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.654278781Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.134653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024367, - "rtt_ms": 1.024367, + "rtt_ns": 1329792, + "rtt_ms": 1.329792, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.654342391Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:54.134735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047743, - "rtt_ms": 2.047743, + "rtt_ns": 1514041, + "rtt_ms": 1.514041, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.654358011Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.134905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111716, - "rtt_ms": 1.111716, + "rtt_ns": 1547792, + "rtt_ms": 1.547792, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.6544524Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.134923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997423, - "rtt_ms": 1.997423, + "rtt_ns": 1542958, + "rtt_ms": 1.542958, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.65447152Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.134939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151256, - "rtt_ms": 1.151256, + "rtt_ns": 1593334, + "rtt_ms": 1.593334, + "checkpoint": 0, + "vertex_from": "98", + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.135045-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1648167, + "rtt_ms": 1.648167, "checkpoint": 0, "vertex_from": "98", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:55.6544816Z" + "timestamp": "2025-11-27T04:01:54.135063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189136, - "rtt_ms": 1.189136, + "rtt_ns": 1735791, + "rtt_ms": 1.735791, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.65448346Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.135114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171206, - "rtt_ms": 1.171206, + "rtt_ns": 1268333, + "rtt_ms": 1.268333, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:55.65449511Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:54.135212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091336, - "rtt_ms": 1.091336, + "rtt_ns": 1322292, + "rtt_ms": 1.322292, "checkpoint": 0, "vertex_from": "98", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.655208048Z" + "timestamp": "2025-11-27T04:01:54.13542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119736, - "rtt_ms": 1.119736, + "rtt_ns": 1155459, + "rtt_ms": 1.155459, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.655400597Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:54.13608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186006, - "rtt_ms": 1.186006, + "rtt_ns": 1158208, + "rtt_ms": 1.158208, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.655529867Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:54.136098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247536, - "rtt_ms": 1.247536, + "rtt_ns": 1408584, + "rtt_ms": 1.408584, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:55.655720576Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:54.136315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526555, - "rtt_ms": 1.526555, + "rtt_ns": 1595875, + "rtt_ms": 1.595875, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "932", - "timestamp": "2025-11-27T01:21:55.655751156Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.136332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992983, - "rtt_ms": 1.992983, + "rtt_ns": 1792958, + "rtt_ms": 1.792958, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:55.656352254Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:01:54.136448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870834, - "rtt_ms": 1.870834, + "rtt_ns": 1392125, + "rtt_ms": 1.392125, "checkpoint": 0, "vertex_from": "98", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:55.656354244Z" + "timestamp": "2025-11-27T04:01:54.136456-08:00" }, { "operation": "add_edge", - "rtt_ns": 968197, - "rtt_ms": 0.968197, + "rtt_ns": 1599666, + "rtt_ms": 1.599666, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "670", - "timestamp": "2025-11-27T01:21:55.656371054Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:54.136645-08:00" }, { "operation": "add_edge", - "rtt_ns": 963877, - "rtt_ms": 0.963877, + "rtt_ns": 1449083, + "rtt_ms": 1.449083, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.656494864Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.136662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309336, - "rtt_ms": 1.309336, + "rtt_ns": 1697667, + "rtt_ms": 1.697667, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.656519324Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:54.136813-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027654, - "rtt_ms": 2.027654, + "rtt_ns": 1386667, + "rtt_ms": 1.386667, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.656524924Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.136816-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072984, - "rtt_ms": 2.072984, + "rtt_ns": 1251541, + "rtt_ms": 1.251541, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:55.656528504Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.13735-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103723, - "rtt_ms": 2.103723, + "rtt_ns": 1328084, + "rtt_ms": 1.328084, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:55.656589493Z" + "vertex_to": "670", + "timestamp": "2025-11-27T04:01:54.137409-08:00" }, { "operation": "add_edge", - "rtt_ns": 2153193, - "rtt_ms": 2.153193, + "rtt_ns": 1262416, + "rtt_ms": 1.262416, "checkpoint": 0, "vertex_from": "98", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.657905399Z" + "timestamp": "2025-11-27T04:01:54.137595-08:00" }, { "operation": "add_edge", - "rtt_ns": 2187743, - "rtt_ms": 2.187743, + "rtt_ns": 1427000, + "rtt_ms": 1.427, "checkpoint": 0, "vertex_from": "98", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.657909299Z" + "timestamp": "2025-11-27T04:01:54.137743-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288523, - "rtt_ms": 2.288523, + "rtt_ns": 1358583, + "rtt_ms": 1.358583, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.658660947Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.137807-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297472, - "rtt_ms": 2.297472, + "rtt_ns": 1338542, + "rtt_ms": 1.338542, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:55.658824276Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.138001-08:00" }, { "operation": "add_edge", - "rtt_ns": 2342082, - "rtt_ms": 2.342082, + "rtt_ns": 1418333, + "rtt_ms": 1.418333, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.658838176Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:54.138065-08:00" }, { "operation": "add_edge", - "rtt_ns": 2536872, - "rtt_ms": 2.536872, + "rtt_ns": 1622250, + "rtt_ms": 1.62225, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.658890176Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:54.138082-08:00" }, { "operation": "add_edge", - "rtt_ns": 2437452, - "rtt_ms": 2.437452, + "rtt_ns": 1345417, + "rtt_ms": 1.345417, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.658967946Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:54.138159-08:00" }, { "operation": "add_edge", - "rtt_ns": 2475832, - "rtt_ms": 2.475832, + "rtt_ns": 1522583, + "rtt_ms": 1.522583, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.658996216Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:54.138339-08:00" }, { "operation": "add_edge", - "rtt_ns": 2598852, - "rtt_ms": 2.598852, + "rtt_ns": 1393500, + "rtt_ms": 1.3935, "checkpoint": 0, "vertex_from": "98", "vertex_to": "203", - "timestamp": "2025-11-27T01:21:55.659190065Z" + "timestamp": "2025-11-27T04:01:54.138804-08:00" }, { "operation": "add_edge", - "rtt_ns": 2892191, - "rtt_ms": 2.892191, + "rtt_ns": 1225000, + "rtt_ms": 1.225, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:55.659247905Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.138821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357796, - "rtt_ms": 1.357796, + "rtt_ns": 1363416, + "rtt_ms": 1.363416, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.659264565Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.139171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366056, - "rtt_ms": 1.366056, + "rtt_ns": 1835833, + "rtt_ms": 1.835833, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.659277515Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.139189-08:00" }, { "operation": "add_edge", - "rtt_ns": 675438, - "rtt_ms": 0.675438, + "rtt_ns": 1375500, + "rtt_ms": 1.3755, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.659337375Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.139458-08:00" }, { "operation": "add_edge", - "rtt_ns": 776098, - "rtt_ms": 0.776098, + "rtt_ns": 1736500, + "rtt_ms": 1.7365, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.659615114Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.139481-08:00" }, { "operation": "add_edge", - "rtt_ns": 724408, - "rtt_ms": 0.724408, + "rtt_ns": 1665084, + "rtt_ms": 1.665084, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.659615924Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.139667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573855, - "rtt_ms": 1.573855, + "rtt_ns": 1580084, + "rtt_ms": 1.580084, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.660399421Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:54.13974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473815, - "rtt_ms": 1.473815, + "rtt_ns": 1416167, + "rtt_ms": 1.416167, "checkpoint": 0, "vertex_from": "98", "vertex_to": "805", - "timestamp": "2025-11-27T01:21:55.660472141Z" + "timestamp": "2025-11-27T04:01:54.139758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548535, - "rtt_ms": 1.548535, + "rtt_ns": 1706875, + "rtt_ms": 1.706875, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:55.660517801Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.139772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190786, - "rtt_ms": 1.190786, + "rtt_ns": 1221166, + "rtt_ms": 1.221166, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.660530301Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:54.140043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361926, - "rtt_ms": 1.361926, + "rtt_ns": 1493917, + "rtt_ms": 1.493917, "checkpoint": 0, "vertex_from": "98", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.660553101Z" + "timestamp": "2025-11-27T04:01:54.140299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327446, - "rtt_ms": 1.327446, + "rtt_ns": 1242208, + "rtt_ms": 1.242208, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:55.660576471Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.140701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313156, - "rtt_ms": 1.313156, + "rtt_ns": 1546292, + "rtt_ms": 1.546292, "checkpoint": 0, "vertex_from": "98", "vertex_to": "808", - "timestamp": "2025-11-27T01:21:55.660578831Z" + "timestamp": "2025-11-27T04:01:54.140718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335726, - "rtt_ms": 1.335726, + "rtt_ns": 1543125, + "rtt_ms": 1.543125, "checkpoint": 0, "vertex_from": "98", "vertex_to": "325", - "timestamp": "2025-11-27T01:21:55.660614611Z" + "timestamp": "2025-11-27T04:01:54.140733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750684, - "rtt_ms": 1.750684, + "rtt_ns": 1347209, + "rtt_ms": 1.347209, "checkpoint": 0, "vertex_from": "98", "vertex_to": "611", - "timestamp": "2025-11-27T01:21:55.661367158Z" + "timestamp": "2025-11-27T04:01:54.140829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812704, - "rtt_ms": 1.812704, + "rtt_ns": 1066666, + "rtt_ms": 1.066666, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:55.661430298Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:54.14084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390616, - "rtt_ms": 1.390616, + "rtt_ns": 1153292, + "rtt_ms": 1.153292, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.661791417Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:54.140912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386856, - "rtt_ms": 1.386856, + "rtt_ns": 1207625, + "rtt_ms": 1.207625, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:55.661908227Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.140948-08:00" }, { "operation": "add_edge", - "rtt_ns": 2011884, - "rtt_ms": 2.011884, + "rtt_ns": 1365167, + "rtt_ms": 1.365167, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "668", - "timestamp": "2025-11-27T01:21:55.662484915Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:54.141034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983074, - "rtt_ms": 1.983074, + "rtt_ns": 1232958, + "rtt_ms": 1.232958, "checkpoint": 0, "vertex_from": "98", "vertex_to": "523", - "timestamp": "2025-11-27T01:21:55.662516365Z" + "timestamp": "2025-11-27T04:01:54.141277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991354, - "rtt_ms": 1.991354, + "rtt_ns": 1037000, + "rtt_ms": 1.037, "checkpoint": 0, "vertex_from": "98", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.662545755Z" + "timestamp": "2025-11-27T04:01:54.141337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989233, - "rtt_ms": 1.989233, + "rtt_ns": 1086125, + "rtt_ms": 1.086125, "checkpoint": 0, - "vertex_from": "98", - "vertex_to": "571", - "timestamp": "2025-11-27T01:21:55.662569894Z" + "vertex_from": "99", + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:54.141927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978523, - "rtt_ms": 1.978523, + "rtt_ns": 1261625, + "rtt_ms": 1.261625, "checkpoint": 0, "vertex_from": "98", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.662594904Z" + "timestamp": "2025-11-27T04:01:54.141995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2126293, - "rtt_ms": 2.126293, + "rtt_ns": 1316125, + "rtt_ms": 1.316125, "checkpoint": 0, "vertex_from": "98", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.662704794Z" + "timestamp": "2025-11-27T04:01:54.142018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501646, - "rtt_ms": 1.501646, + "rtt_ns": 1469458, + "rtt_ms": 1.469458, "checkpoint": 0, "vertex_from": "98", - "vertex_to": "461", - "timestamp": "2025-11-27T01:21:55.662870134Z" + "vertex_to": "571", + "timestamp": "2025-11-27T04:01:54.142188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489215, - "rtt_ms": 1.489215, + "rtt_ns": 1360500, + "rtt_ms": 1.3605, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:55.662921353Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:54.14231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695835, - "rtt_ms": 1.695835, + "rtt_ns": 1302958, + "rtt_ms": 1.302958, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.663488612Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.142337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592375, - "rtt_ms": 1.592375, + "rtt_ns": 1623417, + "rtt_ms": 1.623417, "checkpoint": 0, - "vertex_from": "99", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:55.663501902Z" + "vertex_from": "98", + "vertex_to": "461", + "timestamp": "2025-11-27T04:01:54.142454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216496, - "rtt_ms": 1.216496, + "rtt_ns": 1791125, + "rtt_ms": 1.791125, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:55.66408797Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.142706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463076, - "rtt_ms": 1.463076, + "rtt_ns": 1406333, + "rtt_ms": 1.406333, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.664386949Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.142744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713564, - "rtt_ms": 1.713564, + "rtt_ns": 1711833, + "rtt_ms": 1.711833, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.664419298Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:54.142989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951153, - "rtt_ms": 1.951153, + "rtt_ns": 1417042, + "rtt_ms": 1.417042, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.664498208Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:54.143436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927654, - "rtt_ms": 1.927654, + "rtt_ns": 1268291, + "rtt_ms": 1.268291, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.664499548Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:54.143459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906584, - "rtt_ms": 1.906584, + "rtt_ns": 1557666, + "rtt_ms": 1.557666, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "295", - "timestamp": "2025-11-27T01:21:55.664502318Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.143487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2139903, - "rtt_ms": 2.139903, + "rtt_ns": 1377500, + "rtt_ms": 1.3775, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.664625988Z" + "vertex_to": "184", + "timestamp": "2025-11-27T04:01:54.143716-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125923, - "rtt_ms": 2.125923, + "rtt_ns": 1740458, + "rtt_ms": 1.740458, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.664643568Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:01:54.143737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721874, - "rtt_ms": 1.721874, + "rtt_ns": 1494250, + "rtt_ms": 1.49425, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.665225366Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.143815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214826, - "rtt_ms": 1.214826, + "rtt_ns": 1127000, + "rtt_ms": 1.127, "checkpoint": 0, "vertex_from": "99", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.665303996Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1841523, - "rtt_ms": 1.841523, - "checkpoint": 0, - "vertex_from": "99", - "vertex_to": "184", - "timestamp": "2025-11-27T01:21:55.665331945Z" + "timestamp": "2025-11-27T04:01:54.143835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337446, - "rtt_ms": 1.337446, + "rtt_ns": 1520250, + "rtt_ms": 1.52025, "checkpoint": 0, "vertex_from": "99", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:55.665758084Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:54.143976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464395, - "rtt_ms": 1.464395, + "rtt_ns": 1312625, + "rtt_ms": 1.312625, "checkpoint": 0, "vertex_from": "99", "vertex_to": "995", - "timestamp": "2025-11-27T01:21:55.665852614Z" + "timestamp": "2025-11-27T04:01:54.144058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365576, - "rtt_ms": 1.365576, + "rtt_ns": 1484208, + "rtt_ms": 1.484208, "checkpoint": 0, "vertex_from": "100", "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.665869294Z" + "timestamp": "2025-11-27T04:01:54.144972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267695, - "rtt_ms": 1.267695, + "rtt_ns": 1251000, + "rtt_ms": 1.251, "checkpoint": 0, "vertex_from": "100", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.665913083Z" + "timestamp": "2025-11-27T04:01:54.144989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431975, - "rtt_ms": 1.431975, + "rtt_ns": 1431000, + "rtt_ms": 1.431, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.665931073Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.145148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497445, - "rtt_ms": 1.497445, + "rtt_ns": 1757167, + "rtt_ms": 1.757167, "checkpoint": 0, "vertex_from": "100", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.665999203Z" + "timestamp": "2025-11-27T04:01:54.145218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765994, - "rtt_ms": 1.765994, + "rtt_ns": 1469000, + "rtt_ms": 1.469, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.666392892Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.145284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352546, - "rtt_ms": 1.352546, + "rtt_ns": 1902458, + "rtt_ms": 1.902458, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.666685471Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.14534-08:00" }, { "operation": "add_edge", - "rtt_ns": 970207, - "rtt_ms": 0.970207, + "rtt_ns": 2363625, + "rtt_ms": 2.363625, "checkpoint": 0, - "vertex_from": "100", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:55.666729391Z" + "vertex_from": "99", + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:54.145354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659994, - "rtt_ms": 1.659994, + "rtt_ns": 1380375, + "rtt_ms": 1.380375, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.66688733Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.145357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611174, - "rtt_ms": 1.611174, + "rtt_ns": 1316583, + "rtt_ms": 1.316583, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.66691642Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:54.145376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635164, - "rtt_ms": 1.635164, + "rtt_ns": 1695250, + "rtt_ms": 1.69525, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.667505288Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.14553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731235, - "rtt_ms": 1.731235, + "rtt_ns": 1460167, + "rtt_ms": 1.460167, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.667645678Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.14645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865723, - "rtt_ms": 1.865723, + "rtt_ns": 1496625, + "rtt_ms": 1.496625, "checkpoint": 0, "vertex_from": "100", "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.667719627Z" + "timestamp": "2025-11-27T04:01:54.14647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757584, - "rtt_ms": 1.757584, + "rtt_ns": 2016250, + "rtt_ms": 2.01625, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.667758017Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.147165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638944, - "rtt_ms": 1.638944, + "rtt_ns": 1725917, + "rtt_ms": 1.725917, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "961", - "timestamp": "2025-11-27T01:21:55.668033206Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.147257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404035, - "rtt_ms": 1.404035, + "rtt_ns": 1904875, + "rtt_ms": 1.904875, "checkpoint": 0, "vertex_from": "100", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.668135226Z" + "timestamp": "2025-11-27T04:01:54.147263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225573, - "rtt_ms": 2.225573, + "rtt_ns": 2056000, + "rtt_ms": 2.056, "checkpoint": 0, "vertex_from": "100", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.668157966Z" + "timestamp": "2025-11-27T04:01:54.147275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598475, - "rtt_ms": 1.598475, + "rtt_ns": 1939083, + "rtt_ms": 1.939083, "checkpoint": 0, "vertex_from": "100", "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.668285886Z" + "timestamp": "2025-11-27T04:01:54.147294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765984, - "rtt_ms": 1.765984, + "rtt_ns": 2036416, + "rtt_ms": 2.036416, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.668654614Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:54.147321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757414, - "rtt_ms": 1.757414, + "rtt_ns": 2000708, + "rtt_ms": 2.000708, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.668674604Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.147377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126437, - "rtt_ms": 1.126437, + "rtt_ns": 2256958, + "rtt_ms": 2.256958, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:55.668885334Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:54.147597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311835, - "rtt_ms": 1.311835, + "rtt_ns": 1231417, + "rtt_ms": 1.231417, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "659", - "timestamp": "2025-11-27T01:21:55.668959113Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.148397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081557, - "rtt_ms": 1.081557, + "rtt_ns": 1245959, + "rtt_ms": 1.245959, "checkpoint": 0, "vertex_from": "100", "vertex_to": "308", - "timestamp": "2025-11-27T01:21:55.669116223Z" + "timestamp": "2025-11-27T04:01:54.148509-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027794, - "rtt_ms": 2.027794, + "rtt_ns": 1270750, + "rtt_ms": 1.27075, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.669749241Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:54.148529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701925, - "rtt_ms": 1.701925, + "rtt_ns": 2375458, + "rtt_ms": 2.375458, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.669839351Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:01:54.148846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700905, - "rtt_ms": 1.700905, + "rtt_ns": 1485750, + "rtt_ms": 1.48575, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.669860161Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.148863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632964, - "rtt_ms": 1.632964, + "rtt_ns": 1703209, + "rtt_ms": 1.703209, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.66992042Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.148979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2458282, - "rtt_ms": 2.458282, + "rtt_ns": 1894084, + "rtt_ms": 1.894084, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.66996473Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.149189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336526, - "rtt_ms": 1.336526, + "rtt_ns": 2757875, + "rtt_ms": 2.757875, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.66999271Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.149208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421896, - "rtt_ms": 1.421896, + "rtt_ns": 1741917, + "rtt_ms": 1.741917, "checkpoint": 0, "vertex_from": "100", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.67009802Z" + "timestamp": "2025-11-27T04:01:54.14934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038227, - "rtt_ms": 1.038227, + "rtt_ns": 2030416, + "rtt_ms": 2.030416, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:55.67015595Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:54.149352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648484, - "rtt_ms": 1.648484, + "rtt_ns": 1323792, + "rtt_ms": 1.323792, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.670535808Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:54.150304-08:00" }, { "operation": "add_edge", - "rtt_ns": 965937, - "rtt_ms": 0.965937, + "rtt_ns": 1131042, + "rtt_ms": 1.131042, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:55.670716268Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:01:54.150321-08:00" }, { "operation": "add_edge", - "rtt_ns": 951727, - "rtt_ms": 0.951727, + "rtt_ns": 1689708, + "rtt_ms": 1.689708, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.670813998Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:54.150554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014876, - "rtt_ms": 1.014876, + "rtt_ns": 2215458, + "rtt_ms": 2.215458, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:55.670856877Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.150613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921894, - "rtt_ms": 1.921894, + "rtt_ns": 2085375, + "rtt_ms": 2.085375, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.670881727Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:54.150616-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558185, - "rtt_ms": 1.558185, + "rtt_ns": 2121250, + "rtt_ms": 2.12125, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.671524385Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.150631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659505, - "rtt_ms": 1.659505, + "rtt_ns": 1795625, + "rtt_ms": 1.795625, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "745", - "timestamp": "2025-11-27T01:21:55.671581685Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:54.150643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564295, - "rtt_ms": 1.564295, + "rtt_ns": 1293166, + "rtt_ms": 1.293166, "checkpoint": 0, "vertex_from": "100", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.671663025Z" + "timestamp": "2025-11-27T04:01:54.150646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711505, - "rtt_ms": 1.711505, + "rtt_ns": 1342584, + "rtt_ms": 1.342584, "checkpoint": 0, "vertex_from": "100", "vertex_to": "172", - "timestamp": "2025-11-27T01:21:55.671705175Z" + "timestamp": "2025-11-27T04:01:54.150683-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1494125, + "rtt_ms": 1.494125, + "checkpoint": 0, + "vertex_from": "100", + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:54.150703-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1270167, + "rtt_ms": 1.270167, + "checkpoint": 0, + "vertex_from": "100", + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.151827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197097, - "rtt_ms": 1.197097, + "rtt_ns": 1321750, + "rtt_ms": 1.32175, "checkpoint": 0, "vertex_from": "100", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.672054824Z" + "timestamp": "2025-11-27T04:01:54.151939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265126, - "rtt_ms": 1.265126, + "rtt_ns": 1682625, + "rtt_ms": 1.682625, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.672080454Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.152004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018383, - "rtt_ms": 2.018383, + "rtt_ns": 1321333, + "rtt_ms": 1.321333, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.672175173Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:54.152005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292246, - "rtt_ms": 1.292246, + "rtt_ns": 1380417, + "rtt_ms": 1.380417, "checkpoint": 0, "vertex_from": "100", "vertex_to": "658", - "timestamp": "2025-11-27T01:21:55.672175193Z" + "timestamp": "2025-11-27T04:01:54.152013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464735, - "rtt_ms": 1.464735, + "rtt_ns": 1815542, + "rtt_ms": 1.815542, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.672183203Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.152121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178606, - "rtt_ms": 1.178606, + "rtt_ns": 1521375, + "rtt_ms": 1.521375, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:55.672704621Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:54.152225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2183093, - "rtt_ms": 2.183093, + "rtt_ns": 1592958, + "rtt_ms": 1.592958, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.672720291Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:54.152238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180966, - "rtt_ms": 1.180966, + "rtt_ns": 1599792, + "rtt_ms": 1.599792, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:55.672845261Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:01:54.152247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433985, - "rtt_ms": 1.433985, + "rtt_ns": 1824333, + "rtt_ms": 1.824333, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "395", - "timestamp": "2025-11-27T01:21:55.67301724Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.15244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346735, - "rtt_ms": 1.346735, + "rtt_ns": 1171167, + "rtt_ms": 1.171167, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:55.67305308Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:54.153177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601355, - "rtt_ms": 1.601355, + "rtt_ns": 1178333, + "rtt_ms": 1.178333, "checkpoint": 0, "vertex_from": "100", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.673785648Z" + "timestamp": "2025-11-27T04:01:54.153192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065867, - "rtt_ms": 1.065867, + "rtt_ns": 1384291, + "rtt_ms": 1.384291, "checkpoint": 0, - "vertex_from": "101", - "vertex_to": "799", - "timestamp": "2025-11-27T01:21:55.673787678Z" + "vertex_from": "100", + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:54.153324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746044, - "rtt_ms": 1.746044, + "rtt_ns": 1730042, + "rtt_ms": 1.730042, "checkpoint": 0, "vertex_from": "100", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.673801928Z" + "timestamp": "2025-11-27T04:01:54.153558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653235, - "rtt_ms": 1.653235, + "rtt_ns": 1647625, + "rtt_ms": 1.647625, "checkpoint": 0, - "vertex_from": "100", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:55.673831328Z" + "vertex_from": "101", + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:54.153886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757464, - "rtt_ms": 1.757464, + "rtt_ns": 2220375, + "rtt_ms": 2.220375, "checkpoint": 0, "vertex_from": "100", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:55.673839638Z" + "vertex_to": "159", + "timestamp": "2025-11-27T04:01:54.154225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674425, - "rtt_ms": 1.674425, + "rtt_ns": 2014458, + "rtt_ms": 2.014458, "checkpoint": 0, - "vertex_from": "100", - "vertex_to": "159", - "timestamp": "2025-11-27T01:21:55.673852158Z" + "vertex_from": "101", + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.154265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941314, - "rtt_ms": 1.941314, + "rtt_ns": 2196333, + "rtt_ms": 2.196333, "checkpoint": 0, "vertex_from": "100", "vertex_to": "848", - "timestamp": "2025-11-27T01:21:55.674648245Z" + "timestamp": "2025-11-27T04:01:54.154318-08:00" }, { "operation": "add_edge", - "rtt_ns": 886627, - "rtt_ms": 0.886627, + "rtt_ns": 2135708, + "rtt_ms": 2.135708, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:55.674691355Z" + "vertex_to": "799", + "timestamp": "2025-11-27T04:01:54.154362-08:00" }, { "operation": "add_edge", - "rtt_ns": 931587, - "rtt_ms": 0.931587, + "rtt_ns": 1578791, + "rtt_ms": 1.578791, "checkpoint": 0, "vertex_from": "101", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.674720795Z" + "timestamp": "2025-11-27T04:01:54.154772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773954, - "rtt_ms": 1.773954, + "rtt_ns": 1996792, + "rtt_ms": 1.996792, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.674828384Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.155175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831404, - "rtt_ms": 1.831404, + "rtt_ns": 2072875, + "rtt_ms": 2.072875, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.674850404Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:54.155398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011686, - "rtt_ms": 1.011686, + "rtt_ns": 1535416, + "rtt_ms": 1.535416, "checkpoint": 0, "vertex_from": "101", "vertex_to": "650", - "timestamp": "2025-11-27T01:21:55.674852904Z" + "timestamp": "2025-11-27T04:01:54.155422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161826, - "rtt_ms": 1.161826, + "rtt_ns": 1410083, + "rtt_ms": 1.410083, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.674948754Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:54.155676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143583, - "rtt_ms": 2.143583, + "rtt_ns": 2133625, + "rtt_ms": 2.133625, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.674990934Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:54.155693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794954, - "rtt_ms": 1.794954, + "rtt_ns": 3297917, + "rtt_ms": 3.297917, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:55.675627542Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.155739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808133, - "rtt_ms": 1.808133, + "rtt_ns": 1528625, + "rtt_ms": 1.528625, "checkpoint": 0, "vertex_from": "101", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.675663171Z" + "timestamp": "2025-11-27T04:01:54.155755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322646, - "rtt_ms": 1.322646, + "rtt_ns": 1451792, + "rtt_ms": 1.451792, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "527", - "timestamp": "2025-11-27T01:21:55.675973141Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.15577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382095, - "rtt_ms": 1.382095, + "rtt_ns": 1496834, + "rtt_ms": 1.496834, "checkpoint": 0, "vertex_from": "101", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.67610358Z" + "timestamp": "2025-11-27T04:01:54.15586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433045, - "rtt_ms": 1.433045, + "rtt_ns": 1315625, + "rtt_ms": 1.315625, "checkpoint": 0, - "vertex_from": "101", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.67612526Z" + "vertex_from": "102", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.157086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307446, - "rtt_ms": 1.307446, + "rtt_ns": 1678459, + "rtt_ms": 1.678459, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "468", - "timestamp": "2025-11-27T01:21:55.67615979Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:54.157102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372716, - "rtt_ms": 1.372716, + "rtt_ns": 1468541, + "rtt_ms": 1.468541, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.67620286Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.157145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308766, - "rtt_ms": 1.308766, + "rtt_ns": 1850375, + "rtt_ms": 1.850375, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:55.67625881Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.15725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305455, - "rtt_ms": 1.305455, + "rtt_ns": 1570667, + "rtt_ms": 1.570667, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.676297189Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.157264-08:00" }, { "operation": "add_edge", - "rtt_ns": 706697, - "rtt_ms": 0.706697, + "rtt_ns": 2092500, + "rtt_ms": 2.0925, "checkpoint": 0, "vertex_from": "101", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.676335659Z" + "vertex_to": "468", + "timestamp": "2025-11-27T04:01:54.157268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484085, - "rtt_ms": 1.484085, + "rtt_ns": 1545292, + "rtt_ms": 1.545292, "checkpoint": 0, - "vertex_from": "101", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.676338309Z" + "vertex_from": "102", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.157285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079987, - "rtt_ms": 1.079987, + "rtt_ns": 1529916, + "rtt_ms": 1.529916, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.676744088Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:54.157285-08:00" }, { "operation": "add_edge", - "rtt_ns": 958437, - "rtt_ms": 0.958437, + "rtt_ns": 2526375, + "rtt_ms": 2.526375, "checkpoint": 0, - "vertex_from": "102", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:55.677084647Z" + "vertex_from": "101", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.157299-08:00" }, { "operation": "add_edge", - "rtt_ns": 982807, - "rtt_ms": 0.982807, + "rtt_ns": 1965083, + "rtt_ms": 1.965083, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.677087707Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:54.157826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275275, - "rtt_ms": 1.275275, + "rtt_ns": 1216958, + "rtt_ms": 1.216958, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.677249226Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.158486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571455, - "rtt_ms": 1.571455, + "rtt_ns": 1298958, + "rtt_ms": 1.298958, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.677775345Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.158585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652965, - "rtt_ms": 1.652965, + "rtt_ns": 1450584, + "rtt_ms": 1.450584, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:55.677813735Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.158596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549796, - "rtt_ms": 1.549796, + "rtt_ns": 1603542, + "rtt_ms": 1.603542, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:55.677848425Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:54.158691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512626, - "rtt_ms": 1.512626, + "rtt_ns": 1506375, + "rtt_ms": 1.506375, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.677849905Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.158806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317786, - "rtt_ms": 1.317786, + "rtt_ns": 1594833, + "rtt_ms": 1.594833, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.678063664Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:54.158848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865264, - "rtt_ms": 1.865264, + "rtt_ns": 1799583, + "rtt_ms": 1.799583, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.678125574Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:54.158902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800455, - "rtt_ms": 1.800455, + "rtt_ns": 1708791, + "rtt_ms": 1.708791, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.678140364Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.158974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277516, - "rtt_ms": 1.277516, + "rtt_ns": 1702167, + "rtt_ms": 1.702167, "checkpoint": 0, "vertex_from": "102", "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.678363323Z" + "timestamp": "2025-11-27T04:01:54.158988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138467, - "rtt_ms": 1.138467, + "rtt_ns": 1298250, + "rtt_ms": 1.29825, "checkpoint": 0, "vertex_from": "102", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.678389433Z" + "timestamp": "2025-11-27T04:01:54.159124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483575, - "rtt_ms": 1.483575, + "rtt_ns": 1543292, + "rtt_ms": 1.543292, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.678573102Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.16003-08:00" }, { "operation": "add_edge", - "rtt_ns": 885727, - "rtt_ms": 0.885727, + "rtt_ns": 1476750, + "rtt_ms": 1.47675, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.678662232Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.160073-08:00" }, { "operation": "add_edge", - "rtt_ns": 881457, - "rtt_ms": 0.881457, + "rtt_ns": 1317750, + "rtt_ms": 1.31775, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:55.678733712Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.160166-08:00" }, { "operation": "add_edge", - "rtt_ns": 962057, - "rtt_ms": 0.962057, + "rtt_ns": 1490667, + "rtt_ms": 1.490667, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:55.678777292Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:54.160182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001346, - "rtt_ms": 1.001346, + "rtt_ns": 1311334, + "rtt_ms": 1.311334, "checkpoint": 0, - "vertex_from": "102", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.678852951Z" + "vertex_from": "103", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.1603-08:00" }, { "operation": "add_edge", - "rtt_ns": 728217, - "rtt_ms": 0.728217, + "rtt_ns": 1369667, + "rtt_ms": 1.369667, "checkpoint": 0, "vertex_from": "103", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.678870301Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.160495-08:00" }, { "operation": "add_edge", - "rtt_ns": 760497, - "rtt_ms": 0.760497, + "rtt_ns": 1926000, + "rtt_ms": 1.926, "checkpoint": 0, "vertex_from": "102", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.678887421Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:54.160511-08:00" }, { "operation": "add_edge", - "rtt_ns": 557348, - "rtt_ms": 0.557348, + "rtt_ns": 1747583, + "rtt_ms": 1.747583, "checkpoint": 0, "vertex_from": "103", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.678922171Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:54.160651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330826, - "rtt_ms": 1.330826, + "rtt_ns": 2069500, + "rtt_ms": 2.0695, "checkpoint": 0, "vertex_from": "102", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.67939572Z" + "timestamp": "2025-11-27T04:01:54.160877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229756, - "rtt_ms": 1.229756, + "rtt_ns": 1298333, + "rtt_ms": 1.298333, "checkpoint": 0, - "vertex_from": "103", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.679619939Z" + "vertex_from": "104", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.161481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159067, - "rtt_ms": 1.159067, + "rtt_ns": 2536000, + "rtt_ms": 2.536, "checkpoint": 0, "vertex_from": "103", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.679733379Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.161511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761364, - "rtt_ms": 1.761364, + "rtt_ns": 1560500, + "rtt_ms": 1.5605, "checkpoint": 0, "vertex_from": "103", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.680424446Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.161635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764074, - "rtt_ms": 1.764074, + "rtt_ns": 1926834, + "rtt_ms": 1.926834, "checkpoint": 0, "vertex_from": "104", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.680542766Z" + "timestamp": "2025-11-27T04:01:54.162093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843204, - "rtt_ms": 1.843204, + "rtt_ns": 1833125, + "rtt_ms": 1.833125, "checkpoint": 0, - "vertex_from": "103", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.680579606Z" + "vertex_from": "104", + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.162134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187466, - "rtt_ms": 1.187466, + "rtt_ns": 1514917, + "rtt_ms": 1.514917, "checkpoint": 0, "vertex_from": "104", "vertex_to": "838", - "timestamp": "2025-11-27T01:21:55.680584556Z" + "timestamp": "2025-11-27T04:01:54.162167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682135, - "rtt_ms": 1.682135, + "rtt_ns": 1753208, + "rtt_ms": 1.753208, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:55.680606586Z" + "vertex_to": "220", + "timestamp": "2025-11-27T04:01:54.162249-08:00" }, { "operation": "add_edge", - "rtt_ns": 984437, - "rtt_ms": 0.984437, + "rtt_ns": 2235583, + "rtt_ms": 2.235583, "checkpoint": 0, - "vertex_from": "104", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.680607646Z" + "vertex_from": "103", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.162266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730535, - "rtt_ms": 1.730535, + "rtt_ns": 1760083, + "rtt_ms": 1.760083, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "220", - "timestamp": "2025-11-27T01:21:55.680620456Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:54.162272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109976, - "rtt_ms": 1.109976, + "rtt_ns": 1495000, + "rtt_ms": 1.495, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:55.680846075Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.162374-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028384, - "rtt_ms": 2.028384, + "rtt_ns": 1456625, + "rtt_ms": 1.456625, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.680882445Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:54.162939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103854, - "rtt_ms": 2.103854, + "rtt_ns": 886125, + "rtt_ms": 0.886125, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.680975265Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:54.162981-08:00" }, { "operation": "add_edge", - "rtt_ns": 686738, - "rtt_ms": 0.686738, + "rtt_ns": 1562417, + "rtt_ms": 1.562417, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.681230464Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:54.163074-08:00" }, { "operation": "add_edge", - "rtt_ns": 811808, - "rtt_ms": 0.811808, + "rtt_ns": 1981542, + "rtt_ms": 1.981542, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:55.681238194Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.163619-08:00" }, { "operation": "add_edge", - "rtt_ns": 660788, - "rtt_ms": 0.660788, + "rtt_ns": 1438208, + "rtt_ms": 1.438208, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.681246644Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.163689-08:00" }, { "operation": "add_edge", - "rtt_ns": 753947, - "rtt_ms": 0.753947, + "rtt_ns": 1458792, + "rtt_ms": 1.458792, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "920", - "timestamp": "2025-11-27T01:21:55.681377003Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:54.163834-08:00" }, { "operation": "add_edge", - "rtt_ns": 861577, - "rtt_ms": 0.861577, + "rtt_ns": 1682500, + "rtt_ms": 1.6825, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:55.681443513Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:54.16385-08:00" }, { "operation": "add_edge", - "rtt_ns": 885167, - "rtt_ms": 0.885167, + "rtt_ns": 1817167, + "rtt_ms": 1.817167, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:55.681494343Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.163952-08:00" }, { "operation": "add_edge", - "rtt_ns": 612718, - "rtt_ms": 0.612718, + "rtt_ns": 1691083, + "rtt_ms": 1.691083, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:55.681496273Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.163964-08:00" }, { "operation": "add_edge", - "rtt_ns": 913947, - "rtt_ms": 0.913947, + "rtt_ns": 1751125, + "rtt_ms": 1.751125, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.681524633Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:54.164023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043526, - "rtt_ms": 1.043526, + "rtt_ns": 1962584, + "rtt_ms": 1.962584, "checkpoint": 0, "vertex_from": "104", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.682020071Z" + "timestamp": "2025-11-27T04:01:54.164902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392816, - "rtt_ms": 1.392816, + "rtt_ns": 1599083, + "rtt_ms": 1.599083, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.682241191Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:54.16529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055286, - "rtt_ms": 1.055286, + "rtt_ns": 2472208, + "rtt_ms": 2.472208, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.68229445Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.165454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611695, - "rtt_ms": 1.611695, + "rtt_ns": 1853042, + "rtt_ms": 1.853042, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.682843519Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:54.165704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516995, - "rtt_ms": 1.516995, + "rtt_ns": 1756375, + "rtt_ms": 1.756375, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.682962048Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:54.165721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491505, - "rtt_ms": 1.491505, + "rtt_ns": 3152250, + "rtt_ms": 3.15225, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.682988768Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.166227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491145, - "rtt_ms": 1.491145, + "rtt_ns": 1439958, + "rtt_ms": 1.439958, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "565", - "timestamp": "2025-11-27T01:21:55.683017318Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:54.166344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527465, - "rtt_ms": 1.527465, + "rtt_ns": 2775083, + "rtt_ms": 2.775083, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.683022978Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:54.166397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064997, - "rtt_ms": 1.064997, + "rtt_ns": 2459584, + "rtt_ms": 2.459584, "checkpoint": 0, "vertex_from": "104", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.683086618Z" + "timestamp": "2025-11-27T04:01:54.166484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843784, - "rtt_ms": 1.843784, + "rtt_ns": 2566833, + "rtt_ms": 2.566833, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:55.683092388Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.166519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729105, - "rtt_ms": 1.729105, + "rtt_ns": 2729000, + "rtt_ms": 2.729, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.683108238Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:54.166564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131616, - "rtt_ms": 1.131616, + "rtt_ns": 1967542, + "rtt_ms": 1.967542, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:55.683976195Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:54.167258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033147, - "rtt_ms": 1.033147, + "rtt_ns": 2000042, + "rtt_ms": 2.000042, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:55.683996535Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:01:54.167722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020847, - "rtt_ms": 1.020847, + "rtt_ns": 2287584, + "rtt_ms": 2.287584, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "398", - "timestamp": "2025-11-27T01:21:55.684011065Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:54.167742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717305, - "rtt_ms": 1.717305, + "rtt_ns": 1413458, + "rtt_ms": 1.413458, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:55.684012895Z" + "vertex_to": "178", + "timestamp": "2025-11-27T04:01:54.167758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013477, - "rtt_ms": 1.013477, + "rtt_ns": 1483000, + "rtt_ms": 1.483, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.684031755Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:54.167881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066827, - "rtt_ms": 1.066827, + "rtt_ns": 1726042, + "rtt_ms": 1.726042, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "178", - "timestamp": "2025-11-27T01:21:55.684091175Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.167954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940713, - "rtt_ms": 1.940713, + "rtt_ns": 1475958, + "rtt_ms": 1.475958, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:55.684184414Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:54.16804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712434, - "rtt_ms": 1.712434, + "rtt_ns": 1606291, + "rtt_ms": 1.606291, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:55.684800162Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:54.168093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704194, - "rtt_ms": 1.704194, + "rtt_ns": 1579750, + "rtt_ms": 1.57975, "checkpoint": 0, "vertex_from": "104", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.684814582Z" + "timestamp": "2025-11-27T04:01:54.1681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730604, - "rtt_ms": 1.730604, + "rtt_ns": 2398125, + "rtt_ms": 2.398125, "checkpoint": 0, "vertex_from": "104", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:55.684824112Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:54.168102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587685, - "rtt_ms": 1.587685, + "rtt_ns": 1879292, + "rtt_ms": 1.879292, "checkpoint": 0, - "vertex_from": "105", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.686412647Z" + "vertex_from": "104", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.169139-08:00" }, { "operation": "add_edge", - "rtt_ns": 2320432, - "rtt_ms": 2.320432, + "rtt_ns": 1420541, + "rtt_ms": 1.420541, "checkpoint": 0, - "vertex_from": "105", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:55.686412977Z" + "vertex_from": "104", + "vertex_to": "113", + "timestamp": "2025-11-27T04:01:54.169144-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236433, - "rtt_ms": 2.236433, + "rtt_ns": 1542333, + "rtt_ms": 1.542333, "checkpoint": 0, - "vertex_from": "105", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.686421767Z" + "vertex_from": "104", + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.169286-08:00" }, { "operation": "add_edge", - "rtt_ns": 2444142, - "rtt_ms": 2.444142, + "rtt_ns": 1280959, + "rtt_ms": 1.280959, "checkpoint": 0, - "vertex_from": "104", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:55.686421787Z" + "vertex_from": "105", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.169322-08:00" }, { "operation": "add_edge", - "rtt_ns": 2429762, - "rtt_ms": 2.429762, + "rtt_ns": 1442291, + "rtt_ms": 1.442291, "checkpoint": 0, - "vertex_from": "104", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.686428127Z" + "vertex_from": "105", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.169397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2432002, - "rtt_ms": 2.432002, + "rtt_ns": 1299708, + "rtt_ms": 1.299708, "checkpoint": 0, - "vertex_from": "104", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.686446067Z" + "vertex_from": "105", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.169403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657795, - "rtt_ms": 1.657795, + "rtt_ns": 1317041, + "rtt_ms": 1.317041, "checkpoint": 0, "vertex_from": "105", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.686473627Z" + "timestamp": "2025-11-27T04:01:54.16941-08:00" }, { "operation": "add_edge", - "rtt_ns": 2460002, - "rtt_ms": 2.460002, + "rtt_ns": 1711542, + "rtt_ms": 1.711542, "checkpoint": 0, "vertex_from": "104", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.686493637Z" + "timestamp": "2025-11-27T04:01:54.169471-08:00" }, { "operation": "add_edge", - "rtt_ns": 2483052, - "rtt_ms": 2.483052, + "rtt_ns": 1370125, + "rtt_ms": 1.370125, "checkpoint": 0, - "vertex_from": "104", - "vertex_to": "113", - "timestamp": "2025-11-27T01:21:55.686495817Z" + "vertex_from": "105", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.169471-08:00" }, { "operation": "add_edge", - "rtt_ns": 2434622, - "rtt_ms": 2.434622, + "rtt_ns": 1710709, + "rtt_ms": 1.710709, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.687236374Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:54.169593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392795, - "rtt_ms": 1.392795, + "rtt_ns": 1097416, + "rtt_ms": 1.097416, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.687817032Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.17042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474475, - "rtt_ms": 1.474475, + "rtt_ns": 1273334, + "rtt_ms": 1.273334, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.687888582Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:54.17056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470905, - "rtt_ms": 1.470905, + "rtt_ns": 1262500, + "rtt_ms": 1.2625, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.687894522Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.170673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535175, - "rtt_ms": 1.535175, + "rtt_ns": 1581291, + "rtt_ms": 1.581291, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.687964932Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:54.170726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561295, - "rtt_ms": 1.561295, + "rtt_ns": 1597458, + "rtt_ms": 1.597458, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "406", - "timestamp": "2025-11-27T01:21:55.688011302Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:54.170737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954113, - "rtt_ms": 1.954113, + "rtt_ns": 1341959, + "rtt_ms": 1.341959, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.68836873Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.170813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912963, - "rtt_ms": 1.912963, + "rtt_ns": 1424208, + "rtt_ms": 1.424208, "checkpoint": 0, "vertex_from": "105", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.68838772Z" + "timestamp": "2025-11-27T04:01:54.170828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2004333, - "rtt_ms": 2.004333, + "rtt_ns": 1435792, + "rtt_ms": 1.435792, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.68849951Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:54.170833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296896, - "rtt_ms": 1.296896, + "rtt_ns": 1478042, + "rtt_ms": 1.478042, "checkpoint": 0, "vertex_from": "105", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.68853537Z" + "timestamp": "2025-11-27T04:01:54.170949-08:00" }, { "operation": "add_edge", - "rtt_ns": 2198862, - "rtt_ms": 2.198862, + "rtt_ns": 1372125, + "rtt_ms": 1.372125, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.688695839Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.170968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472045, - "rtt_ms": 1.472045, + "rtt_ns": 1476250, + "rtt_ms": 1.47625, "checkpoint": 0, "vertex_from": "105", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.689367577Z" + "timestamp": "2025-11-27T04:01:54.172044-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1506458, + "rtt_ms": 1.506458, + "checkpoint": 0, + "vertex_from": "105", + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:54.172181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517265, - "rtt_ms": 1.517265, + "rtt_ns": 1765459, + "rtt_ms": 1.765459, "checkpoint": 0, "vertex_from": "105", "vertex_to": "610", - "timestamp": "2025-11-27T01:21:55.689407017Z" + "timestamp": "2025-11-27T04:01:54.172186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609775, - "rtt_ms": 1.609775, + "rtt_ns": 1462375, + "rtt_ms": 1.462375, "checkpoint": 0, "vertex_from": "105", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.689427997Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.1722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132267, - "rtt_ms": 1.132267, + "rtt_ns": 1375916, + "rtt_ms": 1.375916, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.690502504Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.172205-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834655, - "rtt_ms": 1.834655, + "rtt_ns": 1383375, + "rtt_ms": 1.383375, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.690531694Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.172217-08:00" }, { "operation": "add_edge", - "rtt_ns": 2150764, - "rtt_ms": 2.150764, + "rtt_ns": 1406250, + "rtt_ms": 1.40625, "checkpoint": 0, "vertex_from": "105", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.690539744Z" + "timestamp": "2025-11-27T04:01:54.17222-08:00" }, { "operation": "add_edge", - "rtt_ns": 2581581, - "rtt_ms": 2.581581, + "rtt_ns": 1700000, + "rtt_ms": 1.7, "checkpoint": 0, "vertex_from": "105", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.690594033Z" + "timestamp": "2025-11-27T04:01:54.172427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257406, - "rtt_ms": 1.257406, + "rtt_ns": 1606833, + "rtt_ms": 1.606833, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.690686493Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2335983, - "rtt_ms": 2.335983, - "checkpoint": 0, - "vertex_from": "105", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.690706493Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.172557-08:00" }, { "operation": "add_edge", - "rtt_ns": 2752701, - "rtt_ms": 2.752701, + "rtt_ns": 1606583, + "rtt_ms": 1.606583, "checkpoint": 0, - "vertex_from": "105", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:55.690719903Z" + "vertex_from": "106", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.172575-08:00" }, { "operation": "add_edge", - "rtt_ns": 2218863, - "rtt_ms": 2.218863, + "rtt_ns": 1390417, + "rtt_ms": 1.390417, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.690719943Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:54.173614-08:00" }, { "operation": "add_edge", - "rtt_ns": 2604762, - "rtt_ms": 2.604762, + "rtt_ns": 1290583, + "rtt_ms": 1.290583, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.691141272Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.173866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897624, - "rtt_ms": 1.897624, + "rtt_ns": 1822083, + "rtt_ms": 1.822083, "checkpoint": 0, "vertex_from": "106", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.691305581Z" + "timestamp": "2025-11-27T04:01:54.173866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147106, - "rtt_ms": 1.147106, + "rtt_ns": 1678875, + "rtt_ms": 1.678875, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.69165512Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.173884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731375, - "rtt_ms": 1.731375, + "rtt_ns": 1668375, + "rtt_ms": 1.668375, "checkpoint": 0, "vertex_from": "106", "vertex_to": "936", - "timestamp": "2025-11-27T01:21:55.692327108Z" + "timestamp": "2025-11-27T04:01:54.173886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190916, - "rtt_ms": 1.190916, + "rtt_ns": 1700041, + "rtt_ms": 1.700041, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:55.692333708Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.173901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628545, - "rtt_ms": 1.628545, + "rtt_ns": 1719750, + "rtt_ms": 1.71975, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.692349988Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.173903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639055, - "rtt_ms": 1.639055, + "rtt_ns": 1410209, + "rtt_ms": 1.410209, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.692361198Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.173968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832034, - "rtt_ms": 1.832034, + "rtt_ns": 1603167, + "rtt_ms": 1.603167, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.692365648Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:54.174031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696435, - "rtt_ms": 1.696435, + "rtt_ns": 1932459, + "rtt_ms": 1.932459, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:55.692385188Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.17412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762264, - "rtt_ms": 1.762264, + "rtt_ns": 1857875, + "rtt_ms": 1.857875, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:55.692470817Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:54.175474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180036, - "rtt_ms": 1.180036, + "rtt_ns": 1588917, + "rtt_ms": 1.588917, "checkpoint": 0, - "vertex_from": "106", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.692486837Z" + "vertex_from": "107", + "vertex_to": "157", + "timestamp": "2025-11-27T04:01:54.175493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2135553, - "rtt_ms": 2.135553, + "rtt_ns": 1974375, + "rtt_ms": 1.974375, "checkpoint": 0, "vertex_from": "106", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.692677247Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.175841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099396, - "rtt_ms": 1.099396, + "rtt_ns": 1972166, + "rtt_ms": 1.972166, "checkpoint": 0, "vertex_from": "106", "vertex_to": "154", - "timestamp": "2025-11-27T01:21:55.693427614Z" + "timestamp": "2025-11-27T04:01:54.175857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115216, - "rtt_ms": 1.115216, + "rtt_ns": 1903208, + "rtt_ms": 1.903208, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "964", - "timestamp": "2025-11-27T01:21:55.693451994Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:54.175872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801504, - "rtt_ms": 1.801504, + "rtt_ns": 2032250, + "rtt_ms": 2.03225, "checkpoint": 0, "vertex_from": "106", "vertex_to": "134", - "timestamp": "2025-11-27T01:21:55.693457974Z" + "timestamp": "2025-11-27T04:01:54.175899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324176, - "rtt_ms": 1.324176, + "rtt_ns": 2026500, + "rtt_ms": 2.0265, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:55.693691834Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.175928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319426, - "rtt_ms": 1.319426, + "rtt_ns": 1956625, + "rtt_ms": 1.956625, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:55.693705654Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.176077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900664, - "rtt_ms": 1.900664, + "rtt_ns": 1179250, + "rtt_ms": 1.17925, "checkpoint": 0, - "vertex_from": "107", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.694388611Z" + "vertex_from": "108", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.177051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047597, - "rtt_ms": 1.047597, + "rtt_ns": 1140750, + "rtt_ms": 1.14075, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.694477521Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:54.17707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147303, - "rtt_ms": 2.147303, + "rtt_ns": 3309417, + "rtt_ms": 3.309417, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "157", - "timestamp": "2025-11-27T01:21:55.694509831Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1094537, - "rtt_ms": 1.094537, - "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.694548091Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:01:54.177196-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097744, - "rtt_ms": 2.097744, + "rtt_ns": 1711167, + "rtt_ms": 1.711167, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.694570321Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.177205-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250913, - "rtt_ms": 2.250913, + "rtt_ns": 1177625, + "rtt_ms": 1.177625, "checkpoint": 0, - "vertex_from": "107", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.694603371Z" + "vertex_from": "108", + "vertex_to": "182", + "timestamp": "2025-11-27T04:01:54.177255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169727, - "rtt_ms": 1.169727, + "rtt_ns": 1633000, + "rtt_ms": 1.633, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.694633461Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.177475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960574, - "rtt_ms": 1.960574, + "rtt_ns": 2066917, + "rtt_ms": 2.066917, "checkpoint": 0, "vertex_from": "107", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.694638831Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.177542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923453, - "rtt_ms": 1.923453, + "rtt_ns": 1719834, + "rtt_ms": 1.719834, "checkpoint": 0, "vertex_from": "108", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.695619107Z" + "timestamp": "2025-11-27T04:01:54.17762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931973, - "rtt_ms": 1.931973, + "rtt_ns": 3767459, + "rtt_ms": 3.767459, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:55.695639027Z" + "vertex_from": "107", + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:54.177799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272376, - "rtt_ms": 1.272376, + "rtt_ns": 2495209, + "rtt_ms": 2.495209, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "182", - "timestamp": "2025-11-27T01:21:55.695662417Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.178353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200776, - "rtt_ms": 1.200776, + "rtt_ns": 1231125, + "rtt_ms": 1.231125, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "271", - "timestamp": "2025-11-27T01:21:55.695712727Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.178429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242026, - "rtt_ms": 1.242026, + "rtt_ns": 1238583, + "rtt_ms": 1.238583, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.695720407Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:54.178495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600705, - "rtt_ms": 1.600705, + "rtt_ns": 1349333, + "rtt_ms": 1.349333, "checkpoint": 0, "vertex_from": "108", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.696172906Z" + "timestamp": "2025-11-27T04:01:54.178558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604764, - "rtt_ms": 1.604764, + "rtt_ns": 1658750, + "rtt_ms": 1.65875, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "179", - "timestamp": "2025-11-27T01:21:55.696242295Z" + "vertex_to": "271", + "timestamp": "2025-11-27T04:01:54.178729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729644, - "rtt_ms": 1.729644, + "rtt_ns": 1324292, + "rtt_ms": 1.324292, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.696278945Z" + "vertex_to": "179", + "timestamp": "2025-11-27T04:01:54.1788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671554, - "rtt_ms": 1.671554, + "rtt_ns": 1286375, + "rtt_ms": 1.286375, "checkpoint": 0, "vertex_from": "108", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.696312085Z" + "timestamp": "2025-11-27T04:01:54.178829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713274, - "rtt_ms": 1.713274, + "rtt_ns": 1175833, + "rtt_ms": 1.175833, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.696317855Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.178976-08:00" }, { "operation": "add_edge", - "rtt_ns": 716338, - "rtt_ms": 0.716338, + "rtt_ns": 1395875, + "rtt_ms": 1.395875, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.696356695Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:54.179017-08:00" }, { "operation": "add_edge", - "rtt_ns": 708518, - "rtt_ms": 0.708518, + "rtt_ns": 1174959, + "rtt_ms": 1.174959, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.696422395Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.179671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449836, - "rtt_ms": 1.449836, + "rtt_ns": 2636833, + "rtt_ms": 2.636833, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:55.697070513Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.179689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497995, - "rtt_ms": 1.497995, + "rtt_ns": 1445041, + "rtt_ms": 1.445041, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.697220392Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 885877, - "rtt_ms": 0.885877, - "checkpoint": 0, - "vertex_from": "109", - "timestamp": "2025-11-27T01:21:55.697245732Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.179799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823504, - "rtt_ms": 1.823504, + "rtt_ns": 1394916, + "rtt_ms": 1.394916, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.697487451Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.179826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883123, - "rtt_ms": 1.883123, + "rtt_ns": 1342208, + "rtt_ms": 1.342208, "checkpoint": 0, "vertex_from": "108", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:55.698057229Z" + "timestamp": "2025-11-27T04:01:54.179902-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1083516, - "rtt_ms": 1.083516, + "operation": "add_edge", + "rtt_ns": 1268042, + "rtt_ms": 1.268042, "checkpoint": 0, - "vertex_from": "109", - "timestamp": "2025-11-27T01:21:55.698158019Z" + "vertex_from": "108", + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.179998-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 976607, - "rtt_ms": 0.976607, + "operation": "add_edge", + "rtt_ns": 1084625, + "rtt_ms": 1.084625, "checkpoint": 0, - "vertex_from": "109", - "timestamp": "2025-11-27T01:21:55.698198589Z" + "vertex_from": "108", + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.180061-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001264, - "rtt_ms": 2.001264, + "rtt_ns": 1249500, + "rtt_ms": 1.2495, "checkpoint": 0, "vertex_from": "108", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.698244929Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.18008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042187, - "rtt_ms": 1.042187, + "rtt_ns": 1383875, + "rtt_ms": 1.383875, "checkpoint": 0, - "vertex_from": "109", - "vertex_to": "597", - "timestamp": "2025-11-27T01:21:55.698289119Z" + "vertex_from": "108", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.180185-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1874023, - "rtt_ms": 1.874023, + "rtt_ns": 1620000, + "rtt_ms": 1.62, "checkpoint": 0, "vertex_from": "109", - "timestamp": "2025-11-27T01:21:55.698298008Z" + "timestamp": "2025-11-27T04:01:54.181294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2367622, - "rtt_ms": 2.367622, + "rtt_ns": 1252334, + "rtt_ms": 1.252334, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.698687587Z" + "vertex_from": "110", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.181314-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2437422, - "rtt_ms": 2.437422, + "operation": "add_vertex", + "rtt_ns": 1716584, + "rtt_ms": 1.716584, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.698719377Z" + "vertex_from": "109", + "timestamp": "2025-11-27T04:01:54.181516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2410052, - "rtt_ms": 2.410052, + "rtt_ns": 1536458, + "rtt_ms": 1.536458, "checkpoint": 0, - "vertex_from": "108", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.698723747Z" + "vertex_from": "110", + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.181536-08:00" }, { - "operation": "add_edge", - "rtt_ns": 782937, - "rtt_ms": 0.782937, + "operation": "add_vertex", + "rtt_ns": 1725125, + "rtt_ms": 1.725125, "checkpoint": 0, "vertex_from": "109", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.698943136Z" + "timestamp": "2025-11-27T04:01:54.181552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507995, - "rtt_ms": 1.507995, + "rtt_ns": 1576208, + "rtt_ms": 1.576208, "checkpoint": 0, - "vertex_from": "109", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.698996486Z" + "vertex_from": "110", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.181657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251236, - "rtt_ms": 1.251236, + "rtt_ns": 1486875, + "rtt_ms": 1.486875, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:55.699310315Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:54.181673-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1067457, - "rtt_ms": 1.067457, + "operation": "add_vertex", + "rtt_ns": 2706458, + "rtt_ms": 2.706458, "checkpoint": 0, "vertex_from": "109", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:55.699366465Z" + "timestamp": "2025-11-27T04:01:54.181724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229335, - "rtt_ms": 1.229335, + "rtt_ns": 1826834, + "rtt_ms": 1.826834, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.699520444Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:54.181732-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1663224, - "rtt_ms": 1.663224, + "operation": "add_vertex", + "rtt_ns": 2542834, + "rtt_ms": 2.542834, "checkpoint": 0, "vertex_from": "109", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:55.699863283Z" + "timestamp": "2025-11-27T04:01:54.182233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675224, - "rtt_ms": 1.675224, + "rtt_ns": 1938417, + "rtt_ms": 1.938417, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.699922693Z" + "vertex_from": "109", + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.183491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514275, - "rtt_ms": 1.514275, + "rtt_ns": 2108208, + "rtt_ms": 2.108208, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.700236882Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:54.183645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547025, - "rtt_ms": 1.547025, + "rtt_ns": 2403875, + "rtt_ms": 2.403875, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.700237172Z" + "vertex_from": "109", + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:54.183699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535855, - "rtt_ms": 1.535855, + "rtt_ns": 2061500, + "rtt_ms": 2.0615, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:55.700261172Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.183719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830924, - "rtt_ms": 1.830924, + "rtt_ns": 2253416, + "rtt_ms": 2.253416, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:55.70077544Z" + "vertex_from": "109", + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:54.18377-08:00" }, { "operation": "add_edge", - "rtt_ns": 779267, - "rtt_ms": 0.779267, + "rtt_ns": 2508708, + "rtt_ms": 2.508708, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:55.701692447Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:54.183824-08:00" }, { "operation": "add_edge", - "rtt_ns": 980567, - "rtt_ms": 0.980567, + "rtt_ns": 2150208, + "rtt_ms": 2.150208, "checkpoint": 0, - "vertex_from": "110", + "vertex_from": "109", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.701877527Z" + "timestamp": "2025-11-27T04:01:54.184512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278476, - "rtt_ms": 1.278476, + "rtt_ns": 2081666, + "rtt_ms": 2.081666, "checkpoint": 0, "vertex_from": "110", "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.702248886Z" + "timestamp": "2025-11-27T04:01:54.184535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167446, - "rtt_ms": 1.167446, + "rtt_ns": 2253000, + "rtt_ms": 2.253, "checkpoint": 0, - "vertex_from": "111", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.702431185Z" + "vertex_from": "109", + "vertex_to": "597", + "timestamp": "2025-11-27T04:01:54.184585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244076, - "rtt_ms": 1.244076, + "rtt_ns": 2392291, + "rtt_ms": 2.392291, "checkpoint": 0, - "vertex_from": "111", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.702535935Z" + "vertex_from": "110", + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:54.184708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351496, - "rtt_ms": 1.351496, + "rtt_ns": 1381209, + "rtt_ms": 1.381209, "checkpoint": 0, "vertex_from": "110", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.702543295Z" + "timestamp": "2025-11-27T04:01:54.184877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389856, - "rtt_ms": 1.389856, + "rtt_ns": 1128042, + "rtt_ms": 1.128042, "checkpoint": 0, - "vertex_from": "110", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.702606675Z" + "vertex_from": "111", + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:54.1849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385196, - "rtt_ms": 1.385196, + "rtt_ns": 1268500, + "rtt_ms": 1.2685, "checkpoint": 0, "vertex_from": "110", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.702620035Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.184916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400885, - "rtt_ms": 1.400885, + "rtt_ns": 1256500, + "rtt_ms": 1.2565, "checkpoint": 0, "vertex_from": "111", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.702638424Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.185083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453545, - "rtt_ms": 1.453545, + "rtt_ns": 1374667, + "rtt_ms": 1.374667, "checkpoint": 0, "vertex_from": "111", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:55.702710474Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.185096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688895, - "rtt_ms": 1.688895, + "rtt_ns": 1659833, + "rtt_ms": 1.659833, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.703384252Z" + "vertex_from": "110", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.185361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628875, - "rtt_ms": 1.628875, + "rtt_ns": 1704208, + "rtt_ms": 1.704208, "checkpoint": 0, - "vertex_from": "112", + "vertex_from": "111", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.703507572Z" + "timestamp": "2025-11-27T04:01:54.186217-08:00" }, { "operation": "add_edge", - "rtt_ns": 927067, - "rtt_ms": 0.927067, + "rtt_ns": 1358542, + "rtt_ms": 1.358542, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.703535152Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.186275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309406, - "rtt_ms": 1.309406, + "rtt_ns": 1444584, + "rtt_ms": 1.444584, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "206", - "timestamp": "2025-11-27T01:21:55.703561692Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:54.186322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051656, - "rtt_ms": 1.051656, + "rtt_ns": 1787625, + "rtt_ms": 1.787625, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "346", - "timestamp": "2025-11-27T01:21:55.703589331Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.186373-08:00" }, { "operation": "add_edge", - "rtt_ns": 998247, - "rtt_ms": 0.998247, + "rtt_ns": 1910292, + "rtt_ms": 1.910292, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:55.704506979Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.186446-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100173, - "rtt_ms": 2.100173, + "rtt_ns": 1363083, + "rtt_ms": 1.363083, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.704532928Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:54.186462-08:00" }, { "operation": "add_edge", - "rtt_ns": 952067, - "rtt_ms": 0.952067, + "rtt_ns": 1577833, + "rtt_ms": 1.577833, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.704542668Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:01:54.186478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180986, - "rtt_ms": 1.180986, + "rtt_ns": 1771792, + "rtt_ms": 1.771792, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.704566248Z" + "vertex_to": "206", + "timestamp": "2025-11-27T04:01:54.18648-08:00" }, { "operation": "add_edge", - "rtt_ns": 2030603, - "rtt_ms": 2.030603, + "rtt_ns": 1423333, + "rtt_ms": 1.423333, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.704576008Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:54.186509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988373, - "rtt_ms": 1.988373, + "rtt_ns": 1721042, + "rtt_ms": 1.721042, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:55.704610118Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:54.187083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137216, - "rtt_ms": 1.137216, + "rtt_ns": 1198875, + "rtt_ms": 1.198875, "checkpoint": 0, "vertex_from": "112", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.704673288Z" + "timestamp": "2025-11-27T04:01:54.187574-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054934, - "rtt_ms": 2.054934, + "rtt_ns": 1371708, + "rtt_ms": 1.371708, "checkpoint": 0, "vertex_from": "112", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.704766698Z" + "timestamp": "2025-11-27T04:01:54.187591-08:00" }, { "operation": "add_edge", - "rtt_ns": 2167754, - "rtt_ms": 2.167754, + "rtt_ns": 1456500, + "rtt_ms": 1.4565, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:55.704808358Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.187732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280065, - "rtt_ms": 1.280065, + "rtt_ns": 1504917, + "rtt_ms": 1.504917, "checkpoint": 0, "vertex_from": "112", "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.704842587Z" + "timestamp": "2025-11-27T04:01:54.187952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047377, - "rtt_ms": 1.047377, + "rtt_ns": 1445292, + "rtt_ms": 1.445292, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.705582025Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:54.187955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091656, - "rtt_ms": 1.091656, + "rtt_ns": 1503042, + "rtt_ms": 1.503042, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.705600345Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:54.187967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323956, - "rtt_ms": 1.323956, + "rtt_ns": 1541292, + "rtt_ms": 1.541292, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:55.705868244Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.188022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389746, - "rtt_ms": 1.389746, + "rtt_ns": 2070292, + "rtt_ms": 2.070292, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.706066104Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.18855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554165, - "rtt_ms": 1.554165, + "rtt_ns": 1723417, + "rtt_ms": 1.723417, "checkpoint": 0, "vertex_from": "112", "vertex_to": "430", - "timestamp": "2025-11-27T01:21:55.706122253Z" + "timestamp": "2025-11-27T04:01:54.188808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574185, - "rtt_ms": 1.574185, + "rtt_ns": 1235000, + "rtt_ms": 1.235, "checkpoint": 0, "vertex_from": "112", "vertex_to": "158", - "timestamp": "2025-11-27T01:21:55.706186253Z" + "timestamp": "2025-11-27T04:01:54.188827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634735, - "rtt_ms": 1.634735, + "rtt_ns": 1267041, + "rtt_ms": 1.267041, "checkpoint": 0, "vertex_from": "112", "vertex_to": "658", - "timestamp": "2025-11-27T01:21:55.706213633Z" + "timestamp": "2025-11-27T04:01:54.188842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455185, - "rtt_ms": 1.455185, + "rtt_ns": 2639375, + "rtt_ms": 2.639375, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:55.706264933Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:54.188963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590375, - "rtt_ms": 1.590375, + "rtt_ns": 1041709, + "rtt_ms": 1.041709, "checkpoint": 0, "vertex_from": "112", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.706358923Z" + "timestamp": "2025-11-27T04:01:54.188994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534236, - "rtt_ms": 1.534236, + "rtt_ns": 1318125, + "rtt_ms": 1.318125, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:55.706378263Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.189051-08:00" }, { "operation": "add_edge", - "rtt_ns": 841077, - "rtt_ms": 0.841077, + "rtt_ns": 1934750, + "rtt_ms": 1.93475, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:55.706443152Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:54.18989-08:00" }, { "operation": "add_edge", - "rtt_ns": 873377, - "rtt_ms": 0.873377, + "rtt_ns": 2178625, + "rtt_ms": 2.178625, "checkpoint": 0, "vertex_from": "112", "vertex_to": "775", - "timestamp": "2025-11-27T01:21:55.706457382Z" + "timestamp": "2025-11-27T04:01:54.190202-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 897508, - "rtt_ms": 0.897508, + "operation": "add_edge", + "rtt_ns": 1666417, + "rtt_ms": 1.666417, "checkpoint": 0, - "vertex_from": "974", - "timestamp": "2025-11-27T01:21:55.707025511Z" + "vertex_from": "112", + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:54.190219-08:00" }, { "operation": "add_edge", - "rtt_ns": 984006, - "rtt_ms": 0.984006, + "rtt_ns": 1692917, + "rtt_ms": 1.692917, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:55.70705146Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.190745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210966, - "rtt_ms": 1.210966, + "rtt_ns": 2088583, + "rtt_ms": 2.088583, "checkpoint": 0, "vertex_from": "112", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.70708005Z" + "timestamp": "2025-11-27T04:01:54.190899-08:00" }, { "operation": "add_edge", - "rtt_ns": 961207, - "rtt_ms": 0.961207, + "rtt_ns": 2941875, + "rtt_ms": 2.941875, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.70714843Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:54.19091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555845, - "rtt_ms": 1.555845, + "rtt_ns": 2082166, + "rtt_ms": 2.082166, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.707770898Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:54.19091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700764, - "rtt_ms": 1.700764, + "rtt_ns": 2137583, + "rtt_ms": 2.137583, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:55.708080887Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.191103-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2316208, + "rtt_ms": 2.316208, + "checkpoint": 0, + "vertex_from": "974", + "timestamp": "2025-11-27T04:01:54.191161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643655, - "rtt_ms": 1.643655, + "rtt_ns": 1211208, + "rtt_ms": 1.211208, "checkpoint": 0, "vertex_from": "112", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.708088137Z" + "timestamp": "2025-11-27T04:01:54.191431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850584, - "rtt_ms": 1.850584, + "rtt_ns": 3083458, + "rtt_ms": 3.083458, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "614", - "timestamp": "2025-11-27T01:21:55.708213297Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.192079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988324, - "rtt_ms": 1.988324, + "rtt_ns": 2278000, + "rtt_ms": 2.278, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.708254597Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:01:54.192169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292376, - "rtt_ms": 1.292376, + "rtt_ns": 1135667, + "rtt_ms": 1.135667, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.708345666Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.192239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435355, - "rtt_ms": 1.435355, + "rtt_ns": 1505125, + "rtt_ms": 1.505125, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "974", - "timestamp": "2025-11-27T01:21:55.708461406Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:54.192251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477726, - "rtt_ms": 1.477726, + "rtt_ns": 1524583, + "rtt_ms": 1.524583, "checkpoint": 0, "vertex_from": "112", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.708558926Z" + "timestamp": "2025-11-27T04:01:54.192435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122193, - "rtt_ms": 2.122193, + "rtt_ns": 2387792, + "rtt_ms": 2.387792, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.708582325Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:54.192591-08:00" }, { "operation": "add_edge", - "rtt_ns": 809457, - "rtt_ms": 0.809457, + "rtt_ns": 1774958, + "rtt_ms": 1.774958, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.708582485Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:54.192686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443765, - "rtt_ms": 1.443765, + "rtt_ns": 2043208, + "rtt_ms": 2.043208, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.708594245Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:54.192945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068596, - "rtt_ms": 1.068596, + "rtt_ns": 1656083, + "rtt_ms": 1.656083, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "134", - "timestamp": "2025-11-27T01:21:55.709325783Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:54.193089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271396, - "rtt_ms": 1.271396, + "rtt_ns": 1979166, + "rtt_ms": 1.979166, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:55.709362183Z" + "vertex_to": "974", + "timestamp": "2025-11-27T04:01:54.193141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290725, - "rtt_ms": 1.290725, + "rtt_ns": 1017666, + "rtt_ms": 1.017666, "checkpoint": 0, "vertex_from": "112", "vertex_to": "450", - "timestamp": "2025-11-27T01:21:55.709506062Z" + "timestamp": "2025-11-27T04:01:54.193188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445475, - "rtt_ms": 1.445475, + "rtt_ns": 1306958, + "rtt_ms": 1.306958, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:55.709527662Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:54.193387-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2022833, + "rtt_ms": 2.022833, + "checkpoint": 0, + "vertex_from": "112", + "vertex_to": "134", + "timestamp": "2025-11-27T04:01:54.194264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229676, - "rtt_ms": 1.229676, + "rtt_ns": 2049042, + "rtt_ms": 2.049042, "checkpoint": 0, "vertex_from": "112", "vertex_to": "299", - "timestamp": "2025-11-27T01:21:55.709576502Z" + "timestamp": "2025-11-27T04:01:54.194301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113467, - "rtt_ms": 1.113467, + "rtt_ns": 1229084, + "rtt_ms": 1.229084, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:55.709697802Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.19432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627214, - "rtt_ms": 1.627214, + "rtt_ns": 1890333, + "rtt_ms": 1.890333, "checkpoint": 0, "vertex_from": "112", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.71009087Z" + "timestamp": "2025-11-27T04:01:54.194326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665754, - "rtt_ms": 1.665754, + "rtt_ns": 1822000, + "rtt_ms": 1.822, "checkpoint": 0, "vertex_from": "112", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.71022662Z" + "timestamp": "2025-11-27T04:01:54.194415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669945, - "rtt_ms": 1.669945, + "rtt_ns": 1536709, + "rtt_ms": 1.536709, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.71026541Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:54.194484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693435, - "rtt_ms": 1.693435, + "rtt_ns": 1879833, + "rtt_ms": 1.879833, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:55.71027931Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:54.19507-08:00" }, { "operation": "add_edge", - "rtt_ns": 2173803, - "rtt_ms": 2.173803, + "rtt_ns": 1760083, + "rtt_ms": 1.760083, "checkpoint": 0, "vertex_from": "112", "vertex_to": "140", - "timestamp": "2025-11-27T01:21:55.711681455Z" + "timestamp": "2025-11-27T04:01:54.195149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2281762, - "rtt_ms": 2.281762, + "rtt_ns": 2035833, + "rtt_ms": 2.035833, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:55.711860784Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.195178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651884, - "rtt_ms": 1.651884, + "rtt_ns": 2525334, + "rtt_ms": 2.525334, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:55.711933274Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:54.195213-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268102, - "rtt_ms": 2.268102, + "rtt_ns": 1868125, + "rtt_ms": 1.868125, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "116", - "timestamp": "2025-11-27T01:21:55.711968504Z" + "vertex_to": "737", + "timestamp": "2025-11-27T04:01:54.196284-08:00" }, { "operation": "add_edge", - "rtt_ns": 2455552, - "rtt_ms": 2.455552, + "rtt_ns": 1998458, + "rtt_ms": 1.998458, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:55.711984454Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:54.1963-08:00" }, { "operation": "add_edge", - "rtt_ns": 2626591, - "rtt_ms": 2.626591, + "rtt_ns": 2191209, + "rtt_ms": 2.191209, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:55.711991994Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.196518-08:00" }, { "operation": "add_edge", - "rtt_ns": 2704711, - "rtt_ms": 2.704711, + "rtt_ns": 2213083, + "rtt_ms": 2.213083, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.712031864Z" + "vertex_to": "116", + "timestamp": "2025-11-27T04:01:54.196534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867064, - "rtt_ms": 1.867064, + "rtt_ns": 2064666, + "rtt_ms": 2.064666, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "737", - "timestamp": "2025-11-27T01:21:55.712095304Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:01:54.196549-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165013, - "rtt_ms": 2.165013, + "rtt_ns": 1514292, + "rtt_ms": 1.514292, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.712257283Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:54.196585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099953, - "rtt_ms": 2.099953, + "rtt_ns": 1442292, + "rtt_ms": 1.442292, "checkpoint": 0, "vertex_from": "112", - "vertex_to": "710", - "timestamp": "2025-11-27T01:21:55.712368023Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.196593-08:00" }, { "operation": "add_edge", - "rtt_ns": 917347, - "rtt_ms": 0.917347, + "rtt_ns": 2336167, + "rtt_ms": 2.336167, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:55.712904571Z" + "vertex_from": "112", + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:54.196602-08:00" }, { "operation": "add_edge", - "rtt_ns": 954807, - "rtt_ms": 0.954807, + "rtt_ns": 1393875, + "rtt_ms": 1.393875, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.712988851Z" + "vertex_from": "112", + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.196608-08:00" }, { "operation": "add_edge", - "rtt_ns": 894247, - "rtt_ms": 0.894247, + "rtt_ns": 1509667, + "rtt_ms": 1.509667, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.712992791Z" + "vertex_from": "112", + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.196689-08:00" }, { "operation": "add_edge", - "rtt_ns": 736098, - "rtt_ms": 0.736098, + "rtt_ns": 1311875, + "rtt_ms": 1.311875, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.712995461Z" + "vertex_from": "112", + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:54.197597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064557, - "rtt_ms": 1.064557, + "rtt_ns": 1422666, + "rtt_ms": 1.422666, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:55.713059311Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:54.197724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354766, - "rtt_ms": 1.354766, + "rtt_ns": 1333083, + "rtt_ms": 1.333083, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.713724769Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.197868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885555, - "rtt_ms": 1.885555, + "rtt_ns": 1897584, + "rtt_ms": 1.897584, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.713748099Z" + "vertex_from": "113", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.198587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858134, - "rtt_ms": 1.858134, + "rtt_ns": 2147167, + "rtt_ms": 2.147167, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:55.713828378Z" + "vertex_from": "113", + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:54.198666-08:00" }, { "operation": "add_edge", - "rtt_ns": 2247963, - "rtt_ms": 2.247963, + "rtt_ns": 2075791, + "rtt_ms": 2.075791, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.713931678Z" + "vertex_from": "113", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.198684-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037034, - "rtt_ms": 2.037034, + "rtt_ns": 2150208, + "rtt_ms": 2.150208, "checkpoint": 0, - "vertex_from": "112", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.713972038Z" + "vertex_from": "113", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.1987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784905, - "rtt_ms": 1.784905, + "rtt_ns": 2128584, + "rtt_ms": 2.128584, "checkpoint": 0, "vertex_from": "113", "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.714691236Z" + "timestamp": "2025-11-27T04:01:54.198731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918784, - "rtt_ms": 1.918784, + "rtt_ns": 2355458, + "rtt_ms": 2.355458, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.714916695Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.198941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971713, - "rtt_ms": 1.971713, + "rtt_ns": 1516666, + "rtt_ms": 1.516666, "checkpoint": 0, "vertex_from": "113", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.715035834Z" + "timestamp": "2025-11-27T04:01:54.199241-08:00" }, { "operation": "add_edge", - "rtt_ns": 2063253, - "rtt_ms": 2.063253, + "rtt_ns": 2695250, + "rtt_ms": 2.69525, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.715057534Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.199289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422385, - "rtt_ms": 1.422385, + "rtt_ns": 1738291, + "rtt_ms": 1.738291, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:55.715149144Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.199336-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159483, - "rtt_ms": 2.159483, + "rtt_ns": 1262333, + "rtt_ms": 1.262333, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.715149854Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.19993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356546, - "rtt_ms": 1.356546, + "rtt_ns": 1554584, + "rtt_ms": 1.554584, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.715186604Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:54.200143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254646, - "rtt_ms": 1.254646, + "rtt_ns": 1490041, + "rtt_ms": 1.490041, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:55.715227774Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:54.200222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324936, - "rtt_ms": 1.324936, + "rtt_ns": 1821041, + "rtt_ms": 1.821041, "checkpoint": 0, "vertex_from": "113", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.715258484Z" + "timestamp": "2025-11-27T04:01:54.200506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539325, - "rtt_ms": 1.539325, + "rtt_ns": 1583125, + "rtt_ms": 1.583125, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:55.715288754Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:54.200525-08:00" }, { "operation": "add_edge", - "rtt_ns": 710487, - "rtt_ms": 0.710487, + "rtt_ns": 1427875, + "rtt_ms": 1.427875, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.715402793Z" + "vertex_to": "574", + "timestamp": "2025-11-27T04:01:54.20067-08:00" }, { "operation": "add_edge", - "rtt_ns": 942427, - "rtt_ms": 0.942427, + "rtt_ns": 2802125, + "rtt_ms": 2.802125, "checkpoint": 0, "vertex_from": "113", - "vertex_to": "574", - "timestamp": "2025-11-27T01:21:55.715979851Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:54.200671-08:00" }, { "operation": "add_edge", - "rtt_ns": 864967, - "rtt_ms": 0.864967, + "rtt_ns": 1490542, + "rtt_ms": 1.490542, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.716016351Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.20078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171266, - "rtt_ms": 1.171266, + "rtt_ns": 1501667, + "rtt_ms": 1.501667, "checkpoint": 0, - "vertex_from": "113", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.716089251Z" + "vertex_from": "114", + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:54.200838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283166, - "rtt_ms": 1.283166, + "rtt_ns": 2282959, + "rtt_ms": 2.282959, "checkpoint": 0, - "vertex_from": "114", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.71634338Z" + "vertex_from": "113", + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:54.200984-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052333, - "rtt_ms": 2.052333, + "rtt_ns": 856333, + "rtt_ms": 0.856333, "checkpoint": 0, "vertex_from": "114", "vertex_to": "616", - "timestamp": "2025-11-27T01:21:55.717241517Z" + "timestamp": "2025-11-27T04:01:54.201002-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097093, - "rtt_ms": 2.097093, + "rtt_ns": 1088500, + "rtt_ms": 1.0885, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:55.717248347Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.201019-08:00" }, { "operation": "add_edge", - "rtt_ns": 2676911, - "rtt_ms": 2.676911, + "rtt_ns": 1301583, + "rtt_ms": 1.301583, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:55.717906245Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.202083-08:00" }, { "operation": "add_edge", - "rtt_ns": 2603552, - "rtt_ms": 2.603552, + "rtt_ns": 1876708, + "rtt_ms": 1.876708, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "868", - "timestamp": "2025-11-27T01:21:55.718008095Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:54.2021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2761261, - "rtt_ms": 2.761261, + "rtt_ns": 1260083, + "rtt_ms": 1.260083, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.718021405Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:54.202101-08:00" }, { "operation": "add_edge", - "rtt_ns": 2747011, - "rtt_ms": 2.747011, + "rtt_ns": 1102667, + "rtt_ms": 1.102667, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.718037535Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.202106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992844, - "rtt_ms": 1.992844, + "rtt_ns": 1101292, + "rtt_ms": 1.101292, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.718084165Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.202121-08:00" }, { "operation": "add_edge", - "rtt_ns": 2115714, - "rtt_ms": 2.115714, + "rtt_ns": 1528625, + "rtt_ms": 1.528625, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.718096955Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:54.202199-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098294, - "rtt_ms": 2.098294, + "rtt_ns": 1695792, + "rtt_ms": 1.695792, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.718117425Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.202221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862034, - "rtt_ms": 1.862034, + "rtt_ns": 1757417, + "rtt_ms": 1.757417, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:55.718208304Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.202265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015777, - "rtt_ms": 1.015777, + "rtt_ns": 1534166, + "rtt_ms": 1.534166, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.718266124Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:54.202519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058937, - "rtt_ms": 1.058937, + "rtt_ns": 1896958, + "rtt_ms": 1.896958, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.718302094Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:54.20257-08:00" }, { "operation": "add_edge", - "rtt_ns": 799478, - "rtt_ms": 0.799478, + "rtt_ns": 1399583, + "rtt_ms": 1.399583, "checkpoint": 0, "vertex_from": "114", "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.718707873Z" + "timestamp": "2025-11-27T04:01:54.203483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142526, - "rtt_ms": 1.142526, + "rtt_ns": 1771292, + "rtt_ms": 1.771292, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:55.719166301Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.20404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321696, - "rtt_ms": 1.321696, + "rtt_ns": 2019709, + "rtt_ms": 2.019709, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:55.719360701Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:54.204121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397236, - "rtt_ms": 1.397236, + "rtt_ns": 2130416, + "rtt_ms": 2.130416, "checkpoint": 0, "vertex_from": "114", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:55.719406751Z" + "timestamp": "2025-11-27T04:01:54.204231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144117, - "rtt_ms": 1.144117, + "rtt_ns": 2086333, + "rtt_ms": 2.086333, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:55.719412001Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:54.204286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380425, - "rtt_ms": 1.380425, + "rtt_ns": 1761458, + "rtt_ms": 1.761458, "checkpoint": 0, - "vertex_from": "114", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:55.71947996Z" + "vertex_from": "115", + "vertex_to": "460", + "timestamp": "2025-11-27T04:01:54.20434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425945, - "rtt_ms": 1.425945, + "rtt_ns": 2236542, + "rtt_ms": 2.236542, "checkpoint": 0, "vertex_from": "114", "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.71951132Z" + "timestamp": "2025-11-27T04:01:54.204358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313976, - "rtt_ms": 1.313976, + "rtt_ns": 2323458, + "rtt_ms": 2.323458, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.71952395Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.204546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294816, - "rtt_ms": 1.294816, + "rtt_ns": 2470958, + "rtt_ms": 2.470958, "checkpoint": 0, - "vertex_from": "115", - "vertex_to": "460", - "timestamp": "2025-11-27T01:21:55.7195982Z" + "vertex_from": "114", + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:54.204577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983983, - "rtt_ms": 1.983983, + "rtt_ns": 2134125, + "rtt_ms": 2.134125, "checkpoint": 0, "vertex_from": "114", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.720102178Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:54.204655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611835, - "rtt_ms": 1.611835, + "rtt_ns": 1463709, + "rtt_ms": 1.463709, "checkpoint": 0, - "vertex_from": "115", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.720320968Z" + "vertex_from": "116", + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:54.205751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513275, - "rtt_ms": 1.513275, + "rtt_ns": 2271708, + "rtt_ms": 2.271708, "checkpoint": 0, "vertex_from": "115", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.720681126Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:54.205756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298655, - "rtt_ms": 1.298655, + "rtt_ns": 1645667, + "rtt_ms": 1.645667, "checkpoint": 0, - "vertex_from": "116", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:55.720706806Z" + "vertex_from": "115", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.205768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244826, - "rtt_ms": 1.244826, + "rtt_ns": 1188250, + "rtt_ms": 1.18825, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.720725906Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.205844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256616, - "rtt_ms": 1.256616, + "rtt_ns": 1622083, + "rtt_ms": 1.622083, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:55.720770766Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.205963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439795, - "rtt_ms": 1.439795, + "rtt_ns": 1415250, + "rtt_ms": 1.41525, "checkpoint": 0, - "vertex_from": "115", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.720802516Z" + "vertex_from": "116", + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.205994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434485, - "rtt_ms": 1.434485, + "rtt_ns": 1786417, + "rtt_ms": 1.786417, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:55.720847846Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:54.206019-08:00" }, { "operation": "add_edge", - "rtt_ns": 775608, - "rtt_ms": 0.775608, + "rtt_ns": 1559958, + "rtt_ms": 1.559958, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.720879236Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:01:54.206109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335315, - "rtt_ms": 1.335315, + "rtt_ns": 2080291, + "rtt_ms": 2.080291, "checkpoint": 0, - "vertex_from": "116", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.720935165Z" + "vertex_from": "115", + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.206121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414475, - "rtt_ms": 1.414475, + "rtt_ns": 1850208, + "rtt_ms": 1.850208, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "309", - "timestamp": "2025-11-27T01:21:55.720939955Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:54.206209-08:00" }, { "operation": "add_edge", - "rtt_ns": 636547, - "rtt_ms": 0.636547, + "rtt_ns": 1642708, + "rtt_ms": 1.642708, "checkpoint": 0, "vertex_from": "116", "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.720958505Z" + "timestamp": "2025-11-27T04:01:54.207395-08:00" }, { "operation": "add_edge", - "rtt_ns": 823047, - "rtt_ms": 0.823047, + "rtt_ns": 1590666, + "rtt_ms": 1.590666, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "732", - "timestamp": "2025-11-27T01:21:55.721532553Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:54.207436-08:00" }, { "operation": "add_edge", - "rtt_ns": 931627, - "rtt_ms": 0.931627, + "rtt_ns": 1483334, + "rtt_ms": 1.483334, "checkpoint": 0, - "vertex_from": "116", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.721613803Z" + "vertex_from": "117", + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:54.207478-08:00" }, { "operation": "add_edge", - "rtt_ns": 873377, - "rtt_ms": 0.873377, + "rtt_ns": 1427542, + "rtt_ms": 1.427542, "checkpoint": 0, - "vertex_from": "116", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.721645593Z" + "vertex_from": "117", + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.207537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559425, - "rtt_ms": 1.559425, + "rtt_ns": 1886417, + "rtt_ms": 1.886417, "checkpoint": 0, "vertex_from": "116", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:55.722286591Z" + "vertex_to": "732", + "timestamp": "2025-11-27T04:01:54.207657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374696, - "rtt_ms": 1.374696, + "rtt_ns": 1689000, + "rtt_ms": 1.689, "checkpoint": 0, "vertex_from": "117", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.722311611Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.207708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385986, - "rtt_ms": 1.385986, + "rtt_ns": 1545458, + "rtt_ms": 1.545458, "checkpoint": 0, "vertex_from": "117", "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.722328871Z" + "timestamp": "2025-11-27T04:01:54.207755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488625, - "rtt_ms": 1.488625, + "rtt_ns": 1860917, + "rtt_ms": 1.860917, "checkpoint": 0, - "vertex_from": "117", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.722337661Z" + "vertex_from": "116", + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:54.207824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1549185, - "rtt_ms": 1.549185, + "rtt_ns": 1704334, + "rtt_ms": 1.704334, "checkpoint": 0, "vertex_from": "117", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:55.722354081Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.207826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474945, - "rtt_ms": 1.474945, + "rtt_ns": 2236583, + "rtt_ms": 2.236583, "checkpoint": 0, - "vertex_from": "117", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.722355611Z" + "vertex_from": "116", + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.207994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1461666, - "rtt_ms": 1.461666, + "rtt_ns": 1036833, + "rtt_ms": 1.036833, "checkpoint": 0, "vertex_from": "117", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.722996009Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1597185, - "rtt_ms": 1.597185, - "checkpoint": 0, - "vertex_from": "118", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:55.723212738Z" + "timestamp": "2025-11-27T04:01:54.208475-08:00" }, { "operation": "add_edge", - "rtt_ns": 2285723, - "rtt_ms": 2.285723, + "rtt_ns": 1558333, + "rtt_ms": 1.558333, "checkpoint": 0, "vertex_from": "117", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.723245618Z" + "timestamp": "2025-11-27T04:01:54.208954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162766, - "rtt_ms": 1.162766, + "rtt_ns": 1509292, + "rtt_ms": 1.509292, "checkpoint": 0, "vertex_from": "118", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.723450407Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:01:54.209047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231906, - "rtt_ms": 1.231906, + "rtt_ns": 1405875, + "rtt_ms": 1.405875, "checkpoint": 0, "vertex_from": "118", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.723544207Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1106826, - "rtt_ms": 1.106826, - "checkpoint": 0, - "vertex_from": "119", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.724105475Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.209064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801744, - "rtt_ms": 1.801744, + "rtt_ns": 1253417, + "rtt_ms": 1.253417, "checkpoint": 0, "vertex_from": "118", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.724140485Z" + "timestamp": "2025-11-27T04:01:54.209078-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495472, - "rtt_ms": 2.495472, + "rtt_ns": 1470500, + "rtt_ms": 1.4705, "checkpoint": 0, "vertex_from": "118", - "vertex_to": "182", - "timestamp": "2025-11-27T01:21:55.724142505Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:54.20918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790994, - "rtt_ms": 1.790994, + "rtt_ns": 1713375, + "rtt_ms": 1.713375, "checkpoint": 0, "vertex_from": "118", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:55.724148235Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:54.209192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821484, - "rtt_ms": 1.821484, + "rtt_ns": 1403291, + "rtt_ms": 1.403291, "checkpoint": 0, "vertex_from": "118", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.724151795Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.20923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848324, - "rtt_ms": 1.848324, + "rtt_ns": 1561375, + "rtt_ms": 1.561375, "checkpoint": 0, "vertex_from": "118", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.724205105Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.209317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803164, - "rtt_ms": 1.803164, + "rtt_ns": 1308250, + "rtt_ms": 1.30825, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.725017682Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.210502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498795, - "rtt_ms": 1.498795, + "rtt_ns": 1442000, + "rtt_ms": 1.442, "checkpoint": 0, "vertex_from": "120", "vertex_to": "131", - "timestamp": "2025-11-27T01:21:55.725044632Z" + "timestamp": "2025-11-27T04:01:54.210521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645935, - "rtt_ms": 1.645935, + "rtt_ns": 1513125, + "rtt_ms": 1.513125, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.725098952Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:54.210744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855794, - "rtt_ms": 1.855794, + "rtt_ns": 1854084, + "rtt_ms": 1.854084, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.725102402Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.210809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493235, - "rtt_ms": 1.493235, + "rtt_ns": 1802125, + "rtt_ms": 1.802125, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.72564386Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:54.210867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531645, - "rtt_ms": 1.531645, + "rtt_ns": 1851416, + "rtt_ms": 1.851416, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.72568472Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.210899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481525, - "rtt_ms": 1.481525, + "rtt_ns": 1867042, + "rtt_ms": 1.867042, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.72568906Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.211185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582685, - "rtt_ms": 1.582685, + "rtt_ns": 3453333, + "rtt_ms": 3.453333, "checkpoint": 0, - "vertex_from": "120", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:55.72569083Z" + "vertex_from": "118", + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:54.211448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571725, - "rtt_ms": 1.571725, + "rtt_ns": 2284792, + "rtt_ms": 2.284792, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.7257147Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:54.211465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571055, - "rtt_ms": 1.571055, + "rtt_ns": 1198167, + "rtt_ms": 1.198167, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:55.72571541Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.211703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398875, - "rtt_ms": 1.398875, + "rtt_ns": 1204209, + "rtt_ms": 1.204209, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:55.726499947Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.211727-08:00" }, { "operation": "add_edge", - "rtt_ns": 856147, - "rtt_ms": 0.856147, + "rtt_ns": 3396750, + "rtt_ms": 3.39675, "checkpoint": 0, - "vertex_from": "120", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:55.726542037Z" + "vertex_from": "119", + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:54.211872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522865, - "rtt_ms": 1.522865, + "rtt_ns": 1452542, + "rtt_ms": 1.452542, "checkpoint": 0, "vertex_from": "120", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.726568987Z" + "timestamp": "2025-11-27T04:01:54.212263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009657, - "rtt_ms": 1.009657, + "rtt_ns": 1410375, + "rtt_ms": 1.410375, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.726655127Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:54.212278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017467, - "rtt_ms": 1.017467, + "rtt_ns": 1251500, + "rtt_ms": 1.2515, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:55.726709457Z" + "vertex_to": "343", + "timestamp": "2025-11-27T04:01:54.212718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036337, - "rtt_ms": 1.036337, + "rtt_ns": 1563708, + "rtt_ms": 1.563708, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "343", - "timestamp": "2025-11-27T01:21:55.726726697Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.212751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633175, - "rtt_ms": 1.633175, + "rtt_ns": 1959833, + "rtt_ms": 1.959833, "checkpoint": 0, "vertex_from": "120", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.726736837Z" + "timestamp": "2025-11-27T04:01:54.212861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796294, - "rtt_ms": 1.796294, + "rtt_ns": 2123041, + "rtt_ms": 2.123041, "checkpoint": 0, "vertex_from": "120", "vertex_to": "910", - "timestamp": "2025-11-27T01:21:55.726816356Z" + "timestamp": "2025-11-27T04:01:54.212868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543975, - "rtt_ms": 1.543975, + "rtt_ns": 1725958, + "rtt_ms": 1.725958, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.727260665Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:54.213175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558895, - "rtt_ms": 1.558895, + "rtt_ns": 1319000, + "rtt_ms": 1.319, "checkpoint": 0, "vertex_from": "120", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.727276015Z" + "timestamp": "2025-11-27T04:01:54.213192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269586, - "rtt_ms": 1.269586, + "rtt_ns": 1661667, + "rtt_ms": 1.661667, "checkpoint": 0, "vertex_from": "120", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.727925503Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.213389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499586, - "rtt_ms": 1.499586, + "rtt_ns": 1290042, + "rtt_ms": 1.290042, "checkpoint": 0, "vertex_from": "120", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.728002283Z" + "timestamp": "2025-11-27T04:01:54.213554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200916, - "rtt_ms": 1.200916, + "rtt_ns": 1977709, + "rtt_ms": 1.977709, "checkpoint": 0, - "vertex_from": "121", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.728019022Z" + "vertex_from": "120", + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:54.213683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518395, - "rtt_ms": 1.518395, + "rtt_ns": 1321541, + "rtt_ms": 1.321541, "checkpoint": 0, - "vertex_from": "120", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.728088302Z" + "vertex_from": "121", + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:54.215006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221566, - "rtt_ms": 1.221566, + "rtt_ns": 2263917, + "rtt_ms": 2.263917, "checkpoint": 0, "vertex_from": "121", - "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.728499261Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.215135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019834, - "rtt_ms": 2.019834, + "rtt_ns": 2014375, + "rtt_ms": 2.014375, "checkpoint": 0, - "vertex_from": "120", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.728563081Z" + "vertex_from": "121", + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.215208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922843, - "rtt_ms": 1.922843, + "rtt_ns": 1847792, + "rtt_ms": 1.847792, "checkpoint": 0, - "vertex_from": "120", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.72863372Z" + "vertex_from": "121", + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:54.215238-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033273, - "rtt_ms": 2.033273, + "rtt_ns": 1831166, + "rtt_ms": 1.831166, "checkpoint": 0, "vertex_from": "121", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.72876181Z" + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.215385-08:00" }, { "operation": "add_edge", - "rtt_ns": 2050833, - "rtt_ms": 2.050833, + "rtt_ns": 2228916, + "rtt_ms": 2.228916, "checkpoint": 0, "vertex_from": "121", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.72878913Z" + "timestamp": "2025-11-27T04:01:54.215405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596405, - "rtt_ms": 1.596405, + "rtt_ns": 3017708, + "rtt_ms": 3.017708, "checkpoint": 0, - "vertex_from": "121", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:55.72885858Z" + "vertex_from": "120", + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.215737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578064, - "rtt_ms": 1.578064, + "rtt_ns": 3051334, + "rtt_ms": 3.051334, "checkpoint": 0, - "vertex_from": "121", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.729505027Z" + "vertex_from": "120", + "vertex_to": "130", + "timestamp": "2025-11-27T04:01:54.215804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456025, - "rtt_ms": 1.456025, + "rtt_ns": 3602208, + "rtt_ms": 3.602208, "checkpoint": 0, - "vertex_from": "122", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.729545977Z" + "vertex_from": "120", + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:54.215883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542745, - "rtt_ms": 1.542745, + "rtt_ns": 1050625, + "rtt_ms": 1.050625, "checkpoint": 0, "vertex_from": "121", "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.729563007Z" + "timestamp": "2025-11-27T04:01:54.216189-08:00" }, { "operation": "add_edge", - "rtt_ns": 2068963, - "rtt_ms": 2.068963, + "rtt_ns": 1041208, + "rtt_ms": 1.041208, "checkpoint": 0, - "vertex_from": "121", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.730072316Z" + "vertex_from": "122", + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:54.216251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2279922, - "rtt_ms": 2.279922, + "rtt_ns": 1646583, + "rtt_ms": 1.646583, "checkpoint": 0, - "vertex_from": "122", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.730844483Z" + "vertex_from": "121", + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.216654-08:00" }, { "operation": "add_edge", - "rtt_ns": 2507511, - "rtt_ms": 2.507511, + "rtt_ns": 1708917, + "rtt_ms": 1.708917, "checkpoint": 0, "vertex_from": "122", "vertex_to": "809", - "timestamp": "2025-11-27T01:21:55.731008242Z" + "timestamp": "2025-11-27T04:01:54.21695-08:00" }, { "operation": "add_edge", - "rtt_ns": 2162232, - "rtt_ms": 2.162232, + "rtt_ns": 1600459, + "rtt_ms": 1.600459, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "647", - "timestamp": "2025-11-27T01:21:55.731022432Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:54.216987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360765, - "rtt_ms": 1.360765, + "rtt_ns": 4189583, + "rtt_ms": 4.189583, "checkpoint": 0, - "vertex_from": "123", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.731434741Z" + "vertex_from": "120", + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:54.217052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2713881, - "rtt_ms": 2.713881, + "rtt_ns": 1681292, + "rtt_ms": 1.681292, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.731505061Z" + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.21742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2946160, - "rtt_ms": 2.94616, + "rtt_ns": 1620250, + "rtt_ms": 1.62025, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.73170916Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.217426-08:00" }, { "operation": "add_edge", - "rtt_ns": 3304029, - "rtt_ms": 3.304029, + "rtt_ns": 1211292, + "rtt_ms": 1.211292, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.731938529Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.217463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2570652, - "rtt_ms": 2.570652, + "rtt_ns": 1735791, + "rtt_ms": 1.735791, "checkpoint": 0, "vertex_from": "122", "vertex_to": "736", - "timestamp": "2025-11-27T01:21:55.732077459Z" + "timestamp": "2025-11-27T04:01:54.217927-08:00" }, { "operation": "add_edge", - "rtt_ns": 2842691, - "rtt_ms": 2.842691, + "rtt_ns": 2162458, + "rtt_ms": 2.162458, "checkpoint": 0, "vertex_from": "122", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.732391118Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:01:54.218047-08:00" }, { "operation": "add_edge", - "rtt_ns": 2886991, - "rtt_ms": 2.886991, + "rtt_ns": 1577584, + "rtt_ms": 1.577584, "checkpoint": 0, "vertex_from": "122", "vertex_to": "466", - "timestamp": "2025-11-27T01:21:55.732451538Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1064996, - "rtt_ms": 1.064996, - "checkpoint": 0, - "vertex_from": "124", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.732571367Z" + "timestamp": "2025-11-27T04:01:54.218232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740624, - "rtt_ms": 1.740624, + "rtt_ns": 2838625, + "rtt_ms": 2.838625, "checkpoint": 0, - "vertex_from": "123", - "vertex_to": "128", - "timestamp": "2025-11-27T01:21:55.732586837Z" + "vertex_from": "122", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.218244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603375, - "rtt_ms": 1.603375, + "rtt_ns": 2149583, + "rtt_ms": 2.149583, "checkpoint": 0, "vertex_from": "124", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:55.732628397Z" + "vertex_to": "869", + "timestamp": "2025-11-27T04:01:54.219204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623195, - "rtt_ms": 1.623195, + "rtt_ns": 1753333, + "rtt_ms": 1.753333, "checkpoint": 0, "vertex_from": "124", - "vertex_to": "869", - "timestamp": "2025-11-27T01:21:55.732632937Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.219218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223356, - "rtt_ms": 1.223356, + "rtt_ns": 1797167, + "rtt_ms": 1.797167, "checkpoint": 0, "vertex_from": "124", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.732659257Z" + "timestamp": "2025-11-27T04:01:54.219224-08:00" }, { "operation": "add_edge", - "rtt_ns": 957937, - "rtt_ms": 0.957937, + "rtt_ns": 1874792, + "rtt_ms": 1.874792, "checkpoint": 0, - "vertex_from": "127", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.733411075Z" + "vertex_from": "124", + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:54.219296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330016, - "rtt_ms": 1.330016, + "rtt_ns": 2491041, + "rtt_ms": 2.491041, "checkpoint": 0, - "vertex_from": "126", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:55.733412475Z" + "vertex_from": "123", + "vertex_to": "128", + "timestamp": "2025-11-27T04:01:54.219479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511516, - "rtt_ms": 1.511516, + "rtt_ns": 2553542, + "rtt_ms": 2.553542, "checkpoint": 0, - "vertex_from": "125", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.733451705Z" + "vertex_from": "123", + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.219506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196726, - "rtt_ms": 1.196726, + "rtt_ns": 1674917, + "rtt_ms": 1.674917, "checkpoint": 0, - "vertex_from": "126", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.733589474Z" + "vertex_from": "127", + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.22088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921804, - "rtt_ms": 1.921804, + "rtt_ns": 2858000, + "rtt_ms": 2.858, "checkpoint": 0, - "vertex_from": "124", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.733632054Z" + "vertex_from": "125", + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:54.220906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673535, - "rtt_ms": 1.673535, + "rtt_ns": 1481625, + "rtt_ms": 1.481625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.734246902Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.220988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637555, - "rtt_ms": 1.637555, + "rtt_ns": 2760875, + "rtt_ms": 2.760875, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "229", - "timestamp": "2025-11-27T01:21:55.734267572Z" + "vertex_from": "126", + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:54.221006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687435, - "rtt_ms": 1.687435, + "rtt_ns": 1799334, + "rtt_ms": 1.799334, "checkpoint": 0, "vertex_from": "128", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.734275652Z" + "timestamp": "2025-11-27T04:01:54.221024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642305, - "rtt_ms": 1.642305, + "rtt_ns": 3112292, + "rtt_ms": 3.112292, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.734302572Z" + "vertex_from": "124", + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.221041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673065, - "rtt_ms": 1.673065, + "rtt_ns": 1802042, + "rtt_ms": 1.802042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "234", - "timestamp": "2025-11-27T01:21:55.734308452Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:01:54.221099-08:00" }, { "operation": "add_edge", - "rtt_ns": 2514582, - "rtt_ms": 2.514582, + "rtt_ns": 3225125, + "rtt_ms": 3.225125, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.736147796Z" + "vertex_from": "126", + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:54.22146-08:00" }, { "operation": "add_edge", - "rtt_ns": 3400059, - "rtt_ms": 3.400059, + "rtt_ns": 2133292, + "rtt_ms": 2.133292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.736813244Z" + "vertex_to": "234", + "timestamp": "2025-11-27T04:01:54.221613-08:00" }, { "operation": "add_edge", - "rtt_ns": 3271520, - "rtt_ms": 3.27152, + "rtt_ns": 1605333, + "rtt_ms": 1.605333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:55.736862714Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.222489-08:00" }, { "operation": "add_edge", - "rtt_ns": 3467689, - "rtt_ms": 3.467689, + "rtt_ns": 1641167, + "rtt_ms": 1.641167, "checkpoint": 0, "vertex_from": "128", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.736921804Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2671431, - "rtt_ms": 2.671431, - "checkpoint": 0, - "vertex_from": "729", - "timestamp": "2025-11-27T01:21:55.736942193Z" + "timestamp": "2025-11-27T04:01:54.222631-08:00" }, { "operation": "add_edge", - "rtt_ns": 3534168, - "rtt_ms": 3.534168, + "rtt_ns": 1899584, + "rtt_ms": 1.899584, "checkpoint": 0, "vertex_from": "128", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.736949093Z" + "timestamp": "2025-11-27T04:01:54.222807-08:00" }, { "operation": "add_edge", - "rtt_ns": 2676121, - "rtt_ms": 2.676121, + "rtt_ns": 1836708, + "rtt_ms": 1.836708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.736985923Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:54.222844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2795951, - "rtt_ms": 2.795951, + "rtt_ns": 3684209, + "rtt_ms": 3.684209, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:55.737043783Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:54.222905-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2835311, - "rtt_ms": 2.835311, + "operation": "add_vertex", + "rtt_ns": 1850292, + "rtt_ms": 1.850292, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.737112343Z" + "vertex_from": "729", + "timestamp": "2025-11-27T04:01:54.222953-08:00" }, { "operation": "add_edge", - "rtt_ns": 969547, - "rtt_ms": 0.969547, + "rtt_ns": 2020083, + "rtt_ms": 2.020083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.737120803Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.223045-08:00" }, { "operation": "add_edge", - "rtt_ns": 2835401, - "rtt_ms": 2.835401, + "rtt_ns": 2655708, + "rtt_ms": 2.655708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "932", - "timestamp": "2025-11-27T01:21:55.737139723Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.224117-08:00" }, { "operation": "add_edge", - "rtt_ns": 746927, - "rtt_ms": 0.746927, + "rtt_ns": 1684625, + "rtt_ms": 1.684625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.737611271Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.224174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058177, - "rtt_ms": 1.058177, + "rtt_ns": 1227208, + "rtt_ms": 1.227208, "checkpoint": 0, "vertex_from": "128", "vertex_to": "729", - "timestamp": "2025-11-27T01:21:55.73800072Z" + "timestamp": "2025-11-27T04:01:54.224181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233036, - "rtt_ms": 1.233036, + "rtt_ns": 1421209, + "rtt_ms": 1.421209, "checkpoint": 0, "vertex_from": "128", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.73805558Z" + "timestamp": "2025-11-27T04:01:54.224229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150796, - "rtt_ms": 1.150796, + "rtt_ns": 3239041, + "rtt_ms": 3.239041, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:55.73807408Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:54.224292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556186, - "rtt_ms": 1.556186, + "rtt_ns": 1292667, + "rtt_ms": 1.292667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.738507269Z" + "timestamp": "2025-11-27T04:01:54.224339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506265, - "rtt_ms": 1.506265, + "rtt_ns": 1511208, + "rtt_ms": 1.511208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "295", - "timestamp": "2025-11-27T01:21:55.738620168Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.224356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614155, - "rtt_ms": 1.614155, + "rtt_ns": 2778208, + "rtt_ms": 2.778208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:55.738660648Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:01:54.224393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548965, - "rtt_ms": 1.548965, + "rtt_ns": 1533500, + "rtt_ms": 1.5335, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.738671538Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:54.224439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704995, - "rtt_ms": 1.704995, + "rtt_ns": 1826584, + "rtt_ms": 1.826584, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "690", - "timestamp": "2025-11-27T01:21:55.738692638Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.224458-08:00" }, { "operation": "add_edge", - "rtt_ns": 862687, - "rtt_ms": 0.862687, + "rtt_ns": 1125416, + "rtt_ms": 1.125416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.739484665Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.225356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912044, - "rtt_ms": 1.912044, + "rtt_ns": 1096833, + "rtt_ms": 1.096833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.739527805Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:54.225391-08:00" }, { "operation": "add_edge", - "rtt_ns": 2440032, - "rtt_ms": 2.440032, + "rtt_ns": 1405916, + "rtt_ms": 1.405916, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.739581545Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:54.225582-08:00" }, { "operation": "add_edge", - "rtt_ns": 943377, - "rtt_ms": 0.943377, + "rtt_ns": 1444333, + "rtt_ms": 1.444333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "617", - "timestamp": "2025-11-27T01:21:55.739605695Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:01:54.225627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628285, - "rtt_ms": 1.628285, + "rtt_ns": 1563667, + "rtt_ms": 1.563667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.739631295Z" + "vertex_to": "690", + "timestamp": "2025-11-27T04:01:54.225684-08:00" }, { "operation": "add_edge", - "rtt_ns": 976747, - "rtt_ms": 0.976747, + "rtt_ns": 1584208, + "rtt_ms": 1.584208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.739651335Z" + "vertex_to": "190", + "timestamp": "2025-11-27T04:01:54.226025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159176, - "rtt_ms": 1.159176, + "rtt_ns": 1651041, + "rtt_ms": 1.651041, "checkpoint": 0, "vertex_from": "128", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.739668055Z" + "timestamp": "2025-11-27T04:01:54.22611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691785, - "rtt_ms": 1.691785, + "rtt_ns": 1795833, + "rtt_ms": 1.795833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "190", - "timestamp": "2025-11-27T01:21:55.739769105Z" + "vertex_to": "364", + "timestamp": "2025-11-27T04:01:54.22619-08:00" }, { "operation": "add_edge", - "rtt_ns": 2302053, - "rtt_ms": 2.302053, + "rtt_ns": 1927709, + "rtt_ms": 1.927709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "364", - "timestamp": "2025-11-27T01:21:55.740359213Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.226268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682524, - "rtt_ms": 1.682524, + "rtt_ns": 1921625, + "rtt_ms": 1.921625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:55.740376592Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.226285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291586, - "rtt_ms": 1.291586, + "rtt_ns": 1260625, + "rtt_ms": 1.260625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.740820941Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:54.226946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448646, - "rtt_ms": 1.448646, + "rtt_ns": 1420750, + "rtt_ms": 1.42075, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:55.740935401Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.227004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394295, - "rtt_ms": 1.394295, + "rtt_ns": 1796792, + "rtt_ms": 1.796792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.74104742Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:54.227191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484855, - "rtt_ms": 1.484855, + "rtt_ns": 1650292, + "rtt_ms": 1.650292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "213", - "timestamp": "2025-11-27T01:21:55.74106986Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:54.22728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513995, - "rtt_ms": 1.513995, + "rtt_ns": 1274417, + "rtt_ms": 1.274417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.74114708Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.227465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533295, - "rtt_ms": 1.533295, + "rtt_ns": 1214958, + "rtt_ms": 1.214958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.74120401Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:54.227484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615595, - "rtt_ms": 1.615595, + "rtt_ns": 1473958, + "rtt_ms": 1.473958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.74122314Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.227499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482496, - "rtt_ms": 1.482496, + "rtt_ns": 1409125, + "rtt_ms": 1.409125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:55.74125347Z" + "vertex_to": "213", + "timestamp": "2025-11-27T04:01:54.22752-08:00" }, { "operation": "add_edge", - "rtt_ns": 912747, - "rtt_ms": 0.912747, + "rtt_ns": 1449875, + "rtt_ms": 1.449875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.741291909Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:54.227736-08:00" }, { "operation": "add_edge", - "rtt_ns": 973236, - "rtt_ms": 0.973236, + "rtt_ns": 2505958, + "rtt_ms": 2.505958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:55.741333559Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:54.227864-08:00" }, { "operation": "add_edge", - "rtt_ns": 616948, - "rtt_ms": 0.616948, + "rtt_ns": 1655125, + "rtt_ms": 1.655125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.741553369Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:54.228848-08:00" }, { "operation": "add_edge", - "rtt_ns": 759647, - "rtt_ms": 0.759647, + "rtt_ns": 1412750, + "rtt_ms": 1.41275, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:55.741581778Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.228897-08:00" }, { "operation": "add_edge", - "rtt_ns": 688638, - "rtt_ms": 0.688638, + "rtt_ns": 2083708, + "rtt_ms": 2.083708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.741737198Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.229032-08:00" }, { "operation": "add_edge", - "rtt_ns": 717848, - "rtt_ms": 0.717848, + "rtt_ns": 1772333, + "rtt_ms": 1.772333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.741789508Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:54.229053-08:00" }, { "operation": "add_edge", - "rtt_ns": 668748, - "rtt_ms": 0.668748, + "rtt_ns": 1717750, + "rtt_ms": 1.71775, "checkpoint": 0, "vertex_from": "128", "vertex_to": "566", - "timestamp": "2025-11-27T01:21:55.741817698Z" + "timestamp": "2025-11-27T04:01:54.229455-08:00" }, { "operation": "add_edge", - "rtt_ns": 706047, - "rtt_ms": 0.706047, + "rtt_ns": 1624458, + "rtt_ms": 1.624458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.741934407Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.229489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209126, - "rtt_ms": 1.209126, + "rtt_ns": 2058458, + "rtt_ms": 2.058458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.742415076Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:54.229524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006007, - "rtt_ms": 1.006007, + "rtt_ns": 2036792, + "rtt_ms": 2.036792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.742589305Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.229537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038126, - "rtt_ms": 1.038126, + "rtt_ns": 1131750, + "rtt_ms": 1.13175, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:55.742593215Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:54.229982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300836, - "rtt_ms": 1.300836, + "rtt_ns": 1057708, + "rtt_ms": 1.057708, "checkpoint": 0, "vertex_from": "128", "vertex_to": "866", - "timestamp": "2025-11-27T01:21:55.742595295Z" + "timestamp": "2025-11-27T04:01:54.23009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393786, - "rtt_ms": 1.393786, + "rtt_ns": 2642209, + "rtt_ms": 2.642209, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.742729145Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.230165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566294, - "rtt_ms": 1.566294, + "rtt_ns": 1315958, + "rtt_ms": 1.315958, "checkpoint": 0, "vertex_from": "128", "vertex_to": "913", - "timestamp": "2025-11-27T01:21:55.742821694Z" + "timestamp": "2025-11-27T04:01:54.230215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154826, - "rtt_ms": 1.154826, + "rtt_ns": 3220917, + "rtt_ms": 3.220917, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:54.230226-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1177333, + "rtt_ms": 1.177333, "checkpoint": 0, "vertex_from": "128", "vertex_to": "674", - "timestamp": "2025-11-27T01:21:55.742893404Z" + "timestamp": "2025-11-27T04:01:54.230703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572574, - "rtt_ms": 1.572574, + "rtt_ns": 1413542, + "rtt_ms": 1.413542, "checkpoint": 0, "vertex_from": "128", "vertex_to": "340", - "timestamp": "2025-11-27T01:21:55.743363262Z" + "timestamp": "2025-11-27T04:01:54.230951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048066, - "rtt_ms": 1.048066, + "rtt_ns": 1096333, + "rtt_ms": 1.096333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.743467232Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:54.231187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730734, - "rtt_ms": 1.730734, + "rtt_ns": 1700916, + "rtt_ms": 1.700916, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.743550022Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.231191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635715, - "rtt_ms": 1.635715, + "rtt_ns": 1140625, + "rtt_ms": 1.140625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:55.743571522Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.231307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222126, - "rtt_ms": 1.222126, + "rtt_ns": 1441958, + "rtt_ms": 1.441958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.743818661Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.231425-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1434125, + "rtt_ms": 1.434125, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:54.231652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455555, - "rtt_ms": 1.455555, + "rtt_ns": 1450250, + "rtt_ms": 1.45025, "checkpoint": 0, "vertex_from": "128", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.74405052Z" + "timestamp": "2025-11-27T04:01:54.231678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541935, - "rtt_ms": 1.541935, + "rtt_ns": 2641334, + "rtt_ms": 2.641334, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:55.74413265Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.231695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414765, - "rtt_ms": 1.414765, + "rtt_ns": 2307333, + "rtt_ms": 2.307333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.74414604Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:54.231765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379296, - "rtt_ms": 1.379296, + "rtt_ns": 1199542, + "rtt_ms": 1.199542, "checkpoint": 0, "vertex_from": "128", "vertex_to": "130", - "timestamp": "2025-11-27T01:21:55.74420242Z" + "timestamp": "2025-11-27T04:01:54.232388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543265, - "rtt_ms": 1.543265, + "rtt_ns": 1512541, + "rtt_ms": 1.512541, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.744907777Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.232466-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023743, - "rtt_ms": 2.023743, + "rtt_ns": 1878125, + "rtt_ms": 1.878125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.744921217Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.232581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526425, - "rtt_ms": 1.526425, + "rtt_ns": 1784666, + "rtt_ms": 1.784666, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "129", - "timestamp": "2025-11-27T01:21:55.745099827Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:54.232977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713405, - "rtt_ms": 1.713405, + "rtt_ns": 1625042, + "rtt_ms": 1.625042, "checkpoint": 0, "vertex_from": "128", "vertex_to": "660", - "timestamp": "2025-11-27T01:21:55.745182157Z" + "timestamp": "2025-11-27T04:01:54.233051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976754, - "rtt_ms": 1.976754, + "rtt_ns": 1412042, + "rtt_ms": 1.412042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "838", - "timestamp": "2025-11-27T01:21:55.745528446Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.233108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856584, - "rtt_ms": 1.856584, + "rtt_ns": 1955125, + "rtt_ms": 1.955125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.745676825Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:54.233263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328623, - "rtt_ms": 2.328623, + "rtt_ns": 1615542, + "rtt_ms": 1.615542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:55.746380563Z" + "vertex_to": "129", + "timestamp": "2025-11-27T04:01:54.233295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565435, - "rtt_ms": 1.565435, + "rtt_ns": 1759042, + "rtt_ms": 1.759042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.746491082Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:01:54.233412-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362422, - "rtt_ms": 2.362422, + "rtt_ns": 1976791, + "rtt_ms": 1.976791, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "882", - "timestamp": "2025-11-27T01:21:55.746510042Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:54.233742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2373392, - "rtt_ms": 2.373392, + "rtt_ns": 1408125, + "rtt_ms": 1.408125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "968", - "timestamp": "2025-11-27T01:21:55.746577232Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:54.233797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724125, - "rtt_ms": 1.724125, + "rtt_ns": 1332417, + "rtt_ms": 1.332417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.746633772Z" + "vertex_to": "882", + "timestamp": "2025-11-27T04:01:54.2338-08:00" }, { "operation": "add_edge", - "rtt_ns": 2511762, - "rtt_ms": 2.511762, + "rtt_ns": 1578250, + "rtt_ms": 1.57825, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:55.746646072Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.234556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526205, - "rtt_ms": 1.526205, + "rtt_ns": 1317417, + "rtt_ms": 1.317417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.746709422Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:01:54.23473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194866, - "rtt_ms": 1.194866, + "rtt_ns": 1577167, + "rtt_ms": 1.577167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:55.746724752Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.234842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117336, - "rtt_ms": 1.117336, + "rtt_ns": 2321250, + "rtt_ms": 2.32125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "775", - "timestamp": "2025-11-27T01:21:55.746796481Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:01:54.234904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713044, - "rtt_ms": 1.713044, + "rtt_ns": 1889292, + "rtt_ms": 1.889292, "checkpoint": 0, "vertex_from": "128", "vertex_to": "547", - "timestamp": "2025-11-27T01:21:55.746815391Z" + "timestamp": "2025-11-27T04:01:54.235-08:00" }, { "operation": "add_edge", - "rtt_ns": 839687, - "rtt_ms": 0.839687, + "rtt_ns": 1962666, + "rtt_ms": 1.962666, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.74722243Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.235014-08:00" }, { "operation": "add_edge", - "rtt_ns": 789608, - "rtt_ms": 0.789608, + "rtt_ns": 1851292, + "rtt_ms": 1.851292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:55.7472827Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:54.235147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113007, - "rtt_ms": 1.113007, + "rtt_ns": 1514458, + "rtt_ms": 1.514458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.747625809Z" + "vertex_to": "159", + "timestamp": "2025-11-27T04:01:54.236072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126377, - "rtt_ms": 1.126377, + "rtt_ns": 1151458, + "rtt_ms": 1.151458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "159", - "timestamp": "2025-11-27T01:21:55.747705189Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.236152-08:00" }, { "operation": "add_edge", - "rtt_ns": 980527, - "rtt_ms": 0.980527, + "rtt_ns": 2430375, + "rtt_ms": 2.430375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:55.747778448Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:54.236173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187146, - "rtt_ms": 1.187146, + "rtt_ns": 2389917, + "rtt_ms": 2.389917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.747834678Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:54.236191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134916, - "rtt_ms": 1.134916, + "rtt_ns": 1438667, + "rtt_ms": 1.438667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.747860938Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.236281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153686, - "rtt_ms": 1.153686, + "rtt_ns": 1620917, + "rtt_ms": 1.620917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.747865868Z" + "vertex_to": "428", + "timestamp": "2025-11-27T04:01:54.236352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221857, - "rtt_ms": 1.221857, + "rtt_ns": 1213875, + "rtt_ms": 1.213875, "checkpoint": 0, "vertex_from": "128", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.748038708Z" + "timestamp": "2025-11-27T04:01:54.236361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874504, - "rtt_ms": 1.874504, + "rtt_ns": 1350084, + "rtt_ms": 1.350084, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "428", - "timestamp": "2025-11-27T01:21:55.748509756Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:54.236365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273426, - "rtt_ms": 1.273426, + "rtt_ns": 1480250, + "rtt_ms": 1.48025, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.748557436Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.236385-08:00" }, { "operation": "add_edge", - "rtt_ns": 902747, - "rtt_ms": 0.902747, + "rtt_ns": 2711791, + "rtt_ms": 2.711791, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "934", - "timestamp": "2025-11-27T01:21:55.748609396Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:54.236511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411146, - "rtt_ms": 1.411146, + "rtt_ns": 1203583, + "rtt_ms": 1.203583, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:55.748635606Z" + "vertex_to": "934", + "timestamp": "2025-11-27T04:01:54.237396-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1059217, - "rtt_ms": 1.059217, + "rtt_ns": 1243958, + "rtt_ms": 1.243958, "checkpoint": 0, "vertex_from": "764", - "timestamp": "2025-11-27T01:21:55.748688755Z" + "timestamp": "2025-11-27T04:01:54.237419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1975414, - "rtt_ms": 1.975414, + "rtt_ns": 1514167, + "rtt_ms": 1.514167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:55.749838242Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.237667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001734, - "rtt_ms": 2.001734, + "rtt_ns": 1683000, + "rtt_ms": 1.683, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.749838302Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:54.237756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202876, - "rtt_ms": 1.202876, + "rtt_ns": 1524416, + "rtt_ms": 1.524416, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:55.749839792Z" + "vertex_to": "858", + "timestamp": "2025-11-27T04:01:54.237807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281756, - "rtt_ms": 1.281756, + "rtt_ns": 1332667, + "rtt_ms": 1.332667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:55.749841162Z" + "vertex_to": "206", + "timestamp": "2025-11-27T04:01:54.237846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332586, - "rtt_ms": 1.332586, + "rtt_ns": 1531667, + "rtt_ms": 1.531667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "206", - "timestamp": "2025-11-27T01:21:55.749844042Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:54.237894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804464, - "rtt_ms": 1.804464, + "rtt_ns": 1554542, + "rtt_ms": 1.554542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "805", - "timestamp": "2025-11-27T01:21:55.749844652Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.237911-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067754, - "rtt_ms": 2.067754, + "rtt_ns": 1652292, + "rtt_ms": 1.652292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "858", - "timestamp": "2025-11-27T01:21:55.749847992Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:54.238018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983494, - "rtt_ms": 1.983494, + "rtt_ns": 1649083, + "rtt_ms": 1.649083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.749850812Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:01:54.238035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507105, - "rtt_ms": 1.507105, + "rtt_ns": 1723667, + "rtt_ms": 1.723667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:55.750117821Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:54.239121-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180734, - "rtt_ms": 2.180734, + "rtt_ns": 1394792, + "rtt_ms": 1.394792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "764", - "timestamp": "2025-11-27T01:21:55.750869959Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:54.239153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257936, - "rtt_ms": 1.257936, + "rtt_ns": 1881125, + "rtt_ms": 1.881125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "311", - "timestamp": "2025-11-27T01:21:55.751097848Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.239777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313576, - "rtt_ms": 1.313576, + "rtt_ns": 1880833, + "rtt_ms": 1.880833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "398", - "timestamp": "2025-11-27T01:21:55.751155288Z" + "vertex_to": "139", + "timestamp": "2025-11-27T04:01:54.239793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442025, - "rtt_ms": 1.442025, + "rtt_ns": 2139958, + "rtt_ms": 2.139958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "139", - "timestamp": "2025-11-27T01:21:55.751285577Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:54.239808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281346, - "rtt_ms": 1.281346, + "rtt_ns": 1791750, + "rtt_ms": 1.79175, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:55.751401067Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:54.239827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574195, - "rtt_ms": 1.574195, + "rtt_ns": 2409292, + "rtt_ms": 2.409292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:55.751420987Z" + "vertex_to": "764", + "timestamp": "2025-11-27T04:01:54.239828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664105, - "rtt_ms": 1.664105, + "rtt_ns": 1827083, + "rtt_ms": 1.827083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.751506417Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:54.239846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687654, - "rtt_ms": 1.687654, + "rtt_ns": 2098750, + "rtt_ms": 2.09875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:55.751538846Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:01:54.239908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782134, - "rtt_ms": 1.782134, + "rtt_ns": 2084250, + "rtt_ms": 2.08425, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:55.751638116Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:01:54.239931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852714, - "rtt_ms": 1.852714, + "rtt_ns": 1149875, + "rtt_ms": 1.149875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:55.751699976Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.241082-08:00" }, { "operation": "add_edge", - "rtt_ns": 876297, - "rtt_ms": 0.876297, + "rtt_ns": 1945000, + "rtt_ms": 1.945, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:55.751747696Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:54.241099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079317, - "rtt_ms": 1.079317, + "rtt_ns": 1349208, + "rtt_ms": 1.349208, "checkpoint": 0, "vertex_from": "128", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.752366244Z" + "timestamp": "2025-11-27T04:01:54.241178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291836, - "rtt_ms": 1.291836, + "rtt_ns": 1467667, + "rtt_ms": 1.467667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.752390744Z" + "timestamp": "2025-11-27T04:01:54.241277-08:00" }, { "operation": "add_edge", - "rtt_ns": 929367, - "rtt_ms": 0.929367, + "rtt_ns": 1559417, + "rtt_ms": 1.559417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.752469293Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:54.241338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359525, - "rtt_ms": 1.359525, + "rtt_ns": 1469000, + "rtt_ms": 1.469, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "604", - "timestamp": "2025-11-27T01:21:55.752516723Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:54.24138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125086, - "rtt_ms": 1.125086, + "rtt_ns": 1567667, + "rtt_ms": 1.567667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:55.752547463Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:01:54.241395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178006, - "rtt_ms": 1.178006, + "rtt_ns": 1750750, + "rtt_ms": 1.75075, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:55.752580133Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:54.241545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180376, - "rtt_ms": 1.180376, + "rtt_ns": 2486792, + "rtt_ms": 2.486792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.752689113Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:54.24161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417695, - "rtt_ms": 1.417695, + "rtt_ns": 1838959, + "rtt_ms": 1.838959, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "677", - "timestamp": "2025-11-27T01:21:55.753166781Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:54.241686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519015, - "rtt_ms": 1.519015, + "rtt_ns": 1154916, + "rtt_ms": 1.154916, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "141", - "timestamp": "2025-11-27T01:21:55.753219861Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:54.242494-08:00" }, { "operation": "add_edge", - "rtt_ns": 877777, - "rtt_ms": 0.877777, + "rtt_ns": 1333834, + "rtt_ms": 1.333834, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:55.753245121Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.242714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687014, - "rtt_ms": 1.687014, + "rtt_ns": 1047500, + "rtt_ms": 1.0475, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.75332655Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:54.242734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015667, - "rtt_ms": 1.015667, + "rtt_ns": 1704375, + "rtt_ms": 1.704375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:55.75353353Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.242787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000757, - "rtt_ms": 1.000757, + "rtt_ns": 1402167, + "rtt_ms": 1.402167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:55.75354939Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.242798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170106, - "rtt_ms": 1.170106, + "rtt_ns": 1258417, + "rtt_ms": 1.258417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.75356272Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:54.242804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124497, - "rtt_ms": 1.124497, + "rtt_ns": 1666167, + "rtt_ms": 1.666167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.75359646Z" + "vertex_to": "141", + "timestamp": "2025-11-27T04:01:54.242846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017547, - "rtt_ms": 1.017547, + "rtt_ns": 1587500, + "rtt_ms": 1.5875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "180", - "timestamp": "2025-11-27T01:21:55.754185748Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:54.242865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526574, - "rtt_ms": 1.526574, + "rtt_ns": 1255625, + "rtt_ms": 1.255625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:55.754218417Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:54.242874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823624, - "rtt_ms": 1.823624, + "rtt_ns": 2344375, + "rtt_ms": 2.344375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.754405577Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.243444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170206, - "rtt_ms": 1.170206, + "rtt_ns": 1393666, + "rtt_ms": 1.393666, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "675", - "timestamp": "2025-11-27T01:21:55.754418897Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.244129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222376, - "rtt_ms": 1.222376, + "rtt_ns": 1475542, + "rtt_ms": 1.475542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.754443247Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:54.244264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242936, - "rtt_ms": 1.242936, + "rtt_ns": 1552875, + "rtt_ms": 1.552875, "checkpoint": 0, "vertex_from": "128", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.754570796Z" + "timestamp": "2025-11-27T04:01:54.244352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343635, - "rtt_ms": 1.343635, + "rtt_ns": 1585417, + "rtt_ms": 1.585417, "checkpoint": 0, "vertex_from": "128", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.754878355Z" + "timestamp": "2025-11-27T04:01:54.24439-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1691834, + "rtt_ms": 1.691834, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "180", + "timestamp": "2025-11-27T04:01:54.244407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808314, - "rtt_ms": 1.808314, + "rtt_ns": 1600833, + "rtt_ms": 1.600833, "checkpoint": 0, "vertex_from": "128", "vertex_to": "533", - "timestamp": "2025-11-27T01:21:55.755359824Z" + "timestamp": "2025-11-27T04:01:54.244455-08:00" }, { "operation": "add_edge", - "rtt_ns": 2289352, - "rtt_ms": 2.289352, + "rtt_ns": 1604333, + "rtt_ms": 1.604333, "checkpoint": 0, "vertex_from": "128", "vertex_to": "626", - "timestamp": "2025-11-27T01:21:55.755857142Z" + "timestamp": "2025-11-27T04:01:54.24447-08:00" }, { "operation": "add_edge", - "rtt_ns": 2307322, - "rtt_ms": 2.307322, + "rtt_ns": 1026458, + "rtt_ms": 1.026458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:55.755905912Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:54.244472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515905, - "rtt_ms": 1.515905, + "rtt_ns": 2088417, + "rtt_ms": 2.088417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.755936362Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:54.244584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750034, - "rtt_ms": 1.750034, + "rtt_ns": 1756625, + "rtt_ms": 1.756625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:55.755937652Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:54.244632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675124, - "rtt_ms": 1.675124, + "rtt_ns": 1426125, + "rtt_ms": 1.426125, "checkpoint": 0, "vertex_from": "128", "vertex_to": "184", - "timestamp": "2025-11-27T01:21:55.756084051Z" + "timestamp": "2025-11-27T04:01:54.245691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642794, - "rtt_ms": 1.642794, + "rtt_ns": 1404458, + "rtt_ms": 1.404458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "970", - "timestamp": "2025-11-27T01:21:55.756088761Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.245757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898894, - "rtt_ms": 1.898894, + "rtt_ns": 1716792, + "rtt_ms": 1.716792, "checkpoint": 0, "vertex_from": "128", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:55.756118411Z" + "timestamp": "2025-11-27T04:01:54.245847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569025, - "rtt_ms": 1.569025, + "rtt_ns": 1280333, + "rtt_ms": 1.280333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.756141641Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:54.245865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325936, - "rtt_ms": 1.325936, + "rtt_ns": 1561709, + "rtt_ms": 1.561709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.756206601Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:54.24597-08:00" }, { "operation": "add_edge", - "rtt_ns": 858407, - "rtt_ms": 0.858407, + "rtt_ns": 1592750, + "rtt_ms": 1.59275, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "142", - "timestamp": "2025-11-27T01:21:55.756219771Z" + "vertex_to": "970", + "timestamp": "2025-11-27T04:01:54.245984-08:00" }, { "operation": "add_edge", - "rtt_ns": 907427, - "rtt_ms": 0.907427, + "rtt_ns": 1513084, + "rtt_ms": 1.513084, "checkpoint": 0, "vertex_from": "128", "vertex_to": "263", - "timestamp": "2025-11-27T01:21:55.756765589Z" + "timestamp": "2025-11-27T04:01:54.245986-08:00" }, { "operation": "add_edge", - "rtt_ns": 848307, - "rtt_ms": 0.848307, + "rtt_ns": 1356625, + "rtt_ms": 1.356625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.756787549Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:54.245989-08:00" }, { "operation": "add_edge", - "rtt_ns": 762678, - "rtt_ms": 0.762678, + "rtt_ns": 1565750, + "rtt_ms": 1.56575, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:55.756853009Z" + "vertex_to": "142", + "timestamp": "2025-11-27T04:01:54.246039-08:00" }, { "operation": "add_edge", - "rtt_ns": 803768, - "rtt_ms": 0.803768, + "rtt_ns": 1792292, + "rtt_ms": 1.792292, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.756889889Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.246248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032767, - "rtt_ms": 1.032767, + "rtt_ns": 1026625, + "rtt_ms": 1.026625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:55.756939859Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:54.247068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127786, - "rtt_ms": 1.127786, + "rtt_ns": 1213667, + "rtt_ms": 1.213667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:55.757065138Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:54.24708-08:00" }, { "operation": "add_edge", - "rtt_ns": 968637, - "rtt_ms": 0.968637, + "rtt_ns": 1407875, + "rtt_ms": 1.407875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.757088458Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.2471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010207, - "rtt_ms": 1.010207, + "rtt_ns": 1377709, + "rtt_ms": 1.377709, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "632", - "timestamp": "2025-11-27T01:21:55.757152838Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.247136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330746, - "rtt_ms": 1.330746, + "rtt_ns": 1256250, + "rtt_ms": 1.25625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:55.757539657Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.247246-08:00" }, { "operation": "add_edge", - "rtt_ns": 921377, - "rtt_ms": 0.921377, + "rtt_ns": 1486750, + "rtt_ms": 1.48675, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:55.757710616Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.247474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538445, - "rtt_ms": 1.538445, + "rtt_ns": 1589208, + "rtt_ms": 1.589208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.757759586Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:54.247587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230676, - "rtt_ms": 1.230676, + "rtt_ns": 1757125, + "rtt_ms": 1.757125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:55.758121955Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:54.247605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424536, - "rtt_ms": 1.424536, + "rtt_ns": 1711166, + "rtt_ms": 1.711166, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.758192055Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:01:54.247681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158816, - "rtt_ms": 1.158816, + "rtt_ns": 1409125, + "rtt_ms": 1.409125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:55.758248384Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:01:54.248494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211216, - "rtt_ms": 1.211216, + "rtt_ns": 1445542, + "rtt_ms": 1.445542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:55.758751943Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:54.248546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738595, - "rtt_ms": 1.738595, + "rtt_ns": 1543917, + "rtt_ms": 1.543917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:55.758804753Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:54.248681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955054, - "rtt_ms": 1.955054, + "rtt_ns": 2463250, + "rtt_ms": 2.46325, "checkpoint": 0, "vertex_from": "128", "vertex_to": "588", - "timestamp": "2025-11-27T01:21:55.758810593Z" + "timestamp": "2025-11-27T04:01:54.248712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684535, - "rtt_ms": 1.684535, + "rtt_ns": 1536334, + "rtt_ms": 1.536334, "checkpoint": 0, "vertex_from": "128", "vertex_to": "278", - "timestamp": "2025-11-27T01:21:55.758838333Z" + "timestamp": "2025-11-27T04:01:54.248784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081683, - "rtt_ms": 2.081683, + "rtt_ns": 1333917, + "rtt_ms": 1.333917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "590", - "timestamp": "2025-11-27T01:21:55.759022882Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:54.248809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350696, - "rtt_ms": 1.350696, + "rtt_ns": 1756584, + "rtt_ms": 1.756584, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "345", - "timestamp": "2025-11-27T01:21:55.759062272Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:54.248827-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1448708, + "rtt_ms": 1.448708, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:54.249131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323406, - "rtt_ms": 1.323406, + "rtt_ns": 1545584, + "rtt_ms": 1.545584, "checkpoint": 0, "vertex_from": "128", "vertex_to": "936", - "timestamp": "2025-11-27T01:21:55.759084022Z" + "timestamp": "2025-11-27T04:01:54.249151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102506, - "rtt_ms": 1.102506, + "rtt_ns": 1635167, + "rtt_ms": 1.635167, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "964", - "timestamp": "2025-11-27T01:21:55.759295691Z" + "vertex_to": "345", + "timestamp": "2025-11-27T04:01:54.249223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524515, - "rtt_ms": 1.524515, + "rtt_ns": 1983542, + "rtt_ms": 1.983542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:55.75964778Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.250696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539096, - "rtt_ms": 1.539096, + "rtt_ns": 1971250, + "rtt_ms": 1.97125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.75978882Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:54.250783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067986, - "rtt_ms": 1.067986, + "rtt_ns": 2337833, + "rtt_ms": 2.337833, "checkpoint": 0, "vertex_from": "128", "vertex_to": "910", - "timestamp": "2025-11-27T01:21:55.759822369Z" + "timestamp": "2025-11-27T04:01:54.25102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011076, - "rtt_ms": 1.011076, + "rtt_ns": 2304541, + "rtt_ms": 2.304541, "checkpoint": 0, "vertex_from": "128", "vertex_to": "817", - "timestamp": "2025-11-27T01:21:55.759822939Z" + "timestamp": "2025-11-27T04:01:54.251089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028476, - "rtt_ms": 1.028476, + "rtt_ns": 2674042, + "rtt_ms": 2.674042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.759834299Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:01:54.25117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027156, - "rtt_ms": 1.027156, + "rtt_ns": 2363458, + "rtt_ms": 2.363458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.759867699Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:54.251191-08:00" }, { "operation": "add_edge", - "rtt_ns": 971977, - "rtt_ms": 0.971977, + "rtt_ns": 1991625, + "rtt_ms": 1.991625, "checkpoint": 0, "vertex_from": "128", "vertex_to": "537", - "timestamp": "2025-11-27T01:21:55.760269128Z" + "timestamp": "2025-11-27T04:01:54.251215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297086, - "rtt_ms": 1.297086, + "rtt_ns": 2065083, + "rtt_ms": 2.065083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:55.760360098Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:54.251217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367676, - "rtt_ms": 1.367676, + "rtt_ns": 2670917, + "rtt_ms": 2.670917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:55.760392098Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:54.251224-08:00" }, { "operation": "add_edge", - "rtt_ns": 761688, - "rtt_ms": 0.761688, + "rtt_ns": 2101417, + "rtt_ms": 2.101417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.760410608Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:54.251233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759964, - "rtt_ms": 1.759964, + "rtt_ns": 1293750, + "rtt_ms": 1.29375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.760844806Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:54.25251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032667, - "rtt_ms": 1.032667, + "rtt_ns": 1530542, + "rtt_ms": 1.530542, "checkpoint": 0, "vertex_from": "128", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.760856626Z" + "timestamp": "2025-11-27T04:01:54.25262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033057, - "rtt_ms": 1.033057, + "rtt_ns": 1454875, + "rtt_ms": 1.454875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:55.760856646Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:54.252673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225396, - "rtt_ms": 1.225396, + "rtt_ns": 1520208, + "rtt_ms": 1.520208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "460", - "timestamp": "2025-11-27T01:21:55.761015806Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:54.252691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259696, - "rtt_ms": 1.259696, + "rtt_ns": 1710917, + "rtt_ms": 1.710917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:55.761095715Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:54.252732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246046, - "rtt_ms": 1.246046, + "rtt_ns": 2105458, + "rtt_ms": 2.105458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "684", - "timestamp": "2025-11-27T01:21:55.761114985Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.252803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043077, - "rtt_ms": 1.043077, + "rtt_ns": 2062458, + "rtt_ms": 2.062458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:55.761313415Z" + "vertex_to": "460", + "timestamp": "2025-11-27T04:01:54.252846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499915, - "rtt_ms": 1.499915, + "rtt_ns": 1865125, + "rtt_ms": 1.865125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "601", - "timestamp": "2025-11-27T01:21:55.761860763Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:54.253102-08:00" }, { "operation": "add_edge", - "rtt_ns": 883927, - "rtt_ms": 0.883927, + "rtt_ns": 2062083, + "rtt_ms": 2.062083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:55.761900973Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:01:54.253254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062667, - "rtt_ms": 1.062667, + "rtt_ns": 2099250, + "rtt_ms": 2.09925, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:55.761920283Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:54.253324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062007, - "rtt_ms": 1.062007, + "rtt_ns": 1008042, + "rtt_ms": 1.008042, "checkpoint": 0, "vertex_from": "128", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:55.761920613Z" + "timestamp": "2025-11-27T04:01:54.253681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537725, - "rtt_ms": 1.537725, + "rtt_ns": 1200958, + "rtt_ms": 1.200958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:55.761930693Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:54.253822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585255, - "rtt_ms": 1.585255, + "rtt_ns": 1231959, + "rtt_ms": 1.231959, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.761997163Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:54.253925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173666, - "rtt_ms": 1.173666, + "rtt_ns": 2012208, + "rtt_ms": 2.012208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.762019282Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:54.254859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036597, - "rtt_ms": 1.036597, + "rtt_ns": 1699333, + "rtt_ms": 1.699333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:55.762133742Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:54.255024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468346, - "rtt_ms": 1.468346, + "rtt_ns": 2362541, + "rtt_ms": 2.362541, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:55.762584451Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:54.255096-08:00" }, { "operation": "add_edge", - "rtt_ns": 771898, - "rtt_ms": 0.771898, + "rtt_ns": 2343625, + "rtt_ms": 2.343625, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:55.762633481Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:54.255148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400855, - "rtt_ms": 1.400855, + "rtt_ns": 2638875, + "rtt_ms": 2.638875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:55.76271537Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.25515-08:00" }, { "operation": "add_edge", - "rtt_ns": 809767, - "rtt_ms": 0.809767, + "rtt_ns": 1282084, + "rtt_ms": 1.282084, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:55.76273187Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:54.255208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028177, - "rtt_ms": 1.028177, + "rtt_ns": 2157834, + "rtt_ms": 2.157834, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.7629605Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:54.255261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071546, - "rtt_ms": 1.071546, + "rtt_ns": 1450708, + "rtt_ms": 1.450708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "167", - "timestamp": "2025-11-27T01:21:55.762973649Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.255274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116016, - "rtt_ms": 1.116016, + "rtt_ns": 1612000, + "rtt_ms": 1.612, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:55.763037129Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:54.255294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562185, - "rtt_ms": 1.562185, + "rtt_ns": 2253958, + "rtt_ms": 2.253958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:55.763560828Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:01:54.255509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517005, - "rtt_ms": 1.517005, + "rtt_ns": 1181167, + "rtt_ms": 1.181167, "checkpoint": 0, "vertex_from": "128", "vertex_to": "277", - "timestamp": "2025-11-27T01:21:55.763652487Z" + "timestamp": "2025-11-27T04:01:54.256209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633375, - "rtt_ms": 1.633375, + "rtt_ns": 1442333, + "rtt_ms": 1.442333, "checkpoint": 0, "vertex_from": "128", "vertex_to": "612", - "timestamp": "2025-11-27T01:21:55.763654757Z" + "timestamp": "2025-11-27T04:01:54.256302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272246, - "rtt_ms": 1.272246, + "rtt_ns": 1379792, + "rtt_ms": 1.379792, "checkpoint": 0, "vertex_from": "128", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.763857797Z" + "timestamp": "2025-11-27T04:01:54.256477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427756, - "rtt_ms": 1.427756, + "rtt_ns": 1287417, + "rtt_ms": 1.287417, "checkpoint": 0, "vertex_from": "128", "vertex_to": "402", - "timestamp": "2025-11-27T01:21:55.764161436Z" + "timestamp": "2025-11-27T04:01:54.256497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506765, - "rtt_ms": 1.506765, + "rtt_ns": 1463500, + "rtt_ms": 1.4635, "checkpoint": 0, "vertex_from": "128", "vertex_to": "174", - "timestamp": "2025-11-27T01:21:55.764223215Z" + "timestamp": "2025-11-27T04:01:54.256615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632274, - "rtt_ms": 1.632274, + "rtt_ns": 1478792, + "rtt_ms": 1.478792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:55.764266775Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:54.256741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591905, - "rtt_ms": 1.591905, + "rtt_ns": 1612000, + "rtt_ms": 1.612, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:55.764555624Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:54.256761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146996, - "rtt_ms": 1.146996, + "rtt_ns": 1597375, + "rtt_ms": 1.597375, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "716", - "timestamp": "2025-11-27T01:21:55.764709844Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:01:54.256893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832484, - "rtt_ms": 1.832484, + "rtt_ns": 1751708, + "rtt_ms": 1.751708, "checkpoint": 0, "vertex_from": "128", "vertex_to": "182", - "timestamp": "2025-11-27T01:21:55.764807703Z" + "timestamp": "2025-11-27T04:01:54.257028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279836, - "rtt_ms": 1.279836, + "rtt_ns": 1725250, + "rtt_ms": 1.72525, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:55.764935093Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:54.258028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905324, - "rtt_ms": 1.905324, + "rtt_ns": 1426542, + "rtt_ms": 1.426542, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:55.765561611Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.258042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760764, - "rtt_ms": 1.760764, + "rtt_ns": 2061875, + "rtt_ms": 2.061875, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:54.258272-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1809667, + "rtt_ms": 1.809667, "checkpoint": 0, "vertex_from": "128", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:55.765620231Z" + "timestamp": "2025-11-27T04:01:54.25829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2652041, - "rtt_ms": 2.652041, + "rtt_ns": 1457667, + "rtt_ms": 1.457667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "563", - "timestamp": "2025-11-27T01:21:55.76569056Z" + "vertex_to": "874", + "timestamp": "2025-11-27T04:01:54.258351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595174, - "rtt_ms": 1.595174, + "rtt_ns": 1861084, + "rtt_ms": 1.861084, "checkpoint": 0, "vertex_from": "128", "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.76575819Z" + "timestamp": "2025-11-27T04:01:54.258359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591765, - "rtt_ms": 1.591765, + "rtt_ns": 2852792, + "rtt_ms": 2.852792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.76581601Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:54.258364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569865, - "rtt_ms": 1.569865, + "rtt_ns": 1687959, + "rtt_ms": 1.687959, "checkpoint": 0, "vertex_from": "128", "vertex_to": "705", - "timestamp": "2025-11-27T01:21:55.7658383Z" + "timestamp": "2025-11-27T04:01:54.25843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298695, - "rtt_ms": 1.298695, + "rtt_ns": 1686917, + "rtt_ms": 1.686917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "874", - "timestamp": "2025-11-27T01:21:55.766009699Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.258449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108856, - "rtt_ms": 1.108856, + "rtt_ns": 1849500, + "rtt_ms": 1.8495, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.766044929Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:54.258878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556945, - "rtt_ms": 1.556945, + "rtt_ns": 1355792, + "rtt_ms": 1.355792, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.766114049Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:01:54.259399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339346, - "rtt_ms": 1.339346, + "rtt_ns": 1405208, + "rtt_ms": 1.405208, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:55.766148819Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:54.259437-08:00" }, { "operation": "add_edge", - "rtt_ns": 642228, - "rtt_ms": 0.642228, + "rtt_ns": 1171875, + "rtt_ms": 1.171875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:55.766263759Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:54.259462-08:00" }, { "operation": "add_edge", - "rtt_ns": 714048, - "rtt_ms": 0.714048, + "rtt_ns": 1296667, + "rtt_ms": 1.296667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "745", - "timestamp": "2025-11-27T01:21:55.766277029Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:54.25957-08:00" }, { "operation": "add_edge", - "rtt_ns": 785718, - "rtt_ms": 0.785718, + "rtt_ns": 1184667, + "rtt_ms": 1.184667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.766477568Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.259634-08:00" }, { "operation": "add_edge", - "rtt_ns": 781688, - "rtt_ms": 0.781688, + "rtt_ns": 1343833, + "rtt_ms": 1.343833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "614", - "timestamp": "2025-11-27T01:21:55.766541808Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:54.259708-08:00" }, { "operation": "add_edge", - "rtt_ns": 721628, - "rtt_ms": 0.721628, + "rtt_ns": 1355708, + "rtt_ms": 1.355708, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:55.766561208Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.259786-08:00" }, { "operation": "add_edge", - "rtt_ns": 755338, - "rtt_ms": 0.755338, + "rtt_ns": 1451375, + "rtt_ms": 1.451375, "checkpoint": 0, "vertex_from": "128", "vertex_to": "172", - "timestamp": "2025-11-27T01:21:55.766572948Z" + "timestamp": "2025-11-27T04:01:54.259811-08:00" }, { "operation": "add_edge", - "rtt_ns": 682068, - "rtt_ms": 0.682068, + "rtt_ns": 2628917, + "rtt_ms": 2.628917, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.766692787Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:01:54.260981-08:00" }, { "operation": "add_edge", - "rtt_ns": 751248, - "rtt_ms": 0.751248, + "rtt_ns": 1748000, + "rtt_ms": 1.748, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.766797027Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:54.261212-08:00" }, { "operation": "add_edge", - "rtt_ns": 981577, - "rtt_ms": 0.981577, + "rtt_ns": 2349833, + "rtt_ms": 2.349833, "checkpoint": 0, "vertex_from": "128", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:55.767097566Z" + "timestamp": "2025-11-27T04:01:54.261229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075756, - "rtt_ms": 1.075756, + "rtt_ns": 1834791, + "rtt_ms": 1.834791, "checkpoint": 0, "vertex_from": "128", "vertex_to": "220", - "timestamp": "2025-11-27T01:21:55.767225935Z" + "timestamp": "2025-11-27T04:01:54.261237-08:00" }, { "operation": "add_edge", - "rtt_ns": 811587, - "rtt_ms": 0.811587, + "rtt_ns": 1461417, + "rtt_ms": 1.461417, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:55.767290535Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.261249-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1627250, + "rtt_ms": 1.62725, + "checkpoint": 0, + "vertex_from": "128", + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:54.261263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115926, - "rtt_ms": 1.115926, + "rtt_ns": 1824833, + "rtt_ms": 1.824833, "checkpoint": 0, "vertex_from": "128", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:55.767381285Z" + "timestamp": "2025-11-27T04:01:54.261263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202606, - "rtt_ms": 1.202606, + "rtt_ns": 1836958, + "rtt_ms": 1.836958, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:55.767480744Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:54.261408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591644, - "rtt_ms": 1.591644, + "rtt_ns": 1768583, + "rtt_ms": 1.768583, "checkpoint": 0, "vertex_from": "128", "vertex_to": "338", - "timestamp": "2025-11-27T01:21:55.768153982Z" + "timestamp": "2025-11-27T04:01:54.261478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689914, - "rtt_ms": 1.689914, + "rtt_ns": 1715875, + "rtt_ms": 1.715875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:55.768233102Z" + "vertex_to": "798", + "timestamp": "2025-11-27T04:01:54.261527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693284, - "rtt_ms": 1.693284, + "rtt_ns": 986333, + "rtt_ms": 0.986333, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.768268492Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.262199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499935, - "rtt_ms": 1.499935, + "rtt_ns": 1237792, + "rtt_ms": 1.237792, "checkpoint": 0, "vertex_from": "128", "vertex_to": "801", - "timestamp": "2025-11-27T01:21:55.768299492Z" + "timestamp": "2025-11-27T04:01:54.26222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210946, - "rtt_ms": 1.210946, + "rtt_ns": 1815833, + "rtt_ms": 1.815833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.768310122Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:54.263066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693715, - "rtt_ms": 1.693715, + "rtt_ns": 1841875, + "rtt_ms": 1.841875, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "798", - "timestamp": "2025-11-27T01:21:55.768387702Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:54.263082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139546, - "rtt_ms": 1.139546, + "rtt_ns": 1821834, + "rtt_ms": 1.821834, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:55.768431741Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:54.263086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401496, - "rtt_ms": 1.401496, + "rtt_ns": 1834083, + "rtt_ms": 1.834083, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:55.768628951Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:54.263097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283826, - "rtt_ms": 1.283826, + "rtt_ns": 1603458, + "rtt_ms": 1.603458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:55.768666521Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:54.263133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357676, - "rtt_ms": 1.357676, + "rtt_ns": 1870250, + "rtt_ms": 1.87025, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:55.769513658Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:54.263279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066414, - "rtt_ms": 2.066414, + "rtt_ns": 1962042, + "rtt_ms": 1.962042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:55.769548458Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:54.263442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341956, - "rtt_ms": 1.341956, + "rtt_ns": 1338291, + "rtt_ms": 1.338291, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:55.769576798Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:54.263559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203377, - "rtt_ms": 1.203377, + "rtt_ns": 1508500, + "rtt_ms": 1.5085, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "846", - "timestamp": "2025-11-27T01:21:55.769636768Z" + "vertex_to": "682", + "timestamp": "2025-11-27T04:01:54.263708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1336826, - "rtt_ms": 1.336826, + "rtt_ns": 873042, + "rtt_ms": 0.873042, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:55.769637778Z" + "vertex_to": "846", + "timestamp": "2025-11-27T04:01:54.26394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476815, - "rtt_ms": 1.476815, + "rtt_ns": 1217833, + "rtt_ms": 1.217833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:55.769748337Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:54.2643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435115, - "rtt_ms": 1.435115, + "rtt_ns": 3371667, + "rtt_ms": 3.371667, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.769825327Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:54.264602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817974, - "rtt_ms": 1.817974, + "rtt_ns": 1883833, + "rtt_ms": 1.883833, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:55.770448565Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:54.264982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2236393, - "rtt_ms": 2.236393, + "rtt_ns": 2135458, + "rtt_ms": 2.135458, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "682", - "timestamp": "2025-11-27T01:21:55.770548315Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:54.265222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897164, - "rtt_ms": 1.897164, + "rtt_ns": 2274125, + "rtt_ms": 2.274125, "checkpoint": 0, "vertex_from": "128", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:55.770565105Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:54.265409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252656, - "rtt_ms": 1.252656, + "rtt_ns": 1581750, + "rtt_ms": 1.58175, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.770891904Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:54.265522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401785, - "rtt_ms": 1.401785, + "rtt_ns": 1491375, + "rtt_ms": 1.491375, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:55.770952193Z" + "vertex_from": "129", + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:54.265794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469245, - "rtt_ms": 1.469245, + "rtt_ns": 1233208, + "rtt_ms": 1.233208, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:55.770992053Z" + "vertex_from": "129", + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.266218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450625, - "rtt_ms": 1.450625, + "rtt_ns": 1844417, + "rtt_ms": 1.844417, "checkpoint": 0, - "vertex_from": "128", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:55.771030083Z" + "vertex_from": "129", + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:54.26645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394315, - "rtt_ms": 1.394315, + "rtt_ns": 1198917, + "rtt_ms": 1.198917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.771034913Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.266609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301876, - "rtt_ms": 1.301876, + "rtt_ns": 1181084, + "rtt_ms": 1.181084, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.771051923Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.266704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266516, - "rtt_ms": 1.266516, + "rtt_ns": 983875, + "rtt_ms": 0.983875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:55.771093553Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.266779-08:00" }, { "operation": "add_edge", - "rtt_ns": 684628, - "rtt_ms": 0.684628, + "rtt_ns": 3685834, + "rtt_ms": 3.685834, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.771135303Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.267129-08:00" }, { "operation": "add_edge", - "rtt_ns": 596648, - "rtt_ms": 0.596648, + "rtt_ns": 3874166, + "rtt_ms": 3.874166, "checkpoint": 0, - "vertex_from": "129", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:55.771146593Z" + "vertex_from": "128", + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:54.267155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139726, - "rtt_ms": 1.139726, + "rtt_ns": 3633125, + "rtt_ms": 3.633125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.771707181Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:54.267193-08:00" }, { "operation": "add_edge", - "rtt_ns": 790848, - "rtt_ms": 0.790848, + "rtt_ns": 2061208, + "rtt_ms": 2.061208, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.771745221Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:01:54.267284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099926, - "rtt_ms": 1.099926, + "rtt_ns": 1502209, + "rtt_ms": 1.502209, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "790", - "timestamp": "2025-11-27T01:21:55.77199325Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.267955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160547, - "rtt_ms": 1.160547, + "rtt_ns": 4302875, + "rtt_ms": 4.302875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.77215406Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.268012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626525, - "rtt_ms": 1.626525, + "rtt_ns": 1833375, + "rtt_ms": 1.833375, "checkpoint": 0, "vertex_from": "129", "vertex_to": "165", - "timestamp": "2025-11-27T01:21:55.772663358Z" + "timestamp": "2025-11-27T04:01:54.268052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643595, - "rtt_ms": 1.643595, + "rtt_ns": 1623125, + "rtt_ms": 1.623125, "checkpoint": 0, "vertex_from": "129", "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.772739148Z" + "timestamp": "2025-11-27T04:01:54.268233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087096, - "rtt_ms": 1.087096, + "rtt_ns": 1583084, + "rtt_ms": 1.583084, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.772795897Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.268288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763724, - "rtt_ms": 1.763724, + "rtt_ns": 1774084, + "rtt_ms": 1.774084, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.772819747Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.268556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690364, - "rtt_ms": 1.690364, + "rtt_ns": 1506208, + "rtt_ms": 1.506208, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.772826567Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:54.268662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691944, - "rtt_ms": 1.691944, + "rtt_ns": 1448041, + "rtt_ms": 1.448041, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.772840207Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:54.269461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837984, - "rtt_ms": 1.837984, + "rtt_ns": 2353042, + "rtt_ms": 2.353042, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.772873187Z" + "vertex_to": "750", + "timestamp": "2025-11-27T04:01:54.269547-08:00" }, { "operation": "add_edge", - "rtt_ns": 788227, - "rtt_ms": 0.788227, + "rtt_ns": 2585459, + "rtt_ms": 2.585459, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:55.773528635Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.269716-08:00" }, { "operation": "add_edge", - "rtt_ns": 950047, - "rtt_ms": 0.950047, + "rtt_ns": 1663042, + "rtt_ms": 1.663042, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.773614775Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.269716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478095, - "rtt_ms": 1.478095, + "rtt_ns": 2472459, + "rtt_ms": 2.472459, "checkpoint": 0, "vertex_from": "129", "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.773633765Z" + "timestamp": "2025-11-27T04:01:54.269758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723754, - "rtt_ms": 1.723754, + "rtt_ns": 1810542, + "rtt_ms": 1.810542, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "750", - "timestamp": "2025-11-27T01:21:55.773718664Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.269766-08:00" }, { "operation": "add_edge", - "rtt_ns": 980087, - "rtt_ms": 0.980087, + "rtt_ns": 1623250, + "rtt_ms": 1.62325, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.773801234Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.27018-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093433, - "rtt_ms": 2.093433, + "rtt_ns": 1943625, + "rtt_ms": 1.943625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "488", - "timestamp": "2025-11-27T01:21:55.773839854Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.270234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465935, - "rtt_ms": 1.465935, + "rtt_ns": 3137208, + "rtt_ms": 3.137208, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.774340922Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.271371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680325, - "rtt_ms": 1.680325, + "rtt_ns": 1724625, + "rtt_ms": 1.724625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.774522662Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.271441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746815, - "rtt_ms": 1.746815, + "rtt_ns": 2865375, + "rtt_ms": 2.865375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.774543862Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.271528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029006, - "rtt_ms": 1.029006, + "rtt_ns": 2011959, + "rtt_ms": 2.011959, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.774559381Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.271561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749594, - "rtt_ms": 1.749594, + "rtt_ns": 2173042, + "rtt_ms": 2.173042, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.774577331Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.271635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534244, - "rtt_ms": 1.534244, + "rtt_ns": 2114625, + "rtt_ms": 2.114625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.775169639Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.271874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839323, - "rtt_ms": 1.839323, + "rtt_ns": 2110000, + "rtt_ms": 2.11, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.775455238Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:54.271877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094123, - "rtt_ms": 2.094123, + "rtt_ns": 1794625, + "rtt_ms": 1.794625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:55.775936047Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:54.271976-08:00" }, { "operation": "add_edge", - "rtt_ns": 2318553, - "rtt_ms": 2.318553, + "rtt_ns": 1833292, + "rtt_ms": 1.833292, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.776039617Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.272069-08:00" }, { "operation": "add_edge", - "rtt_ns": 2324412, - "rtt_ms": 2.324412, + "rtt_ns": 2393167, + "rtt_ms": 2.393167, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.776126876Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.27211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199303, - "rtt_ms": 2.199303, + "rtt_ns": 1414333, + "rtt_ms": 1.414333, "checkpoint": 0, "vertex_from": "129", "vertex_to": "278", - "timestamp": "2025-11-27T01:21:55.776744344Z" + "timestamp": "2025-11-27T04:01:54.272787-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224773, - "rtt_ms": 2.224773, + "rtt_ns": 1437334, + "rtt_ms": 1.437334, "checkpoint": 0, "vertex_from": "129", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:55.776786694Z" + "timestamp": "2025-11-27T04:01:54.27288-08:00" }, { "operation": "add_edge", - "rtt_ns": 2270783, - "rtt_ms": 2.270783, + "rtt_ns": 1495416, + "rtt_ms": 1.495416, "checkpoint": 0, "vertex_from": "129", "vertex_to": "444", - "timestamp": "2025-11-27T01:21:55.776850504Z" + "timestamp": "2025-11-27T04:01:54.273024-08:00" }, { "operation": "add_edge", - "rtt_ns": 2524412, - "rtt_ms": 2.524412, + "rtt_ns": 1608791, + "rtt_ms": 1.608791, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.776866604Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:54.273245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355122, - "rtt_ms": 2.355122, + "rtt_ns": 1446959, + "rtt_ms": 1.446959, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.776879674Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:01:54.273325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716815, - "rtt_ms": 1.716815, + "rtt_ns": 1378208, + "rtt_ms": 1.378208, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:55.776889454Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.273357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486916, - "rtt_ms": 1.486916, + "rtt_ns": 1719625, + "rtt_ms": 1.719625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:55.776943684Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:54.273594-08:00" }, { "operation": "add_edge", - "rtt_ns": 756518, - "rtt_ms": 0.756518, + "rtt_ns": 1526041, + "rtt_ms": 1.526041, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.777501842Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:01:54.273638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637074, - "rtt_ms": 1.637074, + "rtt_ns": 1623916, + "rtt_ms": 1.623916, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "425", - "timestamp": "2025-11-27T01:21:55.777678541Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.273694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828474, - "rtt_ms": 1.828474, + "rtt_ns": 986542, + "rtt_ms": 0.986542, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:55.777766891Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:54.273774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468935, - "rtt_ms": 1.468935, + "rtt_ns": 2736167, + "rtt_ms": 2.736167, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:55.778321709Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:54.274298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489135, - "rtt_ms": 1.489135, + "rtt_ns": 1851792, + "rtt_ms": 1.851792, "checkpoint": 0, "vertex_from": "129", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.778370169Z" + "timestamp": "2025-11-27T04:01:54.274877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2330003, - "rtt_ms": 2.330003, + "rtt_ns": 1284500, + "rtt_ms": 1.2845, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.778458029Z" + "vertex_to": "371", + "timestamp": "2025-11-27T04:01:54.274881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672555, - "rtt_ms": 1.672555, + "rtt_ns": 1235333, + "rtt_ms": 1.235333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "227", - "timestamp": "2025-11-27T01:21:55.778460639Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:54.274931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605175, - "rtt_ms": 1.605175, + "rtt_ns": 1739209, + "rtt_ms": 1.739209, "checkpoint": 0, "vertex_from": "129", "vertex_to": "150", - "timestamp": "2025-11-27T01:21:55.778496499Z" + "timestamp": "2025-11-27T04:01:54.274986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636255, - "rtt_ms": 1.636255, + "rtt_ns": 1677000, + "rtt_ms": 1.677, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.778504169Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.275003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577535, - "rtt_ms": 1.577535, + "rtt_ns": 2357250, + "rtt_ms": 2.35725, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.778522839Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.275238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685385, - "rtt_ms": 1.685385, + "rtt_ns": 1516500, + "rtt_ms": 1.5165, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "371", - "timestamp": "2025-11-27T01:21:55.779371306Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:01:54.275291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071787, - "rtt_ms": 1.071787, + "rtt_ns": 1985667, + "rtt_ms": 1.985667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:55.779394546Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.275344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625205, - "rtt_ms": 1.625205, + "rtt_ns": 1227000, + "rtt_ms": 1.227, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:55.779394826Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:01:54.275527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994144, - "rtt_ms": 1.994144, + "rtt_ns": 1899083, + "rtt_ms": 1.899083, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.779498316Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:54.275539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163796, - "rtt_ms": 1.163796, + "rtt_ns": 1097125, + "rtt_ms": 1.097125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "730", - "timestamp": "2025-11-27T01:21:55.779536005Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:54.27598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634095, - "rtt_ms": 1.634095, + "rtt_ns": 1680250, + "rtt_ms": 1.68025, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.780096424Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:54.276612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761994, - "rtt_ms": 1.761994, + "rtt_ns": 1283125, + "rtt_ms": 1.283125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:55.780267703Z" + "vertex_to": "728", + "timestamp": "2025-11-27T04:01:54.276628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842364, - "rtt_ms": 1.842364, + "rtt_ns": 1666500, + "rtt_ms": 1.6665, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "865", - "timestamp": "2025-11-27T01:21:55.780301923Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.276671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782384, - "rtt_ms": 1.782384, + "rtt_ns": 1192416, + "rtt_ms": 1.192416, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.780306693Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.27672-08:00" }, { "operation": "add_edge", - "rtt_ns": 1811234, - "rtt_ms": 1.811234, + "rtt_ns": 1764333, + "rtt_ms": 1.764333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:55.780309063Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:54.276752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614215, - "rtt_ms": 1.614215, + "rtt_ns": 1460709, + "rtt_ms": 1.460709, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.781010691Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:01:54.276753-08:00" }, { "operation": "add_edge", - "rtt_ns": 922037, - "rtt_ms": 0.922037, + "rtt_ns": 2036083, + "rtt_ms": 2.036083, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.781019691Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.276914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641365, - "rtt_ms": 1.641365, + "rtt_ns": 1928000, + "rtt_ms": 1.928, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "721", - "timestamp": "2025-11-27T01:21:55.781038261Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:54.277167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664975, - "rtt_ms": 1.664975, + "rtt_ns": 1628208, + "rtt_ms": 1.628208, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.781038881Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.277168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517136, - "rtt_ms": 1.517136, + "rtt_ns": 1780458, + "rtt_ms": 1.780458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.781054211Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:54.277763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613324, - "rtt_ms": 1.613324, + "rtt_ns": 1101333, + "rtt_ms": 1.101333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "728", - "timestamp": "2025-11-27T01:21:55.78111385Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:54.277773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515185, - "rtt_ms": 1.515185, + "rtt_ns": 1499000, + "rtt_ms": 1.499, "checkpoint": 0, "vertex_from": "129", "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.781823428Z" + "timestamp": "2025-11-27T04:01:54.278128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557075, - "rtt_ms": 1.557075, + "rtt_ns": 1488833, + "rtt_ms": 1.488833, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:55.781826648Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:01:54.278242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530155, - "rtt_ms": 1.530155, + "rtt_ns": 1686250, + "rtt_ms": 1.68625, "checkpoint": 0, "vertex_from": "129", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.781833288Z" + "timestamp": "2025-11-27T04:01:54.2783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547555, - "rtt_ms": 1.547555, + "rtt_ns": 1763250, + "rtt_ms": 1.76325, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:55.781858418Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:01:54.278486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698314, - "rtt_ms": 1.698314, + "rtt_ns": 1622584, + "rtt_ms": 1.622584, "checkpoint": 0, "vertex_from": "129", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.782740405Z" + "timestamp": "2025-11-27T04:01:54.278538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819164, - "rtt_ms": 1.819164, + "rtt_ns": 1397375, + "rtt_ms": 1.397375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "849", - "timestamp": "2025-11-27T01:21:55.782841245Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:54.278566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823484, - "rtt_ms": 1.823484, + "rtt_ns": 1962209, + "rtt_ms": 1.962209, "checkpoint": 0, "vertex_from": "129", "vertex_to": "600", - "timestamp": "2025-11-27T01:21:55.782863305Z" + "timestamp": "2025-11-27T04:01:54.278716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851074, - "rtt_ms": 1.851074, + "rtt_ns": 1613291, + "rtt_ms": 1.613291, "checkpoint": 0, "vertex_from": "129", "vertex_to": "713", - "timestamp": "2025-11-27T01:21:55.782907035Z" + "timestamp": "2025-11-27T04:01:54.278781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2278813, - "rtt_ms": 2.278813, + "rtt_ns": 1721166, + "rtt_ms": 1.721166, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "604", - "timestamp": "2025-11-27T01:21:55.783290744Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.279495-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316923, - "rtt_ms": 2.316923, + "rtt_ns": 2129584, + "rtt_ms": 2.129584, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:55.783431903Z" + "vertex_to": "969", + "timestamp": "2025-11-27T04:01:54.279895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594075, - "rtt_ms": 1.594075, + "rtt_ns": 1783375, + "rtt_ms": 1.783375, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.783453673Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:54.279912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665185, - "rtt_ms": 1.665185, + "rtt_ns": 1756958, + "rtt_ms": 1.756958, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "969", - "timestamp": "2025-11-27T01:21:55.783489763Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:54.280058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661775, - "rtt_ms": 1.661775, + "rtt_ns": 1585583, + "rtt_ms": 1.585583, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.783496993Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:54.280072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684415, - "rtt_ms": 1.684415, + "rtt_ns": 1828875, + "rtt_ms": 1.828875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.783512303Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.280072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500205, - "rtt_ms": 1.500205, + "rtt_ns": 1552458, + "rtt_ms": 1.552458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:55.78424253Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.280119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427605, - "rtt_ms": 1.427605, + "rtt_ns": 1505500, + "rtt_ms": 1.5055, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.78433598Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:54.280287-08:00" }, { "operation": "add_edge", - "rtt_ns": 943377, - "rtt_ms": 0.943377, + "rtt_ns": 1574916, + "rtt_ms": 1.574916, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:55.78437641Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:54.280292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604035, - "rtt_ms": 1.604035, + "rtt_ns": 1851834, + "rtt_ms": 1.851834, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:55.78444703Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.28039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074496, - "rtt_ms": 1.074496, + "rtt_ns": 1184834, + "rtt_ms": 1.184834, "checkpoint": 0, "vertex_from": "129", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.784529909Z" + "timestamp": "2025-11-27T04:01:54.280681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710464, - "rtt_ms": 1.710464, + "rtt_ns": 1300834, + "rtt_ms": 1.300834, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.784575359Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:54.281375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120676, - "rtt_ms": 1.120676, + "rtt_ns": 1090958, + "rtt_ms": 1.090958, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:55.784618749Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:54.281385-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378365, - "rtt_ms": 1.378365, + "rtt_ns": 1337875, + "rtt_ms": 1.337875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:55.784670629Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.281458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117647, - "rtt_ms": 1.117647, + "rtt_ns": 1748458, + "rtt_ms": 1.748458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.785361997Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:54.281661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970403, - "rtt_ms": 1.970403, + "rtt_ns": 1390708, + "rtt_ms": 1.390708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:55.785461076Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.281678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994713, - "rtt_ms": 1.994713, + "rtt_ns": 1797292, + "rtt_ms": 1.797292, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.785508166Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:54.281693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430825, - "rtt_ms": 1.430825, + "rtt_ns": 1743208, + "rtt_ms": 1.743208, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:55.785767705Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.281804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577295, - "rtt_ms": 1.577295, + "rtt_ns": 1768750, + "rtt_ms": 1.76875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.785955545Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.281842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543465, - "rtt_ms": 1.543465, + "rtt_ns": 1301041, + "rtt_ms": 1.301041, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.785991535Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:54.281983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1982114, - "rtt_ms": 1.982114, + "rtt_ns": 1630292, + "rtt_ms": 1.630292, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:55.786602283Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:54.282021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132353, - "rtt_ms": 2.132353, + "rtt_ns": 1277875, + "rtt_ms": 1.277875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:55.786663272Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:54.282655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320075, - "rtt_ms": 1.320075, + "rtt_ns": 1304333, + "rtt_ms": 1.304333, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:55.786683182Z" + "vertex_to": "922", + "timestamp": "2025-11-27T04:01:54.282983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224706, - "rtt_ms": 1.224706, + "rtt_ns": 1325583, + "rtt_ms": 1.325583, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.786687952Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:54.28302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134403, - "rtt_ms": 2.134403, + "rtt_ns": 2098875, + "rtt_ms": 2.098875, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:55.786710882Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:54.283761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2046913, - "rtt_ms": 2.046913, + "rtt_ns": 1762458, + "rtt_ms": 1.762458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:55.786718752Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:54.283785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062737, - "rtt_ms": 1.062737, + "rtt_ns": 2000625, + "rtt_ms": 2.000625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "922", - "timestamp": "2025-11-27T01:21:55.786831332Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.283807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357576, - "rtt_ms": 1.357576, + "rtt_ns": 2364250, + "rtt_ms": 2.36425, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.786866892Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:54.283823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488305, - "rtt_ms": 1.488305, + "rtt_ns": 2207458, + "rtt_ms": 2.207458, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:55.78744583Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.28405-08:00" }, { "operation": "add_edge", - "rtt_ns": 2306812, - "rtt_ms": 2.306812, + "rtt_ns": 1530250, + "rtt_ms": 1.53025, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.788299807Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.284186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805464, - "rtt_ms": 1.805464, + "rtt_ns": 2316500, + "rtt_ms": 2.3165, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:55.788517386Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:54.284301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916504, - "rtt_ms": 1.916504, + "rtt_ns": 2983125, + "rtt_ms": 2.983125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:55.788636396Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:54.284369-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579162, - "rtt_ms": 2.579162, + "rtt_ns": 1400250, + "rtt_ms": 1.40025, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:55.789243504Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:54.284385-08:00" }, { "operation": "add_edge", - "rtt_ns": 2764691, - "rtt_ms": 2.764691, + "rtt_ns": 1329500, + "rtt_ms": 1.3295, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.789369154Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:54.285716-08:00" }, { "operation": "add_edge", - "rtt_ns": 2681152, - "rtt_ms": 2.681152, + "rtt_ns": 2036667, + "rtt_ms": 2.036667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.789370524Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.28586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956643, - "rtt_ms": 1.956643, + "rtt_ns": 2090666, + "rtt_ms": 2.090666, "checkpoint": 0, "vertex_from": "129", "vertex_to": "330", - "timestamp": "2025-11-27T01:21:55.789404743Z" + "timestamp": "2025-11-27T04:01:54.285899-08:00" }, { "operation": "add_edge", - "rtt_ns": 2755331, - "rtt_ms": 2.755331, + "rtt_ns": 2206625, + "rtt_ms": 2.206625, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:55.789440033Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:54.285992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2664681, - "rtt_ms": 2.664681, + "rtt_ns": 2430791, + "rtt_ms": 2.430791, "checkpoint": 0, "vertex_from": "129", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.789497733Z" + "timestamp": "2025-11-27T04:01:54.286193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420585, - "rtt_ms": 1.420585, + "rtt_ns": 2198542, + "rtt_ms": 2.198542, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.790058601Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:54.28625-08:00" }, { "operation": "add_edge", - "rtt_ns": 3215049, - "rtt_ms": 3.215049, + "rtt_ns": 2033666, + "rtt_ms": 2.033666, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:55.790082891Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:54.286336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866244, - "rtt_ms": 1.866244, + "rtt_ns": 1988833, + "rtt_ms": 1.988833, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.790176141Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:54.286359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756995, - "rtt_ms": 1.756995, + "rtt_ns": 2231958, + "rtt_ms": 2.231958, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:55.790276751Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.286419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044057, - "rtt_ms": 1.044057, + "rtt_ns": 3515917, + "rtt_ms": 3.515917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:55.790288961Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:54.286537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451136, - "rtt_ms": 1.451136, + "rtt_ns": 1233917, + "rtt_ms": 1.233917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.790857669Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:01:54.287095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628314, - "rtt_ms": 1.628314, + "rtt_ns": 1273667, + "rtt_ms": 1.273667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:55.790999458Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:54.287173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632464, - "rtt_ms": 1.632464, + "rtt_ns": 1529125, + "rtt_ms": 1.529125, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:55.791005068Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.287246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553935, - "rtt_ms": 1.553935, + "rtt_ns": 1336834, + "rtt_ms": 1.336834, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:55.791054328Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:01:54.287758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617295, - "rtt_ms": 1.617295, + "rtt_ns": 1614792, + "rtt_ms": 1.614792, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "626", - "timestamp": "2025-11-27T01:21:55.791058408Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:54.287952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595535, - "rtt_ms": 1.595535, + "rtt_ns": 2205000, + "rtt_ms": 2.205, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:55.791875726Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:54.288199-08:00" }, { "operation": "add_edge", - "rtt_ns": 912157, - "rtt_ms": 0.912157, + "rtt_ns": 1746333, + "rtt_ms": 1.746333, "checkpoint": 0, "vertex_from": "129", "vertex_to": "298", - "timestamp": "2025-11-27T01:21:55.791912875Z" + "timestamp": "2025-11-27T04:01:54.288285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073066, - "rtt_ms": 1.073066, + "rtt_ns": 2132708, + "rtt_ms": 2.132708, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "497", - "timestamp": "2025-11-27T01:21:55.791932575Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:54.288327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930834, - "rtt_ms": 1.930834, + "rtt_ns": 2095917, + "rtt_ms": 2.095917, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:55.792015965Z" + "vertex_to": "242", + "timestamp": "2025-11-27T04:01:54.288354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000244, - "rtt_ms": 2.000244, + "rtt_ns": 1204667, + "rtt_ms": 1.204667, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "572", - "timestamp": "2025-11-27T01:21:55.792062375Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.288378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784694, - "rtt_ms": 1.784694, + "rtt_ns": 1342666, + "rtt_ms": 1.342666, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.792075135Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:54.288439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921414, - "rtt_ms": 1.921414, + "rtt_ns": 2119292, + "rtt_ms": 2.119292, "checkpoint": 0, "vertex_from": "129", - "vertex_to": "242", - "timestamp": "2025-11-27T01:21:55.792099295Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.288479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394886, - "rtt_ms": 1.394886, + "rtt_ns": 1311708, + "rtt_ms": 1.311708, "checkpoint": 0, - "vertex_from": "129", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.792450444Z" + "vertex_from": "130", + "vertex_to": "403", + "timestamp": "2025-11-27T04:01:54.28856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074817, - "rtt_ms": 1.074817, + "rtt_ns": 1051250, + "rtt_ms": 1.05125, "checkpoint": 0, "vertex_from": "130", "vertex_to": "801", - "timestamp": "2025-11-27T01:21:55.793010992Z" + "timestamp": "2025-11-27T04:01:54.289251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1975014, - "rtt_ms": 1.975014, + "rtt_ns": 1844667, + "rtt_ms": 1.844667, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "403", - "timestamp": "2025-11-27T01:21:55.793036122Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:54.289799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155057, - "rtt_ms": 1.155057, + "rtt_ns": 2078375, + "rtt_ms": 2.078375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:55.793071232Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.289838-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089464, - "rtt_ms": 2.089464, + "rtt_ns": 1500250, + "rtt_ms": 1.50025, "checkpoint": 0, - "vertex_from": "129", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:55.793096122Z" + "vertex_from": "130", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.289855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084067, - "rtt_ms": 1.084067, + "rtt_ns": 1601125, + "rtt_ms": 1.601125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.793102632Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.289932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789174, - "rtt_ms": 1.789174, + "rtt_ns": 1602333, + "rtt_ms": 1.602333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.79366762Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:54.289982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604605, - "rtt_ms": 1.604605, + "rtt_ns": 1566208, + "rtt_ms": 1.566208, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.79370542Z" + "vertex_to": "132", + "timestamp": "2025-11-27T04:01:54.290006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687255, - "rtt_ms": 1.687255, + "rtt_ns": 1749125, + "rtt_ms": 1.749125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.79375066Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.290036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326426, - "rtt_ms": 1.326426, + "rtt_ns": 1568416, + "rtt_ms": 1.568416, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "132", - "timestamp": "2025-11-27T01:21:55.79377945Z" + "vertex_to": "150", + "timestamp": "2025-11-27T04:01:54.290048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738224, - "rtt_ms": 1.738224, + "rtt_ns": 1037041, + "rtt_ms": 1.037041, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.793815509Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.290289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528955, - "rtt_ms": 1.528955, + "rtt_ns": 1775291, + "rtt_ms": 1.775291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "150", - "timestamp": "2025-11-27T01:21:55.794541857Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.290337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575035, - "rtt_ms": 1.575035, + "rtt_ns": 1242833, + "rtt_ms": 1.242833, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.794672847Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.29128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663485, - "rtt_ms": 1.663485, + "rtt_ns": 1303417, + "rtt_ms": 1.303417, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.794701957Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.291286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640285, - "rtt_ms": 1.640285, + "rtt_ns": 1484000, + "rtt_ms": 1.484, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.794713537Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.291533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105996, - "rtt_ms": 1.105996, + "rtt_ns": 1661500, + "rtt_ms": 1.6615, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.794775096Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.291594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100136, - "rtt_ms": 1.100136, + "rtt_ns": 1810583, + "rtt_ms": 1.810583, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.794806156Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.29161-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301032, - "rtt_ms": 2.301032, + "rtt_ns": 1818375, + "rtt_ms": 1.818375, "checkpoint": 0, "vertex_from": "130", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.795405124Z" + "timestamp": "2025-11-27T04:01:54.291657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904114, - "rtt_ms": 1.904114, + "rtt_ns": 1819167, + "rtt_ms": 1.819167, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.795656064Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.291675-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1873664, - "rtt_ms": 1.873664, + "rtt_ns": 1740625, + "rtt_ms": 1.740625, "checkpoint": 0, "vertex_from": "783", - "timestamp": "2025-11-27T01:21:55.795660484Z" + "timestamp": "2025-11-27T04:01:54.291751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033906, - "rtt_ms": 1.033906, + "rtt_ns": 1422291, + "rtt_ms": 1.422291, "checkpoint": 0, "vertex_from": "130", "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.795736513Z" + "timestamp": "2025-11-27T04:01:54.29176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1956904, - "rtt_ms": 1.956904, + "rtt_ns": 1496875, + "rtt_ms": 1.496875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.795774143Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.291787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241426, - "rtt_ms": 1.241426, + "rtt_ns": 1944333, + "rtt_ms": 1.944333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.795785353Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:54.293227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147496, - "rtt_ms": 1.147496, + "rtt_ns": 2005500, + "rtt_ms": 2.0055, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.795821443Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:54.293601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671725, - "rtt_ms": 1.671725, + "rtt_ns": 2313375, + "rtt_ms": 2.313375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.796479081Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.293601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773015, - "rtt_ms": 1.773015, + "rtt_ns": 1960500, + "rtt_ms": 1.9605, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.796550401Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:54.293618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868943, - "rtt_ms": 1.868943, + "rtt_ns": 1869333, + "rtt_ms": 1.869333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:55.79658391Z" + "vertex_to": "783", + "timestamp": "2025-11-27T04:01:54.293621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626005, - "rtt_ms": 1.626005, + "rtt_ns": 2007250, + "rtt_ms": 2.00725, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:55.797032629Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:54.293683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361306, - "rtt_ms": 1.361306, + "rtt_ns": 2566250, + "rtt_ms": 2.56625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:55.797099799Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:54.294327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451195, - "rtt_ms": 1.451195, + "rtt_ns": 2555292, + "rtt_ms": 2.555292, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.797109129Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.294344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488055, - "rtt_ms": 1.488055, + "rtt_ns": 2829208, + "rtt_ms": 2.829208, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "783", - "timestamp": "2025-11-27T01:21:55.797149139Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:54.294363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736244, - "rtt_ms": 1.736244, + "rtt_ns": 2795333, + "rtt_ms": 2.795333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.797559177Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:54.294407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875164, - "rtt_ms": 1.875164, + "rtt_ns": 1609958, + "rtt_ms": 1.609958, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "901", - "timestamp": "2025-11-27T01:21:55.797662137Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:54.294838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243346, - "rtt_ms": 1.243346, + "rtt_ns": 1267792, + "rtt_ms": 1.267792, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:55.797723797Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.294952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163607, - "rtt_ms": 1.163607, + "rtt_ns": 1475500, + "rtt_ms": 1.4755, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.797748487Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:54.295077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986384, - "rtt_ms": 1.986384, + "rtt_ns": 1680333, + "rtt_ms": 1.680333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:55.797761527Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.295282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357185, - "rtt_ms": 1.357185, + "rtt_ns": 1672167, + "rtt_ms": 1.672167, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:55.797909366Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.295291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503705, - "rtt_ms": 1.503705, + "rtt_ns": 1487292, + "rtt_ms": 1.487292, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.798537074Z" + "vertex_to": "230", + "timestamp": "2025-11-27T04:01:54.295851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440125, - "rtt_ms": 1.440125, + "rtt_ns": 2317709, + "rtt_ms": 2.317709, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.798590554Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.29594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482675, - "rtt_ms": 1.482675, + "rtt_ns": 1627250, + "rtt_ms": 1.62725, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.798594134Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:54.295972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497865, - "rtt_ms": 1.497865, + "rtt_ns": 1673209, + "rtt_ms": 1.673209, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.798599264Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.296001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560525, - "rtt_ms": 1.560525, + "rtt_ns": 1668292, + "rtt_ms": 1.668292, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "230", - "timestamp": "2025-11-27T01:21:55.799223972Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:54.296621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705904, - "rtt_ms": 1.705904, + "rtt_ns": 2227458, + "rtt_ms": 2.227458, "checkpoint": 0, "vertex_from": "130", "vertex_to": "609", - "timestamp": "2025-11-27T01:21:55.799430721Z" + "timestamp": "2025-11-27T04:01:54.296637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971774, - "rtt_ms": 1.971774, + "rtt_ns": 1716125, + "rtt_ms": 1.716125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:55.799531831Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.296797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829033, - "rtt_ms": 1.829033, + "rtt_ns": 1973625, + "rtt_ms": 1.973625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "707", - "timestamp": "2025-11-27T01:21:55.79959246Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:54.296813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000556, - "rtt_ms": 1.000556, + "rtt_ns": 1535333, + "rtt_ms": 1.535333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.79959572Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:54.296828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059016, - "rtt_ms": 1.059016, + "rtt_ns": 1612583, + "rtt_ms": 1.612583, "checkpoint": 0, "vertex_from": "130", "vertex_to": "600", - "timestamp": "2025-11-27T01:21:55.79959698Z" + "timestamp": "2025-11-27T04:01:54.296896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1852993, - "rtt_ms": 1.852993, + "rtt_ns": 1420750, + "rtt_ms": 1.42075, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.79960302Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:54.297273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740184, - "rtt_ms": 1.740184, + "rtt_ns": 1585750, + "rtt_ms": 1.58575, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.79965052Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:54.297559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153746, - "rtt_ms": 1.153746, + "rtt_ns": 1621625, + "rtt_ms": 1.621625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:55.79975414Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:54.297624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305765, - "rtt_ms": 1.305765, + "rtt_ns": 1767875, + "rtt_ms": 1.767875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:55.799897289Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:54.29771-08:00" }, { "operation": "add_edge", - "rtt_ns": 877368, - "rtt_ms": 0.877368, + "rtt_ns": 1465875, + "rtt_ms": 1.465875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.800470918Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:54.29828-08:00" }, { "operation": "add_edge", - "rtt_ns": 957487, - "rtt_ms": 0.957487, + "rtt_ns": 1674792, + "rtt_ms": 1.674792, "checkpoint": 0, "vertex_from": "130", "vertex_to": "201", - "timestamp": "2025-11-27T01:21:55.800491178Z" + "timestamp": "2025-11-27T04:01:54.298297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265586, - "rtt_ms": 1.265586, + "rtt_ns": 1836584, + "rtt_ms": 1.836584, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:55.800491278Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.298475-08:00" }, { "operation": "add_edge", - "rtt_ns": 903938, - "rtt_ms": 0.903938, + "rtt_ns": 1748583, + "rtt_ms": 1.748583, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.800502218Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:54.298652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133456, - "rtt_ms": 1.133456, + "rtt_ns": 1380125, + "rtt_ms": 1.380125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:55.800567757Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.298655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157117, - "rtt_ms": 1.157117, + "rtt_ns": 1974875, + "rtt_ms": 1.974875, "checkpoint": 0, "vertex_from": "130", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.800754017Z" + "timestamp": "2025-11-27T04:01:54.298773-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071514, - "rtt_ms": 2.071514, + "rtt_ns": 2071541, + "rtt_ms": 2.071541, "checkpoint": 0, "vertex_from": "130", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.801676584Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2528382, - "rtt_ms": 2.528382, - "checkpoint": 0, - "vertex_from": "130", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:55.802428391Z" + "timestamp": "2025-11-27T04:01:54.2989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782071, - "rtt_ms": 2.782071, + "rtt_ns": 1291333, + "rtt_ms": 1.291333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.802433891Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2851261, - "rtt_ms": 2.851261, - "checkpoint": 0, - "vertex_from": "130", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.802606441Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.298916-08:00" }, { "operation": "add_edge", - "rtt_ns": 2175233, - "rtt_ms": 2.175233, + "rtt_ns": 1914959, + "rtt_ms": 1.914959, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.802647061Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.300212-08:00" }, { "operation": "add_edge", - "rtt_ns": 2167413, - "rtt_ms": 2.167413, + "rtt_ns": 2741708, + "rtt_ms": 2.741708, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:55.802661381Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:54.300302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2185463, - "rtt_ms": 2.185463, + "rtt_ns": 2605042, + "rtt_ms": 2.605042, "checkpoint": 0, "vertex_from": "130", "vertex_to": "645", - "timestamp": "2025-11-27T01:21:55.802678131Z" + "timestamp": "2025-11-27T04:01:54.300316-08:00" }, { "operation": "add_edge", - "rtt_ns": 2602851, - "rtt_ms": 2.602851, + "rtt_ns": 1686000, + "rtt_ms": 1.686, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.803358428Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:54.300342-08:00" }, { "operation": "add_edge", - "rtt_ns": 2866671, - "rtt_ms": 2.866671, + "rtt_ns": 2144375, + "rtt_ms": 2.144375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.803435688Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:54.300425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772644, - "rtt_ms": 1.772644, + "rtt_ns": 1519000, + "rtt_ms": 1.519, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:55.803452218Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:54.300435-08:00" }, { "operation": "add_edge", - "rtt_ns": 2955571, - "rtt_ms": 2.955571, + "rtt_ns": 1632125, + "rtt_ms": 1.632125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.803458978Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:54.300533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232976, - "rtt_ms": 1.232976, + "rtt_ns": 1925209, + "rtt_ms": 1.925209, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.803665097Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.300578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273276, - "rtt_ms": 1.273276, + "rtt_ns": 1816084, + "rtt_ms": 1.816084, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:55.803710417Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.300589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093407, - "rtt_ms": 1.093407, + "rtt_ns": 2178125, + "rtt_ms": 2.178125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.804453975Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.300654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825424, - "rtt_ms": 1.825424, + "rtt_ns": 1206708, + "rtt_ms": 1.206708, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "185", - "timestamp": "2025-11-27T01:21:55.804488605Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:54.30174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065577, - "rtt_ms": 1.065577, + "rtt_ns": 1315166, + "rtt_ms": 1.315166, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.804502655Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:54.301752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964253, - "rtt_ms": 1.964253, + "rtt_ns": 1682458, + "rtt_ms": 1.682458, "checkpoint": 0, "vertex_from": "130", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.804612334Z" + "timestamp": "2025-11-27T04:01:54.301896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963123, - "rtt_ms": 1.963123, + "rtt_ns": 1661458, + "rtt_ms": 1.661458, "checkpoint": 0, "vertex_from": "130", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:55.804643124Z" + "timestamp": "2025-11-27T04:01:54.30198-08:00" }, { "operation": "add_edge", - "rtt_ns": 933307, - "rtt_ms": 0.933307, + "rtt_ns": 1752750, + "rtt_ms": 1.75275, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.804645584Z" + "vertex_to": "185", + "timestamp": "2025-11-27T04:01:54.302056-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041163, - "rtt_ms": 2.041163, + "rtt_ns": 1447583, + "rtt_ms": 1.447583, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:55.804650204Z" + "vertex_to": "341", + "timestamp": "2025-11-27T04:01:54.302102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202696, - "rtt_ms": 1.202696, + "rtt_ns": 1552416, + "rtt_ms": 1.552416, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:55.804663114Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.302142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014157, - "rtt_ms": 1.014157, + "rtt_ns": 1692166, + "rtt_ms": 1.692166, "checkpoint": 0, "vertex_from": "130", "vertex_to": "824", - "timestamp": "2025-11-27T01:21:55.804681534Z" + "timestamp": "2025-11-27T04:01:54.302271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307096, - "rtt_ms": 1.307096, + "rtt_ns": 1929291, + "rtt_ms": 1.929291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:55.804761894Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.302272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192206, - "rtt_ms": 1.192206, + "rtt_ns": 1901791, + "rtt_ms": 1.901791, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "341", - "timestamp": "2025-11-27T01:21:55.805648301Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.302327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147066, - "rtt_ms": 1.147066, + "rtt_ns": 1173084, + "rtt_ms": 1.173084, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "716", - "timestamp": "2025-11-27T01:21:55.805651671Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1194306, - "rtt_ms": 1.194306, - "checkpoint": 0, - "vertex_from": "423", - "timestamp": "2025-11-27T01:21:55.805687561Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.303276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403286, - "rtt_ms": 1.403286, + "rtt_ns": 1540584, + "rtt_ms": 1.540584, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:55.80604843Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:54.303295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475256, - "rtt_ms": 1.475256, + "rtt_ns": 1569959, + "rtt_ms": 1.569959, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.80608968Z" + "vertex_to": "135", + "timestamp": "2025-11-27T04:01:54.303899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433725, - "rtt_ms": 1.433725, + "rtt_ns": 1645500, + "rtt_ms": 1.6455, "checkpoint": 0, "vertex_from": "130", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.806197089Z" + "timestamp": "2025-11-27T04:01:54.303918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571995, - "rtt_ms": 1.571995, + "rtt_ns": 1650584, + "rtt_ms": 1.650584, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.806224429Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:01:54.303922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547195, - "rtt_ms": 1.547195, + "rtt_ns": 2161042, + "rtt_ms": 2.161042, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "812", - "timestamp": "2025-11-27T01:21:55.806230109Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.304059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598505, - "rtt_ms": 1.598505, + "rtt_ns": 1978875, + "rtt_ms": 1.978875, "checkpoint": 0, "vertex_from": "130", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.806263769Z" + "timestamp": "2025-11-27T04:01:54.304122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691285, - "rtt_ms": 1.691285, + "rtt_ns": 2188250, + "rtt_ms": 2.18825, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "131", - "timestamp": "2025-11-27T01:21:55.806338949Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:54.304169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333866, - "rtt_ms": 1.333866, + "rtt_ns": 2137542, + "rtt_ms": 2.137542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "135", - "timestamp": "2025-11-27T01:21:55.806984687Z" + "vertex_to": "131", + "timestamp": "2025-11-27T04:01:54.304194-08:00" }, { - "operation": "add_edge", - "rtt_ns": 959757, - "rtt_ms": 0.959757, + "operation": "add_vertex", + "rtt_ns": 2574167, + "rtt_ms": 2.574167, "checkpoint": 0, - "vertex_from": "130", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.807010477Z" + "vertex_from": "423", + "timestamp": "2025-11-27T04:01:54.304317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577165, - "rtt_ms": 1.577165, + "rtt_ns": 1549834, + "rtt_ms": 1.549834, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "423", - "timestamp": "2025-11-27T01:21:55.807265336Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.304846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347403, - "rtt_ms": 2.347403, + "rtt_ns": 2180542, + "rtt_ms": 2.180542, "checkpoint": 0, "vertex_from": "130", "vertex_to": "633", - "timestamp": "2025-11-27T01:21:55.808001994Z" + "timestamp": "2025-11-27T04:01:54.30546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919024, - "rtt_ms": 1.919024, + "rtt_ns": 1193333, + "rtt_ms": 1.193333, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.808150633Z" + "vertex_to": "423", + "timestamp": "2025-11-27T04:01:54.305511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964204, - "rtt_ms": 1.964204, + "rtt_ns": 1642291, + "rtt_ms": 1.642291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:55.808191143Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.305562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129263, - "rtt_ms": 2.129263, + "rtt_ns": 1460334, + "rtt_ms": 1.460334, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "474", - "timestamp": "2025-11-27T01:21:55.808220713Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:01:54.305585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958194, - "rtt_ms": 1.958194, + "rtt_ns": 1724500, + "rtt_ms": 1.7245, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "818", - "timestamp": "2025-11-27T01:21:55.808225253Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:54.305647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890714, - "rtt_ms": 1.890714, + "rtt_ns": 1800000, + "rtt_ms": 1.8, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:55.808231933Z" + "vertex_to": "474", + "timestamp": "2025-11-27T04:01:54.305702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2048664, - "rtt_ms": 2.048664, + "rtt_ns": 1525875, + "rtt_ms": 1.525875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.808247173Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.30572-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079513, - "rtt_ms": 2.079513, + "rtt_ns": 1720875, + "rtt_ms": 1.720875, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.80906551Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.305781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816974, - "rtt_ms": 1.816974, + "rtt_ns": 1658541, + "rtt_ms": 1.658541, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.80908507Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:54.305829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133023, - "rtt_ms": 2.133023, + "rtt_ns": 1368208, + "rtt_ms": 1.368208, "checkpoint": 0, "vertex_from": "130", "vertex_to": "217", - "timestamp": "2025-11-27T01:21:55.80914566Z" + "timestamp": "2025-11-27T04:01:54.306217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196166, - "rtt_ms": 1.196166, + "rtt_ns": 1567291, + "rtt_ms": 1.567291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.80919939Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:54.307153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069527, - "rtt_ms": 1.069527, + "rtt_ns": 1598875, + "rtt_ms": 1.598875, "checkpoint": 0, "vertex_from": "130", "vertex_to": "332", - "timestamp": "2025-11-27T01:21:55.80922193Z" + "timestamp": "2025-11-27T04:01:54.307162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034236, - "rtt_ms": 1.034236, + "rtt_ns": 1511042, + "rtt_ms": 1.511042, "checkpoint": 0, "vertex_from": "130", "vertex_to": "197", - "timestamp": "2025-11-27T01:21:55.809260739Z" + "timestamp": "2025-11-27T04:01:54.307214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785464, - "rtt_ms": 1.785464, + "rtt_ns": 1776417, + "rtt_ms": 1.776417, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:55.810034027Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.307237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839964, - "rtt_ms": 1.839964, + "rtt_ns": 1448000, + "rtt_ms": 1.448, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.810073857Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:54.307278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870104, - "rtt_ms": 1.870104, + "rtt_ns": 1710584, + "rtt_ms": 1.710584, "checkpoint": 0, "vertex_from": "130", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:55.810091917Z" + "timestamp": "2025-11-27T04:01:54.30736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934114, - "rtt_ms": 1.934114, + "rtt_ns": 1899667, + "rtt_ms": 1.899667, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:55.810126187Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:54.307411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356955, - "rtt_ms": 1.356955, + "rtt_ns": 1746375, + "rtt_ms": 1.746375, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:55.810445145Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:54.307529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486025, - "rtt_ms": 1.486025, + "rtt_ns": 1814542, + "rtt_ms": 1.814542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:55.810553915Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.307536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437505, - "rtt_ms": 1.437505, + "rtt_ns": 1471625, + "rtt_ms": 1.471625, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "794", - "timestamp": "2025-11-27T01:21:55.810590975Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:54.307689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417925, - "rtt_ms": 1.417925, + "rtt_ns": 2114250, + "rtt_ms": 2.11425, "checkpoint": 0, "vertex_from": "130", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.810618855Z" + "timestamp": "2025-11-27T04:01:54.309277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378336, - "rtt_ms": 1.378336, + "rtt_ns": 1942125, + "rtt_ms": 1.942125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "158", - "timestamp": "2025-11-27T01:21:55.810641075Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.309303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448495, - "rtt_ms": 1.448495, + "rtt_ns": 1658833, + "rtt_ms": 1.658833, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.810671495Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.309349-08:00" }, { "operation": "add_edge", - "rtt_ns": 746507, - "rtt_ms": 0.746507, + "rtt_ns": 1859584, + "rtt_ms": 1.859584, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.810821754Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.309389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337675, - "rtt_ms": 1.337675, + "rtt_ns": 1861792, + "rtt_ms": 1.861792, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:55.811373072Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:01:54.3094-08:00" }, { "operation": "add_edge", - "rtt_ns": 868237, - "rtt_ms": 0.868237, + "rtt_ns": 2251250, + "rtt_ms": 2.25125, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.811423232Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:01:54.309407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384485, - "rtt_ms": 1.384485, + "rtt_ns": 2141166, + "rtt_ms": 2.141166, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.811478062Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:54.30942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127697, - "rtt_ms": 1.127697, + "rtt_ns": 2265584, + "rtt_ms": 2.265584, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "302", - "timestamp": "2025-11-27T01:21:55.811574342Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:54.30948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600904, - "rtt_ms": 1.600904, + "rtt_ns": 2075417, + "rtt_ms": 2.075417, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.811728091Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.30949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555135, - "rtt_ms": 1.555135, + "rtt_ns": 2392542, + "rtt_ms": 2.392542, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.81222811Z" + "vertex_to": "158", + "timestamp": "2025-11-27T04:01:54.309631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719964, - "rtt_ms": 1.719964, + "rtt_ns": 1489792, + "rtt_ms": 1.489792, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "283", - "timestamp": "2025-11-27T01:21:55.812361939Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:54.310897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843924, - "rtt_ms": 1.843924, + "rtt_ns": 1437292, + "rtt_ms": 1.437292, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "913", - "timestamp": "2025-11-27T01:21:55.812436519Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:54.310918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051037, - "rtt_ms": 1.051037, + "rtt_ns": 1314458, + "rtt_ms": 1.314458, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:55.812475799Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:01:54.310946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125097, - "rtt_ms": 1.125097, + "rtt_ns": 1590833, + "rtt_ms": 1.590833, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.812500319Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:54.310992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889934, - "rtt_ms": 1.889934, + "rtt_ns": 1807291, + "rtt_ms": 1.807291, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:55.812509989Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:54.311085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706485, - "rtt_ms": 1.706485, + "rtt_ns": 1785500, + "rtt_ms": 1.7855, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:55.812531479Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:54.31109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843024, - "rtt_ms": 1.843024, + "rtt_ns": 1713083, + "rtt_ms": 1.713083, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:55.813322406Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:54.311103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889354, - "rtt_ms": 1.889354, + "rtt_ns": 1644917, + "rtt_ms": 1.644917, "checkpoint": 0, "vertex_from": "130", "vertex_to": "792", - "timestamp": "2025-11-27T01:21:55.813465086Z" + "timestamp": "2025-11-27T04:01:54.311136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337555, - "rtt_ms": 1.337555, + "rtt_ns": 1800334, + "rtt_ms": 1.800334, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "651", - "timestamp": "2025-11-27T01:21:55.813567055Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:54.311222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868624, - "rtt_ms": 1.868624, + "rtt_ns": 2048417, + "rtt_ms": 2.048417, "checkpoint": 0, "vertex_from": "130", - "vertex_to": "996", - "timestamp": "2025-11-27T01:21:55.813598395Z" + "vertex_to": "283", + "timestamp": "2025-11-27T04:01:54.311399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382716, - "rtt_ms": 1.382716, + "rtt_ns": 1616916, + "rtt_ms": 1.616916, + "checkpoint": 0, + "vertex_from": "131", + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:54.312721-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1815083, + "rtt_ms": 1.815083, "checkpoint": 0, "vertex_from": "130", "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.813745925Z" + "timestamp": "2025-11-27T04:01:54.312734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062757, - "rtt_ms": 1.062757, + "rtt_ns": 1710334, + "rtt_ms": 1.710334, "checkpoint": 0, "vertex_from": "131", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.814387273Z" + "timestamp": "2025-11-27T04:01:54.312847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908494, - "rtt_ms": 1.908494, + "rtt_ns": 1912042, + "rtt_ms": 1.912042, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.814442513Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:54.312859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986573, - "rtt_ms": 1.986573, + "rtt_ns": 1961292, + "rtt_ms": 1.961292, "checkpoint": 0, - "vertex_from": "131", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.814463992Z" + "vertex_from": "130", + "vertex_to": "651", + "timestamp": "2025-11-27T04:01:54.31286-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034923, - "rtt_ms": 2.034923, + "rtt_ns": 1776125, + "rtt_ms": 1.776125, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.814472712Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.312862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981083, - "rtt_ms": 1.981083, + "rtt_ns": 1862583, + "rtt_ms": 1.862583, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.814482822Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:01:54.312953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984063, - "rtt_ms": 1.984063, + "rtt_ns": 1767250, + "rtt_ms": 1.76725, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "849", - "timestamp": "2025-11-27T01:21:55.814497962Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:54.31299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144946, - "rtt_ms": 1.144946, + "rtt_ns": 2053042, + "rtt_ms": 2.053042, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:55.814611472Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.313046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802935, - "rtt_ms": 1.802935, + "rtt_ns": 1964083, + "rtt_ms": 1.964083, "checkpoint": 0, "vertex_from": "131", "vertex_to": "424", - "timestamp": "2025-11-27T01:21:55.8153718Z" + "timestamp": "2025-11-27T04:01:54.313363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006067, - "rtt_ms": 1.006067, + "rtt_ns": 1454208, + "rtt_ms": 1.454208, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.81539455Z" + "vertex_to": "845", + "timestamp": "2025-11-27T04:01:54.314408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670574, - "rtt_ms": 1.670574, + "rtt_ns": 1743167, + "rtt_ms": 1.743167, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:55.815417579Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:54.314465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819594, - "rtt_ms": 1.819594, + "rtt_ns": 1703333, + "rtt_ms": 1.703333, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:55.815419449Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.314566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061507, - "rtt_ms": 1.061507, + "rtt_ns": 1835375, + "rtt_ms": 1.835375, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "167", - "timestamp": "2025-11-27T01:21:55.815527769Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:54.314571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122826, - "rtt_ms": 1.122826, + "rtt_ns": 1725625, + "rtt_ms": 1.725625, "checkpoint": 0, "vertex_from": "131", "vertex_to": "920", - "timestamp": "2025-11-27T01:21:55.815568059Z" + "timestamp": "2025-11-27T04:01:54.314586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787515, - "rtt_ms": 1.787515, + "rtt_ns": 1725125, + "rtt_ms": 1.725125, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "845", - "timestamp": "2025-11-27T01:21:55.816271847Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:01:54.314586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664205, - "rtt_ms": 1.664205, + "rtt_ns": 1753833, + "rtt_ms": 1.753833, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:55.816277377Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.314604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785265, - "rtt_ms": 1.785265, + "rtt_ns": 1758000, + "rtt_ms": 1.758, "checkpoint": 0, "vertex_from": "131", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.816284657Z" + "timestamp": "2025-11-27T04:01:54.314749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830715, - "rtt_ms": 1.830715, + "rtt_ns": 1401959, + "rtt_ms": 1.401959, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.816304867Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.314766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723414, - "rtt_ms": 1.723414, + "rtt_ns": 1859708, + "rtt_ms": 1.859708, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.817097854Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:54.314907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743095, - "rtt_ms": 1.743095, + "rtt_ns": 1733875, + "rtt_ms": 1.733875, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.817165984Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.316305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629175, - "rtt_ms": 1.629175, + "rtt_ns": 1581583, + "rtt_ms": 1.581583, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.817198784Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.316348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722524, - "rtt_ms": 1.722524, + "rtt_ns": 1763542, + "rtt_ms": 1.763542, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.817253543Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.31635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847274, - "rtt_ms": 1.847274, + "rtt_ns": 1815917, + "rtt_ms": 1.815917, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.817267763Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.316383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040076, - "rtt_ms": 1.040076, + "rtt_ns": 2006042, + "rtt_ms": 2.006042, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:55.817313363Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:54.316415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983813, - "rtt_ms": 1.983813, + "rtt_ns": 1519000, + "rtt_ms": 1.519, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:55.817379793Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:54.316429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753064, - "rtt_ms": 1.753064, + "rtt_ns": 1828333, + "rtt_ms": 1.828333, "checkpoint": 0, "vertex_from": "131", "vertex_to": "732", - "timestamp": "2025-11-27T01:21:55.818032421Z" + "timestamp": "2025-11-27T04:01:54.316434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822993, - "rtt_ms": 1.822993, + "rtt_ns": 1689250, + "rtt_ms": 1.68925, "checkpoint": 0, "vertex_from": "131", "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.81810898Z" + "timestamp": "2025-11-27T04:01:54.316439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836613, - "rtt_ms": 1.836613, + "rtt_ns": 1966208, + "rtt_ms": 1.966208, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.81814351Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.316441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413845, - "rtt_ms": 1.413845, + "rtt_ns": 1859583, + "rtt_ms": 1.859583, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:55.818514529Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:54.316446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419455, - "rtt_ms": 1.419455, + "rtt_ns": 1508583, + "rtt_ms": 1.508583, "checkpoint": 0, "vertex_from": "131", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.818586409Z" + "timestamp": "2025-11-27T04:01:54.317815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361116, - "rtt_ms": 1.361116, + "rtt_ns": 1402958, + "rtt_ms": 1.402958, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:55.818677089Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:54.317845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495585, - "rtt_ms": 1.495585, + "rtt_ns": 1439166, + "rtt_ms": 1.439166, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.818695819Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.317874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506145, - "rtt_ms": 1.506145, + "rtt_ns": 1467916, + "rtt_ms": 1.467916, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.818780388Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.317899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616045, - "rtt_ms": 1.616045, + "rtt_ns": 1550208, + "rtt_ms": 1.550208, + "checkpoint": 0, + "vertex_from": "131", + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:54.317966-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1641542, + "rtt_ms": 1.641542, "checkpoint": 0, "vertex_from": "131", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.818870388Z" + "timestamp": "2025-11-27T04:01:54.317994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1948843, - "rtt_ms": 1.948843, + "rtt_ns": 1734208, + "rtt_ms": 1.734208, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.819330336Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:54.318118-08:00" }, { "operation": "add_edge", - "rtt_ns": 869167, - "rtt_ms": 0.869167, + "rtt_ns": 1675334, + "rtt_ms": 1.675334, "checkpoint": 0, "vertex_from": "131", "vertex_to": "601", - "timestamp": "2025-11-27T01:21:55.819384656Z" + "timestamp": "2025-11-27T04:01:54.318124-08:00" }, { "operation": "add_edge", - "rtt_ns": 797607, - "rtt_ms": 0.797607, + "rtt_ns": 1776875, + "rtt_ms": 1.776875, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.819476226Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.318126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385836, - "rtt_ms": 1.385836, + "rtt_ns": 1696083, + "rtt_ms": 1.696083, "checkpoint": 0, "vertex_from": "131", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.819496776Z" + "timestamp": "2025-11-27T04:01:54.318135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352376, - "rtt_ms": 1.352376, + "rtt_ns": 1202125, + "rtt_ms": 1.202125, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.819496806Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.319057-08:00" }, { "operation": "add_edge", - "rtt_ns": 919377, - "rtt_ms": 0.919377, + "rtt_ns": 1021709, + "rtt_ms": 1.021709, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.819507196Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:54.319149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487055, - "rtt_ms": 1.487055, + "rtt_ns": 1631459, + "rtt_ms": 1.631459, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.819521166Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.319449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757394, - "rtt_ms": 1.757394, + "rtt_ns": 1749166, + "rtt_ms": 1.749166, "checkpoint": 0, "vertex_from": "131", "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.820454423Z" + "timestamp": "2025-11-27T04:01:54.319625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911884, - "rtt_ms": 1.911884, + "rtt_ns": 1504583, + "rtt_ms": 1.504583, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.820693292Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.319638-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232193, - "rtt_ms": 2.232193, + "rtt_ns": 1533459, + "rtt_ms": 1.533459, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "677", - "timestamp": "2025-11-27T01:21:55.821104351Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.319669-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053754, - "rtt_ms": 2.053754, + "rtt_ns": 1774667, + "rtt_ms": 1.774667, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.82138515Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:54.319674-08:00" }, { "operation": "add_edge", - "rtt_ns": 2254343, - "rtt_ms": 2.254343, + "rtt_ns": 1783583, + "rtt_ms": 1.783583, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:55.821777409Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:54.31975-08:00" }, { "operation": "add_edge", - "rtt_ns": 3004100, - "rtt_ms": 3.0041, + "rtt_ns": 1812334, + "rtt_ms": 1.812334, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.822502906Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:54.319807-08:00" }, { "operation": "add_edge", - "rtt_ns": 3157650, - "rtt_ms": 3.15765, + "rtt_ns": 1715833, + "rtt_ms": 1.715833, "checkpoint": 0, "vertex_from": "131", "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.822543656Z" + "timestamp": "2025-11-27T04:01:54.319835-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1847994, - "rtt_ms": 1.847994, + "operation": "add_edge", + "rtt_ns": 1629709, + "rtt_ms": 1.629709, "checkpoint": 0, - "vertex_from": "881", - "timestamp": "2025-11-27T01:21:55.822545056Z" + "vertex_from": "131", + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:54.320781-08:00" }, { "operation": "add_edge", - "rtt_ns": 3070760, - "rtt_ms": 3.07076, + "rtt_ns": 1348833, + "rtt_ms": 1.348833, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.822548266Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:01:54.320799-08:00" }, { "operation": "add_edge", - "rtt_ns": 3068070, - "rtt_ms": 3.06807, + "rtt_ns": 1748916, + "rtt_ms": 1.748916, "checkpoint": 0, "vertex_from": "131", "vertex_to": "368", - "timestamp": "2025-11-27T01:21:55.822577526Z" + "timestamp": "2025-11-27T04:01:54.320807-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124673, - "rtt_ms": 2.124673, + "rtt_ns": 1356959, + "rtt_ms": 1.356959, "checkpoint": 0, - "vertex_from": "131", - "vertex_to": "241", - "timestamp": "2025-11-27T01:21:55.822580856Z" + "vertex_from": "132", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.321165-08:00" }, { "operation": "add_edge", - "rtt_ns": 3085000, - "rtt_ms": 3.085, + "rtt_ns": 1518459, + "rtt_ms": 1.518459, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:55.822582966Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.321189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355876, - "rtt_ms": 1.355876, + "rtt_ns": 2021250, + "rtt_ms": 2.02125, "checkpoint": 0, "vertex_from": "131", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.822742365Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.321772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378065, - "rtt_ms": 1.378065, + "rtt_ns": 2145583, + "rtt_ms": 2.145583, "checkpoint": 0, "vertex_from": "131", "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.823159444Z" + "timestamp": "2025-11-27T04:01:54.321821-08:00" }, { "operation": "add_edge", - "rtt_ns": 2341992, - "rtt_ms": 2.341992, + "rtt_ns": 2299541, + "rtt_ms": 2.299541, "checkpoint": 0, "vertex_from": "131", "vertex_to": "232", - "timestamp": "2025-11-27T01:21:55.823448023Z" + "timestamp": "2025-11-27T04:01:54.321939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493405, - "rtt_ms": 1.493405, + "rtt_ns": 1297167, + "rtt_ms": 1.297167, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.824041751Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:54.322079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387136, - "rtt_ms": 1.387136, + "rtt_ns": 1316667, + "rtt_ms": 1.316667, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.824131781Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1647745, - "rtt_ms": 1.647745, - "checkpoint": 0, - "vertex_from": "131", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.824153051Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.322117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600955, - "rtt_ms": 1.600955, + "rtt_ns": 970375, + "rtt_ms": 0.970375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:55.824180601Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.322136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023347, - "rtt_ms": 1.023347, + "rtt_ns": 1275375, + "rtt_ms": 1.275375, "checkpoint": 0, "vertex_from": "132", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.824184391Z" + "timestamp": "2025-11-27T04:01:54.322465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600335, - "rtt_ms": 1.600335, + "rtt_ns": 1680000, + "rtt_ms": 1.68, "checkpoint": 0, "vertex_from": "132", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:55.824185901Z" + "timestamp": "2025-11-27T04:01:54.32249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604145, - "rtt_ms": 1.604145, + "rtt_ns": 2679417, + "rtt_ms": 2.679417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.824186941Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:54.322515-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1636645, - "rtt_ms": 1.636645, + "operation": "add_vertex", + "rtt_ns": 3252833, + "rtt_ms": 3.252833, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:55.824188291Z" + "vertex_from": "881", + "timestamp": "2025-11-27T04:01:54.32288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645945, - "rtt_ms": 1.645945, + "rtt_ns": 1508750, + "rtt_ms": 1.50875, "checkpoint": 0, - "vertex_from": "131", - "vertex_to": "881", - "timestamp": "2025-11-27T01:21:55.824191361Z" + "vertex_from": "132", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.323282-08:00" }, { "operation": "add_edge", - "rtt_ns": 822287, - "rtt_ms": 0.822287, + "rtt_ns": 1351750, + "rtt_ms": 1.35175, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:55.824977248Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:54.323291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078407, - "rtt_ms": 1.078407, + "rtt_ns": 1255208, + "rtt_ms": 1.255208, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.825121718Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:54.323373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082157, - "rtt_ms": 1.082157, + "rtt_ns": 1298416, + "rtt_ms": 1.298416, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:55.825215318Z" + "vertex_to": "222", + "timestamp": "2025-11-27T04:01:54.323436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063937, - "rtt_ms": 1.063937, + "rtt_ns": 1783041, + "rtt_ms": 1.783041, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:55.825246078Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:54.323863-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230913, - "rtt_ms": 2.230913, + "rtt_ns": 1056500, + "rtt_ms": 1.0565, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.825680826Z" + "vertex_from": "131", + "vertex_to": "881", + "timestamp": "2025-11-27T04:01:54.323937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517905, - "rtt_ms": 1.517905, + "rtt_ns": 2345166, + "rtt_ms": 2.345166, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:55.825709796Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.324167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693575, - "rtt_ms": 1.693575, + "rtt_ns": 2396792, + "rtt_ms": 2.396792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "222", - "timestamp": "2025-11-27T01:21:55.825881216Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:01:54.324887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705734, - "rtt_ms": 1.705734, + "rtt_ns": 2625041, + "rtt_ms": 2.625041, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "398", - "timestamp": "2025-11-27T01:21:55.825899435Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:54.325141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719954, - "rtt_ms": 1.719954, + "rtt_ns": 2853292, + "rtt_ms": 2.853292, "checkpoint": 0, "vertex_from": "132", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.825908215Z" + "timestamp": "2025-11-27T04:01:54.325319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741664, - "rtt_ms": 1.741664, + "rtt_ns": 1494834, + "rtt_ms": 1.494834, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "621", - "timestamp": "2025-11-27T01:21:55.825930795Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:01:54.325359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148887, - "rtt_ms": 1.148887, + "rtt_ns": 2151625, + "rtt_ms": 2.151625, "checkpoint": 0, "vertex_from": "132", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.826130575Z" + "timestamp": "2025-11-27T04:01:54.325444-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2207792, + "rtt_ms": 2.207792, + "checkpoint": 0, + "vertex_from": "132", + "vertex_to": "398", + "timestamp": "2025-11-27T04:01:54.32549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193916, - "rtt_ms": 1.193916, + "rtt_ns": 2219917, + "rtt_ms": 2.219917, "checkpoint": 0, "vertex_from": "132", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.826317264Z" + "timestamp": "2025-11-27T04:01:54.325593-08:00" }, { "operation": "add_edge", - "rtt_ns": 774327, - "rtt_ms": 0.774327, + "rtt_ns": 1835959, + "rtt_ms": 1.835959, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.826908532Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.325774-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1764744, - "rtt_ms": 1.764744, + "rtt_ns": 2473000, + "rtt_ms": 2.473, "checkpoint": 0, "vertex_from": "599", - "timestamp": "2025-11-27T01:21:55.826982622Z" + "timestamp": "2025-11-27T04:01:54.32591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326606, - "rtt_ms": 1.326606, + "rtt_ns": 1951459, + "rtt_ms": 1.951459, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.827009032Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:54.326119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302756, - "rtt_ms": 1.302756, + "rtt_ns": 1855208, + "rtt_ms": 1.855208, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:55.827015422Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.327347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138887, - "rtt_ms": 1.138887, + "rtt_ns": 2476667, + "rtt_ms": 2.476667, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.827039582Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.327365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134817, - "rtt_ms": 1.134817, + "rtt_ns": 1924292, + "rtt_ms": 1.924292, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.827045072Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.327369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193537, - "rtt_ms": 1.193537, + "rtt_ns": 2059792, + "rtt_ms": 2.059792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.827127002Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.327381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900824, - "rtt_ms": 1.900824, + "rtt_ns": 2056291, + "rtt_ms": 2.056291, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "738", - "timestamp": "2025-11-27T01:21:55.827148472Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.327416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462845, - "rtt_ms": 1.462845, + "rtt_ns": 2462541, + "rtt_ms": 2.462541, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.827346801Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.327604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713815, - "rtt_ms": 1.713815, + "rtt_ns": 2027417, + "rtt_ms": 2.027417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.828032999Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.327622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014667, - "rtt_ms": 1.014667, + "rtt_ns": 1974167, + "rtt_ms": 1.974167, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "542", - "timestamp": "2025-11-27T01:21:55.828062599Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:54.327749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117886, - "rtt_ms": 1.117886, + "rtt_ns": 1859541, + "rtt_ms": 1.859541, "checkpoint": 0, "vertex_from": "132", "vertex_to": "599", - "timestamp": "2025-11-27T01:21:55.828101068Z" + "timestamp": "2025-11-27T04:01:54.32777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342756, - "rtt_ms": 1.342756, + "rtt_ns": 1692583, + "rtt_ms": 1.692583, "checkpoint": 0, "vertex_from": "132", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.828359678Z" + "timestamp": "2025-11-27T04:01:54.327814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277345, - "rtt_ms": 1.277345, + "rtt_ns": 1181959, + "rtt_ms": 1.181959, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.828405607Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:01:54.32853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451015, - "rtt_ms": 1.451015, + "rtt_ns": 1186834, + "rtt_ms": 1.186834, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "541", - "timestamp": "2025-11-27T01:21:55.828494457Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.328569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590455, - "rtt_ms": 1.590455, + "rtt_ns": 1485834, + "rtt_ms": 1.485834, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.828500597Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.328856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503085, - "rtt_ms": 1.503085, + "rtt_ns": 1246333, + "rtt_ms": 1.246333, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.828513577Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:01:54.328871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436455, - "rtt_ms": 1.436455, + "rtt_ns": 1264208, + "rtt_ms": 1.264208, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.828586837Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:54.329025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307396, - "rtt_ms": 1.307396, + "rtt_ns": 1677083, + "rtt_ms": 1.677083, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "373", - "timestamp": "2025-11-27T01:21:55.828655567Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:54.329043-08:00" }, { "operation": "add_edge", - "rtt_ns": 683607, - "rtt_ms": 0.683607, + "rtt_ns": 1760583, + "rtt_ms": 1.760583, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:55.828717476Z" + "vertex_to": "373", + "timestamp": "2025-11-27T04:01:54.329178-08:00" }, { "operation": "add_edge", - "rtt_ns": 670627, - "rtt_ms": 0.670627, + "rtt_ns": 2124042, + "rtt_ms": 2.124042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "339", - "timestamp": "2025-11-27T01:21:55.828734066Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:54.329729-08:00" }, { "operation": "add_edge", - "rtt_ns": 639148, - "rtt_ms": 0.639148, + "rtt_ns": 1448125, + "rtt_ms": 1.448125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:55.828743736Z" + "vertex_to": "952", + "timestamp": "2025-11-27T04:01:54.329981-08:00" }, { "operation": "add_edge", - "rtt_ns": 892237, - "rtt_ms": 0.892237, + "rtt_ns": 1142375, + "rtt_ms": 1.142375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.829252805Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.329999-08:00" }, { "operation": "add_edge", - "rtt_ns": 771128, - "rtt_ms": 0.771128, + "rtt_ns": 2340042, + "rtt_ms": 2.340042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "952", - "timestamp": "2025-11-27T01:21:55.829267335Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.33013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000567, - "rtt_ms": 1.000567, + "rtt_ns": 2466042, + "rtt_ms": 2.466042, "checkpoint": 0, "vertex_from": "132", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.829406954Z" + "timestamp": "2025-11-27T04:01:54.330281-08:00" }, { "operation": "add_edge", - "rtt_ns": 961597, - "rtt_ms": 0.961597, + "rtt_ns": 1434292, + "rtt_ms": 1.434292, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.829463764Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.330306-08:00" }, { "operation": "add_edge", - "rtt_ns": 963737, - "rtt_ms": 0.963737, + "rtt_ns": 1247542, + "rtt_ms": 1.247542, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.829478354Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.330426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607464, - "rtt_ms": 1.607464, + "rtt_ns": 2461834, + "rtt_ms": 2.461834, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.830194741Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.331033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513875, - "rtt_ms": 1.513875, + "rtt_ns": 2027500, + "rtt_ms": 2.0275, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:55.830232151Z" + "vertex_to": "873", + "timestamp": "2025-11-27T04:01:54.331054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514365, - "rtt_ms": 1.514365, + "rtt_ns": 2154958, + "rtt_ms": 2.154958, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "237", - "timestamp": "2025-11-27T01:21:55.830260191Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:54.331199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029826, - "rtt_ms": 1.029826, + "rtt_ns": 1718542, + "rtt_ms": 1.718542, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:55.830283661Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.331718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550245, - "rtt_ms": 1.550245, + "rtt_ns": 2085042, + "rtt_ms": 2.085042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.830285061Z" + "vertex_to": "237", + "timestamp": "2025-11-27T04:01:54.331815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033346, - "rtt_ms": 1.033346, + "rtt_ns": 1795875, + "rtt_ms": 1.795875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.830301471Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:54.331927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676004, - "rtt_ms": 1.676004, + "rtt_ns": 1962833, + "rtt_ms": 1.962833, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "873", - "timestamp": "2025-11-27T01:21:55.830333001Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:54.331945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609584, - "rtt_ms": 1.609584, + "rtt_ns": 1716708, + "rtt_ms": 1.716708, "checkpoint": 0, "vertex_from": "132", "vertex_to": "372", - "timestamp": "2025-11-27T01:21:55.831077528Z" + "timestamp": "2025-11-27T04:01:54.331999-08:00" }, { "operation": "add_edge", - "rtt_ns": 891357, - "rtt_ms": 0.891357, + "rtt_ns": 1778417, + "rtt_ms": 1.778417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.831176118Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.332813-08:00" }, { "operation": "add_edge", - "rtt_ns": 912027, - "rtt_ms": 0.912027, + "rtt_ns": 1561833, + "rtt_ms": 1.561833, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "310", - "timestamp": "2025-11-27T01:21:55.831198228Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.333492-08:00" }, { "operation": "add_edge", - "rtt_ns": 988047, - "rtt_ms": 0.988047, + "rtt_ns": 1905791, + "rtt_ms": 1.905791, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.831222048Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:54.333722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005347, - "rtt_ms": 1.005347, + "rtt_ns": 3589500, + "rtt_ms": 3.5895, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.831308058Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:54.333896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824934, - "rtt_ms": 1.824934, + "rtt_ns": 3560333, + "rtt_ms": 3.560333, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.831308528Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:54.333987-08:00" }, { "operation": "add_edge", - "rtt_ns": 982797, - "rtt_ms": 0.982797, + "rtt_ns": 1343541, + "rtt_ms": 1.343541, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.831317518Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:54.334158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913094, - "rtt_ms": 1.913094, + "rtt_ns": 2211042, + "rtt_ms": 2.211042, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:55.831320928Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:54.334211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189376, - "rtt_ms": 1.189376, + "rtt_ns": 2306625, + "rtt_ms": 2.306625, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.831384907Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:54.334257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164056, - "rtt_ms": 1.164056, + "rtt_ns": 2705334, + "rtt_ms": 2.705334, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:55.831425567Z" + "vertex_to": "310", + "timestamp": "2025-11-27T04:01:54.334425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515656, - "rtt_ms": 1.515656, + "rtt_ns": 3436125, + "rtt_ms": 3.436125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.832595184Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:54.33449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501415, - "rtt_ms": 1.501415, + "rtt_ns": 1493750, + "rtt_ms": 1.49375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:55.832679143Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:54.335216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594065, - "rtt_ms": 1.594065, + "rtt_ns": 1295875, + "rtt_ms": 1.295875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:55.832818353Z" + "vertex_to": "915", + "timestamp": "2025-11-27T04:01:54.335284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680325, - "rtt_ms": 1.680325, + "rtt_ns": 1409417, + "rtt_ms": 1.409417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:55.832879783Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:54.335307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856474, - "rtt_ms": 1.856474, + "rtt_ns": 1470833, + "rtt_ms": 1.470833, "checkpoint": 0, "vertex_from": "132", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:55.833180372Z" + "timestamp": "2025-11-27T04:01:54.335632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933844, - "rtt_ms": 1.933844, + "rtt_ns": 4436667, + "rtt_ms": 4.436667, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "598", - "timestamp": "2025-11-27T01:21:55.833320231Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.335639-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125953, - "rtt_ms": 2.125953, + "rtt_ns": 2152750, + "rtt_ms": 2.15275, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "915", - "timestamp": "2025-11-27T01:21:55.833444781Z" + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:54.335646-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208873, - "rtt_ms": 2.208873, + "rtt_ns": 1648875, + "rtt_ms": 1.648875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:55.833518451Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:01:54.335862-08:00" }, { "operation": "add_edge", - "rtt_ns": 2832171, - "rtt_ms": 2.832171, + "rtt_ns": 1862375, + "rtt_ms": 1.862375, "checkpoint": 0, "vertex_from": "132", "vertex_to": "970", - "timestamp": "2025-11-27T01:21:55.834259018Z" + "timestamp": "2025-11-27T04:01:54.336121-08:00" }, { "operation": "add_edge", - "rtt_ns": 2979950, - "rtt_ms": 2.97995, + "rtt_ns": 1860917, + "rtt_ms": 1.860917, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:55.834289828Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:54.336288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722504, - "rtt_ms": 1.722504, + "rtt_ns": 958584, + "rtt_ms": 0.958584, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:55.834319048Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.337248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698565, - "rtt_ms": 1.698565, + "rtt_ns": 1629208, + "rtt_ms": 1.629208, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:55.834378678Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:01:54.337273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559375, - "rtt_ms": 1.559375, + "rtt_ns": 1634250, + "rtt_ms": 1.63425, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:55.834379488Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:54.337499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704064, - "rtt_ms": 1.704064, + "rtt_ns": 1914375, + "rtt_ms": 1.914375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.834585287Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:54.337559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476415, - "rtt_ms": 1.476415, + "rtt_ns": 1993459, + "rtt_ms": 1.993459, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.834658077Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:54.33764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376166, - "rtt_ms": 1.376166, + "rtt_ns": 3159917, + "rtt_ms": 3.159917, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "685", - "timestamp": "2025-11-27T01:21:55.834697907Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:54.337652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325846, - "rtt_ms": 1.325846, + "rtt_ns": 2560292, + "rtt_ms": 2.560292, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.834771477Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:54.337868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291565, - "rtt_ms": 1.291565, + "rtt_ns": 1764541, + "rtt_ms": 1.764541, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:55.834811496Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:01:54.337886-08:00" }, { "operation": "add_edge", - "rtt_ns": 685238, - "rtt_ms": 0.685238, + "rtt_ns": 2620500, + "rtt_ms": 2.6205, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.835005316Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.337905-08:00" }, { "operation": "add_edge", - "rtt_ns": 768638, - "rtt_ms": 0.768638, + "rtt_ns": 2803542, + "rtt_ms": 2.803542, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "563", - "timestamp": "2025-11-27T01:21:55.835061386Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:54.338021-08:00" }, { "operation": "add_edge", - "rtt_ns": 840138, - "rtt_ms": 0.840138, + "rtt_ns": 1304792, + "rtt_ms": 1.304792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:55.835101726Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:54.338579-08:00" }, { "operation": "add_edge", - "rtt_ns": 760007, - "rtt_ms": 0.760007, + "rtt_ns": 1476166, + "rtt_ms": 1.476166, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:55.835140885Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:54.338725-08:00" }, { "operation": "add_edge", - "rtt_ns": 783067, - "rtt_ms": 0.783067, + "rtt_ns": 1264875, + "rtt_ms": 1.264875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:55.835163455Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:54.338765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040277, - "rtt_ms": 1.040277, + "rtt_ns": 1325291, + "rtt_ms": 1.325291, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:55.835700234Z" + "vertex_to": "133", + "timestamp": "2025-11-27T04:01:54.339212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090926, - "rtt_ms": 1.090926, + "rtt_ns": 1771250, + "rtt_ms": 1.77125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.835863323Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:54.339333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299886, - "rtt_ms": 1.299886, + "rtt_ns": 1557333, + "rtt_ms": 1.557333, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:55.835886863Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:54.339463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164117, - "rtt_ms": 1.164117, + "rtt_ns": 1524833, + "rtt_ms": 1.524833, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:55.835976583Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:54.339549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287406, - "rtt_ms": 1.287406, + "rtt_ns": 1971916, + "rtt_ms": 1.971916, "checkpoint": 0, "vertex_from": "132", "vertex_to": "585", - "timestamp": "2025-11-27T01:21:55.835986653Z" + "timestamp": "2025-11-27T04:01:54.339613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103236, - "rtt_ms": 1.103236, + "rtt_ns": 1985083, + "rtt_ms": 1.985083, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "133", - "timestamp": "2025-11-27T01:21:55.836113212Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.339638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456886, - "rtt_ms": 1.456886, + "rtt_ns": 2006917, + "rtt_ms": 2.006917, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:55.836601831Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:54.339876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659495, - "rtt_ms": 1.659495, + "rtt_ns": 1880792, + "rtt_ms": 1.880792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:55.83682423Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:54.340462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752004, - "rtt_ms": 1.752004, + "rtt_ns": 1341209, + "rtt_ms": 1.341209, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:55.8368551Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.340554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824944, - "rtt_ms": 1.824944, + "rtt_ns": 1839959, + "rtt_ms": 1.839959, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.83688785Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:54.340566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543685, - "rtt_ms": 1.543685, + "rtt_ns": 1575709, + "rtt_ms": 1.575709, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:55.837245949Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.341453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395976, - "rtt_ms": 1.395976, + "rtt_ns": 1945000, + "rtt_ms": 1.945, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.837261909Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:54.341495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673225, - "rtt_ms": 1.673225, + "rtt_ns": 2052334, + "rtt_ms": 2.052334, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.837787707Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:54.341516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194116, - "rtt_ms": 1.194116, + "rtt_ns": 1934792, + "rtt_ms": 1.934792, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.838019636Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:54.341573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155273, - "rtt_ms": 2.155273, + "rtt_ns": 2183750, + "rtt_ms": 2.18375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.838043766Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.341798-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058293, - "rtt_ms": 2.058293, + "rtt_ns": 2484292, + "rtt_ms": 2.484292, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:55.838047166Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:54.341818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163296, - "rtt_ms": 1.163296, + "rtt_ns": 3066667, + "rtt_ms": 3.066667, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:55.838052466Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:54.341833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201296, - "rtt_ms": 1.201296, + "rtt_ns": 1283875, + "rtt_ms": 1.283875, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:55.838057856Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:54.342802-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692294, - "rtt_ms": 1.692294, + "rtt_ns": 2405917, + "rtt_ms": 2.405917, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:55.838295795Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:54.342869-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381352, - "rtt_ms": 2.381352, + "rtt_ns": 1556917, + "rtt_ms": 1.556917, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.838359825Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:54.343013-08:00" }, { "operation": "add_edge", - "rtt_ns": 2266913, - "rtt_ms": 2.266913, + "rtt_ns": 2581416, + "rtt_ms": 2.581416, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.839515462Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:54.343136-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301792, - "rtt_ms": 2.301792, + "rtt_ns": 1712833, + "rtt_ms": 1.712833, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:55.839565521Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.343209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785304, - "rtt_ms": 1.785304, + "rtt_ns": 1745458, + "rtt_ms": 1.745458, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.839574551Z" + "vertex_to": "171", + "timestamp": "2025-11-27T04:01:54.34332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893934, - "rtt_ms": 1.893934, + "rtt_ns": 1674875, + "rtt_ms": 1.674875, "checkpoint": 0, "vertex_from": "132", "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.83994215Z" + "timestamp": "2025-11-27T04:01:54.343475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1952144, - "rtt_ms": 1.952144, + "rtt_ns": 2936417, + "rtt_ms": 2.936417, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:55.83997292Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.343504-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1646185, - "rtt_ms": 1.646185, + "operation": "add_edge", + "rtt_ns": 1838083, + "rtt_ms": 1.838083, "checkpoint": 0, - "vertex_from": "365", - "timestamp": "2025-11-27T01:21:55.84000914Z" + "vertex_from": "132", + "vertex_to": "186", + "timestamp": "2025-11-27T04:01:54.343673-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010384, - "rtt_ms": 2.010384, + "rtt_ns": 1916750, + "rtt_ms": 1.91675, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "171", - "timestamp": "2025-11-27T01:21:55.84005885Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:54.343736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797235, - "rtt_ms": 1.797235, + "rtt_ns": 966375, + "rtt_ms": 0.966375, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.84009489Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:54.34398-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174643, - "rtt_ms": 2.174643, + "rtt_ns": 1481250, + "rtt_ms": 1.48125, "checkpoint": 0, "vertex_from": "132", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:55.840229249Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.344286-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2212043, - "rtt_ms": 2.212043, + "operation": "add_vertex", + "rtt_ns": 1745208, + "rtt_ms": 1.745208, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "186", - "timestamp": "2025-11-27T01:21:55.840272679Z" + "vertex_from": "365", + "timestamp": "2025-11-27T04:01:54.344616-08:00" }, { "operation": "add_edge", - "rtt_ns": 746928, - "rtt_ms": 0.746928, + "rtt_ns": 1985416, + "rtt_ms": 1.985416, "checkpoint": 0, "vertex_from": "132", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.840313649Z" + "timestamp": "2025-11-27T04:01:54.345123-08:00" }, { "operation": "add_edge", - "rtt_ns": 737098, - "rtt_ms": 0.737098, + "rtt_ns": 1462750, + "rtt_ms": 1.46275, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "218", - "timestamp": "2025-11-27T01:21:55.840315179Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.345142-08:00" }, { "operation": "add_edge", - "rtt_ns": 815377, - "rtt_ms": 0.815377, + "rtt_ns": 1840042, + "rtt_ms": 1.840042, "checkpoint": 0, - "vertex_from": "132", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:55.840333689Z" + "vertex_from": "133", + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:54.345161-08:00" }, { "operation": "add_edge", - "rtt_ns": 924547, - "rtt_ms": 0.924547, + "rtt_ns": 2009959, + "rtt_ms": 2.009959, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.841020887Z" + "vertex_to": "218", + "timestamp": "2025-11-27T04:01:54.34522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011676, - "rtt_ms": 1.011676, + "rtt_ns": 1763750, + "rtt_ms": 1.76375, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.841071276Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.345241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162706, - "rtt_ms": 1.162706, + "rtt_ns": 1748167, + "rtt_ms": 1.748167, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.841136696Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.345253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255406, - "rtt_ms": 1.255406, + "rtt_ns": 1883875, + "rtt_ms": 1.883875, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.841199646Z" + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:54.345866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253796, - "rtt_ms": 1.253796, + "rtt_ns": 1690958, + "rtt_ms": 1.690958, "checkpoint": 0, "vertex_from": "132", "vertex_to": "365", - "timestamp": "2025-11-27T01:21:55.841263306Z" + "timestamp": "2025-11-27T04:01:54.346308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534785, - "rtt_ms": 1.534785, + "rtt_ns": 2083750, + "rtt_ms": 2.08375, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:55.841808904Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.346372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650364, - "rtt_ms": 1.650364, + "rtt_ns": 1805792, + "rtt_ms": 1.805792, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "752", - "timestamp": "2025-11-27T01:21:55.841986563Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:54.347059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702594, - "rtt_ms": 1.702594, + "rtt_ns": 1962250, + "rtt_ms": 1.96225, "checkpoint": 0, "vertex_from": "133", "vertex_to": "340", - "timestamp": "2025-11-27T01:21:55.842019533Z" + "timestamp": "2025-11-27T04:01:54.347086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848384, - "rtt_ms": 1.848384, + "rtt_ns": 1925375, + "rtt_ms": 1.925375, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:55.842080473Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.34709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206846, - "rtt_ms": 1.206846, + "rtt_ns": 3368542, + "rtt_ms": 3.368542, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.842279072Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:54.347107-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020383, - "rtt_ms": 2.020383, + "rtt_ns": 1271209, + "rtt_ms": 1.271209, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.842335012Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.347139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269526, - "rtt_ms": 1.269526, + "rtt_ns": 1922000, + "rtt_ms": 1.922, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:55.842471142Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.347143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460935, - "rtt_ms": 1.460935, + "rtt_ns": 2311708, + "rtt_ms": 2.311708, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.842483602Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:54.347455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380806, - "rtt_ms": 1.380806, + "rtt_ns": 1693042, + "rtt_ms": 1.693042, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.842518412Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:54.348004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281775, - "rtt_ms": 1.281775, + "rtt_ns": 1401917, + "rtt_ms": 1.401917, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.842546251Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.348489-08:00" }, { "operation": "add_edge", - "rtt_ns": 738997, - "rtt_ms": 0.738997, + "rtt_ns": 2135584, + "rtt_ms": 2.135584, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.842548941Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.348508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209886, - "rtt_ms": 1.209886, + "rtt_ns": 3449417, + "rtt_ms": 3.449417, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.843291149Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.348691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277586, - "rtt_ms": 1.277586, + "rtt_ns": 2178250, + "rtt_ms": 2.17825, "checkpoint": 0, "vertex_from": "133", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.843297949Z" + "timestamp": "2025-11-27T04:01:54.349239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066677, - "rtt_ms": 1.066677, + "rtt_ns": 2266167, + "rtt_ms": 2.266167, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.843346419Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.349374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429086, - "rtt_ms": 1.429086, + "rtt_ns": 2370791, + "rtt_ms": 2.370791, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.843417019Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.349463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169536, - "rtt_ms": 1.169536, + "rtt_ns": 2375750, + "rtt_ms": 2.37575, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.843505388Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.34952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508605, - "rtt_ms": 1.508605, + "rtt_ns": 2425084, + "rtt_ms": 2.425084, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.843993397Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.349565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444696, - "rtt_ms": 1.444696, + "rtt_ns": 2176000, + "rtt_ms": 2.176, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.843994477Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:54.349633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591815, - "rtt_ms": 1.591815, + "rtt_ns": 1688208, + "rtt_ms": 1.688208, "checkpoint": 0, "vertex_from": "133", "vertex_to": "600", - "timestamp": "2025-11-27T01:21:55.844139166Z" + "timestamp": "2025-11-27T04:01:54.349694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688374, - "rtt_ms": 1.688374, + "rtt_ns": 1215459, + "rtt_ms": 1.215459, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.844160596Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.349706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741684, - "rtt_ms": 1.741684, + "rtt_ns": 1399791, + "rtt_ms": 1.399791, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.844261076Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.350092-08:00" }, { "operation": "add_edge", - "rtt_ns": 902897, - "rtt_ms": 0.902897, + "rtt_ns": 1683292, + "rtt_ms": 1.683292, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:55.845064443Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:54.350193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784294, - "rtt_ms": 1.784294, + "rtt_ns": 1297042, + "rtt_ms": 1.297042, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:55.845076483Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:54.350818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584355, - "rtt_ms": 1.584355, + "rtt_ns": 1671916, + "rtt_ms": 1.671916, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.845090903Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:01:54.350913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744204, - "rtt_ms": 1.744204, + "rtt_ns": 1530000, + "rtt_ms": 1.53, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "621", - "timestamp": "2025-11-27T01:21:55.845092493Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:54.351164-08:00" }, { "operation": "add_edge", - "rtt_ns": 962977, - "rtt_ms": 0.962977, + "rtt_ns": 1598166, + "rtt_ms": 1.598166, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:55.845103823Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:54.351295-08:00" }, { "operation": "add_edge", - "rtt_ns": 846837, - "rtt_ms": 0.846837, + "rtt_ns": 1625500, + "rtt_ms": 1.6255, "checkpoint": 0, "vertex_from": "133", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.845114173Z" + "timestamp": "2025-11-27T04:01:54.351333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889954, - "rtt_ms": 1.889954, + "rtt_ns": 1988542, + "rtt_ms": 1.988542, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.845190083Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:54.351364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240126, - "rtt_ms": 1.240126, + "rtt_ns": 1899458, + "rtt_ms": 1.899458, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:55.845236393Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:54.351364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726324, - "rtt_ms": 1.726324, + "rtt_ns": 1851709, + "rtt_ms": 1.851709, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:55.845720881Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:54.351418-08:00" }, { "operation": "add_edge", - "rtt_ns": 2324132, - "rtt_ms": 2.324132, + "rtt_ns": 2026958, + "rtt_ms": 2.026958, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:55.845742731Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:54.352221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168887, - "rtt_ms": 1.168887, + "rtt_ns": 1452250, + "rtt_ms": 1.45225, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.84623467Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.352271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348916, - "rtt_ms": 1.348916, + "rtt_ns": 1473583, + "rtt_ms": 1.473583, "checkpoint": 0, "vertex_from": "133", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.846443349Z" + "timestamp": "2025-11-27T04:01:54.352388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864964, - "rtt_ms": 1.864964, + "rtt_ns": 2318666, + "rtt_ms": 2.318666, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:55.846944747Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.352413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806744, - "rtt_ms": 1.806744, + "rtt_ns": 1478417, + "rtt_ms": 1.478417, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.846998437Z" + "vertex_to": "175", + "timestamp": "2025-11-27T04:01:54.352643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502455, - "rtt_ms": 1.502455, + "rtt_ns": 1566125, + "rtt_ms": 1.566125, "checkpoint": 0, "vertex_from": "133", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.847224976Z" + "timestamp": "2025-11-27T04:01:54.352931-08:00" }, { "operation": "add_edge", - "rtt_ns": 2001654, - "rtt_ms": 2.001654, + "rtt_ns": 1589625, + "rtt_ms": 1.589625, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:55.847746185Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.352954-08:00" }, { "operation": "add_edge", - "rtt_ns": 2818181, - "rtt_ms": 2.818181, + "rtt_ns": 1635417, + "rtt_ms": 1.635417, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.847910304Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.352969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720324, - "rtt_ms": 1.720324, + "rtt_ns": 1820458, + "rtt_ms": 1.820458, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:55.847956204Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:54.353116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515795, - "rtt_ms": 1.515795, + "rtt_ns": 1738333, + "rtt_ms": 1.738333, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "557", - "timestamp": "2025-11-27T01:21:55.847962314Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:54.353157-08:00" }, { "operation": "add_edge", - "rtt_ns": 2857271, - "rtt_ms": 2.857271, + "rtt_ns": 1716833, + "rtt_ms": 1.716833, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "175", - "timestamp": "2025-11-27T01:21:55.847963514Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:54.353989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2752191, - "rtt_ms": 2.752191, + "rtt_ns": 1683000, + "rtt_ms": 1.683, "checkpoint": 0, "vertex_from": "133", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.847991174Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:54.354097-08:00" }, { "operation": "add_edge", - "rtt_ns": 2880581, - "rtt_ms": 2.880581, + "rtt_ns": 1501917, + "rtt_ms": 1.501917, "checkpoint": 0, - "vertex_from": "133", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:55.847996774Z" + "vertex_from": "134", + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:54.354148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468766, - "rtt_ms": 1.468766, + "rtt_ns": 1859208, + "rtt_ms": 1.859208, "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:55.848695562Z" + "vertex_from": "133", + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:54.354249-08:00" }, { "operation": "add_edge", - "rtt_ns": 940257, - "rtt_ms": 0.940257, + "rtt_ns": 1530542, + "rtt_ms": 1.530542, "checkpoint": 0, "vertex_from": "134", "vertex_to": "897", - "timestamp": "2025-11-27T01:21:55.848852261Z" + "timestamp": "2025-11-27T04:01:54.354486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127866, - "rtt_ms": 1.127866, + "rtt_ns": 2330416, + "rtt_ms": 2.330416, "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.848876791Z" + "vertex_from": "133", + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:54.354555-08:00" }, { "operation": "add_edge", - "rtt_ns": 950497, - "rtt_ms": 0.950497, + "rtt_ns": 1442500, + "rtt_ms": 1.4425, "checkpoint": 0, "vertex_from": "134", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.848915671Z" + "timestamp": "2025-11-27T04:01:54.3546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965904, - "rtt_ms": 1.965904, + "rtt_ns": 1717917, + "rtt_ms": 1.717917, "checkpoint": 0, - "vertex_from": "133", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:55.848966141Z" + "vertex_from": "134", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.35465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009477, - "rtt_ms": 1.009477, + "rtt_ns": 1812083, + "rtt_ms": 1.812083, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.848973401Z" + "vertex_to": "217", + "timestamp": "2025-11-27T04:01:54.354782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095686, - "rtt_ms": 1.095686, + "rtt_ns": 1705542, + "rtt_ms": 1.705542, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:55.84908812Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.354823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118666, - "rtt_ms": 1.118666, + "rtt_ns": 1580875, + "rtt_ms": 1.580875, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.84911693Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:54.355571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189956, - "rtt_ms": 1.189956, + "rtt_ns": 1724916, + "rtt_ms": 1.724916, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "217", - "timestamp": "2025-11-27T01:21:55.84914747Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.355823-08:00" }, { "operation": "add_edge", - "rtt_ns": 2252123, - "rtt_ms": 2.252123, + "rtt_ns": 1394875, + "rtt_ms": 1.394875, "checkpoint": 0, - "vertex_from": "133", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.84920136Z" + "vertex_from": "134", + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:54.355882-08:00" }, { "operation": "add_edge", - "rtt_ns": 916537, - "rtt_ms": 0.916537, + "rtt_ns": 1289250, + "rtt_ms": 1.28925, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.849616519Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.355891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231546, - "rtt_ms": 1.231546, + "rtt_ns": 1433250, + "rtt_ms": 1.43325, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.850086787Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:54.355989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449726, - "rtt_ms": 1.449726, + "rtt_ns": 1478792, + "rtt_ms": 1.478792, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:55.850568056Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:54.356129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673825, - "rtt_ms": 1.673825, + "rtt_ns": 1893667, + "rtt_ms": 1.893667, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.850641556Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.356146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697264, - "rtt_ms": 1.697264, + "rtt_ns": 1347292, + "rtt_ms": 1.347292, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:55.850672375Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:54.356171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832224, - "rtt_ms": 1.832224, + "rtt_ns": 2092958, + "rtt_ms": 2.092958, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:55.850711265Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.356241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104986, - "rtt_ms": 1.104986, + "rtt_ns": 1599791, + "rtt_ms": 1.599791, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "206", - "timestamp": "2025-11-27T01:21:55.850723055Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.356383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813894, - "rtt_ms": 1.813894, + "rtt_ns": 1352291, + "rtt_ms": 1.352291, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.850731305Z" + "vertex_to": "136", + "timestamp": "2025-11-27T04:01:54.357178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721295, - "rtt_ms": 1.721295, + "rtt_ns": 1305750, + "rtt_ms": 1.30575, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.850810645Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.357295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628365, - "rtt_ms": 1.628365, + "rtt_ns": 2013666, + "rtt_ms": 2.013666, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "136", - "timestamp": "2025-11-27T01:21:55.850831805Z" + "vertex_to": "206", + "timestamp": "2025-11-27T04:01:54.357897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750185, - "rtt_ms": 1.750185, + "rtt_ns": 2043792, + "rtt_ms": 2.043792, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "628", - "timestamp": "2025-11-27T01:21:55.850899165Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.357936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180746, - "rtt_ms": 1.180746, + "rtt_ns": 2393458, + "rtt_ms": 2.393458, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:55.851823612Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:01:54.357965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365235, - "rtt_ms": 1.365235, + "rtt_ns": 2390625, + "rtt_ms": 2.390625, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.851935331Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.358633-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1265256, - "rtt_ms": 1.265256, + "operation": "add_vertex", + "rtt_ns": 1350917, + "rtt_ms": 1.350917, "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.851939671Z" + "vertex_from": "221", + "timestamp": "2025-11-27T04:01:54.358647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873984, - "rtt_ms": 1.873984, + "rtt_ns": 2266541, + "rtt_ms": 2.266541, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.851963151Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:54.35865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363506, - "rtt_ms": 1.363506, + "rtt_ns": 2518125, + "rtt_ms": 2.518125, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.852087941Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.358665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287946, - "rtt_ms": 1.287946, + "rtt_ns": 1532833, + "rtt_ms": 1.532833, "checkpoint": 0, "vertex_from": "134", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:55.852100141Z" + "timestamp": "2025-11-27T04:01:54.358712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258026, - "rtt_ms": 1.258026, + "rtt_ns": 1192125, + "rtt_ms": 1.192125, "checkpoint": 0, "vertex_from": "134", "vertex_to": "168", - "timestamp": "2025-11-27T01:21:55.852158741Z" + "timestamp": "2025-11-27T04:01:54.35909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466766, - "rtt_ms": 1.466766, + "rtt_ns": 3085583, + "rtt_ms": 3.085583, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.852199791Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1368706, - "rtt_ms": 1.368706, - "checkpoint": 0, - "vertex_from": "221", - "timestamp": "2025-11-27T01:21:55.85220481Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:54.359216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543915, - "rtt_ms": 1.543915, + "rtt_ns": 3063291, + "rtt_ms": 3.063291, "checkpoint": 0, "vertex_from": "134", "vertex_to": "500", - "timestamp": "2025-11-27T01:21:55.85225829Z" + "timestamp": "2025-11-27T04:01:54.359235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031736, - "rtt_ms": 1.031736, + "rtt_ns": 1592666, + "rtt_ms": 1.592666, "checkpoint": 0, "vertex_from": "134", "vertex_to": "396", - "timestamp": "2025-11-27T01:21:55.852857198Z" + "timestamp": "2025-11-27T04:01:54.359532-08:00" }, { "operation": "add_edge", - "rtt_ns": 970107, - "rtt_ms": 0.970107, + "rtt_ns": 1723250, + "rtt_ms": 1.72325, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:55.852911348Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.35969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136767, - "rtt_ms": 1.136767, + "rtt_ns": 1220667, + "rtt_ms": 1.220667, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.853073568Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:54.359886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148696, - "rtt_ms": 1.148696, + "rtt_ns": 1249708, + "rtt_ms": 1.249708, "checkpoint": 0, "vertex_from": "134", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.853113027Z" + "timestamp": "2025-11-27T04:01:54.3599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050626, - "rtt_ms": 1.050626, + "rtt_ns": 1502500, + "rtt_ms": 1.5025, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:55.853152297Z" + "vertex_to": "221", + "timestamp": "2025-11-27T04:01:54.36015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791974, - "rtt_ms": 1.791974, + "rtt_ns": 1609875, + "rtt_ms": 1.609875, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:55.853885515Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:54.360244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778914, - "rtt_ms": 1.778914, + "rtt_ns": 1537125, + "rtt_ms": 1.537125, "checkpoint": 0, "vertex_from": "134", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.853938915Z" + "timestamp": "2025-11-27T04:01:54.36063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968914, - "rtt_ms": 1.968914, + "rtt_ns": 1529417, + "rtt_ms": 1.529417, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "221", - "timestamp": "2025-11-27T01:21:55.854174394Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.360765-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012333, - "rtt_ms": 2.012333, + "rtt_ns": 1727334, + "rtt_ms": 1.727334, "checkpoint": 0, "vertex_from": "134", "vertex_to": "225", - "timestamp": "2025-11-27T01:21:55.854214184Z" + "timestamp": "2025-11-27T04:01:54.360945-08:00" }, { "operation": "add_edge", - "rtt_ns": 2447902, - "rtt_ms": 2.447902, + "rtt_ns": 2320333, + "rtt_ms": 2.320333, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.854708372Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:54.361033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141093, - "rtt_ms": 2.141093, + "rtt_ns": 1368000, + "rtt_ms": 1.368, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "234", - "timestamp": "2025-11-27T01:21:55.855006001Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.361256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2578721, - "rtt_ms": 2.578721, + "rtt_ns": 1592916, + "rtt_ms": 1.592916, "checkpoint": 0, "vertex_from": "134", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.855491669Z" + "timestamp": "2025-11-27T04:01:54.361283-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563541, - "rtt_ms": 2.563541, + "rtt_ns": 1414833, + "rtt_ms": 1.414833, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.855638279Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.361316-08:00" }, { "operation": "add_edge", - "rtt_ns": 2662362, - "rtt_ms": 2.662362, + "rtt_ns": 1808792, + "rtt_ms": 1.808792, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.855777019Z" + "vertex_to": "234", + "timestamp": "2025-11-27T04:01:54.361342-08:00" }, { "operation": "add_edge", - "rtt_ns": 2700861, - "rtt_ms": 2.700861, + "rtt_ns": 1663667, + "rtt_ms": 1.663667, "checkpoint": 0, "vertex_from": "134", "vertex_to": "404", - "timestamp": "2025-11-27T01:21:55.855856158Z" + "timestamp": "2025-11-27T04:01:54.361815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945583, - "rtt_ms": 1.945583, + "rtt_ns": 1223291, + "rtt_ms": 1.223291, "checkpoint": 0, "vertex_from": "134", "vertex_to": "340", - "timestamp": "2025-11-27T01:21:55.855886458Z" + "timestamp": "2025-11-27T04:01:54.361854-08:00" }, { "operation": "add_edge", - "rtt_ns": 2020773, - "rtt_ms": 2.020773, + "rtt_ns": 1610333, + "rtt_ms": 1.610333, "checkpoint": 0, "vertex_from": "134", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.855909758Z" + "timestamp": "2025-11-27T04:01:54.361857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754824, - "rtt_ms": 1.754824, + "rtt_ns": 1619083, + "rtt_ms": 1.619083, "checkpoint": 0, "vertex_from": "134", "vertex_to": "960", - "timestamp": "2025-11-27T01:21:55.855970278Z" + "timestamp": "2025-11-27T04:01:54.362565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849134, - "rtt_ms": 1.849134, + "rtt_ns": 1309833, + "rtt_ms": 1.309833, "checkpoint": 0, "vertex_from": "134", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.856026088Z" + "vertex_to": "377", + "timestamp": "2025-11-27T04:01:54.362585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338026, - "rtt_ms": 1.338026, + "rtt_ns": 1575041, + "rtt_ms": 1.575041, "checkpoint": 0, "vertex_from": "134", "vertex_to": "556", - "timestamp": "2025-11-27T01:21:55.856048418Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1072837, - "rtt_ms": 1.072837, - "checkpoint": 0, - "vertex_from": "134", - "vertex_to": "377", - "timestamp": "2025-11-27T01:21:55.856080728Z" + "timestamp": "2025-11-27T04:01:54.362609-08:00" }, { "operation": "add_edge", - "rtt_ns": 906157, - "rtt_ms": 0.906157, + "rtt_ns": 1369791, + "rtt_ms": 1.369791, "checkpoint": 0, "vertex_from": "135", "vertex_to": "282", - "timestamp": "2025-11-27T01:21:55.856684696Z" + "timestamp": "2025-11-27T04:01:54.362719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113136, - "rtt_ms": 1.113136, + "rtt_ns": 1547833, + "rtt_ms": 1.547833, "checkpoint": 0, "vertex_from": "135", "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.856752765Z" + "timestamp": "2025-11-27T04:01:54.362865-08:00" }, { "operation": "add_edge", - "rtt_ns": 905557, - "rtt_ms": 0.905557, - "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.856793025Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1388356, - "rtt_ms": 1.388356, + "rtt_ns": 2072375, + "rtt_ms": 2.072375, "checkpoint": 0, "vertex_from": "135", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.856881295Z" + "timestamp": "2025-11-27T04:01:54.363358-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1184127, - "rtt_ms": 1.184127, + "rtt_ns": 1708250, + "rtt_ms": 1.70825, "checkpoint": 0, "vertex_from": "619", - "timestamp": "2025-11-27T01:21:55.857045625Z" + "timestamp": "2025-11-27T04:01:54.363529-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2043542, + "rtt_ms": 2.043542, + "checkpoint": 0, + "vertex_from": "135", + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.363903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632314, - "rtt_ms": 1.632314, + "rtt_ns": 1499625, + "rtt_ms": 1.499625, "checkpoint": 0, "vertex_from": "135", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.857714532Z" + "timestamp": "2025-11-27T04:01:54.36422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834284, - "rtt_ms": 1.834284, + "rtt_ns": 1656875, + "rtt_ms": 1.656875, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.857744922Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:54.364269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718274, - "rtt_ms": 1.718274, + "rtt_ns": 1699625, + "rtt_ms": 1.699625, "checkpoint": 0, "vertex_from": "135", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.857745362Z" + "timestamp": "2025-11-27T04:01:54.364286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785524, - "rtt_ms": 1.785524, + "rtt_ns": 1545709, + "rtt_ms": 1.545709, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.857757692Z" + "vertex_to": "156", + "timestamp": "2025-11-27T04:01:54.364412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739654, - "rtt_ms": 1.739654, + "rtt_ns": 902125, + "rtt_ms": 0.902125, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.857793142Z" + "vertex_to": "619", + "timestamp": "2025-11-27T04:01:54.364431-08:00" }, { "operation": "add_edge", - "rtt_ns": 729618, - "rtt_ms": 0.729618, + "rtt_ns": 1099041, + "rtt_ms": 1.099041, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.85848071Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:54.364458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814884, - "rtt_ms": 1.814884, + "rtt_ns": 1903584, + "rtt_ms": 1.903584, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "156", - "timestamp": "2025-11-27T01:21:55.858502Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.364469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778165, - "rtt_ms": 1.778165, + "rtt_ns": 2631125, + "rtt_ms": 2.631125, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:55.8585332Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.364486-08:00" }, { "operation": "add_edge", - "rtt_ns": 880898, - "rtt_ms": 0.880898, + "rtt_ns": 4225791, + "rtt_ms": 4.225791, "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.85859777Z" + "vertex_from": "134", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.364992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745304, - "rtt_ms": 1.745304, + "rtt_ns": 1383750, + "rtt_ms": 1.38375, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.858628589Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.365287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585534, - "rtt_ms": 1.585534, + "rtt_ns": 1681541, + "rtt_ms": 1.681541, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "619", - "timestamp": "2025-11-27T01:21:55.858631509Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:54.365968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947704, - "rtt_ms": 1.947704, + "rtt_ns": 1797208, + "rtt_ms": 1.797208, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.858741799Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.366067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217656, - "rtt_ms": 1.217656, + "rtt_ns": 1650208, + "rtt_ms": 1.650208, "checkpoint": 0, - "vertex_from": "135", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:55.858964358Z" + "vertex_from": "136", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.366137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622015, - "rtt_ms": 1.622015, + "rtt_ns": 1744583, + "rtt_ms": 1.744583, "checkpoint": 0, "vertex_from": "136", "vertex_to": "806", - "timestamp": "2025-11-27T01:21:55.859416907Z" + "timestamp": "2025-11-27T04:01:54.366203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711365, - "rtt_ms": 1.711365, + "rtt_ns": 1853833, + "rtt_ms": 1.853833, "checkpoint": 0, "vertex_from": "135", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.859470457Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.366267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1132296, - "rtt_ms": 1.132296, + "rtt_ns": 2122541, + "rtt_ms": 2.122541, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.859614106Z" + "vertex_from": "135", + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.366353-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1991167, + "rtt_ms": 1.991167, + "checkpoint": 0, + "vertex_from": "135", + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.366423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147386, - "rtt_ms": 1.147386, + "rtt_ns": 2284209, + "rtt_ms": 2.284209, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:55.859746696Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.366755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291916, - "rtt_ms": 1.291916, + "rtt_ns": 1489750, + "rtt_ms": 1.48975, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.859796256Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:54.366778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887574, - "rtt_ms": 1.887574, + "rtt_ns": 1998209, + "rtt_ms": 1.998209, "checkpoint": 0, "vertex_from": "136", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.860421954Z" + "timestamp": "2025-11-27T04:01:54.366993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888674, - "rtt_ms": 1.888674, + "rtt_ns": 1274791, + "rtt_ms": 1.274791, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:55.860521973Z" + "vertex_to": "137", + "timestamp": "2025-11-27T04:01:54.367244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1953654, - "rtt_ms": 1.953654, + "rtt_ns": 1456084, + "rtt_ms": 1.456084, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "137", - "timestamp": "2025-11-27T01:21:55.860583573Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:54.367566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310266, - "rtt_ms": 1.310266, + "rtt_ns": 1690875, + "rtt_ms": 1.690875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.860728463Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.368046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803264, - "rtt_ms": 1.803264, + "rtt_ns": 1969333, + "rtt_ms": 1.969333, "checkpoint": 0, "vertex_from": "136", "vertex_to": "595", - "timestamp": "2025-11-27T01:21:55.860769232Z" + "timestamp": "2025-11-27T04:01:54.368174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300525, - "rtt_ms": 1.300525, + "rtt_ns": 1429250, + "rtt_ms": 1.42925, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.860772052Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.368208-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051263, - "rtt_ms": 2.051263, + "rtt_ns": 1969000, + "rtt_ms": 1.969, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.860794512Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.368238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201146, - "rtt_ms": 1.201146, + "rtt_ns": 1814458, + "rtt_ms": 1.814458, "checkpoint": 0, "vertex_from": "136", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.860816452Z" + "timestamp": "2025-11-27T04:01:54.368238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626244, - "rtt_ms": 1.626244, + "rtt_ns": 2160958, + "rtt_ms": 2.160958, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.86137398Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.368298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177012, - "rtt_ms": 2.177012, + "rtt_ns": 1687292, + "rtt_ms": 1.687292, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.861974518Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.368444-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099343, - "rtt_ms": 2.099343, + "rtt_ns": 1323000, + "rtt_ms": 1.323, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "140", - "timestamp": "2025-11-27T01:21:55.862522497Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:54.368569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079933, - "rtt_ms": 2.079933, + "rtt_ns": 1627083, + "rtt_ms": 1.627083, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.862664866Z" + "vertex_to": "140", + "timestamp": "2025-11-27T04:01:54.368621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963703, - "rtt_ms": 1.963703, + "rtt_ns": 2002959, + "rtt_ms": 2.002959, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "210", - "timestamp": "2025-11-27T01:21:55.862693306Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.369571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954044, - "rtt_ms": 1.954044, + "rtt_ns": 1443084, + "rtt_ms": 1.443084, "checkpoint": 0, "vertex_from": "136", "vertex_to": "150", - "timestamp": "2025-11-27T01:21:55.862725446Z" + "timestamp": "2025-11-27T04:01:54.369619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932904, - "rtt_ms": 1.932904, + "rtt_ns": 1394042, + "rtt_ms": 1.394042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.862728316Z" + "vertex_to": "348", + "timestamp": "2025-11-27T04:01:54.369634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957124, - "rtt_ms": 1.957124, + "rtt_ns": 1679708, + "rtt_ms": 1.679708, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.862730006Z" + "vertex_to": "182", + "timestamp": "2025-11-27T04:01:54.370125-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267783, - "rtt_ms": 2.267783, + "rtt_ns": 2077000, + "rtt_ms": 2.077, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:55.862791376Z" + "vertex_to": "210", + "timestamp": "2025-11-27T04:01:54.370125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983264, - "rtt_ms": 1.983264, + "rtt_ns": 1974042, + "rtt_ms": 1.974042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "348", - "timestamp": "2025-11-27T01:21:55.862800806Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.370184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580875, - "rtt_ms": 1.580875, + "rtt_ns": 1917334, + "rtt_ms": 1.917334, "checkpoint": 0, "vertex_from": "136", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.862956595Z" + "timestamp": "2025-11-27T04:01:54.370217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073786, - "rtt_ms": 1.073786, + "rtt_ns": 1671500, + "rtt_ms": 1.6715, "checkpoint": 0, "vertex_from": "136", "vertex_to": "579", - "timestamp": "2025-11-27T01:21:55.863597283Z" + "timestamp": "2025-11-27T04:01:54.370242-08:00" }, { "operation": "add_edge", - "rtt_ns": 945947, - "rtt_ms": 0.945947, + "rtt_ns": 2258750, + "rtt_ms": 2.25875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.863612343Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.370497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668495, - "rtt_ms": 1.668495, + "rtt_ns": 2179000, + "rtt_ms": 2.179, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "182", - "timestamp": "2025-11-27T01:21:55.863644543Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.370801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227676, - "rtt_ms": 1.227676, + "rtt_ns": 1314500, + "rtt_ms": 1.3145, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:55.863959092Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:54.370934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281186, - "rtt_ms": 1.281186, + "rtt_ns": 1316416, + "rtt_ms": 1.316416, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.863975762Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.370952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403115, - "rtt_ms": 1.403115, + "rtt_ns": 1230166, + "rtt_ms": 1.230166, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:55.864129441Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:54.371474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341665, - "rtt_ms": 1.341665, + "rtt_ns": 1370042, + "rtt_ms": 1.370042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "842", - "timestamp": "2025-11-27T01:21:55.864145051Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:54.371497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428455, - "rtt_ms": 1.428455, + "rtt_ns": 2196667, + "rtt_ms": 2.196667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.864221301Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.37177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581415, - "rtt_ms": 1.581415, + "rtt_ns": 1660166, + "rtt_ms": 1.660166, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.864310951Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.371787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376306, - "rtt_ms": 1.376306, + "rtt_ns": 1640750, + "rtt_ms": 1.64075, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.864333991Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:54.372594-08:00" }, { "operation": "add_edge", - "rtt_ns": 753768, - "rtt_ms": 0.753768, + "rtt_ns": 2112917, + "rtt_ms": 2.112917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:55.864351831Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.372612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380655, - "rtt_ms": 1.380655, + "rtt_ns": 2467667, + "rtt_ms": 2.467667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.865026508Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.372686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227386, - "rtt_ms": 1.227386, + "rtt_ns": 1780209, + "rtt_ms": 1.780209, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.865204978Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:54.372716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290486, - "rtt_ms": 1.290486, + "rtt_ns": 2754208, + "rtt_ms": 2.754208, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:55.865250458Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:01:54.37294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494856, - "rtt_ms": 1.494856, + "rtt_ns": 1545416, + "rtt_ms": 1.545416, "checkpoint": 0, "vertex_from": "136", "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.865625547Z" + "timestamp": "2025-11-27T04:01:54.37302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036573, - "rtt_ms": 2.036573, + "rtt_ns": 1273458, + "rtt_ms": 1.273458, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.865650636Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:54.373044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829784, - "rtt_ms": 1.829784, + "rtt_ns": 2240916, + "rtt_ms": 2.240916, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "138", - "timestamp": "2025-11-27T01:21:55.865977815Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.373044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1999684, - "rtt_ms": 1.999684, + "rtt_ns": 1781916, + "rtt_ms": 1.781916, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:55.866222035Z" + "vertex_to": "138", + "timestamp": "2025-11-27T04:01:54.37328-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132243, - "rtt_ms": 2.132243, + "rtt_ns": 1531416, + "rtt_ms": 1.531416, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:55.866467164Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.374146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861405, - "rtt_ms": 1.861405, + "rtt_ns": 2399792, + "rtt_ms": 2.399792, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.866889103Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.374188-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051884, - "rtt_ms": 2.051884, + "rtt_ns": 1502083, + "rtt_ms": 1.502083, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "361", - "timestamp": "2025-11-27T01:21:55.86770432Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:54.374219-08:00" }, { "operation": "add_edge", - "rtt_ns": 2606582, - "rtt_ms": 2.606582, + "rtt_ns": 1618042, + "rtt_ms": 1.618042, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:55.86781285Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:54.374316-08:00" }, { "operation": "add_edge", - "rtt_ns": 3557408, - "rtt_ms": 3.557408, + "rtt_ns": 1306792, + "rtt_ms": 1.306792, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.867910219Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.374335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286512, - "rtt_ms": 2.286512, + "rtt_ns": 1763208, + "rtt_ms": 1.763208, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.867913749Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:54.374358-08:00" }, { "operation": "add_edge", - "rtt_ns": 3605798, - "rtt_ms": 3.605798, + "rtt_ns": 1864125, + "rtt_ms": 1.864125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.867917739Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:54.37491-08:00" }, { "operation": "add_edge", - "rtt_ns": 2770621, - "rtt_ms": 2.770621, + "rtt_ns": 1880834, + "rtt_ms": 1.880834, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:55.868022549Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:54.374927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844384, - "rtt_ms": 1.844384, + "rtt_ns": 1993833, + "rtt_ms": 1.993833, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:55.868067399Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:54.374936-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093514, - "rtt_ms": 2.093514, + "rtt_ns": 1731291, + "rtt_ms": 1.731291, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:55.868072329Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:54.375012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212256, - "rtt_ms": 1.212256, + "rtt_ns": 1555084, + "rtt_ms": 1.555084, "checkpoint": 0, "vertex_from": "136", "vertex_to": "397", - "timestamp": "2025-11-27T01:21:55.868102849Z" + "timestamp": "2025-11-27T04:01:54.375744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634855, - "rtt_ms": 1.634855, + "rtt_ns": 1760792, + "rtt_ms": 1.760792, "checkpoint": 0, "vertex_from": "136", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.868102999Z" + "timestamp": "2025-11-27T04:01:54.375908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237026, - "rtt_ms": 1.237026, + "rtt_ns": 1654542, + "rtt_ms": 1.654542, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:55.868942906Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:54.375971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192046, - "rtt_ms": 1.192046, + "rtt_ns": 1657333, + "rtt_ms": 1.657333, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:55.869006376Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:54.375993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094937, - "rtt_ms": 1.094937, + "rtt_ns": 1678334, + "rtt_ms": 1.678334, "checkpoint": 0, "vertex_from": "136", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.869009936Z" + "timestamp": "2025-11-27T04:01:54.376037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174587, - "rtt_ms": 1.174587, + "rtt_ns": 1123708, + "rtt_ms": 1.123708, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.869093096Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.37606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739344, - "rtt_ms": 1.739344, + "rtt_ns": 1188792, + "rtt_ms": 1.188792, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.869807713Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.376099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815274, - "rtt_ms": 1.815274, + "rtt_ns": 2255250, + "rtt_ms": 2.25525, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.869839403Z" + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:54.376475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930104, - "rtt_ms": 1.930104, + "rtt_ns": 1563583, + "rtt_ms": 1.563583, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:55.869842003Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.376491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745194, - "rtt_ms": 1.745194, + "rtt_ns": 1475375, + "rtt_ms": 1.475375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "166", - "timestamp": "2025-11-27T01:21:55.869850933Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.377513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778734, - "rtt_ms": 1.778734, + "rtt_ns": 2414834, + "rtt_ms": 2.414834, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:55.869852323Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.378388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758044, - "rtt_ms": 1.758044, + "rtt_ns": 2032708, + "rtt_ms": 2.032708, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:55.869864363Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.378527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655674, - "rtt_ms": 1.655674, + "rtt_ns": 2550875, + "rtt_ms": 2.550875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:55.87075133Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.378544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756794, - "rtt_ms": 1.756794, + "rtt_ns": 3629625, + "rtt_ms": 3.629625, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.87076548Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:54.378644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857204, - "rtt_ms": 1.857204, + "rtt_ns": 2743834, + "rtt_ms": 2.743834, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.870805Z" + "vertex_to": "166", + "timestamp": "2025-11-27T04:01:54.378653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807754, - "rtt_ms": 1.807754, + "rtt_ns": 2917792, + "rtt_ms": 2.917792, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.87082036Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:54.378663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571925, - "rtt_ms": 1.571925, + "rtt_ns": 2628083, + "rtt_ms": 2.628083, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "244", - "timestamp": "2025-11-27T01:21:55.871438658Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:54.378689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690215, - "rtt_ms": 1.690215, + "rtt_ns": 2298334, + "rtt_ms": 2.298334, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.871531348Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:54.37879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736075, - "rtt_ms": 1.736075, + "rtt_ns": 2831500, + "rtt_ms": 2.8315, "checkpoint": 0, "vertex_from": "136", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.871546918Z" + "timestamp": "2025-11-27T04:01:54.378931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702905, - "rtt_ms": 1.702905, + "rtt_ns": 2233250, + "rtt_ms": 2.23325, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:55.871557108Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:54.379748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715475, - "rtt_ms": 1.715475, + "rtt_ns": 1422125, + "rtt_ms": 1.422125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:55.871567998Z" + "vertex_to": "170", + "timestamp": "2025-11-27T04:01:54.379967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725465, - "rtt_ms": 1.725465, + "rtt_ns": 1523333, + "rtt_ms": 1.523333, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:55.871569888Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:01:54.380052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477666, - "rtt_ms": 1.477666, + "rtt_ns": 1720291, + "rtt_ms": 1.720291, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "170", - "timestamp": "2025-11-27T01:21:55.872231756Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:54.380109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603075, - "rtt_ms": 1.603075, + "rtt_ns": 1501292, + "rtt_ms": 1.501292, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:55.872369965Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:54.380165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580335, - "rtt_ms": 1.580335, + "rtt_ns": 1557834, + "rtt_ms": 1.557834, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.872403925Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:54.380203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654325, - "rtt_ms": 1.654325, + "rtt_ns": 1582750, + "rtt_ms": 1.58275, "checkpoint": 0, "vertex_from": "136", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.872461175Z" + "timestamp": "2025-11-27T04:01:54.380237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507495, - "rtt_ms": 1.507495, + "rtt_ns": 1593958, + "rtt_ms": 1.593958, "checkpoint": 0, "vertex_from": "136", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.872947493Z" + "timestamp": "2025-11-27T04:01:54.380286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450155, - "rtt_ms": 1.450155, + "rtt_ns": 1475041, + "rtt_ms": 1.475041, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:55.873019323Z" + "vertex_to": "628", + "timestamp": "2025-11-27T04:01:54.380408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503835, - "rtt_ms": 1.503835, + "rtt_ns": 1618416, + "rtt_ms": 1.618416, "checkpoint": 0, "vertex_from": "136", "vertex_to": "557", - "timestamp": "2025-11-27T01:21:55.873036803Z" + "timestamp": "2025-11-27T04:01:54.380411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470555, - "rtt_ms": 1.470555, + "rtt_ns": 1281875, + "rtt_ms": 1.281875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.873041473Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:54.381392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512515, - "rtt_ms": 1.512515, + "rtt_ns": 1261916, + "rtt_ms": 1.261916, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:55.873072083Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.381466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524915, - "rtt_ms": 1.524915, + "rtt_ns": 1315584, + "rtt_ms": 1.315584, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "628", - "timestamp": "2025-11-27T01:21:55.873073143Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.381481-08:00" }, { "operation": "add_edge", - "rtt_ns": 859257, - "rtt_ms": 0.859257, + "rtt_ns": 1747167, + "rtt_ms": 1.747167, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:55.87380867Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.3818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360605, - "rtt_ms": 1.360605, + "rtt_ns": 1405666, + "rtt_ms": 1.405666, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:55.87382411Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:54.381814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437295, - "rtt_ms": 1.437295, + "rtt_ns": 1439875, + "rtt_ms": 1.439875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.87384395Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:54.381851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511605, - "rtt_ms": 1.511605, + "rtt_ns": 1614459, + "rtt_ms": 1.614459, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.87388283Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:54.381852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394695, - "rtt_ms": 1.394695, + "rtt_ns": 2140375, + "rtt_ms": 2.140375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:55.874415468Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:54.381889-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206553, - "rtt_ms": 2.206553, + "rtt_ns": 1624542, + "rtt_ms": 1.624542, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:55.874441978Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:54.381911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528285, - "rtt_ms": 1.528285, + "rtt_ns": 2186875, + "rtt_ms": 2.186875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:55.874570978Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:54.382155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520595, - "rtt_ms": 1.520595, + "rtt_ns": 1117041, + "rtt_ms": 1.117041, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.874594468Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:54.382932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557245, - "rtt_ms": 1.557245, + "rtt_ns": 1551291, + "rtt_ms": 1.551291, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:55.874597798Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:54.382944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714084, - "rtt_ms": 1.714084, + "rtt_ns": 1663500, + "rtt_ms": 1.6635, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.874789327Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.38313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124986, - "rtt_ms": 1.124986, + "rtt_ns": 1424458, + "rtt_ms": 1.424458, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:55.874970486Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:54.383338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204056, - "rtt_ms": 1.204056, + "rtt_ns": 1540208, + "rtt_ms": 1.540208, "checkpoint": 0, "vertex_from": "136", "vertex_to": "777", - "timestamp": "2025-11-27T01:21:55.875014666Z" + "timestamp": "2025-11-27T04:01:54.383343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756944, - "rtt_ms": 1.756944, + "rtt_ns": 1531916, + "rtt_ms": 1.531916, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:55.875582694Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.383424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715864, - "rtt_ms": 1.715864, + "rtt_ns": 1731125, + "rtt_ms": 1.731125, "checkpoint": 0, "vertex_from": "136", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.875600754Z" + "timestamp": "2025-11-27T04:01:54.383584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170066, - "rtt_ms": 1.170066, + "rtt_ns": 1825250, + "rtt_ms": 1.82525, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:55.875613184Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:54.383677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192606, - "rtt_ms": 1.192606, + "rtt_ns": 2252208, + "rtt_ms": 2.252208, + "checkpoint": 0, + "vertex_from": "136", + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.383734-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1588584, + "rtt_ms": 1.588584, "checkpoint": 0, "vertex_from": "136", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.875764524Z" + "timestamp": "2025-11-27T04:01:54.383746-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1476583, + "rtt_ms": 1.476583, + "checkpoint": 0, + "vertex_from": "875", + "timestamp": "2025-11-27T04:01:54.384904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220425, - "rtt_ms": 1.220425, + "rtt_ns": 1815875, + "rtt_ms": 1.815875, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.875820483Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.384947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228105, - "rtt_ms": 1.228105, + "rtt_ns": 2044625, + "rtt_ms": 2.044625, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.875823663Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:54.384989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036136, - "rtt_ms": 1.036136, + "rtt_ns": 1410250, + "rtt_ms": 1.41025, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.875826733Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:54.384996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410865, - "rtt_ms": 1.410865, + "rtt_ns": 1653792, + "rtt_ms": 1.653792, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.875827863Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.384998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628055, - "rtt_ms": 1.628055, + "rtt_ns": 1788875, + "rtt_ms": 1.788875, "checkpoint": 0, "vertex_from": "136", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:55.876599551Z" + "timestamp": "2025-11-27T04:01:54.385129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593255, - "rtt_ms": 1.593255, + "rtt_ns": 2232750, + "rtt_ms": 2.23275, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.876609181Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:54.385166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693435, - "rtt_ms": 1.693435, + "rtt_ns": 1465708, + "rtt_ms": 1.465708, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:55.877522638Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:01:54.385213-08:00" }, { "operation": "add_edge", - "rtt_ns": 2077374, - "rtt_ms": 2.077374, + "rtt_ns": 1539375, + "rtt_ms": 1.539375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:55.877680568Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:54.385218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019994, - "rtt_ms": 2.019994, + "rtt_ns": 1565459, + "rtt_ms": 1.565459, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:55.877845387Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:54.385302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2226003, - "rtt_ms": 2.226003, + "rtt_ns": 1133333, + "rtt_ms": 1.133333, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "497", - "timestamp": "2025-11-27T01:21:55.878048036Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:54.386307-08:00" }, { "operation": "add_edge", - "rtt_ns": 2292893, - "rtt_ms": 2.292893, + "rtt_ns": 1016375, + "rtt_ms": 1.016375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "401", - "timestamp": "2025-11-27T01:21:55.878121356Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:54.386319-08:00" }, { "operation": "add_edge", - "rtt_ns": 2436632, - "rtt_ms": 2.436632, + "rtt_ns": 1646958, + "rtt_ms": 1.646958, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:55.878202906Z" + "vertex_to": "875", + "timestamp": "2025-11-27T04:01:54.386551-08:00" }, { "operation": "add_edge", - "rtt_ns": 2839811, - "rtt_ms": 2.839811, + "rtt_ns": 1681917, + "rtt_ms": 1.681917, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:55.878454965Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:54.386678-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 3375590, - "rtt_ms": 3.37559, + "operation": "add_edge", + "rtt_ns": 1755750, + "rtt_ms": 1.75575, "checkpoint": 0, - "vertex_from": "875", - "timestamp": "2025-11-27T01:21:55.878962344Z" + "vertex_from": "136", + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:54.386746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2429062, - "rtt_ms": 2.429062, + "rtt_ns": 1597667, + "rtt_ms": 1.597667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "633", - "timestamp": "2025-11-27T01:21:55.879040303Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:54.386818-08:00" }, { "operation": "add_edge", - "rtt_ns": 2457282, - "rtt_ms": 2.457282, + "rtt_ns": 1962458, + "rtt_ms": 1.962458, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:55.879060413Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:54.38691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576495, - "rtt_ms": 1.576495, + "rtt_ns": 1849208, + "rtt_ms": 1.849208, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.879100753Z" + "vertex_to": "633", + "timestamp": "2025-11-27T04:01:54.386979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439405, - "rtt_ms": 1.439405, + "rtt_ns": 1991750, + "rtt_ms": 1.99175, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.879121683Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:54.38699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356696, - "rtt_ms": 1.356696, + "rtt_ns": 1787083, + "rtt_ms": 1.787083, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:55.879203563Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:54.387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203126, - "rtt_ms": 1.203126, + "rtt_ns": 975458, + "rtt_ms": 0.975458, "checkpoint": 0, "vertex_from": "136", "vertex_to": "780", - "timestamp": "2025-11-27T01:21:55.879661121Z" + "timestamp": "2025-11-27T04:01:54.387528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654355, - "rtt_ms": 1.654355, + "rtt_ns": 1114500, + "rtt_ms": 1.1145, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:55.879704541Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.387934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526105, - "rtt_ms": 1.526105, + "rtt_ns": 1653000, + "rtt_ms": 1.653, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.879731291Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:54.387963-08:00" }, { "operation": "add_edge", - "rtt_ns": 863197, - "rtt_ms": 0.863197, + "rtt_ns": 1429916, + "rtt_ms": 1.429916, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "875", - "timestamp": "2025-11-27T01:21:55.879826041Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:54.388109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936624, - "rtt_ms": 1.936624, + "rtt_ns": 2227375, + "rtt_ms": 2.227375, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:55.88005941Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.388548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598185, - "rtt_ms": 1.598185, + "rtt_ns": 1829125, + "rtt_ms": 1.829125, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.880700758Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.388577-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1611445, - "rtt_ms": 1.611445, + "rtt_ns": 1684708, + "rtt_ms": 1.684708, "checkpoint": 0, "vertex_from": "655", - "timestamp": "2025-11-27T01:21:55.880738888Z" + "timestamp": "2025-11-27T04:01:54.388598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080657, - "rtt_ms": 1.080657, + "rtt_ns": 1719250, + "rtt_ms": 1.71925, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.880743208Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:54.388699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713505, - "rtt_ms": 1.713505, + "rtt_ns": 1179250, + "rtt_ms": 1.17925, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:55.880755128Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:54.388708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550765, - "rtt_ms": 1.550765, + "rtt_ns": 1722250, + "rtt_ms": 1.72225, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.880756098Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.388713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712135, - "rtt_ms": 1.712135, + "rtt_ns": 2172958, + "rtt_ms": 2.172958, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.880774018Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:54.389174-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086197, - "rtt_ms": 1.086197, + "rtt_ns": 1248000, + "rtt_ms": 1.248, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:55.880792378Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:54.389826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062707, - "rtt_ms": 1.062707, + "rtt_ns": 1842083, + "rtt_ms": 1.842083, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:55.880795358Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:54.389909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434625, - "rtt_ms": 1.434625, + "rtt_ns": 1417292, + "rtt_ms": 1.417292, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.881496025Z" + "vertex_to": "655", + "timestamp": "2025-11-27T04:01:54.390016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695614, - "rtt_ms": 1.695614, + "rtt_ns": 2170042, + "rtt_ms": 2.170042, "checkpoint": 0, "vertex_from": "136", "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.881522895Z" + "timestamp": "2025-11-27T04:01:54.390105-08:00" }, { - "operation": "add_edge", - "rtt_ns": 997297, - "rtt_ms": 0.997297, + "operation": "add_vertex", + "rtt_ns": 2087333, + "rtt_ms": 2.087333, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "655", - "timestamp": "2025-11-27T01:21:55.881736715Z" + "vertex_from": "828", + "timestamp": "2025-11-27T04:01:54.390201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622125, - "rtt_ms": 1.622125, + "rtt_ns": 1623667, + "rtt_ms": 1.623667, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.882378753Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:54.390324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652715, - "rtt_ms": 1.652715, + "rtt_ns": 1859417, + "rtt_ms": 1.859417, "checkpoint": 0, "vertex_from": "136", "vertex_to": "404", - "timestamp": "2025-11-27T01:21:55.882397993Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1802954, - "rtt_ms": 1.802954, - "checkpoint": 0, - "vertex_from": "828", - "timestamp": "2025-11-27T01:21:55.882507502Z" + "timestamp": "2025-11-27T04:01:54.390409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726144, - "rtt_ms": 1.726144, + "rtt_ns": 1762125, + "rtt_ms": 1.762125, "checkpoint": 0, "vertex_from": "136", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.882520192Z" + "timestamp": "2025-11-27T04:01:54.390478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037047, - "rtt_ms": 1.037047, + "rtt_ns": 1900334, + "rtt_ms": 1.900334, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.882535662Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:54.390609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788974, - "rtt_ms": 1.788974, + "rtt_ns": 1459458, + "rtt_ms": 1.459458, "checkpoint": 0, "vertex_from": "136", "vertex_to": "199", - "timestamp": "2025-11-27T01:21:55.882585562Z" + "timestamp": "2025-11-27T04:01:54.390635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835394, - "rtt_ms": 1.835394, + "rtt_ns": 1166959, + "rtt_ms": 1.166959, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:55.882593912Z" + "vertex_from": "137", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.391183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819804, - "rtt_ms": 1.819804, + "rtt_ns": 1367500, + "rtt_ms": 1.3675, "checkpoint": 0, "vertex_from": "136", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:55.882595242Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.391195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113307, - "rtt_ms": 1.113307, + "rtt_ns": 1749667, + "rtt_ms": 1.749667, "checkpoint": 0, "vertex_from": "137", "vertex_to": "211", - "timestamp": "2025-11-27T01:21:55.882638572Z" + "timestamp": "2025-11-27T04:01:54.391659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695914, - "rtt_ms": 1.695914, + "rtt_ns": 1877875, + "rtt_ms": 1.877875, "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.883434349Z" + "vertex_from": "136", + "vertex_to": "828", + "timestamp": "2025-11-27T04:01:54.392079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083806, - "rtt_ms": 1.083806, + "rtt_ns": 1909958, + "rtt_ms": 1.909958, "checkpoint": 0, "vertex_from": "137", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.883483049Z" + "timestamp": "2025-11-27T04:01:54.392235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506575, - "rtt_ms": 1.506575, + "rtt_ns": 2028125, + "rtt_ms": 2.028125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.884103397Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:54.392438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535755, - "rtt_ms": 1.535755, + "rtt_ns": 1830750, + "rtt_ms": 1.83075, "checkpoint": 0, "vertex_from": "137", "vertex_to": "996", - "timestamp": "2025-11-27T01:21:55.884131337Z" + "timestamp": "2025-11-27T04:01:54.392466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555425, - "rtt_ms": 1.555425, + "rtt_ns": 1861125, + "rtt_ms": 1.861125, "checkpoint": 0, "vertex_from": "137", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.884142007Z" + "timestamp": "2025-11-27T04:01:54.392471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609045, - "rtt_ms": 1.609045, - "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.884146097Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1773824, - "rtt_ms": 1.773824, + "rtt_ns": 2377708, + "rtt_ms": 2.377708, "checkpoint": 0, "vertex_from": "137", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.884154277Z" + "timestamp": "2025-11-27T04:01:54.392484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644695, - "rtt_ms": 1.644695, + "rtt_ns": 2038917, + "rtt_ms": 2.038917, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:55.884166497Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.392517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665465, - "rtt_ms": 1.665465, + "rtt_ns": 1775625, + "rtt_ms": 1.775625, "checkpoint": 0, - "vertex_from": "136", - "vertex_to": "828", - "timestamp": "2025-11-27T01:21:55.884174147Z" + "vertex_from": "137", + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.39296-08:00" }, { "operation": "add_edge", - "rtt_ns": 898717, - "rtt_ms": 0.898717, + "rtt_ns": 1337583, + "rtt_ms": 1.337583, "checkpoint": 0, "vertex_from": "137", "vertex_to": "676", - "timestamp": "2025-11-27T01:21:55.884335566Z" + "timestamp": "2025-11-27T04:01:54.393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113263, - "rtt_ms": 2.113263, + "rtt_ns": 2014250, + "rtt_ms": 2.01425, "checkpoint": 0, "vertex_from": "137", "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.884753805Z" + "timestamp": "2025-11-27T04:01:54.39321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342296, - "rtt_ms": 1.342296, + "rtt_ns": 1823916, + "rtt_ms": 1.823916, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:55.884827315Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:54.39406-08:00" }, { "operation": "add_edge", - "rtt_ns": 903367, - "rtt_ms": 0.903367, + "rtt_ns": 1608416, + "rtt_ms": 1.608416, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.885047044Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.394094-08:00" }, { "operation": "add_edge", - "rtt_ns": 940997, - "rtt_ms": 0.940997, + "rtt_ns": 1661500, + "rtt_ms": 1.6615, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.885074344Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.394129-08:00" }, { "operation": "add_edge", - "rtt_ns": 974737, - "rtt_ms": 0.974737, + "rtt_ns": 1681542, + "rtt_ms": 1.681542, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:55.885122214Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:54.3942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057067, - "rtt_ms": 1.057067, + "rtt_ns": 1830583, + "rtt_ms": 1.830583, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:55.885161674Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.394271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535055, - "rtt_ms": 1.535055, + "rtt_ns": 1824667, + "rtt_ms": 1.824667, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.885711682Z" + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:54.394296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628135, - "rtt_ms": 1.628135, + "rtt_ns": 2307167, + "rtt_ms": 2.307167, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.885783672Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:54.394387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617045, - "rtt_ms": 1.617045, + "rtt_ns": 1438500, + "rtt_ms": 1.4385, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:55.885785992Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.394439-08:00" }, { "operation": "add_edge", - "rtt_ns": 2392602, - "rtt_ms": 2.392602, + "rtt_ns": 1396292, + "rtt_ms": 1.396292, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.886729498Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:54.394607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595724, - "rtt_ms": 1.595724, + "rtt_ns": 1836875, + "rtt_ms": 1.836875, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:55.886759908Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.394797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016046, - "rtt_ms": 1.016046, + "rtt_ns": 1483792, + "rtt_ms": 1.483792, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:55.886803348Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:54.39578-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076883, - "rtt_ms": 2.076883, + "rtt_ns": 1680792, + "rtt_ms": 1.680792, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:55.886832488Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:54.395801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127466, - "rtt_ms": 1.127466, + "rtt_ns": 1755750, + "rtt_ms": 1.75575, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:55.886840538Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:54.395816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766144, - "rtt_ms": 1.766144, + "rtt_ns": 1661709, + "rtt_ms": 1.661709, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:55.886843058Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.395863-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1072286, - "rtt_ms": 1.072286, + "rtt_ns": 1559542, + "rtt_ms": 1.559542, "checkpoint": 0, "vertex_from": "980", - "timestamp": "2025-11-27T01:21:55.886860488Z" + "timestamp": "2025-11-27T04:01:54.395948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902223, - "rtt_ms": 1.902223, + "rtt_ns": 1686125, + "rtt_ms": 1.686125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.887025817Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:01:54.396484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188432, - "rtt_ms": 2.188432, + "rtt_ns": 2274625, + "rtt_ms": 2.274625, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:55.887026897Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:54.396546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1985453, - "rtt_ms": 1.985453, + "rtt_ns": 2455667, + "rtt_ms": 2.455667, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:55.887034457Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:54.396592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153057, - "rtt_ms": 1.153057, + "rtt_ns": 2206500, + "rtt_ms": 2.2065, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:55.887884135Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:54.396646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208926, - "rtt_ms": 1.208926, + "rtt_ns": 2091250, + "rtt_ms": 2.09125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "659", - "timestamp": "2025-11-27T01:21:55.887971334Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:54.396699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173326, - "rtt_ms": 1.173326, + "rtt_ns": 1017500, + "rtt_ms": 1.0175, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:55.887977714Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:54.397718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300626, - "rtt_ms": 1.300626, + "rtt_ns": 1785458, + "rtt_ms": 1.785458, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "451", - "timestamp": "2025-11-27T01:21:55.888133944Z" + "vertex_to": "980", + "timestamp": "2025-11-27T04:01:54.397734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486005, - "rtt_ms": 1.486005, + "rtt_ns": 1313875, + "rtt_ms": 1.313875, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.888329673Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.397799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506245, - "rtt_ms": 1.506245, + "rtt_ns": 1426166, + "rtt_ms": 1.426166, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "980", - "timestamp": "2025-11-27T01:21:55.888367533Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:54.398073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436956, - "rtt_ms": 1.436956, + "rtt_ns": 2445125, + "rtt_ms": 2.445125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.888464383Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:54.398226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666335, - "rtt_ms": 1.666335, + "rtt_ns": 1914875, + "rtt_ms": 1.914875, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.888510543Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.398462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888694, - "rtt_ms": 1.888694, + "rtt_ns": 1922125, + "rtt_ms": 1.922125, "checkpoint": 0, "vertex_from": "137", "vertex_to": "906", - "timestamp": "2025-11-27T01:21:55.888926021Z" + "timestamp": "2025-11-27T04:01:54.398515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102277, - "rtt_ms": 1.102277, + "rtt_ns": 2742041, + "rtt_ms": 2.742041, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:55.889074931Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:01:54.398544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141987, - "rtt_ms": 1.141987, + "rtt_ns": 2746125, + "rtt_ms": 2.746125, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.889121181Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:54.398563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019706, - "rtt_ms": 1.019706, + "rtt_ns": 1264333, + "rtt_ms": 1.264333, "checkpoint": 0, "vertex_from": "137", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.88915424Z" + "timestamp": "2025-11-27T04:01:54.398999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370036, - "rtt_ms": 1.370036, + "rtt_ns": 1737792, + "rtt_ms": 1.737792, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:55.8892567Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:54.399458-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627032, - "rtt_ms": 2.627032, + "rtt_ns": 3606250, + "rtt_ms": 3.60625, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.889655399Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.399477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593444, - "rtt_ms": 1.593444, + "rtt_ns": 1679167, + "rtt_ms": 1.679167, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.890105937Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:54.399489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716024, - "rtt_ms": 1.716024, + "rtt_ns": 1073750, + "rtt_ms": 1.07375, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "938", - "timestamp": "2025-11-27T01:21:55.890181577Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.400076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820804, - "rtt_ms": 1.820804, + "rtt_ns": 1854500, + "rtt_ms": 1.8545, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.890190027Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.400418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867464, - "rtt_ms": 1.867464, + "rtt_ns": 1906750, + "rtt_ms": 1.90675, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:55.890199387Z" + "vertex_to": "933", + "timestamp": "2025-11-27T04:01:54.400451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303806, - "rtt_ms": 1.303806, + "rtt_ns": 2389750, + "rtt_ms": 2.38975, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.890234767Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.400464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158657, - "rtt_ms": 1.158657, + "rtt_ns": 2732083, + "rtt_ms": 2.732083, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.890314167Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:01:54.400961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297785, - "rtt_ms": 1.297785, + "rtt_ns": 1243875, + "rtt_ms": 1.243875, "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.890420596Z" + "vertex_from": "138", + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.401321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416295, - "rtt_ms": 1.416295, + "rtt_ns": 1952083, + "rtt_ms": 1.952083, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "933", - "timestamp": "2025-11-27T01:21:55.890494696Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:54.401442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144427, - "rtt_ms": 1.144427, + "rtt_ns": 2996250, + "rtt_ms": 2.99625, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:55.891336694Z" + "vertex_from": "137", + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.401463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682355, - "rtt_ms": 1.682355, + "rtt_ns": 1347042, + "rtt_ms": 1.347042, "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "781", - "timestamp": "2025-11-27T01:21:55.891339064Z" + "vertex_from": "138", + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:54.401769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313176, - "rtt_ms": 1.313176, + "rtt_ns": 1364708, + "rtt_ms": 1.364708, "checkpoint": 0, - "vertex_from": "137", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:55.891420883Z" + "vertex_from": "138", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.401817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240626, - "rtt_ms": 1.240626, + "rtt_ns": 2416875, + "rtt_ms": 2.416875, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.891441883Z" + "vertex_from": "137", + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:54.401876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217666, - "rtt_ms": 1.217666, + "rtt_ns": 1412292, + "rtt_ms": 1.412292, "checkpoint": 0, "vertex_from": "138", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.891453623Z" + "timestamp": "2025-11-27T04:01:54.401878-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209853, - "rtt_ms": 2.209853, + "rtt_ns": 3456666, + "rtt_ms": 3.456666, "checkpoint": 0, "vertex_from": "137", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:55.891468033Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.401972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287356, - "rtt_ms": 1.287356, + "rtt_ns": 1751750, + "rtt_ms": 1.75175, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.891470133Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.402713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759044, - "rtt_ms": 1.759044, + "rtt_ns": 3352875, + "rtt_ms": 3.352875, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.892074441Z" + "vertex_from": "137", + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:54.402831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889664, - "rtt_ms": 1.889664, + "rtt_ns": 1570167, + "rtt_ms": 1.570167, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.89231201Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:54.403034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829364, - "rtt_ms": 1.829364, + "rtt_ns": 1825500, + "rtt_ms": 1.8255, "checkpoint": 0, "vertex_from": "138", "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.89232786Z" + "timestamp": "2025-11-27T04:01:54.403268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230606, - "rtt_ms": 1.230606, + "rtt_ns": 1980375, + "rtt_ms": 1.980375, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:55.89256987Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.403304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387016, - "rtt_ms": 1.387016, + "rtt_ns": 1541000, + "rtt_ms": 1.541, "checkpoint": 0, "vertex_from": "138", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.892809279Z" + "timestamp": "2025-11-27T04:01:54.40336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525485, - "rtt_ms": 1.525485, + "rtt_ns": 1657167, + "rtt_ms": 1.657167, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "421", - "timestamp": "2025-11-27T01:21:55.892866729Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.403534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437036, - "rtt_ms": 1.437036, + "rtt_ns": 2008209, + "rtt_ms": 2.008209, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.892907069Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:54.403888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496765, - "rtt_ms": 1.496765, + "rtt_ns": 2176500, + "rtt_ms": 2.1765, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.892940788Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:01:54.403948-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1671750, + "rtt_ms": 1.67175, + "checkpoint": 0, + "vertex_from": "138", + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.404504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482045, - "rtt_ms": 1.482045, + "rtt_ns": 1840959, + "rtt_ms": 1.840959, "checkpoint": 0, "vertex_from": "138", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:55.892953508Z" + "timestamp": "2025-11-27T04:01:54.404555-08:00" }, { "operation": "add_edge", - "rtt_ns": 983097, - "rtt_ms": 0.983097, + "rtt_ns": 1533166, + "rtt_ms": 1.533166, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.893058738Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:54.40457-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026744, - "rtt_ms": 2.026744, + "rtt_ns": 2845000, + "rtt_ms": 2.845, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.893481977Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:54.404818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304616, - "rtt_ms": 1.304616, + "rtt_ns": 965250, + "rtt_ms": 0.96525, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:55.893617366Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.404854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157256, - "rtt_ms": 1.157256, + "rtt_ns": 1678417, + "rtt_ms": 1.678417, "checkpoint": 0, "vertex_from": "138", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.893727966Z" + "timestamp": "2025-11-27T04:01:54.404984-08:00" }, { "operation": "add_edge", - "rtt_ns": 950027, - "rtt_ms": 0.950027, + "rtt_ns": 1868709, + "rtt_ms": 1.868709, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:55.893760816Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:54.405139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480226, - "rtt_ms": 1.480226, + "rtt_ns": 1796166, + "rtt_ms": 1.796166, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:55.893810236Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:54.405157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074716, - "rtt_ms": 1.074716, + "rtt_ns": 1315250, + "rtt_ms": 1.31525, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "144", - "timestamp": "2025-11-27T01:21:55.893943375Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.405265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772774, - "rtt_ms": 1.772774, + "rtt_ns": 1740708, + "rtt_ms": 1.740708, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.894680963Z" + "vertex_to": "144", + "timestamp": "2025-11-27T04:01:54.405276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219866, - "rtt_ms": 1.219866, + "rtt_ns": 1164000, + "rtt_ms": 1.164, "checkpoint": 0, "vertex_from": "138", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.894704153Z" + "timestamp": "2025-11-27T04:01:54.405736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764165, - "rtt_ms": 1.764165, + "rtt_ns": 1305250, + "rtt_ms": 1.30525, "checkpoint": 0, "vertex_from": "138", "vertex_to": "777", - "timestamp": "2025-11-27T01:21:55.894719243Z" + "timestamp": "2025-11-27T04:01:54.405812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679845, - "rtt_ms": 1.679845, + "rtt_ns": 1745250, + "rtt_ms": 1.74525, "checkpoint": 0, "vertex_from": "138", "vertex_to": "753", - "timestamp": "2025-11-27T01:21:55.894740113Z" + "timestamp": "2025-11-27T04:01:54.406302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819465, - "rtt_ms": 1.819465, + "rtt_ns": 1362500, + "rtt_ms": 1.3625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.894763163Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.406348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321396, - "rtt_ms": 1.321396, + "rtt_ns": 1625167, + "rtt_ms": 1.625167, "checkpoint": 0, "vertex_from": "138", "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.894939862Z" + "timestamp": "2025-11-27T04:01:54.406444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247466, - "rtt_ms": 1.247466, + "rtt_ns": 1383959, + "rtt_ms": 1.383959, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.894976532Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:54.406525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243286, - "rtt_ms": 1.243286, + "rtt_ns": 1682083, + "rtt_ms": 1.682083, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:55.895054812Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.406537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901014, - "rtt_ms": 1.901014, + "rtt_ns": 1499625, + "rtt_ms": 1.499625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.89566315Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:54.406657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166706, - "rtt_ms": 1.166706, + "rtt_ns": 1642875, + "rtt_ms": 1.642875, "checkpoint": 0, "vertex_from": "138", "vertex_to": "277", - "timestamp": "2025-11-27T01:21:55.895851339Z" + "timestamp": "2025-11-27T04:01:54.406915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109716, - "rtt_ms": 1.109716, + "rtt_ns": 1774583, + "rtt_ms": 1.774583, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "202", - "timestamp": "2025-11-27T01:21:55.895852769Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.407052-08:00" }, { "operation": "add_edge", - "rtt_ns": 952987, - "rtt_ms": 0.952987, + "rtt_ns": 1301625, + "rtt_ms": 1.301625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "992", - "timestamp": "2025-11-27T01:21:55.895930779Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.407605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238606, - "rtt_ms": 1.238606, + "rtt_ns": 1801709, + "rtt_ms": 1.801709, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.895959859Z" + "vertex_to": "202", + "timestamp": "2025-11-27T04:01:54.407615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254266, - "rtt_ms": 1.254266, + "rtt_ns": 2445666, + "rtt_ms": 2.445666, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.895960439Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:54.408183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249436, - "rtt_ms": 1.249436, + "rtt_ns": 1975625, + "rtt_ms": 1.975625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.896013949Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:54.409029-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112664, - "rtt_ms": 2.112664, + "rtt_ns": 2755541, + "rtt_ms": 2.755541, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:55.896058459Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.409414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129206, - "rtt_ms": 1.129206, + "rtt_ns": 2957250, + "rtt_ms": 2.95725, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.896070858Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.409483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106976, - "rtt_ms": 1.106976, + "rtt_ns": 3051875, + "rtt_ms": 3.051875, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.896162868Z" + "vertex_to": "992", + "timestamp": "2025-11-27T04:01:54.409497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066907, - "rtt_ms": 1.066907, + "rtt_ns": 1900708, + "rtt_ms": 1.900708, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.896919316Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:54.409517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034196, - "rtt_ms": 1.034196, + "rtt_ns": 3112208, + "rtt_ms": 3.112208, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:55.896966695Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.40965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319505, - "rtt_ms": 1.319505, + "rtt_ns": 3336125, + "rtt_ms": 3.336125, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.896985055Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:54.409685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1153136, - "rtt_ms": 1.153136, + "rtt_ns": 2819375, + "rtt_ms": 2.819375, "checkpoint": 0, "vertex_from": "138", "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.897007665Z" + "timestamp": "2025-11-27T04:01:54.409736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314715, - "rtt_ms": 1.314715, + "rtt_ns": 1611833, + "rtt_ms": 1.611833, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:55.897276194Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.409796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328285, - "rtt_ms": 1.328285, + "rtt_ns": 2527125, + "rtt_ms": 2.527125, "checkpoint": 0, "vertex_from": "138", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.897289044Z" + "timestamp": "2025-11-27T04:01:54.410133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349505, - "rtt_ms": 1.349505, + "rtt_ns": 1514750, + "rtt_ms": 1.51475, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.897364784Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.410547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221256, - "rtt_ms": 1.221256, + "rtt_ns": 1054541, + "rtt_ms": 1.054541, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.897385104Z" + "vertex_from": "139", + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.41074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371796, - "rtt_ms": 1.371796, + "rtt_ns": 1398625, + "rtt_ms": 1.398625, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.897443654Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.410883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405915, - "rtt_ms": 1.405915, + "rtt_ns": 1486917, + "rtt_ms": 1.486917, "checkpoint": 0, - "vertex_from": "138", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.897466414Z" + "vertex_from": "139", + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:54.411138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126136, - "rtt_ms": 1.126136, + "rtt_ns": 1766666, + "rtt_ms": 1.766666, "checkpoint": 0, "vertex_from": "138", - "vertex_to": "153", - "timestamp": "2025-11-27T01:21:55.898046412Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:54.411284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085307, - "rtt_ms": 1.085307, + "rtt_ns": 1153708, + "rtt_ms": 1.153708, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:55.898072022Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:54.411306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090297, - "rtt_ms": 1.090297, + "rtt_ns": 1908583, + "rtt_ms": 1.908583, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.898101932Z" + "vertex_from": "138", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.411323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154887, - "rtt_ms": 1.154887, + "rtt_ns": 1545500, + "rtt_ms": 1.5455, "checkpoint": 0, - "vertex_from": "138", + "vertex_from": "139", "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.898126752Z" + "timestamp": "2025-11-27T04:01:54.411342-08:00" }, { "operation": "add_edge", - "rtt_ns": 997167, - "rtt_ms": 0.997167, + "rtt_ns": 1612250, + "rtt_ms": 1.61225, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:55.898287701Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:54.411349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123537, - "rtt_ms": 1.123537, + "rtt_ns": 2114791, + "rtt_ms": 2.114791, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:55.898402001Z" + "vertex_from": "138", + "vertex_to": "153", + "timestamp": "2025-11-27T04:01:54.411613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726644, - "rtt_ms": 1.726644, + "rtt_ns": 966292, + "rtt_ms": 0.966292, "checkpoint": 0, "vertex_from": "139", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.899172148Z" + "timestamp": "2025-11-27T04:01:54.411707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924854, - "rtt_ms": 1.924854, + "rtt_ns": 1763500, + "rtt_ms": 1.7635, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.899312008Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.412902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287546, - "rtt_ms": 1.287546, + "rtt_ns": 2367000, + "rtt_ms": 2.367, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.899335938Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:54.412915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214115, - "rtt_ms": 1.214115, + "rtt_ns": 1599542, + "rtt_ms": 1.599542, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.899341747Z" + "vertex_from": "140", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.41295-08:00" }, { "operation": "add_edge", - "rtt_ns": 2147113, - "rtt_ms": 2.147113, + "rtt_ns": 1748292, + "rtt_ms": 1.748292, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:55.899514427Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.413033-08:00" }, { "operation": "add_edge", - "rtt_ns": 2073273, - "rtt_ms": 2.073273, + "rtt_ns": 1343334, + "rtt_ms": 1.343334, "checkpoint": 0, - "vertex_from": "139", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.899541247Z" + "vertex_from": "140", + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:54.413052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746324, - "rtt_ms": 1.746324, + "rtt_ns": 1751625, + "rtt_ms": 1.751625, "checkpoint": 0, "vertex_from": "139", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.899849196Z" + "timestamp": "2025-11-27T04:01:54.413058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800144, - "rtt_ms": 1.800144, + "rtt_ns": 2203750, + "rtt_ms": 2.20375, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.899873506Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.413087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615375, - "rtt_ms": 1.615375, + "rtt_ns": 1785667, + "rtt_ms": 1.785667, "checkpoint": 0, "vertex_from": "139", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.899904496Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.41311-08:00" }, { "operation": "add_edge", - "rtt_ns": 847237, - "rtt_ms": 0.847237, + "rtt_ns": 1775500, + "rtt_ms": 1.7755, "checkpoint": 0, - "vertex_from": "140", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.900021715Z" + "vertex_from": "139", + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.41312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624764, - "rtt_ms": 1.624764, + "rtt_ns": 1511792, + "rtt_ms": 1.511792, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.900028245Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.413126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026807, - "rtt_ms": 1.026807, + "rtt_ns": 1326833, + "rtt_ms": 1.326833, "checkpoint": 0, "vertex_from": "140", "vertex_to": "165", - "timestamp": "2025-11-27T01:21:55.900544004Z" + "timestamp": "2025-11-27T04:01:54.414278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243496, - "rtt_ms": 1.243496, + "rtt_ns": 1338250, + "rtt_ms": 1.33825, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.900586473Z" + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:54.414391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406175, - "rtt_ms": 1.406175, + "rtt_ns": 1488709, + "rtt_ms": 1.488709, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:55.900719603Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.414404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433465, - "rtt_ms": 1.433465, + "rtt_ns": 1346166, + "rtt_ms": 1.346166, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "825", - "timestamp": "2025-11-27T01:21:55.900771083Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:54.414467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1943024, - "rtt_ms": 1.943024, + "rtt_ns": 1473209, + "rtt_ms": 1.473209, "checkpoint": 0, "vertex_from": "140", "vertex_to": "310", - "timestamp": "2025-11-27T01:21:55.901486471Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1615505, - "rtt_ms": 1.615505, - "checkpoint": 0, - "vertex_from": "140", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.901521051Z" + "timestamp": "2025-11-27T04:01:54.414507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679044, - "rtt_ms": 1.679044, + "rtt_ns": 1480542, + "rtt_ms": 1.480542, "checkpoint": 0, "vertex_from": "140", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.90155517Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1727714, - "rtt_ms": 1.727714, - "checkpoint": 0, - "vertex_from": "140", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:55.90157883Z" + "timestamp": "2025-11-27T04:01:54.414539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708555, - "rtt_ms": 1.708555, + "rtt_ns": 1645625, + "rtt_ms": 1.645625, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:55.90173881Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:01:54.41455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733565, - "rtt_ms": 1.733565, + "rtt_ns": 1448167, + "rtt_ms": 1.448167, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.90175721Z" + "vertex_to": "145", + "timestamp": "2025-11-27T04:01:54.414575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396075, - "rtt_ms": 1.396075, + "rtt_ns": 1538125, + "rtt_ms": 1.538125, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "145", - "timestamp": "2025-11-27T01:21:55.901941519Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.414626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275186, - "rtt_ms": 1.275186, + "rtt_ns": 1608542, + "rtt_ms": 1.608542, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:55.901995989Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:54.414719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262256, - "rtt_ms": 1.262256, + "rtt_ns": 1272625, + "rtt_ms": 1.272625, "checkpoint": 0, "vertex_from": "140", "vertex_to": "594", - "timestamp": "2025-11-27T01:21:55.902035029Z" + "timestamp": "2025-11-27T04:01:54.415678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476686, - "rtt_ms": 1.476686, + "rtt_ns": 1437417, + "rtt_ms": 1.437417, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.902064139Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:54.416015-08:00" }, { "operation": "add_edge", - "rtt_ns": 702958, - "rtt_ms": 0.702958, + "rtt_ns": 1758666, + "rtt_ms": 1.758666, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.902258988Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.416037-08:00" }, { "operation": "add_edge", - "rtt_ns": 784077, - "rtt_ms": 0.784077, + "rtt_ns": 1694125, + "rtt_ms": 1.694125, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.902271918Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:54.416086-08:00" }, { "operation": "add_edge", - "rtt_ns": 764057, - "rtt_ms": 0.764057, + "rtt_ns": 1623708, + "rtt_ms": 1.623708, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.902286318Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.416175-08:00" }, { "operation": "add_edge", - "rtt_ns": 619098, - "rtt_ms": 0.619098, + "rtt_ns": 1791417, + "rtt_ms": 1.791417, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:55.902359108Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.416418-08:00" }, { "operation": "add_edge", - "rtt_ns": 779088, - "rtt_ms": 0.779088, + "rtt_ns": 2106541, + "rtt_ms": 2.106541, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.902359348Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.416647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398945, - "rtt_ms": 1.398945, + "rtt_ns": 2241375, + "rtt_ms": 2.241375, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.903157365Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:54.41675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645615, - "rtt_ms": 1.645615, + "rtt_ns": 2292916, + "rtt_ms": 2.292916, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "851", - "timestamp": "2025-11-27T01:21:55.903588294Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.416761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548835, - "rtt_ms": 1.548835, + "rtt_ns": 1252750, + "rtt_ms": 1.25275, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.903821873Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.416931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941944, - "rtt_ms": 1.941944, + "rtt_ns": 2355500, + "rtt_ms": 2.3555, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.903982333Z" + "vertex_to": "851", + "timestamp": "2025-11-27T04:01:54.417078-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261253, - "rtt_ms": 2.261253, + "rtt_ns": 1183334, + "rtt_ms": 1.183334, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.904548631Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:54.417359-08:00" }, { "operation": "add_edge", - "rtt_ns": 2636931, - "rtt_ms": 2.636931, + "rtt_ns": 1322000, + "rtt_ms": 1.322, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "301", - "timestamp": "2025-11-27T01:21:55.90470196Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.41741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2563642, - "rtt_ms": 2.563642, + "rtt_ns": 1537833, + "rtt_ms": 1.537833, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.90482384Z" + "vertex_to": "301", + "timestamp": "2025-11-27T04:01:54.417577-08:00" }, { "operation": "add_edge", - "rtt_ns": 2828701, - "rtt_ms": 2.828701, + "rtt_ns": 1076208, + "rtt_ms": 1.076208, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.9048253Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.417725-08:00" }, { "operation": "add_edge", - "rtt_ns": 2469722, - "rtt_ms": 2.469722, + "rtt_ns": 1792042, + "rtt_ms": 1.792042, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:55.90483126Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.41781-08:00" }, { "operation": "add_edge", - "rtt_ns": 2577642, - "rtt_ms": 2.577642, + "rtt_ns": 1427209, + "rtt_ms": 1.427209, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.90493868Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.417853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826025, - "rtt_ms": 1.826025, + "rtt_ns": 1233292, + "rtt_ms": 1.233292, "checkpoint": 0, "vertex_from": "140", "vertex_to": "801", - "timestamp": "2025-11-27T01:21:55.90498507Z" + "timestamp": "2025-11-27T04:01:54.417995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200756, - "rtt_ms": 1.200756, + "rtt_ns": 1076458, + "rtt_ms": 1.076458, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.905023479Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:54.418008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435375, - "rtt_ms": 1.435375, + "rtt_ns": 1428542, + "rtt_ms": 1.428542, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:55.905024929Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:54.41818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1072546, - "rtt_ms": 1.072546, + "rtt_ns": 1810208, + "rtt_ms": 1.810208, "checkpoint": 0, "vertex_from": "140", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.905055539Z" + "timestamp": "2025-11-27T04:01:54.41917-08:00" }, { "operation": "add_edge", - "rtt_ns": 660628, - "rtt_ms": 0.660628, + "rtt_ns": 1447250, + "rtt_ms": 1.44725, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:55.905210239Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.419173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466176, - "rtt_ms": 1.466176, + "rtt_ns": 1293125, + "rtt_ms": 1.293125, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.906169576Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.419302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137547, - "rtt_ms": 1.137547, + "rtt_ns": 2324458, + "rtt_ms": 2.324458, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.906194326Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.419403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257316, - "rtt_ms": 1.257316, + "rtt_ns": 1553875, + "rtt_ms": 1.553875, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:55.906198486Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:54.419414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366676, - "rtt_ms": 1.366676, + "rtt_ns": 2040750, + "rtt_ms": 2.04075, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:55.906198796Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:54.419451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185157, - "rtt_ms": 1.185157, + "rtt_ns": 1899333, + "rtt_ms": 1.899333, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "369", - "timestamp": "2025-11-27T01:21:55.906210226Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:54.419477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865994, - "rtt_ms": 1.865994, + "rtt_ns": 1671333, + "rtt_ms": 1.671333, "checkpoint": 0, "vertex_from": "140", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.906692664Z" + "timestamp": "2025-11-27T04:01:54.419482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894294, - "rtt_ms": 1.894294, + "rtt_ns": 1684667, + "rtt_ms": 1.684667, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.906719154Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:54.419681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744505, - "rtt_ms": 1.744505, + "rtt_ns": 1448250, + "rtt_ms": 1.44825, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.906770264Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:54.420852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816624, - "rtt_ms": 1.816624, + "rtt_ns": 1469875, + "rtt_ms": 1.469875, "checkpoint": 0, - "vertex_from": "140", + "vertex_from": "141", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.906803094Z" + "timestamp": "2025-11-27T04:01:54.420921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624245, - "rtt_ms": 1.624245, + "rtt_ns": 2056291, + "rtt_ms": 2.056291, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:55.906835964Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:54.421471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567575, - "rtt_ms": 1.567575, + "rtt_ns": 2276291, + "rtt_ms": 2.276291, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:55.907763661Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:54.421579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588145, - "rtt_ms": 1.588145, + "rtt_ns": 2431417, + "rtt_ms": 2.431417, "checkpoint": 0, - "vertex_from": "141", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.907788921Z" + "vertex_from": "140", + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.421603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081347, - "rtt_ms": 1.081347, + "rtt_ns": 2124916, + "rtt_ms": 2.124916, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.907801421Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:54.421609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628425, - "rtt_ms": 1.628425, + "rtt_ns": 2526625, + "rtt_ms": 2.526625, "checkpoint": 0, "vertex_from": "140", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:55.907803481Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.4217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722034, - "rtt_ms": 1.722034, + "rtt_ns": 3656125, + "rtt_ms": 3.656125, "checkpoint": 0, - "vertex_from": "141", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.90792215Z" + "vertex_from": "140", + "vertex_to": "369", + "timestamp": "2025-11-27T04:01:54.421839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263716, - "rtt_ms": 1.263716, + "rtt_ns": 2436750, + "rtt_ms": 2.43675, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.90795789Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:54.421916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205836, - "rtt_ms": 1.205836, + "rtt_ns": 2747584, + "rtt_ms": 2.747584, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.90800992Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.42243-08:00" }, { "operation": "add_edge", - "rtt_ns": 2303392, - "rtt_ms": 2.303392, + "rtt_ns": 1833209, + "rtt_ms": 1.833209, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:55.908517788Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.422755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829384, - "rtt_ms": 1.829384, + "rtt_ns": 1931875, + "rtt_ms": 1.931875, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "403", - "timestamp": "2025-11-27T01:21:55.908666998Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:54.422785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931924, - "rtt_ms": 1.931924, + "rtt_ns": 1280625, + "rtt_ms": 1.280625, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.908702938Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:54.423198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827743, - "rtt_ms": 1.827743, + "rtt_ns": 1783083, + "rtt_ms": 1.783083, "checkpoint": 0, "vertex_from": "141", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:55.909620674Z" + "timestamp": "2025-11-27T04:01:54.423393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900983, - "rtt_ms": 1.900983, + "rtt_ns": 1789333, + "rtt_ms": 1.789333, "checkpoint": 0, "vertex_from": "141", "vertex_to": "449", - "timestamp": "2025-11-27T01:21:55.909666374Z" + "timestamp": "2025-11-27T04:01:54.423398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861394, - "rtt_ms": 1.861394, + "rtt_ns": 1820250, + "rtt_ms": 1.82025, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:55.909785784Z" + "vertex_to": "403", + "timestamp": "2025-11-27T04:01:54.4234-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082303, - "rtt_ms": 2.082303, + "rtt_ns": 2187709, + "rtt_ms": 2.187709, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.909886634Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.424619-08:00" }, { "operation": "add_edge", - "rtt_ns": 2560931, - "rtt_ms": 2.560931, + "rtt_ns": 1834333, + "rtt_ms": 1.834333, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.910520551Z" + "vertex_to": "147", + "timestamp": "2025-11-27T04:01:54.42462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903773, - "rtt_ms": 1.903773, + "rtt_ns": 3158291, + "rtt_ms": 3.158291, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.910572461Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.42463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2796330, - "rtt_ms": 2.79633, + "rtt_ns": 1875000, + "rtt_ms": 1.875, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.910601871Z" + "vertex_to": "161", + "timestamp": "2025-11-27T04:01:54.424631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1900103, - "rtt_ms": 1.900103, + "rtt_ns": 2838125, + "rtt_ms": 2.838125, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.910604501Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.424678-08:00" }, { "operation": "add_edge", - "rtt_ns": 2640591, - "rtt_ms": 2.640591, + "rtt_ns": 3108208, + "rtt_ms": 3.108208, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "161", - "timestamp": "2025-11-27T01:21:55.910652621Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:54.424809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137363, - "rtt_ms": 2.137363, + "rtt_ns": 2207708, + "rtt_ms": 2.207708, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "147", - "timestamp": "2025-11-27T01:21:55.910656521Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.42561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020267, - "rtt_ms": 1.020267, + "rtt_ns": 2334125, + "rtt_ms": 2.334125, "checkpoint": 0, - "vertex_from": "142", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.911543918Z" + "vertex_from": "141", + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:54.425733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806584, - "rtt_ms": 1.806584, + "rtt_ns": 2704833, + "rtt_ms": 2.704833, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:55.911594408Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.425904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984764, - "rtt_ms": 1.984764, + "rtt_ns": 1717167, + "rtt_ms": 1.717167, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:55.911607288Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:54.42634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2025734, - "rtt_ms": 2.025734, + "rtt_ns": 2110916, + "rtt_ms": 2.110916, "checkpoint": 0, - "vertex_from": "141", + "vertex_from": "142", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.911693448Z" + "timestamp": "2025-11-27T04:01:54.426921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957893, - "rtt_ms": 1.957893, + "rtt_ns": 2314375, + "rtt_ms": 2.314375, "checkpoint": 0, "vertex_from": "141", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:55.911845827Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:54.426937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320096, - "rtt_ms": 1.320096, + "rtt_ns": 1334791, + "rtt_ms": 1.334791, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:55.911923457Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.426945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374005, - "rtt_ms": 1.374005, + "rtt_ns": 2315833, + "rtt_ms": 2.315833, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.912031756Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.42695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482995, - "rtt_ms": 1.482995, + "rtt_ns": 2330625, + "rtt_ms": 2.330625, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.912091236Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.426963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449995, - "rtt_ms": 1.449995, + "rtt_ns": 1382250, + "rtt_ms": 1.38225, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.912105096Z" + "vertex_to": "152", + "timestamp": "2025-11-27T04:01:54.427118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548515, - "rtt_ms": 1.548515, + "rtt_ns": 2661042, + "rtt_ms": 2.661042, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.912122076Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:54.427341-08:00" }, { "operation": "add_edge", - "rtt_ns": 773438, - "rtt_ms": 0.773438, + "rtt_ns": 1450209, + "rtt_ms": 1.450209, "checkpoint": 0, "vertex_from": "142", "vertex_to": "818", - "timestamp": "2025-11-27T01:21:55.912320836Z" + "timestamp": "2025-11-27T04:01:54.427356-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 4153667, + "rtt_ms": 4.153667, + "checkpoint": 0, + "vertex_from": "141", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.427548-08:00" }, { "operation": "add_edge", - "rtt_ns": 746767, - "rtt_ms": 0.746767, + "rtt_ns": 1523208, + "rtt_ms": 1.523208, "checkpoint": 0, "vertex_from": "142", "vertex_to": "586", - "timestamp": "2025-11-27T01:21:55.912342825Z" + "timestamp": "2025-11-27T04:01:54.427864-08:00" }, { "operation": "add_edge", - "rtt_ns": 742597, - "rtt_ms": 0.742597, + "rtt_ns": 1396458, + "rtt_ms": 1.396458, "checkpoint": 0, "vertex_from": "142", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.912352225Z" + "timestamp": "2025-11-27T04:01:54.428319-08:00" }, { "operation": "add_edge", - "rtt_ns": 548908, - "rtt_ms": 0.548908, + "rtt_ns": 1199917, + "rtt_ms": 1.199917, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:55.912396065Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.428319-08:00" }, { "operation": "add_edge", - "rtt_ns": 744667, - "rtt_ms": 0.744667, + "rtt_ns": 1454667, + "rtt_ms": 1.454667, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.912439415Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.428418-08:00" }, { "operation": "add_edge", - "rtt_ns": 568258, - "rtt_ms": 0.568258, + "rtt_ns": 1243250, + "rtt_ms": 1.24325, "checkpoint": 0, - "vertex_from": "142", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:55.912492755Z" + "vertex_from": "143", + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.428601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015177, - "rtt_ms": 1.015177, + "rtt_ns": 1800500, + "rtt_ms": 1.8005, "checkpoint": 0, "vertex_from": "142", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.913107623Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:54.428751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088847, - "rtt_ms": 1.088847, + "rtt_ns": 1417750, + "rtt_ms": 1.41775, "checkpoint": 0, "vertex_from": "143", "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.913196913Z" + "timestamp": "2025-11-27T04:01:54.428762-08:00" }, { "operation": "add_edge", - "rtt_ns": 875357, - "rtt_ms": 0.875357, + "rtt_ns": 1817834, + "rtt_ms": 1.817834, "checkpoint": 0, - "vertex_from": "143", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.913197333Z" + "vertex_from": "142", + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:54.428764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151137, - "rtt_ms": 1.151137, + "rtt_ns": 2046000, + "rtt_ms": 2.046, "checkpoint": 0, - "vertex_from": "143", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.913274873Z" + "vertex_from": "142", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:54.429015-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456516, - "rtt_ms": 1.456516, + "rtt_ns": 1315917, + "rtt_ms": 1.315917, "checkpoint": 0, "vertex_from": "143", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:55.913810521Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:54.429735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777965, - "rtt_ms": 1.777965, + "rtt_ns": 1917583, + "rtt_ms": 1.917583, "checkpoint": 0, - "vertex_from": "142", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.913811051Z" + "vertex_from": "143", + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.429783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511895, - "rtt_ms": 1.511895, + "rtt_ns": 1573333, + "rtt_ms": 1.573333, "checkpoint": 0, "vertex_from": "143", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.9139522Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.429893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606085, - "rtt_ms": 1.606085, + "rtt_ns": 2396000, + "rtt_ms": 2.396, "checkpoint": 0, "vertex_from": "143", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.91400358Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.429945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528435, - "rtt_ms": 1.528435, + "rtt_ns": 1763916, + "rtt_ms": 1.763916, "checkpoint": 0, "vertex_from": "143", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.9140227Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:54.430083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691105, - "rtt_ms": 1.691105, + "rtt_ns": 1495167, + "rtt_ms": 1.495167, "checkpoint": 0, "vertex_from": "143", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.91403704Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.430099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471395, - "rtt_ms": 1.471395, + "rtt_ns": 1764375, + "rtt_ms": 1.764375, "checkpoint": 0, "vertex_from": "144", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.914580348Z" + "timestamp": "2025-11-27T04:01:54.430517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425185, - "rtt_ms": 1.425185, + "rtt_ns": 1701958, + "rtt_ms": 1.701958, "checkpoint": 0, "vertex_from": "144", "vertex_to": "281", - "timestamp": "2025-11-27T01:21:55.914702688Z" + "timestamp": "2025-11-27T04:01:54.430718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525685, - "rtt_ms": 1.525685, + "rtt_ns": 1992709, + "rtt_ms": 1.992709, "checkpoint": 0, "vertex_from": "144", "vertex_to": "162", - "timestamp": "2025-11-27T01:21:55.914723698Z" + "timestamp": "2025-11-27T04:01:54.430756-08:00" }, { "operation": "add_edge", - "rtt_ns": 934757, - "rtt_ms": 0.934757, + "rtt_ns": 969208, + "rtt_ms": 0.969208, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.914746818Z" - }, - { - "operation": "add_edge", - "rtt_ns": 997137, - "rtt_ms": 0.997137, - "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "694", - "timestamp": "2025-11-27T01:21:55.914809158Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:54.430915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618185, - "rtt_ms": 1.618185, + "rtt_ns": 2237209, + "rtt_ms": 2.237209, "checkpoint": 0, "vertex_from": "144", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:55.914816648Z" + "timestamp": "2025-11-27T04:01:54.431003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580955, - "rtt_ms": 1.580955, + "rtt_ns": 1685542, + "rtt_ms": 1.685542, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:55.915533775Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1584425, - "rtt_ms": 1.584425, - "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:55.915623415Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.431469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640205, - "rtt_ms": 1.640205, + "rtt_ns": 1780000, + "rtt_ms": 1.78, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.915644505Z" + "vertex_to": "694", + "timestamp": "2025-11-27T04:01:54.431516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629145, - "rtt_ms": 1.629145, + "rtt_ns": 1524167, + "rtt_ms": 1.524167, "checkpoint": 0, "vertex_from": "144", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:55.915653015Z" + "timestamp": "2025-11-27T04:01:54.431612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071797, - "rtt_ms": 1.071797, + "rtt_ns": 1813125, + "rtt_ms": 1.813125, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:55.915653125Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:54.431912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016016, - "rtt_ms": 1.016016, + "rtt_ns": 2135250, + "rtt_ms": 2.13525, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.915826334Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:54.432031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317176, - "rtt_ms": 1.317176, + "rtt_ns": 1565083, + "rtt_ms": 1.565083, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:55.916065004Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:54.432084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383876, - "rtt_ms": 1.383876, + "rtt_ns": 1401750, + "rtt_ms": 1.40175, "checkpoint": 0, "vertex_from": "144", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:55.916087854Z" + "timestamp": "2025-11-27T04:01:54.432121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383585, - "rtt_ms": 1.383585, + "rtt_ns": 1528625, + "rtt_ms": 1.528625, "checkpoint": 0, "vertex_from": "144", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.916108383Z" + "timestamp": "2025-11-27T04:01:54.432285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317835, - "rtt_ms": 1.317835, + "rtt_ns": 1507125, + "rtt_ms": 1.507125, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.916136073Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:54.432423-08:00" }, { "operation": "add_edge", - "rtt_ns": 802978, - "rtt_ms": 0.802978, + "rtt_ns": 1292584, + "rtt_ms": 1.292584, "checkpoint": 0, "vertex_from": "144", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.916337613Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1158416, - "rtt_ms": 1.158416, - "checkpoint": 0, - "vertex_from": "144", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.916803911Z" + "timestamp": "2025-11-27T04:01:54.432811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213506, - "rtt_ms": 1.213506, + "rtt_ns": 1374334, + "rtt_ms": 1.374334, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:55.916869731Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.432988-08:00" }, { "operation": "add_edge", - "rtt_ns": 830208, - "rtt_ms": 0.830208, + "rtt_ns": 2237083, + "rtt_ms": 2.237083, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:55.916939871Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:54.433709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128207, - "rtt_ms": 1.128207, + "rtt_ns": 1631667, + "rtt_ms": 1.631667, "checkpoint": 0, "vertex_from": "144", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:55.916955291Z" + "timestamp": "2025-11-27T04:01:54.433754-08:00" }, { "operation": "add_edge", - "rtt_ns": 901957, - "rtt_ms": 0.901957, + "rtt_ns": 3043792, + "rtt_ms": 3.043792, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.916967621Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.434048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385855, - "rtt_ms": 1.385855, + "rtt_ns": 2149416, + "rtt_ms": 2.149416, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.91700996Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.434063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378525, - "rtt_ms": 1.378525, + "rtt_ns": 2559667, + "rtt_ms": 2.559667, "checkpoint": 0, "vertex_from": "144", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:55.91703355Z" + "timestamp": "2025-11-27T04:01:54.434591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1056026, - "rtt_ms": 1.056026, + "rtt_ns": 2186958, + "rtt_ms": 2.186958, "checkpoint": 0, "vertex_from": "144", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:55.91714777Z" + "timestamp": "2025-11-27T04:01:54.434614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702525, - "rtt_ms": 1.702525, + "rtt_ns": 2537084, + "rtt_ms": 2.537084, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.917839898Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:54.434622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131586, - "rtt_ms": 1.131586, + "rtt_ns": 2471375, + "rtt_ms": 2.471375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:55.918002067Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.434757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726104, - "rtt_ms": 1.726104, + "rtt_ns": 1829333, + "rtt_ms": 1.829333, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:55.918065417Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:54.434819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098186, - "rtt_ms": 1.098186, + "rtt_ns": 2020625, + "rtt_ms": 2.020625, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:55.918066767Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:54.434833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376595, - "rtt_ms": 1.376595, + "rtt_ns": 1102834, + "rtt_ms": 1.102834, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:55.918332696Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.435167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466095, - "rtt_ms": 1.466095, + "rtt_ns": 1470958, + "rtt_ms": 1.470958, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.918406736Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:54.435227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619395, - "rtt_ms": 1.619395, + "rtt_ns": 1318833, + "rtt_ms": 1.318833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:55.918424516Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:54.435368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328545, - "rtt_ms": 1.328545, + "rtt_ns": 1793875, + "rtt_ms": 1.793875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.918477185Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:54.435506-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1490375, - "rtt_ms": 1.490375, + "rtt_ns": 1810667, + "rtt_ms": 1.810667, "checkpoint": 0, "vertex_from": "479", - "timestamp": "2025-11-27T01:21:55.918526015Z" + "timestamp": "2025-11-27T04:01:54.436572-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1758292, + "rtt_ms": 1.758292, + "checkpoint": 0, + "vertex_from": "678", + "timestamp": "2025-11-27T04:01:54.436594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598105, - "rtt_ms": 1.598105, + "rtt_ns": 1444500, + "rtt_ms": 1.4445, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:55.918609175Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:54.436612-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 781717, - "rtt_ms": 0.781717, + "operation": "add_edge", + "rtt_ns": 2021083, + "rtt_ms": 2.021083, "checkpoint": 0, - "vertex_from": "678", - "timestamp": "2025-11-27T01:21:55.918625075Z" + "vertex_from": "144", + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:54.436613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117926, - "rtt_ms": 1.117926, + "rtt_ns": 2100750, + "rtt_ms": 2.10075, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.919185353Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:54.436716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177336, - "rtt_ms": 1.177336, + "rtt_ns": 1566917, + "rtt_ms": 1.566917, "checkpoint": 0, "vertex_from": "144", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.919244563Z" + "timestamp": "2025-11-27T04:01:54.436794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314086, - "rtt_ms": 1.314086, + "rtt_ns": 1716875, + "rtt_ms": 1.716875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:55.919316983Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.437086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208006, - "rtt_ms": 1.208006, + "rtt_ns": 1595667, + "rtt_ms": 1.595667, "checkpoint": 0, "vertex_from": "144", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:55.919541392Z" + "timestamp": "2025-11-27T04:01:54.437102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755064, - "rtt_ms": 1.755064, + "rtt_ns": 2299458, + "rtt_ms": 2.299458, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "557", - "timestamp": "2025-11-27T01:21:55.92018041Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.43712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594495, - "rtt_ms": 1.594495, + "rtt_ns": 2506833, + "rtt_ms": 2.506833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:55.92020707Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:54.43713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743805, - "rtt_ms": 1.743805, + "rtt_ns": 1178292, + "rtt_ms": 1.178292, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "717", - "timestamp": "2025-11-27T01:21:55.92022236Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:54.437793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831204, - "rtt_ms": 1.831204, + "rtt_ns": 1226875, + "rtt_ms": 1.226875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:55.92023941Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:01:54.437821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772234, - "rtt_ms": 1.772234, + "rtt_ns": 1560958, + "rtt_ms": 1.560958, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "479", - "timestamp": "2025-11-27T01:21:55.920298609Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:54.438692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688534, - "rtt_ms": 1.688534, + "rtt_ns": 2182833, + "rtt_ms": 2.182833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "678", - "timestamp": "2025-11-27T01:21:55.920313969Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:54.438797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217106, - "rtt_ms": 1.217106, + "rtt_ns": 2014334, + "rtt_ms": 2.014334, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:55.920403819Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:54.43881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178126, - "rtt_ms": 1.178126, + "rtt_ns": 1702250, + "rtt_ms": 1.70225, "checkpoint": 0, "vertex_from": "144", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.920496969Z" + "timestamp": "2025-11-27T04:01:54.438823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523625, - "rtt_ms": 1.523625, + "rtt_ns": 2127125, + "rtt_ms": 2.127125, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:55.921066027Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:01:54.438845-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2570750, + "rtt_ms": 2.57075, + "checkpoint": 0, + "vertex_from": "144", + "vertex_to": "479", + "timestamp": "2025-11-27T04:01:54.439144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927244, - "rtt_ms": 1.927244, + "rtt_ns": 2089709, + "rtt_ms": 2.089709, "checkpoint": 0, "vertex_from": "144", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:55.921172537Z" + "timestamp": "2025-11-27T04:01:54.439193-08:00" }, { "operation": "add_edge", - "rtt_ns": 983937, - "rtt_ms": 0.983937, + "rtt_ns": 2228875, + "rtt_ms": 2.228875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "505", - "timestamp": "2025-11-27T01:21:55.921193147Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:54.439315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013197, - "rtt_ms": 1.013197, + "rtt_ns": 1524416, + "rtt_ms": 1.524416, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.921194497Z" + "vertex_to": "505", + "timestamp": "2025-11-27T04:01:54.439346-08:00" }, { "operation": "add_edge", - "rtt_ns": 982937, - "rtt_ms": 0.982937, + "rtt_ns": 1614167, + "rtt_ms": 1.614167, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "345", - "timestamp": "2025-11-27T01:21:55.921206517Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:54.439408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012586, - "rtt_ms": 1.012586, + "rtt_ns": 1217417, + "rtt_ms": 1.217417, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:55.921252636Z" + "vertex_to": "345", + "timestamp": "2025-11-27T04:01:54.43991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587675, - "rtt_ms": 1.587675, + "rtt_ns": 1190708, + "rtt_ms": 1.190708, "checkpoint": 0, "vertex_from": "144", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:55.921902474Z" + "timestamp": "2025-11-27T04:01:54.440017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499295, - "rtt_ms": 1.499295, + "rtt_ns": 1336083, + "rtt_ms": 1.336083, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:55.921904234Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.440481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694835, - "rtt_ms": 1.694835, + "rtt_ns": 1961208, + "rtt_ms": 1.961208, "checkpoint": 0, "vertex_from": "144", "vertex_to": "418", - "timestamp": "2025-11-27T01:21:55.921994874Z" + "timestamp": "2025-11-27T04:01:54.440772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857304, - "rtt_ms": 1.857304, + "rtt_ns": 2351709, + "rtt_ms": 2.351709, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.922355023Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:54.44115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763484, - "rtt_ms": 1.763484, + "rtt_ns": 1973500, + "rtt_ms": 1.9735, "checkpoint": 0, "vertex_from": "144", "vertex_to": "298", - "timestamp": "2025-11-27T01:21:55.922830411Z" + "timestamp": "2025-11-27T04:01:54.441168-08:00" }, { "operation": "add_edge", - "rtt_ns": 2132653, - "rtt_ms": 2.132653, + "rtt_ns": 1869250, + "rtt_ms": 1.86925, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:55.92334103Z" + "vertex_to": "146", + "timestamp": "2025-11-27T04:01:54.441185-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178704, - "rtt_ms": 2.178704, + "rtt_ns": 1857834, + "rtt_ms": 1.857834, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.92343215Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:54.441205-08:00" }, { "operation": "add_edge", - "rtt_ns": 2364152, - "rtt_ms": 2.364152, + "rtt_ns": 1858500, + "rtt_ms": 1.8585, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:55.923558269Z" + "vertex_to": "165", + "timestamp": "2025-11-27T04:01:54.441267-08:00" }, { "operation": "add_edge", - "rtt_ns": 2676831, - "rtt_ms": 2.676831, + "rtt_ns": 2565000, + "rtt_ms": 2.565, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "165", - "timestamp": "2025-11-27T01:21:55.923872228Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:54.441412-08:00" }, { "operation": "add_edge", - "rtt_ns": 2725671, - "rtt_ms": 2.725671, + "rtt_ns": 2194833, + "rtt_ms": 2.194833, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "146", - "timestamp": "2025-11-27T01:21:55.923899028Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:54.442106-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331273, - "rtt_ms": 2.331273, + "rtt_ns": 2113458, + "rtt_ms": 2.113458, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "412", - "timestamp": "2025-11-27T01:21:55.924327317Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.442131-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108473, - "rtt_ms": 2.108473, + "rtt_ns": 1356375, + "rtt_ms": 1.356375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:55.924464436Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.442562-08:00" }, { "operation": "add_edge", - "rtt_ns": 3288770, - "rtt_ms": 3.28877, + "rtt_ns": 2190292, + "rtt_ms": 2.190292, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "233", - "timestamp": "2025-11-27T01:21:55.925194164Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:54.442672-08:00" }, { "operation": "add_edge", - "rtt_ns": 3351370, - "rtt_ms": 3.35137, + "rtt_ns": 1531625, + "rtt_ms": 1.531625, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:55.925255224Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:54.442683-08:00" }, { "operation": "add_edge", - "rtt_ns": 2475883, - "rtt_ms": 2.475883, + "rtt_ns": 1927084, + "rtt_ms": 1.927084, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:55.925308334Z" + "vertex_to": "233", + "timestamp": "2025-11-27T04:01:54.442702-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018293, - "rtt_ms": 2.018293, + "rtt_ns": 1565334, + "rtt_ms": 1.565334, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.925360923Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:54.442751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981243, - "rtt_ms": 1.981243, + "rtt_ns": 1610792, + "rtt_ms": 1.610792, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:55.925414883Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:54.442779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893824, - "rtt_ms": 1.893824, + "rtt_ns": 1439166, + "rtt_ms": 1.439166, "checkpoint": 0, "vertex_from": "144", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:55.925453973Z" + "timestamp": "2025-11-27T04:01:54.442859-08:00" }, { "operation": "add_edge", - "rtt_ns": 719737, - "rtt_ms": 0.719737, + "rtt_ns": 1604542, + "rtt_ms": 1.604542, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.925975881Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:54.442873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712424, - "rtt_ms": 1.712424, + "rtt_ns": 1545958, + "rtt_ms": 1.545958, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "244", - "timestamp": "2025-11-27T01:21:55.926042881Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:54.443678-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192253, - "rtt_ms": 2.192253, + "rtt_ns": 1745500, + "rtt_ms": 1.7455, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.926092761Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:01:54.443853-08:00" }, { "operation": "add_edge", - "rtt_ns": 911507, - "rtt_ms": 0.911507, + "rtt_ns": 1307792, + "rtt_ms": 1.307792, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "965", - "timestamp": "2025-11-27T01:21:55.926107061Z" + "vertex_to": "244", + "timestamp": "2025-11-27T04:01:54.443871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653445, - "rtt_ms": 1.653445, + "rtt_ns": 1407583, + "rtt_ms": 1.407583, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.926119241Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:54.444283-08:00" }, { "operation": "add_edge", - "rtt_ns": 2314603, - "rtt_ms": 2.314603, + "rtt_ns": 1626417, + "rtt_ms": 1.626417, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "740", - "timestamp": "2025-11-27T01:21:55.926188591Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.444299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404415, - "rtt_ms": 1.404415, + "rtt_ns": 1585167, + "rtt_ms": 1.585167, "checkpoint": 0, "vertex_from": "144", "vertex_to": "398", - "timestamp": "2025-11-27T01:21:55.926714329Z" + "timestamp": "2025-11-27T04:01:54.444337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398306, - "rtt_ms": 1.398306, + "rtt_ns": 1766333, + "rtt_ms": 1.766333, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:55.926814279Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:01:54.44445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621185, - "rtt_ms": 1.621185, + "rtt_ns": 1831500, + "rtt_ms": 1.8315, "checkpoint": 0, "vertex_from": "144", "vertex_to": "696", - "timestamp": "2025-11-27T01:21:55.926983468Z" + "timestamp": "2025-11-27T04:01:54.444612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222287, - "rtt_ms": 1.222287, + "rtt_ns": 1764208, + "rtt_ms": 1.764208, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "929", - "timestamp": "2025-11-27T01:21:55.927199908Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:54.444625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893154, - "rtt_ms": 1.893154, + "rtt_ns": 1929084, + "rtt_ms": 1.929084, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.927348247Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.444632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266576, - "rtt_ms": 1.266576, + "rtt_ns": 1445458, + "rtt_ms": 1.445458, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.927456617Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:01:54.445125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402326, - "rtt_ms": 1.402326, + "rtt_ns": 1350417, + "rtt_ms": 1.350417, "checkpoint": 0, "vertex_from": "144", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:55.927496047Z" + "timestamp": "2025-11-27T04:01:54.445222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505116, - "rtt_ms": 1.505116, + "rtt_ns": 1379167, + "rtt_ms": 1.379167, "checkpoint": 0, "vertex_from": "144", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.927549007Z" + "timestamp": "2025-11-27T04:01:54.445233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488155, - "rtt_ms": 1.488155, + "rtt_ns": 1697833, + "rtt_ms": 1.697833, "checkpoint": 0, "vertex_from": "144", "vertex_to": "928", - "timestamp": "2025-11-27T01:21:55.927609666Z" + "timestamp": "2025-11-27T04:01:54.445998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603395, - "rtt_ms": 1.603395, + "rtt_ns": 1748458, + "rtt_ms": 1.748458, "checkpoint": 0, "vertex_from": "144", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.927711286Z" + "timestamp": "2025-11-27T04:01:54.446034-08:00" }, { "operation": "add_edge", - "rtt_ns": 953047, - "rtt_ms": 0.953047, + "rtt_ns": 1777875, + "rtt_ms": 1.777875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.927767956Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:54.446117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125617, - "rtt_ms": 1.125617, + "rtt_ns": 1710334, + "rtt_ms": 1.710334, "checkpoint": 0, "vertex_from": "144", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.927840856Z" + "timestamp": "2025-11-27T04:01:54.446162-08:00" }, { "operation": "add_edge", - "rtt_ns": 867978, - "rtt_ms": 0.867978, + "rtt_ns": 1610625, + "rtt_ms": 1.610625, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:55.927852866Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:54.446737-08:00" }, { "operation": "add_edge", - "rtt_ns": 773157, - "rtt_ms": 0.773157, + "rtt_ns": 2300250, + "rtt_ms": 2.30025, "checkpoint": 0, "vertex_from": "144", "vertex_to": "712", - "timestamp": "2025-11-27T01:21:55.927974435Z" + "timestamp": "2025-11-27T04:01:54.446933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034676, - "rtt_ms": 1.034676, + "rtt_ns": 2442792, + "rtt_ms": 2.442792, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:55.928532013Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:54.447055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004966, - "rtt_ms": 1.004966, + "rtt_ns": 1844500, + "rtt_ms": 1.8445, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:55.928554913Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:54.447068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005297, - "rtt_ms": 1.005297, + "rtt_ns": 1834375, + "rtt_ms": 1.834375, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:55.928616163Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:54.447068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160016, - "rtt_ms": 1.160016, + "rtt_ns": 1113959, + "rtt_ms": 1.113959, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:55.928617693Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:54.447113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342126, - "rtt_ms": 1.342126, + "rtt_ns": 2497541, + "rtt_ms": 2.497541, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "668", - "timestamp": "2025-11-27T01:21:55.928691423Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:54.447125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564454, - "rtt_ms": 1.564454, + "rtt_ns": 1283958, + "rtt_ms": 1.283958, "checkpoint": 0, "vertex_from": "144", "vertex_to": "291", - "timestamp": "2025-11-27T01:21:55.92940681Z" + "timestamp": "2025-11-27T04:01:54.448023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450625, - "rtt_ms": 1.450625, + "rtt_ns": 1931958, + "rtt_ms": 1.931958, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:55.92942986Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:54.448095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679034, - "rtt_ms": 1.679034, + "rtt_ns": 1196875, + "rtt_ms": 1.196875, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:55.92944818Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:54.448131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604054, - "rtt_ms": 1.604054, + "rtt_ns": 2323083, + "rtt_ms": 2.323083, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:55.92945771Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:54.44836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821284, - "rtt_ms": 1.821284, + "rtt_ns": 1481208, + "rtt_ms": 1.481208, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:55.92953433Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:54.448539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424465, - "rtt_ms": 1.424465, + "rtt_ns": 2436250, + "rtt_ms": 2.43625, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:55.929960998Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:54.448555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716174, - "rtt_ms": 1.716174, + "rtt_ns": 1529083, + "rtt_ms": 1.529083, "checkpoint": 0, "vertex_from": "144", "vertex_to": "492", - "timestamp": "2025-11-27T01:21:55.930336377Z" + "timestamp": "2025-11-27T04:01:54.448643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988013, - "rtt_ms": 1.988013, + "rtt_ns": 1706125, + "rtt_ms": 1.706125, "checkpoint": 0, "vertex_from": "144", "vertex_to": "229", - "timestamp": "2025-11-27T01:21:55.930544756Z" + "timestamp": "2025-11-27T04:01:54.448776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1895653, - "rtt_ms": 1.895653, + "rtt_ns": 1660542, + "rtt_ms": 1.660542, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "216", - "timestamp": "2025-11-27T01:21:55.930588066Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:54.448787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974493, - "rtt_ms": 1.974493, + "rtt_ns": 1795667, + "rtt_ms": 1.795667, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:55.930593746Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:54.448864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186796, - "rtt_ms": 1.186796, + "rtt_ns": 1076916, + "rtt_ms": 1.076916, "checkpoint": 0, "vertex_from": "144", - "vertex_to": "818", - "timestamp": "2025-11-27T01:21:55.930595746Z" + "vertex_to": "216", + "timestamp": "2025-11-27T04:01:54.449101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137866, - "rtt_ms": 1.137866, + "rtt_ns": 1100583, + "rtt_ms": 1.100583, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.930597286Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.449462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255636, - "rtt_ms": 1.255636, + "rtt_ns": 1512250, + "rtt_ms": 1.51225, "checkpoint": 0, "vertex_from": "145", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:55.930687246Z" + "timestamp": "2025-11-27T04:01:54.449645-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1725917, + "rtt_ms": 1.725917, + "checkpoint": 0, + "vertex_from": "144", + "vertex_to": "818", + "timestamp": "2025-11-27T04:01:54.449821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176646, - "rtt_ms": 1.176646, + "rtt_ns": 1321208, + "rtt_ms": 1.321208, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "227", - "timestamp": "2025-11-27T01:21:55.930713466Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.449861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278746, - "rtt_ms": 1.278746, + "rtt_ns": 1784833, + "rtt_ms": 1.784833, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.930727886Z" + "vertex_to": "227", + "timestamp": "2025-11-27T04:01:54.450341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238596, - "rtt_ms": 1.238596, + "rtt_ns": 1274458, + "rtt_ms": 1.274458, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:55.931576713Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.450376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903904, - "rtt_ms": 1.903904, + "rtt_ns": 1777250, + "rtt_ms": 1.77725, "checkpoint": 0, "vertex_from": "145", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:55.931866112Z" + "timestamp": "2025-11-27T04:01:54.450421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410466, - "rtt_ms": 1.410466, + "rtt_ns": 1965000, + "rtt_ms": 1.965, "checkpoint": 0, "vertex_from": "145", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:55.931956492Z" + "timestamp": "2025-11-27T04:01:54.450753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414736, - "rtt_ms": 1.414736, + "rtt_ns": 2068875, + "rtt_ms": 2.068875, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.932009272Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:54.450847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425666, - "rtt_ms": 1.425666, + "rtt_ns": 2281208, + "rtt_ms": 2.281208, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "412", - "timestamp": "2025-11-27T01:21:55.932024292Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:54.451147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465335, - "rtt_ms": 1.465335, + "rtt_ns": 1377292, + "rtt_ms": 1.377292, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:55.932064751Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:54.451199-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1741667, + "rtt_ms": 1.741667, + "checkpoint": 0, + "vertex_from": "145", + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:54.451204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448685, - "rtt_ms": 1.448685, + "rtt_ns": 1361500, + "rtt_ms": 1.3615, "checkpoint": 0, "vertex_from": "145", "vertex_to": "200", - "timestamp": "2025-11-27T01:21:55.932163191Z" + "timestamp": "2025-11-27T04:01:54.451223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029084, - "rtt_ms": 2.029084, + "rtt_ns": 1585625, + "rtt_ms": 1.585625, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:55.93261768Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:54.451231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037693, - "rtt_ms": 2.037693, + "rtt_ns": 1376583, + "rtt_ms": 1.376583, "checkpoint": 0, "vertex_from": "145", "vertex_to": "774", - "timestamp": "2025-11-27T01:21:55.932766539Z" + "timestamp": "2025-11-27T04:01:54.451718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303056, - "rtt_ms": 1.303056, + "rtt_ns": 1452334, + "rtt_ms": 1.452334, "checkpoint": 0, "vertex_from": "145", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:55.932880439Z" + "timestamp": "2025-11-27T04:01:54.45183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032567, - "rtt_ms": 1.032567, + "rtt_ns": 1549250, + "rtt_ms": 1.54925, "checkpoint": 0, "vertex_from": "145", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:55.932900169Z" + "timestamp": "2025-11-27T04:01:54.451971-08:00" }, { "operation": "add_edge", - "rtt_ns": 947607, - "rtt_ms": 0.947607, + "rtt_ns": 1274875, + "rtt_ms": 1.274875, "checkpoint": 0, "vertex_from": "145", "vertex_to": "550", - "timestamp": "2025-11-27T01:21:55.932905359Z" + "timestamp": "2025-11-27T04:01:54.452029-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312382, - "rtt_ms": 2.312382, + "rtt_ns": 1421417, + "rtt_ms": 1.421417, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:55.933000668Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.452626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292786, - "rtt_ms": 1.292786, + "rtt_ns": 1417708, + "rtt_ms": 1.417708, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.933303248Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.452643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723644, - "rtt_ms": 1.723644, + "rtt_ns": 1632000, + "rtt_ms": 1.632, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:55.933749566Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:54.452864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604165, - "rtt_ms": 1.604165, + "rtt_ns": 1736584, + "rtt_ms": 1.736584, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.933767876Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:54.452885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840865, - "rtt_ms": 1.840865, + "rtt_ns": 1736625, + "rtt_ms": 1.736625, "checkpoint": 0, "vertex_from": "145", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:55.933906946Z" + "timestamp": "2025-11-27T04:01:54.452937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201496, - "rtt_ms": 1.201496, + "rtt_ns": 2183250, + "rtt_ms": 2.18325, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.933968855Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:54.453033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391075, - "rtt_ms": 1.391075, + "rtt_ns": 1529083, + "rtt_ms": 1.529083, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.934009875Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:54.453248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197926, - "rtt_ms": 1.197926, + "rtt_ns": 1419667, + "rtt_ms": 1.419667, "checkpoint": 0, "vertex_from": "145", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:55.934098965Z" + "timestamp": "2025-11-27T04:01:54.45325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129226, - "rtt_ms": 1.129226, + "rtt_ns": 1853834, + "rtt_ms": 1.853834, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.934433884Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:54.453826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541845, - "rtt_ms": 1.541845, + "rtt_ns": 1881250, + "rtt_ms": 1.88125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.934447854Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.453911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617335, - "rtt_ms": 1.617335, + "rtt_ns": 1410125, + "rtt_ms": 1.410125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.934619463Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:54.454054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751854, - "rtt_ms": 1.751854, + "rtt_ns": 1439959, + "rtt_ms": 1.439959, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:55.934633463Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:54.454067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377185, - "rtt_ms": 1.377185, + "rtt_ns": 1385000, + "rtt_ms": 1.385, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:55.935285111Z" + "vertex_to": "237", + "timestamp": "2025-11-27T04:01:54.454419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548455, - "rtt_ms": 1.548455, + "rtt_ns": 1672125, + "rtt_ms": 1.672125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:55.935299341Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:54.454558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530465, - "rtt_ms": 1.530465, + "rtt_ns": 1637208, + "rtt_ms": 1.637208, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:55.935299461Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:54.454577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296336, - "rtt_ms": 1.296336, + "rtt_ns": 1812459, + "rtt_ms": 1.812459, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "237", - "timestamp": "2025-11-27T01:21:55.935307641Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:54.454678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244226, - "rtt_ms": 1.244226, + "rtt_ns": 1448958, + "rtt_ms": 1.448958, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:55.935344011Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.4547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388946, - "rtt_ms": 1.388946, + "rtt_ns": 1539125, + "rtt_ms": 1.539125, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:55.935358731Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:54.454788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603605, - "rtt_ms": 1.603605, + "rtt_ns": 1282583, + "rtt_ms": 1.282583, "checkpoint": 0, "vertex_from": "145", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.936224948Z" + "timestamp": "2025-11-27T04:01:54.455195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821324, - "rtt_ms": 1.821324, + "rtt_ns": 1269000, + "rtt_ms": 1.269, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.936256828Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:54.455337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820504, - "rtt_ms": 1.820504, + "rtt_ns": 1490833, + "rtt_ms": 1.490833, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:55.936269718Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:54.455545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693585, - "rtt_ms": 1.693585, + "rtt_ns": 1911292, + "rtt_ms": 1.911292, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:55.936327718Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:54.455738-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201453, - "rtt_ms": 2.201453, + "rtt_ns": 1927250, + "rtt_ms": 1.92725, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:55.937510434Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:54.456487-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286723, - "rtt_ms": 2.286723, + "rtt_ns": 1880083, + "rtt_ms": 1.880083, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:55.937646454Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:54.45656-08:00" }, { "operation": "add_edge", - "rtt_ns": 2849691, - "rtt_ms": 2.849691, + "rtt_ns": 1800958, + "rtt_ms": 1.800958, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:55.938194862Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:54.456591-08:00" }, { "operation": "add_edge", - "rtt_ns": 3000521, - "rtt_ms": 3.000521, + "rtt_ns": 2269583, + "rtt_ms": 2.269583, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:55.938302532Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:01:54.45669-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141213, - "rtt_ms": 2.141213, + "rtt_ns": 2356958, + "rtt_ms": 2.356958, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:55.938367311Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:54.457058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2894491, - "rtt_ms": 2.894491, + "rtt_ns": 2640167, + "rtt_ms": 2.640167, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:55.939222739Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:54.457218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740605, - "rtt_ms": 1.740605, + "rtt_ns": 1511209, + "rtt_ms": 1.511209, "checkpoint": 0, "vertex_from": "145", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.939253219Z" + "timestamp": "2025-11-27T04:01:54.45725-08:00" }, { "operation": "add_edge", - "rtt_ns": 3955118, - "rtt_ms": 3.955118, + "rtt_ns": 2260417, + "rtt_ms": 2.260417, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "906", - "timestamp": "2025-11-27T01:21:55.939256329Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:54.457457-08:00" }, { "operation": "add_edge", - "rtt_ns": 4018197, - "rtt_ms": 4.018197, + "rtt_ns": 2567166, + "rtt_ms": 2.567166, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:55.939304408Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:54.458113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131386, - "rtt_ms": 1.131386, + "rtt_ns": 1561292, + "rtt_ms": 1.561292, "checkpoint": 0, "vertex_from": "145", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:55.939328128Z" + "timestamp": "2025-11-27T04:01:54.458123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689684, - "rtt_ms": 1.689684, + "rtt_ns": 1718750, + "rtt_ms": 1.71875, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:55.939337948Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:54.458311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035116, - "rtt_ms": 1.035116, + "rtt_ns": 2991208, + "rtt_ms": 2.991208, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:55.939338968Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:54.458329-08:00" }, { "operation": "add_edge", - "rtt_ns": 3089310, - "rtt_ms": 3.08931, + "rtt_ns": 1977833, + "rtt_ms": 1.977833, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:55.939347038Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:54.458467-08:00" }, { "operation": "add_edge", - "rtt_ns": 3107710, - "rtt_ms": 3.10771, + "rtt_ns": 1478833, + "rtt_ms": 1.478833, "checkpoint": 0, "vertex_from": "145", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:55.939378158Z" + "vertex_to": "148", + "timestamp": "2025-11-27T04:01:54.458538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158147, - "rtt_ms": 1.158147, + "rtt_ns": 1897792, + "rtt_ms": 1.897792, "checkpoint": 0, "vertex_from": "145", "vertex_to": "676", - "timestamp": "2025-11-27T01:21:55.939526738Z" + "timestamp": "2025-11-27T04:01:54.458589-08:00" }, { "operation": "add_edge", - "rtt_ns": 955607, - "rtt_ms": 0.955607, + "rtt_ns": 1246750, + "rtt_ms": 1.24675, "checkpoint": 0, - "vertex_from": "145", - "vertex_to": "148", - "timestamp": "2025-11-27T01:21:55.940179526Z" + "vertex_from": "146", + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:54.458705-08:00" }, { "operation": "add_edge", - "rtt_ns": 921047, - "rtt_ms": 0.921047, + "rtt_ns": 1465583, + "rtt_ms": 1.465583, "checkpoint": 0, "vertex_from": "146", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:55.940179596Z" + "timestamp": "2025-11-27T04:01:54.458717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695185, - "rtt_ms": 1.695185, + "rtt_ns": 1679708, + "rtt_ms": 1.679708, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:55.941001363Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:54.458898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676095, - "rtt_ms": 1.676095, + "rtt_ns": 1323917, + "rtt_ms": 1.323917, "checkpoint": 0, "vertex_from": "146", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:55.941024343Z" + "timestamp": "2025-11-27T04:01:54.459654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706615, - "rtt_ms": 1.706615, + "rtt_ns": 1750917, + "rtt_ms": 1.750917, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:55.941035833Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:54.460064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702945, - "rtt_ms": 1.702945, + "rtt_ns": 1603125, + "rtt_ms": 1.603125, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:55.941043233Z" + "vertex_to": "636", + "timestamp": "2025-11-27T04:01:54.460071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791494, - "rtt_ms": 1.791494, + "rtt_ns": 2466000, + "rtt_ms": 2.466, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:55.941045653Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:54.46059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719465, - "rtt_ms": 1.719465, + "rtt_ns": 1692417, + "rtt_ms": 1.692417, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "601", - "timestamp": "2025-11-27T01:21:55.941059563Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:54.460591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680595, - "rtt_ms": 1.680595, + "rtt_ns": 2133666, + "rtt_ms": 2.133666, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "636", - "timestamp": "2025-11-27T01:21:55.941059943Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:54.460673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135936, - "rtt_ms": 1.135936, + "rtt_ns": 1027458, + "rtt_ms": 1.027458, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:55.941316722Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:54.460683-08:00" }, { "operation": "add_edge", - "rtt_ns": 2270082, - "rtt_ms": 2.270082, + "rtt_ns": 2008000, + "rtt_ms": 2.008, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:55.94179799Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:54.460726-08:00" }, { "operation": "add_edge", - "rtt_ns": 799307, - "rtt_ms": 0.799307, + "rtt_ns": 2151292, + "rtt_ms": 2.151292, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:55.94183656Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:54.460741-08:00" }, { "operation": "add_edge", - "rtt_ns": 862037, - "rtt_ms": 0.862037, + "rtt_ns": 2762958, + "rtt_ms": 2.762958, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:55.94186525Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:54.460877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768114, - "rtt_ms": 1.768114, + "rtt_ns": 2184166, + "rtt_ms": 2.184166, "checkpoint": 0, "vertex_from": "146", "vertex_to": "899", - "timestamp": "2025-11-27T01:21:55.9419499Z" + "timestamp": "2025-11-27T04:01:54.460891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090796, - "rtt_ms": 1.090796, + "rtt_ns": 1151500, + "rtt_ms": 1.1515, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:55.942116329Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:54.461223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625744, - "rtt_ms": 1.625744, + "rtt_ns": 1797417, + "rtt_ms": 1.797417, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:55.942686517Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:54.461863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733294, - "rtt_ms": 1.733294, + "rtt_ns": 1325584, + "rtt_ms": 1.325584, "checkpoint": 0, "vertex_from": "146", "vertex_to": "228", - "timestamp": "2025-11-27T01:21:55.942794737Z" + "timestamp": "2025-11-27T04:01:54.461918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538075, - "rtt_ms": 1.538075, + "rtt_ns": 1456917, + "rtt_ms": 1.456917, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:55.942855817Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:54.462047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809534, - "rtt_ms": 1.809534, + "rtt_ns": 1400959, + "rtt_ms": 1.400959, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:55.942856567Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:54.462076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838594, - "rtt_ms": 1.838594, + "rtt_ns": 1507833, + "rtt_ms": 1.507833, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:55.942882577Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:54.462234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096547, - "rtt_ms": 1.096547, + "rtt_ns": 1583667, + "rtt_ms": 1.583667, "checkpoint": 0, "vertex_from": "146", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:55.942895797Z" + "timestamp": "2025-11-27T04:01:54.462268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250266, - "rtt_ms": 1.250266, + "rtt_ns": 1525583, + "rtt_ms": 1.525583, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:55.943087956Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:54.462404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282036, - "rtt_ms": 1.282036, + "rtt_ns": 1678875, + "rtt_ms": 1.678875, "checkpoint": 0, "vertex_from": "146", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:55.943148166Z" + "timestamp": "2025-11-27T04:01:54.462421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378285, - "rtt_ms": 1.378285, - "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:55.943328935Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1701124, - "rtt_ms": 1.701124, + "rtt_ns": 1562208, + "rtt_ms": 1.562208, "checkpoint": 0, "vertex_from": "146", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:55.943818493Z" + "timestamp": "2025-11-27T04:01:54.462454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186996, - "rtt_ms": 1.186996, + "rtt_ns": 1339250, + "rtt_ms": 1.33925, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:55.943875123Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:54.463203-08:00" }, { "operation": "add_edge", - "rtt_ns": 990966, - "rtt_ms": 0.990966, + "rtt_ns": 1383000, + "rtt_ms": 1.383, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "395", - "timestamp": "2025-11-27T01:21:55.943887743Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:54.463302-08:00" }, { "operation": "add_edge", - "rtt_ns": 860207, - "rtt_ms": 0.860207, + "rtt_ns": 1348042, + "rtt_ms": 1.348042, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:55.943949233Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:01:54.463396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160466, - "rtt_ms": 1.160466, + "rtt_ns": 1427292, + "rtt_ms": 1.427292, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "717", - "timestamp": "2025-11-27T01:21:55.944018463Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:54.463697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232665, - "rtt_ms": 1.232665, + "rtt_ns": 1701709, + "rtt_ms": 1.701709, "checkpoint": 0, "vertex_from": "146", "vertex_to": "930", - "timestamp": "2025-11-27T01:21:55.944116392Z" + "timestamp": "2025-11-27T04:01:54.463778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262045, - "rtt_ms": 1.262045, + "rtt_ns": 1561167, + "rtt_ms": 1.561167, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:55.944118662Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:01:54.463796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325735, - "rtt_ms": 1.325735, + "rtt_ns": 2576541, + "rtt_ms": 2.576541, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:55.944121482Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:54.4638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594535, - "rtt_ms": 1.594535, + "rtt_ns": 1290875, + "rtt_ms": 1.290875, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:55.944743741Z" + "vertex_to": "541", + "timestamp": "2025-11-27T04:01:54.465088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509545, - "rtt_ms": 1.509545, + "rtt_ns": 2790917, + "rtt_ms": 2.790917, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:55.94483942Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:54.465245-08:00" }, { "operation": "add_edge", - "rtt_ns": 971807, - "rtt_ms": 0.971807, + "rtt_ns": 2517292, + "rtt_ms": 2.517292, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:55.94486079Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:54.465722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199856, - "rtt_ms": 1.199856, + "rtt_ns": 2329167, + "rtt_ms": 2.329167, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:55.945219179Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:54.465726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438806, - "rtt_ms": 1.438806, + "rtt_ns": 3318833, + "rtt_ms": 3.318833, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:55.945258239Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:54.46574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388666, - "rtt_ms": 1.388666, + "rtt_ns": 2438625, + "rtt_ms": 2.438625, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:55.945339439Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:54.465743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299236, - "rtt_ms": 1.299236, + "rtt_ns": 1945583, + "rtt_ms": 1.945583, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "541", - "timestamp": "2025-11-27T01:21:55.945418728Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:54.465747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394016, - "rtt_ms": 1.394016, + "rtt_ns": 2138625, + "rtt_ms": 2.138625, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:55.945516118Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:54.465837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1417916, - "rtt_ms": 1.417916, + "rtt_ns": 3522625, + "rtt_ms": 3.522625, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:55.945535118Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:54.465927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738785, - "rtt_ms": 1.738785, + "rtt_ns": 2190208, + "rtt_ms": 2.190208, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:55.945614568Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:54.46597-08:00" }, { "operation": "add_edge", - "rtt_ns": 823178, - "rtt_ms": 0.823178, + "rtt_ns": 956541, + "rtt_ms": 0.956541, "checkpoint": 0, "vertex_from": "146", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:55.945663298Z" + "timestamp": "2025-11-27T04:01:54.466203-08:00" }, { "operation": "add_edge", - "rtt_ns": 833187, - "rtt_ms": 0.833187, + "rtt_ns": 973208, + "rtt_ms": 0.973208, "checkpoint": 0, "vertex_from": "146", "vertex_to": "152", - "timestamp": "2025-11-27T01:21:55.945694547Z" + "timestamp": "2025-11-27T04:01:54.466696-08:00" }, { "operation": "add_edge", - "rtt_ns": 952666, - "rtt_ms": 0.952666, + "rtt_ns": 1606958, + "rtt_ms": 1.606958, "checkpoint": 0, "vertex_from": "146", "vertex_to": "325", - "timestamp": "2025-11-27T01:21:55.945697817Z" + "timestamp": "2025-11-27T04:01:54.466696-08:00" }, { "operation": "add_edge", - "rtt_ns": 521918, - "rtt_ms": 0.521918, + "rtt_ns": 1033167, + "rtt_ms": 1.033167, "checkpoint": 0, "vertex_from": "146", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:55.945741837Z" + "timestamp": "2025-11-27T04:01:54.466761-08:00" }, { "operation": "bfs", - "rtt_ns": 10846355, - "rtt_ms": 10, + "rtt_ns": 4005542, + "rtt_ms": 4, "checkpoint": 4, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "1001", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "855", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "875", - "538", - "463", - "388", - "640", - "62", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "239", - "956", - "669", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "126", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "859", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "1", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "0", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "413", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "221", - "373", - "1008", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "715", - "683", - "273", - "462", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "31", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "853", - "114", - "820", - "542", - "696", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "663", - "30", - "548" + "0" ], - "timestamp": "2025-11-27T01:21:57.991399644Z" + "timestamp": "2025-11-27T04:01:56.505148-08:00" }, { "operation": "bfs", - "rtt_ns": 6261269, - "rtt_ms": 6, + "rtt_ns": 2032458, + "rtt_ms": 2, "checkpoint": 4, "bfs_start": "1", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "855", - "370", - "750", - "805", - "811", - "553", - "923", - "875", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "239", - "669", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "1", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "853", - "114", - "820", - "542", - "696", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "1" ], - "timestamp": "2025-11-27T01:21:57.997916163Z" + "timestamp": "2025-11-27T04:01:56.507394-08:00" }, { "operation": "bfs", - "rtt_ns": 5345352, - "rtt_ms": 5, + "rtt_ns": 1755375, + "rtt_ms": 1, "checkpoint": 4, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "805", - "811", - "553", - "923", - "875", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "239", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "696", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "2" ], - "timestamp": "2025-11-27T01:21:58.003456195Z" + "timestamp": "2025-11-27T04:01:56.509306-08:00" }, { "operation": "bfs", - "rtt_ns": 7504055, - "rtt_ms": 7, + "rtt_ns": 1769875, + "rtt_ms": 1, "checkpoint": 4, "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "805", - "811", - "553", - "923", - "875", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "239", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "152", - "993", - "448", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "296", - "790", - "550", - "17", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "696", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "4" ], - "timestamp": "2025-11-27T01:21:58.011189099Z" + "timestamp": "2025-11-27T04:01:56.511261-08:00" }, { "operation": "bfs", - "rtt_ns": 4145457, - "rtt_ms": 4, + "rtt_ns": 1698625, + "rtt_ms": 1, "checkpoint": 4, "bfs_start": "3", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "805", - "811", - "553", - "923", - "875", - "538", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "915", - "666", - "405", - "239", - "51", - "848", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "152", - "993", - "448", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "970", - "641", - "461", - "706", - "223", - "813", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "296", - "790", - "550", - "17", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "532", - "651", - "743", - "899", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "696", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "835", - "714", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "3" ], - "timestamp": "2025-11-27T01:21:58.015559436Z" + "timestamp": "2025-11-27T04:01:56.513066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078957, - "rtt_ms": 1.078957, + "rtt_ns": 3402417, + "rtt_ms": 3.402417, "checkpoint": 0, "vertex_from": "146", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.016704782Z" + "timestamp": "2025-11-27T04:01:56.516551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542535, - "rtt_ms": 1.542535, + "rtt_ns": 3562459, + "rtt_ms": 3.562459, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.01716207Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.516683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531835, - "rtt_ms": 1.531835, + "rtt_ns": 3647834, + "rtt_ms": 3.647834, "checkpoint": 0, - "vertex_from": "146", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.01716543Z" + "vertex_from": "147", + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:56.516812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684145, - "rtt_ms": 1.684145, + "rtt_ns": 3740583, + "rtt_ms": 3.740583, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.01729872Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:56.516834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692105, - "rtt_ms": 1.692105, + "rtt_ns": 4150958, + "rtt_ms": 4.150958, "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:58.01730317Z" + "vertex_from": "146", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.517326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741175, - "rtt_ms": 1.741175, + "rtt_ns": 4408708, + "rtt_ms": 4.408708, "checkpoint": 0, "vertex_from": "146", "vertex_to": "617", - "timestamp": "2025-11-27T01:21:58.0173333Z" + "timestamp": "2025-11-27T04:01:56.517517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698105, - "rtt_ms": 1.698105, + "rtt_ns": 4482417, + "rtt_ms": 4.482417, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.01733803Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.517652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716615, - "rtt_ms": 1.716615, + "rtt_ns": 4563333, + "rtt_ms": 4.563333, "checkpoint": 0, "vertex_from": "146", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.01735212Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.517741-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774785, - "rtt_ms": 1.774785, + "rtt_ns": 4627791, + "rtt_ms": 4.627791, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:58.0173573Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:56.517765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794725, - "rtt_ms": 1.794725, + "rtt_ns": 4639875, + "rtt_ms": 4.639875, "checkpoint": 0, "vertex_from": "147", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.01740059Z" + "timestamp": "2025-11-27T04:01:56.517781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379976, - "rtt_ms": 1.379976, + "rtt_ns": 4450167, + "rtt_ms": 4.450167, "checkpoint": 0, "vertex_from": "147", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.018086798Z" + "timestamp": "2025-11-27T04:01:56.521005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194487, - "rtt_ms": 1.194487, + "rtt_ns": 4297875, + "rtt_ms": 4.297875, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.018361937Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:01:56.521134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235537, - "rtt_ms": 1.235537, + "rtt_ns": 4499750, + "rtt_ms": 4.49975, "checkpoint": 0, "vertex_from": "147", "vertex_to": "779", - "timestamp": "2025-11-27T01:21:58.018399277Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1648895, - "rtt_ms": 1.648895, - "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "996", - "timestamp": "2025-11-27T01:21:58.018948955Z" + "timestamp": "2025-11-27T04:01:56.521185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646035, - "rtt_ms": 1.646035, + "rtt_ns": 4264500, + "rtt_ms": 4.2645, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.018985145Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.521783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629465, - "rtt_ms": 1.629465, + "rtt_ns": 4969250, + "rtt_ms": 4.96925, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.018988405Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.521783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711915, - "rtt_ms": 1.711915, + "rtt_ns": 4565875, + "rtt_ms": 4.565875, "checkpoint": 0, "vertex_from": "147", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:58.019016485Z" + "timestamp": "2025-11-27T04:01:56.521894-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495792, - "rtt_ms": 2.495792, + "rtt_ns": 4254209, + "rtt_ms": 4.254209, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:58.019849362Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.522041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2593052, - "rtt_ms": 2.593052, + "rtt_ns": 4343417, + "rtt_ms": 4.343417, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.019928062Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.52211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2586051, - "rtt_ms": 2.586051, + "rtt_ns": 4906875, + "rtt_ms": 4.906875, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.019988061Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:56.52265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890614, - "rtt_ms": 1.890614, + "rtt_ns": 5115333, + "rtt_ms": 5.115333, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.020253931Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.52277-08:00" }, { "operation": "add_edge", - "rtt_ns": 2286802, - "rtt_ms": 2.286802, + "rtt_ns": 4146000, + "rtt_ms": 4.146, "checkpoint": 0, "vertex_from": "147", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.02037581Z" + "timestamp": "2025-11-27T04:01:56.525153-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169272, - "rtt_ms": 2.169272, + "rtt_ns": 4062667, + "rtt_ms": 4.062667, "checkpoint": 0, "vertex_from": "147", "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.020569999Z" + "timestamp": "2025-11-27T04:01:56.525249-08:00" }, { "operation": "add_edge", - "rtt_ns": 740638, - "rtt_ms": 0.740638, + "rtt_ns": 4742250, + "rtt_ms": 4.74225, "checkpoint": 0, - "vertex_from": "148", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:58.020730469Z" + "vertex_from": "147", + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.525878-08:00" }, { "operation": "add_edge", - "rtt_ns": 807767, - "rtt_ms": 0.807767, + "rtt_ns": 4176708, + "rtt_ms": 4.176708, "checkpoint": 0, - "vertex_from": "148", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.021184757Z" + "vertex_from": "147", + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:56.525963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032856, - "rtt_ms": 1.032856, + "rtt_ns": 4130417, + "rtt_ms": 4.130417, "checkpoint": 0, - "vertex_from": "148", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.021287907Z" + "vertex_from": "147", + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:56.526027-08:00" }, { "operation": "add_edge", - "rtt_ns": 2304892, - "rtt_ms": 2.304892, + "rtt_ns": 3978333, + "rtt_ms": 3.978333, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.021322817Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:56.52609-08:00" }, { "operation": "add_edge", - "rtt_ns": 2496702, - "rtt_ms": 2.496702, + "rtt_ns": 4378375, + "rtt_ms": 4.378375, "checkpoint": 0, "vertex_from": "147", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.021447297Z" + "timestamp": "2025-11-27T04:01:56.526165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2479671, - "rtt_ms": 2.479671, + "rtt_ns": 4903334, + "rtt_ms": 4.903334, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:58.021466156Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:56.526946-08:00" }, { "operation": "add_edge", - "rtt_ns": 2509531, - "rtt_ms": 2.509531, + "rtt_ns": 4416417, + "rtt_ms": 4.416417, "checkpoint": 0, "vertex_from": "147", - "vertex_to": "913", - "timestamp": "2025-11-27T01:21:58.021499756Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.527068-08:00" }, { "operation": "add_edge", - "rtt_ns": 809407, - "rtt_ms": 0.809407, + "rtt_ns": 4314500, + "rtt_ms": 4.3145, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:58.021541286Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:56.527086-08:00" }, { "operation": "add_edge", - "rtt_ns": 982367, - "rtt_ms": 0.982367, + "rtt_ns": 4022542, + "rtt_ms": 4.022542, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:58.021554046Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.529273-08:00" }, { "operation": "add_edge", - "rtt_ns": 2047553, - "rtt_ms": 2.047553, + "rtt_ns": 4244000, + "rtt_ms": 4.244, "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.021977365Z" + "vertex_from": "148", + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.529399-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141153, - "rtt_ms": 2.141153, + "rtt_ns": 3844792, + "rtt_ms": 3.844792, "checkpoint": 0, - "vertex_from": "147", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:58.021993525Z" + "vertex_from": "148", + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:56.529936-08:00" }, { "operation": "add_edge", - "rtt_ns": 912387, - "rtt_ms": 0.912387, + "rtt_ns": 4074208, + "rtt_ms": 4.074208, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:58.022201474Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.530102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032327, - "rtt_ms": 1.032327, + "rtt_ns": 4971792, + "rtt_ms": 4.971792, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.022218274Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:56.530851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546145, - "rtt_ms": 1.546145, + "rtt_ns": 4961792, + "rtt_ms": 4.961792, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.022872662Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:56.530926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587785, - "rtt_ms": 1.587785, + "rtt_ns": 4844958, + "rtt_ms": 4.844958, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "391", - "timestamp": "2025-11-27T01:21:58.023131481Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.531011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608155, - "rtt_ms": 1.608155, + "rtt_ns": 3996667, + "rtt_ms": 3.996667, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.023164141Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.531084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605551, - "rtt_ms": 2.605551, + "rtt_ns": 4214917, + "rtt_ms": 4.214917, "checkpoint": 0, "vertex_from": "148", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.024058878Z" + "timestamp": "2025-11-27T04:01:56.531162-08:00" }, { "operation": "add_edge", - "rtt_ns": 2167043, - "rtt_ms": 2.167043, + "rtt_ns": 4909750, + "rtt_ms": 4.90975, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.024149978Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.531979-08:00" }, { "operation": "add_edge", - "rtt_ns": 3488519, - "rtt_ms": 3.488519, + "rtt_ns": 4448542, + "rtt_ms": 4.448542, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.024956995Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.533849-08:00" }, { "operation": "add_edge", - "rtt_ns": 3608489, - "rtt_ms": 3.608489, + "rtt_ns": 4629375, + "rtt_ms": 4.629375, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.025109765Z" + "vertex_to": "391", + "timestamp": "2025-11-27T04:01:56.533904-08:00" }, { "operation": "add_edge", - "rtt_ns": 2943850, - "rtt_ms": 2.94385, + "rtt_ns": 4383500, + "rtt_ms": 4.3835, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.025162974Z" + "vertex_to": "921", + "timestamp": "2025-11-27T04:01:56.53449-08:00" }, { "operation": "add_edge", - "rtt_ns": 2995320, - "rtt_ms": 2.99532, + "rtt_ns": 4658208, + "rtt_ms": 4.658208, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.025199314Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.534596-08:00" }, { "operation": "add_edge", - "rtt_ns": 3212699, - "rtt_ms": 3.212699, + "rtt_ns": 3817916, + "rtt_ms": 3.817916, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "921", - "timestamp": "2025-11-27T01:21:58.025207884Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.534745-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133403, - "rtt_ms": 2.133403, + "rtt_ns": 4559833, + "rtt_ms": 4.559833, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:58.025270364Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.535413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2408372, - "rtt_ms": 2.408372, + "rtt_ns": 4359667, + "rtt_ms": 4.359667, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:58.025282954Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.535523-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178653, - "rtt_ms": 2.178653, + "rtt_ns": 4488500, + "rtt_ms": 4.4885, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.025351814Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:56.535575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359246, - "rtt_ms": 1.359246, + "rtt_ns": 4572375, + "rtt_ms": 4.572375, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.025419984Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:56.535585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668024, - "rtt_ms": 1.668024, + "rtt_ns": 4121917, + "rtt_ms": 4.121917, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.025820932Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.536103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015057, - "rtt_ms": 1.015057, + "rtt_ns": 3307042, + "rtt_ms": 3.307042, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.026180131Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.537157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274866, - "rtt_ms": 1.274866, + "rtt_ns": 3295042, + "rtt_ms": 3.295042, "checkpoint": 0, "vertex_from": "148", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.026233811Z" + "timestamp": "2025-11-27T04:01:56.5372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200576, - "rtt_ms": 1.200576, + "rtt_ns": 3089375, + "rtt_ms": 3.089375, "checkpoint": 0, "vertex_from": "148", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.026312101Z" + "timestamp": "2025-11-27T04:01:56.53758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608585, - "rtt_ms": 1.608585, + "rtt_ns": 3055333, + "rtt_ms": 3.055333, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.026894019Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.537653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708785, - "rtt_ms": 1.708785, + "rtt_ns": 2932750, + "rtt_ms": 2.93275, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:58.026919559Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:56.537679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520395, - "rtt_ms": 1.520395, + "rtt_ns": 2626208, + "rtt_ms": 2.626208, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.026942329Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:56.53804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741345, - "rtt_ms": 1.741345, + "rtt_ns": 2586041, + "rtt_ms": 2.586041, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:58.026942489Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:56.538172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606755, - "rtt_ms": 1.606755, + "rtt_ns": 2622833, + "rtt_ms": 2.622833, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:58.026960409Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.5382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696735, - "rtt_ms": 1.696735, + "rtt_ns": 2157375, + "rtt_ms": 2.157375, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.026968929Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.538263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151227, - "rtt_ms": 1.151227, + "rtt_ns": 2820500, + "rtt_ms": 2.8205, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.026974429Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.538345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430006, - "rtt_ms": 1.430006, + "rtt_ns": 2786750, + "rtt_ms": 2.78675, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:58.027612517Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.539946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559635, - "rtt_ms": 1.559635, + "rtt_ns": 2769542, + "rtt_ms": 2.769542, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.027874696Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:56.539971-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675595, - "rtt_ms": 1.675595, + "rtt_ns": 2330167, + "rtt_ms": 2.330167, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.027910966Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.540372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655415, - "rtt_ms": 1.655415, + "rtt_ns": 2716833, + "rtt_ms": 2.716833, "checkpoint": 0, "vertex_from": "148", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.028551794Z" + "timestamp": "2025-11-27T04:01:56.540397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589925, - "rtt_ms": 1.589925, + "rtt_ns": 2850375, + "rtt_ms": 2.850375, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.028552174Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.540432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621644, - "rtt_ms": 1.621644, + "rtt_ns": 2791125, + "rtt_ms": 2.791125, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "168", - "timestamp": "2025-11-27T01:21:58.028597973Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.540445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627554, - "rtt_ms": 1.627554, + "rtt_ns": 2598792, + "rtt_ms": 2.598792, "checkpoint": 0, "vertex_from": "148", "vertex_to": "714", - "timestamp": "2025-11-27T01:21:58.028598423Z" + "timestamp": "2025-11-27T04:01:56.540945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692284, - "rtt_ms": 1.692284, + "rtt_ns": 2878791, + "rtt_ms": 2.878791, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.028638063Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.541143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694994, - "rtt_ms": 1.694994, + "rtt_ns": 2995209, + "rtt_ms": 2.995209, "checkpoint": 0, "vertex_from": "148", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.028639533Z" + "timestamp": "2025-11-27T04:01:56.541169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717984, - "rtt_ms": 1.717984, + "rtt_ns": 3033459, + "rtt_ms": 3.033459, "checkpoint": 0, "vertex_from": "148", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.028640563Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.541234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291625, - "rtt_ms": 1.291625, + "rtt_ns": 2252541, + "rtt_ms": 2.252541, "checkpoint": 0, "vertex_from": "148", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.028905492Z" + "timestamp": "2025-11-27T04:01:56.542225-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2482667, + "rtt_ms": 2.482667, + "checkpoint": 0, + "vertex_from": "148", + "vertex_to": "168", + "timestamp": "2025-11-27T04:01:56.54243-08:00" }, { "operation": "add_edge", - "rtt_ns": 950437, - "rtt_ms": 0.950437, + "rtt_ns": 2476958, + "rtt_ms": 2.476958, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:58.02955032Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.542924-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2623375, + "rtt_ms": 2.623375, + "checkpoint": 0, + "vertex_from": "148", + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.543021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689114, - "rtt_ms": 1.689114, + "rtt_ns": 3117416, + "rtt_ms": 3.117416, "checkpoint": 0, "vertex_from": "148", "vertex_to": "150", - "timestamp": "2025-11-27T01:21:58.02956503Z" + "timestamp": "2025-11-27T04:01:56.543491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031986, - "rtt_ms": 1.031986, + "rtt_ns": 3554208, + "rtt_ms": 3.554208, "checkpoint": 0, "vertex_from": "149", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.02958569Z" + "timestamp": "2025-11-27T04:01:56.543987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045996, - "rtt_ms": 1.045996, + "rtt_ns": 3063958, + "rtt_ms": 3.063958, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.02960001Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:56.54401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748794, - "rtt_ms": 1.748794, + "rtt_ns": 1836458, + "rtt_ms": 1.836458, "checkpoint": 0, - "vertex_from": "148", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.02966425Z" + "vertex_from": "149", + "vertex_to": "240", + "timestamp": "2025-11-27T04:01:56.544763-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3628042, + "rtt_ms": 3.628042, + "checkpoint": 0, + "vertex_from": "149", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.544772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128167, - "rtt_ms": 1.128167, + "rtt_ns": 2557750, + "rtt_ms": 2.55775, "checkpoint": 0, "vertex_from": "149", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.02976998Z" + "timestamp": "2025-11-27T04:01:56.544784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188137, - "rtt_ms": 1.188137, + "rtt_ns": 2375875, + "rtt_ms": 2.375875, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.0297886Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.544807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148927, - "rtt_ms": 1.148927, + "rtt_ns": 3653542, + "rtt_ms": 3.653542, "checkpoint": 0, "vertex_from": "149", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.02979019Z" + "timestamp": "2025-11-27T04:01:56.544823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287616, - "rtt_ms": 1.287616, + "rtt_ns": 3592584, + "rtt_ms": 3.592584, "checkpoint": 0, "vertex_from": "149", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.029928679Z" + "timestamp": "2025-11-27T04:01:56.544828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053667, - "rtt_ms": 1.053667, + "rtt_ns": 2300917, + "rtt_ms": 2.300917, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.030640947Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.545323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757605, - "rtt_ms": 1.757605, + "rtt_ns": 2445709, + "rtt_ms": 2.445709, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.030664497Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.546457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114347, - "rtt_ms": 1.114347, + "rtt_ns": 2987584, + "rtt_ms": 2.987584, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "240", - "timestamp": "2025-11-27T01:21:58.030667877Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.54648-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517185, - "rtt_ms": 1.517185, + "rtt_ns": 2876875, + "rtt_ms": 2.876875, "checkpoint": 0, "vertex_from": "149", "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.031119845Z" + "timestamp": "2025-11-27T04:01:56.546866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656245, - "rtt_ms": 1.656245, + "rtt_ns": 2112458, + "rtt_ms": 2.112458, "checkpoint": 0, "vertex_from": "149", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.031222365Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.546877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291636, - "rtt_ms": 1.291636, + "rtt_ns": 2113042, + "rtt_ms": 2.113042, "checkpoint": 0, - "vertex_from": "150", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:58.031223665Z" + "vertex_from": "149", + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:56.546888-08:00" }, { "operation": "add_edge", - "rtt_ns": 830407, - "rtt_ms": 0.830407, + "rtt_ns": 2185917, + "rtt_ms": 2.185917, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.031496214Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:56.546994-08:00" }, { "operation": "add_edge", - "rtt_ns": 858477, - "rtt_ms": 0.858477, + "rtt_ns": 2189250, + "rtt_ms": 2.18925, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.031529334Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.547018-08:00" }, { "operation": "add_edge", - "rtt_ns": 886017, - "rtt_ms": 0.886017, + "rtt_ns": 2405125, + "rtt_ms": 2.405125, "checkpoint": 0, - "vertex_from": "150", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.031529894Z" + "vertex_from": "149", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.54719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292766, - "rtt_ms": 1.292766, + "rtt_ns": 2982709, + "rtt_ms": 2.982709, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.032414611Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.547809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2643041, - "rtt_ms": 2.643041, + "rtt_ns": 2950417, + "rtt_ms": 2.950417, "checkpoint": 0, - "vertex_from": "149", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.032415101Z" + "vertex_from": "150", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.548276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216826, - "rtt_ms": 1.216826, + "rtt_ns": 2935458, + "rtt_ms": 2.935458, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.032441691Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.549394-08:00" }, { "operation": "add_edge", - "rtt_ns": 2659931, - "rtt_ms": 2.659931, + "rtt_ns": 2943500, + "rtt_ms": 2.9435, "checkpoint": 0, - "vertex_from": "149", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.032451131Z" + "vertex_from": "150", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.549424-08:00" }, { "operation": "add_edge", - "rtt_ns": 2798881, - "rtt_ms": 2.798881, + "rtt_ns": 2647917, + "rtt_ms": 2.647917, "checkpoint": 0, - "vertex_from": "149", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.032464881Z" + "vertex_from": "150", + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.549517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263846, - "rtt_ms": 1.263846, + "rtt_ns": 2799916, + "rtt_ms": 2.799916, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.032487911Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.549689-08:00" }, { "operation": "add_edge", - "rtt_ns": 2698761, - "rtt_ms": 2.698761, + "rtt_ns": 2739208, + "rtt_ms": 2.739208, "checkpoint": 0, - "vertex_from": "149", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.032488661Z" + "vertex_from": "150", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.549734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686915, - "rtt_ms": 1.686915, + "rtt_ns": 2857791, + "rtt_ms": 2.857791, "checkpoint": 0, "vertex_from": "150", "vertex_to": "965", - "timestamp": "2025-11-27T01:21:58.033186419Z" + "timestamp": "2025-11-27T04:01:56.549736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772955, - "rtt_ms": 1.772955, + "rtt_ns": 2004792, + "rtt_ms": 2.004792, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.033305239Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.549814-08:00" }, { "operation": "add_edge", - "rtt_ns": 2108393, - "rtt_ms": 2.108393, + "rtt_ns": 2708625, + "rtt_ms": 2.708625, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.033640007Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.5499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271186, - "rtt_ms": 1.271186, + "rtt_ns": 2908417, + "rtt_ms": 2.908417, "checkpoint": 0, "vertex_from": "150", "vertex_to": "777", - "timestamp": "2025-11-27T01:21:58.033687617Z" + "timestamp": "2025-11-27T04:01:56.549928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427846, - "rtt_ms": 1.427846, + "rtt_ns": 1999333, + "rtt_ms": 1.999333, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.033845907Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.550277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370756, - "rtt_ms": 1.370756, + "rtt_ns": 2162000, + "rtt_ms": 2.162, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.033862707Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.551682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379676, - "rtt_ms": 1.379676, + "rtt_ns": 2298792, + "rtt_ms": 2.298792, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.033869457Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.551725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447996, - "rtt_ms": 1.447996, + "rtt_ns": 2287500, + "rtt_ms": 2.2875, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.033913997Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.552025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531895, - "rtt_ms": 1.531895, + "rtt_ns": 2647375, + "rtt_ms": 2.647375, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.033984766Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.552048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876474, - "rtt_ms": 1.876474, + "rtt_ns": 2247792, + "rtt_ms": 2.247792, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.034321425Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.552064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1317226, - "rtt_ms": 1.317226, + "rtt_ns": 2161042, + "rtt_ms": 2.161042, "checkpoint": 0, - "vertex_from": "150", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.034505605Z" + "vertex_from": "151", + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.55209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232996, - "rtt_ms": 1.232996, + "rtt_ns": 2197958, + "rtt_ms": 2.197958, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.034539865Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.552099-08:00" }, { "operation": "add_edge", - "rtt_ns": 965027, - "rtt_ms": 0.965027, + "rtt_ns": 1946083, + "rtt_ms": 1.946083, "checkpoint": 0, - "vertex_from": "150", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.034606254Z" + "vertex_from": "151", + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.552226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115197, - "rtt_ms": 1.115197, + "rtt_ns": 2549792, + "rtt_ms": 2.549792, "checkpoint": 0, "vertex_from": "150", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.034803624Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.552241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697154, - "rtt_ms": 1.697154, + "rtt_ns": 2561416, + "rtt_ms": 2.561416, "checkpoint": 0, - "vertex_from": "151", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.035568021Z" + "vertex_from": "150", + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.552296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674324, - "rtt_ms": 1.674324, + "rtt_ns": 2316750, + "rtt_ms": 2.31675, "checkpoint": 0, "vertex_from": "151", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.035590031Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.554366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743124, - "rtt_ms": 1.743124, + "rtt_ns": 2153875, + "rtt_ms": 2.153875, "checkpoint": 0, - "vertex_from": "150", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.035590061Z" + "vertex_from": "152", + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:56.554381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289706, - "rtt_ms": 1.289706, + "rtt_ns": 2296583, + "rtt_ms": 2.296583, "checkpoint": 0, - "vertex_from": "151", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.035612811Z" + "vertex_from": "152", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.554388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645975, - "rtt_ms": 1.645975, + "rtt_ns": 2680792, + "rtt_ms": 2.680792, "checkpoint": 0, "vertex_from": "151", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.035632711Z" + "timestamp": "2025-11-27T04:01:56.554407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771254, - "rtt_ms": 1.771254, + "rtt_ns": 2325375, + "rtt_ms": 2.325375, "checkpoint": 0, - "vertex_from": "151", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.035636101Z" + "vertex_from": "152", + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:56.554427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450205, - "rtt_ms": 1.450205, + "rtt_ns": 2746500, + "rtt_ms": 2.7465, "checkpoint": 0, "vertex_from": "151", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.03595714Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.554431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430555, - "rtt_ms": 1.430555, + "rtt_ns": 2320792, + "rtt_ms": 2.320792, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.03597223Z" + "vertex_to": "160", + "timestamp": "2025-11-27T04:01:56.554618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227906, - "rtt_ms": 1.227906, + "rtt_ns": 2556208, + "rtt_ms": 2.556208, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.03603351Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.554623-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467116, - "rtt_ms": 1.467116, + "rtt_ns": 2601625, + "rtt_ms": 2.601625, "checkpoint": 0, - "vertex_from": "152", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.03607418Z" + "vertex_from": "151", + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.554628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1180706, - "rtt_ms": 1.180706, + "rtt_ns": 2426167, + "rtt_ms": 2.426167, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.036814477Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:56.554668-08:00" }, { "operation": "add_edge", - "rtt_ns": 810597, - "rtt_ms": 0.810597, + "rtt_ns": 1718292, + "rtt_ms": 1.718292, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.036845177Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.556086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281826, - "rtt_ms": 1.281826, + "rtt_ns": 1745666, + "rtt_ms": 1.745666, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.036895437Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.556173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280416, - "rtt_ms": 1.280416, + "rtt_ns": 1788417, + "rtt_ms": 1.788417, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.036917467Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.556221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340646, - "rtt_ms": 1.340646, + "rtt_ns": 1958417, + "rtt_ms": 1.958417, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.036933527Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.556343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378386, - "rtt_ms": 1.378386, + "rtt_ns": 2133625, + "rtt_ms": 2.133625, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:58.036948007Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:56.556523-08:00" }, { "operation": "add_edge", - "rtt_ns": 991297, - "rtt_ms": 0.991297, + "rtt_ns": 2127542, + "rtt_ms": 2.127542, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.036964467Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.556536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1393656, - "rtt_ms": 1.393656, + "rtt_ns": 1973167, + "rtt_ms": 1.973167, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "160", - "timestamp": "2025-11-27T01:21:58.036985547Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.556602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046937, - "rtt_ms": 1.046937, + "rtt_ns": 2047334, + "rtt_ms": 2.047334, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.037005007Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.556667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732104, - "rtt_ms": 1.732104, + "rtt_ns": 2086458, + "rtt_ms": 2.086458, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.037806734Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.556711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401785, - "rtt_ms": 1.401785, + "rtt_ns": 2099000, + "rtt_ms": 2.099, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.038247652Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.556768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372555, - "rtt_ms": 1.372555, + "rtt_ns": 1915958, + "rtt_ms": 1.915958, "checkpoint": 0, "vertex_from": "152", "vertex_to": "277", - "timestamp": "2025-11-27T01:21:58.038306882Z" + "timestamp": "2025-11-27T04:01:56.558091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347625, - "rtt_ms": 1.347625, + "rtt_ns": 1895125, + "rtt_ms": 1.895125, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.038312702Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.558118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632775, - "rtt_ms": 1.632775, + "rtt_ns": 2048250, + "rtt_ms": 2.04825, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.038447682Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.558392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573695, - "rtt_ms": 1.573695, + "rtt_ns": 2324834, + "rtt_ms": 2.324834, "checkpoint": 0, "vertex_from": "152", "vertex_to": "165", - "timestamp": "2025-11-27T01:21:58.038492252Z" + "timestamp": "2025-11-27T04:01:56.558412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565514, - "rtt_ms": 1.565514, + "rtt_ns": 1666083, + "rtt_ms": 1.666083, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.038514221Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.558435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637714, - "rtt_ms": 1.637714, + "rtt_ns": 1855083, + "rtt_ms": 1.855083, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "167", - "timestamp": "2025-11-27T01:21:58.038643551Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.55846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222972, - "rtt_ms": 2.222972, + "rtt_ns": 1983000, + "rtt_ms": 1.983, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.039119239Z" + "vertex_to": "167", + "timestamp": "2025-11-27T04:01:56.558521-08:00" }, { "operation": "add_edge", - "rtt_ns": 806847, - "rtt_ms": 0.806847, + "rtt_ns": 1881750, + "rtt_ms": 1.88175, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.039120259Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.558594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400385, - "rtt_ms": 1.400385, + "rtt_ns": 1952583, + "rtt_ms": 1.952583, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.039207619Z" + "vertex_to": "199", + "timestamp": "2025-11-27T04:01:56.558621-08:00" }, { "operation": "add_edge", - "rtt_ns": 2474021, - "rtt_ms": 2.474021, + "rtt_ns": 2143292, + "rtt_ms": 2.143292, "checkpoint": 0, "vertex_from": "152", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.039460058Z" + "timestamp": "2025-11-27T04:01:56.558667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233326, - "rtt_ms": 1.233326, + "rtt_ns": 1877375, + "rtt_ms": 1.877375, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "199", - "timestamp": "2025-11-27T01:21:58.039481588Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:56.559996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204256, - "rtt_ms": 1.204256, + "rtt_ns": 2017000, + "rtt_ms": 2.017, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.039513218Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.560108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458585, - "rtt_ms": 1.458585, + "rtt_ns": 1901375, + "rtt_ms": 1.901375, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:58.039951687Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.560362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613005, - "rtt_ms": 1.613005, + "rtt_ns": 1957083, + "rtt_ms": 1.957083, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.040127746Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.560393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779844, - "rtt_ms": 1.779844, + "rtt_ns": 1818750, + "rtt_ms": 1.81875, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.040228006Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.560414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757374, - "rtt_ms": 1.757374, + "rtt_ns": 2036667, + "rtt_ms": 2.036667, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.040401515Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.56043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142497, - "rtt_ms": 1.142497, + "rtt_ns": 2124584, + "rtt_ms": 2.124584, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.040624535Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.560537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453305, - "rtt_ms": 1.453305, + "rtt_ns": 2075292, + "rtt_ms": 2.075292, "checkpoint": 0, "vertex_from": "152", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.040661704Z" + "timestamp": "2025-11-27T04:01:56.560597-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1428115, - "rtt_ms": 1.428115, + "operation": "add_edge", + "rtt_ns": 2128959, + "rtt_ms": 2.128959, "checkpoint": 0, - "vertex_from": "847", - "timestamp": "2025-11-27T01:21:58.041383892Z" + "vertex_from": "152", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.560751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869994, - "rtt_ms": 1.869994, + "rtt_ns": 2186417, + "rtt_ms": 2.186417, "checkpoint": 0, "vertex_from": "152", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.041384332Z" + "timestamp": "2025-11-27T04:01:56.560857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268363, - "rtt_ms": 2.268363, + "rtt_ns": 1926167, + "rtt_ms": 1.926167, "checkpoint": 0, - "vertex_from": "152", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.041388992Z" + "vertex_from": "153", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.562357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123157, - "rtt_ms": 1.123157, + "rtt_ns": 2290666, + "rtt_ms": 2.290666, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.041525262Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:56.5624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2067224, - "rtt_ms": 2.067224, + "rtt_ns": 1869167, + "rtt_ms": 1.869167, "checkpoint": 0, - "vertex_from": "152", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.041528962Z" + "vertex_from": "153", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.562407-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1401906, - "rtt_ms": 1.401906, + "operation": "add_vertex", + "rtt_ns": 2412334, + "rtt_ms": 2.412334, "checkpoint": 0, - "vertex_from": "152", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:58.041530362Z" + "vertex_from": "847", + "timestamp": "2025-11-27T04:01:56.56241-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416593, - "rtt_ms": 2.416593, + "rtt_ns": 2101250, + "rtt_ms": 2.10125, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.041536352Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:56.562465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383685, - "rtt_ms": 1.383685, + "rtt_ns": 2149708, + "rtt_ms": 2.149708, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:58.041612531Z" + "vertex_to": "474", + "timestamp": "2025-11-27T04:01:56.562565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527885, - "rtt_ms": 1.527885, + "rtt_ns": 2279333, + "rtt_ms": 2.279333, "checkpoint": 0, "vertex_from": "152", - "vertex_to": "474", - "timestamp": "2025-11-27T01:21:58.04215329Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:56.562675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667015, - "rtt_ms": 1.667015, + "rtt_ns": 1856375, + "rtt_ms": 1.856375, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.042329499Z" + "vertex_to": "366", + "timestamp": "2025-11-27T04:01:56.562715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235596, - "rtt_ms": 1.235596, + "rtt_ns": 2172750, + "rtt_ms": 2.17275, "checkpoint": 0, "vertex_from": "153", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.042625178Z" + "timestamp": "2025-11-27T04:01:56.56277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265586, - "rtt_ms": 1.265586, + "rtt_ns": 2114833, + "rtt_ms": 2.114833, "checkpoint": 0, - "vertex_from": "152", - "vertex_to": "847", - "timestamp": "2025-11-27T01:21:58.042649898Z" + "vertex_from": "153", + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:56.562867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321166, - "rtt_ms": 1.321166, + "rtt_ns": 1784167, + "rtt_ms": 1.784167, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.042705968Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:56.56425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204406, - "rtt_ms": 1.204406, + "rtt_ns": 1862375, + "rtt_ms": 1.862375, "checkpoint": 0, - "vertex_from": "153", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:58.042731098Z" + "vertex_from": "152", + "vertex_to": "847", + "timestamp": "2025-11-27T04:01:56.564273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220836, - "rtt_ms": 1.220836, + "rtt_ns": 2014750, + "rtt_ms": 2.01475, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "366", - "timestamp": "2025-11-27T01:21:58.042753438Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:56.564375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013247, - "rtt_ms": 1.013247, + "rtt_ns": 1857042, + "rtt_ms": 1.857042, "checkpoint": 0, "vertex_from": "153", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.043344436Z" + "timestamp": "2025-11-27T04:01:56.564423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834644, - "rtt_ms": 1.834644, + "rtt_ns": 2116917, + "rtt_ms": 2.116917, "checkpoint": 0, "vertex_from": "153", "vertex_to": "228", - "timestamp": "2025-11-27T01:21:58.043371666Z" + "timestamp": "2025-11-27T04:01:56.564519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840744, - "rtt_ms": 1.840744, + "rtt_ns": 1867500, + "rtt_ms": 1.8675, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.043374346Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:56.564546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769935, - "rtt_ms": 1.769935, + "rtt_ns": 2139042, + "rtt_ms": 2.139042, "checkpoint": 0, "vertex_from": "153", "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.043383406Z" + "timestamp": "2025-11-27T04:01:56.564548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268186, - "rtt_ms": 1.268186, + "rtt_ns": 1864125, + "rtt_ms": 1.864125, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:58.043422296Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.564732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400116, - "rtt_ms": 1.400116, + "rtt_ns": 2069958, + "rtt_ms": 2.069958, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:58.044026624Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.564786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377496, - "rtt_ms": 1.377496, + "rtt_ns": 2025250, + "rtt_ms": 2.02525, "checkpoint": 0, "vertex_from": "153", "vertex_to": "497", - "timestamp": "2025-11-27T01:21:58.044084634Z" + "timestamp": "2025-11-27T04:01:56.564797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444486, - "rtt_ms": 1.444486, + "rtt_ns": 1651417, + "rtt_ms": 1.651417, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.044095274Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:56.566201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429245, - "rtt_ms": 1.429245, + "rtt_ns": 1851167, + "rtt_ms": 1.851167, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.044162693Z" + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:56.566228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460595, - "rtt_ms": 1.460595, + "rtt_ns": 1825709, + "rtt_ms": 1.825709, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.044215243Z" + "vertex_to": "162", + "timestamp": "2025-11-27T04:01:56.566249-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398455, - "rtt_ms": 1.398455, + "rtt_ns": 1994125, + "rtt_ms": 1.994125, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:58.044783611Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.566268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612195, - "rtt_ms": 1.612195, + "rtt_ns": 1774500, + "rtt_ms": 1.7745, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "162", - "timestamp": "2025-11-27T01:21:58.044988411Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:56.566294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027616, - "rtt_ms": 1.027616, + "rtt_ns": 1522000, + "rtt_ms": 1.522, "checkpoint": 0, "vertex_from": "154", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.0451245Z" + "timestamp": "2025-11-27T04:01:56.566317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756184, - "rtt_ms": 1.756184, + "rtt_ns": 2157791, + "rtt_ms": 2.157791, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:58.04513013Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.566409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770704, - "rtt_ms": 1.770704, + "rtt_ns": 1766084, + "rtt_ms": 1.766084, "checkpoint": 0, - "vertex_from": "153", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.04519414Z" + "vertex_from": "154", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.566563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868084, - "rtt_ms": 1.868084, + "rtt_ns": 2095541, + "rtt_ms": 2.095541, "checkpoint": 0, "vertex_from": "153", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.04521607Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.566643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575195, - "rtt_ms": 1.575195, + "rtt_ns": 2021292, + "rtt_ms": 2.021292, "checkpoint": 0, - "vertex_from": "153", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.045604529Z" + "vertex_from": "154", + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.566754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568615, - "rtt_ms": 1.568615, + "rtt_ns": 1673750, + "rtt_ms": 1.67375, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.045655129Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.567903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553145, - "rtt_ms": 1.553145, + "rtt_ns": 1609667, + "rtt_ms": 1.609667, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.045771358Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.567929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638245, - "rtt_ms": 1.638245, + "rtt_ns": 1774875, + "rtt_ms": 1.774875, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.045807158Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.568185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872144, - "rtt_ms": 1.872144, + "rtt_ns": 1931584, + "rtt_ms": 1.931584, "checkpoint": 0, "vertex_from": "154", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.046999354Z" + "timestamp": "2025-11-27T04:01:56.568201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914414, - "rtt_ms": 1.914414, + "rtt_ns": 2004500, + "rtt_ms": 2.0045, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.047046524Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.568207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476055, - "rtt_ms": 1.476055, + "rtt_ns": 1664708, + "rtt_ms": 1.664708, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.047132564Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:01:56.568229-08:00" }, { "operation": "add_edge", - "rtt_ns": 2040094, - "rtt_ms": 2.040094, + "rtt_ns": 1981375, + "rtt_ms": 1.981375, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.047257954Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:56.568232-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269403, - "rtt_ms": 2.269403, + "rtt_ns": 1590584, + "rtt_ms": 1.590584, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:58.047260284Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.568236-08:00" }, { "operation": "add_edge", - "rtt_ns": 2478063, - "rtt_ms": 2.478063, + "rtt_ns": 1971292, + "rtt_ms": 1.971292, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.047263634Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.568266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2601392, - "rtt_ms": 2.601392, + "rtt_ns": 1711042, + "rtt_ms": 1.711042, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.047796972Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.568467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2358362, - "rtt_ms": 2.358362, + "rtt_ns": 1733000, + "rtt_ms": 1.733, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "358", - "timestamp": "2025-11-27T01:21:58.047965091Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.569663-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176073, - "rtt_ms": 2.176073, + "rtt_ns": 1780500, + "rtt_ms": 1.7805, "checkpoint": 0, "vertex_from": "154", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.047984311Z" + "timestamp": "2025-11-27T04:01:56.569685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229373, - "rtt_ms": 2.229373, + "rtt_ns": 2479791, + "rtt_ms": 2.479791, "checkpoint": 0, - "vertex_from": "154", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.048002111Z" + "vertex_from": "155", + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:56.570726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436345, - "rtt_ms": 1.436345, + "rtt_ns": 2782875, + "rtt_ms": 2.782875, "checkpoint": 0, "vertex_from": "155", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.048702309Z" + "timestamp": "2025-11-27T04:01:56.571016-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483075, - "rtt_ms": 1.483075, + "rtt_ns": 2846417, + "rtt_ms": 2.846417, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.048742979Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.571033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845424, - "rtt_ms": 1.845424, + "rtt_ns": 2833709, + "rtt_ms": 2.833709, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.048894738Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.571041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928314, - "rtt_ms": 1.928314, + "rtt_ns": 3123667, + "rtt_ms": 3.123667, "checkpoint": 0, "vertex_from": "154", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.048928948Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.571325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705374, - "rtt_ms": 1.705374, + "rtt_ns": 2901917, + "rtt_ms": 2.901917, "checkpoint": 0, "vertex_from": "155", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:58.048968058Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:01:56.571387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170506, - "rtt_ms": 1.170506, + "rtt_ns": 3204625, + "rtt_ms": 3.204625, "checkpoint": 0, "vertex_from": "155", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.048969388Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1838284, - "rtt_ms": 1.838284, - "checkpoint": 0, - "vertex_from": "154", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.048976368Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.571472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166456, - "rtt_ms": 1.166456, + "rtt_ns": 3288333, + "rtt_ms": 3.288333, "checkpoint": 0, "vertex_from": "155", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.049132847Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:56.571525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668655, - "rtt_ms": 1.668655, + "rtt_ns": 2438291, + "rtt_ms": 2.438291, "checkpoint": 0, "vertex_from": "155", "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.049672236Z" + "timestamp": "2025-11-27T04:01:56.572102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729554, - "rtt_ms": 1.729554, + "rtt_ns": 2439375, + "rtt_ms": 2.439375, "checkpoint": 0, "vertex_from": "155", - "vertex_to": "236", - "timestamp": "2025-11-27T01:21:58.049715455Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.572125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229216, - "rtt_ms": 1.229216, + "rtt_ns": 1697834, + "rtt_ms": 1.697834, "checkpoint": 0, "vertex_from": "156", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.049973525Z" + "timestamp": "2025-11-27T04:01:56.572427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414295, - "rtt_ms": 1.414295, - "checkpoint": 0, - "vertex_from": "155", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.050118594Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1377295, - "rtt_ms": 1.377295, + "rtt_ns": 1659917, + "rtt_ms": 1.659917, "checkpoint": 0, "vertex_from": "156", "vertex_to": "934", - "timestamp": "2025-11-27T01:21:58.050347223Z" + "timestamp": "2025-11-27T04:01:56.572703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472075, - "rtt_ms": 1.472075, + "rtt_ns": 1828709, + "rtt_ms": 1.828709, "checkpoint": 0, "vertex_from": "156", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.050368143Z" + "timestamp": "2025-11-27T04:01:56.572846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260966, - "rtt_ms": 1.260966, + "rtt_ns": 1526000, + "rtt_ms": 1.526, "checkpoint": 0, "vertex_from": "156", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.050396453Z" + "timestamp": "2025-11-27T04:01:56.573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971153, - "rtt_ms": 1.971153, + "rtt_ns": 2019834, + "rtt_ms": 2.019834, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "694", - "timestamp": "2025-11-27T01:21:58.050951261Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.573055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269116, - "rtt_ms": 1.269116, + "rtt_ns": 1723833, + "rtt_ms": 1.723833, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.050988151Z" + "vertex_to": "694", + "timestamp": "2025-11-27T04:01:56.573113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2019533, - "rtt_ms": 2.019533, + "rtt_ns": 1787958, + "rtt_ms": 1.787958, "checkpoint": 0, "vertex_from": "156", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.050991491Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2062493, - "rtt_ms": 2.062493, - "checkpoint": 0, - "vertex_from": "156", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.050992491Z" + "timestamp": "2025-11-27T04:01:56.573115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465345, - "rtt_ms": 1.465345, + "rtt_ns": 1868625, + "rtt_ms": 1.868625, "checkpoint": 0, "vertex_from": "156", "vertex_to": "163", - "timestamp": "2025-11-27T01:21:58.051139111Z" + "timestamp": "2025-11-27T04:01:56.573395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218785, - "rtt_ms": 1.218785, + "rtt_ns": 1613667, + "rtt_ms": 1.613667, "checkpoint": 0, "vertex_from": "156", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.05119388Z" + "timestamp": "2025-11-27T04:01:56.573739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195176, - "rtt_ms": 1.195176, + "rtt_ns": 1327667, + "rtt_ms": 1.327667, "checkpoint": 0, "vertex_from": "156", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.05131458Z" + "timestamp": "2025-11-27T04:01:56.573755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494465, - "rtt_ms": 1.494465, + "rtt_ns": 1675542, + "rtt_ms": 1.675542, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.051864008Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.573779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532865, - "rtt_ms": 1.532865, + "rtt_ns": 1926584, + "rtt_ms": 1.926584, "checkpoint": 0, "vertex_from": "156", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.051881318Z" + "timestamp": "2025-11-27T04:01:56.574632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527685, - "rtt_ms": 1.527685, + "rtt_ns": 1828792, + "rtt_ms": 1.828792, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.051924848Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.574676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254926, - "rtt_ms": 1.254926, + "rtt_ns": 1586250, + "rtt_ms": 1.58625, "checkpoint": 0, - "vertex_from": "157", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.052396007Z" + "vertex_from": "156", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.574703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012184, - "rtt_ms": 2.012184, + "rtt_ns": 1600708, + "rtt_ms": 1.600708, "checkpoint": 0, "vertex_from": "156", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.053005525Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:56.574715-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159853, - "rtt_ms": 2.159853, + "rtt_ns": 1771334, + "rtt_ms": 1.771334, "checkpoint": 0, "vertex_from": "156", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.053114124Z" + "timestamp": "2025-11-27T04:01:56.574828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335816, - "rtt_ms": 1.335816, + "rtt_ns": 1899208, + "rtt_ms": 1.899208, + "checkpoint": 0, + "vertex_from": "156", + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.574901-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1177209, + "rtt_ms": 1.177209, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.053201404Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.574957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386736, - "rtt_ms": 1.386736, + "rtt_ns": 1581291, + "rtt_ms": 1.581291, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:58.053269764Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:56.574977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092244, - "rtt_ms": 2.092244, + "rtt_ns": 1376375, + "rtt_ms": 1.376375, "checkpoint": 0, "vertex_from": "157", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:58.053287104Z" + "timestamp": "2025-11-27T04:01:56.575132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372246, - "rtt_ms": 1.372246, + "rtt_ns": 1447666, + "rtt_ms": 1.447666, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.053298024Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:56.575188-08:00" }, { "operation": "add_edge", - "rtt_ns": 2328003, - "rtt_ms": 2.328003, + "rtt_ns": 1435083, + "rtt_ms": 1.435083, "checkpoint": 0, - "vertex_from": "157", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:58.053322304Z" + "vertex_from": "158", + "vertex_to": "825", + "timestamp": "2025-11-27T04:01:56.576337-08:00" }, { "operation": "add_edge", - "rtt_ns": 2120543, - "rtt_ms": 2.120543, + "rtt_ns": 1722292, + "rtt_ms": 1.722292, "checkpoint": 0, "vertex_from": "157", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.053437013Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.576357-08:00" }, { "operation": "add_edge", - "rtt_ns": 3157610, - "rtt_ms": 3.15761, + "rtt_ns": 1906500, + "rtt_ms": 1.9065, "checkpoint": 0, - "vertex_from": "156", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:58.054147001Z" + "vertex_from": "157", + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:56.576584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330485, - "rtt_ms": 1.330485, + "rtt_ns": 1920209, + "rtt_ms": 1.920209, "checkpoint": 0, - "vertex_from": "158", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.05433827Z" + "vertex_from": "157", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.576625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187926, - "rtt_ms": 1.187926, + "rtt_ns": 1715416, + "rtt_ms": 1.715416, "checkpoint": 0, - "vertex_from": "159", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.05447666Z" + "vertex_from": "158", + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.576673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211576, - "rtt_ms": 1.211576, + "rtt_ns": 1629166, + "rtt_ms": 1.629166, "checkpoint": 0, "vertex_from": "159", - "vertex_to": "372", - "timestamp": "2025-11-27T01:21:58.05448393Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.576764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2590611, - "rtt_ms": 2.590611, + "rtt_ns": 1597333, + "rtt_ms": 1.597333, "checkpoint": 0, - "vertex_from": "158", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.054988078Z" + "vertex_from": "160", + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:56.576786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896994, - "rtt_ms": 1.896994, + "rtt_ns": 1819000, + "rtt_ms": 1.819, "checkpoint": 0, - "vertex_from": "158", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.055099488Z" + "vertex_from": "159", + "vertex_to": "372", + "timestamp": "2025-11-27T04:01:56.576797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879324, - "rtt_ms": 1.879324, + "rtt_ns": 2089250, + "rtt_ms": 2.08925, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:58.055178588Z" + "vertex_from": "158", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.576805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2068194, - "rtt_ms": 2.068194, + "rtt_ns": 1976542, + "rtt_ms": 1.976542, "checkpoint": 0, "vertex_from": "158", - "vertex_to": "825", - "timestamp": "2025-11-27T01:21:58.055184028Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.576806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831234, - "rtt_ms": 1.831234, + "rtt_ns": 1489584, + "rtt_ms": 1.489584, "checkpoint": 0, "vertex_from": "160", "vertex_to": "542", - "timestamp": "2025-11-27T01:21:58.055270007Z" + "timestamp": "2025-11-27T04:01:56.577848-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007013, - "rtt_ms": 2.007013, + "rtt_ns": 1530958, + "rtt_ms": 1.530958, "checkpoint": 0, "vertex_from": "160", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.055330087Z" + "timestamp": "2025-11-27T04:01:56.577869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244446, - "rtt_ms": 1.244446, + "rtt_ns": 1413458, + "rtt_ms": 1.413458, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.055392547Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.578088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146027, - "rtt_ms": 1.146027, + "rtt_ns": 1435792, + "rtt_ms": 1.435792, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.055484967Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.578234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089686, - "rtt_ms": 1.089686, + "rtt_ns": 1658333, + "rtt_ms": 1.658333, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.055568106Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.578284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123786, - "rtt_ms": 1.123786, + "rtt_ns": 1691750, + "rtt_ms": 1.69175, "checkpoint": 0, "vertex_from": "160", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.055608696Z" + "timestamp": "2025-11-27T04:01:56.578457-08:00" }, { "operation": "add_edge", - "rtt_ns": 631048, - "rtt_ms": 0.631048, + "rtt_ns": 1786250, + "rtt_ms": 1.78625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.055731526Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:56.578573-08:00" }, { "operation": "add_edge", - "rtt_ns": 790568, - "rtt_ms": 0.790568, + "rtt_ns": 1778750, + "rtt_ms": 1.77875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:58.055779756Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.578585-08:00" }, { "operation": "add_edge", - "rtt_ns": 684388, - "rtt_ms": 0.684388, + "rtt_ns": 1808458, + "rtt_ms": 1.808458, "checkpoint": 0, "vertex_from": "160", "vertex_to": "617", - "timestamp": "2025-11-27T01:21:58.055869646Z" + "timestamp": "2025-11-27T04:01:56.578615-08:00" }, { "operation": "add_edge", - "rtt_ns": 937967, - "rtt_ms": 0.937967, + "rtt_ns": 2030000, + "rtt_ms": 2.03, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.056117245Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.578617-08:00" }, { "operation": "add_edge", - "rtt_ns": 860198, - "rtt_ms": 0.860198, + "rtt_ns": 1662959, + "rtt_ms": 1.662959, "checkpoint": 0, "vertex_from": "160", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.056130835Z" + "timestamp": "2025-11-27T04:01:56.579512-08:00" }, { "operation": "add_edge", - "rtt_ns": 878567, - "rtt_ms": 0.878567, + "rtt_ns": 1711334, + "rtt_ms": 1.711334, "checkpoint": 0, "vertex_from": "160", "vertex_to": "816", - "timestamp": "2025-11-27T01:21:58.056209634Z" + "timestamp": "2025-11-27T04:01:56.579581-08:00" }, { "operation": "add_edge", - "rtt_ns": 736727, - "rtt_ms": 0.736727, + "rtt_ns": 1465917, + "rtt_ms": 1.465917, "checkpoint": 0, "vertex_from": "160", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.056222424Z" + "timestamp": "2025-11-27T04:01:56.579703-08:00" }, { "operation": "add_edge", - "rtt_ns": 697638, - "rtt_ms": 0.697638, - "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:58.056266444Z" - }, - { - "operation": "add_edge", - "rtt_ns": 888407, - "rtt_ms": 0.888407, + "rtt_ns": 1827959, + "rtt_ms": 1.827959, "checkpoint": 0, "vertex_from": "160", "vertex_to": "904", - "timestamp": "2025-11-27T01:21:58.056282074Z" + "timestamp": "2025-11-27T04:01:56.579917-08:00" }, { "operation": "add_edge", - "rtt_ns": 826368, - "rtt_ms": 0.826368, + "rtt_ns": 1461917, + "rtt_ms": 1.461917, "checkpoint": 0, "vertex_from": "160", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.056435914Z" + "timestamp": "2025-11-27T04:01:56.57992-08:00" }, { "operation": "add_edge", - "rtt_ns": 689758, - "rtt_ms": 0.689758, + "rtt_ns": 1664750, + "rtt_ms": 1.66475, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:58.056470324Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:56.579951-08:00" }, { "operation": "add_edge", - "rtt_ns": 769627, - "rtt_ms": 0.769627, + "rtt_ns": 1418708, + "rtt_ms": 1.418708, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "163", - "timestamp": "2025-11-27T01:21:58.056501883Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.580037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005816, - "rtt_ms": 1.005816, + "rtt_ns": 1489959, + "rtt_ms": 1.489959, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.057137591Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:56.580077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294076, - "rtt_ms": 1.294076, + "rtt_ns": 1485917, + "rtt_ms": 1.485917, "checkpoint": 0, "vertex_from": "160", "vertex_to": "706", - "timestamp": "2025-11-27T01:21:58.057164841Z" + "timestamp": "2025-11-27T04:01:56.580102-08:00" }, { "operation": "add_edge", - "rtt_ns": 957227, - "rtt_ms": 0.957227, + "rtt_ns": 1535166, + "rtt_ms": 1.535166, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.057168161Z" + "vertex_to": "163", + "timestamp": "2025-11-27T04:01:56.58011-08:00" }, { "operation": "add_edge", - "rtt_ns": 948947, - "rtt_ms": 0.948947, + "rtt_ns": 1665083, + "rtt_ms": 1.665083, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.057172331Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.581179-08:00" }, { "operation": "add_edge", - "rtt_ns": 947067, - "rtt_ms": 0.947067, + "rtt_ns": 1600042, + "rtt_ms": 1.600042, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.057230301Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.581183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124186, - "rtt_ms": 1.124186, + "rtt_ns": 1759125, + "rtt_ms": 1.759125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.057242261Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.581463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107507, - "rtt_ms": 1.107507, + "rtt_ns": 1569333, + "rtt_ms": 1.569333, "checkpoint": 0, "vertex_from": "160", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.057374661Z" + "timestamp": "2025-11-27T04:01:56.581487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528525, - "rtt_ms": 1.528525, + "rtt_ns": 1465250, + "rtt_ms": 1.46525, "checkpoint": 0, "vertex_from": "160", "vertex_to": "165", - "timestamp": "2025-11-27T01:21:58.057999559Z" + "timestamp": "2025-11-27T04:01:56.581504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513176, - "rtt_ms": 1.513176, + "rtt_ns": 1678208, + "rtt_ms": 1.678208, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.058015729Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.5816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808384, - "rtt_ms": 1.808384, + "rtt_ns": 1856000, + "rtt_ms": 1.856, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:58.058245278Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.581967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184887, - "rtt_ms": 1.184887, + "rtt_ns": 1883583, + "rtt_ms": 1.883583, "checkpoint": 0, "vertex_from": "160", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.058323658Z" + "timestamp": "2025-11-27T04:01:56.581987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455636, - "rtt_ms": 1.455636, + "rtt_ns": 2039375, + "rtt_ms": 2.039375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.058625067Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:56.581992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473366, - "rtt_ms": 1.473366, + "rtt_ns": 1925042, + "rtt_ms": 1.925042, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "794", - "timestamp": "2025-11-27T01:21:58.058648837Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.582004-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099503, - "rtt_ms": 2.099503, + "rtt_ns": 1653542, + "rtt_ms": 1.653542, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:58.059475764Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:01:56.582838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481085, - "rtt_ms": 1.481085, + "rtt_ns": 1704958, + "rtt_ms": 1.704958, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "817", - "timestamp": "2025-11-27T01:21:58.059481694Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.582887-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275933, - "rtt_ms": 2.275933, + "rtt_ns": 1659667, + "rtt_ms": 1.659667, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:58.059507454Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:56.583165-08:00" }, { "operation": "add_edge", - "rtt_ns": 2278763, - "rtt_ms": 2.278763, + "rtt_ns": 1735542, + "rtt_ms": 1.735542, "checkpoint": 0, "vertex_from": "160", "vertex_to": "216", - "timestamp": "2025-11-27T01:21:58.059522194Z" + "timestamp": "2025-11-27T04:01:56.583224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2390393, - "rtt_ms": 2.390393, + "rtt_ns": 1717917, + "rtt_ms": 1.717917, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.059556474Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:01:56.58332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257636, - "rtt_ms": 1.257636, + "rtt_ns": 1936167, + "rtt_ms": 1.936167, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:58.059582394Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:56.5834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927884, - "rtt_ms": 1.927884, + "rtt_ns": 1413250, + "rtt_ms": 1.41325, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:58.060173982Z" + "vertex_to": "915", + "timestamp": "2025-11-27T04:01:56.583418-08:00" }, { "operation": "add_edge", - "rtt_ns": 2182163, - "rtt_ms": 2.182163, + "rtt_ns": 1577667, + "rtt_ms": 1.577667, "checkpoint": 0, "vertex_from": "160", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.060198942Z" + "timestamp": "2025-11-27T04:01:56.583546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717944, - "rtt_ms": 1.717944, + "rtt_ns": 1626750, + "rtt_ms": 1.62675, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "915", - "timestamp": "2025-11-27T01:21:58.060344131Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:56.583614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730264, - "rtt_ms": 1.730264, + "rtt_ns": 1646667, + "rtt_ms": 1.646667, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.060379851Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:56.58364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052916, - "rtt_ms": 1.052916, + "rtt_ns": 1659667, + "rtt_ms": 1.659667, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.0606361Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:56.584499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286766, - "rtt_ms": 1.286766, + "rtt_ns": 1558167, + "rtt_ms": 1.558167, "checkpoint": 0, "vertex_from": "160", "vertex_to": "232", - "timestamp": "2025-11-27T01:21:58.060799Z" + "timestamp": "2025-11-27T04:01:56.584784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338326, - "rtt_ms": 1.338326, + "rtt_ns": 1918208, + "rtt_ms": 1.918208, "checkpoint": 0, "vertex_from": "160", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.06081532Z" + "timestamp": "2025-11-27T04:01:56.584806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431525, - "rtt_ms": 1.431525, + "rtt_ns": 1706291, + "rtt_ms": 1.706291, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "746", - "timestamp": "2025-11-27T01:21:58.060955849Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.584872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494015, - "rtt_ms": 1.494015, + "rtt_ns": 1470875, + "rtt_ms": 1.470875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.060976449Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.58489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476325, - "rtt_ms": 1.476325, + "rtt_ns": 1502417, + "rtt_ms": 1.502417, "checkpoint": 0, "vertex_from": "160", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.061034009Z" + "timestamp": "2025-11-27T04:01:56.584903-08:00" }, { "operation": "add_edge", - "rtt_ns": 878147, - "rtt_ms": 0.878147, + "rtt_ns": 1787875, + "rtt_ms": 1.787875, + "checkpoint": 0, + "vertex_from": "160", + "vertex_to": "746", + "timestamp": "2025-11-27T04:01:56.58511-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1641500, + "rtt_ms": 1.6415, "checkpoint": 0, "vertex_from": "160", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.061053119Z" + "timestamp": "2025-11-27T04:01:56.585189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284245, - "rtt_ms": 1.284245, + "rtt_ns": 1619750, + "rtt_ms": 1.61975, "checkpoint": 0, "vertex_from": "160", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.061484937Z" + "timestamp": "2025-11-27T04:01:56.585236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217136, - "rtt_ms": 1.217136, + "rtt_ns": 1613459, + "rtt_ms": 1.613459, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.061597827Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:56.585255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478825, - "rtt_ms": 1.478825, + "rtt_ns": 1696417, + "rtt_ms": 1.696417, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.061824136Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.586196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254456, - "rtt_ms": 1.254456, + "rtt_ns": 1559916, + "rtt_ms": 1.559916, "checkpoint": 0, "vertex_from": "160", "vertex_to": "387", - "timestamp": "2025-11-27T01:21:58.061891566Z" + "timestamp": "2025-11-27T04:01:56.586345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096476, - "rtt_ms": 1.096476, + "rtt_ns": 1556375, + "rtt_ms": 1.556375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:58.061914566Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:56.586364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218826, - "rtt_ms": 1.218826, + "rtt_ns": 1879625, + "rtt_ms": 1.879625, "checkpoint": 0, "vertex_from": "160", "vertex_to": "190", - "timestamp": "2025-11-27T01:21:58.062176005Z" + "timestamp": "2025-11-27T04:01:56.586771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676084, - "rtt_ms": 1.676084, + "rtt_ns": 1888042, + "rtt_ms": 1.888042, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:58.062475874Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:56.586792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635635, - "rtt_ms": 1.635635, + "rtt_ns": 1567250, + "rtt_ms": 1.56725, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "841", - "timestamp": "2025-11-27T01:21:58.062613464Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:01:56.586805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607274, - "rtt_ms": 1.607274, + "rtt_ns": 1975917, + "rtt_ms": 1.975917, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.062661143Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:56.586849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645444, - "rtt_ms": 1.645444, + "rtt_ns": 1888417, + "rtt_ms": 1.888417, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.062681393Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.587078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322636, - "rtt_ms": 1.322636, + "rtt_ns": 1982166, + "rtt_ms": 1.982166, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.063148392Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.587095-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129243, - "rtt_ms": 2.129243, + "rtt_ns": 1853250, + "rtt_ms": 1.85325, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "590", - "timestamp": "2025-11-27T01:21:58.0636183Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.58711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737824, - "rtt_ms": 1.737824, + "rtt_ns": 1335792, + "rtt_ms": 1.335792, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "412", - "timestamp": "2025-11-27T01:21:58.06365428Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.587682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505005, - "rtt_ms": 1.505005, + "rtt_ns": 1337625, + "rtt_ms": 1.337625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.06368506Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:56.587702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087676, - "rtt_ms": 1.087676, + "rtt_ns": 1765542, + "rtt_ms": 1.765542, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "793", - "timestamp": "2025-11-27T01:21:58.06370447Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.587964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060057, - "rtt_ms": 1.060057, + "rtt_ns": 1868542, + "rtt_ms": 1.868542, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:58.06372322Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:01:56.588661-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124153, - "rtt_ms": 2.124153, + "rtt_ns": 1585750, + "rtt_ms": 1.58575, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.06372469Z" + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:56.588681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045827, - "rtt_ms": 1.045827, + "rtt_ns": 2133584, + "rtt_ms": 2.133584, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.06373089Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:56.588984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912324, - "rtt_ms": 1.912324, + "rtt_ns": 2202416, + "rtt_ms": 2.202416, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.06380466Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:56.590168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490705, - "rtt_ms": 1.490705, + "rtt_ns": 2517458, + "rtt_ms": 2.517458, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "805", - "timestamp": "2025-11-27T01:21:58.063968129Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:56.5902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487895, - "rtt_ms": 1.487895, + "rtt_ns": 3445875, + "rtt_ms": 3.445875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.065107985Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.590218-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141233, - "rtt_ms": 2.141233, + "rtt_ns": 2520416, + "rtt_ms": 2.520416, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:58.065292075Z" + "vertex_to": "574", + "timestamp": "2025-11-27T04:01:56.590224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788964, - "rtt_ms": 1.788964, + "rtt_ns": 3157792, + "rtt_ms": 3.157792, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:58.065445674Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.590237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796724, - "rtt_ms": 1.796724, + "rtt_ns": 3159000, + "rtt_ms": 3.159, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "574", - "timestamp": "2025-11-27T01:21:58.065483694Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.59027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891264, - "rtt_ms": 1.891264, + "rtt_ns": 1303500, + "rtt_ms": 1.3035, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:58.065597154Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.590289-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101423, - "rtt_ms": 2.101423, + "rtt_ns": 3484500, + "rtt_ms": 3.4845, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.065907753Z" + "vertex_to": "793", + "timestamp": "2025-11-27T04:01:56.590292-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199263, - "rtt_ms": 2.199263, + "rtt_ns": 2176000, + "rtt_ms": 2.176, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.065931763Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:56.590839-08:00" }, { "operation": "add_edge", - "rtt_ns": 3122940, - "rtt_ms": 3.12294, + "rtt_ns": 2715250, + "rtt_ms": 2.71525, "checkpoint": 0, "vertex_from": "160", "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.06684975Z" + "timestamp": "2025-11-27T04:01:56.591397-08:00" }, { "operation": "add_edge", - "rtt_ns": 3136630, - "rtt_ms": 3.13663, + "rtt_ns": 1648250, + "rtt_ms": 1.64825, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:58.0668629Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.591867-08:00" }, { "operation": "add_edge", - "rtt_ns": 2909661, - "rtt_ms": 2.909661, + "rtt_ns": 1688000, + "rtt_ms": 1.688, "checkpoint": 0, "vertex_from": "160", "vertex_to": "897", - "timestamp": "2025-11-27T01:21:58.06688218Z" + "timestamp": "2025-11-27T04:01:56.591889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817545, - "rtt_ms": 1.817545, + "rtt_ns": 1632875, + "rtt_ms": 1.632875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.06692858Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.591904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743334, - "rtt_ms": 1.743334, + "rtt_ns": 1747833, + "rtt_ms": 1.747833, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:58.067037079Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.592042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575345, - "rtt_ms": 1.575345, + "rtt_ns": 1790000, + "rtt_ms": 1.79, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.067060089Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.59208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655665, - "rtt_ms": 1.655665, + "rtt_ns": 1999666, + "rtt_ms": 1.999666, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:58.067103979Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:56.592226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573755, - "rtt_ms": 1.573755, + "rtt_ns": 1555417, + "rtt_ms": 1.555417, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.067172009Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:56.592396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256116, - "rtt_ms": 1.256116, + "rtt_ns": 2167083, + "rtt_ms": 2.167083, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:58.067189269Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:56.592405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340076, - "rtt_ms": 1.340076, + "rtt_ns": 2234625, + "rtt_ms": 2.234625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.067248789Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.592405-08:00" }, { "operation": "add_edge", - "rtt_ns": 565858, - "rtt_ms": 0.565858, + "rtt_ns": 1774333, + "rtt_ms": 1.774333, "checkpoint": 0, "vertex_from": "160", "vertex_to": "537", - "timestamp": "2025-11-27T01:21:58.067418768Z" + "timestamp": "2025-11-27T04:01:56.593173-08:00" }, { "operation": "add_edge", - "rtt_ns": 678298, - "rtt_ms": 0.678298, + "rtt_ns": 1274584, + "rtt_ms": 1.274584, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.067562578Z" + "vertex_to": "195", + "timestamp": "2025-11-27T04:01:56.593356-08:00" }, { "operation": "add_edge", - "rtt_ns": 663488, - "rtt_ms": 0.663488, + "rtt_ns": 1463125, + "rtt_ms": 1.463125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:58.067592868Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:56.593507-08:00" }, { "operation": "add_edge", - "rtt_ns": 754238, - "rtt_ms": 0.754238, + "rtt_ns": 1757625, + "rtt_ms": 1.757625, "checkpoint": 0, "vertex_from": "160", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.067619608Z" + "timestamp": "2025-11-27T04:01:56.593626-08:00" }, { "operation": "add_edge", - "rtt_ns": 736398, - "rtt_ms": 0.736398, + "rtt_ns": 1458458, + "rtt_ms": 1.458458, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "195", - "timestamp": "2025-11-27T01:21:58.067797117Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.593686-08:00" }, { "operation": "add_edge", - "rtt_ns": 785168, - "rtt_ms": 0.785168, + "rtt_ns": 1346291, + "rtt_ms": 1.346291, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:58.067823567Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.593752-08:00" }, { "operation": "add_edge", - "rtt_ns": 759558, - "rtt_ms": 0.759558, + "rtt_ns": 1873917, + "rtt_ms": 1.873917, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.067865217Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.593764-08:00" }, { "operation": "add_edge", - "rtt_ns": 683138, - "rtt_ms": 0.683138, + "rtt_ns": 1570625, + "rtt_ms": 1.570625, "checkpoint": 0, "vertex_from": "160", "vertex_to": "657", - "timestamp": "2025-11-27T01:21:58.067933157Z" + "timestamp": "2025-11-27T04:01:56.593977-08:00" }, { "operation": "add_edge", - "rtt_ns": 775387, - "rtt_ms": 0.775387, + "rtt_ns": 2103250, + "rtt_ms": 2.10325, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "744", - "timestamp": "2025-11-27T01:21:58.067949046Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:56.59401-08:00" }, { "operation": "add_edge", - "rtt_ns": 761257, - "rtt_ms": 0.761257, + "rtt_ns": 1701291, + "rtt_ms": 1.701291, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.067951516Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:01:56.594098-08:00" }, { "operation": "add_edge", - "rtt_ns": 708898, - "rtt_ms": 0.708898, + "rtt_ns": 1553417, + "rtt_ms": 1.553417, "checkpoint": 0, "vertex_from": "160", "vertex_to": "401", - "timestamp": "2025-11-27T01:21:58.068129496Z" + "timestamp": "2025-11-27T04:01:56.594729-08:00" }, { "operation": "add_edge", - "rtt_ns": 871987, - "rtt_ms": 0.871987, + "rtt_ns": 1440625, + "rtt_ms": 1.440625, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:58.068697324Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.594798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142486, - "rtt_ms": 1.142486, + "rtt_ns": 1619708, + "rtt_ms": 1.619708, "checkpoint": 0, "vertex_from": "160", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.068736414Z" + "timestamp": "2025-11-27T04:01:56.595129-08:00" }, { "operation": "add_edge", - "rtt_ns": 868858, - "rtt_ms": 0.868858, + "rtt_ns": 1519500, + "rtt_ms": 1.5195, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:58.068821514Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:56.595146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036977, - "rtt_ms": 1.036977, + "rtt_ns": 1413667, + "rtt_ms": 1.413667, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.068835194Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:56.595166-08:00" }, { "operation": "add_edge", - "rtt_ns": 892598, - "rtt_ms": 0.892598, + "rtt_ns": 1360250, + "rtt_ms": 1.36025, + "checkpoint": 0, + "vertex_from": "160", + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:56.595339-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1344542, + "rtt_ms": 1.344542, "checkpoint": 0, "vertex_from": "160", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.068842604Z" + "timestamp": "2025-11-27T04:01:56.595357-08:00" }, { "operation": "add_vertex", - "rtt_ns": 986637, - "rtt_ms": 0.986637, + "rtt_ns": 1608375, + "rtt_ms": 1.608375, "checkpoint": 0, "vertex_from": "303", - "timestamp": "2025-11-27T01:21:58.068853654Z" + "timestamp": "2025-11-27T04:01:56.595374-08:00" }, { "operation": "add_edge", - "rtt_ns": 924397, - "rtt_ms": 0.924397, + "rtt_ns": 1710875, + "rtt_ms": 1.710875, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.068859004Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.595398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242416, - "rtt_ms": 1.242416, + "rtt_ns": 1307375, + "rtt_ms": 1.307375, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:58.068863204Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:56.595407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362485, - "rtt_ms": 1.362485, + "rtt_ns": 1390750, + "rtt_ms": 1.39075, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.068926613Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.596521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647915, - "rtt_ms": 1.647915, + "rtt_ns": 1392000, + "rtt_ms": 1.392, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "164", - "timestamp": "2025-11-27T01:21:58.069778601Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:56.596539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272876, - "rtt_ms": 1.272876, + "rtt_ns": 1761292, + "rtt_ms": 1.761292, "checkpoint": 0, "vertex_from": "160", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.06997299Z" + "timestamp": "2025-11-27T04:01:56.59656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321785, - "rtt_ms": 1.321785, + "rtt_ns": 1431750, + "rtt_ms": 1.43175, "checkpoint": 0, "vertex_from": "160", "vertex_to": "660", - "timestamp": "2025-11-27T01:21:58.070162649Z" + "timestamp": "2025-11-27T04:01:56.596599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362075, - "rtt_ms": 1.362075, + "rtt_ns": 1416291, + "rtt_ms": 1.416291, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:58.070184789Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.596815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523995, - "rtt_ms": 1.523995, + "rtt_ns": 1495041, + "rtt_ms": 1.495041, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.070389469Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.596834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704085, - "rtt_ms": 1.704085, + "rtt_ns": 1476667, + "rtt_ms": 1.476667, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.070441629Z" + "vertex_to": "303", + "timestamp": "2025-11-27T04:01:56.596851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620894, - "rtt_ms": 1.620894, + "rtt_ns": 2137959, + "rtt_ms": 2.137959, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.070464778Z" + "vertex_to": "164", + "timestamp": "2025-11-27T04:01:56.596869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621704, - "rtt_ms": 1.621704, + "rtt_ns": 1511375, + "rtt_ms": 1.511375, "checkpoint": 0, "vertex_from": "160", "vertex_to": "680", - "timestamp": "2025-11-27T01:21:58.070483668Z" + "timestamp": "2025-11-27T04:01:56.596869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656424, - "rtt_ms": 1.656424, + "rtt_ns": 1597500, + "rtt_ms": 1.5975, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "303", - "timestamp": "2025-11-27T01:21:58.070510558Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:56.597006-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1384750, + "rtt_ms": 1.38475, + "checkpoint": 0, + "vertex_from": "508", + "timestamp": "2025-11-27T04:01:56.597987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038327, - "rtt_ms": 1.038327, + "rtt_ns": 1428334, + "rtt_ms": 1.428334, "checkpoint": 0, "vertex_from": "160", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.071202086Z" + "timestamp": "2025-11-27T04:01:56.597989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232656, - "rtt_ms": 1.232656, + "rtt_ns": 1466584, + "rtt_ms": 1.466584, "checkpoint": 0, "vertex_from": "160", "vertex_to": "420", - "timestamp": "2025-11-27T01:21:58.071207396Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1450825, - "rtt_ms": 1.450825, - "checkpoint": 0, - "vertex_from": "727", - "timestamp": "2025-11-27T01:21:58.071234016Z" + "timestamp": "2025-11-27T04:01:56.598006-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337053, - "rtt_ms": 2.337053, + "rtt_ns": 1354000, + "rtt_ms": 1.354, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.071266546Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.598225-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1221426, - "rtt_ms": 1.221426, + "rtt_ns": 1721959, + "rtt_ms": 1.721959, "checkpoint": 0, - "vertex_from": "508", - "timestamp": "2025-11-27T01:21:58.071416485Z" + "vertex_from": "727", + "timestamp": "2025-11-27T04:01:56.598244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726304, - "rtt_ms": 1.726304, + "rtt_ns": 1262792, + "rtt_ms": 1.262792, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:58.072118643Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:56.598271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652445, - "rtt_ms": 1.652445, + "rtt_ns": 1433833, + "rtt_ms": 1.433833, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.072137083Z" + "vertex_to": "309", + "timestamp": "2025-11-27T04:01:56.598285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694855, - "rtt_ms": 1.694855, + "rtt_ns": 1539084, + "rtt_ms": 1.539084, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "309", - "timestamp": "2025-11-27T01:21:58.072160953Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:56.598374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653315, - "rtt_ms": 1.653315, + "rtt_ns": 1537917, + "rtt_ms": 1.537917, "checkpoint": 0, "vertex_from": "160", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.072165023Z" + "timestamp": "2025-11-27T04:01:56.598409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775174, - "rtt_ms": 1.775174, + "rtt_ns": 1743250, + "rtt_ms": 1.74325, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "334", - "timestamp": "2025-11-27T01:21:58.072218113Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:56.598559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1260716, - "rtt_ms": 1.260716, + "rtt_ns": 1349500, + "rtt_ms": 1.3495, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.072465372Z" + "vertex_to": "508", + "timestamp": "2025-11-27T04:01:56.599337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844824, - "rtt_ms": 1.844824, + "rtt_ns": 1345792, + "rtt_ms": 1.345792, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "727", - "timestamp": "2025-11-27T01:21:58.0730794Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:01:56.599353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917614, - "rtt_ms": 1.917614, + "rtt_ns": 1506125, + "rtt_ms": 1.506125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.0731268Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.599732-08:00" }, { "operation": "add_edge", - "rtt_ns": 985277, - "rtt_ms": 0.985277, + "rtt_ns": 1783417, + "rtt_ms": 1.783417, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.07315201Z" - }, - { - "operation": "add_edge", - "rtt_ns": 956207, - "rtt_ms": 0.956207, - "checkpoint": 0, - "vertex_from": "161", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:58.07317686Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.599775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199386, - "rtt_ms": 1.199386, + "rtt_ns": 1534500, + "rtt_ms": 1.5345, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.073361919Z" + "vertex_to": "727", + "timestamp": "2025-11-27T04:01:56.599779-08:00" }, { "operation": "add_edge", - "rtt_ns": 2488943, - "rtt_ms": 2.488943, + "rtt_ns": 1620125, + "rtt_ms": 1.620125, "checkpoint": 0, "vertex_from": "160", - "vertex_to": "508", - "timestamp": "2025-11-27T01:21:58.073906028Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.599995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2699811, - "rtt_ms": 2.699811, + "rtt_ns": 1615417, + "rtt_ms": 1.615417, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "598", - "timestamp": "2025-11-27T01:21:58.073969037Z" + "vertex_from": "161", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:56.600025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851434, - "rtt_ms": 1.851434, + "rtt_ns": 1484042, + "rtt_ms": 1.484042, "checkpoint": 0, - "vertex_from": "160", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.073973437Z" + "vertex_from": "161", + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.600044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850124, - "rtt_ms": 1.850124, + "rtt_ns": 1784333, + "rtt_ms": 1.784333, "checkpoint": 0, "vertex_from": "160", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.073989117Z" + "timestamp": "2025-11-27T04:01:56.600056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550805, - "rtt_ms": 1.550805, + "rtt_ns": 1802750, + "rtt_ms": 1.80275, "checkpoint": 0, - "vertex_from": "161", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.074017657Z" + "vertex_from": "160", + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.600089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745744, - "rtt_ms": 1.745744, + "rtt_ns": 1027667, + "rtt_ms": 1.027667, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "229", - "timestamp": "2025-11-27T01:21:58.074924334Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.600365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577435, - "rtt_ms": 1.577435, + "rtt_ns": 1345333, + "rtt_ms": 1.345333, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.074941304Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.6007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842244, - "rtt_ms": 1.842244, + "rtt_ns": 1349125, + "rtt_ms": 1.349125, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.074971994Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.601084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930394, - "rtt_ms": 1.930394, + "rtt_ns": 1419625, + "rtt_ms": 1.419625, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.075012014Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:56.601199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877604, - "rtt_ms": 1.877604, + "rtt_ns": 1229291, + "rtt_ms": 1.229291, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.075032534Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.601255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065937, - "rtt_ms": 1.065937, + "rtt_ns": 1389000, + "rtt_ms": 1.389, "checkpoint": 0, "vertex_from": "161", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.075056954Z" + "timestamp": "2025-11-27T04:01:56.601446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652684, - "rtt_ms": 1.652684, + "rtt_ns": 1467292, + "rtt_ms": 1.467292, "checkpoint": 0, "vertex_from": "161", "vertex_to": "224", - "timestamp": "2025-11-27T01:21:58.075560772Z" + "timestamp": "2025-11-27T04:01:56.601465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663915, - "rtt_ms": 1.663915, + "rtt_ns": 1440750, + "rtt_ms": 1.44075, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:58.075683032Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:56.601486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752865, - "rtt_ms": 1.752865, + "rtt_ns": 1724875, + "rtt_ms": 1.724875, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.075723032Z" + "vertex_to": "229", + "timestamp": "2025-11-27T04:01:56.601501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785925, - "rtt_ms": 1.785925, + "rtt_ns": 1411417, + "rtt_ms": 1.411417, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.075761032Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:56.601502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314406, - "rtt_ms": 1.314406, + "rtt_ns": 1382417, + "rtt_ms": 1.382417, "checkpoint": 0, "vertex_from": "161", "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.07624077Z" + "timestamp": "2025-11-27T04:01:56.601749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385706, - "rtt_ms": 1.385706, + "rtt_ns": 1359166, + "rtt_ms": 1.359166, "checkpoint": 0, "vertex_from": "161", "vertex_to": "329", - "timestamp": "2025-11-27T01:21:58.07632916Z" + "timestamp": "2025-11-27T04:01:56.602061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300826, - "rtt_ms": 1.300826, + "rtt_ns": 1529375, + "rtt_ms": 1.529375, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.07635897Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:01:56.602615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290796, - "rtt_ms": 1.290796, + "rtt_ns": 1164583, + "rtt_ms": 1.164583, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "666", - "timestamp": "2025-11-27T01:21:58.076852698Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.602667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913414, - "rtt_ms": 1.913414, + "rtt_ns": 1450959, + "rtt_ms": 1.450959, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:58.076926858Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.602707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906204, - "rtt_ms": 1.906204, + "rtt_ns": 1378750, + "rtt_ms": 1.37875, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.076940468Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:01:56.602844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018154, - "rtt_ms": 2.018154, + "rtt_ns": 1663542, + "rtt_ms": 1.663542, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "812", - "timestamp": "2025-11-27T01:21:58.076991828Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:56.602863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288765, - "rtt_ms": 1.288765, + "rtt_ns": 1378000, + "rtt_ms": 1.378, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.077012757Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.60288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321895, - "rtt_ms": 1.321895, + "rtt_ns": 1216708, + "rtt_ms": 1.216708, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.077084357Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.602966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465275, - "rtt_ms": 1.465275, + "rtt_ns": 1519875, + "rtt_ms": 1.519875, "checkpoint": 0, "vertex_from": "161", "vertex_to": "867", - "timestamp": "2025-11-27T01:21:58.077149537Z" + "timestamp": "2025-11-27T04:01:56.603007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412975, - "rtt_ms": 1.412975, + "rtt_ns": 1614084, + "rtt_ms": 1.614084, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.077743215Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.603061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497885, - "rtt_ms": 1.497885, + "rtt_ns": 1132000, + "rtt_ms": 1.132, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.077858305Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.603194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652465, - "rtt_ms": 1.652465, + "rtt_ns": 1395875, + "rtt_ms": 1.395875, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.077893865Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:56.604063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041597, - "rtt_ms": 1.041597, + "rtt_ns": 1369334, + "rtt_ms": 1.369334, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.077895725Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.604079-08:00" }, { "operation": "add_edge", - "rtt_ns": 898927, - "rtt_ms": 0.898927, + "rtt_ns": 1447000, + "rtt_ms": 1.447, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "496", - "timestamp": "2025-11-27T01:21:58.077913404Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:01:56.604292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281045, - "rtt_ms": 1.281045, + "rtt_ns": 1426417, + "rtt_ms": 1.426417, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.078273893Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:01:56.604307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401035, - "rtt_ms": 1.401035, + "rtt_ns": 1706125, + "rtt_ms": 1.706125, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.078329163Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.604322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252166, - "rtt_ms": 1.252166, + "rtt_ns": 1330834, + "rtt_ms": 1.330834, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:58.078340603Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:01:56.60434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491845, - "rtt_ms": 1.491845, + "rtt_ns": 1415167, + "rtt_ms": 1.415167, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "311", - "timestamp": "2025-11-27T01:21:58.078433573Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:56.604382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356545, - "rtt_ms": 1.356545, + "rtt_ns": 2420208, + "rtt_ms": 2.420208, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "481", - "timestamp": "2025-11-27T01:21:58.078507442Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.605284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169116, - "rtt_ms": 1.169116, + "rtt_ns": 2111375, + "rtt_ms": 2.111375, "checkpoint": 0, "vertex_from": "161", "vertex_to": "928", - "timestamp": "2025-11-27T01:21:58.079029051Z" + "timestamp": "2025-11-27T04:01:56.605306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239755, - "rtt_ms": 1.239755, + "rtt_ns": 2258375, + "rtt_ms": 2.258375, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "271", - "timestamp": "2025-11-27T01:21:58.07913512Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.605321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242886, - "rtt_ms": 1.242886, + "rtt_ns": 1868125, + "rtt_ms": 1.868125, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.07915744Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:56.606176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437975, - "rtt_ms": 1.437975, + "rtt_ns": 2118583, + "rtt_ms": 2.118583, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.07918236Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.606198-08:00" }, { "operation": "add_edge", - "rtt_ns": 919367, - "rtt_ms": 0.919367, + "rtt_ns": 1892000, + "rtt_ms": 1.892, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:58.07919494Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:01:56.606214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306545, - "rtt_ms": 1.306545, + "rtt_ns": 2031750, + "rtt_ms": 2.03175, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.07920352Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:56.606372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482855, - "rtt_ms": 1.482855, + "rtt_ns": 2008333, + "rtt_ms": 2.008333, "checkpoint": 0, "vertex_from": "161", - "vertex_to": "302", - "timestamp": "2025-11-27T01:21:58.079813588Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:56.606391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801874, - "rtt_ms": 1.801874, + "rtt_ns": 1081042, + "rtt_ms": 1.081042, "checkpoint": 0, - "vertex_from": "161", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:58.080236607Z" + "vertex_from": "162", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.606403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757665, - "rtt_ms": 1.757665, + "rtt_ns": 1122791, + "rtt_ms": 1.122791, "checkpoint": 0, "vertex_from": "162", "vertex_to": "176", - "timestamp": "2025-11-27T01:21:58.080266357Z" + "timestamp": "2025-11-27T04:01:56.606408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178776, - "rtt_ms": 1.178776, + "rtt_ns": 2344125, + "rtt_ms": 2.344125, "checkpoint": 0, - "vertex_from": "162", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:58.080361886Z" + "vertex_from": "161", + "vertex_to": "271", + "timestamp": "2025-11-27T04:01:56.606408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340795, - "rtt_ms": 1.340795, + "rtt_ns": 2197417, + "rtt_ms": 2.197417, + "checkpoint": 0, + "vertex_from": "161", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.60649-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1264375, + "rtt_ms": 1.264375, "checkpoint": 0, "vertex_from": "162", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.080370816Z" + "timestamp": "2025-11-27T04:01:56.606571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275356, - "rtt_ms": 1.275356, + "rtt_ns": 1315834, + "rtt_ms": 1.315834, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.080411326Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:56.607515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086533, - "rtt_ms": 2.086533, + "rtt_ns": 1209916, + "rtt_ms": 1.209916, "checkpoint": 0, - "vertex_from": "161", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:58.080429136Z" + "vertex_from": "162", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.607614-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274276, - "rtt_ms": 1.274276, + "rtt_ns": 1344125, + "rtt_ms": 1.344125, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.080432666Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.607736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237176, - "rtt_ms": 1.237176, + "rtt_ns": 1344083, + "rtt_ms": 1.344083, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.080441746Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:01:56.607753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251936, - "rtt_ms": 1.251936, + "rtt_ns": 1594542, + "rtt_ms": 1.594542, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:58.080449616Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.607772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341586, - "rtt_ms": 1.341586, + "rtt_ns": 1560208, + "rtt_ms": 1.560208, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.081156224Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:56.607776-08:00" }, { "operation": "add_edge", - "rtt_ns": 945507, - "rtt_ms": 0.945507, + "rtt_ns": 1245041, + "rtt_ms": 1.245041, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.081182624Z" + "vertex_to": "985", + "timestamp": "2025-11-27T04:01:56.607816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388536, - "rtt_ms": 1.388536, + "rtt_ns": 1533208, + "rtt_ms": 1.533208, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "985", - "timestamp": "2025-11-27T01:21:58.081800852Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.607906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574715, - "rtt_ms": 1.574715, + "rtt_ns": 1439000, + "rtt_ms": 1.439, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:58.081843422Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:56.60793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442156, - "rtt_ms": 1.442156, + "rtt_ns": 1558666, + "rtt_ms": 1.558666, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:58.081875932Z" + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:56.607968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436286, - "rtt_ms": 1.436286, + "rtt_ns": 1177250, + "rtt_ms": 1.17725, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:58.081879842Z" + "vertex_to": "196", + "timestamp": "2025-11-27T04:01:56.608954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532085, - "rtt_ms": 1.532085, + "rtt_ns": 1298958, + "rtt_ms": 1.298958, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "433", - "timestamp": "2025-11-27T01:21:58.081896111Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:56.609037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468115, - "rtt_ms": 1.468115, + "rtt_ns": 1617125, + "rtt_ms": 1.617125, "checkpoint": 0, "vertex_from": "162", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.081900711Z" + "timestamp": "2025-11-27T04:01:56.609133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535425, - "rtt_ms": 1.535425, + "rtt_ns": 1608167, + "rtt_ms": 1.608167, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:58.081907851Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:56.609225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474005, - "rtt_ms": 1.474005, + "rtt_ns": 1534500, + "rtt_ms": 1.5345, "checkpoint": 0, "vertex_from": "162", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.081924291Z" + "timestamp": "2025-11-27T04:01:56.609288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755494, - "rtt_ms": 1.755494, + "rtt_ns": 1486500, + "rtt_ms": 1.4865, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "196", - "timestamp": "2025-11-27T01:21:58.082939128Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:01:56.609304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2262583, - "rtt_ms": 2.262583, + "rtt_ns": 1574083, + "rtt_ms": 1.574083, "checkpoint": 0, "vertex_from": "162", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.083420687Z" + "timestamp": "2025-11-27T04:01:56.609347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668485, - "rtt_ms": 1.668485, + "rtt_ns": 1553000, + "rtt_ms": 1.553, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "914", - "timestamp": "2025-11-27T01:21:58.083470327Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.609522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672554, - "rtt_ms": 1.672554, + "rtt_ns": 1622834, + "rtt_ms": 1.622834, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.083517276Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:56.609554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667584, - "rtt_ms": 1.667584, + "rtt_ns": 1654750, + "rtt_ms": 1.65475, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:58.083544176Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.609562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642765, - "rtt_ms": 1.642765, + "rtt_ns": 1162833, + "rtt_ms": 1.162833, "checkpoint": 0, "vertex_from": "162", "vertex_to": "473", - "timestamp": "2025-11-27T01:21:58.083552746Z" + "timestamp": "2025-11-27T04:01:56.610297-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007744, - "rtt_ms": 2.007744, + "rtt_ns": 1321208, + "rtt_ms": 1.321208, "checkpoint": 0, "vertex_from": "162", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:58.083910585Z" + "timestamp": "2025-11-27T04:01:56.61036-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177534, - "rtt_ms": 2.177534, + "rtt_ns": 1456958, + "rtt_ms": 1.456958, "checkpoint": 0, "vertex_from": "162", "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.084074925Z" + "timestamp": "2025-11-27T04:01:56.610412-08:00" }, { "operation": "add_edge", - "rtt_ns": 2804792, - "rtt_ms": 2.804792, + "rtt_ns": 1193834, + "rtt_ms": 1.193834, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.084732563Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:56.610543-08:00" }, { "operation": "add_edge", - "rtt_ns": 2884800, - "rtt_ms": 2.8848, + "rtt_ns": 1132334, + "rtt_ms": 1.132334, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.084767892Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:56.610688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879534, - "rtt_ms": 1.879534, + "rtt_ns": 1401209, + "rtt_ms": 1.401209, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.084820072Z" + "vertex_to": "225", + "timestamp": "2025-11-27T04:01:56.610706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450415, - "rtt_ms": 1.450415, + "rtt_ns": 1423959, + "rtt_ms": 1.423959, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "225", - "timestamp": "2025-11-27T01:21:58.084872952Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:56.610713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472006, - "rtt_ms": 1.472006, + "rtt_ns": 1240292, + "rtt_ms": 1.240292, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:58.084943812Z" + "vertex_to": "567", + "timestamp": "2025-11-27T04:01:56.610804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493226, - "rtt_ms": 1.493226, + "rtt_ns": 1597125, + "rtt_ms": 1.597125, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:58.085011362Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.610823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507615, - "rtt_ms": 1.507615, + "rtt_ns": 1357167, + "rtt_ms": 1.357167, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.085065611Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:56.61088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582125, - "rtt_ms": 1.582125, + "rtt_ns": 1038334, + "rtt_ms": 1.038334, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "567", - "timestamp": "2025-11-27T01:21:58.085142531Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.611582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279986, - "rtt_ms": 1.279986, + "rtt_ns": 1656042, + "rtt_ms": 1.656042, "checkpoint": 0, "vertex_from": "162", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.085193381Z" + "timestamp": "2025-11-27T04:01:56.611954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165446, - "rtt_ms": 1.165446, + "rtt_ns": 1612875, + "rtt_ms": 1.612875, "checkpoint": 0, "vertex_from": "162", "vertex_to": "270", - "timestamp": "2025-11-27T01:21:58.085241691Z" + "timestamp": "2025-11-27T04:01:56.611974-08:00" }, { "operation": "add_edge", - "rtt_ns": 831158, - "rtt_ms": 0.831158, + "rtt_ns": 1563167, + "rtt_ms": 1.563167, "checkpoint": 0, "vertex_from": "162", "vertex_to": "664", - "timestamp": "2025-11-27T01:21:58.08556495Z" + "timestamp": "2025-11-27T04:01:56.611978-08:00" }, { "operation": "add_edge", - "rtt_ns": 810638, - "rtt_ms": 0.810638, + "rtt_ns": 1490083, + "rtt_ms": 1.490083, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.08557982Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:56.612179-08:00" }, { "operation": "add_edge", - "rtt_ns": 827248, - "rtt_ms": 0.827248, + "rtt_ns": 1299458, + "rtt_ms": 1.299458, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:58.08564847Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.61218-08:00" }, { "operation": "add_edge", - "rtt_ns": 807427, - "rtt_ms": 0.807427, + "rtt_ns": 1475333, + "rtt_ms": 1.475333, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:58.085683359Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.61219-08:00" }, { "operation": "add_edge", - "rtt_ns": 766587, - "rtt_ms": 0.766587, + "rtt_ns": 1487208, + "rtt_ms": 1.487208, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.085713619Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:56.612194-08:00" }, { "operation": "add_edge", - "rtt_ns": 785567, - "rtt_ms": 0.785567, + "rtt_ns": 1377875, + "rtt_ms": 1.377875, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:58.085798569Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:56.612201-08:00" }, { "operation": "add_edge", - "rtt_ns": 748848, - "rtt_ms": 0.748848, + "rtt_ns": 1453208, + "rtt_ms": 1.453208, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.085815709Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:56.612258-08:00" }, { "operation": "add_edge", - "rtt_ns": 729388, - "rtt_ms": 0.729388, + "rtt_ns": 1067708, + "rtt_ms": 1.067708, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.085873999Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:56.612651-08:00" }, { "operation": "add_edge", - "rtt_ns": 813977, - "rtt_ms": 0.813977, + "rtt_ns": 1294834, + "rtt_ms": 1.294834, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:58.086465207Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:01:56.613274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327326, - "rtt_ms": 1.327326, + "rtt_ns": 1429041, + "rtt_ms": 1.429041, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:58.086521907Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:56.613405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353516, - "rtt_ms": 1.353516, + "rtt_ns": 1589583, + "rtt_ms": 1.589583, "checkpoint": 0, "vertex_from": "162", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.086597127Z" + "timestamp": "2025-11-27T04:01:56.613545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048586, - "rtt_ms": 1.048586, + "rtt_ns": 1311417, + "rtt_ms": 1.311417, "checkpoint": 0, - "vertex_from": "162", - "vertex_to": "620", - "timestamp": "2025-11-27T01:21:58.086629996Z" + "vertex_from": "163", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.61357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599765, - "rtt_ms": 1.599765, + "rtt_ns": 1402417, + "rtt_ms": 1.402417, "checkpoint": 0, - "vertex_from": "162", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:58.087167405Z" + "vertex_from": "163", + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:56.613605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520776, - "rtt_ms": 1.520776, + "rtt_ns": 1456000, + "rtt_ms": 1.456, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.087235955Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:56.613637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729045, - "rtt_ms": 1.729045, + "rtt_ns": 1488958, + "rtt_ms": 1.488958, "checkpoint": 0, "vertex_from": "162", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:58.087413514Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.613681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882224, - "rtt_ms": 1.882224, + "rtt_ns": 1490500, + "rtt_ms": 1.4905, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.087758283Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:56.613685-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000414, - "rtt_ms": 2.000414, + "rtt_ns": 1522458, + "rtt_ms": 1.522458, "checkpoint": 0, - "vertex_from": "163", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:58.087801913Z" + "vertex_from": "162", + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:56.613703-08:00" }, { "operation": "add_edge", - "rtt_ns": 2061413, - "rtt_ms": 2.061413, + "rtt_ns": 1338625, + "rtt_ms": 1.338625, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:58.087879442Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.613992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2803371, - "rtt_ms": 2.803371, + "rtt_ns": 1136042, + "rtt_ms": 1.136042, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.089270958Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.614707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2716142, - "rtt_ms": 2.716142, + "rtt_ns": 1289958, + "rtt_ms": 1.289958, "checkpoint": 0, "vertex_from": "163", "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.089348858Z" + "timestamp": "2025-11-27T04:01:56.614836-08:00" }, { "operation": "add_edge", - "rtt_ns": 2894930, - "rtt_ms": 2.89493, + "rtt_ns": 1447166, + "rtt_ms": 1.447166, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.089417917Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.614855-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269432, - "rtt_ms": 2.269432, + "rtt_ns": 1344500, + "rtt_ms": 1.3445, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.089438757Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.614951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2922860, - "rtt_ms": 2.92286, + "rtt_ns": 1684208, + "rtt_ms": 1.684208, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.089523487Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.614959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2355862, - "rtt_ms": 2.355862, + "rtt_ns": 1290875, + "rtt_ms": 1.290875, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.089595067Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.614974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849174, - "rtt_ms": 1.849174, + "rtt_ns": 1344084, + "rtt_ms": 1.344084, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "177", - "timestamp": "2025-11-27T01:21:58.089652607Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.614982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894014, - "rtt_ms": 1.894014, + "rtt_ns": 1302917, + "rtt_ms": 1.302917, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.089654777Z" + "vertex_to": "177", + "timestamp": "2025-11-27T04:01:56.614989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795604, - "rtt_ms": 1.795604, + "rtt_ns": 1550750, + "rtt_ms": 1.55075, "checkpoint": 0, "vertex_from": "163", "vertex_to": "293", - "timestamp": "2025-11-27T01:21:58.089676586Z" + "timestamp": "2025-11-27T04:01:56.615254-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375312, - "rtt_ms": 2.375312, + "rtt_ns": 1263958, + "rtt_ms": 1.263958, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.089790576Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.615257-08:00" }, { "operation": "add_edge", - "rtt_ns": 664828, - "rtt_ms": 0.664828, + "rtt_ns": 1369541, + "rtt_ms": 1.369541, "checkpoint": 0, - "vertex_from": "163", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.089936826Z" + "vertex_from": "164", + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:56.616359-08:00" }, { "operation": "add_edge", - "rtt_ns": 728707, - "rtt_ms": 0.728707, + "rtt_ns": 1401334, + "rtt_ms": 1.401334, "checkpoint": 0, "vertex_from": "164", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.090382454Z" + "timestamp": "2025-11-27T04:01:56.616376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162106, - "rtt_ms": 1.162106, + "rtt_ns": 2068625, + "rtt_ms": 2.068625, "checkpoint": 0, "vertex_from": "163", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.090512264Z" + "timestamp": "2025-11-27T04:01:56.616777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177916, - "rtt_ms": 1.177916, + "rtt_ns": 1812625, + "rtt_ms": 1.812625, "checkpoint": 0, - "vertex_from": "163", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:58.090598043Z" + "vertex_from": "164", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.616795-08:00" }, { "operation": "add_edge", - "rtt_ns": 983386, - "rtt_ms": 0.983386, + "rtt_ns": 1553292, + "rtt_ms": 1.553292, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.090640373Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.61681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101656, - "rtt_ms": 1.101656, + "rtt_ns": 1577625, + "rtt_ms": 1.577625, "checkpoint": 0, - "vertex_from": "163", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.090698213Z" + "vertex_from": "164", + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.616836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357326, - "rtt_ms": 1.357326, + "rtt_ns": 2486500, + "rtt_ms": 2.4865, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.090797243Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:56.617324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278656, - "rtt_ms": 1.278656, + "rtt_ns": 2416250, + "rtt_ms": 2.41625, "checkpoint": 0, "vertex_from": "163", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.090803543Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:56.61738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126097, - "rtt_ms": 1.126097, + "rtt_ns": 2496459, + "rtt_ms": 2.496459, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:58.090804573Z" + "vertex_from": "163", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.617448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068266, - "rtt_ms": 1.068266, + "rtt_ns": 2825042, + "rtt_ms": 2.825042, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.090860892Z" + "vertex_from": "163", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.617681-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1546924, - "rtt_ms": 1.546924, + "operation": "add_vertex", + "rtt_ns": 1822167, + "rtt_ms": 1.822167, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.09148529Z" + "vertex_from": "219", + "timestamp": "2025-11-27T04:01:56.6182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223126, - "rtt_ms": 1.223126, + "rtt_ns": 1941083, + "rtt_ms": 1.941083, "checkpoint": 0, "vertex_from": "164", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.09160674Z" + "timestamp": "2025-11-27T04:01:56.618301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103617, - "rtt_ms": 1.103617, + "rtt_ns": 1508333, + "rtt_ms": 1.508333, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:58.09170334Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1201886, - "rtt_ms": 1.201886, - "checkpoint": 0, - "vertex_from": "219", - "timestamp": "2025-11-27T01:21:58.09171664Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.618305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371326, - "rtt_ms": 1.371326, + "rtt_ns": 1588167, + "rtt_ms": 1.588167, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.092013049Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.618399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350236, - "rtt_ms": 1.350236, + "rtt_ns": 1624167, + "rtt_ms": 1.624167, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.092051419Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:56.618402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314745, - "rtt_ms": 1.314745, + "rtt_ns": 881667, + "rtt_ms": 0.881667, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:58.092113508Z" + "vertex_to": "172", + "timestamp": "2025-11-27T04:01:56.618565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349885, - "rtt_ms": 1.349885, + "rtt_ns": 1755583, + "rtt_ms": 1.755583, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.092154568Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:56.618592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106387, - "rtt_ms": 1.106387, + "rtt_ns": 1473333, + "rtt_ms": 1.473333, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "172", - "timestamp": "2025-11-27T01:21:58.092593697Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.618798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906544, - "rtt_ms": 1.906544, + "rtt_ns": 1459292, + "rtt_ms": 1.459292, "checkpoint": 0, "vertex_from": "164", "vertex_to": "758", - "timestamp": "2025-11-27T01:21:58.092769646Z" + "timestamp": "2025-11-27T04:01:56.618909-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032703, - "rtt_ms": 2.032703, + "rtt_ns": 1653750, + "rtt_ms": 1.65375, "checkpoint": 0, "vertex_from": "164", "vertex_to": "928", - "timestamp": "2025-11-27T01:21:58.092839216Z" + "timestamp": "2025-11-27T04:01:56.619037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229986, - "rtt_ms": 1.229986, + "rtt_ns": 1344792, + "rtt_ms": 1.344792, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "219", - "timestamp": "2025-11-27T01:21:58.092947146Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.619647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356106, - "rtt_ms": 1.356106, + "rtt_ns": 1259958, + "rtt_ms": 1.259958, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.092964666Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.619663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266826, - "rtt_ms": 1.266826, + "rtt_ns": 1571125, + "rtt_ms": 1.571125, "checkpoint": 0, "vertex_from": "164", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.092971676Z" + "timestamp": "2025-11-27T04:01:56.619879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519955, - "rtt_ms": 1.519955, + "rtt_ns": 1349333, + "rtt_ms": 1.349333, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.093572384Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.619943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060156, - "rtt_ms": 1.060156, + "rtt_ns": 1156000, + "rtt_ms": 1.156, "checkpoint": 0, "vertex_from": "164", "vertex_to": "901", - "timestamp": "2025-11-27T01:21:58.093655833Z" + "timestamp": "2025-11-27T04:01:56.619955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516465, - "rtt_ms": 1.516465, + "rtt_ns": 1763416, + "rtt_ms": 1.763416, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.093671903Z" + "vertex_to": "219", + "timestamp": "2025-11-27T04:01:56.619964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696454, - "rtt_ms": 1.696454, + "rtt_ns": 1480916, + "rtt_ms": 1.480916, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "730", - "timestamp": "2025-11-27T01:21:58.093711933Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.620046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776465, - "rtt_ms": 1.776465, + "rtt_ns": 1153542, + "rtt_ms": 1.153542, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.093890883Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:56.620063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631494, - "rtt_ms": 1.631494, + "rtt_ns": 1277292, + "rtt_ms": 1.277292, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.09459811Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.620315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652184, - "rtt_ms": 1.652184, + "rtt_ns": 1936417, + "rtt_ms": 1.936417, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.09460064Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:01:56.620337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139157, - "rtt_ms": 1.139157, + "rtt_ns": 1361042, + "rtt_ms": 1.361042, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.09479621Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.621024-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1211041, + "rtt_ms": 1.211041, + "checkpoint": 0, + "vertex_from": "350", + "timestamp": "2025-11-27T04:01:56.621275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105567, - "rtt_ms": 1.105567, + "rtt_ns": 1403291, + "rtt_ms": 1.403291, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.09481902Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:56.621285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980354, - "rtt_ms": 1.980354, + "rtt_ns": 1355833, + "rtt_ms": 1.355833, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.09482178Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.621302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062094, - "rtt_ms": 2.062094, + "rtt_ns": 975958, + "rtt_ms": 0.975958, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:58.09483426Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:56.621315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866394, - "rtt_ms": 1.866394, + "rtt_ns": 1270917, + "rtt_ms": 1.270917, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:58.09483924Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.621319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286376, - "rtt_ms": 1.286376, + "rtt_ns": 1684375, + "rtt_ms": 1.684375, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.09486057Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.621333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576295, - "rtt_ms": 1.576295, + "rtt_ns": 1370167, + "rtt_ms": 1.370167, "checkpoint": 0, "vertex_from": "164", "vertex_to": "211", - "timestamp": "2025-11-27T01:21:58.095249588Z" + "timestamp": "2025-11-27T04:01:56.621336-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1579975, - "rtt_ms": 1.579975, + "operation": "add_edge", + "rtt_ns": 1189542, + "rtt_ms": 1.189542, "checkpoint": 0, - "vertex_from": "350", - "timestamp": "2025-11-27T01:21:58.095473268Z" + "vertex_from": "164", + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:56.621506-08:00" }, { "operation": "add_edge", - "rtt_ns": 929858, - "rtt_ms": 0.929858, + "rtt_ns": 1700333, + "rtt_ms": 1.700333, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:58.095532578Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.621656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100827, - "rtt_ms": 1.100827, + "rtt_ns": 1213917, + "rtt_ms": 1.213917, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "542", - "timestamp": "2025-11-27T01:21:58.095700917Z" + "vertex_to": "350", + "timestamp": "2025-11-27T04:01:56.62249-08:00" }, { "operation": "add_edge", - "rtt_ns": 958217, - "rtt_ms": 0.958217, + "rtt_ns": 1591166, + "rtt_ms": 1.591166, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.095781477Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.622617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055856, - "rtt_ms": 1.055856, + "rtt_ns": 1408041, + "rtt_ms": 1.408041, "checkpoint": 0, "vertex_from": "164", "vertex_to": "196", - "timestamp": "2025-11-27T01:21:58.095877136Z" + "timestamp": "2025-11-27T04:01:56.622694-08:00" }, { "operation": "add_edge", - "rtt_ns": 659928, - "rtt_ms": 0.659928, + "rtt_ns": 1470500, + "rtt_ms": 1.4705, "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.095910726Z" + "vertex_from": "164", + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.622773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195156, - "rtt_ms": 1.195156, + "rtt_ns": 1503834, + "rtt_ms": 1.503834, "checkpoint": 0, "vertex_from": "164", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.095993136Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.622823-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1248946, - "rtt_ms": 1.248946, + "rtt_ns": 1524834, + "rtt_ms": 1.524834, "checkpoint": 0, - "vertex_from": "351", - "timestamp": "2025-11-27T01:21:58.096114266Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1114956, - "rtt_ms": 1.114956, - "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "350", - "timestamp": "2025-11-27T01:21:58.096588944Z" + "vertex_from": "318", + "timestamp": "2025-11-27T04:01:56.622841-08:00" }, { "operation": "add_edge", - "rtt_ns": 900417, - "rtt_ms": 0.900417, + "rtt_ns": 1603667, + "rtt_ms": 1.603667, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:58.096604094Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.62294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799364, - "rtt_ms": 1.799364, + "rtt_ns": 1434625, + "rtt_ms": 1.434625, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.096640584Z" + "vertex_from": "165", + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.622941-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1941544, - "rtt_ms": 1.941544, + "rtt_ns": 1815958, + "rtt_ms": 1.815958, "checkpoint": 0, - "vertex_from": "318", - "timestamp": "2025-11-27T01:21:58.096778844Z" + "vertex_from": "351", + "timestamp": "2025-11-27T04:01:56.623149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280085, - "rtt_ms": 1.280085, + "rtt_ns": 1541500, + "rtt_ms": 1.5415, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.096814343Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.624033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023547, - "rtt_ms": 1.023547, + "rtt_ns": 1193834, + "rtt_ms": 1.193834, "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:58.096902453Z" + "vertex_from": "164", + "vertex_to": "318", + "timestamp": "2025-11-27T04:01:56.624035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606935, - "rtt_ms": 1.606935, + "rtt_ns": 903833, + "rtt_ms": 0.903833, "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.097389382Z" + "vertex_from": "164", + "vertex_to": "351", + "timestamp": "2025-11-27T04:01:56.624053-08:00" }, { "operation": "add_edge", - "rtt_ns": 857897, - "rtt_ms": 0.857897, + "rtt_ns": 2433917, + "rtt_ms": 2.433917, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:58.097447951Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:56.624091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551325, - "rtt_ms": 1.551325, + "rtt_ns": 1500042, + "rtt_ms": 1.500042, "checkpoint": 0, "vertex_from": "165", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.097463771Z" + "timestamp": "2025-11-27T04:01:56.624197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1355255, - "rtt_ms": 1.355255, + "rtt_ns": 1318000, + "rtt_ms": 1.318, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "351", - "timestamp": "2025-11-27T01:21:58.097470001Z" + "vertex_from": "165", + "vertex_to": "236", + "timestamp": "2025-11-27T04:01:56.62426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030627, - "rtt_ms": 1.030627, + "rtt_ns": 1567000, + "rtt_ms": 1.567, "checkpoint": 0, "vertex_from": "165", "vertex_to": "678", - "timestamp": "2025-11-27T01:21:58.097636581Z" + "timestamp": "2025-11-27T04:01:56.624508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404526, - "rtt_ms": 1.404526, + "rtt_ns": 1765916, + "rtt_ms": 1.765916, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.098220409Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:56.62459-08:00" }, { "operation": "add_edge", - "rtt_ns": 839588, - "rtt_ms": 0.839588, + "rtt_ns": 1974875, + "rtt_ms": 1.974875, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "698", - "timestamp": "2025-11-27T01:21:58.098310859Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:56.624593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533455, - "rtt_ms": 1.533455, + "rtt_ns": 1923541, + "rtt_ms": 1.923541, "checkpoint": 0, - "vertex_from": "164", - "vertex_to": "318", - "timestamp": "2025-11-27T01:21:58.098312609Z" + "vertex_from": "165", + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:56.624698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420226, - "rtt_ms": 1.420226, + "rtt_ns": 1010292, + "rtt_ms": 1.010292, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:58.098324249Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:01:56.625208-08:00" }, { "operation": "add_edge", - "rtt_ns": 945367, - "rtt_ms": 0.945367, + "rtt_ns": 1405333, + "rtt_ms": 1.405333, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.098335919Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.625439-08:00" }, { "operation": "add_edge", - "rtt_ns": 2500512, - "rtt_ms": 2.500512, + "rtt_ns": 1408709, + "rtt_ms": 1.408709, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:58.098495158Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.625502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049447, - "rtt_ms": 1.049447, + "rtt_ns": 1654458, + "rtt_ms": 1.654458, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.098498558Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.625709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042847, - "rtt_ms": 1.042847, + "rtt_ns": 1458083, + "rtt_ms": 1.458083, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "721", - "timestamp": "2025-11-27T01:21:58.098508358Z" + "vertex_to": "698", + "timestamp": "2025-11-27T04:01:56.625719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941124, - "rtt_ms": 1.941124, + "rtt_ns": 1848208, + "rtt_ms": 1.848208, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "236", - "timestamp": "2025-11-27T01:21:58.098583348Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:56.625884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421545, - "rtt_ms": 1.421545, + "rtt_ns": 1588167, + "rtt_ms": 1.588167, "checkpoint": 0, "vertex_from": "165", "vertex_to": "825", - "timestamp": "2025-11-27T01:21:58.099059916Z" + "timestamp": "2025-11-27T04:01:56.626097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156446, - "rtt_ms": 1.156446, + "rtt_ns": 1657167, + "rtt_ms": 1.657167, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.099468435Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.626248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374166, - "rtt_ms": 1.374166, + "rtt_ns": 1738584, + "rtt_ms": 1.738584, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.099595955Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.626334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305296, - "rtt_ms": 1.305296, + "rtt_ns": 1763042, + "rtt_ms": 1.763042, "checkpoint": 0, "vertex_from": "165", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.099619235Z" + "timestamp": "2025-11-27T04:01:56.626463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505815, - "rtt_ms": 1.505815, + "rtt_ns": 1247792, + "rtt_ms": 1.247792, "checkpoint": 0, "vertex_from": "165", - "vertex_to": "555", - "timestamp": "2025-11-27T01:21:58.100002213Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.626476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434115, - "rtt_ms": 1.434115, + "rtt_ns": 1083125, + "rtt_ms": 1.083125, "checkpoint": 0, - "vertex_from": "166", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:58.100019193Z" + "vertex_from": "165", + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:56.626523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682565, - "rtt_ms": 1.682565, + "rtt_ns": 1086416, + "rtt_ms": 1.086416, "checkpoint": 0, - "vertex_from": "166", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.100182473Z" + "vertex_from": "165", + "vertex_to": "555", + "timestamp": "2025-11-27T04:01:56.62659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702005, - "rtt_ms": 1.702005, + "rtt_ns": 1409375, + "rtt_ms": 1.409375, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.100213923Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:56.627507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902653, - "rtt_ms": 1.902653, + "rtt_ns": 1766083, + "rtt_ms": 1.766083, "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.100240622Z" + "vertex_from": "166", + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:56.627651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182976, - "rtt_ms": 1.182976, + "rtt_ns": 1994917, + "rtt_ms": 1.994917, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:58.100244052Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.627715-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039233, - "rtt_ms": 2.039233, + "rtt_ns": 1265625, + "rtt_ms": 1.265625, "checkpoint": 0, - "vertex_from": "165", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.100364822Z" + "vertex_from": "166", + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:56.627729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647275, - "rtt_ms": 1.647275, + "rtt_ns": 1499041, + "rtt_ms": 1.499041, "checkpoint": 0, "vertex_from": "166", "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.10111693Z" + "timestamp": "2025-11-27T04:01:56.627748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550624, - "rtt_ms": 1.550624, + "rtt_ns": 1316208, + "rtt_ms": 1.316208, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:58.101171039Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:56.627793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350376, - "rtt_ms": 1.350376, + "rtt_ns": 2097042, + "rtt_ms": 2.097042, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.101370879Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.627806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884933, - "rtt_ms": 1.884933, + "rtt_ns": 1309666, + "rtt_ms": 1.309666, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:58.101481828Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.627834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331345, - "rtt_ms": 1.331345, + "rtt_ns": 1271209, + "rtt_ms": 1.271209, "checkpoint": 0, "vertex_from": "166", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.101515008Z" + "timestamp": "2025-11-27T04:01:56.627864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328645, - "rtt_ms": 1.328645, + "rtt_ns": 1565917, + "rtt_ms": 1.565917, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:58.101543528Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:56.6279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397086, - "rtt_ms": 1.397086, + "rtt_ns": 1688750, + "rtt_ms": 1.68875, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "236", - "timestamp": "2025-11-27T01:21:58.101638638Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.629419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646735, - "rtt_ms": 1.646735, + "rtt_ns": 1692708, + "rtt_ms": 1.692708, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:58.101650178Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.629442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443846, - "rtt_ms": 1.443846, + "rtt_ns": 1961125, + "rtt_ms": 1.961125, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.101688658Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.629768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344746, - "rtt_ms": 1.344746, + "rtt_ns": 1934958, + "rtt_ms": 1.934958, "checkpoint": 0, - "vertex_from": "166", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.101710228Z" + "vertex_from": "167", + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:56.62977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321545, - "rtt_ms": 1.321545, + "rtt_ns": 1869541, + "rtt_ms": 1.869541, "checkpoint": 0, - "vertex_from": "166", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.102439405Z" + "vertex_from": "167", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.62977-08:00" }, { "operation": "add_edge", - "rtt_ns": 950127, - "rtt_ms": 0.950127, + "rtt_ns": 2276916, + "rtt_ms": 2.276916, "checkpoint": 0, - "vertex_from": "167", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.102494625Z" + "vertex_from": "166", + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:56.629787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147076, - "rtt_ms": 1.147076, + "rtt_ns": 2100666, + "rtt_ms": 2.100666, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.102518995Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.629817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379756, - "rtt_ms": 1.379756, + "rtt_ns": 2207750, + "rtt_ms": 2.20775, "checkpoint": 0, "vertex_from": "166", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.102551895Z" + "vertex_to": "236", + "timestamp": "2025-11-27T04:01:56.629861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097917, - "rtt_ms": 1.097917, + "rtt_ns": 2109750, + "rtt_ms": 2.10975, "checkpoint": 0, "vertex_from": "167", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:58.102580645Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.629975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114936, - "rtt_ms": 1.114936, + "rtt_ns": 2382875, + "rtt_ms": 2.382875, "checkpoint": 0, - "vertex_from": "167", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.102630734Z" + "vertex_from": "166", + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:56.630177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223846, - "rtt_ms": 1.223846, + "rtt_ns": 1056292, + "rtt_ms": 1.056292, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:58.102866384Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.630844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241856, - "rtt_ms": 1.241856, + "rtt_ns": 1172000, + "rtt_ms": 1.172, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:58.102893064Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:56.630941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709074, - "rtt_ms": 1.709074, + "rtt_ns": 1676583, + "rtt_ms": 1.676583, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:58.103398802Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:56.631119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152756, - "rtt_ms": 1.152756, + "rtt_ns": 1722667, + "rtt_ms": 1.722667, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.103648791Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:56.631143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594375, - "rtt_ms": 1.594375, + "rtt_ns": 1419209, + "rtt_ms": 1.419209, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.10411718Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.63119-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441651, - "rtt_ms": 2.441651, + "rtt_ns": 1417084, + "rtt_ms": 1.417084, "checkpoint": 0, "vertex_from": "168", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.104153099Z" + "timestamp": "2025-11-27T04:01:56.631198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611054, - "rtt_ms": 1.611054, + "rtt_ns": 1477959, + "rtt_ms": 1.477959, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.104193269Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.631342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352225, - "rtt_ms": 1.352225, + "rtt_ns": 1564250, + "rtt_ms": 1.56425, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.104248269Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.631382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839564, - "rtt_ms": 1.839564, + "rtt_ns": 1293583, + "rtt_ms": 1.293583, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.104282589Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:56.631482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678715, - "rtt_ms": 1.678715, + "rtt_ns": 1570500, + "rtt_ms": 1.5705, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.104311299Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.631547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481015, - "rtt_ms": 1.481015, + "rtt_ns": 2002167, + "rtt_ms": 2.002167, "checkpoint": 0, "vertex_from": "168", "vertex_to": "195", - "timestamp": "2025-11-27T01:21:58.104348859Z" + "timestamp": "2025-11-27T04:01:56.632847-08:00" }, { "operation": "add_edge", - "rtt_ns": 764338, - "rtt_ms": 0.764338, + "rtt_ns": 1521375, + "rtt_ms": 1.521375, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.104414209Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.632864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015717, - "rtt_ms": 1.015717, + "rtt_ns": 1672709, + "rtt_ms": 1.672709, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.104416179Z" + "vertex_to": "372", + "timestamp": "2025-11-27T04:01:56.632874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876384, - "rtt_ms": 1.876384, + "rtt_ns": 1496500, + "rtt_ms": 1.4965, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.104430469Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:56.632879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091097, - "rtt_ms": 1.091097, + "rtt_ns": 1347792, + "rtt_ms": 1.347792, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "372", - "timestamp": "2025-11-27T01:21:58.105251506Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.632895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694454, - "rtt_ms": 1.694454, + "rtt_ns": 1794125, + "rtt_ms": 1.794125, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.105813264Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.632915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690745, - "rtt_ms": 1.690745, + "rtt_ns": 1991958, + "rtt_ms": 1.991958, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.106003684Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.632934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608654, - "rtt_ms": 1.608654, + "rtt_ns": 1802167, + "rtt_ms": 1.802167, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.106040193Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.632947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793014, - "rtt_ms": 1.793014, + "rtt_ns": 1469875, + "rtt_ms": 1.469875, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.106042763Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.632952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848424, - "rtt_ms": 1.848424, + "rtt_ns": 2003750, + "rtt_ms": 2.00375, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.106042843Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.633195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695954, - "rtt_ms": 1.695954, + "rtt_ns": 1339334, + "rtt_ms": 1.339334, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.106046883Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.634219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637554, - "rtt_ms": 1.637554, + "rtt_ns": 1464459, + "rtt_ms": 1.464459, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.106055253Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.63436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643494, - "rtt_ms": 1.643494, + "rtt_ns": 1442667, + "rtt_ms": 1.442667, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.106060293Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.634391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780314, - "rtt_ms": 1.780314, + "rtt_ns": 1469708, + "rtt_ms": 1.469708, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.106064123Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:56.634424-08:00" }, { "operation": "add_edge", - "rtt_ns": 971017, - "rtt_ms": 0.971017, + "rtt_ns": 1600791, + "rtt_ms": 1.600791, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.106224313Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.634449-08:00" }, { "operation": "add_edge", - "rtt_ns": 843517, - "rtt_ms": 0.843517, + "rtt_ns": 1286833, + "rtt_ms": 1.286833, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "457", - "timestamp": "2025-11-27T01:21:58.106848891Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.634483-08:00" }, { "operation": "add_edge", - "rtt_ns": 880078, - "rtt_ms": 0.880078, + "rtt_ns": 1681375, + "rtt_ms": 1.681375, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.106925061Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:56.634558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131197, - "rtt_ms": 1.131197, + "rtt_ns": 1672458, + "rtt_ms": 1.672458, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.106945731Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:01:56.634607-08:00" }, { "operation": "add_edge", - "rtt_ns": 924118, - "rtt_ms": 0.924118, + "rtt_ns": 1721125, + "rtt_ms": 1.721125, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:58.106968611Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.634637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172917, - "rtt_ms": 1.172917, + "rtt_ns": 1795666, + "rtt_ms": 1.795666, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.10722967Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.634661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771445, - "rtt_ms": 1.771445, + "rtt_ns": 1288333, + "rtt_ms": 1.288333, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.107812828Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:56.635509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772975, - "rtt_ms": 1.772975, + "rtt_ns": 1318542, + "rtt_ms": 1.318542, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.107839078Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.635681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743374, - "rtt_ms": 1.743374, + "rtt_ns": 1304500, + "rtt_ms": 1.3045, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.107969577Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:56.635912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936404, - "rtt_ms": 1.936404, + "rtt_ns": 1608625, + "rtt_ms": 1.608625, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:58.107985627Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.636034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944824, - "rtt_ms": 1.944824, + "rtt_ns": 1434334, + "rtt_ms": 1.434334, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.108008377Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.636073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407045, - "rtt_ms": 1.407045, + "rtt_ns": 1530458, + "rtt_ms": 1.530458, "checkpoint": 0, "vertex_from": "168", "vertex_to": "197", - "timestamp": "2025-11-27T01:21:58.108332926Z" + "timestamp": "2025-11-27T04:01:56.636089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528895, - "rtt_ms": 1.528895, + "rtt_ns": 1664167, + "rtt_ms": 1.664167, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.108379916Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:56.636114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218326, - "rtt_ms": 1.218326, + "rtt_ns": 1453666, + "rtt_ms": 1.453666, "checkpoint": 0, "vertex_from": "168", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.108450026Z" + "timestamp": "2025-11-27T04:01:56.636116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536005, - "rtt_ms": 1.536005, + "rtt_ns": 1772500, + "rtt_ms": 1.7725, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.108506936Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.636256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576735, - "rtt_ms": 1.576735, + "rtt_ns": 2165041, + "rtt_ms": 2.165041, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:58.108524766Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.636557-08:00" }, { "operation": "add_edge", - "rtt_ns": 785177, - "rtt_ms": 0.785177, + "rtt_ns": 1478959, + "rtt_ms": 1.478959, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:58.108625445Z" + "vertex_to": "169", + "timestamp": "2025-11-27T04:01:56.637515-08:00" }, { "operation": "add_edge", - "rtt_ns": 823947, - "rtt_ms": 0.823947, + "rtt_ns": 1384667, + "rtt_ms": 1.384667, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.108637965Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.637642-08:00" }, { "operation": "add_edge", - "rtt_ns": 699598, - "rtt_ms": 0.699598, + "rtt_ns": 1573834, + "rtt_ms": 1.573834, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "918", - "timestamp": "2025-11-27T01:21:58.108709395Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.637689-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212346, - "rtt_ms": 1.212346, + "rtt_ns": 2241542, + "rtt_ms": 2.241542, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "169", - "timestamp": "2025-11-27T01:21:58.109199133Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.637751-08:00" }, { "operation": "add_edge", - "rtt_ns": 951937, - "rtt_ms": 0.951937, + "rtt_ns": 2086709, + "rtt_ms": 2.086709, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.109286063Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:56.637771-08:00" }, { "operation": "add_edge", - "rtt_ns": 779247, - "rtt_ms": 0.779247, + "rtt_ns": 1230250, + "rtt_ms": 1.23025, "checkpoint": 0, "vertex_from": "169", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.109305323Z" + "timestamp": "2025-11-27T04:01:56.637788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034127, - "rtt_ms": 1.034127, + "rtt_ns": 1768042, + "rtt_ms": 1.768042, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.109415383Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:56.637888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081616, - "rtt_ms": 1.081616, + "rtt_ns": 1889583, + "rtt_ms": 1.889583, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:58.109532732Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:01:56.637963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576185, - "rtt_ms": 1.576185, + "rtt_ns": 2065250, + "rtt_ms": 2.06525, "checkpoint": 0, "vertex_from": "168", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:58.109547322Z" + "timestamp": "2025-11-27T04:01:56.637979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234096, - "rtt_ms": 1.234096, + "rtt_ns": 2043000, + "rtt_ms": 2.043, "checkpoint": 0, "vertex_from": "168", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.109742212Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:56.638135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562645, - "rtt_ms": 1.562645, + "rtt_ns": 1163375, + "rtt_ms": 1.163375, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:58.11027308Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.638806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113447, - "rtt_ms": 1.113447, + "rtt_ns": 1185375, + "rtt_ms": 1.185375, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "904", - "timestamp": "2025-11-27T01:21:58.11031445Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.638974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689565, - "rtt_ms": 1.689565, + "rtt_ns": 1405375, + "rtt_ms": 1.405375, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.11032829Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.639177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729935, - "rtt_ms": 1.729935, + "rtt_ns": 1504166, + "rtt_ms": 1.504166, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.1103566Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:56.639194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2712302, - "rtt_ms": 2.712302, + "rtt_ns": 1368625, + "rtt_ms": 1.368625, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.112260814Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2493872, - "rtt_ms": 2.493872, - "checkpoint": 0, - "vertex_from": "170", - "vertex_to": "206", - "timestamp": "2025-11-27T01:21:58.112809982Z" + "vertex_to": "212", + "timestamp": "2025-11-27T04:01:56.639257-08:00" }, { "operation": "add_edge", - "rtt_ns": 3647028, - "rtt_ms": 3.647028, + "rtt_ns": 1419000, + "rtt_ms": 1.419, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.112934141Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.639398-08:00" }, { "operation": "add_edge", - "rtt_ns": 2673591, - "rtt_ms": 2.673591, + "rtt_ns": 1662500, + "rtt_ms": 1.6625, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.112947691Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2646241, - "rtt_ms": 2.646241, - "checkpoint": 0, - "vertex_from": "170", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.112975941Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:01:56.639414-08:00" }, { "operation": "add_edge", - "rtt_ns": 2620001, - "rtt_ms": 2.620001, + "rtt_ns": 1899291, + "rtt_ms": 1.899291, "checkpoint": 0, - "vertex_from": "170", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.112977801Z" + "vertex_from": "169", + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.639415-08:00" }, { "operation": "add_edge", - "rtt_ns": 3583668, - "rtt_ms": 3.583668, + "rtt_ns": 1453625, + "rtt_ms": 1.453625, "checkpoint": 0, "vertex_from": "169", - "vertex_to": "212", - "timestamp": "2025-11-27T01:21:58.113002531Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.639418-08:00" }, { "operation": "add_edge", - "rtt_ns": 3263989, - "rtt_ms": 3.263989, + "rtt_ns": 1314875, + "rtt_ms": 1.314875, "checkpoint": 0, "vertex_from": "169", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.113006991Z" + "timestamp": "2025-11-27T04:01:56.639452-08:00" }, { "operation": "add_edge", - "rtt_ns": 3515529, - "rtt_ms": 3.515529, + "rtt_ns": 1780292, + "rtt_ms": 1.780292, "checkpoint": 0, - "vertex_from": "169", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.113050311Z" + "vertex_from": "170", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.64096-08:00" }, { "operation": "add_edge", - "rtt_ns": 3758498, - "rtt_ms": 3.758498, + "rtt_ns": 2009500, + "rtt_ms": 2.0095, "checkpoint": 0, - "vertex_from": "169", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.113065451Z" + "vertex_from": "170", + "vertex_to": "206", + "timestamp": "2025-11-27T04:01:56.640984-08:00" }, { "operation": "add_edge", - "rtt_ns": 810837, - "rtt_ms": 0.810837, + "rtt_ns": 1803542, + "rtt_ms": 1.803542, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:58.113076471Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:56.640999-08:00" }, { "operation": "add_edge", - "rtt_ns": 974777, - "rtt_ms": 0.974777, + "rtt_ns": 1755750, + "rtt_ms": 1.75575, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "724", - "timestamp": "2025-11-27T01:21:58.113910678Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:56.641014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121646, - "rtt_ms": 1.121646, + "rtt_ns": 2222083, + "rtt_ms": 2.222083, "checkpoint": 0, - "vertex_from": "170", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.113932918Z" + "vertex_from": "169", + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:56.64103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542055, - "rtt_ms": 1.542055, + "rtt_ns": 1939833, + "rtt_ms": 1.939833, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:58.114550056Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.641358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559655, - "rtt_ms": 1.559655, + "rtt_ns": 1961209, + "rtt_ms": 1.961209, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.114563296Z" + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:56.641376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601535, - "rtt_ms": 1.601535, + "rtt_ns": 1975833, + "rtt_ms": 1.975833, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.114581606Z" + "vertex_to": "854", + "timestamp": "2025-11-27T04:01:56.641392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511955, - "rtt_ms": 1.511955, + "rtt_ns": 2228875, + "rtt_ms": 2.228875, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.114589986Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.641628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541815, - "rtt_ms": 1.541815, + "rtt_ns": 1778125, + "rtt_ms": 1.778125, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.114593336Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.64274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628565, - "rtt_ms": 1.628565, + "rtt_ns": 1740416, + "rtt_ms": 1.740416, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.114605426Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.642755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542985, - "rtt_ms": 1.542985, + "rtt_ns": 1725333, + "rtt_ms": 1.725333, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.114609686Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.642755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713075, - "rtt_ms": 1.713075, + "rtt_ns": 1775500, + "rtt_ms": 1.7755, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "854", - "timestamp": "2025-11-27T01:21:58.114662906Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.642775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413645, - "rtt_ms": 1.413645, + "rtt_ns": 1456000, + "rtt_ms": 1.456, "checkpoint": 0, "vertex_from": "170", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:58.115349453Z" + "timestamp": "2025-11-27T04:01:56.642833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683524, - "rtt_ms": 1.683524, + "rtt_ns": 1523666, + "rtt_ms": 1.523666, "checkpoint": 0, "vertex_from": "170", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.115595932Z" + "timestamp": "2025-11-27T04:01:56.642883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095036, - "rtt_ms": 1.095036, + "rtt_ns": 1673292, + "rtt_ms": 1.673292, "checkpoint": 0, "vertex_from": "170", "vertex_to": "194", - "timestamp": "2025-11-27T01:21:58.115646922Z" + "timestamp": "2025-11-27T04:01:56.643066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540725, - "rtt_ms": 1.540725, + "rtt_ns": 1454959, + "rtt_ms": 1.454959, "checkpoint": 0, "vertex_from": "170", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.116105011Z" + "timestamp": "2025-11-27T04:01:56.643084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666554, - "rtt_ms": 1.666554, + "rtt_ns": 2098916, + "rtt_ms": 2.098916, "checkpoint": 0, "vertex_from": "170", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:58.11624948Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:56.643084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682044, - "rtt_ms": 1.682044, + "rtt_ns": 3676834, + "rtt_ms": 3.676834, "checkpoint": 0, - "vertex_from": "171", - "vertex_to": "884", - "timestamp": "2025-11-27T01:21:58.1162734Z" + "vertex_from": "170", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.643129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676734, - "rtt_ms": 1.676734, + "rtt_ns": 1411542, + "rtt_ms": 1.411542, "checkpoint": 0, "vertex_from": "171", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.11628419Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.644247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687624, - "rtt_ms": 1.687624, + "rtt_ns": 1522542, + "rtt_ms": 1.522542, "checkpoint": 0, - "vertex_from": "171", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.1162848Z" + "vertex_from": "170", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:56.644265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637274, - "rtt_ms": 1.637274, + "rtt_ns": 1397208, + "rtt_ms": 1.397208, "checkpoint": 0, "vertex_from": "171", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.11630335Z" + "timestamp": "2025-11-27T04:01:56.644281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718374, - "rtt_ms": 1.718374, + "rtt_ns": 1597875, + "rtt_ms": 1.597875, "checkpoint": 0, "vertex_from": "171", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.11632975Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:56.644356-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767015, - "rtt_ms": 1.767015, + "rtt_ns": 1638833, + "rtt_ms": 1.638833, "checkpoint": 0, - "vertex_from": "172", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.117130938Z" + "vertex_from": "171", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.644415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496536, - "rtt_ms": 1.496536, + "rtt_ns": 1664333, + "rtt_ms": 1.664333, "checkpoint": 0, - "vertex_from": "172", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.117152457Z" + "vertex_from": "171", + "vertex_to": "884", + "timestamp": "2025-11-27T04:01:56.644421-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568125, - "rtt_ms": 1.568125, + "rtt_ns": 1981333, + "rtt_ms": 1.981333, "checkpoint": 0, "vertex_from": "172", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.117166317Z" + "timestamp": "2025-11-27T04:01:56.645066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246446, - "rtt_ms": 1.246446, + "rtt_ns": 1998125, + "rtt_ms": 1.998125, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.117352597Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.645083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477276, - "rtt_ms": 1.477276, + "rtt_ns": 2156333, + "rtt_ms": 2.156333, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "696", - "timestamp": "2025-11-27T01:21:58.117727976Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.645223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493635, - "rtt_ms": 1.493635, + "rtt_ns": 2397125, + "rtt_ms": 2.397125, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:58.117781455Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:01:56.646645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575525, - "rtt_ms": 1.575525, + "rtt_ns": 2309792, + "rtt_ms": 2.309792, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.117908115Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:56.646669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634415, - "rtt_ms": 1.634415, + "rtt_ns": 2263917, + "rtt_ms": 2.263917, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.117908695Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:56.64668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637685, - "rtt_ms": 1.637685, + "rtt_ns": 2406250, + "rtt_ms": 2.40625, "checkpoint": 0, "vertex_from": "172", "vertex_to": "496", - "timestamp": "2025-11-27T01:21:58.117925135Z" + "timestamp": "2025-11-27T04:01:56.646688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633885, - "rtt_ms": 1.633885, + "rtt_ns": 3594875, + "rtt_ms": 3.594875, "checkpoint": 0, "vertex_from": "172", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.117938465Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.646727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264716, - "rtt_ms": 1.264716, + "rtt_ns": 1564083, + "rtt_ms": 1.564083, "checkpoint": 0, "vertex_from": "173", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:58.118432953Z" + "timestamp": "2025-11-27T04:01:56.646788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097567, - "rtt_ms": 1.097567, + "rtt_ns": 2656792, + "rtt_ms": 2.656792, "checkpoint": 0, - "vertex_from": "174", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:58.119037132Z" + "vertex_from": "172", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.646923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429575, - "rtt_ms": 1.429575, + "rtt_ns": 1875292, + "rtt_ms": 1.875292, "checkpoint": 0, - "vertex_from": "174", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.119158831Z" + "vertex_from": "172", + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.646942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272746, - "rtt_ms": 1.272746, + "rtt_ns": 1922875, + "rtt_ms": 1.922875, "checkpoint": 0, - "vertex_from": "174", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.119181941Z" + "vertex_from": "173", + "vertex_to": "176", + "timestamp": "2025-11-27T04:01:56.647007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2086504, - "rtt_ms": 2.086504, + "rtt_ns": 2603291, + "rtt_ms": 2.603291, "checkpoint": 0, - "vertex_from": "173", - "vertex_to": "176", - "timestamp": "2025-11-27T01:21:58.119245321Z" + "vertex_from": "172", + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.647026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944514, - "rtt_ms": 1.944514, + "rtt_ns": 1493917, + "rtt_ms": 1.493917, "checkpoint": 0, "vertex_from": "173", "vertex_to": "209", - "timestamp": "2025-11-27T01:21:58.119303211Z" + "timestamp": "2025-11-27T04:01:56.64814-08:00" }, { "operation": "add_edge", - "rtt_ns": 2174163, - "rtt_ms": 2.174163, + "rtt_ns": 1457584, + "rtt_ms": 1.457584, "checkpoint": 0, - "vertex_from": "172", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.119306611Z" + "vertex_from": "174", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.648185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525726, - "rtt_ms": 1.525726, + "rtt_ns": 1301250, + "rtt_ms": 1.30125, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.119308401Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:01:56.648328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416306, - "rtt_ms": 1.416306, + "rtt_ns": 1665583, + "rtt_ms": 1.665583, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.119326671Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.648347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491225, - "rtt_ms": 1.491225, + "rtt_ns": 1563792, + "rtt_ms": 1.563792, "checkpoint": 0, "vertex_from": "174", "vertex_to": "533", - "timestamp": "2025-11-27T01:21:58.11941886Z" + "timestamp": "2025-11-27T04:01:56.648353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562865, - "rtt_ms": 1.562865, + "rtt_ns": 1419625, + "rtt_ms": 1.419625, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.119997748Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.648427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035456, - "rtt_ms": 1.035456, + "rtt_ns": 1772916, + "rtt_ms": 1.772916, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.120073908Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.648442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220096, - "rtt_ms": 1.220096, + "rtt_ns": 1753958, + "rtt_ms": 1.753958, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.120525217Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.648443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308896, - "rtt_ms": 1.308896, + "rtt_ns": 1553500, + "rtt_ms": 1.5535, "checkpoint": 0, - "vertex_from": "176", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.120729176Z" + "vertex_from": "174", + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:56.648477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471975, - "rtt_ms": 1.471975, + "rtt_ns": 1680542, + "rtt_ms": 1.680542, "checkpoint": 0, - "vertex_from": "175", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.120781486Z" + "vertex_from": "174", + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:56.648624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527365, - "rtt_ms": 1.527365, + "rtt_ns": 1497542, + "rtt_ms": 1.497542, + "checkpoint": 0, + "vertex_from": "174", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.649827-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1386333, + "rtt_ms": 1.386333, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.120855366Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.64983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707955, - "rtt_ms": 1.707955, + "rtt_ns": 1661583, + "rtt_ms": 1.661583, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.120891166Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:56.649848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624524, - "rtt_ms": 1.624524, + "rtt_ns": 1502667, + "rtt_ms": 1.502667, "checkpoint": 0, "vertex_from": "174", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.120933155Z" + "timestamp": "2025-11-27T04:01:56.64985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703174, - "rtt_ms": 1.703174, + "rtt_ns": 1441333, + "rtt_ms": 1.441333, "checkpoint": 0, - "vertex_from": "174", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:58.120949485Z" + "vertex_from": "176", + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.64992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844304, - "rtt_ms": 1.844304, + "rtt_ns": 1852500, + "rtt_ms": 1.8525, "checkpoint": 0, "vertex_from": "174", - "vertex_to": "835", - "timestamp": "2025-11-27T01:21:58.121004135Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:56.649996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157567, - "rtt_ms": 1.157567, + "rtt_ns": 1666875, + "rtt_ms": 1.666875, "checkpoint": 0, - "vertex_from": "176", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.121157135Z" + "vertex_from": "175", + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.65002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117487, - "rtt_ms": 1.117487, + "rtt_ns": 1604667, + "rtt_ms": 1.604667, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.121195725Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.650033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251366, - "rtt_ms": 1.251366, + "rtt_ns": 1614125, + "rtt_ms": 1.614125, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.122033672Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.650058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543595, - "rtt_ms": 1.543595, + "rtt_ns": 1514750, + "rtt_ms": 1.51475, "checkpoint": 0, "vertex_from": "176", "vertex_to": "396", - "timestamp": "2025-11-27T01:21:58.122071532Z" + "timestamp": "2025-11-27T04:01:56.650139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176786, - "rtt_ms": 1.176786, + "rtt_ns": 1357375, + "rtt_ms": 1.357375, "checkpoint": 0, "vertex_from": "176", "vertex_to": "542", - "timestamp": "2025-11-27T01:21:58.122071752Z" + "timestamp": "2025-11-27T04:01:56.651209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215546, - "rtt_ms": 1.215546, + "rtt_ns": 1395375, + "rtt_ms": 1.395375, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:58.122072322Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.651226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343066, - "rtt_ms": 1.343066, + "rtt_ns": 1494250, + "rtt_ms": 1.49425, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.122073752Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:56.651423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913844, - "rtt_ms": 1.913844, + "rtt_ns": 1589125, + "rtt_ms": 1.589125, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.122864689Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:56.651438-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027464, - "rtt_ms": 2.027464, + "rtt_ns": 1412625, + "rtt_ms": 1.412625, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.122963729Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.651471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980074, - "rtt_ms": 1.980074, + "rtt_ns": 1670583, + "rtt_ms": 1.670583, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:58.122985659Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.651498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872204, - "rtt_ms": 1.872204, + "rtt_ns": 1562292, + "rtt_ms": 1.562292, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.123069909Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:56.651583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081547, - "rtt_ms": 1.081547, + "rtt_ns": 1616209, + "rtt_ms": 1.616209, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:58.123117049Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.651613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078326, - "rtt_ms": 1.078326, + "rtt_ns": 1476584, + "rtt_ms": 1.476584, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.123151948Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:56.651617-08:00" }, { "operation": "add_edge", - "rtt_ns": 2390952, - "rtt_ms": 2.390952, + "rtt_ns": 1594500, + "rtt_ms": 1.5945, "checkpoint": 0, "vertex_from": "176", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.123549757Z" + "timestamp": "2025-11-27T04:01:56.65163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652355, - "rtt_ms": 1.652355, + "rtt_ns": 1007167, + "rtt_ms": 1.007167, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.123725707Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.652479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700614, - "rtt_ms": 1.700614, + "rtt_ns": 1190625, + "rtt_ms": 1.190625, "checkpoint": 0, "vertex_from": "176", "vertex_to": "705", - "timestamp": "2025-11-27T01:21:58.123775866Z" + "timestamp": "2025-11-27T04:01:56.65263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747784, - "rtt_ms": 1.747784, + "rtt_ns": 1669208, + "rtt_ms": 1.669208, "checkpoint": 0, "vertex_from": "176", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.123820596Z" + "timestamp": "2025-11-27T04:01:56.652879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407686, - "rtt_ms": 1.407686, + "rtt_ns": 1352709, + "rtt_ms": 1.352709, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.124274485Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.652937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231976, - "rtt_ms": 1.231976, + "rtt_ns": 1374958, + "rtt_ms": 1.374958, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.124302865Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.652992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250746, - "rtt_ms": 1.250746, + "rtt_ns": 1391834, + "rtt_ms": 1.391834, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.124369285Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.653006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435705, - "rtt_ms": 1.435705, + "rtt_ns": 1652416, + "rtt_ms": 1.652416, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:58.124400894Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.653076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160547, - "rtt_ms": 1.160547, + "rtt_ns": 1579584, + "rtt_ms": 1.579584, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.124982253Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:56.653079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905634, - "rtt_ms": 1.905634, + "rtt_ns": 1883792, + "rtt_ms": 1.883792, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.125058932Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.65311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539305, - "rtt_ms": 1.539305, + "rtt_ns": 1509875, + "rtt_ms": 1.509875, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:58.125089882Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.65314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423405, - "rtt_ms": 1.423405, + "rtt_ns": 1473625, + "rtt_ms": 1.473625, "checkpoint": 0, "vertex_from": "176", "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.125150642Z" + "timestamp": "2025-11-27T04:01:56.654105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448626, - "rtt_ms": 1.448626, + "rtt_ns": 1240833, + "rtt_ms": 1.240833, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:58.125225532Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.654179-08:00" }, { "operation": "add_edge", - "rtt_ns": 2245933, - "rtt_ms": 2.245933, + "rtt_ns": 1234167, + "rtt_ms": 1.234167, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.125233482Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:56.654314-08:00" }, { "operation": "add_edge", - "rtt_ns": 866918, - "rtt_ms": 0.866918, + "rtt_ns": 1360000, + "rtt_ms": 1.36, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.12595814Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.654501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687074, - "rtt_ms": 1.687074, + "rtt_ns": 1390083, + "rtt_ms": 1.390083, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.125990689Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:56.654501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754484, - "rtt_ms": 1.754484, + "rtt_ns": 1642083, + "rtt_ms": 1.642083, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:58.126030249Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:56.654522-08:00" }, { "operation": "add_edge", - "rtt_ns": 944437, - "rtt_ms": 0.944437, + "rtt_ns": 1464125, + "rtt_ms": 1.464125, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.126096219Z" + "vertex_to": "201", + "timestamp": "2025-11-27T04:01:56.654541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704685, - "rtt_ms": 1.704685, + "rtt_ns": 1558959, + "rtt_ms": 1.558959, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.126106639Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.654565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127846, - "rtt_ms": 1.127846, + "rtt_ns": 1643292, + "rtt_ms": 1.643292, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:58.126110889Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:56.654637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216617, - "rtt_ms": 1.216617, + "rtt_ns": 2156417, + "rtt_ms": 2.156417, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.126277589Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:56.654636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107776, - "rtt_ms": 1.107776, + "rtt_ns": 1465459, + "rtt_ms": 1.465459, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "976", - "timestamp": "2025-11-27T01:21:58.126343328Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.65578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974963, - "rtt_ms": 1.974963, + "rtt_ns": 1665125, + "rtt_ms": 1.665125, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "201", - "timestamp": "2025-11-27T01:21:58.126345158Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.655845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288546, - "rtt_ms": 1.288546, + "rtt_ns": 1881000, + "rtt_ms": 1.881, "checkpoint": 0, "vertex_from": "176", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.126514918Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.655987-08:00" }, { "operation": "add_edge", - "rtt_ns": 886247, - "rtt_ms": 0.886247, + "rtt_ns": 1545583, + "rtt_ms": 1.545583, "checkpoint": 0, - "vertex_from": "177", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.126998956Z" + "vertex_from": "176", + "vertex_to": "976", + "timestamp": "2025-11-27T04:01:56.656047-08:00" }, { "operation": "add_edge", - "rtt_ns": 944077, - "rtt_ms": 0.944077, + "rtt_ns": 1522917, + "rtt_ms": 1.522917, "checkpoint": 0, "vertex_from": "177", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.127041826Z" + "timestamp": "2025-11-27T04:01:56.65609-08:00" }, { "operation": "add_edge", - "rtt_ns": 956357, - "rtt_ms": 0.956357, + "rtt_ns": 1495959, + "rtt_ms": 1.495959, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:58.127065306Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.656149-08:00" }, { "operation": "add_edge", - "rtt_ns": 874617, - "rtt_ms": 0.874617, + "rtt_ns": 1778416, + "rtt_ms": 1.778416, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:58.127153566Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.656301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222506, - "rtt_ms": 1.222506, + "rtt_ns": 1800209, + "rtt_ms": 1.800209, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.127182736Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.656341-08:00" }, { "operation": "add_edge", - "rtt_ns": 949607, - "rtt_ms": 0.949607, + "rtt_ns": 1716000, + "rtt_ms": 1.716, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.127294455Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:56.656354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485046, - "rtt_ms": 1.485046, + "rtt_ns": 1855959, + "rtt_ms": 1.855959, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.127516125Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.65636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541016, - "rtt_ms": 1.541016, + "rtt_ns": 1326708, + "rtt_ms": 1.326708, "checkpoint": 0, "vertex_from": "177", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.127532635Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.657173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217846, - "rtt_ms": 1.217846, + "rtt_ns": 1299541, + "rtt_ms": 1.299541, "checkpoint": 0, - "vertex_from": "177", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.127564294Z" + "vertex_from": "178", + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.657449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054466, - "rtt_ms": 1.054466, + "rtt_ns": 1235708, + "rtt_ms": 1.235708, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.128239782Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.657537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213876, - "rtt_ms": 1.213876, + "rtt_ns": 1478416, + "rtt_ms": 1.478416, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.128279982Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.657833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262816, - "rtt_ms": 1.262816, + "rtt_ns": 1539250, + "rtt_ms": 1.53925, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.128305482Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.657881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815434, - "rtt_ms": 1.815434, + "rtt_ns": 1795625, + "rtt_ms": 1.795625, "checkpoint": 0, - "vertex_from": "177", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:58.128331822Z" + "vertex_from": "178", + "vertex_to": "910", + "timestamp": "2025-11-27T04:01:56.657887-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209672, - "rtt_ms": 2.209672, + "rtt_ns": 1536000, + "rtt_ms": 1.536, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.129364348Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.657897-08:00" }, { "operation": "add_edge", - "rtt_ns": 2508902, - "rtt_ms": 2.508902, + "rtt_ns": 1916417, + "rtt_ms": 1.916417, "checkpoint": 0, - "vertex_from": "178", - "vertex_to": "910", - "timestamp": "2025-11-27T01:21:58.129509088Z" + "vertex_from": "177", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.657904-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376992, - "rtt_ms": 2.376992, + "rtt_ns": 2149500, + "rtt_ms": 2.1495, "checkpoint": 0, - "vertex_from": "178", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.129672527Z" + "vertex_from": "177", + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:56.657932-08:00" }, { "operation": "add_edge", - "rtt_ns": 2199242, - "rtt_ms": 2.199242, + "rtt_ns": 943500, + "rtt_ms": 0.9435, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.129717717Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:56.658826-08:00" }, { "operation": "add_edge", - "rtt_ns": 916587, - "rtt_ms": 0.916587, + "rtt_ns": 1435875, + "rtt_ms": 1.435875, "checkpoint": 0, - "vertex_from": "179", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.130426805Z" + "vertex_from": "178", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.658886-08:00" }, { "operation": "add_edge", - "rtt_ns": 3010509, - "rtt_ms": 3.010509, + "rtt_ns": 1719500, + "rtt_ms": 1.7195, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.130544394Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:56.658896-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340062, - "rtt_ms": 2.340062, + "rtt_ns": 1481625, + "rtt_ms": 1.481625, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.130581754Z" + "vertex_to": "197", + "timestamp": "2025-11-27T04:01:56.65902-08:00" }, { "operation": "add_edge", - "rtt_ns": 3056270, - "rtt_ms": 3.05627, + "rtt_ns": 1496292, + "rtt_ms": 1.496292, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.131389332Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:56.659401-08:00" }, { "operation": "add_edge", - "rtt_ns": 3828098, - "rtt_ms": 3.828098, + "rtt_ns": 1539583, + "rtt_ms": 1.539583, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "197", - "timestamp": "2025-11-27T01:21:58.131394032Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.659437-08:00" }, { "operation": "add_edge", - "rtt_ns": 3092260, - "rtt_ms": 3.09226, + "rtt_ns": 1568709, + "rtt_ms": 1.568709, "checkpoint": 0, "vertex_from": "178", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.131398962Z" + "timestamp": "2025-11-27T04:01:56.659457-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042304, - "rtt_ms": 2.042304, + "rtt_ns": 1755917, + "rtt_ms": 1.755917, "checkpoint": 0, "vertex_from": "178", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:58.131408682Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.659592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735625, - "rtt_ms": 1.735625, + "rtt_ns": 3576291, + "rtt_ms": 3.576291, "checkpoint": 0, - "vertex_from": "179", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.131410132Z" + "vertex_from": "177", + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:56.659625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703325, - "rtt_ms": 1.703325, + "rtt_ns": 1728459, + "rtt_ms": 1.728459, "checkpoint": 0, "vertex_from": "179", - "vertex_to": "793", - "timestamp": "2025-11-27T01:21:58.131422422Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.659662-08:00" }, { "operation": "add_edge", - "rtt_ns": 3156059, - "rtt_ms": 3.156059, + "rtt_ns": 1493250, + "rtt_ms": 1.49325, "checkpoint": 0, - "vertex_from": "178", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.131437151Z" + "vertex_from": "179", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.660322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099496, - "rtt_ms": 1.099496, + "rtt_ns": 1954959, + "rtt_ms": 1.954959, "checkpoint": 0, "vertex_from": "179", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:58.131528141Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.660976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694725, - "rtt_ms": 1.694725, + "rtt_ns": 1590667, + "rtt_ms": 1.590667, "checkpoint": 0, "vertex_from": "180", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.132277879Z" + "timestamp": "2025-11-27T04:01:56.660993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762235, - "rtt_ms": 1.762235, + "rtt_ns": 2342083, + "rtt_ms": 2.342083, "checkpoint": 0, "vertex_from": "179", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.132308369Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:56.66124-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054806, - "rtt_ms": 1.054806, + "rtt_ns": 1772708, + "rtt_ms": 1.772708, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "204", - "timestamp": "2025-11-27T01:21:58.132445728Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:56.661437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035007, - "rtt_ms": 1.035007, + "rtt_ns": 2061792, + "rtt_ms": 2.061792, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.132473558Z" + "vertex_to": "204", + "timestamp": "2025-11-27T04:01:56.6615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063986, - "rtt_ms": 1.063986, + "rtt_ns": 2079000, + "rtt_ms": 2.079, "checkpoint": 0, "vertex_from": "180", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.132474548Z" + "timestamp": "2025-11-27T04:01:56.661705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138186, - "rtt_ms": 1.138186, + "rtt_ns": 1464042, + "rtt_ms": 1.464042, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.132534788Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.661789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147926, - "rtt_ms": 1.147926, + "rtt_ns": 2554250, + "rtt_ms": 2.55425, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:58.132560808Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.662012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256776, - "rtt_ms": 1.256776, + "rtt_ns": 998209, + "rtt_ms": 0.998209, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.132657708Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:56.662239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914303, - "rtt_ms": 1.914303, + "rtt_ns": 2676709, + "rtt_ms": 2.676709, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.133338955Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.662269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863004, - "rtt_ms": 1.863004, + "rtt_ns": 1415167, + "rtt_ms": 1.415167, "checkpoint": 0, "vertex_from": "180", "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.133392225Z" + "timestamp": "2025-11-27T04:01:56.662409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323985, - "rtt_ms": 1.323985, + "rtt_ns": 1488375, + "rtt_ms": 1.488375, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.133634814Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.662465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550265, - "rtt_ms": 1.550265, + "rtt_ns": 1230666, + "rtt_ms": 1.230666, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:58.133830404Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:56.662731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389126, - "rtt_ms": 1.389126, + "rtt_ns": 1323666, + "rtt_ms": 1.323666, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.133864094Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.662762-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465376, - "rtt_ms": 1.465376, + "rtt_ns": 1259667, + "rtt_ms": 1.259667, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:58.133914054Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.662968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389935, - "rtt_ms": 1.389935, + "rtt_ns": 1369292, + "rtt_ms": 1.369292, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.133951863Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:01:56.66316-08:00" }, { "operation": "add_edge", - "rtt_ns": 633178, - "rtt_ms": 0.633178, + "rtt_ns": 4288500, + "rtt_ms": 4.2885, "checkpoint": 0, - "vertex_from": "181", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.133974513Z" + "vertex_from": "179", + "vertex_to": "793", + "timestamp": "2025-11-27T04:01:56.663176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519845, - "rtt_ms": 1.519845, + "rtt_ns": 1399125, + "rtt_ms": 1.399125, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "421", - "timestamp": "2025-11-27T01:21:58.133997063Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.663412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472845, - "rtt_ms": 1.472845, + "rtt_ns": 1214292, + "rtt_ms": 1.214292, "checkpoint": 0, "vertex_from": "180", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.134009273Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.663455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362445, - "rtt_ms": 1.362445, + "rtt_ns": 1265459, + "rtt_ms": 1.265459, "checkpoint": 0, "vertex_from": "180", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.134021813Z" + "timestamp": "2025-11-27T04:01:56.663537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167177, - "rtt_ms": 1.167177, + "rtt_ns": 1325667, + "rtt_ms": 1.325667, "checkpoint": 0, "vertex_from": "181", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:58.134804441Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.663793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438726, - "rtt_ms": 1.438726, + "rtt_ns": 1536750, + "rtt_ms": 1.53675, "checkpoint": 0, "vertex_from": "181", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.134833831Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.663948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643705, - "rtt_ms": 1.643705, + "rtt_ns": 1234125, + "rtt_ms": 1.234125, "checkpoint": 0, "vertex_from": "181", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.135508739Z" + "timestamp": "2025-11-27T04:01:56.664203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483936, - "rtt_ms": 1.483936, + "rtt_ns": 1653333, + "rtt_ms": 1.653333, "checkpoint": 0, - "vertex_from": "182", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:58.135509039Z" + "vertex_from": "181", + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:56.664386-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1766334, + "rtt_ms": 1.766334, + "checkpoint": 0, + "vertex_from": "181", + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.66453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609754, - "rtt_ms": 1.609754, + "rtt_ns": 1416666, + "rtt_ms": 1.416666, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.135525398Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.664593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514445, - "rtt_ms": 1.514445, + "rtt_ns": 1454916, + "rtt_ms": 1.454916, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "339", - "timestamp": "2025-11-27T01:21:58.135526158Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.664615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578985, - "rtt_ms": 1.578985, + "rtt_ns": 1302667, + "rtt_ms": 1.302667, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.135531698Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:56.665096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711644, - "rtt_ms": 1.711644, + "rtt_ns": 1752250, + "rtt_ms": 1.75225, "checkpoint": 0, - "vertex_from": "181", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.135543238Z" + "vertex_from": "182", + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:56.665165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568955, - "rtt_ms": 1.568955, + "rtt_ns": 1629250, + "rtt_ms": 1.62925, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:58.135544728Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:01:56.665167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553755, - "rtt_ms": 1.553755, + "rtt_ns": 1727500, + "rtt_ms": 1.7275, "checkpoint": 0, "vertex_from": "182", "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.135552768Z" + "timestamp": "2025-11-27T04:01:56.665183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563315, - "rtt_ms": 1.563315, + "rtt_ns": 1236666, + "rtt_ms": 1.236666, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "605", - "timestamp": "2025-11-27T01:21:58.136404526Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.665186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639905, - "rtt_ms": 1.639905, + "rtt_ns": 1100542, + "rtt_ms": 1.100542, "checkpoint": 0, "vertex_from": "182", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.136446836Z" + "vertex_to": "605", + "timestamp": "2025-11-27T04:01:56.665305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051087, - "rtt_ms": 1.051087, + "rtt_ns": 1360458, + "rtt_ms": 1.360458, "checkpoint": 0, - "vertex_from": "184", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.136595465Z" + "vertex_from": "182", + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:56.665747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577785, - "rtt_ms": 1.577785, + "rtt_ns": 1225834, + "rtt_ms": 1.225834, "checkpoint": 0, "vertex_from": "184", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.137089504Z" + "timestamp": "2025-11-27T04:01:56.665759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596925, - "rtt_ms": 1.596925, + "rtt_ns": 1329000, + "rtt_ms": 1.329, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.137123883Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.666495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653465, - "rtt_ms": 1.653465, + "rtt_ns": 1207375, + "rtt_ms": 1.207375, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.137199513Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.666513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748224, - "rtt_ms": 1.748224, + "rtt_ns": 1684500, + "rtt_ms": 1.6845, "checkpoint": 0, - "vertex_from": "182", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:58.137258713Z" + "vertex_from": "184", + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:56.666783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757385, - "rtt_ms": 1.757385, + "rtt_ns": 2203834, + "rtt_ms": 2.203834, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.137285983Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.666799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833565, - "rtt_ms": 1.833565, + "rtt_ns": 2282417, + "rtt_ms": 2.282417, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:58.137367563Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.666899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812985, - "rtt_ms": 1.812985, + "rtt_ns": 1718583, + "rtt_ms": 1.718583, "checkpoint": 0, "vertex_from": "184", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.137369153Z" + "timestamp": "2025-11-27T04:01:56.666902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548485, - "rtt_ms": 1.548485, + "rtt_ns": 1278834, + "rtt_ms": 1.278834, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.137955021Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.667027-08:00" }, { "operation": "add_edge", - "rtt_ns": 887887, - "rtt_ms": 0.887887, + "rtt_ns": 1858625, + "rtt_ms": 1.858625, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:58.137978951Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.667028-08:00" }, { "operation": "add_edge", - "rtt_ns": 722518, - "rtt_ms": 0.722518, + "rtt_ns": 1951666, + "rtt_ms": 1.951666, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.137982011Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.667138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399706, - "rtt_ms": 1.399706, + "rtt_ns": 1416458, + "rtt_ms": 1.416458, "checkpoint": 0, "vertex_from": "184", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.137996801Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:56.667176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036027, - "rtt_ms": 1.036027, + "rtt_ns": 1933583, + "rtt_ms": 1.933583, "checkpoint": 0, "vertex_from": "184", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.13816067Z" + "timestamp": "2025-11-27T04:01:56.668429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562095, - "rtt_ms": 1.562095, + "rtt_ns": 1533000, + "rtt_ms": 1.533, "checkpoint": 0, - "vertex_from": "184", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.138763058Z" + "vertex_from": "185", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.668436-08:00" }, { "operation": "add_edge", - "rtt_ns": 2409932, - "rtt_ms": 2.409932, + "rtt_ns": 1548250, + "rtt_ms": 1.54825, "checkpoint": 0, - "vertex_from": "184", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.138857948Z" + "vertex_from": "185", + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:56.668448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585465, - "rtt_ms": 1.585465, + "rtt_ns": 1688125, + "rtt_ms": 1.688125, "checkpoint": 0, "vertex_from": "184", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.138873358Z" + "timestamp": "2025-11-27T04:01:56.668487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503335, - "rtt_ms": 1.503335, + "rtt_ns": 1568791, + "rtt_ms": 1.568791, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:58.138880748Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.668597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521765, - "rtt_ms": 1.521765, + "rtt_ns": 1494625, + "rtt_ms": 1.494625, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.138893888Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:56.668634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1536605, - "rtt_ms": 1.536605, + "rtt_ns": 1633708, + "rtt_ms": 1.633708, "checkpoint": 0, "vertex_from": "185", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.139493346Z" + "timestamp": "2025-11-27T04:01:56.668662-08:00" }, { "operation": "add_edge", - "rtt_ns": 878947, - "rtt_ms": 0.878947, + "rtt_ns": 2148417, + "rtt_ms": 2.148417, "checkpoint": 0, - "vertex_from": "185", - "vertex_to": "193", - "timestamp": "2025-11-27T01:21:58.139644535Z" + "vertex_from": "184", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.668662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567095, - "rtt_ms": 1.567095, + "rtt_ns": 1876917, + "rtt_ms": 1.876917, "checkpoint": 0, - "vertex_from": "185", - "vertex_to": "938", - "timestamp": "2025-11-27T01:21:58.139728695Z" + "vertex_from": "184", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.66866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774444, - "rtt_ms": 1.774444, + "rtt_ns": 1489167, + "rtt_ms": 1.489167, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:58.139757665Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.668666-08:00" }, { "operation": "add_edge", - "rtt_ns": 930487, - "rtt_ms": 0.930487, + "rtt_ns": 1009833, + "rtt_ms": 1.009833, "checkpoint": 0, "vertex_from": "185", "vertex_to": "198", - "timestamp": "2025-11-27T01:21:58.139812555Z" + "timestamp": "2025-11-27T04:01:56.669608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905604, - "rtt_ms": 1.905604, + "rtt_ns": 1286792, + "rtt_ms": 1.286792, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.139886275Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.669735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059327, - "rtt_ms": 1.059327, + "rtt_ns": 1564042, + "rtt_ms": 1.564042, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.139919205Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:01:56.669994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961453, - "rtt_ms": 1.961453, + "rtt_ns": 1508042, + "rtt_ms": 1.508042, "checkpoint": 0, "vertex_from": "185", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.139960394Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:56.669996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179576, - "rtt_ms": 1.179576, + "rtt_ns": 1414708, + "rtt_ms": 1.414708, "checkpoint": 0, - "vertex_from": "185", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:58.140054244Z" + "vertex_from": "186", + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.670079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241206, - "rtt_ms": 1.241206, + "rtt_ns": 1506084, + "rtt_ms": 1.506084, "checkpoint": 0, "vertex_from": "186", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.140136664Z" + "timestamp": "2025-11-27T04:01:56.67014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213946, - "rtt_ms": 1.213946, + "rtt_ns": 1507833, + "rtt_ms": 1.507833, "checkpoint": 0, "vertex_from": "186", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.140710672Z" + "vertex_to": "874", + "timestamp": "2025-11-27T04:01:56.670172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220986, - "rtt_ms": 1.220986, + "rtt_ns": 1800292, + "rtt_ms": 1.800292, "checkpoint": 0, - "vertex_from": "186", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.140981251Z" + "vertex_from": "185", + "vertex_to": "193", + "timestamp": "2025-11-27T04:01:56.670237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289056, - "rtt_ms": 1.289056, + "rtt_ns": 1594000, + "rtt_ms": 1.594, "checkpoint": 0, "vertex_from": "186", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.141019661Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.670262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372566, - "rtt_ms": 1.372566, + "rtt_ns": 1649625, + "rtt_ms": 1.649625, "checkpoint": 0, "vertex_from": "186", - "vertex_to": "874", - "timestamp": "2025-11-27T01:21:58.141020641Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.670314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140597, - "rtt_ms": 1.140597, + "rtt_ns": 1132750, + "rtt_ms": 1.13275, "checkpoint": 0, - "vertex_from": "186", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.141061131Z" + "vertex_from": "187", + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.671214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313385, - "rtt_ms": 1.313385, + "rtt_ns": 1667958, + "rtt_ms": 1.667958, "checkpoint": 0, "vertex_from": "186", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.1411279Z" + "timestamp": "2025-11-27T04:01:56.671279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285335, - "rtt_ms": 1.285335, + "rtt_ns": 1339333, + "rtt_ms": 1.339333, "checkpoint": 0, "vertex_from": "186", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.14117349Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.671335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109296, - "rtt_ms": 1.109296, + "rtt_ns": 1545875, + "rtt_ms": 1.545875, "checkpoint": 0, - "vertex_from": "188", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.14124733Z" + "vertex_from": "187", + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.671545-08:00" }, { "operation": "add_edge", - "rtt_ns": 830517, - "rtt_ms": 0.830517, + "rtt_ns": 1415750, + "rtt_ms": 1.41575, "checkpoint": 0, "vertex_from": "188", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.141851688Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.671557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181376, - "rtt_ms": 1.181376, + "rtt_ns": 1405500, + "rtt_ms": 1.4055, "checkpoint": 0, "vertex_from": "188", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.141893278Z" + "timestamp": "2025-11-27T04:01:56.671578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976974, - "rtt_ms": 1.976974, + "rtt_ns": 1412958, + "rtt_ms": 1.412958, "checkpoint": 0, - "vertex_from": "187", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.141938328Z" + "vertex_from": "188", + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.671682-08:00" }, { "operation": "add_edge", - "rtt_ns": 959627, - "rtt_ms": 0.959627, + "rtt_ns": 1366625, + "rtt_ms": 1.366625, "checkpoint": 0, "vertex_from": "188", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.141943008Z" + "vertex_to": "192", + "timestamp": "2025-11-27T04:01:56.671683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901844, - "rtt_ms": 1.901844, + "rtt_ns": 1996250, + "rtt_ms": 1.99625, "checkpoint": 0, - "vertex_from": "187", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.141958168Z" + "vertex_from": "186", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.671733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207226, - "rtt_ms": 1.207226, + "rtt_ns": 1498917, + "rtt_ms": 1.498917, "checkpoint": 0, "vertex_from": "188", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.142270147Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.671737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694864, - "rtt_ms": 1.694864, + "rtt_ns": 1502334, + "rtt_ms": 1.502334, "checkpoint": 0, - "vertex_from": "188", - "vertex_to": "192", - "timestamp": "2025-11-27T01:21:58.142716655Z" + "vertex_from": "190", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.672782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647865, - "rtt_ms": 1.647865, + "rtt_ns": 1420000, + "rtt_ms": 1.42, "checkpoint": 0, "vertex_from": "190", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.142822725Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:56.672978-08:00" }, { "operation": "add_edge", - "rtt_ns": 913617, - "rtt_ms": 0.913617, + "rtt_ns": 1327750, + "rtt_ms": 1.32775, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.142858805Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:56.673066-08:00" }, { "operation": "add_edge", - "rtt_ns": 991726, - "rtt_ms": 0.991726, + "rtt_ns": 1852083, + "rtt_ms": 1.852083, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.142953154Z" + "vertex_from": "190", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.673188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085626, - "rtt_ms": 1.085626, + "rtt_ns": 1539667, + "rtt_ms": 1.539667, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:58.143357693Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.673223-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144063, - "rtt_ms": 2.144063, + "rtt_ns": 1563458, + "rtt_ms": 1.563458, "checkpoint": 0, "vertex_from": "190", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.143393133Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:56.673246-08:00" }, { "operation": "add_edge", - "rtt_ns": 2357863, - "rtt_ms": 2.357863, + "rtt_ns": 2078542, + "rtt_ms": 2.078542, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.143488593Z" + "vertex_from": "188", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.673294-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674184, - "rtt_ms": 1.674184, + "rtt_ns": 1571042, + "rtt_ms": 1.571042, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "572", - "timestamp": "2025-11-27T01:21:58.143528592Z" + "vertex_from": "192", + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:56.673305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649914, - "rtt_ms": 1.649914, + "rtt_ns": 1761625, + "rtt_ms": 1.761625, "checkpoint": 0, "vertex_from": "190", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:58.143589852Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.673309-08:00" }, { "operation": "add_edge", - "rtt_ns": 749507, - "rtt_ms": 0.749507, + "rtt_ns": 1816500, + "rtt_ms": 1.8165, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.143609652Z" + "vertex_from": "190", + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.673395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716044, - "rtt_ms": 1.716044, + "rtt_ns": 1483541, + "rtt_ms": 1.483541, "checkpoint": 0, - "vertex_from": "190", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.143611162Z" + "vertex_from": "192", + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:56.674294-08:00" }, { "operation": "add_edge", - "rtt_ns": 936417, - "rtt_ms": 0.936417, + "rtt_ns": 1110417, + "rtt_ms": 1.110417, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:58.143654872Z" + "vertex_to": "271", + "timestamp": "2025-11-27T04:01:56.674334-08:00" }, { "operation": "add_edge", - "rtt_ns": 868087, - "rtt_ms": 0.868087, + "rtt_ns": 1091208, + "rtt_ms": 1.091208, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.143692002Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:56.67434-08:00" }, { "operation": "add_edge", - "rtt_ns": 774758, - "rtt_ms": 0.774758, + "rtt_ns": 1285458, + "rtt_ms": 1.285458, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:58.143729342Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.674353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164406, - "rtt_ms": 1.164406, + "rtt_ns": 1956084, + "rtt_ms": 1.956084, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "271", - "timestamp": "2025-11-27T01:21:58.144523879Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.675262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339606, - "rtt_ms": 1.339606, + "rtt_ns": 2298917, + "rtt_ms": 2.298917, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:58.144734159Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.675278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768114, - "rtt_ms": 1.768114, + "rtt_ns": 2106125, + "rtt_ms": 2.106125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.145257867Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:56.675295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816184, - "rtt_ms": 1.816184, + "rtt_ns": 2013041, + "rtt_ms": 2.013041, "checkpoint": 0, "vertex_from": "192", "vertex_to": "865", - "timestamp": "2025-11-27T01:21:58.145407316Z" + "timestamp": "2025-11-27T04:01:56.675323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817884, - "rtt_ms": 1.817884, + "rtt_ns": 1954917, + "rtt_ms": 1.954917, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:58.145430396Z" + "vertex_to": "395", + "timestamp": "2025-11-27T04:01:56.675351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696414, - "rtt_ms": 1.696414, + "rtt_ns": 2125208, + "rtt_ms": 2.125208, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.145434926Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.67542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857984, - "rtt_ms": 1.857984, + "rtt_ns": 1909125, + "rtt_ms": 1.909125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "395", - "timestamp": "2025-11-27T01:21:58.145469546Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:56.676204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944734, - "rtt_ms": 1.944734, + "rtt_ns": 1990292, + "rtt_ms": 1.990292, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.145474356Z" + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:56.676326-08:00" }, { "operation": "add_edge", - "rtt_ns": 2255643, - "rtt_ms": 2.255643, + "rtt_ns": 1048041, + "rtt_ms": 1.048041, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "709", - "timestamp": "2025-11-27T01:21:58.145912145Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.676344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2683431, - "rtt_ms": 2.683431, + "rtt_ns": 1257041, + "rtt_ms": 1.257041, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:58.146376433Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:56.676536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879304, - "rtt_ms": 1.879304, + "rtt_ns": 2219375, + "rtt_ms": 2.219375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:58.146404983Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:56.676562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669015, - "rtt_ms": 1.669015, + "rtt_ns": 1319334, + "rtt_ms": 1.319334, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.147105311Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:56.676582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217266, - "rtt_ms": 1.217266, + "rtt_ns": 2243750, + "rtt_ms": 2.24375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:58.147131651Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:56.676597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886074, - "rtt_ms": 1.886074, + "rtt_ns": 1455375, + "rtt_ms": 1.455375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.147145741Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.676809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331083, - "rtt_ms": 2.331083, + "rtt_ns": 1489708, + "rtt_ms": 1.489708, "checkpoint": 0, "vertex_from": "192", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.147739619Z" + "timestamp": "2025-11-27T04:01:56.676814-08:00" }, { "operation": "add_edge", - "rtt_ns": 3120120, - "rtt_ms": 3.12012, + "rtt_ns": 1574000, + "rtt_ms": 1.574, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:58.147855129Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.676995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2409213, - "rtt_ms": 2.409213, + "rtt_ns": 1155833, + "rtt_ms": 1.155833, "checkpoint": 0, "vertex_from": "192", "vertex_to": "624", - "timestamp": "2025-11-27T01:21:58.147885059Z" + "timestamp": "2025-11-27T04:01:56.677482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2416003, - "rtt_ms": 2.416003, + "rtt_ns": 1454709, + "rtt_ms": 1.454709, "checkpoint": 0, "vertex_from": "192", "vertex_to": "813", - "timestamp": "2025-11-27T01:21:58.147887319Z" + "timestamp": "2025-11-27T04:01:56.677659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481016, - "rtt_ms": 1.481016, + "rtt_ns": 1215292, + "rtt_ms": 1.215292, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.147887659Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.677798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527105, - "rtt_ms": 1.527105, + "rtt_ns": 1377958, + "rtt_ms": 1.377958, "checkpoint": 0, "vertex_from": "192", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.147904678Z" + "timestamp": "2025-11-27T04:01:56.677916-08:00" }, { "operation": "add_edge", - "rtt_ns": 2481932, - "rtt_ms": 2.481932, + "rtt_ns": 1405625, + "rtt_ms": 1.405625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.147914038Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.678004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322016, - "rtt_ms": 1.322016, + "rtt_ns": 1713125, + "rtt_ms": 1.713125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.148470687Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:56.678058-08:00" }, { "operation": "add_edge", - "rtt_ns": 732578, - "rtt_ms": 0.732578, + "rtt_ns": 1494417, + "rtt_ms": 1.494417, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.148473817Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.678058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520445, - "rtt_ms": 1.520445, + "rtt_ns": 1349584, + "rtt_ms": 1.349584, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.148628056Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:56.67816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530575, - "rtt_ms": 1.530575, + "rtt_ns": 1465458, + "rtt_ms": 1.465458, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.148665166Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.678281-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481645, - "rtt_ms": 1.481645, + "rtt_ns": 1360916, + "rtt_ms": 1.360916, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "228", - "timestamp": "2025-11-27T01:21:58.149370614Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:56.679021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540746, - "rtt_ms": 1.540746, + "rtt_ns": 1185459, + "rtt_ms": 1.185459, "checkpoint": 0, "vertex_from": "192", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.149447244Z" + "timestamp": "2025-11-27T04:01:56.679103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571935, - "rtt_ms": 1.571935, + "rtt_ns": 1386709, + "rtt_ms": 1.386709, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:58.149460704Z" + "vertex_to": "228", + "timestamp": "2025-11-27T04:01:56.679186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843164, - "rtt_ms": 1.843164, + "rtt_ns": 1719792, + "rtt_ms": 1.719792, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.149700003Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.679203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739074, - "rtt_ms": 1.739074, + "rtt_ns": 2364500, + "rtt_ms": 2.3645, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "241", - "timestamp": "2025-11-27T01:21:58.150211321Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.679361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2453173, - "rtt_ms": 2.453173, + "rtt_ns": 1470084, + "rtt_ms": 1.470084, "checkpoint": 0, "vertex_from": "192", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.150368741Z" + "timestamp": "2025-11-27T04:01:56.679474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825474, - "rtt_ms": 1.825474, + "rtt_ns": 1611250, + "rtt_ms": 1.61125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:58.1504918Z" + "vertex_to": "241", + "timestamp": "2025-11-27T04:01:56.679671-08:00" }, { "operation": "add_edge", - "rtt_ns": 2069554, - "rtt_ms": 2.069554, + "rtt_ns": 1436542, + "rtt_ms": 1.436542, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "198", - "timestamp": "2025-11-27T01:21:58.15069933Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:56.679718-08:00" }, { "operation": "add_edge", - "rtt_ns": 2951730, - "rtt_ms": 2.95173, + "rtt_ns": 1697459, + "rtt_ms": 1.697459, "checkpoint": 0, "vertex_from": "192", "vertex_to": "992", - "timestamp": "2025-11-27T01:21:58.151427707Z" + "timestamp": "2025-11-27T04:01:56.679758-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034113, - "rtt_ms": 2.034113, + "rtt_ns": 1669125, + "rtt_ms": 1.669125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.151496027Z" + "vertex_to": "198", + "timestamp": "2025-11-27T04:01:56.67983-08:00" }, { "operation": "add_edge", - "rtt_ns": 3660298, - "rtt_ms": 3.660298, + "rtt_ns": 1089166, + "rtt_ms": 1.089166, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.151547787Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.680808-08:00" }, { "operation": "add_edge", - "rtt_ns": 2193603, - "rtt_ms": 2.193603, + "rtt_ns": 1502959, + "rtt_ms": 1.502959, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.151565007Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:01:56.680979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165763, - "rtt_ms": 2.165763, + "rtt_ns": 1164625, + "rtt_ms": 1.164625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "221", - "timestamp": "2025-11-27T01:21:58.151615977Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.680996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976534, - "rtt_ms": 1.976534, + "rtt_ns": 2025375, + "rtt_ms": 2.025375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:58.151678127Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.681047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512605, - "rtt_ms": 1.512605, + "rtt_ns": 1982500, + "rtt_ms": 1.9825, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.151725296Z" + "vertex_to": "221", + "timestamp": "2025-11-27T04:01:56.681089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374615, - "rtt_ms": 1.374615, + "rtt_ns": 1903792, + "rtt_ms": 1.903792, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "358", - "timestamp": "2025-11-27T01:21:58.151744846Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:56.681108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102596, - "rtt_ms": 1.102596, + "rtt_ns": 1443041, + "rtt_ms": 1.443041, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.151802846Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.681202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390866, - "rtt_ms": 1.390866, + "rtt_ns": 1852542, + "rtt_ms": 1.852542, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.151883636Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.681216-08:00" }, { "operation": "add_edge", - "rtt_ns": 981787, - "rtt_ms": 0.981787, + "rtt_ns": 1799250, + "rtt_ms": 1.79925, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.152478644Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:56.681471-08:00" }, { "operation": "add_edge", - "rtt_ns": 957327, - "rtt_ms": 0.957327, + "rtt_ns": 2368125, + "rtt_ms": 2.368125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:58.152507194Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.681555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085037, - "rtt_ms": 1.085037, + "rtt_ns": 1399792, + "rtt_ms": 1.399792, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.152514374Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:56.682209-08:00" }, { "operation": "add_edge", - "rtt_ns": 967707, - "rtt_ms": 0.967707, + "rtt_ns": 1185084, + "rtt_ms": 1.185084, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.152533934Z" + "vertex_to": "814", + "timestamp": "2025-11-27T04:01:56.682293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062866, - "rtt_ms": 1.062866, + "rtt_ns": 1294291, + "rtt_ms": 1.294291, "checkpoint": 0, "vertex_from": "192", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.152742363Z" + "timestamp": "2025-11-27T04:01:56.682342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091407, - "rtt_ms": 1.091407, + "rtt_ns": 1438666, + "rtt_ms": 1.438666, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "814", - "timestamp": "2025-11-27T01:21:58.152838723Z" + "vertex_to": "214", + "timestamp": "2025-11-27T04:01:56.682529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216166, - "rtt_ms": 1.216166, + "rtt_ns": 1613375, + "rtt_ms": 1.613375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "214", - "timestamp": "2025-11-27T01:21:58.152942512Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.682593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820834, - "rtt_ms": 1.820834, + "rtt_ns": 1438291, + "rtt_ms": 1.438291, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.153438131Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:56.682655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757464, - "rtt_ms": 1.757464, + "rtt_ns": 1470208, + "rtt_ms": 1.470208, "checkpoint": 0, "vertex_from": "192", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.15356123Z" + "timestamp": "2025-11-27T04:01:56.682675-08:00" }, { "operation": "add_edge", - "rtt_ns": 980597, - "rtt_ms": 0.980597, + "rtt_ns": 1489750, + "rtt_ms": 1.48975, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:58.15372446Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:56.682962-08:00" }, { "operation": "add_edge", - "rtt_ns": 2162193, - "rtt_ms": 2.162193, + "rtt_ns": 1475083, + "rtt_ms": 1.475083, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:58.154047529Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:56.683031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281316, - "rtt_ms": 1.281316, + "rtt_ns": 2055000, + "rtt_ms": 2.055, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:58.154224848Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.683051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694814, - "rtt_ms": 1.694814, + "rtt_ns": 920541, + "rtt_ms": 0.920541, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.154534587Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:56.683264-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163132, - "rtt_ms": 2.163132, + "rtt_ns": 1390667, + "rtt_ms": 1.390667, "checkpoint": 0, "vertex_from": "192", "vertex_to": "482", - "timestamp": "2025-11-27T01:21:58.154680176Z" + "timestamp": "2025-11-27T04:01:56.6836-08:00" }, { "operation": "add_edge", - "rtt_ns": 993586, - "rtt_ms": 0.993586, + "rtt_ns": 1684125, + "rtt_ms": 1.684125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:58.154719026Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.68436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191306, - "rtt_ms": 1.191306, + "rtt_ns": 1450250, + "rtt_ms": 1.45025, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.154754256Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:56.684413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2365212, - "rtt_ms": 2.365212, + "rtt_ns": 1378125, + "rtt_ms": 1.378125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.154844916Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:56.684431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483345, - "rtt_ms": 1.483345, + "rtt_ns": 1399250, + "rtt_ms": 1.39925, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.154923026Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:56.684433-08:00" }, { "operation": "add_edge", - "rtt_ns": 2435461, - "rtt_ms": 2.435461, + "rtt_ns": 1840834, + "rtt_ms": 1.840834, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.154971835Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.684497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2604391, - "rtt_ms": 2.604391, + "rtt_ns": 1916750, + "rtt_ms": 1.91675, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:58.155114135Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:56.684511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617454, - "rtt_ms": 1.617454, + "rtt_ns": 2218958, + "rtt_ms": 2.218958, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:58.155666183Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.684513-08:00" }, { "operation": "add_edge", - "rtt_ns": 796148, - "rtt_ms": 0.796148, + "rtt_ns": 1371750, + "rtt_ms": 1.37175, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.155769613Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:56.684637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061277, - "rtt_ms": 1.061277, + "rtt_ns": 2148125, + "rtt_ms": 2.148125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "779", - "timestamp": "2025-11-27T01:21:58.155781793Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.684678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582675, - "rtt_ms": 1.582675, + "rtt_ns": 1970916, + "rtt_ms": 1.970916, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:58.155809313Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.685572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313846, - "rtt_ms": 1.313846, + "rtt_ns": 1433959, + "rtt_ms": 1.433959, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:58.155850343Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:01:56.685866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546405, - "rtt_ms": 1.546405, + "rtt_ns": 1589792, + "rtt_ms": 1.589792, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "630", - "timestamp": "2025-11-27T01:21:58.156473781Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:01:56.68595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689874, - "rtt_ms": 1.689874, + "rtt_ns": 1596750, + "rtt_ms": 1.59675, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "721", - "timestamp": "2025-11-27T01:21:58.15653586Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:56.686011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870534, - "rtt_ms": 1.870534, + "rtt_ns": 1575708, + "rtt_ms": 1.575708, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.15655203Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.686089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520405, - "rtt_ms": 1.520405, + "rtt_ns": 1632042, + "rtt_ms": 1.632042, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "940", - "timestamp": "2025-11-27T01:21:58.15663628Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.68613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944964, - "rtt_ms": 1.944964, + "rtt_ns": 1632917, + "rtt_ms": 1.632917, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "412", - "timestamp": "2025-11-27T01:21:58.15670058Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:01:56.686144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012177, - "rtt_ms": 1.012177, + "rtt_ns": 1571125, + "rtt_ms": 1.571125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "790", - "timestamp": "2025-11-27T01:21:58.15679544Z" + "vertex_to": "655", + "timestamp": "2025-11-27T04:01:56.686209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142827, - "rtt_ms": 1.142827, + "rtt_ns": 2041500, + "rtt_ms": 2.0415, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.15681046Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:01:56.686475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529835, - "rtt_ms": 1.529835, + "rtt_ns": 2054750, + "rtt_ms": 2.05475, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.157381548Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:01:56.686737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631155, - "rtt_ms": 1.631155, + "rtt_ns": 1519333, + "rtt_ms": 1.519333, "checkpoint": 0, "vertex_from": "192", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.157443228Z" + "timestamp": "2025-11-27T04:01:56.687092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734194, - "rtt_ms": 1.734194, + "rtt_ns": 1832791, + "rtt_ms": 1.832791, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "655", - "timestamp": "2025-11-27T01:21:58.157505087Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:56.6877-08:00" }, { "operation": "add_edge", - "rtt_ns": 885347, - "rtt_ms": 0.885347, + "rtt_ns": 1263000, + "rtt_ms": 1.263, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:58.157523557Z" + "vertex_to": "205", + "timestamp": "2025-11-27T04:01:56.687739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286696, - "rtt_ms": 1.286696, + "rtt_ns": 1657125, + "rtt_ms": 1.657125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.157840066Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.687868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400576, - "rtt_ms": 1.400576, + "rtt_ns": 1928791, + "rtt_ms": 1.928791, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:58.157938316Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.68788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500085, - "rtt_ms": 1.500085, + "rtt_ns": 1869541, + "rtt_ms": 1.869541, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.157977646Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:56.687881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352396, - "rtt_ms": 1.352396, + "rtt_ns": 1770125, + "rtt_ms": 1.770125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "553", - "timestamp": "2025-11-27T01:21:58.158054806Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:56.687901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246916, - "rtt_ms": 1.246916, + "rtt_ns": 1206041, + "rtt_ms": 1.206041, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "205", - "timestamp": "2025-11-27T01:21:58.158058876Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:56.687944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1323175, - "rtt_ms": 1.323175, + "rtt_ns": 1878584, + "rtt_ms": 1.878584, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.158121395Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:56.688023-08:00" }, { "operation": "add_edge", - "rtt_ns": 803747, - "rtt_ms": 0.803747, + "rtt_ns": 1950750, + "rtt_ms": 1.95075, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:58.158187545Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.688041-08:00" }, { "operation": "add_edge", - "rtt_ns": 751618, - "rtt_ms": 0.751618, + "rtt_ns": 1797042, + "rtt_ms": 1.797042, "checkpoint": 0, "vertex_from": "192", "vertex_to": "208", - "timestamp": "2025-11-27T01:21:58.158196645Z" + "timestamp": "2025-11-27T04:01:56.68889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032107, - "rtt_ms": 1.032107, + "rtt_ns": 1235625, + "rtt_ms": 1.235625, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:58.158557394Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:56.689137-08:00" }, { "operation": "add_edge", - "rtt_ns": 926597, - "rtt_ms": 0.926597, + "rtt_ns": 2004375, + "rtt_ms": 2.004375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "565", - "timestamp": "2025-11-27T01:21:58.158866733Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:56.689705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102797, - "rtt_ms": 1.102797, + "rtt_ns": 1978375, + "rtt_ms": 1.978375, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.158944223Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:56.689718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531615, - "rtt_ms": 1.531615, + "rtt_ns": 1850083, + "rtt_ms": 1.850083, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:58.159038052Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.689721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562635, - "rtt_ms": 1.562635, + "rtt_ns": 1912000, + "rtt_ms": 1.912, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:58.159618621Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:56.689794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721094, - "rtt_ms": 1.721094, + "rtt_ns": 1992250, + "rtt_ms": 1.99225, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.15978166Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:56.689873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254016, - "rtt_ms": 1.254016, + "rtt_ns": 1854417, + "rtt_ms": 1.854417, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.15981313Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.689879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847314, - "rtt_ms": 1.847314, + "rtt_ns": 1946000, + "rtt_ms": 1.946, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:58.15982619Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.68989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665005, - "rtt_ms": 1.665005, + "rtt_ns": 2011125, + "rtt_ms": 2.011125, "checkpoint": 0, "vertex_from": "192", "vertex_to": "369", - "timestamp": "2025-11-27T01:21:58.15985397Z" + "timestamp": "2025-11-27T04:01:56.690053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660055, - "rtt_ms": 1.660055, + "rtt_ns": 1149000, + "rtt_ms": 1.149, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:58.15985855Z" + "vertex_to": "459", + "timestamp": "2025-11-27T04:01:56.690869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1768955, - "rtt_ms": 1.768955, + "rtt_ns": 1128833, + "rtt_ms": 1.128833, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.15989146Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.691008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1199066, - "rtt_ms": 1.199066, + "rtt_ns": 1365834, + "rtt_ms": 1.365834, "checkpoint": 0, "vertex_from": "192", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.160067429Z" + "timestamp": "2025-11-27T04:01:56.691072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1109766, - "rtt_ms": 1.109766, + "rtt_ns": 1985666, + "rtt_ms": 1.985666, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.160729467Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.691126-08:00" }, { "operation": "add_edge", - "rtt_ns": 971537, - "rtt_ms": 0.971537, + "rtt_ns": 1437583, + "rtt_ms": 1.437583, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.160754497Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.691232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718165, - "rtt_ms": 1.718165, + "rtt_ns": 1671625, + "rtt_ms": 1.671625, "checkpoint": 0, "vertex_from": "192", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:58.160758357Z" + "timestamp": "2025-11-27T04:01:56.691393-08:00" }, { "operation": "add_edge", - "rtt_ns": 956487, - "rtt_ms": 0.956487, + "rtt_ns": 1551666, + "rtt_ms": 1.551666, "checkpoint": 0, "vertex_from": "192", "vertex_to": "406", - "timestamp": "2025-11-27T01:21:58.160784107Z" + "timestamp": "2025-11-27T04:01:56.691443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113436, - "rtt_ms": 1.113436, + "rtt_ns": 2597125, + "rtt_ms": 2.597125, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.160929356Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:56.691488-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002443, - "rtt_ms": 2.002443, + "rtt_ns": 1557791, + "rtt_ms": 1.557791, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "459", - "timestamp": "2025-11-27T01:21:58.160948676Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.691611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833684, - "rtt_ms": 1.833684, + "rtt_ns": 1884833, + "rtt_ms": 1.884833, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "620", - "timestamp": "2025-11-27T01:21:58.161693614Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.691759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816474, - "rtt_ms": 1.816474, + "rtt_ns": 1377666, + "rtt_ms": 1.377666, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.161709144Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:01:56.692248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877814, - "rtt_ms": 1.877814, + "rtt_ns": 1857958, + "rtt_ms": 1.857958, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.161732844Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:01:56.692985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949344, - "rtt_ms": 1.949344, + "rtt_ns": 1545125, + "rtt_ms": 1.545125, + "checkpoint": 0, + "vertex_from": "193", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.693034-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1998458, + "rtt_ms": 1.998458, "checkpoint": 0, "vertex_from": "192", "vertex_to": "212", - "timestamp": "2025-11-27T01:21:58.162018163Z" + "timestamp": "2025-11-27T04:01:56.693071-08:00" }, { "operation": "add_edge", - "rtt_ns": 921297, - "rtt_ms": 0.921297, + "rtt_ns": 2209750, + "rtt_ms": 2.20975, "checkpoint": 0, - "vertex_from": "193", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.162617101Z" + "vertex_from": "192", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.693221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712515, - "rtt_ms": 1.712515, + "rtt_ns": 1992375, + "rtt_ms": 1.992375, "checkpoint": 0, - "vertex_from": "193", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.162644201Z" + "vertex_from": "192", + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.693387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899174, - "rtt_ms": 1.899174, + "rtt_ns": 2305833, + "rtt_ms": 2.305833, "checkpoint": 0, "vertex_from": "192", "vertex_to": "892", - "timestamp": "2025-11-27T01:21:58.162655691Z" + "timestamp": "2025-11-27T04:01:56.69354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796855, - "rtt_ms": 1.796855, + "rtt_ns": 2161291, + "rtt_ms": 2.161291, "checkpoint": 0, "vertex_from": "193", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.162747391Z" + "timestamp": "2025-11-27T04:01:56.693775-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076683, - "rtt_ms": 2.076683, + "rtt_ns": 2389500, + "rtt_ms": 2.3895, "checkpoint": 0, "vertex_from": "192", - "vertex_to": "563", - "timestamp": "2025-11-27T01:21:58.16280883Z" + "vertex_to": "842", + "timestamp": "2025-11-27T04:01:56.693833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1097316, - "rtt_ms": 1.097316, + "rtt_ns": 1038708, + "rtt_ms": 1.038708, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.16283134Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.694429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230686, - "rtt_ms": 1.230686, + "rtt_ns": 2631875, + "rtt_ms": 2.631875, "checkpoint": 0, "vertex_from": "193", "vertex_to": "418", - "timestamp": "2025-11-27T01:21:58.16294124Z" + "timestamp": "2025-11-27T04:01:56.694882-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274253, - "rtt_ms": 2.274253, + "rtt_ns": 1869917, + "rtt_ms": 1.869917, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.16303492Z" + "vertex_from": "193", + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:56.694905-08:00" }, { "operation": "add_edge", - "rtt_ns": 2274653, - "rtt_ms": 2.274653, + "rtt_ns": 1687209, + "rtt_ms": 1.687209, "checkpoint": 0, - "vertex_from": "192", - "vertex_to": "842", - "timestamp": "2025-11-27T01:21:58.1630602Z" + "vertex_from": "193", + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:56.694909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428175, - "rtt_ms": 1.428175, + "rtt_ns": 3175375, + "rtt_ms": 3.175375, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.164046456Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.694935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178823, - "rtt_ms": 2.178823, + "rtt_ns": 1921000, + "rtt_ms": 1.921, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:58.164198326Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.694993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857784, - "rtt_ms": 1.857784, + "rtt_ns": 1305584, + "rtt_ms": 1.305584, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.164606995Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:56.695081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1994544, - "rtt_ms": 1.994544, + "rtt_ns": 2170083, + "rtt_ms": 2.170083, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:58.164639995Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.695157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903054, - "rtt_ms": 1.903054, + "rtt_ns": 1872084, + "rtt_ms": 1.872084, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.164735504Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.695413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2083853, - "rtt_ms": 2.083853, + "rtt_ns": 1223917, + "rtt_ms": 1.223917, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.164741934Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:56.695654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963224, - "rtt_ms": 1.963224, + "rtt_ns": 2069166, + "rtt_ms": 2.069166, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:58.164772784Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.695903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1865204, - "rtt_ms": 1.865204, + "rtt_ns": 1216416, + "rtt_ms": 1.216416, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:58.164807264Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.696299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797354, - "rtt_ms": 1.797354, + "rtt_ns": 1453334, + "rtt_ms": 1.453334, "checkpoint": 0, "vertex_from": "193", "vertex_to": "691", - "timestamp": "2025-11-27T01:21:58.164858764Z" + "timestamp": "2025-11-27T04:01:56.696362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175216, - "rtt_ms": 1.175216, + "rtt_ns": 1541709, + "rtt_ms": 1.541709, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:58.165382392Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:56.696425-08:00" }, { "operation": "add_edge", - "rtt_ns": 2362952, - "rtt_ms": 2.362952, + "rtt_ns": 1557334, + "rtt_ms": 1.557334, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.165399002Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.696468-08:00" }, { "operation": "add_edge", - "rtt_ns": 812258, - "rtt_ms": 0.812258, + "rtt_ns": 1180667, + "rtt_ms": 1.180667, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.165453492Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.696595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671425, - "rtt_ms": 1.671425, + "rtt_ns": 1841917, + "rtt_ms": 1.841917, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.165719321Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.696836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635995, - "rtt_ms": 1.635995, + "rtt_ns": 1887000, + "rtt_ms": 1.887, "checkpoint": 0, "vertex_from": "193", "vertex_to": "521", - "timestamp": "2025-11-27T01:21:58.166372649Z" + "timestamp": "2025-11-27T04:01:56.697044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513885, - "rtt_ms": 1.513885, + "rtt_ns": 2119708, + "rtt_ms": 2.119708, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.166373369Z" + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:56.697056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640885, - "rtt_ms": 1.640885, + "rtt_ns": 1546417, + "rtt_ms": 1.546417, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.166384479Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:01:56.697203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617615, - "rtt_ms": 1.617615, + "rtt_ns": 1427000, + "rtt_ms": 1.427, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "570", - "timestamp": "2025-11-27T01:21:58.166392119Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.697853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803974, - "rtt_ms": 1.803974, + "rtt_ns": 1743875, + "rtt_ms": 1.743875, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.166413179Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.698045-08:00" }, { "operation": "add_edge", - "rtt_ns": 2336352, - "rtt_ms": 2.336352, + "rtt_ns": 1543083, + "rtt_ms": 1.543083, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.167144706Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.69814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869273, - "rtt_ms": 1.869273, + "rtt_ns": 2275125, + "rtt_ms": 2.275125, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "311", - "timestamp": "2025-11-27T01:21:58.167324635Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.69818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955023, - "rtt_ms": 1.955023, + "rtt_ns": 1840209, + "rtt_ms": 1.840209, "checkpoint": 0, "vertex_from": "193", "vertex_to": "812", - "timestamp": "2025-11-27T01:21:58.167339045Z" + "timestamp": "2025-11-27T04:01:56.698203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958193, - "rtt_ms": 1.958193, + "rtt_ns": 1371709, + "rtt_ms": 1.371709, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.167358305Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:56.698209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740044, - "rtt_ms": 1.740044, + "rtt_ns": 1811417, + "rtt_ms": 1.811417, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.167461415Z" + "vertex_to": "311", + "timestamp": "2025-11-27T04:01:56.69828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333385, - "rtt_ms": 1.333385, + "rtt_ns": 1365209, + "rtt_ms": 1.365209, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.167748664Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:56.698569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937563, - "rtt_ms": 1.937563, + "rtt_ns": 1627041, + "rtt_ms": 1.627041, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.168312242Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.698684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947013, - "rtt_ms": 1.947013, + "rtt_ns": 1787000, + "rtt_ms": 1.787, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:58.168340752Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.698833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203376, - "rtt_ms": 1.203376, + "rtt_ns": 1042416, + "rtt_ms": 1.042416, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.168350002Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:56.698896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977143, - "rtt_ms": 1.977143, + "rtt_ns": 1815959, + "rtt_ms": 1.815959, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.168363342Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:56.700501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036067, - "rtt_ms": 1.036067, + "rtt_ns": 2427542, + "rtt_ms": 2.427542, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.168376232Z" + "vertex_to": "194", + "timestamp": "2025-11-27T04:01:56.700631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1022127, - "rtt_ms": 1.022127, + "rtt_ns": 2377083, + "rtt_ms": 2.377083, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "194", - "timestamp": "2025-11-27T01:21:58.168382242Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.700658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061757, - "rtt_ms": 1.061757, + "rtt_ns": 2494042, + "rtt_ms": 2.494042, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.168388612Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.700675-08:00" }, { "operation": "add_edge", - "rtt_ns": 2896140, - "rtt_ms": 2.89614, + "rtt_ns": 2533917, + "rtt_ms": 2.533917, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:58.169270179Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.700677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140147, - "rtt_ms": 1.140147, + "rtt_ns": 2849875, + "rtt_ms": 2.849875, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.169492429Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.700896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752795, - "rtt_ms": 1.752795, + "rtt_ns": 2919625, + "rtt_ms": 2.919625, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.169503819Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:56.70149-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071323, - "rtt_ms": 2.071323, + "rtt_ns": 3308042, + "rtt_ms": 3.308042, "checkpoint": 0, "vertex_from": "193", "vertex_to": "794", - "timestamp": "2025-11-27T01:21:58.169534008Z" + "timestamp": "2025-11-27T04:01:56.701519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219716, - "rtt_ms": 1.219716, + "rtt_ns": 2750208, + "rtt_ms": 2.750208, "checkpoint": 0, "vertex_from": "193", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:58.169562068Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.701585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830674, - "rtt_ms": 1.830674, + "rtt_ns": 2776625, + "rtt_ms": 2.776625, "checkpoint": 0, "vertex_from": "193", "vertex_to": "481", - "timestamp": "2025-11-27T01:21:58.170197596Z" + "timestamp": "2025-11-27T04:01:56.701675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898004, - "rtt_ms": 1.898004, + "rtt_ns": 1536042, + "rtt_ms": 1.536042, "checkpoint": 0, - "vertex_from": "193", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:58.170216906Z" + "vertex_from": "194", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.702214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872054, - "rtt_ms": 1.872054, + "rtt_ns": 1825167, + "rtt_ms": 1.825167, "checkpoint": 0, "vertex_from": "193", "vertex_to": "595", - "timestamp": "2025-11-27T01:21:58.170250396Z" + "timestamp": "2025-11-27T04:01:56.702327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856964, - "rtt_ms": 1.856964, - "checkpoint": 0, - "vertex_from": "194", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.170251656Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1880754, - "rtt_ms": 1.880754, + "rtt_ns": 1878416, + "rtt_ms": 1.878416, "checkpoint": 0, "vertex_from": "194", "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.170266776Z" + "timestamp": "2025-11-27T04:01:56.702511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642114, - "rtt_ms": 1.642114, + "rtt_ns": 1924500, + "rtt_ms": 1.9245, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.171149653Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:56.7026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613225, - "rtt_ms": 1.613225, + "rtt_ns": 1940166, + "rtt_ms": 1.940166, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.171180003Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.702837-08:00" }, { "operation": "add_edge", - "rtt_ns": 980757, - "rtt_ms": 0.980757, + "rtt_ns": 2308333, + "rtt_ms": 2.308333, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "409", - "timestamp": "2025-11-27T01:21:58.171181213Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.702967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692014, - "rtt_ms": 1.692014, + "rtt_ns": 1074791, + "rtt_ms": 1.074791, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.171187273Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.703404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940714, - "rtt_ms": 1.940714, + "rtt_ns": 1969333, + "rtt_ms": 1.969333, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:58.171214113Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.703645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747835, - "rtt_ms": 1.747835, + "rtt_ns": 2206709, + "rtt_ms": 2.206709, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.171284033Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.703726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668095, - "rtt_ms": 1.668095, + "rtt_ns": 2260208, + "rtt_ms": 2.260208, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:58.171939681Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:01:56.703847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721745, - "rtt_ms": 1.721745, + "rtt_ns": 1263917, + "rtt_ms": 1.263917, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.171974481Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:56.703865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758685, - "rtt_ms": 1.758685, + "rtt_ns": 1766500, + "rtt_ms": 1.7665, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.171976951Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.703983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731865, - "rtt_ms": 1.731865, + "rtt_ns": 1043041, + "rtt_ms": 1.043041, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.171983821Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.704011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404826, - "rtt_ms": 1.404826, + "rtt_ns": 1215334, + "rtt_ms": 1.215334, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.172587849Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:56.704053-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486495, - "rtt_ms": 1.486495, + "rtt_ns": 1614375, + "rtt_ms": 1.614375, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:58.172668588Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:56.704126-08:00" }, { "operation": "add_edge", - "rtt_ns": 745967, - "rtt_ms": 0.745967, + "rtt_ns": 2691875, + "rtt_ms": 2.691875, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:58.172687328Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.704183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503985, - "rtt_ms": 1.503985, + "rtt_ns": 1169917, + "rtt_ms": 1.169917, "checkpoint": 0, "vertex_from": "194", "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.172692948Z" + "timestamp": "2025-11-27T04:01:56.704575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872034, - "rtt_ms": 1.872034, + "rtt_ns": 940042, + "rtt_ms": 0.940042, "checkpoint": 0, "vertex_from": "194", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.173158297Z" + "timestamp": "2025-11-27T04:01:56.704667-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007774, - "rtt_ms": 2.007774, + "rtt_ns": 912750, + "rtt_ms": 0.91275, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:58.173159567Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:56.704761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288136, - "rtt_ms": 1.288136, + "rtt_ns": 1218334, + "rtt_ms": 1.218334, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.173266727Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.704865-08:00" }, { "operation": "add_edge", - "rtt_ns": 2202413, - "rtt_ms": 2.202413, + "rtt_ns": 1434042, + "rtt_ms": 1.434042, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.173417876Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.705561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478505, - "rtt_ms": 1.478505, + "rtt_ns": 1754208, + "rtt_ms": 1.754208, "checkpoint": 0, "vertex_from": "194", "vertex_to": "709", - "timestamp": "2025-11-27T01:21:58.173454446Z" + "timestamp": "2025-11-27T04:01:56.70562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541415, - "rtt_ms": 1.541415, + "rtt_ns": 1716208, + "rtt_ms": 1.716208, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.173527866Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.705701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511906, - "rtt_ms": 1.511906, + "rtt_ns": 1706458, + "rtt_ms": 1.706458, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.174206864Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.705719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631815, - "rtt_ms": 1.631815, + "rtt_ns": 981333, + "rtt_ms": 0.981333, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:58.174221214Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.705749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623345, - "rtt_ms": 1.623345, + "rtt_ns": 1598792, + "rtt_ms": 1.598792, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.174294403Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.705782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338405, - "rtt_ms": 1.338405, + "rtt_ns": 1266750, + "rtt_ms": 1.26675, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.174607292Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.705844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266626, - "rtt_ms": 1.266626, + "rtt_ns": 1936750, + "rtt_ms": 1.93675, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.174685582Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:56.70599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533555, - "rtt_ms": 1.533555, + "rtt_ns": 1615834, + "rtt_ms": 1.615834, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.174693502Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:56.707609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1245656, - "rtt_ms": 1.245656, + "rtt_ns": 3005792, + "rtt_ms": 3.005792, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:58.174701242Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.707675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622765, - "rtt_ms": 1.622765, + "rtt_ns": 2123375, + "rtt_ms": 2.123375, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:58.175152161Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:56.707745-08:00" }, { "operation": "add_edge", - "rtt_ns": 2611402, - "rtt_ms": 2.611402, + "rtt_ns": 2236917, + "rtt_ms": 2.236917, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.17530021Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.707801-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197823, - "rtt_ms": 2.197823, + "rtt_ns": 2065042, + "rtt_ms": 2.065042, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.17535952Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:56.707815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169027, - "rtt_ms": 1.169027, + "rtt_ns": 1996750, + "rtt_ms": 1.99675, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.1754652Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:56.707843-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297365, - "rtt_ms": 1.297365, + "rtt_ns": 2125375, + "rtt_ms": 2.125375, "checkpoint": 0, "vertex_from": "194", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.175506449Z" + "timestamp": "2025-11-27T04:01:56.707845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385295, - "rtt_ms": 1.385295, + "rtt_ns": 2070584, + "rtt_ms": 2.070584, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "781", - "timestamp": "2025-11-27T01:21:58.175608149Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.707855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130647, - "rtt_ms": 1.130647, + "rtt_ns": 2158542, + "rtt_ms": 2.158542, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:58.175740089Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:56.707861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419896, - "rtt_ms": 1.419896, + "rtt_ns": 3006916, + "rtt_ms": 3.006916, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "340", - "timestamp": "2025-11-27T01:21:58.176107008Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.707872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605755, - "rtt_ms": 1.605755, + "rtt_ns": 1650291, + "rtt_ms": 1.650291, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.176309727Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.709262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160276, - "rtt_ms": 1.160276, + "rtt_ns": 2475292, + "rtt_ms": 2.475292, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "909", - "timestamp": "2025-11-27T01:21:58.176313827Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.710152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038187, - "rtt_ms": 1.038187, + "rtt_ns": 2339666, + "rtt_ms": 2.339666, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.176339817Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:01:56.710156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662125, - "rtt_ms": 1.662125, + "rtt_ns": 2425167, + "rtt_ms": 2.425167, "checkpoint": 0, "vertex_from": "194", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.176357587Z" + "vertex_to": "909", + "timestamp": "2025-11-27T04:01:56.710171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1042917, - "rtt_ms": 1.042917, + "rtt_ns": 2341750, + "rtt_ms": 2.34175, "checkpoint": 0, - "vertex_from": "194", - "vertex_to": "745", - "timestamp": "2025-11-27T01:21:58.176404347Z" + "vertex_from": "195", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.710188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190256, - "rtt_ms": 1.190256, + "rtt_ns": 2343041, + "rtt_ms": 2.343041, "checkpoint": 0, "vertex_from": "195", "vertex_to": "225", - "timestamp": "2025-11-27T01:21:58.176658396Z" + "timestamp": "2025-11-27T04:01:56.710188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166497, - "rtt_ms": 1.166497, + "rtt_ns": 2409541, + "rtt_ms": 2.409541, "checkpoint": 0, - "vertex_from": "195", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.176674086Z" + "vertex_from": "194", + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.710212-08:00" }, { "operation": "add_edge", - "rtt_ns": 911537, - "rtt_ms": 0.911537, + "rtt_ns": 2352125, + "rtt_ms": 2.352125, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.177227474Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.710214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133976, - "rtt_ms": 1.133976, + "rtt_ns": 2361083, + "rtt_ms": 2.361083, "checkpoint": 0, "vertex_from": "195", "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.177242534Z" + "timestamp": "2025-11-27T04:01:56.710235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025087, - "rtt_ms": 1.025087, + "rtt_ns": 2420083, + "rtt_ms": 2.420083, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.177336834Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.710276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028397, - "rtt_ms": 1.028397, + "rtt_ns": 1540583, + "rtt_ms": 1.540583, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.177387254Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.710805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660574, - "rtt_ms": 1.660574, + "rtt_ns": 1058833, + "rtt_ms": 1.058833, "checkpoint": 0, - "vertex_from": "195", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.177403203Z" + "vertex_from": "196", + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.711336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1081776, - "rtt_ms": 1.081776, + "rtt_ns": 1232833, + "rtt_ms": 1.232833, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.177423223Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.711422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029766, - "rtt_ms": 1.029766, + "rtt_ns": 1456625, + "rtt_ms": 1.456625, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.177435743Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.711669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848584, - "rtt_ms": 1.848584, + "rtt_ns": 1529042, + "rtt_ms": 1.529042, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.177458473Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.711688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460575, - "rtt_ms": 1.460575, + "rtt_ns": 1471209, + "rtt_ms": 1.471209, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.178120401Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:56.711708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503105, - "rtt_ms": 1.503105, + "rtt_ns": 1572125, + "rtt_ms": 1.572125, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.178178641Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.711725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257836, - "rtt_ms": 1.257836, + "rtt_ns": 1556875, + "rtt_ms": 1.556875, "checkpoint": 0, - "vertex_from": "196", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.17859595Z" + "vertex_from": "195", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.711729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270606, - "rtt_ms": 1.270606, + "rtt_ns": 1591417, + "rtt_ms": 1.591417, "checkpoint": 0, - "vertex_from": "196", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.178675719Z" + "vertex_from": "195", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.711806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460155, - "rtt_ms": 1.460155, + "rtt_ns": 1621500, + "rtt_ms": 1.6215, "checkpoint": 0, "vertex_from": "195", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:58.178704519Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.71181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369515, - "rtt_ms": 1.369515, + "rtt_ns": 1503750, + "rtt_ms": 1.50375, "checkpoint": 0, "vertex_from": "196", "vertex_to": "778", - "timestamp": "2025-11-27T01:21:58.178758439Z" + "timestamp": "2025-11-27T04:01:56.712309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415786, - "rtt_ms": 1.415786, + "rtt_ns": 1381250, + "rtt_ms": 1.38125, "checkpoint": 0, "vertex_from": "196", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.178840219Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1639055, - "rtt_ms": 1.639055, - "checkpoint": 0, - "vertex_from": "195", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.178867709Z" + "timestamp": "2025-11-27T04:01:56.712806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426856, - "rtt_ms": 1.426856, + "rtt_ns": 1111750, + "rtt_ms": 1.11175, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.178886299Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.712842-08:00" }, { "operation": "add_edge", - "rtt_ns": 779088, - "rtt_ms": 0.779088, + "rtt_ns": 1323000, + "rtt_ms": 1.323, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.178960779Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.712993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562765, - "rtt_ms": 1.562765, + "rtt_ns": 1325708, + "rtt_ms": 1.325708, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.178999548Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.713053-08:00" }, { "operation": "add_edge", - "rtt_ns": 913877, - "rtt_ms": 0.913877, + "rtt_ns": 1558750, + "rtt_ms": 1.55875, "checkpoint": 0, "vertex_from": "196", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.179035798Z" + "timestamp": "2025-11-27T04:01:56.713267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411655, - "rtt_ms": 1.411655, + "rtt_ns": 1598208, + "rtt_ms": 1.598208, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "209", - "timestamp": "2025-11-27T01:21:58.180280334Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.713287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548805, - "rtt_ms": 1.548805, + "rtt_ns": 1041625, + "rtt_ms": 1.041625, "checkpoint": 0, "vertex_from": "196", "vertex_to": "675", - "timestamp": "2025-11-27T01:21:58.180308514Z" + "timestamp": "2025-11-27T04:01:56.713352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641365, - "rtt_ms": 1.641365, + "rtt_ns": 1609584, + "rtt_ms": 1.609584, "checkpoint": 0, "vertex_from": "196", "vertex_to": "226", - "timestamp": "2025-11-27T01:21:58.180318834Z" + "timestamp": "2025-11-27T04:01:56.713416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617235, - "rtt_ms": 1.617235, + "rtt_ns": 1687416, + "rtt_ms": 1.687416, "checkpoint": 0, "vertex_from": "196", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.180322784Z" + "timestamp": "2025-11-27T04:01:56.713498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736874, - "rtt_ms": 1.736874, + "rtt_ns": 2275959, + "rtt_ms": 2.275959, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.180334214Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.713613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447425, - "rtt_ms": 1.447425, + "rtt_ns": 1164792, + "rtt_ms": 1.164792, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.180334744Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.714218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1509805, - "rtt_ms": 1.509805, + "rtt_ns": 1426667, + "rtt_ms": 1.426667, "checkpoint": 0, "vertex_from": "196", "vertex_to": "676", - "timestamp": "2025-11-27T01:21:58.180352154Z" + "timestamp": "2025-11-27T04:01:56.714233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572155, - "rtt_ms": 1.572155, + "rtt_ns": 1472500, + "rtt_ms": 1.4725, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.180572273Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.714467-08:00" }, { "operation": "add_edge", - "rtt_ns": 2163662, - "rtt_ms": 2.163662, + "rtt_ns": 1641459, + "rtt_ms": 1.641459, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.181125571Z" + "vertex_to": "209", + "timestamp": "2025-11-27T04:01:56.714484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219763, - "rtt_ms": 2.219763, + "rtt_ns": 1292875, + "rtt_ms": 1.292875, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:58.181256441Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.714646-08:00" }, { "operation": "add_edge", - "rtt_ns": 981787, - "rtt_ms": 0.981787, + "rtt_ns": 1374000, + "rtt_ms": 1.374, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.181302411Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:56.714661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075277, - "rtt_ms": 1.075277, + "rtt_ns": 1617375, + "rtt_ms": 1.617375, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "414", - "timestamp": "2025-11-27T01:21:58.181385841Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.714886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105507, - "rtt_ms": 1.105507, + "rtt_ns": 1395709, + "rtt_ms": 1.395709, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.181388031Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.714894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094306, - "rtt_ms": 1.094306, + "rtt_ns": 1545958, + "rtt_ms": 1.545958, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.18142937Z" + "vertex_to": "414", + "timestamp": "2025-11-27T04:01:56.714963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1126006, - "rtt_ms": 1.126006, + "rtt_ns": 1598083, + "rtt_ms": 1.598083, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:58.18146368Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:56.715212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1171376, - "rtt_ms": 1.171376, + "rtt_ns": 1349416, + "rtt_ms": 1.349416, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:58.18149714Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:56.715585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023663, - "rtt_ms": 2.023663, + "rtt_ns": 1374917, + "rtt_ms": 1.374917, "checkpoint": 0, "vertex_from": "196", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.182377097Z" + "timestamp": "2025-11-27T04:01:56.715842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911744, - "rtt_ms": 1.911744, + "rtt_ns": 1400208, + "rtt_ms": 1.400208, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "718", - "timestamp": "2025-11-27T01:21:58.182486927Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.716062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1201996, - "rtt_ms": 1.201996, + "rtt_ns": 1904000, + "rtt_ms": 1.904, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "497", - "timestamp": "2025-11-27T01:21:58.182506277Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.716125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894364, - "rtt_ms": 1.894364, + "rtt_ns": 1658458, + "rtt_ms": 1.658458, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.183021045Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:01:56.716143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665995, - "rtt_ms": 1.665995, + "rtt_ns": 1607125, + "rtt_ms": 1.607125, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "200", - "timestamp": "2025-11-27T01:21:58.183131165Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.716254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907754, - "rtt_ms": 1.907754, + "rtt_ns": 1375208, + "rtt_ms": 1.375208, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.183166785Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:56.71627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741395, - "rtt_ms": 1.741395, + "rtt_ns": 1429375, + "rtt_ms": 1.429375, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.183172135Z" + "vertex_to": "497", + "timestamp": "2025-11-27T04:01:56.716317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812533, - "rtt_ms": 1.812533, + "rtt_ns": 1429458, + "rtt_ms": 1.429458, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:58.183199694Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:56.716394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827673, - "rtt_ms": 1.827673, + "rtt_ns": 1363750, + "rtt_ms": 1.36375, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:58.183217554Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.716578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303825, - "rtt_ms": 1.303825, + "rtt_ns": 1669916, + "rtt_ms": 1.669916, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:58.183811542Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.717733-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395182, - "rtt_ms": 2.395182, + "rtt_ns": 1907125, + "rtt_ms": 1.907125, "checkpoint": 0, "vertex_from": "196", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.183894752Z" + "timestamp": "2025-11-27T04:01:56.71775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595795, - "rtt_ms": 1.595795, + "rtt_ns": 1434417, + "rtt_ms": 1.434417, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:58.184084202Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:56.717753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755604, - "rtt_ms": 1.755604, + "rtt_ns": 1392250, + "rtt_ms": 1.39225, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.184134331Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:56.717787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225136, - "rtt_ms": 1.225136, + "rtt_ns": 1549875, + "rtt_ms": 1.549875, "checkpoint": 0, "vertex_from": "196", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.184247391Z" + "timestamp": "2025-11-27T04:01:56.717805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522525, - "rtt_ms": 1.522525, + "rtt_ns": 1227833, + "rtt_ms": 1.227833, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.184743219Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:56.717806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720774, - "rtt_ms": 1.720774, + "rtt_ns": 1538833, + "rtt_ms": 1.538833, "checkpoint": 0, "vertex_from": "196", "vertex_to": "773", - "timestamp": "2025-11-27T01:21:58.184853589Z" + "timestamp": "2025-11-27T04:01:56.71781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104737, - "rtt_ms": 1.104737, + "rtt_ns": 1692083, + "rtt_ms": 1.692083, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "612", - "timestamp": "2025-11-27T01:21:58.184918159Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:56.717836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741915, - "rtt_ms": 1.741915, + "rtt_ns": 1725459, + "rtt_ms": 1.725459, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:58.184942809Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:56.717851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781654, - "rtt_ms": 1.781654, + "rtt_ns": 2331209, + "rtt_ms": 2.331209, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:58.184952459Z" + "vertex_to": "200", + "timestamp": "2025-11-27T04:01:56.717917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782184, - "rtt_ms": 1.782184, + "rtt_ns": 1189250, + "rtt_ms": 1.18925, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:58.184955659Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:56.718924-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1190583, + "rtt_ms": 1.190583, + "checkpoint": 0, + "vertex_from": "197", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.719044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571835, - "rtt_ms": 1.571835, + "rtt_ns": 1365583, + "rtt_ms": 1.365583, "checkpoint": 0, "vertex_from": "196", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.185660127Z" + "timestamp": "2025-11-27T04:01:56.719154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727165, - "rtt_ms": 1.727165, + "rtt_ns": 1463125, + "rtt_ms": 1.463125, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "625", - "timestamp": "2025-11-27T01:21:58.185863196Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:56.719214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654245, - "rtt_ms": 1.654245, + "rtt_ns": 1424917, + "rtt_ms": 1.424917, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.185903426Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:01:56.71923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092497, - "rtt_ms": 1.092497, + "rtt_ns": 1555208, + "rtt_ms": 1.555208, "checkpoint": 0, "vertex_from": "197", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.185948126Z" + "timestamp": "2025-11-27T04:01:56.719392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235487, - "rtt_ms": 1.235487, + "rtt_ns": 1654833, + "rtt_ms": 1.654833, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.185980666Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1126126, - "rtt_ms": 1.126126, - "checkpoint": 0, - "vertex_from": "197", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.186069765Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.719408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183646, - "rtt_ms": 1.183646, + "rtt_ns": 1760459, + "rtt_ms": 1.760459, "checkpoint": 0, - "vertex_from": "197", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.186103075Z" + "vertex_from": "196", + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.719573-08:00" }, { "operation": "add_edge", - "rtt_ns": 2235653, - "rtt_ms": 2.235653, + "rtt_ns": 1813416, + "rtt_ms": 1.813416, "checkpoint": 0, "vertex_from": "196", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.186132195Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.71962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192016, - "rtt_ms": 1.192016, + "rtt_ns": 1722084, + "rtt_ms": 1.722084, "checkpoint": 0, "vertex_from": "197", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:58.186149415Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.719639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274886, - "rtt_ms": 1.274886, + "rtt_ns": 1445500, + "rtt_ms": 1.4455, "checkpoint": 0, "vertex_from": "197", "vertex_to": "658", - "timestamp": "2025-11-27T01:21:58.186229765Z" + "timestamp": "2025-11-27T04:01:56.72037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189346, - "rtt_ms": 1.189346, + "rtt_ns": 1322709, + "rtt_ms": 1.322709, "checkpoint": 0, "vertex_from": "197", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.186851243Z" + "timestamp": "2025-11-27T04:01:56.720477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340376, - "rtt_ms": 1.340376, + "rtt_ns": 1494042, + "rtt_ms": 1.494042, "checkpoint": 0, "vertex_from": "197", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.187247652Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:56.72054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464735, - "rtt_ms": 1.464735, + "rtt_ns": 1738833, + "rtt_ms": 1.738833, "checkpoint": 0, "vertex_from": "197", "vertex_to": "804", - "timestamp": "2025-11-27T01:21:58.187329371Z" + "timestamp": "2025-11-27T04:01:56.720955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329086, - "rtt_ms": 1.329086, + "rtt_ns": 1619333, + "rtt_ms": 1.619333, "checkpoint": 0, - "vertex_from": "198", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:58.187433371Z" + "vertex_from": "197", + "vertex_to": "208", + "timestamp": "2025-11-27T04:01:56.721012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306356, - "rtt_ms": 1.306356, + "rtt_ns": 1797042, + "rtt_ms": 1.797042, "checkpoint": 0, - "vertex_from": "198", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.187439951Z" + "vertex_from": "197", + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.721028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458665, - "rtt_ms": 1.458665, + "rtt_ns": 1654292, + "rtt_ms": 1.654292, "checkpoint": 0, "vertex_from": "197", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.187441031Z" + "timestamp": "2025-11-27T04:01:56.721063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521995, - "rtt_ms": 1.521995, + "rtt_ns": 1503834, + "rtt_ms": 1.503834, "checkpoint": 0, - "vertex_from": "197", - "vertex_to": "208", - "timestamp": "2025-11-27T01:21:58.187473111Z" + "vertex_from": "198", + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.721144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198116, - "rtt_ms": 1.198116, + "rtt_ns": 1649500, + "rtt_ms": 1.6495, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.188050509Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:56.721224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076634, - "rtt_ms": 2.076634, + "rtt_ns": 1155333, + "rtt_ms": 1.155333, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:58.188148489Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.721526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124173, - "rtt_ms": 2.124173, + "rtt_ns": 1085083, + "rtt_ms": 1.085083, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.188356488Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.722157-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206023, - "rtt_ms": 2.206023, + "rtt_ns": 2894917, + "rtt_ms": 2.894917, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.188357658Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:56.722516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783265, - "rtt_ms": 1.783265, + "rtt_ns": 2006833, + "rtt_ms": 2.006833, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.189114146Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.722549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755614, - "rtt_ms": 1.755614, + "rtt_ns": 1670167, + "rtt_ms": 1.670167, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.189200105Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:56.722626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970653, - "rtt_ms": 1.970653, + "rtt_ns": 1422833, + "rtt_ms": 1.422833, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:58.189220415Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.722649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809254, - "rtt_ms": 1.809254, + "rtt_ns": 1600917, + "rtt_ms": 1.600917, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:58.189244365Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:56.722746-08:00" }, { "operation": "add_edge", - "rtt_ns": 2584002, - "rtt_ms": 2.584002, + "rtt_ns": 1238125, + "rtt_ms": 1.238125, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.190059543Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.722765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937914, - "rtt_ms": 1.937914, + "rtt_ns": 1770625, + "rtt_ms": 1.770625, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:58.190087803Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.722784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741524, - "rtt_ms": 1.741524, + "rtt_ns": 1762750, + "rtt_ms": 1.76275, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.190099492Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:56.722792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056123, - "rtt_ms": 2.056123, + "rtt_ns": 2499541, + "rtt_ms": 2.499541, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.190108382Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.72298-08:00" }, { "operation": "add_edge", - "rtt_ns": 907807, - "rtt_ms": 0.907807, + "rtt_ns": 1212292, + "rtt_ms": 1.212292, "checkpoint": 0, "vertex_from": "199", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:58.190109872Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.723763-08:00" }, { "operation": "add_edge", - "rtt_ns": 2805051, - "rtt_ms": 2.805051, + "rtt_ns": 1351916, + "rtt_ms": 1.351916, "checkpoint": 0, "vertex_from": "198", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.190246122Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.723871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151036, - "rtt_ms": 1.151036, + "rtt_ns": 1243750, + "rtt_ms": 1.24375, "checkpoint": 0, "vertex_from": "199", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.190268442Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:56.723893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913734, - "rtt_ms": 1.913734, + "rtt_ns": 1155166, + "rtt_ms": 1.155166, "checkpoint": 0, - "vertex_from": "199", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.190273762Z" + "vertex_from": "200", + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.723941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107777, - "rtt_ms": 1.107777, + "rtt_ns": 1361583, + "rtt_ms": 1.361583, "checkpoint": 0, "vertex_from": "199", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:58.190330312Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.723989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632395, - "rtt_ms": 1.632395, + "rtt_ns": 1286250, + "rtt_ms": 1.28625, "checkpoint": 0, "vertex_from": "199", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.19087835Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1958084, - "rtt_ms": 1.958084, - "checkpoint": 0, - "vertex_from": "200", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.192205986Z" + "timestamp": "2025-11-27T04:01:56.724052-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331002, - "rtt_ms": 2.331002, + "rtt_ns": 1294333, + "rtt_ms": 1.294333, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.192392455Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.724087-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155233, - "rtt_ms": 2.155233, + "rtt_ns": 2008291, + "rtt_ms": 2.008291, "checkpoint": 0, - "vertex_from": "200", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.192425145Z" + "vertex_from": "198", + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:56.724166-08:00" }, { "operation": "add_edge", - "rtt_ns": 2852781, - "rtt_ms": 2.852781, + "rtt_ns": 1965833, + "rtt_ms": 1.965833, "checkpoint": 0, - "vertex_from": "200", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.192962353Z" + "vertex_from": "199", + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:56.724713-08:00" }, { "operation": "add_edge", - "rtt_ns": 3000921, - "rtt_ms": 3.000921, + "rtt_ns": 1370958, + "rtt_ms": 1.370958, "checkpoint": 0, "vertex_from": "200", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.193113573Z" + "timestamp": "2025-11-27T04:01:56.725245-08:00" }, { "operation": "add_edge", - "rtt_ns": 2909210, - "rtt_ms": 2.90921, + "rtt_ns": 2277292, + "rtt_ms": 2.277292, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "777", - "timestamp": "2025-11-27T01:21:58.193241042Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:56.725257-08:00" }, { "operation": "add_edge", - "rtt_ns": 3044650, - "rtt_ms": 3.04465, + "rtt_ns": 1382458, + "rtt_ms": 1.382458, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.19392451Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.725326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735394, - "rtt_ms": 1.735394, + "rtt_ns": 1468542, + "rtt_ms": 1.468542, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.19394221Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.725364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033147, - "rtt_ms": 1.033147, + "rtt_ns": 1402000, + "rtt_ms": 1.402, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.19399681Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.725392-08:00" }, { "operation": "add_edge", - "rtt_ns": 3750348, - "rtt_ms": 3.750348, + "rtt_ns": 1257041, + "rtt_ms": 1.257041, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.19402529Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.725424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606985, - "rtt_ms": 1.606985, + "rtt_ns": 1401834, + "rtt_ms": 1.401834, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "819", - "timestamp": "2025-11-27T01:21:58.19403366Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.725489-08:00" }, { "operation": "add_edge", - "rtt_ns": 3938438, - "rtt_ms": 3.938438, + "rtt_ns": 1547417, + "rtt_ms": 1.547417, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "389", - "timestamp": "2025-11-27T01:21:58.19403959Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:56.725601-08:00" }, { "operation": "add_edge", - "rtt_ns": 3961417, - "rtt_ms": 3.961417, + "rtt_ns": 1847041, + "rtt_ms": 1.847041, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.1940506Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.725611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663124, - "rtt_ms": 1.663124, + "rtt_ns": 1526500, + "rtt_ms": 1.5265, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.194057379Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.726785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643175, - "rtt_ms": 1.643175, + "rtt_ns": 1440250, + "rtt_ms": 1.44025, "checkpoint": 0, "vertex_from": "200", "vertex_to": "263", - "timestamp": "2025-11-27T01:21:58.194885467Z" + "timestamp": "2025-11-27T04:01:56.726805-08:00" }, { "operation": "add_edge", - "rtt_ns": 986297, - "rtt_ms": 0.986297, + "rtt_ns": 2146209, + "rtt_ms": 2.146209, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.194929187Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.726861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947033, - "rtt_ms": 1.947033, + "rtt_ns": 1548917, + "rtt_ms": 1.548917, "checkpoint": 0, "vertex_from": "200", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.195062016Z" + "timestamp": "2025-11-27T04:01:56.726875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512435, - "rtt_ms": 1.512435, + "rtt_ns": 1518875, + "rtt_ms": 1.518875, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:58.195510255Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.726912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617214, - "rtt_ms": 1.617214, + "rtt_ns": 1374500, + "rtt_ms": 1.3745, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "232", - "timestamp": "2025-11-27T01:21:58.195657624Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.726976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659284, - "rtt_ms": 1.659284, + "rtt_ns": 1364792, + "rtt_ms": 1.364792, "checkpoint": 0, "vertex_from": "200", "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.195693894Z" + "timestamp": "2025-11-27T04:01:56.726976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769514, - "rtt_ms": 1.769514, + "rtt_ns": 1740584, + "rtt_ms": 1.740584, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.195695284Z" + "vertex_to": "819", + "timestamp": "2025-11-27T04:01:56.726987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687794, - "rtt_ms": 1.687794, + "rtt_ns": 1650792, + "rtt_ms": 1.650792, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.195714864Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.727075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676005, - "rtt_ms": 1.676005, + "rtt_ns": 1614834, + "rtt_ms": 1.614834, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.195729864Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:56.727105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671865, - "rtt_ms": 1.671865, + "rtt_ns": 1128209, + "rtt_ms": 1.128209, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.195730614Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.728116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480345, - "rtt_ms": 1.480345, + "rtt_ns": 1344959, + "rtt_ms": 1.344959, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "677", - "timestamp": "2025-11-27T01:21:58.196410692Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.728151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066767, - "rtt_ms": 1.066767, + "rtt_ns": 1566209, + "rtt_ms": 1.566209, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.196763941Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.728428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262616, - "rtt_ms": 1.262616, + "rtt_ns": 1528458, + "rtt_ms": 1.528458, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.196773541Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:56.728441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150106, - "rtt_ms": 1.150106, + "rtt_ns": 1469000, + "rtt_ms": 1.469, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.19680888Z" + "vertex_to": "694", + "timestamp": "2025-11-27T04:01:56.728446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976353, - "rtt_ms": 1.976353, + "rtt_ns": 1664666, + "rtt_ms": 1.664666, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.19686295Z" + "vertex_to": "232", + "timestamp": "2025-11-27T04:01:56.728453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553935, - "rtt_ms": 1.553935, + "rtt_ns": 1465958, + "rtt_ms": 1.465958, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:58.197285209Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.728572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667125, - "rtt_ms": 1.667125, + "rtt_ns": 1621250, + "rtt_ms": 1.62125, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.197361969Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.728598-08:00" }, { "operation": "add_edge", - "rtt_ns": 2337273, - "rtt_ms": 2.337273, + "rtt_ns": 1524292, + "rtt_ms": 1.524292, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "694", - "timestamp": "2025-11-27T01:21:58.197400179Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.728601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766344, - "rtt_ms": 1.766344, + "rtt_ns": 1724209, + "rtt_ms": 1.724209, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.197482428Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.728602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793934, - "rtt_ms": 1.793934, + "rtt_ns": 1272500, + "rtt_ms": 1.2725, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.197525468Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:56.729726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395495, - "rtt_ms": 1.395495, + "rtt_ns": 1616375, + "rtt_ms": 1.616375, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:58.197808467Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:56.730189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058296, - "rtt_ms": 1.058296, + "rtt_ns": 1755000, + "rtt_ms": 1.755, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:58.197833017Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:56.730197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281026, - "rtt_ms": 1.281026, + "rtt_ns": 2082167, + "rtt_ms": 2.082167, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.198046257Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.730511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324506, - "rtt_ms": 1.324506, + "rtt_ns": 2059542, + "rtt_ms": 2.059542, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:58.198134796Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:56.730662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335266, - "rtt_ms": 1.335266, + "rtt_ns": 2079667, + "rtt_ms": 2.079667, "checkpoint": 0, "vertex_from": "200", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.198199366Z" + "timestamp": "2025-11-27T04:01:56.73068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411055, - "rtt_ms": 1.411055, + "rtt_ns": 2086959, + "rtt_ms": 2.086959, "checkpoint": 0, "vertex_from": "200", "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.198697464Z" + "timestamp": "2025-11-27T04:01:56.730688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395505, - "rtt_ms": 1.395505, + "rtt_ns": 2578083, + "rtt_ms": 2.578083, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.198758754Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.730695-08:00" }, { "operation": "add_edge", - "rtt_ns": 762247, - "rtt_ms": 0.762247, + "rtt_ns": 2348042, + "rtt_ms": 2.348042, "checkpoint": 0, - "vertex_from": "201", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.198809834Z" + "vertex_from": "200", + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.730795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315156, - "rtt_ms": 1.315156, + "rtt_ns": 2658792, + "rtt_ms": 2.658792, "checkpoint": 0, "vertex_from": "200", - "vertex_to": "346", - "timestamp": "2025-11-27T01:21:58.198841334Z" + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:56.730812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474825, - "rtt_ms": 1.474825, + "rtt_ns": 1147083, + "rtt_ms": 1.147083, "checkpoint": 0, "vertex_from": "200", "vertex_to": "360", - "timestamp": "2025-11-27T01:21:58.198875854Z" + "timestamp": "2025-11-27T04:01:56.730874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125227, - "rtt_ms": 1.125227, + "rtt_ns": 1521250, + "rtt_ms": 1.52125, "checkpoint": 0, - "vertex_from": "201", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:58.198935104Z" + "vertex_from": "200", + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.731711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154617, - "rtt_ms": 1.154617, + "rtt_ns": 1127708, + "rtt_ms": 1.127708, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.198987974Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.731809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511276, - "rtt_ms": 1.511276, + "rtt_ns": 1137334, + "rtt_ms": 1.137334, "checkpoint": 0, - "vertex_from": "200", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.198994444Z" + "vertex_from": "201", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.731827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578525, - "rtt_ms": 1.578525, + "rtt_ns": 1328917, + "rtt_ms": 1.328917, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.199714571Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:56.731844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065157, - "rtt_ms": 1.065157, + "rtt_ns": 1689750, + "rtt_ms": 1.68975, "checkpoint": 0, - "vertex_from": "201", - "vertex_to": "245", - "timestamp": "2025-11-27T01:21:58.199767761Z" + "vertex_from": "200", + "vertex_to": "346", + "timestamp": "2025-11-27T04:01:56.731887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636945, - "rtt_ms": 1.636945, + "rtt_ns": 1203792, + "rtt_ms": 1.203792, "checkpoint": 0, "vertex_from": "201", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.199843821Z" + "timestamp": "2025-11-27T04:01:56.7319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371816, - "rtt_ms": 1.371816, + "rtt_ns": 1849709, + "rtt_ms": 1.849709, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.20013222Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.732513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250476, - "rtt_ms": 1.250476, + "rtt_ns": 1971166, + "rtt_ms": 1.971166, "checkpoint": 0, - "vertex_from": "202", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.20024616Z" + "vertex_from": "201", + "vertex_to": "245", + "timestamp": "2025-11-27T04:01:56.732767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404625, - "rtt_ms": 1.404625, + "rtt_ns": 1993584, + "rtt_ms": 1.993584, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.200282039Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:01:56.732869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457715, - "rtt_ms": 1.457715, + "rtt_ns": 2231167, + "rtt_ms": 2.231167, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.200301649Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.733044-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1212958, + "rtt_ms": 1.212958, + "checkpoint": 0, + "vertex_from": "202", + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:56.733115-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531175, - "rtt_ms": 1.531175, + "rtt_ns": 1370125, + "rtt_ms": 1.370125, "checkpoint": 0, "vertex_from": "201", - "vertex_to": "583", - "timestamp": "2025-11-27T01:21:58.200343219Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.733182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475555, - "rtt_ms": 1.475555, + "rtt_ns": 1428083, + "rtt_ms": 1.428083, "checkpoint": 0, "vertex_from": "202", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.200414149Z" + "timestamp": "2025-11-27T04:01:56.733256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467795, - "rtt_ms": 1.467795, + "rtt_ns": 1410583, + "rtt_ms": 1.410583, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.200457789Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.7333-08:00" }, { "operation": "add_edge", - "rtt_ns": 733268, - "rtt_ms": 0.733268, + "rtt_ns": 1621708, + "rtt_ms": 1.621708, "checkpoint": 0, - "vertex_from": "202", - "vertex_to": "944", - "timestamp": "2025-11-27T01:21:58.200502449Z" + "vertex_from": "201", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.733333-08:00" }, { "operation": "add_edge", - "rtt_ns": 865137, - "rtt_ms": 0.865137, + "rtt_ns": 1536625, + "rtt_ms": 1.536625, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:58.200582488Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.733381-08:00" }, { "operation": "add_edge", - "rtt_ns": 763657, - "rtt_ms": 0.763657, + "rtt_ns": 1137208, + "rtt_ms": 1.137208, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "589", - "timestamp": "2025-11-27T01:21:58.200609438Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:56.734254-08:00" }, { "operation": "add_edge", - "rtt_ns": 548138, - "rtt_ms": 0.548138, + "rtt_ns": 1315292, + "rtt_ms": 1.315292, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:58.200681828Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.734361-08:00" }, { "operation": "add_edge", - "rtt_ns": 891297, - "rtt_ms": 0.891297, + "rtt_ns": 1424459, + "rtt_ms": 1.424459, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.201307006Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.734607-08:00" }, { "operation": "add_edge", - "rtt_ns": 983887, - "rtt_ms": 0.983887, + "rtt_ns": 1349208, + "rtt_ms": 1.349208, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.201330586Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.73465-08:00" }, { "operation": "add_edge", - "rtt_ns": 871957, - "rtt_ms": 0.871957, + "rtt_ns": 1315500, + "rtt_ms": 1.3155, "checkpoint": 0, "vertex_from": "203", "vertex_to": "650", - "timestamp": "2025-11-27T01:21:58.201331746Z" + "timestamp": "2025-11-27T04:01:56.73465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068167, - "rtt_ms": 1.068167, + "rtt_ns": 2149500, + "rtt_ms": 2.1495, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.201353016Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:56.734664-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134916, - "rtt_ms": 1.134916, + "rtt_ns": 1831875, + "rtt_ms": 1.831875, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.201382246Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:56.734702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190587, - "rtt_ms": 1.190587, + "rtt_ns": 1594833, + "rtt_ms": 1.594833, "checkpoint": 0, - "vertex_from": "203", + "vertex_from": "202", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.201775095Z" + "timestamp": "2025-11-27T04:01:56.734851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471936, - "rtt_ms": 1.471936, + "rtt_ns": 2286583, + "rtt_ms": 2.286583, "checkpoint": 0, "vertex_from": "202", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.201775105Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:56.735055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296626, - "rtt_ms": 1.296626, + "rtt_ns": 2016875, + "rtt_ms": 2.016875, "checkpoint": 0, "vertex_from": "203", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.201800075Z" + "timestamp": "2025-11-27T04:01:56.735398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572105, - "rtt_ms": 1.572105, + "rtt_ns": 1236625, + "rtt_ms": 1.236625, "checkpoint": 0, - "vertex_from": "203", - "vertex_to": "224", - "timestamp": "2025-11-27T01:21:58.202182563Z" + "vertex_from": "204", + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:56.735889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646625, - "rtt_ms": 1.646625, + "rtt_ns": 1229334, + "rtt_ms": 1.229334, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.202330163Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:56.735894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484265, - "rtt_ms": 1.484265, + "rtt_ns": 1655459, + "rtt_ms": 1.655459, "checkpoint": 0, - "vertex_from": "204", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.202815671Z" + "vertex_from": "203", + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.735912-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1976083, + "rtt_ms": 1.976083, + "checkpoint": 0, + "vertex_from": "203", + "vertex_to": "224", + "timestamp": "2025-11-27T04:01:56.736338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592735, - "rtt_ms": 1.592735, + "rtt_ns": 1791625, + "rtt_ms": 1.791625, "checkpoint": 0, "vertex_from": "204", "vertex_to": "220", - "timestamp": "2025-11-27T01:21:58.202901461Z" + "timestamp": "2025-11-27T04:01:56.736442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575225, - "rtt_ms": 1.575225, + "rtt_ns": 2021208, + "rtt_ms": 2.021208, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:58.202931491Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.73663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596535, - "rtt_ms": 1.596535, + "rtt_ns": 1529042, + "rtt_ms": 1.529042, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:58.202931371Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:01:56.736943-08:00" }, { "operation": "add_edge", - "rtt_ns": 991986, - "rtt_ms": 0.991986, + "rtt_ns": 1547917, + "rtt_ms": 1.547917, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:58.205019884Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:56.736986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054347, - "rtt_ms": 1.054347, + "rtt_ns": 1775583, + "rtt_ms": 1.775583, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:58.205093004Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:56.737176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173476, - "rtt_ms": 1.173476, + "rtt_ns": 1298125, + "rtt_ms": 1.298125, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "437", - "timestamp": "2025-11-27T01:21:58.205152054Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:56.737193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087257, - "rtt_ms": 1.087257, + "rtt_ns": 1302125, + "rtt_ms": 1.302125, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.205154204Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.737215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107367, - "rtt_ms": 1.107367, + "rtt_ns": 1429666, + "rtt_ms": 1.429666, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.205164304Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:56.737319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122907, - "rtt_ms": 1.122907, + "rtt_ns": 1908542, + "rtt_ms": 1.908542, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.205171654Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.737333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158296, - "rtt_ms": 1.158296, + "rtt_ns": 1214958, + "rtt_ms": 1.214958, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:58.205178624Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.738159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808184, - "rtt_ms": 1.808184, + "rtt_ns": 2015125, + "rtt_ms": 2.015125, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.205792322Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.738354-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759394, - "rtt_ms": 1.759394, + "rtt_ns": 1956459, + "rtt_ms": 1.956459, "checkpoint": 0, "vertex_from": "204", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.205825211Z" + "timestamp": "2025-11-27T04:01:56.738399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752764, - "rtt_ms": 1.752764, + "rtt_ns": 1250333, + "rtt_ms": 1.250333, "checkpoint": 0, "vertex_from": "204", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.205834901Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.738443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531845, - "rtt_ms": 1.531845, + "rtt_ns": 1271958, + "rtt_ms": 1.271958, "checkpoint": 0, "vertex_from": "205", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.206687929Z" + "timestamp": "2025-11-27T04:01:56.738487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565514, - "rtt_ms": 1.565514, + "rtt_ns": 1611666, + "rtt_ms": 1.611666, "checkpoint": 0, - "vertex_from": "204", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.206719118Z" + "vertex_from": "205", + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:56.738931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548884, - "rtt_ms": 1.548884, + "rtt_ns": 2309750, + "rtt_ms": 2.30975, "checkpoint": 0, - "vertex_from": "205", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.206723598Z" + "vertex_from": "204", + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.738942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632564, - "rtt_ms": 1.632564, + "rtt_ns": 1736584, + "rtt_ms": 1.736584, "checkpoint": 0, - "vertex_from": "204", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.206727838Z" + "vertex_from": "205", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.739071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1944614, - "rtt_ms": 1.944614, + "rtt_ns": 2153667, + "rtt_ms": 2.153667, "checkpoint": 0, "vertex_from": "204", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.206967068Z" + "timestamp": "2025-11-27T04:01:56.73914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219645, - "rtt_ms": 1.219645, + "rtt_ns": 2109583, + "rtt_ms": 2.109583, "checkpoint": 0, - "vertex_from": "206", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.207014387Z" + "vertex_from": "204", + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.739286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903013, - "rtt_ms": 1.903013, + "rtt_ns": 1468667, + "rtt_ms": 1.468667, "checkpoint": 0, "vertex_from": "205", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:58.207070837Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.739629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1893923, - "rtt_ms": 1.893923, + "rtt_ns": 1237917, + "rtt_ms": 1.237917, "checkpoint": 0, - "vertex_from": "205", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.207073907Z" + "vertex_from": "206", + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.740309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818854, - "rtt_ms": 1.818854, + "rtt_ns": 1930750, + "rtt_ms": 1.93075, "checkpoint": 0, "vertex_from": "206", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.207655675Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.74033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843814, - "rtt_ms": 1.843814, + "rtt_ns": 2197292, + "rtt_ms": 2.197292, "checkpoint": 0, "vertex_from": "206", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.207670825Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.740642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995254, - "rtt_ms": 1.995254, + "rtt_ns": 1715833, + "rtt_ms": 1.715833, "checkpoint": 0, "vertex_from": "206", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.208721262Z" + "timestamp": "2025-11-27T04:01:56.740658-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041503, - "rtt_ms": 2.041503, + "rtt_ns": 2186292, + "rtt_ms": 2.186292, "checkpoint": 0, "vertex_from": "206", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.208731742Z" + "timestamp": "2025-11-27T04:01:56.740674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771444, - "rtt_ms": 1.771444, + "rtt_ns": 1548125, + "rtt_ms": 1.548125, "checkpoint": 0, "vertex_from": "207", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.208740642Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1679935, - "rtt_ms": 1.679935, - "checkpoint": 0, - "vertex_from": "208", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.208755352Z" + "timestamp": "2025-11-27T04:01:56.740691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754155, - "rtt_ms": 1.754155, + "rtt_ns": 1773292, + "rtt_ms": 1.773292, "checkpoint": 0, - "vertex_from": "207", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.208769792Z" + "vertex_from": "206", + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:56.740705-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087254, - "rtt_ms": 2.087254, + "rtt_ns": 1226708, + "rtt_ms": 1.226708, "checkpoint": 0, - "vertex_from": "206", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.208816512Z" + "vertex_from": "208", + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.740856-08:00" }, { "operation": "add_edge", - "rtt_ns": 2261333, - "rtt_ms": 2.261333, + "rtt_ns": 2853208, + "rtt_ms": 2.853208, "checkpoint": 0, "vertex_from": "206", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:58.208981661Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.741208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934404, - "rtt_ms": 1.934404, + "rtt_ns": 1242917, + "rtt_ms": 1.242917, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.209006691Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.741902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353486, - "rtt_ms": 1.353486, + "rtt_ns": 1616000, + "rtt_ms": 1.616, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.209011451Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.741926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432406, - "rtt_ms": 1.432406, + "rtt_ns": 1230708, + "rtt_ms": 1.230708, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:58.209104641Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.741936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282216, - "rtt_ms": 1.282216, + "rtt_ns": 1095958, + "rtt_ms": 1.095958, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.210038648Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.741955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508885, - "rtt_ms": 1.508885, + "rtt_ns": 2682958, + "rtt_ms": 2.682958, "checkpoint": 0, - "vertex_from": "208", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.210251767Z" + "vertex_from": "207", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.74197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517665, - "rtt_ms": 1.517665, + "rtt_ns": 1361875, + "rtt_ms": 1.361875, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.210289397Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.742037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602955, - "rtt_ms": 1.602955, + "rtt_ns": 1592042, + "rtt_ms": 1.592042, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.210325297Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:56.742234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538255, - "rtt_ms": 1.538255, + "rtt_ns": 1337667, + "rtt_ms": 1.337667, "checkpoint": 0, "vertex_from": "208", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.210356087Z" + "timestamp": "2025-11-27T04:01:56.742548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890424, - "rtt_ms": 1.890424, + "rtt_ns": 2223166, + "rtt_ms": 2.223166, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.210624056Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.742554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642755, - "rtt_ms": 1.642755, + "rtt_ns": 2028542, + "rtt_ms": 2.028542, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.210626116Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.74272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621215, - "rtt_ms": 1.621215, + "rtt_ns": 1406583, + "rtt_ms": 1.406583, "checkpoint": 0, "vertex_from": "208", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.210629526Z" + "timestamp": "2025-11-27T04:01:56.743333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1529085, - "rtt_ms": 1.529085, + "rtt_ns": 1542333, + "rtt_ms": 1.542333, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:58.210634886Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:56.74348-08:00" }, { "operation": "add_edge", - "rtt_ns": 2473232, - "rtt_ms": 2.473232, + "rtt_ns": 1291417, + "rtt_ms": 1.291417, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:58.211486273Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.743527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479195, - "rtt_ms": 1.479195, + "rtt_ns": 1637792, + "rtt_ms": 1.637792, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "557", - "timestamp": "2025-11-27T01:21:58.211521033Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:56.743594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912754, - "rtt_ms": 1.912754, + "rtt_ns": 1570541, + "rtt_ms": 1.570541, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.212203121Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:56.74361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873294, - "rtt_ms": 1.873294, + "rtt_ns": 1765917, + "rtt_ms": 1.765917, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.212231741Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.743669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911224, - "rtt_ms": 1.911224, + "rtt_ns": 1747667, + "rtt_ms": 1.747667, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.212237981Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:56.743718-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018604, - "rtt_ms": 2.018604, + "rtt_ns": 1228334, + "rtt_ms": 1.228334, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:58.212272461Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.744563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819644, - "rtt_ms": 1.819644, + "rtt_ns": 2127000, + "rtt_ms": 2.127, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.21245628Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.744683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868054, - "rtt_ms": 1.868054, + "rtt_ns": 1617750, + "rtt_ms": 1.61775, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.21249558Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.745229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870374, - "rtt_ms": 1.870374, + "rtt_ns": 1653583, + "rtt_ms": 1.653583, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.21249637Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:56.745248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899114, - "rtt_ms": 1.899114, + "rtt_ns": 2666042, + "rtt_ms": 2.666042, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.21253064Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.745388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228196, - "rtt_ms": 1.228196, + "rtt_ns": 1733958, + "rtt_ms": 1.733958, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:58.212716279Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:56.745405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233246, - "rtt_ms": 1.233246, + "rtt_ns": 1879292, + "rtt_ms": 1.879292, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.212755559Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.745407-08:00" }, { "operation": "add_edge", - "rtt_ns": 724778, - "rtt_ms": 0.724778, + "rtt_ns": 2859083, + "rtt_ms": 2.859083, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:58.212929179Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.745408-08:00" }, { "operation": "add_edge", - "rtt_ns": 735737, - "rtt_ms": 0.735737, + "rtt_ns": 1741458, + "rtt_ms": 1.741458, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:58.212975388Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:56.745461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319756, - "rtt_ms": 1.319756, + "rtt_ns": 2072500, + "rtt_ms": 2.0725, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.213554297Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.745553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307496, - "rtt_ms": 1.307496, + "rtt_ns": 1893750, + "rtt_ms": 1.89375, "checkpoint": 0, "vertex_from": "208", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.213581577Z" + "timestamp": "2025-11-27T04:01:56.746578-08:00" }, { "operation": "add_edge", - "rtt_ns": 848007, - "rtt_ms": 0.848007, + "rtt_ns": 2044792, + "rtt_ms": 2.044792, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "836", - "timestamp": "2025-11-27T01:21:58.213607116Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:56.746608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185276, - "rtt_ms": 1.185276, + "rtt_ns": 1462375, + "rtt_ms": 1.462375, "checkpoint": 0, "vertex_from": "208", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.213682546Z" + "timestamp": "2025-11-27T04:01:56.746711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179806, - "rtt_ms": 1.179806, + "rtt_ns": 1250292, + "rtt_ms": 1.250292, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.213711706Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.746712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235606, - "rtt_ms": 1.235606, + "rtt_ns": 1420833, + "rtt_ms": 1.420833, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:58.213734746Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.746827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054737, - "rtt_ms": 1.054737, + "rtt_ns": 1701500, + "rtt_ms": 1.7015, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:58.213772776Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:56.747092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476415, - "rtt_ms": 1.476415, + "rtt_ns": 1568667, + "rtt_ms": 1.568667, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.213934065Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:56.747122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684004, - "rtt_ms": 1.684004, + "rtt_ns": 1735208, + "rtt_ms": 1.735208, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.214614723Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:56.747144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674615, - "rtt_ms": 1.674615, + "rtt_ns": 1745083, + "rtt_ms": 1.745083, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:58.214650813Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:56.747154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183056, - "rtt_ms": 1.183056, + "rtt_ns": 1989625, + "rtt_ms": 1.989625, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.214895752Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.747219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462255, - "rtt_ms": 1.462255, + "rtt_ns": 1249583, + "rtt_ms": 1.249583, "checkpoint": 0, "vertex_from": "208", "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.215045632Z" + "timestamp": "2025-11-27T04:01:56.747859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594405, - "rtt_ms": 1.594405, + "rtt_ns": 1460833, + "rtt_ms": 1.460833, "checkpoint": 0, "vertex_from": "208", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.215149742Z" + "timestamp": "2025-11-27T04:01:56.74804-08:00" }, { "operation": "add_edge", - "rtt_ns": 2812432, - "rtt_ms": 2.812432, + "rtt_ns": 1383000, + "rtt_ms": 1.383, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:58.216420958Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.748096-08:00" }, { "operation": "add_edge", - "rtt_ns": 2575402, - "rtt_ms": 2.575402, + "rtt_ns": 1322542, + "rtt_ms": 1.322542, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.216510477Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.748151-08:00" }, { "operation": "add_edge", - "rtt_ns": 2786961, - "rtt_ms": 2.786961, + "rtt_ns": 1285000, + "rtt_ms": 1.285, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "318", - "timestamp": "2025-11-27T01:21:58.216561257Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.748505-08:00" }, { "operation": "add_edge", - "rtt_ns": 2877721, - "rtt_ms": 2.877721, + "rtt_ns": 1556208, + "rtt_ms": 1.556208, "checkpoint": 0, "vertex_from": "208", "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.216613407Z" + "timestamp": "2025-11-27T04:01:56.748649-08:00" }, { "operation": "add_edge", - "rtt_ns": 2930051, - "rtt_ms": 2.930051, + "rtt_ns": 1938458, + "rtt_ms": 1.938458, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.216613887Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:56.748651-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152703, - "rtt_ms": 2.152703, + "rtt_ns": 1595416, + "rtt_ms": 1.595416, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.216804446Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:56.74874-08:00" }, { "operation": "add_edge", - "rtt_ns": 2765111, - "rtt_ms": 2.765111, + "rtt_ns": 1631959, + "rtt_ms": 1.631959, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.217381704Z" + "vertex_to": "318", + "timestamp": "2025-11-27T04:01:56.748755-08:00" }, { "operation": "add_edge", - "rtt_ns": 2627542, - "rtt_ms": 2.627542, + "rtt_ns": 1517875, + "rtt_ms": 1.517875, "checkpoint": 0, "vertex_from": "209", "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.217674724Z" + "timestamp": "2025-11-27T04:01:56.74956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2557371, - "rtt_ms": 2.557371, + "rtt_ns": 1484875, + "rtt_ms": 1.484875, "checkpoint": 0, "vertex_from": "209", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.217708273Z" + "timestamp": "2025-11-27T04:01:56.749582-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1585958, + "rtt_ms": 1.585958, + "checkpoint": 0, + "vertex_from": "209", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.749737-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1212667, + "rtt_ms": 1.212667, + "checkpoint": 0, + "vertex_from": "209", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.749864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2843791, - "rtt_ms": 2.843791, + "rtt_ns": 1338125, + "rtt_ms": 1.338125, + "checkpoint": 0, + "vertex_from": "209", + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.749988-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2849416, + "rtt_ms": 2.849416, "checkpoint": 0, "vertex_from": "208", - "vertex_to": "376", - "timestamp": "2025-11-27T01:21:58.217740373Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.750004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356815, - "rtt_ms": 1.356815, + "rtt_ns": 1325209, + "rtt_ms": 1.325209, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.217779433Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.750081-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1657125, + "rtt_ms": 1.657125, + "checkpoint": 0, + "vertex_from": "209", + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:56.750163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494786, - "rtt_ms": 1.494786, + "rtt_ns": 841750, + "rtt_ms": 0.84175, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:58.218006633Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:56.750402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483875, - "rtt_ms": 1.483875, + "rtt_ns": 2676625, + "rtt_ms": 2.676625, "checkpoint": 0, - "vertex_from": "209", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.218046022Z" + "vertex_from": "208", + "vertex_to": "376", + "timestamp": "2025-11-27T04:01:56.750536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481225, - "rtt_ms": 1.481225, + "rtt_ns": 1946458, + "rtt_ms": 1.946458, "checkpoint": 0, "vertex_from": "209", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.218096682Z" + "timestamp": "2025-11-27T04:01:56.750687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511875, - "rtt_ms": 1.511875, + "rtt_ns": 2059833, + "rtt_ms": 2.059833, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.218126312Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:56.751798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342776, - "rtt_ms": 1.342776, + "rtt_ns": 2008125, + "rtt_ms": 2.008125, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.218148002Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.751997-08:00" }, { "operation": "add_edge", - "rtt_ns": 781578, - "rtt_ms": 0.781578, + "rtt_ns": 1489084, + "rtt_ms": 1.489084, "checkpoint": 0, - "vertex_from": "209", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:58.218168542Z" + "vertex_from": "210", + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:56.752042-08:00" }, { "operation": "add_edge", - "rtt_ns": 936367, - "rtt_ms": 0.936367, + "rtt_ns": 1428000, + "rtt_ms": 1.428, "checkpoint": 0, - "vertex_from": "209", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.218983829Z" + "vertex_from": "210", + "vertex_to": "391", + "timestamp": "2025-11-27T04:01:56.752116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001427, - "rtt_ms": 1.001427, + "rtt_ns": 2131625, + "rtt_ms": 2.131625, "checkpoint": 0, "vertex_from": "209", "vertex_to": "240", - "timestamp": "2025-11-27T01:21:58.219013049Z" + "timestamp": "2025-11-27T04:01:56.752136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298826, - "rtt_ms": 1.298826, + "rtt_ns": 1740875, + "rtt_ms": 1.740875, "checkpoint": 0, - "vertex_from": "209", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.219040309Z" + "vertex_from": "210", + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.752144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388655, - "rtt_ms": 1.388655, + "rtt_ns": 2315792, + "rtt_ms": 2.315792, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "773", - "timestamp": "2025-11-27T01:21:58.219064799Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.75218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448816, - "rtt_ms": 1.448816, + "rtt_ns": 2276416, + "rtt_ms": 2.276416, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:58.219158589Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.752358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416606, - "rtt_ms": 1.416606, + "rtt_ns": 2784458, + "rtt_ms": 2.784458, "checkpoint": 0, "vertex_from": "209", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.219198049Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:56.752368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383216, - "rtt_ms": 1.383216, + "rtt_ns": 2343917, + "rtt_ms": 2.343917, "checkpoint": 0, "vertex_from": "209", "vertex_to": "374", - "timestamp": "2025-11-27T01:21:58.219481178Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1954904, - "rtt_ms": 1.954904, - "checkpoint": 0, - "vertex_from": "210", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.220085756Z" + "timestamp": "2025-11-27T04:01:56.752508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918094, - "rtt_ms": 1.918094, + "rtt_ns": 1588042, + "rtt_ms": 1.588042, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "391", - "timestamp": "2025-11-27T01:21:58.220087836Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:56.753631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961834, - "rtt_ms": 1.961834, + "rtt_ns": 1521208, + "rtt_ms": 1.521208, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "852", - "timestamp": "2025-11-27T01:21:58.220111296Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.75367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118537, - "rtt_ms": 1.118537, + "rtt_ns": 1381375, + "rtt_ms": 1.381375, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.220111486Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:56.75374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106417, - "rtt_ms": 1.106417, + "rtt_ns": 1606792, + "rtt_ms": 1.606792, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.220120556Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.753743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272476, - "rtt_ms": 1.272476, + "rtt_ns": 2030083, + "rtt_ms": 2.030083, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:58.220338805Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.753829-08:00" }, { "operation": "add_edge", - "rtt_ns": 2078423, - "rtt_ms": 2.078423, + "rtt_ns": 1663834, + "rtt_ms": 1.663834, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.221239142Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:56.753846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164386, - "rtt_ms": 1.164386, + "rtt_ns": 1865750, + "rtt_ms": 1.86575, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:58.221277492Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.753864-08:00" }, { "operation": "add_edge", - "rtt_ns": 2266713, - "rtt_ms": 2.266713, + "rtt_ns": 1454917, + "rtt_ms": 1.454917, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:58.221309302Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.753965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146843, - "rtt_ms": 2.146843, + "rtt_ns": 1851500, + "rtt_ms": 1.8515, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.221346752Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:56.753968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868124, - "rtt_ms": 1.868124, + "rtt_ns": 1805333, + "rtt_ms": 1.805333, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:58.221351102Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.754176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282576, - "rtt_ms": 1.282576, + "rtt_ns": 1385084, + "rtt_ms": 1.385084, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.221370112Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.755126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1971763, - "rtt_ms": 1.971763, + "rtt_ns": 1497292, + "rtt_ms": 1.497292, "checkpoint": 0, "vertex_from": "210", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.222093999Z" + "timestamp": "2025-11-27T04:01:56.755168-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021743, - "rtt_ms": 2.021743, + "rtt_ns": 1447875, + "rtt_ms": 1.447875, "checkpoint": 0, - "vertex_from": "210", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.222110859Z" + "vertex_from": "211", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.755312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028883, - "rtt_ms": 2.028883, + "rtt_ns": 1585959, + "rtt_ms": 1.585959, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.222141259Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.75533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827434, - "rtt_ms": 1.827434, + "rtt_ns": 1757583, + "rtt_ms": 1.757583, "checkpoint": 0, "vertex_from": "210", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.222167439Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:56.755389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781194, - "rtt_ms": 1.781194, + "rtt_ns": 1647666, + "rtt_ms": 1.647666, "checkpoint": 0, "vertex_from": "211", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.223092876Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1013597, - "rtt_ms": 1.013597, - "checkpoint": 0, - "vertex_from": "212", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:58.223109216Z" + "timestamp": "2025-11-27T04:01:56.755494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767264, - "rtt_ms": 1.767264, + "rtt_ns": 1681375, + "rtt_ms": 1.681375, "checkpoint": 0, "vertex_from": "211", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.223119416Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.755511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783634, - "rtt_ms": 1.783634, + "rtt_ns": 1686333, + "rtt_ms": 1.686333, "checkpoint": 0, "vertex_from": "211", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.223136176Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1896414, - "rtt_ms": 1.896414, - "checkpoint": 0, - "vertex_from": "210", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.223136286Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.755652-08:00" }, { "operation": "add_edge", - "rtt_ns": 986867, - "rtt_ms": 0.986867, + "rtt_ns": 1738459, + "rtt_ms": 1.738459, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.223155446Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:56.755918-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052607, - "rtt_ms": 1.052607, + "rtt_ns": 1318417, + "rtt_ms": 1.318417, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:58.223164426Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.756488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1967413, - "rtt_ms": 1.967413, + "rtt_ns": 1160708, + "rtt_ms": 1.160708, "checkpoint": 0, - "vertex_from": "211", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.223246015Z" + "vertex_from": "212", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.756491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874543, - "rtt_ms": 1.874543, + "rtt_ns": 2542666, + "rtt_ms": 2.542666, "checkpoint": 0, "vertex_from": "211", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.223246915Z" + "timestamp": "2025-11-27T04:01:56.756511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103716, - "rtt_ms": 1.103716, + "rtt_ns": 1229292, + "rtt_ms": 1.229292, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.223250905Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.756542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605611, - "rtt_ms": 2.605611, + "rtt_ns": 1527875, + "rtt_ms": 1.527875, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.225703067Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:56.756918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2680422, - "rtt_ms": 2.680422, + "rtt_ns": 1808750, + "rtt_ms": 1.80875, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:58.225845977Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:56.756937-08:00" }, { "operation": "add_edge", - "rtt_ns": 2717821, - "rtt_ms": 2.717821, + "rtt_ns": 1321208, + "rtt_ms": 1.321208, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "226", - "timestamp": "2025-11-27T01:21:58.225875107Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.756975-08:00" }, { "operation": "add_edge", - "rtt_ns": 2708592, - "rtt_ms": 2.708592, + "rtt_ns": 1632833, + "rtt_ms": 1.632833, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:58.225956847Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:56.757145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2792201, - "rtt_ms": 2.792201, + "rtt_ns": 1372792, + "rtt_ms": 1.372792, "checkpoint": 0, - "vertex_from": "213", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:58.226045166Z" + "vertex_from": "212", + "vertex_to": "880", + "timestamp": "2025-11-27T04:01:56.757865-08:00" }, { "operation": "add_edge", - "rtt_ns": 3329000, - "rtt_ms": 3.329, + "rtt_ns": 2471125, + "rtt_ms": 2.471125, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "880", - "timestamp": "2025-11-27T01:21:58.226576065Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.757966-08:00" }, { "operation": "add_edge", - "rtt_ns": 3471089, - "rtt_ms": 3.471089, + "rtt_ns": 1695000, + "rtt_ms": 1.695, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:58.226583235Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:56.758183-08:00" }, { "operation": "add_edge", - "rtt_ns": 3481999, - "rtt_ms": 3.481999, + "rtt_ns": 2370542, + "rtt_ms": 2.370542, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.226602305Z" + "vertex_to": "226", + "timestamp": "2025-11-27T04:01:56.758289-08:00" }, { "operation": "add_edge", - "rtt_ns": 3482798, - "rtt_ms": 3.482798, + "rtt_ns": 1830291, + "rtt_ms": 1.830291, "checkpoint": 0, "vertex_from": "212", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:58.226620834Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:56.758343-08:00" }, { "operation": "add_edge", - "rtt_ns": 3499128, - "rtt_ms": 3.499128, + "rtt_ns": 1257583, + "rtt_ms": 1.257583, "checkpoint": 0, - "vertex_from": "212", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.226637704Z" + "vertex_from": "214", + "vertex_to": "453", + "timestamp": "2025-11-27T04:01:56.758403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1195596, - "rtt_ms": 1.195596, + "rtt_ns": 1667167, + "rtt_ms": 1.667167, "checkpoint": 0, "vertex_from": "214", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.227043223Z" + "timestamp": "2025-11-27T04:01:56.758605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400525, - "rtt_ms": 1.400525, + "rtt_ns": 2152916, + "rtt_ms": 2.152916, "checkpoint": 0, - "vertex_from": "214", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.227276812Z" + "vertex_from": "213", + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:56.758696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587055, - "rtt_ms": 1.587055, + "rtt_ns": 1791000, + "rtt_ms": 1.791, "checkpoint": 0, "vertex_from": "213", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.227292712Z" + "timestamp": "2025-11-27T04:01:56.75871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1303406, - "rtt_ms": 1.303406, + "rtt_ns": 889000, + "rtt_ms": 0.889, "checkpoint": 0, "vertex_from": "214", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:58.227349542Z" + "timestamp": "2025-11-27T04:01:56.758755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1413695, - "rtt_ms": 1.413695, + "rtt_ns": 1974084, + "rtt_ms": 1.974084, "checkpoint": 0, "vertex_from": "214", - "vertex_to": "453", - "timestamp": "2025-11-27T01:21:58.227371562Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1561685, - "rtt_ms": 1.561685, - "checkpoint": 0, - "vertex_from": "215", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.22814692Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.75895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579815, - "rtt_ms": 1.579815, + "rtt_ns": 1249042, + "rtt_ms": 1.249042, "checkpoint": 0, - "vertex_from": "214", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.22815706Z" + "vertex_from": "216", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.759653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554425, - "rtt_ms": 1.554425, + "rtt_ns": 1425291, + "rtt_ms": 1.425291, "checkpoint": 0, "vertex_from": "215", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.22815783Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1569695, - "rtt_ms": 1.569695, - "checkpoint": 0, - "vertex_from": "216", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.228208429Z" + "timestamp": "2025-11-27T04:01:56.759716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592155, - "rtt_ms": 1.592155, + "rtt_ns": 1487000, + "rtt_ms": 1.487, "checkpoint": 0, "vertex_from": "216", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.228214519Z" + "timestamp": "2025-11-27T04:01:56.759832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478545, - "rtt_ms": 1.478545, + "rtt_ns": 1665208, + "rtt_ms": 1.665208, "checkpoint": 0, - "vertex_from": "216", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.228524868Z" + "vertex_from": "215", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.75985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256986, - "rtt_ms": 1.256986, + "rtt_ns": 1166333, + "rtt_ms": 1.166333, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.228551028Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.759864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212636, - "rtt_ms": 1.212636, + "rtt_ns": 1913042, + "rtt_ms": 1.913042, "checkpoint": 0, - "vertex_from": "216", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.228585568Z" + "vertex_from": "214", + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.759882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769845, - "rtt_ms": 1.769845, + "rtt_ns": 1357125, + "rtt_ms": 1.357125, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.229049727Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.759964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1015766, - "rtt_ms": 1.015766, + "rtt_ns": 1395625, + "rtt_ms": 1.395625, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.229165406Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.760106-08:00" }, { "operation": "add_edge", - "rtt_ns": 999187, - "rtt_ms": 0.999187, + "rtt_ns": 2253375, + "rtt_ms": 2.253375, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.229209716Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.761011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103267, - "rtt_ms": 1.103267, + "rtt_ns": 1458125, + "rtt_ms": 1.458125, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:58.229319416Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.761174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2013394, - "rtt_ms": 2.013394, + "rtt_ns": 2239333, + "rtt_ms": 2.239333, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.229364816Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.761191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250296, - "rtt_ms": 1.250296, + "rtt_ns": 1323584, + "rtt_ms": 1.323584, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.229409366Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.761206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328625, - "rtt_ms": 1.328625, + "rtt_ns": 1301500, + "rtt_ms": 1.3015, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.229489675Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.761267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569245, - "rtt_ms": 1.569245, + "rtt_ns": 1439458, + "rtt_ms": 1.439458, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.230095713Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:56.761304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590705, - "rtt_ms": 1.590705, + "rtt_ns": 1546875, + "rtt_ms": 1.546875, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "913", - "timestamp": "2025-11-27T01:21:58.230178023Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.761379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641615, - "rtt_ms": 1.641615, + "rtt_ns": 1279250, + "rtt_ms": 1.27925, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.230197893Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:56.761387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154376, - "rtt_ms": 1.154376, + "rtt_ns": 1643958, + "rtt_ms": 1.643958, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.230205303Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.761495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1372826, - "rtt_ms": 1.372826, + "rtt_ns": 1867250, + "rtt_ms": 1.86725, "checkpoint": 0, "vertex_from": "216", - "vertex_to": "707", - "timestamp": "2025-11-27T01:21:58.230540852Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.761521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177986, - "rtt_ms": 1.177986, + "rtt_ns": 1110250, + "rtt_ms": 1.11025, "checkpoint": 0, "vertex_from": "217", "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.230588632Z" + "timestamp": "2025-11-27T04:01:56.762415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211167, - "rtt_ms": 1.211167, + "rtt_ns": 1271166, + "rtt_ms": 1.271166, "checkpoint": 0, - "vertex_from": "217", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.230701912Z" + "vertex_from": "216", + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:56.762447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758705, - "rtt_ms": 1.758705, + "rtt_ns": 1388458, + "rtt_ms": 1.388458, "checkpoint": 0, "vertex_from": "216", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.230969551Z" + "timestamp": "2025-11-27T04:01:56.76258-08:00" }, { "operation": "add_edge", - "rtt_ns": 913417, - "rtt_ms": 0.913417, + "rtt_ns": 1588917, + "rtt_ms": 1.588917, "checkpoint": 0, - "vertex_from": "218", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.23112173Z" + "vertex_from": "216", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.7626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904684, - "rtt_ms": 1.904684, + "rtt_ns": 1318458, + "rtt_ms": 1.318458, "checkpoint": 0, "vertex_from": "217", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:58.23122587Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:56.762706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152277, - "rtt_ms": 1.152277, + "rtt_ns": 1450875, + "rtt_ms": 1.450875, "checkpoint": 0, "vertex_from": "217", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:58.23125003Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.762719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888774, - "rtt_ms": 1.888774, + "rtt_ns": 1226750, + "rtt_ms": 1.22675, + "checkpoint": 0, + "vertex_from": "218", + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.762724-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1547333, + "rtt_ms": 1.547333, "checkpoint": 0, "vertex_from": "217", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.23125464Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:56.762754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137286, - "rtt_ms": 1.137286, + "rtt_ns": 1257917, + "rtt_ms": 1.257917, "checkpoint": 0, "vertex_from": "218", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.231337829Z" + "timestamp": "2025-11-27T04:01:56.76278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325226, - "rtt_ms": 1.325226, + "rtt_ns": 1516875, + "rtt_ms": 1.516875, "checkpoint": 0, - "vertex_from": "218", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.231505709Z" + "vertex_from": "217", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.762897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412415, - "rtt_ms": 1.412415, + "rtt_ns": 1475250, + "rtt_ms": 1.47525, "checkpoint": 0, "vertex_from": "218", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.231954827Z" + "timestamp": "2025-11-27T04:01:56.763924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189636, - "rtt_ms": 1.189636, + "rtt_ns": 1341417, + "rtt_ms": 1.341417, "checkpoint": 0, "vertex_from": "220", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.232163197Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:56.763942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596875, - "rtt_ms": 1.596875, + "rtt_ns": 1504750, + "rtt_ms": 1.50475, "checkpoint": 0, - "vertex_from": "219", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:58.232187037Z" + "vertex_from": "220", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.764211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040326, - "rtt_ms": 1.040326, + "rtt_ns": 1447500, + "rtt_ms": 1.4475, "checkpoint": 0, - "vertex_from": "224", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.232550115Z" + "vertex_from": "222", + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.764228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884373, - "rtt_ms": 1.884373, + "rtt_ns": 1520125, + "rtt_ms": 1.520125, "checkpoint": 0, - "vertex_from": "220", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:58.232587765Z" + "vertex_from": "221", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.764245-08:00" }, { "operation": "add_edge", - "rtt_ns": 690098, - "rtt_ms": 0.690098, + "rtt_ns": 1837375, + "rtt_ms": 1.837375, "checkpoint": 0, - "vertex_from": "224", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.232645915Z" + "vertex_from": "218", + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.764254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850004, - "rtt_ms": 1.850004, + "rtt_ns": 1540333, + "rtt_ms": 1.540333, "checkpoint": 0, - "vertex_from": "221", - "vertex_to": "364", - "timestamp": "2025-11-27T01:21:58.233103494Z" + "vertex_from": "220", + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.76426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1977813, - "rtt_ms": 1.977813, + "rtt_ns": 1682667, + "rtt_ms": 1.682667, "checkpoint": 0, - "vertex_from": "222", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.233233963Z" + "vertex_from": "219", + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:56.764264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136306, - "rtt_ms": 1.136306, + "rtt_ns": 1720583, + "rtt_ms": 1.720583, "checkpoint": 0, - "vertex_from": "224", - "vertex_to": "653", - "timestamp": "2025-11-27T01:21:58.233300923Z" + "vertex_from": "221", + "vertex_to": "364", + "timestamp": "2025-11-27T04:01:56.764476-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165233, - "rtt_ms": 2.165233, + "rtt_ns": 1697083, + "rtt_ms": 1.697083, "checkpoint": 0, - "vertex_from": "221", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.233393733Z" + "vertex_from": "224", + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:56.764595-08:00" }, { "operation": "add_edge", - "rtt_ns": 2192553, - "rtt_ms": 2.192553, + "rtt_ns": 1601625, + "rtt_ms": 1.601625, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:58.233532222Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.765544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404625, - "rtt_ms": 1.404625, + "rtt_ns": 1513708, + "rtt_ms": 1.513708, "checkpoint": 0, "vertex_from": "224", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.233594502Z" + "timestamp": "2025-11-27T04:01:56.765743-08:00" }, { "operation": "add_edge", - "rtt_ns": 3011080, - "rtt_ms": 3.01108, + "rtt_ns": 1508750, + "rtt_ms": 1.50875, "checkpoint": 0, - "vertex_from": "220", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.23413494Z" + "vertex_from": "224", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.765754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687135, - "rtt_ms": 1.687135, + "rtt_ns": 1509834, + "rtt_ms": 1.509834, "checkpoint": 0, "vertex_from": "224", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.23427825Z" + "timestamp": "2025-11-27T04:01:56.765766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661855, - "rtt_ms": 1.661855, + "rtt_ns": 1513541, + "rtt_ms": 1.513541, "checkpoint": 0, "vertex_from": "224", "vertex_to": "408", - "timestamp": "2025-11-27T01:21:58.23430926Z" + "timestamp": "2025-11-27T04:01:56.765775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795504, - "rtt_ms": 1.795504, + "rtt_ns": 1698209, + "rtt_ms": 1.698209, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.234347469Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:01:56.76591-08:00" }, { "operation": "add_edge", - "rtt_ns": 2110533, - "rtt_ms": 2.110533, + "rtt_ns": 1660958, + "rtt_ms": 1.660958, "checkpoint": 0, "vertex_from": "224", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.235215617Z" + "timestamp": "2025-11-27T04:01:56.765925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860133, - "rtt_ms": 1.860133, + "rtt_ns": 1470625, + "rtt_ms": 1.470625, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.235255506Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.765947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122786, - "rtt_ms": 1.122786, + "rtt_ns": 2096333, + "rtt_ms": 2.096333, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:58.235258996Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.766022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066336, - "rtt_ms": 1.066336, + "rtt_ns": 1443417, + "rtt_ms": 1.443417, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.235345716Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.766039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855224, - "rtt_ms": 1.855224, + "rtt_ns": 1806417, + "rtt_ms": 1.806417, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:58.235388686Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:56.767562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094616, - "rtt_ms": 1.094616, + "rtt_ns": 2392625, + "rtt_ms": 2.392625, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.235404866Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:56.768168-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125643, - "rtt_ms": 2.125643, + "rtt_ns": 2696583, + "rtt_ms": 2.696583, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.235429416Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:56.768463-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232463, - "rtt_ms": 2.232463, + "rtt_ns": 2989459, + "rtt_ms": 2.989459, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.235467376Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.768535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130597, - "rtt_ms": 1.130597, + "rtt_ns": 2844375, + "rtt_ms": 2.844375, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:58.235479206Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:56.76859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966493, - "rtt_ms": 1.966493, + "rtt_ns": 2781625, + "rtt_ms": 2.781625, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:58.235562395Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.768694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238066, - "rtt_ms": 1.238066, + "rtt_ns": 2796250, + "rtt_ms": 2.79625, "checkpoint": 0, "vertex_from": "224", "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.236494872Z" + "timestamp": "2025-11-27T04:01:56.768819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294155, - "rtt_ms": 1.294155, + "rtt_ns": 2888833, + "rtt_ms": 2.888833, "checkpoint": 0, "vertex_from": "224", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.236512382Z" + "timestamp": "2025-11-27T04:01:56.768836-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092086, - "rtt_ms": 1.092086, + "rtt_ns": 2994542, + "rtt_ms": 2.994542, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.236572232Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:56.768921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557935, - "rtt_ms": 1.557935, + "rtt_ns": 3007875, + "rtt_ms": 3.007875, "checkpoint": 0, "vertex_from": "224", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.236817951Z" + "timestamp": "2025-11-27T04:01:56.769048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504265, - "rtt_ms": 1.504265, + "rtt_ns": 1673875, + "rtt_ms": 1.673875, "checkpoint": 0, "vertex_from": "224", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.236851141Z" + "timestamp": "2025-11-27T04:01:56.769239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291536, - "rtt_ms": 1.291536, + "rtt_ns": 1061500, + "rtt_ms": 1.0615, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.236855661Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.769529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505025, - "rtt_ms": 1.505025, + "rtt_ns": 1476667, + "rtt_ms": 1.476667, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "606", - "timestamp": "2025-11-27T01:21:58.236976641Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.769646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611605, - "rtt_ms": 1.611605, + "rtt_ns": 1186083, + "rtt_ms": 1.186083, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.237017871Z" + "vertex_to": "606", + "timestamp": "2025-11-27T04:01:56.769777-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667965, - "rtt_ms": 1.667965, + "rtt_ns": 1078292, + "rtt_ms": 1.078292, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.237057741Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:56.769915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629495, - "rtt_ms": 1.629495, + "rtt_ns": 1515209, + "rtt_ms": 1.515209, "checkpoint": 0, "vertex_from": "224", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.237060501Z" + "timestamp": "2025-11-27T04:01:56.770051-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1289417, + "rtt_ms": 1.289417, + "checkpoint": 0, + "vertex_from": "224", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.770109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170867, - "rtt_ms": 1.170867, + "rtt_ns": 2142500, + "rtt_ms": 2.1425, "checkpoint": 0, "vertex_from": "224", "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.237684339Z" + "timestamp": "2025-11-27T04:01:56.771067-08:00" }, { "operation": "add_edge", - "rtt_ns": 887918, - "rtt_ms": 0.887918, + "rtt_ns": 2142083, + "rtt_ms": 2.142083, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "651", - "timestamp": "2025-11-27T01:21:58.237707319Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.771192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1288256, - "rtt_ms": 1.288256, + "rtt_ns": 2653334, + "rtt_ms": 2.653334, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.237784558Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.771348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276506, - "rtt_ms": 1.276506, + "rtt_ns": 1975708, + "rtt_ms": 1.975708, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.237851098Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.771622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704465, - "rtt_ms": 1.704465, + "rtt_ns": 2417959, + "rtt_ms": 2.417959, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "457", - "timestamp": "2025-11-27T01:21:58.238556846Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:01:56.771658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659375, - "rtt_ms": 1.659375, + "rtt_ns": 1691458, + "rtt_ms": 1.691458, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.238637176Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.771743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607695, - "rtt_ms": 1.607695, + "rtt_ns": 1650583, + "rtt_ms": 1.650583, "checkpoint": 0, "vertex_from": "224", "vertex_to": "327", - "timestamp": "2025-11-27T01:21:58.238668996Z" + "timestamp": "2025-11-27T04:01:56.77176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644894, - "rtt_ms": 1.644894, + "rtt_ns": 1873000, + "rtt_ms": 1.873, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.238703695Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:56.771789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859924, - "rtt_ms": 1.859924, + "rtt_ns": 2338958, + "rtt_ms": 2.338958, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.238717205Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:01:56.771869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697854, - "rtt_ms": 1.697854, + "rtt_ns": 2108791, + "rtt_ms": 2.108791, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:58.238717575Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.771886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049366, - "rtt_ms": 1.049366, + "rtt_ns": 1579041, + "rtt_ms": 1.579041, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.238758335Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:56.772647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335535, - "rtt_ms": 1.335535, + "rtt_ns": 1473750, + "rtt_ms": 1.47375, "checkpoint": 0, "vertex_from": "224", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:58.239022504Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.772667-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1319792, + "rtt_ms": 1.319792, + "checkpoint": 0, + "vertex_from": "225", + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:56.772669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807744, - "rtt_ms": 1.807744, + "rtt_ns": 1360084, + "rtt_ms": 1.360084, "checkpoint": 0, "vertex_from": "225", "vertex_to": "600", - "timestamp": "2025-11-27T01:21:58.239660342Z" + "timestamp": "2025-11-27T04:01:56.772983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140636, - "rtt_ms": 1.140636, + "rtt_ns": 1472666, + "rtt_ms": 1.472666, "checkpoint": 0, "vertex_from": "225", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.239699162Z" + "timestamp": "2025-11-27T04:01:56.773139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217767, - "rtt_ms": 1.217767, + "rtt_ns": 1353459, + "rtt_ms": 1.353459, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:58.239922922Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.773241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315135, - "rtt_ms": 1.315135, + "rtt_ns": 1499584, + "rtt_ms": 1.499584, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.239953531Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:56.77337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239976, - "rtt_ms": 1.239976, + "rtt_ns": 1644333, + "rtt_ms": 1.644333, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.239959411Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.773389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304655, - "rtt_ms": 1.304655, + "rtt_ns": 1320000, + "rtt_ms": 1.32, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.239974531Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.773992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2257823, - "rtt_ms": 2.257823, + "rtt_ns": 1334208, + "rtt_ms": 1.334208, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:58.240044451Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:56.774002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981184, - "rtt_ms": 1.981184, + "rtt_ns": 2228459, + "rtt_ms": 2.228459, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.240701879Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:56.774018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1966414, - "rtt_ms": 1.966414, + "rtt_ns": 1548708, + "rtt_ms": 1.548708, "checkpoint": 0, "vertex_from": "225", "vertex_to": "960", - "timestamp": "2025-11-27T01:21:58.240727639Z" + "timestamp": "2025-11-27T04:01:56.774197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769995, - "rtt_ms": 1.769995, + "rtt_ns": 2501125, + "rtt_ms": 2.501125, "checkpoint": 0, "vertex_from": "225", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:58.240793549Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.775486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1251736, - "rtt_ms": 1.251736, + "rtt_ns": 2259459, + "rtt_ms": 2.259459, "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:58.241214127Z" + "vertex_from": "225", + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:56.775501-08:00" }, { "operation": "add_edge", - "rtt_ns": 641758, - "rtt_ms": 0.641758, + "rtt_ns": 2648667, + "rtt_ms": 2.648667, "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.241371457Z" + "vertex_from": "225", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.775789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508296, - "rtt_ms": 1.508296, + "rtt_ns": 2615166, + "rtt_ms": 2.615166, "checkpoint": 0, "vertex_from": "226", "vertex_to": "523", - "timestamp": "2025-11-27T01:21:58.241484527Z" + "timestamp": "2025-11-27T04:01:56.776005-08:00" }, { "operation": "add_edge", - "rtt_ns": 752057, - "rtt_ms": 0.752057, + "rtt_ns": 2653916, + "rtt_ms": 2.653916, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.241546506Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:56.776025-08:00" }, { "operation": "add_edge", - "rtt_ns": 880797, - "rtt_ms": 0.880797, + "rtt_ns": 4266666, + "rtt_ms": 4.266666, "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.241584416Z" + "vertex_from": "225", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.776028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563055, - "rtt_ms": 1.563055, + "rtt_ns": 2029625, + "rtt_ms": 2.029625, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.241609466Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.776032-08:00" }, { "operation": "add_edge", - "rtt_ns": 726328, - "rtt_ms": 0.726328, + "rtt_ns": 2310417, + "rtt_ms": 2.310417, "checkpoint": 0, "vertex_from": "226", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.241941865Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.776303-08:00" }, { "operation": "add_edge", - "rtt_ns": 585408, - "rtt_ms": 0.585408, + "rtt_ns": 1104083, + "rtt_ms": 1.104083, "checkpoint": 0, "vertex_from": "226", "vertex_to": "425", - "timestamp": "2025-11-27T01:21:58.241959555Z" + "timestamp": "2025-11-27T04:01:56.776606-08:00" }, { "operation": "add_edge", - "rtt_ns": 2619012, - "rtt_ms": 2.619012, + "rtt_ns": 1029584, + "rtt_ms": 1.029584, "checkpoint": 0, - "vertex_from": "225", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.242319214Z" + "vertex_from": "226", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.77682-08:00" }, { "operation": "add_edge", - "rtt_ns": 2527752, - "rtt_ms": 2.527752, + "rtt_ns": 2674917, + "rtt_ms": 2.674917, "checkpoint": 0, - "vertex_from": "225", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.242451884Z" + "vertex_from": "226", + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:56.776872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2829311, - "rtt_ms": 2.829311, + "rtt_ns": 2863958, + "rtt_ms": 2.863958, "checkpoint": 0, - "vertex_from": "225", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.242491183Z" + "vertex_from": "226", + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:56.776883-08:00" }, { "operation": "add_edge", - "rtt_ns": 2789572, - "rtt_ms": 2.789572, + "rtt_ns": 1411750, + "rtt_ms": 1.41175, "checkpoint": 0, - "vertex_from": "225", - "vertex_to": "913", - "timestamp": "2025-11-27T01:21:58.242744623Z" + "vertex_from": "226", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.776901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176566, - "rtt_ms": 1.176566, + "rtt_ns": 1372041, + "rtt_ms": 1.372041, "checkpoint": 0, "vertex_from": "227", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:58.243120251Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1683144, - "rtt_ms": 1.683144, - "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.243169111Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:01:56.777979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626795, - "rtt_ms": 1.626795, + "rtt_ns": 1992666, + "rtt_ms": 1.992666, "checkpoint": 0, "vertex_from": "226", "vertex_to": "790", - "timestamp": "2025-11-27T01:21:58.243174381Z" + "timestamp": "2025-11-27T04:01:56.777998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225096, - "rtt_ms": 1.225096, + "rtt_ns": 1173875, + "rtt_ms": 1.173875, "checkpoint": 0, "vertex_from": "227", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.243186081Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:56.778047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617215, - "rtt_ms": 1.617215, + "rtt_ns": 2098000, + "rtt_ms": 2.098, "checkpoint": 0, "vertex_from": "226", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.243202551Z" + "timestamp": "2025-11-27T04:01:56.778125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766925, - "rtt_ms": 1.766925, + "rtt_ns": 1404292, + "rtt_ms": 1.404292, "checkpoint": 0, - "vertex_from": "226", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.243377471Z" + "vertex_from": "228", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.778288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533985, - "rtt_ms": 1.533985, + "rtt_ns": 2068958, + "rtt_ms": 2.068958, "checkpoint": 0, "vertex_from": "227", - "vertex_to": "816", - "timestamp": "2025-11-27T01:21:58.244026288Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.778374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710194, - "rtt_ms": 1.710194, + "rtt_ns": 1486875, + "rtt_ms": 1.486875, "checkpoint": 0, - "vertex_from": "227", - "vertex_to": "872", - "timestamp": "2025-11-27T01:21:58.244031678Z" + "vertex_from": "228", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.778388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345545, - "rtt_ms": 1.345545, + "rtt_ns": 2442750, + "rtt_ms": 2.44275, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.244091158Z" + "vertex_from": "227", + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:56.778476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1661514, - "rtt_ms": 1.661514, + "rtt_ns": 1750166, + "rtt_ms": 1.750166, "checkpoint": 0, "vertex_from": "227", "vertex_to": "393", - "timestamp": "2025-11-27T01:21:58.244114798Z" + "timestamp": "2025-11-27T04:01:56.778571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229186, - "rtt_ms": 1.229186, + "rtt_ns": 2543500, + "rtt_ms": 2.5435, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.244353147Z" + "vertex_from": "226", + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.778575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223696, - "rtt_ms": 1.223696, + "rtt_ns": 992917, + "rtt_ms": 0.992917, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.244411347Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.778973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297476, - "rtt_ms": 1.297476, + "rtt_ns": 1207334, + "rtt_ms": 1.207334, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.244473457Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.779582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330356, - "rtt_ms": 1.330356, + "rtt_ns": 2182666, + "rtt_ms": 2.182666, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.244505727Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.780312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134106, - "rtt_ms": 1.134106, + "rtt_ns": 2471542, + "rtt_ms": 2.471542, "checkpoint": 0, "vertex_from": "228", "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.244513307Z" + "timestamp": "2025-11-27T04:01:56.780761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331216, - "rtt_ms": 1.331216, + "rtt_ns": 2730750, + "rtt_ms": 2.73075, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.244535277Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.780778-08:00" }, { "operation": "add_edge", - "rtt_ns": 638188, - "rtt_ms": 0.638188, + "rtt_ns": 1922334, + "rtt_ms": 1.922334, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "801", - "timestamp": "2025-11-27T01:21:58.244675266Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.780896-08:00" }, { "operation": "add_edge", - "rtt_ns": 693368, - "rtt_ms": 0.693368, + "rtt_ns": 2589917, + "rtt_ms": 2.589917, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.244788636Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:56.780979-08:00" }, { "operation": "add_edge", - "rtt_ns": 788308, - "rtt_ms": 0.788308, + "rtt_ns": 2418667, + "rtt_ms": 2.418667, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.244816226Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:56.780995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065017, - "rtt_ms": 1.065017, + "rtt_ns": 1413500, + "rtt_ms": 1.4135, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.245180855Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:56.780996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002277, - "rtt_ms": 1.002277, + "rtt_ns": 3128125, + "rtt_ms": 3.128125, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "594", - "timestamp": "2025-11-27T01:21:58.245356554Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.781127-08:00" }, { "operation": "add_edge", - "rtt_ns": 949667, - "rtt_ms": 0.949667, + "rtt_ns": 2750125, + "rtt_ms": 2.750125, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.245362224Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.781324-08:00" }, { "operation": "add_edge", - "rtt_ns": 889097, - "rtt_ms": 0.889097, + "rtt_ns": 2869833, + "rtt_ms": 2.869833, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:58.245364064Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:56.781346-08:00" }, { "operation": "add_edge", - "rtt_ns": 875217, - "rtt_ms": 0.875217, + "rtt_ns": 1264292, + "rtt_ms": 1.264292, "checkpoint": 0, "vertex_from": "228", "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.245411584Z" + "timestamp": "2025-11-27T04:01:56.782044-08:00" }, { "operation": "add_edge", - "rtt_ns": 928787, - "rtt_ms": 0.928787, + "rtt_ns": 1348542, + "rtt_ms": 1.348542, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.245438134Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.782111-08:00" }, { "operation": "add_edge", - "rtt_ns": 929337, - "rtt_ms": 0.929337, + "rtt_ns": 1375542, + "rtt_ms": 1.375542, "checkpoint": 0, "vertex_from": "228", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.245443934Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.782272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271956, - "rtt_ms": 1.271956, + "rtt_ns": 1382916, + "rtt_ms": 1.382916, "checkpoint": 0, "vertex_from": "229", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.246090672Z" + "vertex_to": "455", + "timestamp": "2025-11-27T04:01:56.782511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443515, - "rtt_ms": 1.443515, + "rtt_ns": 1194792, + "rtt_ms": 1.194792, "checkpoint": 0, - "vertex_from": "228", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.246119811Z" + "vertex_from": "229", + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.782522-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1353335, - "rtt_ms": 1.353335, + "rtt_ns": 1613625, + "rtt_ms": 1.613625, "checkpoint": 0, "vertex_from": "948", - "timestamp": "2025-11-27T01:21:58.246144911Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1008616, - "rtt_ms": 1.008616, - "checkpoint": 0, - "vertex_from": "229", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.246190561Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1023077, - "rtt_ms": 1.023077, - "checkpoint": 0, - "vertex_from": "230", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.246390141Z" + "timestamp": "2025-11-27T04:01:56.782594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080216, - "rtt_ms": 1.080216, + "rtt_ns": 2281458, + "rtt_ms": 2.281458, "checkpoint": 0, - "vertex_from": "229", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.24644402Z" + "vertex_from": "228", + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.782596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316176, - "rtt_ms": 1.316176, + "rtt_ns": 2222583, + "rtt_ms": 2.222583, "checkpoint": 0, "vertex_from": "229", - "vertex_to": "455", - "timestamp": "2025-11-27T01:21:58.24667407Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.783218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379665, - "rtt_ms": 1.379665, + "rtt_ns": 1192042, + "rtt_ms": 1.192042, "checkpoint": 0, "vertex_from": "230", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.246793079Z" + "timestamp": "2025-11-27T04:01:56.783237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407315, - "rtt_ms": 1.407315, + "rtt_ns": 977709, + "rtt_ms": 0.977709, "checkpoint": 0, "vertex_from": "230", "vertex_to": "586", - "timestamp": "2025-11-27T01:21:58.246852859Z" + "timestamp": "2025-11-27T04:01:56.783251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043087, - "rtt_ms": 1.043087, + "rtt_ns": 1297625, + "rtt_ms": 1.297625, "checkpoint": 0, - "vertex_from": "229", - "vertex_to": "948", - "timestamp": "2025-11-27T01:21:58.247188318Z" + "vertex_from": "230", + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:56.783411-08:00" }, { "operation": "add_edge", - "rtt_ns": 872887, - "rtt_ms": 0.872887, + "rtt_ns": 2082042, + "rtt_ms": 2.082042, "checkpoint": 0, - "vertex_from": "232", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.247318827Z" + "vertex_from": "230", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.78343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896193, - "rtt_ms": 1.896193, + "rtt_ns": 2606916, + "rtt_ms": 2.606916, "checkpoint": 0, - "vertex_from": "230", - "vertex_to": "406", - "timestamp": "2025-11-27T01:21:58.247336257Z" + "vertex_from": "229", + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.783604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229206, - "rtt_ms": 1.229206, + "rtt_ns": 1433834, + "rtt_ms": 1.433834, "checkpoint": 0, "vertex_from": "231", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.247354107Z" + "timestamp": "2025-11-27T04:01:56.783957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556684, - "rtt_ms": 1.556684, + "rtt_ns": 2142792, + "rtt_ms": 2.142792, "checkpoint": 0, "vertex_from": "231", "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.247650326Z" + "timestamp": "2025-11-27T04:01:56.784656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1807524, - "rtt_ms": 1.807524, + "rtt_ns": 1264791, + "rtt_ms": 1.264791, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:58.248001595Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.784677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697335, - "rtt_ms": 1.697335, + "rtt_ns": 1479125, + "rtt_ms": 1.479125, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.248092845Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.784717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1313086, - "rtt_ms": 1.313086, + "rtt_ns": 1166125, + "rtt_ms": 1.166125, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.248107195Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:56.784771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587244, - "rtt_ms": 1.587244, + "rtt_ns": 1537709, + "rtt_ms": 1.537709, "checkpoint": 0, "vertex_from": "232", "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.248262434Z" + "timestamp": "2025-11-27T04:01:56.78479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263986, - "rtt_ms": 1.263986, + "rtt_ns": 1602959, + "rtt_ms": 1.602959, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.248601383Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.784822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464545, - "rtt_ms": 1.464545, + "rtt_ns": 2328291, + "rtt_ms": 2.328291, "checkpoint": 0, - "vertex_from": "232", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:58.248654023Z" + "vertex_from": "229", + "vertex_to": "948", + "timestamp": "2025-11-27T04:01:56.784923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1008287, - "rtt_ms": 1.008287, + "rtt_ns": 2354584, + "rtt_ms": 2.354584, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.248659843Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:56.784953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1333916, - "rtt_ms": 1.333916, + "rtt_ns": 2143042, + "rtt_ms": 2.143042, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:58.248690223Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.785573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856154, - "rtt_ms": 1.856154, + "rtt_ns": 1250458, + "rtt_ms": 1.250458, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.248709483Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.786074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427226, - "rtt_ms": 1.427226, + "rtt_ns": 2131125, + "rtt_ms": 2.131125, "checkpoint": 0, "vertex_from": "232", "vertex_to": "327", - "timestamp": "2025-11-27T01:21:58.248747403Z" + "timestamp": "2025-11-27T04:01:56.786091-08:00" }, { "operation": "add_edge", - "rtt_ns": 771168, - "rtt_ms": 0.771168, + "rtt_ns": 1667500, + "rtt_ms": 1.6675, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "299", - "timestamp": "2025-11-27T01:21:58.248774093Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.786326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1100586, - "rtt_ms": 1.100586, + "rtt_ns": 1569708, + "rtt_ms": 1.569708, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.249208531Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.78636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293306, - "rtt_ms": 1.293306, + "rtt_ns": 1694333, + "rtt_ms": 1.694333, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.249387131Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:56.786372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190547, - "rtt_ms": 1.190547, + "rtt_ns": 1654750, + "rtt_ms": 1.65475, "checkpoint": 0, "vertex_from": "232", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.249453941Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.786373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299316, - "rtt_ms": 1.299316, + "rtt_ns": 1454709, + "rtt_ms": 1.454709, "checkpoint": 0, - "vertex_from": "233", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.249955339Z" + "vertex_from": "232", + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.786379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466686, - "rtt_ms": 1.466686, + "rtt_ns": 1429834, + "rtt_ms": 1.429834, "checkpoint": 0, "vertex_from": "232", "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.250069349Z" - }, - { - "operation": "add_edge", - "rtt_ns": 872588, - "rtt_ms": 0.872588, - "checkpoint": 0, - "vertex_from": "234", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.250084009Z" + "timestamp": "2025-11-27T04:01:56.786384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326576, - "rtt_ms": 1.326576, + "rtt_ns": 1648208, + "rtt_ms": 1.648208, "checkpoint": 0, - "vertex_from": "234", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.250101519Z" + "vertex_from": "232", + "vertex_to": "299", + "timestamp": "2025-11-27T04:01:56.78642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423295, - "rtt_ms": 1.423295, + "rtt_ns": 1331750, + "rtt_ms": 1.33175, "checkpoint": 0, "vertex_from": "233", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.250114548Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.786906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470885, - "rtt_ms": 1.470885, + "rtt_ns": 1303542, + "rtt_ms": 1.303542, "checkpoint": 0, "vertex_from": "233", "vertex_to": "390", - "timestamp": "2025-11-27T01:21:58.250132498Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1435385, - "rtt_ms": 1.435385, - "checkpoint": 0, - "vertex_from": "234", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:58.250146348Z" + "timestamp": "2025-11-27T04:01:56.787378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632975, - "rtt_ms": 1.632975, + "rtt_ns": 1505708, + "rtt_ms": 1.505708, "checkpoint": 0, "vertex_from": "234", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.250381178Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.787885-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1383775, - "rtt_ms": 1.383775, + "rtt_ns": 1478334, + "rtt_ms": 1.478334, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:21:58.250840386Z" + "timestamp": "2025-11-27T04:01:56.787901-08:00" }, { "operation": "add_edge", - "rtt_ns": 935357, - "rtt_ms": 0.935357, + "rtt_ns": 1619083, + "rtt_ms": 1.619083, "checkpoint": 0, - "vertex_from": "236", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.251052055Z" + "vertex_from": "234", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.787992-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1049516, - "rtt_ms": 1.049516, + "rtt_ns": 1658709, + "rtt_ms": 1.658709, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:21:58.251135555Z" + "timestamp": "2025-11-27T04:01:56.788045-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1043406, - "rtt_ms": 1.043406, + "operation": "add_edge", + "rtt_ns": 1696417, + "rtt_ms": 1.696417, "checkpoint": 0, - "vertex_from": "235", - "timestamp": "2025-11-27T01:21:58.251146915Z" + "vertex_from": "234", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.78807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780054, - "rtt_ms": 1.780054, + "rtt_ns": 2104708, + "rtt_ms": 2.104708, "checkpoint": 0, "vertex_from": "234", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.251168795Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.788466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619615, - "rtt_ms": 1.619615, + "rtt_ns": 2425916, + "rtt_ms": 2.425916, "checkpoint": 0, - "vertex_from": "236", + "vertex_from": "233", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.251754113Z" + "timestamp": "2025-11-27T04:01:56.788517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468055, - "rtt_ms": 1.468055, + "rtt_ns": 2214542, + "rtt_ms": 2.214542, + "checkpoint": 0, + "vertex_from": "234", + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:56.788542-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1841209, + "rtt_ms": 1.841209, "checkpoint": 0, - "vertex_from": "236", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.251850913Z" + "vertex_from": "235", + "timestamp": "2025-11-27T04:01:56.788748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030777, - "rtt_ms": 1.030777, + "rtt_ns": 1135625, + "rtt_ms": 1.135625, "checkpoint": 0, "vertex_from": "235", "vertex_to": "802", - "timestamp": "2025-11-27T01:21:58.251871893Z" + "timestamp": "2025-11-27T04:01:56.789182-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1829064, - "rtt_ms": 1.829064, + "rtt_ns": 1872583, + "rtt_ms": 1.872583, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:21:58.251899743Z" + "timestamp": "2025-11-27T04:01:56.789252-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2022924, - "rtt_ms": 2.022924, + "operation": "add_edge", + "rtt_ns": 1554250, + "rtt_ms": 1.55425, "checkpoint": 0, "vertex_from": "235", - "timestamp": "2025-11-27T01:21:58.251979783Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.789455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876484, - "rtt_ms": 1.876484, + "rtt_ns": 1033292, + "rtt_ms": 1.033292, "checkpoint": 0, "vertex_from": "236", "vertex_to": "402", - "timestamp": "2025-11-27T01:21:58.252024022Z" + "timestamp": "2025-11-27T04:01:56.7895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424106, - "rtt_ms": 1.424106, + "rtt_ns": 1548000, + "rtt_ms": 1.548, + "checkpoint": 0, + "vertex_from": "236", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.789541-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1669042, + "rtt_ms": 1.669042, "checkpoint": 0, "vertex_from": "235", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.252571711Z" + "timestamp": "2025-11-27T04:01:56.789555-08:00" }, { "operation": "add_edge", - "rtt_ns": 841348, - "rtt_ms": 0.841348, + "rtt_ns": 1108625, + "rtt_ms": 1.108625, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.252597291Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.789627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653445, - "rtt_ms": 1.653445, + "rtt_ns": 2407958, + "rtt_ms": 2.407958, + "checkpoint": 0, + "vertex_from": "236", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.790478-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1847625, + "rtt_ms": 1.847625, "checkpoint": 0, "vertex_from": "235", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.2527901Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.790596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715425, - "rtt_ms": 1.715425, + "rtt_ns": 1555750, + "rtt_ms": 1.55575, "checkpoint": 0, - "vertex_from": "236", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.25288628Z" + "vertex_from": "235", + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.790809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059217, - "rtt_ms": 1.059217, + "rtt_ns": 1398792, + "rtt_ms": 1.398792, "checkpoint": 0, "vertex_from": "236", "vertex_to": "810", - "timestamp": "2025-11-27T01:21:58.25291133Z" + "timestamp": "2025-11-27T04:01:56.7909-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209533, - "rtt_ms": 2.209533, + "rtt_ns": 1840916, + "rtt_ms": 1.840916, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.253264108Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.791026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500835, - "rtt_ms": 1.500835, + "rtt_ns": 2699833, + "rtt_ms": 2.699833, "checkpoint": 0, - "vertex_from": "235", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.253480838Z" + "vertex_from": "236", + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.791242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612465, - "rtt_ms": 1.612465, + "rtt_ns": 1816667, + "rtt_ms": 1.816667, "checkpoint": 0, "vertex_from": "236", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.253486318Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.791273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465036, - "rtt_ms": 1.465036, + "rtt_ns": 1240625, + "rtt_ms": 1.240625, "checkpoint": 0, "vertex_from": "237", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.253493438Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:56.791838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601145, - "rtt_ms": 1.601145, + "rtt_ns": 2380167, + "rtt_ms": 2.380167, "checkpoint": 0, - "vertex_from": "235", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.253501508Z" + "vertex_from": "237", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.792008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256046, - "rtt_ms": 1.256046, + "rtt_ns": 1660167, + "rtt_ms": 1.660167, "checkpoint": 0, "vertex_from": "237", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.253828907Z" + "timestamp": "2025-11-27T04:01:56.792139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265736, - "rtt_ms": 1.265736, + "rtt_ns": 2776292, + "rtt_ms": 2.776292, "checkpoint": 0, - "vertex_from": "237", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.253864187Z" + "vertex_from": "236", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.792318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172977, - "rtt_ms": 1.172977, + "rtt_ns": 2776250, + "rtt_ms": 2.77625, "checkpoint": 0, - "vertex_from": "240", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.254438615Z" + "vertex_from": "235", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.792331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626725, - "rtt_ms": 1.626725, + "rtt_ns": 1804666, + "rtt_ms": 1.804666, "checkpoint": 0, - "vertex_from": "238", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.254513365Z" + "vertex_from": "240", + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.792831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031466, - "rtt_ms": 1.031466, + "rtt_ns": 2014750, + "rtt_ms": 2.01475, "checkpoint": 0, - "vertex_from": "240", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.254534804Z" + "vertex_from": "238", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.792915-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627394, - "rtt_ms": 1.627394, + "rtt_ns": 2123375, + "rtt_ms": 2.123375, "checkpoint": 0, - "vertex_from": "240", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.254540254Z" + "vertex_from": "238", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.792933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106926, - "rtt_ms": 1.106926, + "rtt_ns": 1826833, + "rtt_ms": 1.826833, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.254594524Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.793072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149436, - "rtt_ms": 1.149436, + "rtt_ns": 1834833, + "rtt_ms": 1.834833, "checkpoint": 0, "vertex_from": "240", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.254631094Z" + "timestamp": "2025-11-27T04:01:56.793109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197426, - "rtt_ms": 1.197426, + "rtt_ns": 1402458, + "rtt_ms": 1.402458, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:58.254693064Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1975414, - "rtt_ms": 1.975414, - "checkpoint": 0, - "vertex_from": "238", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.254767464Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.793543-08:00" }, { "operation": "add_edge", - "rtt_ns": 1050876, - "rtt_ms": 1.050876, + "rtt_ns": 1930125, + "rtt_ms": 1.930125, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:58.255491341Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.793769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677154, - "rtt_ms": 1.677154, + "rtt_ns": 2135625, + "rtt_ms": 2.135625, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.255507691Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:56.794146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329366, - "rtt_ms": 1.329366, + "rtt_ns": 1929792, + "rtt_ms": 1.929792, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:58.25586625Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:56.79425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403956, - "rtt_ms": 1.403956, + "rtt_ns": 1352875, + "rtt_ms": 1.352875, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:58.25594492Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.794269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874284, - "rtt_ms": 1.874284, + "rtt_ns": 1478791, + "rtt_ms": 1.478791, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.256470038Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:56.794312-08:00" }, { "operation": "add_edge", - "rtt_ns": 2194412, - "rtt_ms": 2.194412, + "rtt_ns": 2011958, + "rtt_ms": 2.011958, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.256709257Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.794344-08:00" }, { "operation": "add_edge", - "rtt_ns": 3047290, - "rtt_ms": 3.04729, + "rtt_ns": 1716375, + "rtt_ms": 1.716375, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.256916887Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:56.794789-08:00" }, { "operation": "add_edge", - "rtt_ns": 2352862, - "rtt_ms": 2.352862, + "rtt_ns": 1312833, + "rtt_ms": 1.312833, "checkpoint": 0, "vertex_from": "240", "vertex_to": "519", - "timestamp": "2025-11-27T01:21:58.256985866Z" + "timestamp": "2025-11-27T04:01:56.794856-08:00" }, { "operation": "add_edge", - "rtt_ns": 2299852, - "rtt_ms": 2.299852, + "rtt_ns": 1910500, + "rtt_ms": 1.9105, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.257068646Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.795021-08:00" }, { "operation": "add_edge", - "rtt_ns": 2572171, - "rtt_ms": 2.572171, + "rtt_ns": 2436125, + "rtt_ms": 2.436125, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.257266195Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:56.79537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428375, - "rtt_ms": 1.428375, + "rtt_ns": 1173208, + "rtt_ms": 1.173208, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.257295685Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:56.795443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1412265, - "rtt_ms": 1.412265, + "rtt_ns": 1510625, + "rtt_ms": 1.510625, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.257358805Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.795824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080043, - "rtt_ms": 2.080043, + "rtt_ns": 1575750, + "rtt_ms": 1.57575, "checkpoint": 0, "vertex_from": "240", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.257572614Z" + "timestamp": "2025-11-27T04:01:56.795827-08:00" }, { "operation": "add_edge", - "rtt_ns": 773818, - "rtt_ms": 0.773818, + "rtt_ns": 2211667, + "rtt_ms": 2.211667, "checkpoint": 0, - "vertex_from": "241", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.257762894Z" + "vertex_from": "240", + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.795982-08:00" }, { "operation": "add_edge", - "rtt_ns": 723718, - "rtt_ms": 0.723718, + "rtt_ns": 1686834, + "rtt_ms": 1.686834, "checkpoint": 0, - "vertex_from": "241", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.257794064Z" + "vertex_from": "240", + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.796032-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294653, - "rtt_ms": 2.294653, + "rtt_ns": 1979500, + "rtt_ms": 1.9795, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:58.257803584Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.796126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380886, - "rtt_ms": 1.380886, + "rtt_ns": 1991000, + "rtt_ms": 1.991, "checkpoint": 0, - "vertex_from": "243", - "vertex_to": "723", - "timestamp": "2025-11-27T01:21:58.25895624Z" + "vertex_from": "240", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.796848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163076, - "rtt_ms": 1.163076, + "rtt_ns": 2271125, + "rtt_ms": 2.271125, "checkpoint": 0, - "vertex_from": "244", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.25895863Z" + "vertex_from": "240", + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.797062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210086, - "rtt_ms": 1.210086, + "rtt_ns": 1637584, + "rtt_ms": 1.637584, "checkpoint": 0, - "vertex_from": "244", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.2589748Z" + "vertex_from": "241", + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.797082-08:00" }, { "operation": "add_edge", - "rtt_ns": 2269463, - "rtt_ms": 2.269463, + "rtt_ns": 2104334, + "rtt_ms": 2.104334, "checkpoint": 0, "vertex_from": "240", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.25898077Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.797126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693305, - "rtt_ms": 1.693305, + "rtt_ns": 1338666, + "rtt_ms": 1.338666, "checkpoint": 0, "vertex_from": "242", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.25899125Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.797163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2531602, - "rtt_ms": 2.531602, + "rtt_ns": 1472750, + "rtt_ms": 1.47275, "checkpoint": 0, - "vertex_from": "240", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.25900407Z" + "vertex_from": "242", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.7973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747865, - "rtt_ms": 1.747865, + "rtt_ns": 2392625, + "rtt_ms": 2.392625, "checkpoint": 0, - "vertex_from": "242", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.25901691Z" + "vertex_from": "241", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.797764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100933, - "rtt_ms": 2.100933, + "rtt_ns": 2382417, + "rtt_ms": 2.382417, "checkpoint": 0, - "vertex_from": "240", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.25901935Z" + "vertex_from": "243", + "vertex_to": "723", + "timestamp": "2025-11-27T04:01:56.798416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676435, - "rtt_ms": 1.676435, + "rtt_ns": 2648917, + "rtt_ms": 2.648917, "checkpoint": 0, "vertex_from": "242", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.2590371Z" + "timestamp": "2025-11-27T04:01:56.798632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257015, - "rtt_ms": 1.257015, + "rtt_ns": 1922209, + "rtt_ms": 1.922209, "checkpoint": 0, "vertex_from": "244", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.259063309Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.798771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341475, - "rtt_ms": 1.341475, + "rtt_ns": 2655167, + "rtt_ms": 2.655167, "checkpoint": 0, - "vertex_from": "248", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.260347495Z" + "vertex_from": "244", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.798782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463965, - "rtt_ms": 1.463965, + "rtt_ns": 1640084, + "rtt_ms": 1.640084, "checkpoint": 0, "vertex_from": "244", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.260440915Z" + "timestamp": "2025-11-27T04:01:56.798804-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447695, - "rtt_ms": 1.447695, + "rtt_ns": 1821292, + "rtt_ms": 1.821292, "checkpoint": 0, - "vertex_from": "246", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.260441275Z" + "vertex_from": "244", + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.798884-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468105, - "rtt_ms": 1.468105, + "rtt_ns": 1666084, + "rtt_ms": 1.666084, "checkpoint": 0, "vertex_from": "245", "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.260452365Z" + "timestamp": "2025-11-27T04:01:56.798967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2006663, - "rtt_ms": 2.006663, + "rtt_ns": 1942000, + "rtt_ms": 1.942, "checkpoint": 0, - "vertex_from": "249", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.261028333Z" + "vertex_from": "244", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.799024-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119113, - "rtt_ms": 2.119113, + "rtt_ns": 2045417, + "rtt_ms": 2.045417, "checkpoint": 0, "vertex_from": "244", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.261077023Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.799174-08:00" }, { "operation": "add_edge", - "rtt_ns": 2099354, - "rtt_ms": 2.099354, + "rtt_ns": 1461500, + "rtt_ms": 1.4615, "checkpoint": 0, - "vertex_from": "250", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.261163973Z" + "vertex_from": "246", + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.799226-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230603, - "rtt_ms": 2.230603, + "rtt_ns": 1451542, + "rtt_ms": 1.451542, "checkpoint": 0, - "vertex_from": "244", + "vertex_from": "250", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.261192273Z" + "timestamp": "2025-11-27T04:01:56.800257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2200492, - "rtt_ms": 2.200492, + "rtt_ns": 1398791, + "rtt_ms": 1.398791, "checkpoint": 0, - "vertex_from": "249", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:58.261239382Z" + "vertex_from": "250", + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.800284-08:00" }, { "operation": "add_edge", - "rtt_ns": 2357392, - "rtt_ms": 2.357392, + "rtt_ns": 1272417, + "rtt_ms": 1.272417, "checkpoint": 0, - "vertex_from": "249", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.261376042Z" + "vertex_from": "250", + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.800299-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1831374, - "rtt_ms": 1.831374, + "rtt_ns": 2080583, + "rtt_ms": 2.080583, "checkpoint": 0, "vertex_from": "883", - "timestamp": "2025-11-27T01:21:58.262275219Z" + "timestamp": "2025-11-27T04:01:56.801051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932184, - "rtt_ms": 1.932184, + "rtt_ns": 2663125, + "rtt_ms": 2.663125, "checkpoint": 0, - "vertex_from": "250", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.262281739Z" + "vertex_from": "248", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.80108-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1869524, - "rtt_ms": 1.869524, + "operation": "add_edge", + "rtt_ns": 2369042, + "rtt_ms": 2.369042, "checkpoint": 0, - "vertex_from": "251", - "timestamp": "2025-11-27T01:21:58.262324029Z" + "vertex_from": "249", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.801142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884084, - "rtt_ms": 1.884084, + "rtt_ns": 1967584, + "rtt_ms": 1.967584, "checkpoint": 0, - "vertex_from": "250", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.262326449Z" + "vertex_from": "253", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.801195-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2611125, + "rtt_ms": 2.611125, + "checkpoint": 0, + "vertex_from": "249", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.801246-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1679944, - "rtt_ms": 1.679944, + "rtt_ns": 2081917, + "rtt_ms": 2.081917, "checkpoint": 0, - "vertex_from": "254", - "timestamp": "2025-11-27T01:21:58.262874237Z" + "vertex_from": "251", + "timestamp": "2025-11-27T04:01:56.801258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848634, - "rtt_ms": 1.848634, + "rtt_ns": 2544625, + "rtt_ms": 2.544625, "checkpoint": 0, - "vertex_from": "253", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.262878507Z" + "vertex_from": "249", + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:56.801328-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1440956, - "rtt_ms": 1.440956, + "operation": "add_vertex", + "rtt_ns": 1489792, + "rtt_ms": 1.489792, "checkpoint": 0, - "vertex_from": "250", - "vertex_to": "883", - "timestamp": "2025-11-27T01:21:58.263716975Z" + "vertex_from": "254", + "timestamp": "2025-11-27T04:01:56.80179-08:00" }, { - "operation": "add_edge", - "rtt_ns": 865408, - "rtt_ms": 0.865408, + "operation": "add_vertex", + "rtt_ns": 1833458, + "rtt_ms": 1.833458, "checkpoint": 0, "vertex_from": "254", - "vertex_to": "256", - "timestamp": "2025-11-27T01:21:58.263740475Z" + "timestamp": "2025-11-27T04:01:56.802091-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2684392, - "rtt_ms": 2.684392, + "operation": "add_vertex", + "rtt_ns": 1837208, + "rtt_ms": 1.837208, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.263925214Z" + "vertex_from": "254", + "timestamp": "2025-11-27T04:01:56.802122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654915, - "rtt_ms": 1.654915, + "rtt_ns": 1401875, + "rtt_ms": 1.401875, "checkpoint": 0, "vertex_from": "256", "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.263982884Z" + "timestamp": "2025-11-27T04:01:56.802649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665795, - "rtt_ms": 1.665795, + "rtt_ns": 1408166, + "rtt_ms": 1.408166, "checkpoint": 0, "vertex_from": "251", "vertex_to": "263", - "timestamp": "2025-11-27T01:21:58.263990734Z" + "timestamp": "2025-11-27T04:01:56.802667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725195, - "rtt_ms": 1.725195, + "rtt_ns": 1704416, + "rtt_ms": 1.704416, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.264010344Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.802786-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2854351, - "rtt_ms": 2.854351, + "operation": "add_edge", + "rtt_ns": 1149750, + "rtt_ms": 1.14975, "checkpoint": 0, "vertex_from": "254", - "timestamp": "2025-11-27T01:21:58.264020274Z" + "vertex_to": "256", + "timestamp": "2025-11-27T04:01:56.802941-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2939891, - "rtt_ms": 2.939891, + "operation": "add_edge", + "rtt_ns": 1976792, + "rtt_ms": 1.976792, "checkpoint": 0, - "vertex_from": "254", - "timestamp": "2025-11-27T01:21:58.264020454Z" + "vertex_from": "256", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.803172-08:00" }, { "operation": "add_edge", - "rtt_ns": 3256580, - "rtt_ms": 3.25658, + "rtt_ns": 2202333, + "rtt_ms": 2.202333, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:58.264633732Z" + "vertex_from": "250", + "vertex_to": "883", + "timestamp": "2025-11-27T04:01:56.803254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908564, - "rtt_ms": 1.908564, + "rtt_ns": 2129125, + "rtt_ms": 2.129125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.264790811Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:56.803272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263176, - "rtt_ms": 1.263176, + "rtt_ns": 1948250, + "rtt_ms": 1.94825, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:58.264982561Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.803278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566025, - "rtt_ms": 1.566025, + "rtt_ns": 2405417, + "rtt_ms": 2.405417, "checkpoint": 0, "vertex_from": "254", "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.265587929Z" + "timestamp": "2025-11-27T04:01:56.804497-08:00" }, { "operation": "add_edge", - "rtt_ns": 993317, - "rtt_ms": 0.993317, + "rtt_ns": 1847833, + "rtt_ms": 1.847833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.265629729Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.804515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629874, - "rtt_ms": 1.629874, + "rtt_ns": 1646750, + "rtt_ms": 1.64675, + "checkpoint": 0, + "vertex_from": "256", + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:56.804588-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2490709, + "rtt_ms": 2.490709, "checkpoint": 0, "vertex_from": "254", "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.265650968Z" + "timestamp": "2025-11-27T04:01:56.804613-08:00" }, { "operation": "add_edge", - "rtt_ns": 864557, - "rtt_ms": 0.864557, + "rtt_ns": 1337833, + "rtt_ms": 1.337833, "checkpoint": 0, "vertex_from": "256", "vertex_to": "387", - "timestamp": "2025-11-27T01:21:58.265656558Z" + "timestamp": "2025-11-27T04:01:56.804617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1813104, - "rtt_ms": 1.813104, + "rtt_ns": 1402083, + "rtt_ms": 1.402083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.265740098Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.804656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835474, - "rtt_ms": 1.835474, + "rtt_ns": 1404333, + "rtt_ms": 1.404333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:58.265819518Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.804677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831274, - "rtt_ms": 1.831274, + "rtt_ns": 1897625, + "rtt_ms": 1.897625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.265842628Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.804684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851894, - "rtt_ms": 1.851894, + "rtt_ns": 1589041, + "rtt_ms": 1.589041, "checkpoint": 0, "vertex_from": "256", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.265844818Z" + "timestamp": "2025-11-27T04:01:56.804762-08:00" }, { "operation": "add_edge", - "rtt_ns": 2102833, - "rtt_ms": 2.102833, + "rtt_ns": 2126167, + "rtt_ms": 2.126167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.265845178Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:56.804776-08:00" }, { "operation": "add_edge", - "rtt_ns": 991916, - "rtt_ms": 0.991916, + "rtt_ns": 1310958, + "rtt_ms": 1.310958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.265975607Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.80593-08:00" }, { "operation": "add_edge", - "rtt_ns": 801818, - "rtt_ms": 0.801818, + "rtt_ns": 1182917, + "rtt_ms": 1.182917, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.266455546Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.80596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098936, - "rtt_ms": 1.098936, + "rtt_ns": 1579541, + "rtt_ms": 1.579541, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.266945264Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.806096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155366, - "rtt_ms": 1.155366, + "rtt_ns": 1580833, + "rtt_ms": 1.580833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.266999174Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.80617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088157, - "rtt_ms": 1.088157, + "rtt_ns": 1685625, + "rtt_ms": 1.685625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.267065924Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.806184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307186, - "rtt_ms": 1.307186, + "rtt_ns": 1517417, + "rtt_ms": 1.517417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.267153474Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.806203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911094, - "rtt_ms": 1.911094, + "rtt_ns": 1589083, + "rtt_ms": 1.589083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.267500453Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.806203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1992774, - "rtt_ms": 1.992774, + "rtt_ns": 1461833, + "rtt_ms": 1.461833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "295", - "timestamp": "2025-11-27T01:21:58.267735502Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.806224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2197713, - "rtt_ms": 2.197713, + "rtt_ns": 1574209, + "rtt_ms": 1.574209, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.267855881Z" + "vertex_to": "295", + "timestamp": "2025-11-27T04:01:56.806231-08:00" }, { "operation": "add_edge", - "rtt_ns": 2226102, - "rtt_ms": 2.226102, + "rtt_ns": 1607792, + "rtt_ms": 1.607792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.267857811Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.806285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414555, - "rtt_ms": 1.414555, + "rtt_ns": 1571209, + "rtt_ms": 1.571209, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "419", - "timestamp": "2025-11-27T01:21:58.267871701Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.807804-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095913, - "rtt_ms": 2.095913, + "rtt_ns": 1622625, + "rtt_ms": 1.622625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.267917311Z" + "vertex_to": "437", + "timestamp": "2025-11-27T04:01:56.807827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556605, - "rtt_ms": 1.556605, + "rtt_ns": 1910458, + "rtt_ms": 1.910458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:58.268503209Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:56.807842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707515, - "rtt_ms": 1.707515, + "rtt_ns": 1637125, + "rtt_ms": 1.637125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:58.268708099Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:56.807862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660145, - "rtt_ms": 1.660145, + "rtt_ns": 2281083, + "rtt_ms": 2.281083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "498", - "timestamp": "2025-11-27T01:21:58.268727229Z" + "vertex_to": "419", + "timestamp": "2025-11-27T04:01:56.808244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578405, - "rtt_ms": 1.578405, + "rtt_ns": 2745458, + "rtt_ms": 2.745458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "437", - "timestamp": "2025-11-27T01:21:58.268733109Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:56.808917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247206, - "rtt_ms": 1.247206, + "rtt_ns": 2648375, + "rtt_ms": 2.648375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:58.268749309Z" + "vertex_to": "622", + "timestamp": "2025-11-27T04:01:56.808936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520986, - "rtt_ms": 1.520986, + "rtt_ns": 2739416, + "rtt_ms": 2.739416, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "376", - "timestamp": "2025-11-27T01:21:58.269395927Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:56.808944-08:00" }, { "operation": "add_edge", - "rtt_ns": 790127, - "rtt_ms": 0.790127, + "rtt_ns": 2853458, + "rtt_ms": 2.853458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:58.269519466Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:56.808951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675925, - "rtt_ms": 1.675925, + "rtt_ns": 2783917, + "rtt_ms": 2.783917, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "622", - "timestamp": "2025-11-27T01:21:58.269535096Z" + "vertex_to": "498", + "timestamp": "2025-11-27T04:01:56.80897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810694, - "rtt_ms": 1.810694, + "rtt_ns": 1560333, + "rtt_ms": 1.560333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:58.269547596Z" + "vertex_to": "376", + "timestamp": "2025-11-27T04:01:56.809366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719935, - "rtt_ms": 1.719935, + "rtt_ns": 1587125, + "rtt_ms": 1.587125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.269577316Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:56.809429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034476, - "rtt_ms": 1.034476, + "rtt_ns": 1793625, + "rtt_ms": 1.793625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "689", - "timestamp": "2025-11-27T01:21:58.269744105Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.809621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951304, - "rtt_ms": 1.951304, + "rtt_ns": 2034833, + "rtt_ms": 2.034833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.269869955Z" + "vertex_to": "689", + "timestamp": "2025-11-27T04:01:56.809898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367436, - "rtt_ms": 1.367436, + "rtt_ns": 1968083, + "rtt_ms": 1.968083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "616", - "timestamp": "2025-11-27T01:21:58.269871885Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:56.810213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931694, - "rtt_ms": 1.931694, + "rtt_ns": 1587334, + "rtt_ms": 1.587334, "checkpoint": 0, "vertex_from": "256", "vertex_to": "418", - "timestamp": "2025-11-27T01:21:58.270683883Z" + "timestamp": "2025-11-27T04:01:56.810524-08:00" }, { "operation": "add_edge", - "rtt_ns": 958007, - "rtt_ms": 0.958007, + "rtt_ns": 1604500, + "rtt_ms": 1.6045, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "257", - "timestamp": "2025-11-27T01:21:58.270703762Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:56.810557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1970283, - "rtt_ms": 1.970283, + "rtt_ns": 1649708, + "rtt_ms": 1.649708, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:58.270705022Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.81062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190666, - "rtt_ms": 1.190666, + "rtt_ns": 1698875, + "rtt_ms": 1.698875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "334", - "timestamp": "2025-11-27T01:21:58.270711422Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.810646-08:00" }, { "operation": "add_edge", - "rtt_ns": 852767, - "rtt_ms": 0.852767, + "rtt_ns": 1269416, + "rtt_ms": 1.269416, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.270726462Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.810705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329975, - "rtt_ms": 1.329975, + "rtt_ns": 1335333, + "rtt_ms": 1.335333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.270728082Z" + "vertex_to": "257", + "timestamp": "2025-11-27T04:01:56.810958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206506, - "rtt_ms": 1.206506, + "rtt_ns": 1083125, + "rtt_ms": 1.083125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.270743112Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.810983-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164776, - "rtt_ms": 1.164776, + "rtt_ns": 1852792, + "rtt_ms": 1.852792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.270743392Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.811219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224816, - "rtt_ms": 1.224816, + "rtt_ns": 2557625, + "rtt_ms": 2.557625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.270774432Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:56.811475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701795, - "rtt_ms": 1.701795, + "rtt_ns": 1420625, + "rtt_ms": 1.420625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.27157293Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.811634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654095, - "rtt_ms": 1.654095, + "rtt_ns": 1458708, + "rtt_ms": 1.458708, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.272359147Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:01:56.811984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1771035, - "rtt_ms": 1.771035, + "rtt_ns": 1417125, + "rtt_ms": 1.417125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:58.272477907Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:56.812123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1836454, - "rtt_ms": 1.836454, + "rtt_ns": 1577083, + "rtt_ms": 1.577083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "789", - "timestamp": "2025-11-27T01:21:58.272521787Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.812136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923984, - "rtt_ms": 1.923984, + "rtt_ns": 1589750, + "rtt_ms": 1.58975, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "625", - "timestamp": "2025-11-27T01:21:58.272653756Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:56.812211-08:00" }, { "operation": "add_edge", - "rtt_ns": 2466902, - "rtt_ms": 2.466902, + "rtt_ns": 1638291, + "rtt_ms": 1.638291, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.273210874Z" + "vertex_to": "481", + "timestamp": "2025-11-27T04:01:56.812286-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579142, - "rtt_ms": 2.579142, + "rtt_ns": 1349042, + "rtt_ms": 1.349042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "481", - "timestamp": "2025-11-27T01:21:58.273293174Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.812332-08:00" }, { "operation": "add_edge", - "rtt_ns": 2535982, - "rtt_ms": 2.535982, + "rtt_ns": 1434375, + "rtt_ms": 1.434375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "597", - "timestamp": "2025-11-27T01:21:58.273312244Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:01:56.812393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2584392, - "rtt_ms": 2.584392, + "rtt_ns": 1308625, + "rtt_ms": 1.308625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "962", - "timestamp": "2025-11-27T01:21:58.273312574Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:56.812529-08:00" }, { "operation": "add_edge", - "rtt_ns": 2608032, - "rtt_ms": 2.608032, + "rtt_ns": 1344583, + "rtt_ms": 1.344583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:58.273352564Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:01:56.813482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799214, - "rtt_ms": 1.799214, + "rtt_ns": 1228250, + "rtt_ms": 1.22825, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:58.273373494Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.813561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134506, - "rtt_ms": 1.134506, + "rtt_ns": 1457500, + "rtt_ms": 1.4575, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:58.273495133Z" + "vertex_to": "268", + "timestamp": "2025-11-27T04:01:56.81367-08:00" }, { "operation": "add_edge", - "rtt_ns": 914837, - "rtt_ms": 0.914837, + "rtt_ns": 1316334, + "rtt_ms": 1.316334, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.273569153Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.81371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198696, - "rtt_ms": 1.198696, + "rtt_ns": 2235041, + "rtt_ms": 2.235041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "692", - "timestamp": "2025-11-27T01:21:58.273677993Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:01:56.813711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167466, - "rtt_ms": 1.167466, + "rtt_ns": 1729375, + "rtt_ms": 1.729375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "422", - "timestamp": "2025-11-27T01:21:58.273690393Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:56.813714-08:00" }, { "operation": "add_edge", - "rtt_ns": 664198, - "rtt_ms": 0.664198, + "rtt_ns": 2108250, + "rtt_ms": 2.10825, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.273958692Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:56.813743-08:00" }, { "operation": "add_edge", - "rtt_ns": 749308, - "rtt_ms": 0.749308, + "rtt_ns": 1480542, + "rtt_ms": 1.480542, "checkpoint": 0, "vertex_from": "256", "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.273961392Z" + "timestamp": "2025-11-27T04:01:56.813767-08:00" }, { "operation": "add_edge", - "rtt_ns": 690997, - "rtt_ms": 0.690997, + "rtt_ns": 1682584, + "rtt_ms": 1.682584, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "706", - "timestamp": "2025-11-27T01:21:58.274065111Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:01:56.813808-08:00" }, { "operation": "add_edge", - "rtt_ns": 801887, - "rtt_ms": 0.801887, + "rtt_ns": 1666875, + "rtt_ms": 1.666875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.274115441Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.814196-08:00" }, { "operation": "add_edge", - "rtt_ns": 860527, - "rtt_ms": 0.860527, + "rtt_ns": 1176792, + "rtt_ms": 1.176792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.274213821Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:56.814739-08:00" }, { "operation": "add_edge", - "rtt_ns": 956077, - "rtt_ms": 0.956077, + "rtt_ns": 1496917, + "rtt_ms": 1.496917, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.274269891Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.814981-08:00" }, { "operation": "add_edge", - "rtt_ns": 838277, - "rtt_ms": 0.838277, + "rtt_ns": 1529792, + "rtt_ms": 1.529792, "checkpoint": 0, "vertex_from": "256", "vertex_to": "900", - "timestamp": "2025-11-27T01:21:58.27433493Z" + "timestamp": "2025-11-27T04:01:56.815202-08:00" }, { "operation": "add_edge", - "rtt_ns": 844197, - "rtt_ms": 0.844197, + "rtt_ns": 1024959, + "rtt_ms": 1.024959, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:58.27441422Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:01:56.815222-08:00" }, { "operation": "add_edge", - "rtt_ns": 755307, - "rtt_ms": 0.755307, + "rtt_ns": 1711375, + "rtt_ms": 1.711375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:58.27444714Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.81548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005366, - "rtt_ms": 1.005366, + "rtt_ns": 1798625, + "rtt_ms": 1.798625, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.274965938Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:56.81551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306465, - "rtt_ms": 1.306465, + "rtt_ns": 1770708, + "rtt_ms": 1.770708, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.274986458Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.815516-08:00" }, { "operation": "add_edge", - "rtt_ns": 970327, - "rtt_ms": 0.970327, + "rtt_ns": 1943167, + "rtt_ms": 1.943167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "598", - "timestamp": "2025-11-27T01:21:58.275086968Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.815655-08:00" }, { "operation": "add_edge", - "rtt_ns": 895617, - "rtt_ms": 0.895617, + "rtt_ns": 2016833, + "rtt_ms": 2.016833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.275110548Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:56.815732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046497, - "rtt_ms": 1.046497, + "rtt_ns": 2048792, + "rtt_ms": 2.048792, "checkpoint": 0, "vertex_from": "256", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.275112888Z" + "timestamp": "2025-11-27T04:01:56.815858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190666, - "rtt_ms": 1.190666, + "rtt_ns": 1337958, + "rtt_ms": 1.337958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.275153588Z" + "vertex_to": "492", + "timestamp": "2025-11-27T04:01:56.816321-08:00" }, { "operation": "add_edge", - "rtt_ns": 932367, - "rtt_ms": 0.932367, + "rtt_ns": 1646166, + "rtt_ms": 1.646166, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "492", - "timestamp": "2025-11-27T01:21:58.275203508Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.816388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128657, - "rtt_ms": 1.128657, + "rtt_ns": 1325333, + "rtt_ms": 1.325333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.275464837Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:56.816548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814914, - "rtt_ms": 1.814914, + "rtt_ns": 1392042, + "rtt_ms": 1.392042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:58.276230364Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.816594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802534, - "rtt_ms": 1.802534, + "rtt_ns": 1532875, + "rtt_ms": 1.532875, "checkpoint": 0, "vertex_from": "256", "vertex_to": "300", - "timestamp": "2025-11-27T01:21:58.276251074Z" + "timestamp": "2025-11-27T04:01:56.817013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287676, - "rtt_ms": 1.287676, + "rtt_ns": 1503125, + "rtt_ms": 1.503125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "748", - "timestamp": "2025-11-27T01:21:58.276259204Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:56.81702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1167206, - "rtt_ms": 1.167206, + "rtt_ns": 1170541, + "rtt_ms": 1.170541, "checkpoint": 0, "vertex_from": "256", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.276281594Z" + "timestamp": "2025-11-27T04:01:56.81703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1259556, - "rtt_ms": 1.259556, + "rtt_ns": 1410083, + "rtt_ms": 1.410083, "checkpoint": 0, "vertex_from": "256", "vertex_to": "396", - "timestamp": "2025-11-27T01:21:58.276347764Z" + "timestamp": "2025-11-27T04:01:56.817066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206386, - "rtt_ms": 1.206386, + "rtt_ns": 1874750, + "rtt_ms": 1.87475, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.276361394Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:56.817609-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156896, - "rtt_ms": 1.156896, + "rtt_ns": 1570583, + "rtt_ms": 1.570583, "checkpoint": 0, "vertex_from": "256", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.276361924Z" + "timestamp": "2025-11-27T04:01:56.817959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390506, - "rtt_ms": 1.390506, + "rtt_ns": 1805542, + "rtt_ms": 1.805542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:58.276378404Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.818129-08:00" }, { "operation": "add_edge", - "rtt_ns": 921977, - "rtt_ms": 0.921977, + "rtt_ns": 1546500, + "rtt_ms": 1.5465, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.276388114Z" + "vertex_to": "270", + "timestamp": "2025-11-27T04:01:56.818142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312416, - "rtt_ms": 1.312416, + "rtt_ns": 1662458, + "rtt_ms": 1.662458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "677", - "timestamp": "2025-11-27T01:21:58.276425174Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:56.818213-08:00" }, { "operation": "add_edge", - "rtt_ns": 903767, - "rtt_ms": 0.903767, + "rtt_ns": 1216667, + "rtt_ms": 1.216667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "589", - "timestamp": "2025-11-27T01:21:58.277186891Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:56.818231-08:00" }, { "operation": "add_edge", - "rtt_ns": 860307, - "rtt_ms": 0.860307, + "rtt_ns": 1270416, + "rtt_ms": 1.270416, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "426", - "timestamp": "2025-11-27T01:21:58.277223671Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:56.818337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010077, - "rtt_ms": 1.010077, + "rtt_ns": 2882750, + "rtt_ms": 2.88275, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.277271051Z" + "vertex_to": "748", + "timestamp": "2025-11-27T04:01:56.818393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110377, - "rtt_ms": 1.110377, + "rtt_ns": 1430084, + "rtt_ms": 1.430084, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "270", - "timestamp": "2025-11-27T01:21:58.277342261Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.818451-08:00" }, { "operation": "add_edge", - "rtt_ns": 984087, - "rtt_ms": 0.984087, + "rtt_ns": 1248125, + "rtt_ms": 1.248125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "966", - "timestamp": "2025-11-27T01:21:58.277363291Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.81886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006336, - "rtt_ms": 1.006336, + "rtt_ns": 2077791, + "rtt_ms": 2.077791, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "551", - "timestamp": "2025-11-27T01:21:58.27739596Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:56.819109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034496, - "rtt_ms": 1.034496, + "rtt_ns": 1437042, + "rtt_ms": 1.437042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.27739705Z" + "vertex_to": "966", + "timestamp": "2025-11-27T04:01:56.819568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154096, - "rtt_ms": 1.154096, + "rtt_ns": 1306125, + "rtt_ms": 1.306125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:58.27740674Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.8197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017816, - "rtt_ms": 1.017816, + "rtt_ns": 1497542, + "rtt_ms": 1.497542, "checkpoint": 0, "vertex_from": "256", "vertex_to": "540", - "timestamp": "2025-11-27T01:21:58.27744593Z" + "timestamp": "2025-11-27T04:01:56.819711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693174, - "rtt_ms": 1.693174, + "rtt_ns": 1574000, + "rtt_ms": 1.574, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:58.278044258Z" + "vertex_to": "551", + "timestamp": "2025-11-27T04:01:56.819717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342756, - "rtt_ms": 1.342756, + "rtt_ns": 1848208, + "rtt_ms": 1.848208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "645", - "timestamp": "2025-11-27T01:21:58.278569707Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:01:56.819809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383446, - "rtt_ms": 1.383446, + "rtt_ns": 1597084, + "rtt_ms": 1.597084, "checkpoint": 0, "vertex_from": "256", "vertex_to": "306", - "timestamp": "2025-11-27T01:21:58.278574897Z" + "timestamp": "2025-11-27T04:01:56.819829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348925, - "rtt_ms": 1.348925, + "rtt_ns": 1551667, + "rtt_ms": 1.551667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.278714226Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:56.81989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460365, - "rtt_ms": 1.460365, + "rtt_ns": 1707250, + "rtt_ms": 1.70725, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.278732816Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:56.820159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378396, - "rtt_ms": 1.378396, + "rtt_ns": 1114875, + "rtt_ms": 1.114875, "checkpoint": 0, "vertex_from": "256", "vertex_to": "609", - "timestamp": "2025-11-27T01:21:58.278775536Z" + "timestamp": "2025-11-27T04:01:56.820224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861165, - "rtt_ms": 1.861165, + "rtt_ns": 1788500, + "rtt_ms": 1.7885, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "802", - "timestamp": "2025-11-27T01:21:58.279260595Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.820649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951734, - "rtt_ms": 1.951734, + "rtt_ns": 1427375, + "rtt_ms": 1.427375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:58.279359774Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:01:56.821257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017633, - "rtt_ms": 2.017633, + "rtt_ns": 1581209, + "rtt_ms": 1.581209, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.279362234Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:56.821294-08:00" }, { "operation": "add_edge", - "rtt_ns": 790507, - "rtt_ms": 0.790507, + "rtt_ns": 1698417, + "rtt_ms": 1.698417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "812", - "timestamp": "2025-11-27T01:21:58.279367134Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:01:56.821416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380746, - "rtt_ms": 1.380746, + "rtt_ns": 1852791, + "rtt_ms": 1.852791, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "342", - "timestamp": "2025-11-27T01:21:58.279426784Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:56.821422-08:00" }, { "operation": "add_edge", - "rtt_ns": 2237123, - "rtt_ms": 2.237123, + "rtt_ns": 1543583, + "rtt_ms": 1.543583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.279684823Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:56.821434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1061947, - "rtt_ms": 1.061947, + "rtt_ns": 1840167, + "rtt_ms": 1.840167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:58.279796923Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:56.821543-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1513325, - "rtt_ms": 1.513325, + "operation": "add_vertex", + "rtt_ns": 1994083, + "rtt_ms": 1.994083, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:58.280229461Z" + "vertex_from": "638", + "timestamp": "2025-11-27T04:01:56.821805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162596, - "rtt_ms": 1.162596, + "rtt_ns": 1591084, + "rtt_ms": 1.591084, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "854", - "timestamp": "2025-11-27T01:21:58.280424511Z" + "vertex_to": "500", + "timestamp": "2025-11-27T04:01:56.821816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672485, - "rtt_ms": 1.672485, + "rtt_ns": 1780042, + "rtt_ms": 1.780042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "500", - "timestamp": "2025-11-27T01:21:58.280449741Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:56.82194-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1888854, - "rtt_ms": 1.888854, + "operation": "add_edge", + "rtt_ns": 1340000, + "rtt_ms": 1.34, "checkpoint": 0, - "vertex_from": "638", - "timestamp": "2025-11-27T01:21:58.280462541Z" + "vertex_from": "256", + "vertex_to": "854", + "timestamp": "2025-11-27T04:01:56.82199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391916, - "rtt_ms": 1.391916, + "rtt_ns": 1081084, + "rtt_ms": 1.081084, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:58.28075622Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.822516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428346, - "rtt_ms": 1.428346, + "rtt_ns": 1375875, + "rtt_ms": 1.375875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "377", - "timestamp": "2025-11-27T01:21:58.28079073Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.822798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459606, - "rtt_ms": 1.459606, + "rtt_ns": 1518125, + "rtt_ms": 1.518125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.2808283Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:56.822814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157167, - "rtt_ms": 1.157167, + "rtt_ns": 1569208, + "rtt_ms": 1.569208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.28084383Z" + "vertex_to": "377", + "timestamp": "2025-11-27T04:01:56.822827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217117, - "rtt_ms": 1.217117, + "rtt_ns": 1147500, + "rtt_ms": 1.1475, "checkpoint": 0, "vertex_from": "256", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.281448728Z" + "timestamp": "2025-11-27T04:01:56.822965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053814, - "rtt_ms": 2.053814, + "rtt_ns": 1434250, + "rtt_ms": 1.43425, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.281482608Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:56.822979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074476, - "rtt_ms": 1.074476, + "rtt_ns": 1588208, + "rtt_ms": 1.588208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.281500267Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.823006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196046, - "rtt_ms": 1.196046, + "rtt_ns": 1198542, + "rtt_ms": 1.198542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "675", - "timestamp": "2025-11-27T01:21:58.281647687Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.823139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924254, - "rtt_ms": 1.924254, + "rtt_ns": 1619542, + "rtt_ms": 1.619542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:58.281722247Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:56.823611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278276, - "rtt_ms": 1.278276, + "rtt_ns": 1819208, + "rtt_ms": 1.819208, "checkpoint": 0, "vertex_from": "256", "vertex_to": "638", - "timestamp": "2025-11-27T01:21:58.281741497Z" + "timestamp": "2025-11-27T04:01:56.823624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589825, - "rtt_ms": 1.589825, + "rtt_ns": 1205833, + "rtt_ms": 1.205833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.282381365Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:56.824818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751924, - "rtt_ms": 1.751924, + "rtt_ns": 1961458, + "rtt_ms": 1.961458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:58.282510774Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:56.824942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766794, - "rtt_ms": 1.766794, + "rtt_ns": 2231042, + "rtt_ms": 2.231042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.282596254Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:56.82503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149436, - "rtt_ms": 1.149436, + "rtt_ns": 2214333, + "rtt_ms": 2.214333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.282599684Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:56.825044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758124, - "rtt_ms": 1.758124, + "rtt_ns": 2045042, + "rtt_ms": 2.045042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.282604634Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:56.825054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871484, - "rtt_ms": 1.871484, + "rtt_ns": 1920833, + "rtt_ms": 1.920833, "checkpoint": 0, "vertex_from": "256", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.283520571Z" + "timestamp": "2025-11-27T04:01:56.825062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2235203, - "rtt_ms": 2.235203, + "rtt_ns": 2247333, + "rtt_ms": 2.247333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:58.28373657Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.825063-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106503, - "rtt_ms": 2.106503, + "rtt_ns": 2549833, + "rtt_ms": 2.549833, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.28383023Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:56.825067-08:00" }, { "operation": "add_edge", - "rtt_ns": 2408182, - "rtt_ms": 2.408182, + "rtt_ns": 1503459, + "rtt_ms": 1.503459, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:58.28389283Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:56.825129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547045, - "rtt_ms": 1.547045, + "rtt_ns": 2294500, + "rtt_ms": 2.2945, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.28392919Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:56.82526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883004, - "rtt_ms": 1.883004, + "rtt_ns": 1247833, + "rtt_ms": 1.247833, "checkpoint": 0, "vertex_from": "256", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.284489628Z" + "timestamp": "2025-11-27T04:01:56.826303-08:00" }, { "operation": "add_edge", - "rtt_ns": 2811411, - "rtt_ms": 2.811411, + "rtt_ns": 1275916, + "rtt_ms": 1.275916, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.284554578Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:56.82632-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141203, - "rtt_ms": 2.141203, + "rtt_ns": 1866000, + "rtt_ms": 1.866, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.284653367Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.826691-08:00" }, { "operation": "add_edge", - "rtt_ns": 2198173, - "rtt_ms": 2.198173, + "rtt_ns": 1674125, + "rtt_ms": 1.674125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:58.284799487Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:56.826737-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1608916, + "rtt_ms": 1.608916, + "checkpoint": 0, + "vertex_from": "256", + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:56.826739-08:00" }, { "operation": "add_edge", - "rtt_ns": 2906620, - "rtt_ms": 2.90662, + "rtt_ns": 1736833, + "rtt_ms": 1.736833, "checkpoint": 0, "vertex_from": "256", "vertex_to": "360", - "timestamp": "2025-11-27T01:21:58.285504514Z" + "timestamp": "2025-11-27T04:01:56.826768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1982973, - "rtt_ms": 1.982973, + "rtt_ns": 1834792, + "rtt_ms": 1.834792, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:58.285504784Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.826778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079936, - "rtt_ms": 1.079936, + "rtt_ns": 1722041, + "rtt_ms": 1.722041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "603", - "timestamp": "2025-11-27T01:21:58.285635314Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:56.826791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767784, - "rtt_ms": 1.767784, + "rtt_ns": 1547292, + "rtt_ms": 1.547292, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:58.285661804Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:01:56.826808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942244, - "rtt_ms": 1.942244, + "rtt_ns": 1878333, + "rtt_ms": 1.878333, "checkpoint": 0, "vertex_from": "256", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.285679774Z" + "timestamp": "2025-11-27T04:01:56.826943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754004, - "rtt_ms": 1.754004, + "rtt_ns": 1769292, + "rtt_ms": 1.769292, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "620", - "timestamp": "2025-11-27T01:21:58.285684274Z" + "vertex_to": "843", + "timestamp": "2025-11-27T04:01:56.828074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858794, - "rtt_ms": 1.858794, + "rtt_ns": 1811167, + "rtt_ms": 1.811167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:58.285690094Z" + "vertex_to": "603", + "timestamp": "2025-11-27T04:01:56.828133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212836, - "rtt_ms": 1.212836, + "rtt_ns": 1508209, + "rtt_ms": 1.508209, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "843", - "timestamp": "2025-11-27T01:21:58.285703694Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:56.828277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501495, - "rtt_ms": 1.501495, + "rtt_ns": 1548250, + "rtt_ms": 1.54825, "checkpoint": 0, "vertex_from": "256", "vertex_to": "357", - "timestamp": "2025-11-27T01:21:58.286302802Z" + "timestamp": "2025-11-27T04:01:56.828286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923414, - "rtt_ms": 1.923414, + "rtt_ns": 1483750, + "rtt_ms": 1.48375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "928", - "timestamp": "2025-11-27T01:21:58.286578251Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.828292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753525, - "rtt_ms": 1.753525, + "rtt_ns": 1484958, + "rtt_ms": 1.484958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.287260089Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.828297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1831954, - "rtt_ms": 1.831954, + "rtt_ns": 1685458, + "rtt_ms": 1.685458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:58.287339048Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:56.828379-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1078916, - "rtt_ms": 1.078916, + "operation": "add_edge", + "rtt_ns": 1919250, + "rtt_ms": 1.91925, "checkpoint": 0, - "vertex_from": "687", - "timestamp": "2025-11-27T01:21:58.287383968Z" + "vertex_from": "256", + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.828659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748384, - "rtt_ms": 1.748384, + "rtt_ns": 1805916, + "rtt_ms": 1.805916, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.287411848Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:56.828749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729634, - "rtt_ms": 1.729634, + "rtt_ns": 1960875, + "rtt_ms": 1.960875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "657", - "timestamp": "2025-11-27T01:21:58.287416008Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:56.828753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726624, - "rtt_ms": 1.726624, + "rtt_ns": 1119375, + "rtt_ms": 1.119375, "checkpoint": 0, "vertex_from": "256", "vertex_to": "846", - "timestamp": "2025-11-27T01:21:58.287417998Z" + "timestamp": "2025-11-27T04:01:56.829196-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 930417, + "rtt_ms": 0.930417, + "checkpoint": 0, + "vertex_from": "687", + "timestamp": "2025-11-27T04:01:56.82921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793214, - "rtt_ms": 1.793214, + "rtt_ns": 1305875, + "rtt_ms": 1.305875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "601", - "timestamp": "2025-11-27T01:21:58.287429508Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:56.82944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743714, - "rtt_ms": 1.743714, + "rtt_ns": 1268125, + "rtt_ms": 1.268125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "665", - "timestamp": "2025-11-27T01:21:58.287448728Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.829649-08:00" }, { "operation": "add_edge", - "rtt_ns": 2024633, - "rtt_ms": 2.024633, + "rtt_ns": 1126667, + "rtt_ms": 1.126667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.287705947Z" + "vertex_to": "455", + "timestamp": "2025-11-27T04:01:56.829788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628414, - "rtt_ms": 1.628414, + "rtt_ns": 1685917, + "rtt_ms": 1.685917, "checkpoint": 0, "vertex_from": "256", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.288207745Z" + "timestamp": "2025-11-27T04:01:56.829974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115636, - "rtt_ms": 1.115636, + "rtt_ns": 1916584, + "rtt_ms": 1.916584, "checkpoint": 0, "vertex_from": "256", "vertex_to": "866", - "timestamp": "2025-11-27T01:21:58.288377295Z" + "timestamp": "2025-11-27T04:01:56.83021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516795, - "rtt_ms": 1.516795, + "rtt_ns": 1670959, + "rtt_ms": 1.670959, "checkpoint": 0, "vertex_from": "256", "vertex_to": "480", - "timestamp": "2025-11-27T01:21:58.288936033Z" + "timestamp": "2025-11-27T04:01:56.830422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635635, - "rtt_ms": 1.635635, + "rtt_ns": 1686583, + "rtt_ms": 1.686583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.288975963Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:01:56.83044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671055, - "rtt_ms": 1.671055, + "rtt_ns": 1649750, + "rtt_ms": 1.64975, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "455", - "timestamp": "2025-11-27T01:21:58.289088273Z" + "vertex_to": "687", + "timestamp": "2025-11-27T04:01:56.83086-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1689895, - "rtt_ms": 1.689895, + "operation": "add_vertex", + "rtt_ns": 1217000, + "rtt_ms": 1.217, "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.289103033Z" + "vertex_from": "827", + "timestamp": "2025-11-27T04:01:56.831007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446605, - "rtt_ms": 1.446605, + "rtt_ns": 2715583, + "rtt_ms": 2.715583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "930", - "timestamp": "2025-11-27T01:21:58.289154212Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.831014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785714, - "rtt_ms": 1.785714, + "rtt_ns": 1565000, + "rtt_ms": 1.565, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "687", - "timestamp": "2025-11-27T01:21:58.289170132Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.831215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749744, - "rtt_ms": 1.749744, + "rtt_ns": 1790667, + "rtt_ms": 1.790667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "398", - "timestamp": "2025-11-27T01:21:58.289180982Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:01:56.831231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738784, - "rtt_ms": 1.738784, + "rtt_ns": 1141042, + "rtt_ms": 1.141042, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "876", - "timestamp": "2025-11-27T01:21:58.289188712Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.831352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780515, - "rtt_ms": 1.780515, + "rtt_ns": 2170500, + "rtt_ms": 2.1705, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.28998949Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1654775, - "rtt_ms": 1.654775, - "checkpoint": 0, - "vertex_from": "827", - "timestamp": "2025-11-27T01:21:58.2900337Z" + "vertex_to": "876", + "timestamp": "2025-11-27T04:01:56.831368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118287, - "rtt_ms": 1.118287, + "rtt_ns": 1450667, + "rtt_ms": 1.450667, "checkpoint": 0, "vertex_from": "256", "vertex_to": "563", - "timestamp": "2025-11-27T01:21:58.29005618Z" + "timestamp": "2025-11-27T04:01:56.83143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679825, - "rtt_ms": 1.679825, - "checkpoint": 0, - "vertex_from": "256", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.290656748Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1638714, - "rtt_ms": 1.638714, + "rtt_ns": 1349291, + "rtt_ms": 1.349291, "checkpoint": 0, "vertex_from": "256", "vertex_to": "708", - "timestamp": "2025-11-27T01:21:58.290743287Z" + "timestamp": "2025-11-27T04:01:56.831791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676924, - "rtt_ms": 1.676924, + "rtt_ns": 1385125, + "rtt_ms": 1.385125, "checkpoint": 0, "vertex_from": "256", "vertex_to": "904", - "timestamp": "2025-11-27T01:21:58.290766467Z" + "timestamp": "2025-11-27T04:01:56.831808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586895, - "rtt_ms": 1.586895, + "rtt_ns": 1380542, + "rtt_ms": 1.380542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:58.290769187Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.832241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615465, - "rtt_ms": 1.615465, + "rtt_ns": 1240375, + "rtt_ms": 1.240375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.290770927Z" + "vertex_to": "827", + "timestamp": "2025-11-27T04:01:56.832248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602785, - "rtt_ms": 1.602785, + "rtt_ns": 1441917, + "rtt_ms": 1.441917, "checkpoint": 0, "vertex_from": "256", "vertex_to": "278", - "timestamp": "2025-11-27T01:21:58.290774237Z" + "timestamp": "2025-11-27T04:01:56.832457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749265, - "rtt_ms": 1.749265, + "rtt_ns": 1124709, + "rtt_ms": 1.124709, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "339", - "timestamp": "2025-11-27T01:21:58.290939147Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.832478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319315, - "rtt_ms": 1.319315, + "rtt_ns": 1284250, + "rtt_ms": 1.28425, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "583", - "timestamp": "2025-11-27T01:21:58.291376465Z" + "vertex_to": "339", + "timestamp": "2025-11-27T04:01:56.832517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434955, - "rtt_ms": 1.434955, + "rtt_ns": 1491291, + "rtt_ms": 1.491291, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "827", - "timestamp": "2025-11-27T01:21:58.291469075Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:56.832708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501515, - "rtt_ms": 1.501515, + "rtt_ns": 1756167, + "rtt_ms": 1.756167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.291492225Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.833188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172277, - "rtt_ms": 1.172277, + "rtt_ns": 1416333, + "rtt_ms": 1.416333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:58.291940534Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:56.833209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668904, - "rtt_ms": 1.668904, + "rtt_ns": 1846834, + "rtt_ms": 1.846834, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.292326642Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:01:56.833216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663415, - "rtt_ms": 1.663415, + "rtt_ns": 1416167, + "rtt_ms": 1.416167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "527", - "timestamp": "2025-11-27T01:21:58.292435812Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:56.833224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740695, - "rtt_ms": 1.740695, + "rtt_ns": 1487041, + "rtt_ms": 1.487041, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:58.292485662Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.833969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751455, - "rtt_ms": 1.751455, + "rtt_ns": 1472458, + "rtt_ms": 1.472458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:58.292521842Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:56.833991-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1754365, - "rtt_ms": 1.754365, + "rtt_ns": 1923750, + "rtt_ms": 1.92375, "checkpoint": 0, "vertex_from": "494", - "timestamp": "2025-11-27T01:21:58.292534062Z" + "timestamp": "2025-11-27T04:01:56.834381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751734, - "rtt_ms": 1.751734, + "rtt_ns": 2148417, + "rtt_ms": 2.148417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.292693871Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:56.834397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349025, - "rtt_ms": 1.349025, + "rtt_ns": 1379167, + "rtt_ms": 1.379167, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:58.293291479Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:01:56.834569-08:00" }, { "operation": "add_edge", - "rtt_ns": 1913804, - "rtt_ms": 1.913804, + "rtt_ns": 1876542, + "rtt_ms": 1.876542, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:58.293291859Z" + "vertex_to": "810", + "timestamp": "2025-11-27T04:01:56.834586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883834, - "rtt_ms": 1.883834, + "rtt_ns": 1381208, + "rtt_ms": 1.381208, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "850", - "timestamp": "2025-11-27T01:21:58.293378479Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:56.834591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066717, - "rtt_ms": 1.066717, + "rtt_ns": 1377084, + "rtt_ms": 1.377084, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:58.293394629Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.834603-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574892, - "rtt_ms": 2.574892, + "rtt_ns": 2359333, + "rtt_ms": 2.359333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "810", - "timestamp": "2025-11-27T01:21:58.294045227Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:56.834603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682345, - "rtt_ms": 1.682345, + "rtt_ns": 1608000, + "rtt_ms": 1.608, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.294119367Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:56.834826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645045, - "rtt_ms": 1.645045, + "rtt_ns": 1515375, + "rtt_ms": 1.515375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "494", - "timestamp": "2025-11-27T01:21:58.294179447Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.835487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752894, - "rtt_ms": 1.752894, + "rtt_ns": 1149916, + "rtt_ms": 1.149916, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:58.294275826Z" + "vertex_to": "347", + "timestamp": "2025-11-27T04:01:56.835548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613925, - "rtt_ms": 1.613925, + "rtt_ns": 1574375, + "rtt_ms": 1.574375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "347", - "timestamp": "2025-11-27T01:21:58.294309116Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:56.835567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901814, - "rtt_ms": 1.901814, + "rtt_ns": 1366417, + "rtt_ms": 1.366417, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.294388846Z" + "vertex_to": "494", + "timestamp": "2025-11-27T04:01:56.835748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284516, - "rtt_ms": 1.284516, + "rtt_ns": 1256750, + "rtt_ms": 1.25675, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "867", - "timestamp": "2025-11-27T01:21:58.294680425Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:56.835844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433816, - "rtt_ms": 1.433816, + "rtt_ns": 1405333, + "rtt_ms": 1.405333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "450", - "timestamp": "2025-11-27T01:21:58.294728465Z" + "vertex_to": "867", + "timestamp": "2025-11-27T04:01:56.836011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076597, - "rtt_ms": 1.076597, + "rtt_ns": 1511334, + "rtt_ms": 1.511334, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "561", - "timestamp": "2025-11-27T01:21:58.295123244Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:56.836103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1985514, - "rtt_ms": 1.985514, + "rtt_ns": 1574750, + "rtt_ms": 1.57475, "checkpoint": 0, "vertex_from": "256", "vertex_to": "519", - "timestamp": "2025-11-27T01:21:58.295279153Z" + "timestamp": "2025-11-27T04:01:56.836144-08:00" }, { "operation": "add_edge", - "rtt_ns": 990647, - "rtt_ms": 0.990647, + "rtt_ns": 1489375, + "rtt_ms": 1.489375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "973", - "timestamp": "2025-11-27T01:21:58.295300993Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:56.836317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1140186, - "rtt_ms": 1.140186, + "rtt_ns": 1936583, + "rtt_ms": 1.936583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:58.295321373Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:56.836542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110987, - "rtt_ms": 1.110987, + "rtt_ns": 1155083, + "rtt_ms": 1.155083, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.295388123Z" + "vertex_to": "313", + "timestamp": "2025-11-27T04:01:56.837001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370985, - "rtt_ms": 1.370985, + "rtt_ns": 1690333, + "rtt_ms": 1.690333, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:58.295491572Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:56.837178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152326, - "rtt_ms": 1.152326, + "rtt_ns": 1645709, + "rtt_ms": 1.645709, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "787", - "timestamp": "2025-11-27T01:21:58.295542462Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:56.837194-08:00" }, { "operation": "add_edge", - "rtt_ns": 1444445, - "rtt_ms": 1.444445, + "rtt_ns": 1275250, + "rtt_ms": 1.27525, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "313", - "timestamp": "2025-11-27T01:21:58.29612596Z" + "vertex_to": "423", + "timestamp": "2025-11-27T04:01:56.83742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778551, - "rtt_ms": 2.778551, + "rtt_ns": 2241375, + "rtt_ms": 2.241375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "307", - "timestamp": "2025-11-27T01:21:58.2961589Z" + "vertex_to": "787", + "timestamp": "2025-11-27T04:01:56.837991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544174, - "rtt_ms": 1.544174, + "rtt_ns": 1947166, + "rtt_ms": 1.947166, "checkpoint": 0, "vertex_from": "256", "vertex_to": "654", - "timestamp": "2025-11-27T01:21:58.296668568Z" + "timestamp": "2025-11-27T04:01:56.838051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421395, - "rtt_ms": 1.421395, + "rtt_ns": 2088416, + "rtt_ms": 2.088416, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "327", - "timestamp": "2025-11-27T01:21:58.296723388Z" + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:56.838101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232546, - "rtt_ms": 1.232546, + "rtt_ns": 2584584, + "rtt_ms": 2.584584, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "355", - "timestamp": "2025-11-27T01:21:58.296725408Z" + "vertex_to": "973", + "timestamp": "2025-11-27T04:01:56.838154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188626, - "rtt_ms": 1.188626, + "rtt_ns": 2097583, + "rtt_ms": 2.097583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.296732048Z" + "vertex_to": "327", + "timestamp": "2025-11-27T04:01:56.838416-08:00" }, { "operation": "add_edge", - "rtt_ns": 2542821, - "rtt_ms": 2.542821, + "rtt_ns": 1931916, + "rtt_ms": 1.931916, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:58.297272506Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:56.838474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978953, - "rtt_ms": 1.978953, + "rtt_ns": 1543250, + "rtt_ms": 1.54325, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:58.297301356Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:01:56.838545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1163576, - "rtt_ms": 1.163576, + "rtt_ns": 1125959, + "rtt_ms": 1.125959, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:58.297323856Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:56.838547-08:00" }, { "operation": "add_edge", - "rtt_ns": 2002743, - "rtt_ms": 2.002743, + "rtt_ns": 1738500, + "rtt_ms": 1.7385, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "838", - "timestamp": "2025-11-27T01:21:58.297391636Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.838934-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176143, - "rtt_ms": 2.176143, + "rtt_ns": 1820125, + "rtt_ms": 1.820125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "423", - "timestamp": "2025-11-27T01:21:58.297456436Z" + "vertex_to": "355", + "timestamp": "2025-11-27T04:01:56.838999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409896, - "rtt_ms": 1.409896, + "rtt_ns": 1301125, + "rtt_ms": 1.301125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:58.297537266Z" + "vertex_to": "429", + "timestamp": "2025-11-27T04:01:56.839719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2567932, - "rtt_ms": 2.567932, + "rtt_ns": 1830292, + "rtt_ms": 1.830292, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:58.29929489Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:56.839824-08:00" }, { "operation": "add_edge", - "rtt_ns": 2862721, - "rtt_ms": 2.862721, + "rtt_ns": 1570875, + "rtt_ms": 1.570875, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "331", - "timestamp": "2025-11-27T01:21:58.300166337Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.84012-08:00" }, { "operation": "add_edge", - "rtt_ns": 2976491, - "rtt_ms": 2.976491, + "rtt_ns": 1610458, + "rtt_ms": 1.610458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:58.300251537Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:01:56.840157-08:00" }, { "operation": "add_edge", - "rtt_ns": 3606058, - "rtt_ms": 3.606058, + "rtt_ns": 2004667, + "rtt_ms": 2.004667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "617", - "timestamp": "2025-11-27T01:21:58.300275886Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:56.84016-08:00" }, { "operation": "add_edge", - "rtt_ns": 3565708, - "rtt_ms": 3.565708, + "rtt_ns": 2153500, + "rtt_ms": 2.1535, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "429", - "timestamp": "2025-11-27T01:21:58.300299166Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:56.840206-08:00" }, { "operation": "add_edge", - "rtt_ns": 2908020, - "rtt_ms": 2.90802, + "rtt_ns": 2118166, + "rtt_ms": 2.118166, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:58.300365556Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:01:56.840221-08:00" }, { "operation": "add_edge", - "rtt_ns": 3766498, - "rtt_ms": 3.766498, + "rtt_ns": 1788500, + "rtt_ms": 1.7885, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "818", - "timestamp": "2025-11-27T01:21:58.300492186Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:56.840264-08:00" }, { "operation": "add_edge", - "rtt_ns": 3114380, - "rtt_ms": 3.11438, + "rtt_ns": 1463000, + "rtt_ms": 1.463, "checkpoint": 0, "vertex_from": "256", "vertex_to": "602", - "timestamp": "2025-11-27T01:21:58.300507576Z" + "timestamp": "2025-11-27T04:01:56.840398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282095, - "rtt_ms": 1.282095, + "rtt_ns": 1410250, + "rtt_ms": 1.41025, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "899", - "timestamp": "2025-11-27T01:21:58.300578795Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:56.840411-08:00" }, { "operation": "add_edge", - "rtt_ns": 3070429, - "rtt_ms": 3.070429, + "rtt_ns": 1188458, + "rtt_ms": 1.188458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "555", - "timestamp": "2025-11-27T01:21:58.300609085Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:01:56.841349-08:00" }, { "operation": "add_edge", - "rtt_ns": 3386489, - "rtt_ms": 3.386489, + "rtt_ns": 1947583, + "rtt_ms": 1.947583, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.300712015Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:01:56.841668-08:00" }, { "operation": "add_edge", - "rtt_ns": 893307, - "rtt_ms": 0.893307, + "rtt_ns": 1625375, + "rtt_ms": 1.625375, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "573", - "timestamp": "2025-11-27T01:21:58.301145944Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:56.841787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000277, - "rtt_ms": 1.000277, + "rtt_ns": 1967667, + "rtt_ms": 1.967667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:58.301167724Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:01:56.841793-08:00" }, { "operation": "add_edge", - "rtt_ns": 885588, - "rtt_ms": 0.885588, + "rtt_ns": 1602958, + "rtt_ms": 1.602958, "checkpoint": 0, "vertex_from": "256", "vertex_to": "793", - "timestamp": "2025-11-27T01:21:58.301185844Z" + "timestamp": "2025-11-27T04:01:56.841811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1027447, - "rtt_ms": 1.027447, + "rtt_ns": 1605416, + "rtt_ms": 1.605416, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:58.301304443Z" + "vertex_to": "745", + "timestamp": "2025-11-27T04:01:56.841828-08:00" }, { "operation": "add_edge", - "rtt_ns": 969997, - "rtt_ms": 0.969997, + "rtt_ns": 1581250, + "rtt_ms": 1.58125, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "745", - "timestamp": "2025-11-27T01:21:58.301336463Z" + "vertex_to": "312", + "timestamp": "2025-11-27T04:01:56.841847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634365, - "rtt_ms": 1.634365, + "rtt_ns": 1452667, + "rtt_ms": 1.452667, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "312", - "timestamp": "2025-11-27T01:21:58.302128831Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:56.841864-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452395, - "rtt_ms": 1.452395, + "rtt_ns": 1482250, + "rtt_ms": 1.48225, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "611", - "timestamp": "2025-11-27T01:21:58.30216591Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:56.841881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568345, - "rtt_ms": 1.568345, + "rtt_ns": 1761000, + "rtt_ms": 1.761, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.30217913Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:56.841882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682964, - "rtt_ms": 1.682964, + "rtt_ns": 1539458, + "rtt_ms": 1.539458, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:58.30219203Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.84289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781665, - "rtt_ms": 1.781665, + "rtt_ns": 1321958, + "rtt_ms": 1.321958, "checkpoint": 0, "vertex_from": "256", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:58.30236265Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:01:56.842991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401575, - "rtt_ms": 1.401575, + "rtt_ns": 1362375, + "rtt_ms": 1.362375, "checkpoint": 0, "vertex_from": "257", "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.302589409Z" + "timestamp": "2025-11-27T04:01:56.843175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471085, - "rtt_ms": 1.471085, + "rtt_ns": 1589042, + "rtt_ms": 1.589042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.302619349Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.843403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528875, - "rtt_ms": 1.528875, + "rtt_ns": 1574833, + "rtt_ms": 1.574833, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.302835348Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:56.84344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2078033, - "rtt_ms": 2.078033, + "rtt_ns": 1599208, + "rtt_ms": 1.599208, "checkpoint": 0, "vertex_from": "257", "vertex_to": "653", - "timestamp": "2025-11-27T01:21:58.303415806Z" + "timestamp": "2025-11-27T04:01:56.843447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084896, - "rtt_ms": 1.084896, + "rtt_ns": 1637958, + "rtt_ms": 1.637958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "614", - "timestamp": "2025-11-27T01:21:58.303449446Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.843466-08:00" }, { "operation": "add_edge", - "rtt_ns": 2284402, - "rtt_ms": 2.284402, + "rtt_ns": 1587500, + "rtt_ms": 1.5875, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.303453886Z" + "vertex_to": "410", + "timestamp": "2025-11-27T04:01:56.84347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316586, - "rtt_ms": 1.316586, + "rtt_ns": 1707917, + "rtt_ms": 1.707917, "checkpoint": 0, "vertex_from": "257", "vertex_to": "312", - "timestamp": "2025-11-27T01:21:58.303484116Z" + "timestamp": "2025-11-27T04:01:56.843589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291666, - "rtt_ms": 1.291666, + "rtt_ns": 1822250, + "rtt_ms": 1.82225, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.303486716Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.84361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334636, - "rtt_ms": 1.334636, + "rtt_ns": 1316375, + "rtt_ms": 1.316375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "410", - "timestamp": "2025-11-27T01:21:58.303515586Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.844208-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1402885, - "rtt_ms": 1.402885, + "operation": "add_vertex", + "rtt_ns": 1320000, + "rtt_ms": 1.32, "checkpoint": 0, - "vertex_from": "257", - "vertex_to": "330", - "timestamp": "2025-11-27T01:21:58.303532726Z" + "vertex_from": "939", + "timestamp": "2025-11-27T04:01:56.844497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894894, - "rtt_ms": 1.894894, + "rtt_ns": 1551458, + "rtt_ms": 1.551458, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.304518883Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:01:56.844544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685035, - "rtt_ms": 1.685035, + "rtt_ns": 1226583, + "rtt_ms": 1.226583, "checkpoint": 0, "vertex_from": "257", "vertex_to": "724", - "timestamp": "2025-11-27T01:21:58.304522673Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1938794, - "rtt_ms": 1.938794, - "checkpoint": 0, - "vertex_from": "939", - "timestamp": "2025-11-27T01:21:58.304531613Z" + "timestamp": "2025-11-27T04:01:56.844668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371486, - "rtt_ms": 1.371486, + "rtt_ns": 1249292, + "rtt_ms": 1.249292, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "586", - "timestamp": "2025-11-27T01:21:58.304859672Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:56.84472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448046, - "rtt_ms": 1.448046, + "rtt_ns": 1518250, + "rtt_ms": 1.51825, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "396", - "timestamp": "2025-11-27T01:21:58.304865462Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.844924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360586, - "rtt_ms": 1.360586, + "rtt_ns": 1711500, + "rtt_ms": 1.7115, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.304877422Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.845179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533596, - "rtt_ms": 1.533596, + "rtt_ns": 1585792, + "rtt_ms": 1.585792, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.304984492Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:56.845196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637125, - "rtt_ms": 1.637125, + "rtt_ns": 1651958, + "rtt_ms": 1.651958, "checkpoint": 0, "vertex_from": "257", "vertex_to": "395", - "timestamp": "2025-11-27T01:21:58.305122951Z" + "timestamp": "2025-11-27T04:01:56.845242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039397, - "rtt_ms": 1.039397, + "rtt_ns": 2146833, + "rtt_ms": 2.146833, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.30556364Z" + "vertex_to": "396", + "timestamp": "2025-11-27T04:01:56.845595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045967, - "rtt_ms": 1.045967, + "rtt_ns": 1420667, + "rtt_ms": 1.420667, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "939", - "timestamp": "2025-11-27T01:21:58.30557806Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:56.84563-08:00" }, { "operation": "add_edge", - "rtt_ns": 2125544, - "rtt_ms": 2.125544, + "rtt_ns": 1135625, + "rtt_ms": 1.135625, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:58.30558182Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.845857-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051284, - "rtt_ms": 2.051284, + "rtt_ns": 1273917, + "rtt_ms": 1.273917, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "936", - "timestamp": "2025-11-27T01:21:58.30558567Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:56.845943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098427, - "rtt_ms": 1.098427, + "rtt_ns": 1418667, + "rtt_ms": 1.418667, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:58.3056188Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:56.845964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591155, - "rtt_ms": 1.591155, + "rtt_ns": 1615959, + "rtt_ms": 1.615959, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:58.306451887Z" + "vertex_to": "939", + "timestamp": "2025-11-27T04:01:56.846114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606845, - "rtt_ms": 1.606845, + "rtt_ns": 1336583, + "rtt_ms": 1.336583, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "866", - "timestamp": "2025-11-27T01:21:58.306485517Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:56.846262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361706, - "rtt_ms": 1.361706, + "rtt_ns": 1257458, + "rtt_ms": 1.257458, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.306485927Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.846501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625735, - "rtt_ms": 1.625735, + "rtt_ns": 1380458, + "rtt_ms": 1.380458, "checkpoint": 0, "vertex_from": "257", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.306493367Z" + "timestamp": "2025-11-27T04:01:56.846561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154346, - "rtt_ms": 1.154346, + "rtt_ns": 973000, + "rtt_ms": 0.973, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:58.306719556Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.846831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185196, - "rtt_ms": 1.185196, + "rtt_ns": 1589333, + "rtt_ms": 1.589333, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.306764586Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.847187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804254, - "rtt_ms": 1.804254, + "rtt_ns": 2010333, + "rtt_ms": 2.010333, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.306790496Z" + "vertex_to": "866", + "timestamp": "2025-11-27T04:01:56.847207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328175, - "rtt_ms": 1.328175, + "rtt_ns": 1742666, + "rtt_ms": 1.742666, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.306915765Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:56.847375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582494, - "rtt_ms": 1.582494, + "rtt_ns": 1446791, + "rtt_ms": 1.446791, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "258", - "timestamp": "2025-11-27T01:21:58.307202504Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.84739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917804, - "rtt_ms": 1.917804, + "rtt_ns": 1292250, + "rtt_ms": 1.29225, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.307502724Z" + "vertex_to": "258", + "timestamp": "2025-11-27T04:01:56.847407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374255, - "rtt_ms": 1.374255, + "rtt_ns": 1226583, + "rtt_ms": 1.226583, "checkpoint": 0, "vertex_from": "257", "vertex_to": "340", - "timestamp": "2025-11-27T01:21:58.307828182Z" + "timestamp": "2025-11-27T04:01:56.847489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514915, - "rtt_ms": 1.514915, + "rtt_ns": 884917, + "rtt_ms": 0.884917, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.308002242Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.847717-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603225, - "rtt_ms": 1.603225, + "rtt_ns": 1897458, + "rtt_ms": 1.897458, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.308099252Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.847862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566485, - "rtt_ms": 1.566485, + "rtt_ns": 1373500, + "rtt_ms": 1.3735, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.308287181Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.847876-08:00" }, { "operation": "add_edge", - "rtt_ns": 3104450, - "rtt_ms": 3.10445, + "rtt_ns": 1584250, + "rtt_ms": 1.58425, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.309591407Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.848147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2816471, - "rtt_ms": 2.816471, + "rtt_ns": 1415583, + "rtt_ms": 1.415583, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:58.309608017Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.848604-08:00" }, { "operation": "add_edge", - "rtt_ns": 2868090, - "rtt_ms": 2.86809, + "rtt_ns": 1533208, + "rtt_ms": 1.533208, "checkpoint": 0, "vertex_from": "257", "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.309633866Z" + "timestamp": "2025-11-27T04:01:56.848741-08:00" }, { "operation": "add_edge", - "rtt_ns": 2453912, - "rtt_ms": 2.453912, + "rtt_ns": 1794583, + "rtt_ms": 1.794583, "checkpoint": 0, "vertex_from": "257", "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.309658776Z" + "timestamp": "2025-11-27T04:01:56.849202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625214, - "rtt_ms": 1.625214, + "rtt_ns": 1394042, + "rtt_ms": 1.394042, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:58.309913795Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.849257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2997840, - "rtt_ms": 2.99784, + "rtt_ns": 1544875, + "rtt_ms": 1.544875, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.309915785Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.849263-08:00" }, { "operation": "add_edge", - "rtt_ns": 2436711, - "rtt_ms": 2.436711, + "rtt_ns": 1798791, + "rtt_ms": 1.798791, "checkpoint": 0, "vertex_from": "257", "vertex_to": "547", - "timestamp": "2025-11-27T01:21:58.309944795Z" + "timestamp": "2025-11-27T04:01:56.849288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1957203, - "rtt_ms": 1.957203, + "rtt_ns": 1898083, + "rtt_ms": 1.898083, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.309961215Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.849289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877903, - "rtt_ms": 1.877903, + "rtt_ns": 701708, + "rtt_ms": 0.701708, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.309978605Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:56.849306-08:00" }, { "operation": "add_edge", - "rtt_ns": 2155443, - "rtt_ms": 2.155443, + "rtt_ns": 1440459, + "rtt_ms": 1.440459, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.309985695Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.849318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117357, - "rtt_ms": 1.117357, + "rtt_ns": 2112792, + "rtt_ms": 2.112792, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.310777213Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:56.849488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234565, - "rtt_ms": 1.234565, + "rtt_ns": 1820500, + "rtt_ms": 1.8205, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "707", - "timestamp": "2025-11-27T01:21:58.310827252Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:56.849968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275196, - "rtt_ms": 1.275196, + "rtt_ns": 1559375, + "rtt_ms": 1.559375, "checkpoint": 0, "vertex_from": "257", "vertex_to": "398", - "timestamp": "2025-11-27T01:21:58.310884962Z" + "timestamp": "2025-11-27T04:01:56.850302-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013207, - "rtt_ms": 1.013207, + "rtt_ns": 1158708, + "rtt_ms": 1.158708, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.310930052Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.850449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359486, - "rtt_ms": 1.359486, + "rtt_ns": 1261417, + "rtt_ms": 1.261417, "checkpoint": 0, "vertex_from": "257", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.310994422Z" + "timestamp": "2025-11-27T04:01:56.850467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588865, - "rtt_ms": 1.588865, + "rtt_ns": 1400458, + "rtt_ms": 1.400458, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "948", - "timestamp": "2025-11-27T01:21:58.31155164Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1784894, - "rtt_ms": 1.784894, - "checkpoint": 0, - "vertex_from": "257", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.311732169Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:56.850665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766974, - "rtt_ms": 1.766974, + "rtt_ns": 1192709, + "rtt_ms": 1.192709, "checkpoint": 0, "vertex_from": "257", "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.311756039Z" + "timestamp": "2025-11-27T04:01:56.850682-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804374, - "rtt_ms": 1.804374, + "rtt_ns": 1739917, + "rtt_ms": 1.739917, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.311784439Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.850998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872614, - "rtt_ms": 1.872614, + "rtt_ns": 1048583, + "rtt_ms": 1.048583, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:58.311787929Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.851018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402886, - "rtt_ms": 1.402886, + "rtt_ns": 1715791, + "rtt_ms": 1.715791, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.312232358Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.851035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1414786, - "rtt_ms": 1.414786, + "rtt_ns": 1851584, + "rtt_ms": 1.851584, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.312302618Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.851141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379076, - "rtt_ms": 1.379076, + "rtt_ns": 2030709, + "rtt_ms": 2.030709, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "729", - "timestamp": "2025-11-27T01:21:58.312311228Z" + "vertex_to": "948", + "timestamp": "2025-11-27T04:01:56.85134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578824, - "rtt_ms": 1.578824, + "rtt_ns": 1224083, + "rtt_ms": 1.224083, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.312360287Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.851675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404715, - "rtt_ms": 1.404715, + "rtt_ns": 1221292, + "rtt_ms": 1.221292, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.312401167Z" + "vertex_to": "729", + "timestamp": "2025-11-27T04:01:56.851689-08:00" }, { "operation": "add_edge", - "rtt_ns": 733638, - "rtt_ms": 0.733638, + "rtt_ns": 1543750, + "rtt_ms": 1.54375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "461", - "timestamp": "2025-11-27T01:21:58.312467707Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.851849-08:00" }, { "operation": "add_edge", - "rtt_ns": 931907, - "rtt_ms": 0.931907, + "rtt_ns": 1246209, + "rtt_ms": 1.246209, "checkpoint": 0, "vertex_from": "257", "vertex_to": "777", - "timestamp": "2025-11-27T01:21:58.312486147Z" + "timestamp": "2025-11-27T04:01:56.851929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198926, - "rtt_ms": 1.198926, + "rtt_ns": 1379834, + "rtt_ms": 1.379834, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.312988315Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.852046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428626, - "rtt_ms": 1.428626, + "rtt_ns": 1168708, + "rtt_ms": 1.168708, "checkpoint": 0, "vertex_from": "257", "vertex_to": "564", - "timestamp": "2025-11-27T01:21:58.313186375Z" + "timestamp": "2025-11-27T04:01:56.852188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467726, - "rtt_ms": 1.467726, + "rtt_ns": 1288583, + "rtt_ms": 1.288583, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:58.313254605Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:01:56.852288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136496, - "rtt_ms": 1.136496, + "rtt_ns": 1267334, + "rtt_ms": 1.267334, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.313370524Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:56.852303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624695, - "rtt_ms": 1.624695, + "rtt_ns": 1323625, + "rtt_ms": 1.323625, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "485", - "timestamp": "2025-11-27T01:21:58.313987012Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:56.852465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767094, - "rtt_ms": 1.767094, + "rtt_ns": 1202500, + "rtt_ms": 1.2025, "checkpoint": 0, "vertex_from": "257", "vertex_to": "581", - "timestamp": "2025-11-27T01:21:58.314080632Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1768954, - "rtt_ms": 1.768954, - "checkpoint": 0, - "vertex_from": "257", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.314238921Z" + "timestamp": "2025-11-27T04:01:56.852894-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1969743, - "rtt_ms": 1.969743, + "rtt_ns": 1413875, + "rtt_ms": 1.413875, "checkpoint": 0, "vertex_from": "591", - "timestamp": "2025-11-27T01:21:58.314277351Z" + "timestamp": "2025-11-27T04:01:56.853091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789584, - "rtt_ms": 1.789584, + "rtt_ns": 1610958, + "rtt_ms": 1.610958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:58.314277551Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.853658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1886834, - "rtt_ms": 1.886834, + "rtt_ns": 1769208, + "rtt_ms": 1.769208, "checkpoint": 0, "vertex_from": "257", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.314290351Z" + "timestamp": "2025-11-27T04:01:56.8537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440025, - "rtt_ms": 1.440025, + "rtt_ns": 1744792, + "rtt_ms": 1.744792, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "568", - "timestamp": "2025-11-27T01:21:58.31462792Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:56.853934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396195, - "rtt_ms": 1.396195, + "rtt_ns": 2655541, + "rtt_ms": 2.655541, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.31465299Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.853996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776835, - "rtt_ms": 1.776835, + "rtt_ns": 2145959, + "rtt_ms": 2.145959, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.31476708Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:56.853996-08:00" }, { "operation": "add_edge", - "rtt_ns": 780437, - "rtt_ms": 0.780437, + "rtt_ns": 2105125, + "rtt_ms": 2.105125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "619", - "timestamp": "2025-11-27T01:21:58.314862509Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:01:56.855002-08:00" }, { "operation": "add_edge", - "rtt_ns": 898647, - "rtt_ms": 0.898647, + "rtt_ns": 2721125, + "rtt_ms": 2.721125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "930", - "timestamp": "2025-11-27T01:21:58.314886969Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.855187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515855, - "rtt_ms": 1.515855, + "rtt_ns": 2111250, + "rtt_ms": 2.11125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "563", - "timestamp": "2025-11-27T01:21:58.314887959Z" + "vertex_to": "591", + "timestamp": "2025-11-27T04:01:56.855203-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1730542, + "rtt_ms": 1.730542, + "checkpoint": 0, + "vertex_from": "257", + "vertex_to": "930", + "timestamp": "2025-11-27T04:01:56.855391-08:00" }, { "operation": "add_edge", - "rtt_ns": 834768, - "rtt_ms": 0.834768, + "rtt_ns": 1470500, + "rtt_ms": 1.4705, "checkpoint": 0, "vertex_from": "257", "vertex_to": "756", - "timestamp": "2025-11-27T01:21:58.315079679Z" + "timestamp": "2025-11-27T04:01:56.855406-08:00" }, { "operation": "add_edge", - "rtt_ns": 826208, - "rtt_ms": 0.826208, + "rtt_ns": 3121208, + "rtt_ms": 3.121208, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.315118279Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.855409-08:00" }, { "operation": "add_edge", - "rtt_ns": 884027, - "rtt_ms": 0.884027, + "rtt_ns": 1432209, + "rtt_ms": 1.432209, "checkpoint": 0, "vertex_from": "257", "vertex_to": "816", - "timestamp": "2025-11-27T01:21:58.315165438Z" + "timestamp": "2025-11-27T04:01:56.85543-08:00" }, { "operation": "add_edge", - "rtt_ns": 904717, - "rtt_ms": 0.904717, + "rtt_ns": 1435084, + "rtt_ms": 1.435084, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "591", - "timestamp": "2025-11-27T01:21:58.315182958Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:56.855433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030227, - "rtt_ms": 1.030227, + "rtt_ns": 1743916, + "rtt_ms": 1.743916, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.315686547Z" + "vertex_to": "619", + "timestamp": "2025-11-27T04:01:56.855446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080256, - "rtt_ms": 1.080256, + "rtt_ns": 3259708, + "rtt_ms": 3.259708, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.315849786Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:56.855564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1321976, - "rtt_ms": 1.321976, + "rtt_ns": 1296083, + "rtt_ms": 1.296083, "checkpoint": 0, "vertex_from": "257", "vertex_to": "555", - "timestamp": "2025-11-27T01:21:58.315955246Z" + "timestamp": "2025-11-27T04:01:56.856299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234167, - "rtt_ms": 1.234167, + "rtt_ns": 1301708, + "rtt_ms": 1.301708, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.316098516Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.85649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246836, - "rtt_ms": 1.246836, + "rtt_ns": 1119709, + "rtt_ms": 1.119709, "checkpoint": 0, "vertex_from": "257", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.316135815Z" + "timestamp": "2025-11-27T04:01:56.856527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255246, - "rtt_ms": 1.255246, + "rtt_ns": 1121792, + "rtt_ms": 1.121792, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "861", - "timestamp": "2025-11-27T01:21:58.316145295Z" + "vertex_to": "405", + "timestamp": "2025-11-27T04:01:56.856556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116896, - "rtt_ms": 1.116896, + "rtt_ns": 1412125, + "rtt_ms": 1.412125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:58.316198215Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.85698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108926, - "rtt_ms": 1.108926, + "rtt_ns": 1553958, + "rtt_ms": 1.553958, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "405", - "timestamp": "2025-11-27T01:21:58.316229635Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772925, - "rtt_ms": 1.772925, + "rtt_ns": 1571708, + "rtt_ms": 1.571708, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.316957593Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:56.857003-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124667, - "rtt_ms": 1.124667, + "rtt_ns": 1813875, + "rtt_ms": 1.813875, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.316976693Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.857017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040117, - "rtt_ms": 1.040117, + "rtt_ns": 1622625, + "rtt_ms": 1.622625, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.316997703Z" + "vertex_to": "861", + "timestamp": "2025-11-27T04:01:56.857033-08:00" }, { "operation": "add_edge", - "rtt_ns": 912137, - "rtt_ms": 0.912137, + "rtt_ns": 1641292, + "rtt_ms": 1.641292, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.317012083Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.857033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325696, - "rtt_ms": 1.325696, + "rtt_ns": 854541, + "rtt_ms": 0.854541, "checkpoint": 0, "vertex_from": "257", "vertex_to": "538", - "timestamp": "2025-11-27T01:21:58.317022993Z" + "timestamp": "2025-11-27T04:01:56.857154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875955, - "rtt_ms": 1.875955, + "rtt_ns": 1307334, + "rtt_ms": 1.307334, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.317043433Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.857872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130297, - "rtt_ms": 1.130297, + "rtt_ns": 1480250, + "rtt_ms": 1.48025, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:58.317279262Z" + "vertex_to": "262", + "timestamp": "2025-11-27T04:01:56.858008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159856, - "rtt_ms": 1.159856, + "rtt_ns": 1535375, + "rtt_ms": 1.535375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.317390731Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.858027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329996, - "rtt_ms": 1.329996, + "rtt_ns": 1027917, + "rtt_ms": 1.027917, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.317467821Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:56.858183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280466, - "rtt_ms": 1.280466, + "rtt_ns": 1323709, + "rtt_ms": 1.323709, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.317480981Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.858358-08:00" }, { "operation": "add_edge", - "rtt_ns": 690648, - "rtt_ms": 0.690648, + "rtt_ns": 1491250, + "rtt_ms": 1.49125, "checkpoint": 0, "vertex_from": "257", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.317649601Z" + "timestamp": "2025-11-27T04:01:56.858525-08:00" }, { "operation": "add_edge", - "rtt_ns": 671068, - "rtt_ms": 0.671068, + "rtt_ns": 1536167, + "rtt_ms": 1.536167, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.317649821Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.858541-08:00" }, { "operation": "add_edge", - "rtt_ns": 663768, - "rtt_ms": 0.663768, + "rtt_ns": 1714792, + "rtt_ms": 1.714792, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.317662771Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.858733-08:00" }, { "operation": "add_edge", - "rtt_ns": 935587, - "rtt_ms": 0.935587, + "rtt_ns": 1813750, + "rtt_ms": 1.81375, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.318216619Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.858795-08:00" }, { "operation": "add_edge", - "rtt_ns": 843638, - "rtt_ms": 0.843638, + "rtt_ns": 1825416, + "rtt_ms": 1.825416, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:58.318235379Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:56.858826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212646, - "rtt_ms": 1.212646, + "rtt_ns": 1079791, + "rtt_ms": 1.079791, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.318257659Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.859264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326885, - "rtt_ms": 1.326885, + "rtt_ns": 1529167, + "rtt_ms": 1.529167, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.318352158Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:56.859403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475225, - "rtt_ms": 1.475225, + "rtt_ns": 1416209, + "rtt_ms": 1.416209, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:58.318489388Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.859426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177866, - "rtt_ms": 1.177866, + "rtt_ns": 1614625, + "rtt_ms": 1.614625, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:58.318659987Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.859643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348246, - "rtt_ms": 1.348246, + "rtt_ns": 1348083, + "rtt_ms": 1.348083, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "429", - "timestamp": "2025-11-27T01:21:58.318817427Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:56.859707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724204, - "rtt_ms": 1.724204, + "rtt_ns": 1472583, + "rtt_ms": 1.472583, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "343", - "timestamp": "2025-11-27T01:21:58.319376165Z" + "vertex_to": "429", + "timestamp": "2025-11-27T04:01:56.859998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806944, - "rtt_ms": 1.806944, + "rtt_ns": 1434125, + "rtt_ms": 1.434125, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.319471665Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.86017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1864084, - "rtt_ms": 1.864084, + "rtt_ns": 1363708, + "rtt_ms": 1.363708, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.319514865Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.860192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758034, - "rtt_ms": 1.758034, + "rtt_ns": 1716500, + "rtt_ms": 1.7165, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "338", - "timestamp": "2025-11-27T01:21:58.319995313Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:56.860258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874414, - "rtt_ms": 1.874414, + "rtt_ns": 1667625, + "rtt_ms": 1.667625, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.320093363Z" + "vertex_to": "343", + "timestamp": "2025-11-27T04:01:56.860464-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840624, - "rtt_ms": 1.840624, + "rtt_ns": 1320542, + "rtt_ms": 1.320542, "checkpoint": 0, "vertex_from": "257", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.320100503Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:56.860724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446396, - "rtt_ms": 1.446396, + "rtt_ns": 1317334, + "rtt_ms": 1.317334, "checkpoint": 0, - "vertex_from": "258", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.320107723Z" + "vertex_from": "257", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.860746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312986, - "rtt_ms": 1.312986, + "rtt_ns": 1474959, + "rtt_ms": 1.474959, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.320131853Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:01:56.86112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828495, - "rtt_ms": 1.828495, + "rtt_ns": 1855917, + "rtt_ms": 1.855917, "checkpoint": 0, - "vertex_from": "258", - "vertex_to": "678", - "timestamp": "2025-11-27T01:21:58.320183973Z" + "vertex_from": "257", + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:56.861121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272756, - "rtt_ms": 1.272756, + "rtt_ns": 1431666, + "rtt_ms": 1.431666, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.320651111Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.861139-08:00" }, { "operation": "add_edge", - "rtt_ns": 2365182, - "rtt_ms": 2.365182, + "rtt_ns": 1499875, + "rtt_ms": 1.499875, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.32085676Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.8615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425965, - "rtt_ms": 1.425965, + "rtt_ns": 1392542, + "rtt_ms": 1.392542, "checkpoint": 0, "vertex_from": "258", "vertex_to": "454", - "timestamp": "2025-11-27T01:21:58.32089883Z" + "timestamp": "2025-11-27T04:01:56.861651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485845, - "rtt_ms": 1.485845, + "rtt_ns": 1524792, + "rtt_ms": 1.524792, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.3210019Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.861697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719964, - "rtt_ms": 1.719964, + "rtt_ns": 1585834, + "rtt_ms": 1.585834, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "456", - "timestamp": "2025-11-27T01:21:58.321853347Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.861779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672824, - "rtt_ms": 1.672824, + "rtt_ns": 1393125, + "rtt_ms": 1.393125, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.321858967Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:56.861859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757234, - "rtt_ms": 1.757234, + "rtt_ns": 1364583, + "rtt_ms": 1.364583, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "294", - "timestamp": "2025-11-27T01:21:58.321860157Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.862111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780364, - "rtt_ms": 1.780364, + "rtt_ns": 1547250, + "rtt_ms": 1.54725, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.321875417Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:56.862273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1490465, - "rtt_ms": 1.490465, + "rtt_ns": 1442667, + "rtt_ms": 1.442667, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.322143226Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:56.862565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2056933, - "rtt_ms": 2.056933, + "rtt_ns": 1441500, + "rtt_ms": 1.4415, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:58.322166706Z" + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:56.862582-08:00" }, { "operation": "add_edge", - "rtt_ns": 2232213, - "rtt_ms": 2.232213, + "rtt_ns": 1474541, + "rtt_ms": 1.474541, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "848", - "timestamp": "2025-11-27T01:21:58.322229066Z" + "vertex_to": "294", + "timestamp": "2025-11-27T04:01:56.862598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781735, - "rtt_ms": 1.781735, + "rtt_ns": 1175375, + "rtt_ms": 1.175375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.322641045Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.862828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1029307, - "rtt_ms": 1.029307, + "rtt_ns": 1359375, + "rtt_ms": 1.359375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "457", - "timestamp": "2025-11-27T01:21:58.322884184Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.862861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028244, - "rtt_ms": 2.028244, + "rtt_ns": 1594125, + "rtt_ms": 1.594125, "checkpoint": 0, "vertex_from": "258", "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.322928464Z" + "timestamp": "2025-11-27T04:01:56.863373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186367, - "rtt_ms": 1.186367, + "rtt_ns": 1529750, + "rtt_ms": 1.52975, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:58.323047114Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.86339-08:00" }, { "operation": "add_edge", - "rtt_ns": 2136233, - "rtt_ms": 2.136233, + "rtt_ns": 1940959, + "rtt_ms": 1.940959, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.323139593Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.863638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292716, - "rtt_ms": 1.292716, + "rtt_ns": 1073042, + "rtt_ms": 1.073042, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "266", - "timestamp": "2025-11-27T01:21:58.323154333Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.863656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271626, - "rtt_ms": 1.271626, + "rtt_ns": 1400375, + "rtt_ms": 1.400375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.323914651Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:56.863674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789605, - "rtt_ms": 1.789605, + "rtt_ns": 1301875, + "rtt_ms": 1.301875, "checkpoint": 0, "vertex_from": "258", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.323935111Z" + "timestamp": "2025-11-27T04:01:56.8639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767155, - "rtt_ms": 1.767155, + "rtt_ns": 1353458, + "rtt_ms": 1.353458, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.323936561Z" + "vertex_to": "266", + "timestamp": "2025-11-27T04:01:56.86392-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020037, - "rtt_ms": 1.020037, + "rtt_ns": 1829292, + "rtt_ms": 1.829292, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.323950321Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:01:56.863943-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088364, - "rtt_ms": 2.088364, + "rtt_ns": 1414750, + "rtt_ms": 1.41475, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.323965331Z" + "vertex_to": "465", + "timestamp": "2025-11-27T04:01:56.864279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751574, - "rtt_ms": 1.751574, + "rtt_ns": 1562375, + "rtt_ms": 1.562375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "465", - "timestamp": "2025-11-27T01:21:58.32398192Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.864391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141417, - "rtt_ms": 1.141417, + "rtt_ns": 1395083, + "rtt_ms": 1.395083, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.32419137Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:56.864786-08:00" }, { "operation": "add_edge", - "rtt_ns": 967696, - "rtt_ms": 0.967696, + "rtt_ns": 1435125, + "rtt_ms": 1.435125, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "259", - "timestamp": "2025-11-27T01:21:58.324906307Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.86481-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044403, - "rtt_ms": 2.044403, + "rtt_ns": 1422583, + "rtt_ms": 1.422583, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "781", - "timestamp": "2025-11-27T01:21:58.324930187Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.865062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781024, - "rtt_ms": 1.781024, + "rtt_ns": 1412625, + "rtt_ms": 1.412625, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.324936677Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:56.865069-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796474, - "rtt_ms": 1.796474, + "rtt_ns": 1454500, + "rtt_ms": 1.4545, "checkpoint": 0, "vertex_from": "258", "vertex_to": "594", - "timestamp": "2025-11-27T01:21:58.324940577Z" + "timestamp": "2025-11-27T04:01:56.86513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714544, - "rtt_ms": 1.714544, + "rtt_ns": 1406375, + "rtt_ms": 1.406375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.325682105Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.865309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527075, - "rtt_ms": 1.527075, + "rtt_ns": 1595125, + "rtt_ms": 1.595125, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "590", - "timestamp": "2025-11-27T01:21:58.325720355Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.865539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805954, - "rtt_ms": 1.805954, + "rtt_ns": 1199584, + "rtt_ms": 1.199584, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.325742595Z" + "vertex_to": "263", + "timestamp": "2025-11-27T04:01:56.865592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849183, - "rtt_ms": 1.849183, + "rtt_ns": 1676083, + "rtt_ms": 1.676083, "checkpoint": 0, "vertex_from": "258", "vertex_to": "542", - "timestamp": "2025-11-27T01:21:58.325767174Z" + "timestamp": "2025-11-27T04:01:56.865597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785794, - "rtt_ms": 1.785794, + "rtt_ns": 1461083, + "rtt_ms": 1.461083, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.325769504Z" + "vertex_to": "259", + "timestamp": "2025-11-27T04:01:56.865742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825103, - "rtt_ms": 1.825103, + "rtt_ns": 930500, + "rtt_ms": 0.9305, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "263", - "timestamp": "2025-11-27T01:21:58.325777914Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:56.866061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282956, - "rtt_ms": 1.282956, + "rtt_ns": 1552042, + "rtt_ms": 1.552042, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.326225963Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.86634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289916, - "rtt_ms": 1.289916, + "rtt_ns": 1548041, + "rtt_ms": 1.548041, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.326228533Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.866359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353486, - "rtt_ms": 1.353486, + "rtt_ns": 1539375, + "rtt_ms": 1.539375, "checkpoint": 0, "vertex_from": "258", "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.326265283Z" + "timestamp": "2025-11-27T04:01:56.866621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360966, - "rtt_ms": 1.360966, + "rtt_ns": 1665916, + "rtt_ms": 1.665916, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "344", - "timestamp": "2025-11-27T01:21:58.326292703Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:01:56.86673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286065, - "rtt_ms": 1.286065, + "rtt_ns": 1435625, + "rtt_ms": 1.435625, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.32696962Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.866746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244016, - "rtt_ms": 1.244016, + "rtt_ns": 1210208, + "rtt_ms": 1.210208, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.32701574Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.866752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391355, - "rtt_ms": 1.391355, + "rtt_ns": 1345417, + "rtt_ms": 1.345417, "checkpoint": 0, "vertex_from": "258", "vertex_to": "420", - "timestamp": "2025-11-27T01:21:58.32711263Z" + "timestamp": "2025-11-27T04:01:56.866944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344026, - "rtt_ms": 1.344026, + "rtt_ns": 1400958, + "rtt_ms": 1.400958, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.32711262Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:56.866995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408915, - "rtt_ms": 1.408915, + "rtt_ns": 1492459, + "rtt_ms": 1.492459, "checkpoint": 0, "vertex_from": "258", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.32715231Z" + "timestamp": "2025-11-27T04:01:56.867235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478255, - "rtt_ms": 1.478255, + "rtt_ns": 1944834, + "rtt_ms": 1.944834, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.327258499Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.868008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211436, - "rtt_ms": 1.211436, + "rtt_ns": 1454667, + "rtt_ms": 1.454667, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.327441829Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.868207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559315, - "rtt_ms": 1.559315, + "rtt_ns": 1609542, + "rtt_ms": 1.609542, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.327854208Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.868341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760184, - "rtt_ms": 1.760184, + "rtt_ns": 1731500, + "rtt_ms": 1.7315, "checkpoint": 0, "vertex_from": "258", "vertex_to": "801", - "timestamp": "2025-11-27T01:21:58.327988037Z" + "timestamp": "2025-11-27T04:01:56.868353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747724, - "rtt_ms": 1.747724, + "rtt_ns": 1610541, + "rtt_ms": 1.610541, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.328015017Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.868556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299766, - "rtt_ms": 1.299766, + "rtt_ns": 1864834, + "rtt_ms": 1.864834, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.328272716Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.868612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174536, - "rtt_ms": 1.174536, + "rtt_ns": 1663417, + "rtt_ms": 1.663417, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:58.328288756Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:56.868659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373896, - "rtt_ms": 1.373896, + "rtt_ns": 2365792, + "rtt_ms": 2.365792, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:58.328391146Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.868707-08:00" }, { "operation": "add_edge", - "rtt_ns": 759647, - "rtt_ms": 0.759647, + "rtt_ns": 2673083, + "rtt_ms": 2.673083, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.328615115Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.869033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554025, - "rtt_ms": 1.554025, + "rtt_ns": 2030041, + "rtt_ms": 2.030041, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:58.328669505Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:56.869266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359366, - "rtt_ms": 1.359366, + "rtt_ns": 1284333, + "rtt_ms": 1.284333, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.328802955Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:01:56.869627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568415, - "rtt_ms": 1.568415, + "rtt_ns": 1289292, + "rtt_ms": 1.289292, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "722", - "timestamp": "2025-11-27T01:21:58.328829104Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.869643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796554, - "rtt_ms": 1.796554, + "rtt_ns": 1635041, + "rtt_ms": 1.635041, "checkpoint": 0, "vertex_from": "258", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.328949634Z" + "timestamp": "2025-11-27T04:01:56.869843-08:00" }, { "operation": "add_edge", - "rtt_ns": 978817, - "rtt_ms": 0.978817, + "rtt_ns": 1192417, + "rtt_ms": 1.192417, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.328995514Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.869901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036927, - "rtt_ms": 1.036927, + "rtt_ns": 1339375, + "rtt_ms": 1.339375, "checkpoint": 0, "vertex_from": "258", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.329026404Z" + "timestamp": "2025-11-27T04:01:56.869954-08:00" }, { "operation": "add_edge", - "rtt_ns": 737677, - "rtt_ms": 0.737677, + "rtt_ns": 2054417, + "rtt_ms": 2.054417, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.329130013Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:56.870064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264086, - "rtt_ms": 1.264086, + "rtt_ns": 1474250, + "rtt_ms": 1.47425, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.329537972Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.870135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095287, - "rtt_ms": 1.095287, + "rtt_ns": 1597666, + "rtt_ms": 1.597666, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.329711542Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.870154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075337, - "rtt_ms": 1.075337, + "rtt_ns": 1121500, + "rtt_ms": 1.1215, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "601", - "timestamp": "2025-11-27T01:21:58.329746232Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:56.870155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462026, - "rtt_ms": 1.462026, + "rtt_ns": 1169250, + "rtt_ms": 1.16925, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.329751972Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.870439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655235, - "rtt_ms": 1.655235, + "rtt_ns": 1233833, + "rtt_ms": 1.233833, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:58.330490329Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:56.870878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785094, - "rtt_ms": 1.785094, + "rtt_ns": 1288000, + "rtt_ms": 1.288, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.330589249Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:56.870916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597765, - "rtt_ms": 1.597765, + "rtt_ns": 1319875, + "rtt_ms": 1.319875, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.330626039Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:56.871222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782074, - "rtt_ms": 1.782074, + "rtt_ns": 1281875, + "rtt_ms": 1.281875, "checkpoint": 0, "vertex_from": "258", "vertex_to": "816", - "timestamp": "2025-11-27T01:21:58.330732698Z" + "timestamp": "2025-11-27T04:01:56.871237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759345, - "rtt_ms": 1.759345, + "rtt_ns": 1409792, + "rtt_ms": 1.409792, "checkpoint": 0, "vertex_from": "258", "vertex_to": "332", - "timestamp": "2025-11-27T01:21:58.330891588Z" + "timestamp": "2025-11-27T04:01:56.871565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2129953, - "rtt_ms": 2.129953, + "rtt_ns": 1739625, + "rtt_ms": 1.739625, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:58.331126847Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.871585-08:00" }, { "operation": "add_edge", - "rtt_ns": 2348643, - "rtt_ms": 2.348643, + "rtt_ns": 1466000, + "rtt_ms": 1.466, + "checkpoint": 0, + "vertex_from": "258", + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.871602-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1463834, + "rtt_ms": 1.463834, "checkpoint": 0, "vertex_from": "258", "vertex_to": "564", - "timestamp": "2025-11-27T01:21:58.331888145Z" + "timestamp": "2025-11-27T04:01:56.87162-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1678708, + "rtt_ms": 1.678708, + "checkpoint": 0, + "vertex_from": "258", + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:56.871744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2224253, - "rtt_ms": 2.224253, + "rtt_ns": 1483792, + "rtt_ms": 1.483792, "checkpoint": 0, "vertex_from": "258", "vertex_to": "275", - "timestamp": "2025-11-27T01:21:58.331937205Z" + "timestamp": "2025-11-27T04:01:56.871927-08:00" }, { "operation": "add_edge", - "rtt_ns": 2228942, - "rtt_ms": 2.228942, + "rtt_ns": 1296708, + "rtt_ms": 1.296708, "checkpoint": 0, "vertex_from": "258", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.331977004Z" + "timestamp": "2025-11-27T04:01:56.872176-08:00" }, { "operation": "add_edge", - "rtt_ns": 2311333, - "rtt_ms": 2.311333, + "rtt_ns": 1458500, + "rtt_ms": 1.4585, "checkpoint": 0, "vertex_from": "258", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.332066154Z" + "timestamp": "2025-11-27T04:01:56.872375-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578175, - "rtt_ms": 1.578175, + "rtt_ns": 1530208, + "rtt_ms": 1.530208, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.332070574Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.872768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526985, - "rtt_ms": 1.526985, + "rtt_ns": 1421000, + "rtt_ms": 1.421, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.332154264Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:56.873041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615825, - "rtt_ms": 1.615825, + "rtt_ns": 1555583, + "rtt_ms": 1.555583, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.332207174Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.873121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499396, - "rtt_ms": 1.499396, + "rtt_ns": 1917292, + "rtt_ms": 1.917292, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.332233924Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.87314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1424625, - "rtt_ms": 1.424625, + "rtt_ns": 1402125, + "rtt_ms": 1.402125, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:58.332317813Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:01:56.873147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206376, - "rtt_ms": 1.206376, + "rtt_ns": 1637875, + "rtt_ms": 1.637875, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:58.332335003Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:56.873241-08:00" }, { "operation": "add_edge", - "rtt_ns": 922677, - "rtt_ms": 0.922677, + "rtt_ns": 1673416, + "rtt_ms": 1.673416, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "433", - "timestamp": "2025-11-27T01:21:58.332812292Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:56.873259-08:00" }, { "operation": "add_edge", - "rtt_ns": 983497, - "rtt_ms": 0.983497, + "rtt_ns": 1271291, + "rtt_ms": 1.271291, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "771", - "timestamp": "2025-11-27T01:21:58.333051731Z" + "vertex_to": "261", + "timestamp": "2025-11-27T04:01:56.873448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111087, - "rtt_ms": 1.111087, + "rtt_ns": 1538125, + "rtt_ms": 1.538125, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "261", - "timestamp": "2025-11-27T01:21:58.333090061Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.873466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023217, - "rtt_ms": 1.023217, + "rtt_ns": 1124667, + "rtt_ms": 1.124667, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.333179251Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:56.873503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267986, - "rtt_ms": 1.267986, + "rtt_ns": 1391084, + "rtt_ms": 1.391084, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.333206731Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:56.874161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161586, - "rtt_ms": 1.161586, + "rtt_ns": 1180667, + "rtt_ms": 1.180667, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "785", - "timestamp": "2025-11-27T01:21:58.33323484Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.874223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082446, - "rtt_ms": 1.082446, + "rtt_ns": 1256833, + "rtt_ms": 1.256833, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:58.33329074Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:56.874405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621615, - "rtt_ms": 1.621615, + "rtt_ns": 1181542, + "rtt_ms": 1.181542, "checkpoint": 0, "vertex_from": "258", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.333958748Z" + "timestamp": "2025-11-27T04:01:56.874423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677555, - "rtt_ms": 1.677555, + "rtt_ns": 1300042, + "rtt_ms": 1.300042, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:58.333997978Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.874441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801844, - "rtt_ms": 1.801844, + "rtt_ns": 1376084, + "rtt_ms": 1.376084, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.334036848Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:56.874499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651825, - "rtt_ms": 1.651825, + "rtt_ns": 1283750, + "rtt_ms": 1.28375, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.334466387Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:56.874734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474285, - "rtt_ms": 1.474285, + "rtt_ns": 1492167, + "rtt_ms": 1.492167, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:58.334527746Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.874752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449155, - "rtt_ms": 1.449155, + "rtt_ns": 1443084, + "rtt_ms": 1.443084, "checkpoint": 0, "vertex_from": "258", "vertex_to": "348", - "timestamp": "2025-11-27T01:21:58.334543606Z" + "timestamp": "2025-11-27T04:01:56.87491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790904, - "rtt_ms": 1.790904, + "rtt_ns": 1484875, + "rtt_ms": 1.484875, "checkpoint": 0, "vertex_from": "258", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.335000745Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.874989-08:00" }, { "operation": "add_edge", - "rtt_ns": 1873174, - "rtt_ms": 1.873174, + "rtt_ns": 1357791, + "rtt_ms": 1.357791, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "394", - "timestamp": "2025-11-27T01:21:58.335166114Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.875583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211816, - "rtt_ms": 1.211816, + "rtt_ns": 1601208, + "rtt_ms": 1.601208, "checkpoint": 0, - "vertex_from": "259", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.335173654Z" + "vertex_from": "258", + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.875765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151816, - "rtt_ms": 1.151816, + "rtt_ns": 1346833, + "rtt_ms": 1.346833, "checkpoint": 0, "vertex_from": "259", "vertex_to": "812", - "timestamp": "2025-11-27T01:21:58.335190364Z" + "timestamp": "2025-11-27T04:01:56.875847-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042143, - "rtt_ms": 2.042143, + "rtt_ns": 1448666, + "rtt_ms": 1.448666, "checkpoint": 0, - "vertex_from": "258", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.335223004Z" + "vertex_from": "259", + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:56.875855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362586, - "rtt_ms": 1.362586, + "rtt_ns": 1447834, + "rtt_ms": 1.447834, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.335361664Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.875872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2823951, - "rtt_ms": 2.823951, + "rtt_ns": 1456750, + "rtt_ms": 1.45675, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.336060511Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.875898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782214, - "rtt_ms": 1.782214, + "rtt_ns": 1179875, + "rtt_ms": 1.179875, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.336251431Z" + "vertex_to": "260", + "timestamp": "2025-11-27T04:01:56.87617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273856, - "rtt_ms": 1.273856, + "rtt_ns": 1434833, + "rtt_ms": 1.434833, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "260", - "timestamp": "2025-11-27T01:21:58.336279051Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.876187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746045, - "rtt_ms": 1.746045, + "rtt_ns": 1505125, + "rtt_ms": 1.505125, "checkpoint": 0, "vertex_from": "259", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.336291371Z" + "timestamp": "2025-11-27T04:01:56.876416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759075, - "rtt_ms": 1.759075, + "rtt_ns": 1829500, + "rtt_ms": 1.8295, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.336291821Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.876565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506865, - "rtt_ms": 1.506865, + "rtt_ns": 1126500, + "rtt_ms": 1.1265, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.336731409Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.876711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722115, - "rtt_ms": 1.722115, + "rtt_ns": 1283250, + "rtt_ms": 1.28325, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.336890039Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.877454-08:00" }, { "operation": "add_edge", - "rtt_ns": 915617, - "rtt_ms": 0.915617, + "rtt_ns": 1686584, + "rtt_ms": 1.686584, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.336978448Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:56.877454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859404, - "rtt_ms": 1.859404, + "rtt_ns": 1207583, + "rtt_ms": 1.207583, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:58.337036388Z" + "vertex_to": "269", + "timestamp": "2025-11-27T04:01:56.877624-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471642, - "rtt_ms": 2.471642, + "rtt_ns": 1793500, + "rtt_ms": 1.7935, "checkpoint": 0, "vertex_from": "259", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.337663546Z" + "timestamp": "2025-11-27T04:01:56.877642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491605, - "rtt_ms": 1.491605, + "rtt_ns": 1788334, + "rtt_ms": 1.788334, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "825", - "timestamp": "2025-11-27T01:21:58.337772736Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.877688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486325, - "rtt_ms": 1.486325, + "rtt_ns": 1834542, + "rtt_ms": 1.834542, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:58.337780496Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.87769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571975, - "rtt_ms": 1.571975, + "rtt_ns": 1510333, + "rtt_ms": 1.510333, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.337826336Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:01:56.877698-08:00" }, { "operation": "add_edge", - "rtt_ns": 2475551, - "rtt_ms": 2.475551, + "rtt_ns": 1836625, + "rtt_ms": 1.836625, "checkpoint": 0, "vertex_from": "259", "vertex_to": "864", - "timestamp": "2025-11-27T01:21:58.337841165Z" + "timestamp": "2025-11-27T04:01:56.87771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553354, - "rtt_ms": 1.553354, + "rtt_ns": 1297792, + "rtt_ms": 1.297792, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "269", - "timestamp": "2025-11-27T01:21:58.337846475Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:56.877863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574255, - "rtt_ms": 1.574255, + "rtt_ns": 1164333, + "rtt_ms": 1.164333, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.338614453Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.877876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1906204, - "rtt_ms": 1.906204, + "rtt_ns": 1129500, + "rtt_ms": 1.1295, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.338640323Z" + "vertex_to": "965", + "timestamp": "2025-11-27T04:01:56.878994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753384, - "rtt_ms": 1.753384, + "rtt_ns": 1371500, + "rtt_ms": 1.3715, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.338733102Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.878997-08:00" }, { "operation": "add_edge", - "rtt_ns": 987526, - "rtt_ms": 0.987526, + "rtt_ns": 1615584, + "rtt_ms": 1.615584, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:58.339628929Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:56.879072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979683, - "rtt_ms": 1.979683, + "rtt_ns": 1537583, + "rtt_ms": 1.537583, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.339645299Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:01:56.879226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898113, - "rtt_ms": 1.898113, + "rtt_ns": 1523833, + "rtt_ms": 1.523833, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "421", - "timestamp": "2025-11-27T01:21:58.339672689Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.879242-08:00" }, { "operation": "add_edge", - "rtt_ns": 992597, - "rtt_ms": 0.992597, + "rtt_ns": 1605459, + "rtt_ms": 1.605459, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.339726269Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.879248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889334, - "rtt_ms": 1.889334, + "rtt_ns": 1804500, + "rtt_ms": 1.8045, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.339732289Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.879262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980023, - "rtt_ms": 1.980023, + "rtt_ns": 1584583, + "rtt_ms": 1.584583, "checkpoint": 0, "vertex_from": "259", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.339765269Z" + "timestamp": "2025-11-27T04:01:56.879276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1949603, - "rtt_ms": 1.949603, + "rtt_ns": 1578375, + "rtt_ms": 1.578375, "checkpoint": 0, "vertex_from": "259", "vertex_to": "668", - "timestamp": "2025-11-27T01:21:58.339777419Z" + "timestamp": "2025-11-27T04:01:56.879277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930734, - "rtt_ms": 1.930734, + "rtt_ns": 1402333, + "rtt_ms": 1.402333, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "965", - "timestamp": "2025-11-27T01:21:58.339778439Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:56.879279-08:00" }, { "operation": "add_edge", - "rtt_ns": 2966510, - "rtt_ms": 2.96651, + "rtt_ns": 1225083, + "rtt_ms": 1.225083, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:58.339857569Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.880224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1922234, - "rtt_ms": 1.922234, + "rtt_ns": 1269292, + "rtt_ms": 1.269292, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:58.340538187Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:56.880266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243816, - "rtt_ms": 1.243816, + "rtt_ns": 1417417, + "rtt_ms": 1.417417, "checkpoint": 0, - "vertex_from": "259", - "vertex_to": "282", - "timestamp": "2025-11-27T01:21:58.340890895Z" + "vertex_from": "260", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.880695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376166, - "rtt_ms": 1.376166, + "rtt_ns": 1449750, + "rtt_ms": 1.44975, "checkpoint": 0, - "vertex_from": "259", - "vertex_to": "496", - "timestamp": "2025-11-27T01:21:58.341006805Z" + "vertex_from": "260", + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.880712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312326, - "rtt_ms": 1.312326, + "rtt_ns": 1483167, + "rtt_ms": 1.483167, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.341040375Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:56.880726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276306, - "rtt_ms": 1.276306, + "rtt_ns": 1464500, + "rtt_ms": 1.4645, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:58.341057435Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:56.880743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382706, - "rtt_ms": 1.382706, + "rtt_ns": 1508333, + "rtt_ms": 1.508333, "checkpoint": 0, "vertex_from": "259", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:58.341076905Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.880757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345516, - "rtt_ms": 1.345516, + "rtt_ns": 1546125, + "rtt_ms": 1.546125, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.341080945Z" + "vertex_from": "259", + "vertex_to": "282", + "timestamp": "2025-11-27T04:01:56.880773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901514, - "rtt_ms": 1.901514, + "rtt_ns": 1712500, + "rtt_ms": 1.7125, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.341681193Z" + "vertex_from": "259", + "vertex_to": "496", + "timestamp": "2025-11-27T04:01:56.880786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237326, - "rtt_ms": 1.237326, + "rtt_ns": 1520917, + "rtt_ms": 1.520917, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "305", - "timestamp": "2025-11-27T01:21:58.341778193Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:56.880802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2156373, - "rtt_ms": 2.156373, + "rtt_ns": 1516417, + "rtt_ms": 1.516417, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:58.341923822Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:56.881784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2225883, - "rtt_ms": 2.225883, + "rtt_ns": 1581167, + "rtt_ms": 1.581167, "checkpoint": 0, "vertex_from": "260", "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.342085032Z" + "timestamp": "2025-11-27T04:01:56.881807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1230917, - "rtt_ms": 1.230917, + "rtt_ns": 1215958, + "rtt_ms": 1.215958, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.342123542Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.881959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115236, - "rtt_ms": 1.115236, + "rtt_ns": 1277959, + "rtt_ms": 1.277959, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.342798449Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.88208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735954, - "rtt_ms": 1.735954, + "rtt_ns": 1403625, + "rtt_ms": 1.403625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.342819959Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.8821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763694, - "rtt_ms": 1.763694, + "rtt_ns": 1329875, + "rtt_ms": 1.329875, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.342822779Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.882117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769724, - "rtt_ms": 1.769724, + "rtt_ns": 1375542, + "rtt_ms": 1.375542, "checkpoint": 0, "vertex_from": "260", "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.342848149Z" + "timestamp": "2025-11-27T04:01:56.882133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875944, - "rtt_ms": 1.875944, + "rtt_ns": 1481750, + "rtt_ms": 1.48175, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "531", - "timestamp": "2025-11-27T01:21:58.342884209Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.882255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853574, - "rtt_ms": 1.853574, + "rtt_ns": 1555875, + "rtt_ms": 1.555875, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.342895129Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:56.882268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379806, - "rtt_ms": 1.379806, + "rtt_ns": 1614958, + "rtt_ms": 1.614958, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.343305348Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.882342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984883, - "rtt_ms": 1.984883, + "rtt_ns": 1298625, + "rtt_ms": 1.298625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.343765576Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:56.883106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698644, - "rtt_ms": 1.698644, + "rtt_ns": 1235625, + "rtt_ms": 1.235625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:58.343784946Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:56.883196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742044, - "rtt_ms": 1.742044, + "rtt_ns": 1428708, + "rtt_ms": 1.428708, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "554", - "timestamp": "2025-11-27T01:21:58.343866886Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.883214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995154, - "rtt_ms": 1.995154, + "rtt_ns": 1620792, + "rtt_ms": 1.620792, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.344892023Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.883722-08:00" }, { "operation": "add_edge", - "rtt_ns": 2331753, - "rtt_ms": 2.331753, + "rtt_ns": 2029875, + "rtt_ms": 2.029875, "checkpoint": 0, "vertex_from": "260", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.345156192Z" + "timestamp": "2025-11-27T04:01:56.884147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2395943, - "rtt_ms": 2.395943, + "rtt_ns": 2054083, + "rtt_ms": 2.054083, "checkpoint": 0, "vertex_from": "260", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.345245372Z" + "timestamp": "2025-11-27T04:01:56.884188-08:00" }, { "operation": "add_edge", - "rtt_ns": 2540602, - "rtt_ms": 2.540602, + "rtt_ns": 2194875, + "rtt_ms": 2.194875, "checkpoint": 0, "vertex_from": "260", "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.345340361Z" + "timestamp": "2025-11-27T04:01:56.884276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2590312, - "rtt_ms": 2.590312, + "rtt_ns": 2044167, + "rtt_ms": 2.044167, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.345478521Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.884313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2768982, - "rtt_ms": 2.768982, + "rtt_ns": 2082250, + "rtt_ms": 2.08225, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.345590461Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.884338-08:00" }, { "operation": "add_edge", - "rtt_ns": 2400472, - "rtt_ms": 2.400472, + "rtt_ns": 1439375, + "rtt_ms": 1.439375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "308", - "timestamp": "2025-11-27T01:21:58.34570768Z" + "vertex_to": "939", + "timestamp": "2025-11-27T04:01:56.884654-08:00" }, { "operation": "add_edge", - "rtt_ns": 2749942, - "rtt_ms": 2.749942, + "rtt_ns": 1583750, + "rtt_ms": 1.58375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:58.346536768Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:56.884691-08:00" }, { "operation": "add_edge", - "rtt_ns": 2760871, - "rtt_ms": 2.760871, + "rtt_ns": 2382584, + "rtt_ms": 2.382584, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "939", - "timestamp": "2025-11-27T01:21:58.346629847Z" + "vertex_to": "308", + "timestamp": "2025-11-27T04:01:56.884725-08:00" }, { "operation": "add_edge", - "rtt_ns": 2946681, - "rtt_ms": 2.946681, + "rtt_ns": 1842250, + "rtt_ms": 1.84225, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:58.346713507Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:56.885039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866374, - "rtt_ms": 1.866374, + "rtt_ns": 1775125, + "rtt_ms": 1.775125, "checkpoint": 0, "vertex_from": "260", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.346760497Z" + "timestamp": "2025-11-27T04:01:56.885498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606975, - "rtt_ms": 1.606975, + "rtt_ns": 1404708, + "rtt_ms": 1.404708, "checkpoint": 0, "vertex_from": "260", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.346764807Z" + "timestamp": "2025-11-27T04:01:56.885553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462265, - "rtt_ms": 1.462265, + "rtt_ns": 1540208, + "rtt_ms": 1.540208, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "417", - "timestamp": "2025-11-27T01:21:58.346942486Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.88582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623085, - "rtt_ms": 1.623085, + "rtt_ns": 1184667, + "rtt_ms": 1.184667, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.346965286Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.88584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343936, - "rtt_ms": 1.343936, + "rtt_ns": 1506042, + "rtt_ms": 1.506042, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.347053206Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:56.885845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854484, - "rtt_ms": 1.854484, + "rtt_ns": 1747958, + "rtt_ms": 1.747958, "checkpoint": 0, "vertex_from": "260", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.347101336Z" + "timestamp": "2025-11-27T04:01:56.885937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548275, - "rtt_ms": 1.548275, + "rtt_ns": 1267333, + "rtt_ms": 1.267333, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:58.347139986Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.885961-08:00" }, { "operation": "add_edge", - "rtt_ns": 724067, - "rtt_ms": 0.724067, + "rtt_ns": 1705750, + "rtt_ms": 1.70575, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.347261975Z" + "vertex_to": "417", + "timestamp": "2025-11-27T04:01:56.886021-08:00" }, { "operation": "add_edge", - "rtt_ns": 757198, - "rtt_ms": 0.757198, + "rtt_ns": 1564709, + "rtt_ms": 1.564709, "checkpoint": 0, "vertex_from": "260", "vertex_to": "682", - "timestamp": "2025-11-27T01:21:58.347390535Z" + "timestamp": "2025-11-27T04:01:56.88629-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1750583, + "rtt_ms": 1.750583, + "checkpoint": 0, + "vertex_from": "260", + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.886791-08:00" }, { "operation": "add_edge", - "rtt_ns": 646798, - "rtt_ms": 0.646798, + "rtt_ns": 1728667, + "rtt_ms": 1.728667, "checkpoint": 0, "vertex_from": "260", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.347409885Z" + "timestamp": "2025-11-27T04:01:56.887229-08:00" }, { "operation": "add_edge", - "rtt_ns": 658948, - "rtt_ms": 0.658948, + "rtt_ns": 1399916, + "rtt_ms": 1.399916, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "834", - "timestamp": "2025-11-27T01:21:58.347425925Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:01:56.887247-08:00" }, { "operation": "add_edge", - "rtt_ns": 881957, - "rtt_ms": 0.881957, + "rtt_ns": 1732958, + "rtt_ms": 1.732958, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.347597264Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:56.887287-08:00" }, { "operation": "add_edge", - "rtt_ns": 744138, - "rtt_ms": 0.744138, + "rtt_ns": 1547667, + "rtt_ms": 1.547667, "checkpoint": 0, "vertex_from": "260", "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.347710864Z" + "timestamp": "2025-11-27T04:01:56.887388-08:00" }, { "operation": "add_edge", - "rtt_ns": 843788, - "rtt_ms": 0.843788, + "rtt_ns": 1602542, + "rtt_ms": 1.602542, "checkpoint": 0, "vertex_from": "260", "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.347788834Z" + "timestamp": "2025-11-27T04:01:56.887423-08:00" }, { "operation": "add_edge", - "rtt_ns": 723697, - "rtt_ms": 0.723697, + "rtt_ns": 1422041, + "rtt_ms": 1.422041, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "402", - "timestamp": "2025-11-27T01:21:58.347826473Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:56.887444-08:00" }, { "operation": "add_edge", - "rtt_ns": 826507, - "rtt_ms": 0.826507, + "rtt_ns": 1271708, + "rtt_ms": 1.271708, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "722", - "timestamp": "2025-11-27T01:21:58.347881793Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.887563-08:00" }, { "operation": "add_edge", - "rtt_ns": 790847, - "rtt_ms": 0.790847, + "rtt_ns": 1617084, + "rtt_ms": 1.617084, "checkpoint": 0, "vertex_from": "260", "vertex_to": "920", - "timestamp": "2025-11-27T01:21:58.347932143Z" + "timestamp": "2025-11-27T04:01:56.887578-08:00" }, { "operation": "add_edge", - "rtt_ns": 708708, - "rtt_ms": 0.708708, + "rtt_ns": 1747167, + "rtt_ms": 1.747167, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:58.347972083Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:56.887685-08:00" }, { "operation": "add_edge", - "rtt_ns": 657448, - "rtt_ms": 0.657448, + "rtt_ns": 1351834, + "rtt_ms": 1.351834, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.348049563Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:56.888144-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1207566, - "rtt_ms": 1.207566, + "operation": "add_vertex", + "rtt_ns": 1396000, + "rtt_ms": 1.396, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:58.348619341Z" + "vertex_from": "831", + "timestamp": "2025-11-27T04:01:56.888646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305325, - "rtt_ms": 1.305325, + "rtt_ns": 1238042, + "rtt_ms": 1.238042, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.3487329Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:56.888662-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1151616, - "rtt_ms": 1.151616, + "operation": "add_edge", + "rtt_ns": 1384625, + "rtt_ms": 1.384625, "checkpoint": 0, - "vertex_from": "831", - "timestamp": "2025-11-27T01:21:58.34875815Z" + "vertex_from": "260", + "vertex_to": "466", + "timestamp": "2025-11-27T04:01:56.888673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1001847, - "rtt_ms": 1.001847, + "rtt_ns": 1574250, + "rtt_ms": 1.57425, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:58.34882992Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.889019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120546, - "rtt_ms": 1.120546, + "rtt_ns": 1339625, + "rtt_ms": 1.339625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.34891317Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.889026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277816, - "rtt_ms": 1.277816, + "rtt_ns": 1639458, + "rtt_ms": 1.639458, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "466", - "timestamp": "2025-11-27T01:21:58.3489905Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.889031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662734, - "rtt_ms": 1.662734, + "rtt_ns": 1820667, + "rtt_ms": 1.820667, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.349636447Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.88905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708214, - "rtt_ms": 1.708214, + "rtt_ns": 1497542, + "rtt_ms": 1.497542, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.349759437Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.889077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839054, - "rtt_ms": 1.839054, + "rtt_ns": 1515333, + "rtt_ms": 1.515333, "checkpoint": 0, "vertex_from": "260", "vertex_to": "680", - "timestamp": "2025-11-27T01:21:58.349773017Z" + "timestamp": "2025-11-27T04:01:56.889079-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1059727, - "rtt_ms": 1.059727, + "operation": "add_vertex", + "rtt_ns": 1479208, + "rtt_ms": 1.479208, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:58.349794127Z" + "vertex_from": "739", + "timestamp": "2025-11-27T04:01:56.88963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1918814, - "rtt_ms": 1.918814, + "rtt_ns": 1355167, + "rtt_ms": 1.355167, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.349802977Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:56.890018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216976, - "rtt_ms": 1.216976, + "rtt_ns": 1363042, + "rtt_ms": 1.363042, "checkpoint": 0, "vertex_from": "260", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.350048556Z" + "timestamp": "2025-11-27T04:01:56.890037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246736, - "rtt_ms": 1.246736, + "rtt_ns": 1593042, + "rtt_ms": 1.593042, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "564", - "timestamp": "2025-11-27T01:21:58.350161606Z" + "vertex_to": "831", + "timestamp": "2025-11-27T04:01:56.890239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898814, - "rtt_ms": 1.898814, + "rtt_ns": 1174625, + "rtt_ms": 1.174625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "831", - "timestamp": "2025-11-27T01:21:58.350657794Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:56.890254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740014, - "rtt_ms": 1.740014, + "rtt_ns": 1293750, + "rtt_ms": 1.29375, "checkpoint": 0, "vertex_from": "260", "vertex_to": "803", - "timestamp": "2025-11-27T01:21:58.350731844Z" + "timestamp": "2025-11-27T04:01:56.890321-08:00" }, { "operation": "add_edge", - "rtt_ns": 818237, - "rtt_ms": 0.818237, + "rtt_ns": 1326167, + "rtt_ms": 1.326167, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "683", - "timestamp": "2025-11-27T01:21:58.350868763Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:56.890346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166726, - "rtt_ms": 1.166726, + "rtt_ns": 1512791, + "rtt_ms": 1.512791, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "532", - "timestamp": "2025-11-27T01:21:58.350927553Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.89059-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139506, - "rtt_ms": 1.139506, + "rtt_ns": 1573209, + "rtt_ms": 1.573209, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "464", - "timestamp": "2025-11-27T01:21:58.350943693Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:56.890605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369536, - "rtt_ms": 1.369536, + "rtt_ns": 1575292, + "rtt_ms": 1.575292, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "675", - "timestamp": "2025-11-27T01:21:58.351009013Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:56.89063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225076, - "rtt_ms": 1.225076, + "rtt_ns": 1339292, + "rtt_ms": 1.339292, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "780", - "timestamp": "2025-11-27T01:21:58.351021413Z" + "vertex_to": "739", + "timestamp": "2025-11-27T04:01:56.89097-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 2504761, - "rtt_ms": 2.504761, + "operation": "add_edge", + "rtt_ns": 1393333, + "rtt_ms": 1.393333, "checkpoint": 0, - "vertex_from": "739", - "timestamp": "2025-11-27T01:21:58.351127922Z" + "vertex_from": "260", + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:56.891413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387035, - "rtt_ms": 1.387035, + "rtt_ns": 1243750, + "rtt_ms": 1.24375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.351161392Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:56.891591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206786, - "rtt_ms": 1.206786, + "rtt_ns": 1635583, + "rtt_ms": 1.635583, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "426", - "timestamp": "2025-11-27T01:21:58.35186635Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:56.891876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720434, - "rtt_ms": 1.720434, + "rtt_ns": 1639792, + "rtt_ms": 1.639792, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.35188377Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:01:56.891895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218006, - "rtt_ms": 1.218006, + "rtt_ns": 1267708, + "rtt_ms": 1.267708, "checkpoint": 0, "vertex_from": "260", "vertex_to": "929", - "timestamp": "2025-11-27T01:21:58.352228259Z" + "timestamp": "2025-11-27T04:01:56.891898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557465, - "rtt_ms": 1.557465, + "rtt_ns": 1316375, + "rtt_ms": 1.316375, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.352290929Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.891907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455725, - "rtt_ms": 1.455725, + "rtt_ns": 1874667, + "rtt_ms": 1.874667, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.352385418Z" + "vertex_to": "683", + "timestamp": "2025-11-27T04:01:56.891913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368575, - "rtt_ms": 1.368575, + "rtt_ns": 1329166, + "rtt_ms": 1.329166, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:58.352392128Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.891935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591095, - "rtt_ms": 1.591095, + "rtt_ns": 1653167, + "rtt_ms": 1.653167, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:58.352461128Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.891977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547445, - "rtt_ms": 1.547445, + "rtt_ns": 1708209, + "rtt_ms": 1.708209, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.352492718Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:56.892679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352096, - "rtt_ms": 1.352096, + "rtt_ns": 1267417, + "rtt_ms": 1.267417, "checkpoint": 0, "vertex_from": "260", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.352515098Z" + "timestamp": "2025-11-27T04:01:56.892681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185336, - "rtt_ms": 1.185336, + "rtt_ns": 1312167, + "rtt_ms": 1.312167, "checkpoint": 0, "vertex_from": "260", "vertex_to": "262", - "timestamp": "2025-11-27T01:21:58.353053016Z" + "timestamp": "2025-11-27T04:01:56.892906-08:00" }, { "operation": "add_edge", - "rtt_ns": 785377, - "rtt_ms": 0.785377, + "rtt_ns": 1132042, + "rtt_ms": 1.132042, "checkpoint": 0, "vertex_from": "260", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.353078926Z" + "timestamp": "2025-11-27T04:01:56.893032-08:00" }, { "operation": "add_edge", - "rtt_ns": 860617, - "rtt_ms": 0.860617, + "rtt_ns": 1173292, + "rtt_ms": 1.173292, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.353091006Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:56.89305-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039584, - "rtt_ms": 2.039584, + "rtt_ns": 1369333, + "rtt_ms": 1.369333, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "739", - "timestamp": "2025-11-27T01:21:58.353168216Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:56.893305-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304086, - "rtt_ms": 1.304086, + "rtt_ns": 1484916, + "rtt_ms": 1.484916, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "332", - "timestamp": "2025-11-27T01:21:58.353189306Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:56.893394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404486, - "rtt_ms": 1.404486, + "rtt_ns": 1542250, + "rtt_ms": 1.54225, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:58.353866564Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:56.893456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560685, - "rtt_ms": 1.560685, + "rtt_ns": 1610291, + "rtt_ms": 1.610291, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "537", - "timestamp": "2025-11-27T01:21:58.353954113Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.893506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124677, - "rtt_ms": 1.124677, + "rtt_ns": 1548583, + "rtt_ms": 1.548583, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:58.354178663Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:56.893527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1722744, - "rtt_ms": 1.722744, + "rtt_ns": 1133875, + "rtt_ms": 1.133875, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.354220782Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:56.894041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152816, - "rtt_ms": 1.152816, + "rtt_ns": 1470542, + "rtt_ms": 1.470542, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "539", - "timestamp": "2025-11-27T01:21:58.354244962Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.894152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1959094, - "rtt_ms": 1.959094, + "rtt_ns": 1599708, + "rtt_ms": 1.599708, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.354345842Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:56.894282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283796, - "rtt_ms": 1.283796, + "rtt_ns": 1318917, + "rtt_ms": 1.318917, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "652", - "timestamp": "2025-11-27T01:21:58.354364102Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:01:56.894352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1445915, - "rtt_ms": 1.445915, + "rtt_ns": 1399667, + "rtt_ms": 1.399667, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "317", - "timestamp": "2025-11-27T01:21:58.354636791Z" + "vertex_to": "1002", + "timestamp": "2025-11-27T04:01:56.894451-08:00" }, { "operation": "add_edge", - "rtt_ns": 697658, - "rtt_ms": 0.697658, + "rtt_ns": 1150750, + "rtt_ms": 1.15075, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.354652921Z" + "vertex_to": "409", + "timestamp": "2025-11-27T04:01:56.894679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493685, - "rtt_ms": 1.493685, + "rtt_ns": 1269792, + "rtt_ms": 1.269792, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "1002", - "timestamp": "2025-11-27T01:21:58.354663591Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.894727-08:00" }, { "operation": "add_edge", - "rtt_ns": 830877, - "rtt_ms": 0.830877, + "rtt_ns": 1528917, + "rtt_ms": 1.528917, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.354698741Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.895036-08:00" }, { "operation": "add_edge", - "rtt_ns": 2219463, - "rtt_ms": 2.219463, + "rtt_ns": 1701291, + "rtt_ms": 1.701291, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.354736351Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.895097-08:00" }, { "operation": "add_edge", - "rtt_ns": 621538, - "rtt_ms": 0.621538, + "rtt_ns": 1896416, + "rtt_ms": 1.896416, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.354801181Z" + "vertex_to": "317", + "timestamp": "2025-11-27T04:01:56.895203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094997, - "rtt_ms": 1.094997, + "rtt_ns": 1922458, + "rtt_ms": 1.922458, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "409", - "timestamp": "2025-11-27T01:21:58.355316709Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:01:56.895964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071357, - "rtt_ms": 1.071357, + "rtt_ns": 1628541, + "rtt_ms": 1.628541, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.355419799Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:56.895982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071627, - "rtt_ms": 1.071627, + "rtt_ns": 1712750, + "rtt_ms": 1.71275, "checkpoint": 0, "vertex_from": "260", "vertex_to": "268", - "timestamp": "2025-11-27T01:21:58.355437229Z" + "timestamp": "2025-11-27T04:01:56.895996-08:00" }, { "operation": "add_edge", - "rtt_ns": 864337, - "rtt_ms": 0.864337, + "rtt_ns": 1857875, + "rtt_ms": 1.857875, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:58.355502738Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.896012-08:00" }, { "operation": "add_edge", - "rtt_ns": 848177, - "rtt_ms": 0.848177, + "rtt_ns": 1576709, + "rtt_ms": 1.576709, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "298", - "timestamp": "2025-11-27T01:21:58.355513808Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:56.89603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423976, - "rtt_ms": 1.423976, + "rtt_ns": 1356667, + "rtt_ms": 1.356667, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "369", - "timestamp": "2025-11-27T01:21:58.355670098Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.896395-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482305, - "rtt_ms": 1.482305, + "rtt_ns": 1300042, + "rtt_ms": 1.300042, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "707", - "timestamp": "2025-11-27T01:21:58.356182376Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.896398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508235, - "rtt_ms": 1.508235, + "rtt_ns": 1682625, + "rtt_ms": 1.682625, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.356310976Z" + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:56.896411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610635, - "rtt_ms": 1.610635, + "rtt_ns": 1736750, + "rtt_ms": 1.73675, "checkpoint": 0, "vertex_from": "260", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.356347996Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:56.896416-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045037, - "rtt_ms": 1.045037, + "rtt_ns": 1797750, + "rtt_ms": 1.79775, "checkpoint": 0, "vertex_from": "261", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.356362976Z" + "timestamp": "2025-11-27T04:01:56.897002-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716465, - "rtt_ms": 1.716465, + "rtt_ns": 1260625, + "rtt_ms": 1.260625, "checkpoint": 0, - "vertex_from": "260", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:58.356370836Z" + "vertex_from": "261", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:56.897257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039887, - "rtt_ms": 1.039887, + "rtt_ns": 859375, + "rtt_ms": 0.859375, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "524", - "timestamp": "2025-11-27T01:21:58.356544325Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.897277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819744, - "rtt_ms": 1.819744, + "rtt_ns": 1668500, + "rtt_ms": 1.6685, "checkpoint": 0, "vertex_from": "261", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.357258953Z" + "timestamp": "2025-11-27T04:01:56.897651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898054, - "rtt_ms": 1.898054, + "rtt_ns": 1657042, + "rtt_ms": 1.657042, "checkpoint": 0, "vertex_from": "261", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.357412562Z" + "timestamp": "2025-11-27T04:01:56.89767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2044473, - "rtt_ms": 2.044473, + "rtt_ns": 1717542, + "rtt_ms": 1.717542, "checkpoint": 0, "vertex_from": "261", "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.357465892Z" + "timestamp": "2025-11-27T04:01:56.897683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791084, - "rtt_ms": 1.791084, + "rtt_ns": 1654208, + "rtt_ms": 1.654208, "checkpoint": 0, "vertex_from": "261", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.357518782Z" + "timestamp": "2025-11-27T04:01:56.897685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446476, - "rtt_ms": 1.446476, + "rtt_ns": 1288958, + "rtt_ms": 1.288958, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.357629902Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.8977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482115, - "rtt_ms": 1.482115, + "rtt_ns": 1614417, + "rtt_ms": 1.614417, "checkpoint": 0, "vertex_from": "261", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.357794001Z" + "timestamp": "2025-11-27T04:01:56.898014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502175, - "rtt_ms": 1.502175, + "rtt_ns": 1919458, + "rtt_ms": 1.919458, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.357851341Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.898317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551145, - "rtt_ms": 1.551145, + "rtt_ns": 1222459, + "rtt_ms": 1.222459, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.357925621Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.898501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586035, - "rtt_ms": 1.586035, + "rtt_ns": 1392167, + "rtt_ms": 1.392167, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.357950651Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.898651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989104, - "rtt_ms": 1.989104, + "rtt_ns": 1706917, + "rtt_ms": 1.706917, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.358535089Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.898712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328376, - "rtt_ms": 1.328376, + "rtt_ns": 1467125, + "rtt_ms": 1.467125, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.358588729Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:56.899168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243576, - "rtt_ms": 1.243576, + "rtt_ns": 1561000, + "rtt_ms": 1.561, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.358657398Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:56.899247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712225, - "rtt_ms": 1.712225, + "rtt_ns": 1260167, + "rtt_ms": 1.260167, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.359179347Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:56.899275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560765, - "rtt_ms": 1.560765, + "rtt_ns": 1808375, + "rtt_ms": 1.808375, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "902", - "timestamp": "2025-11-27T01:21:58.359191737Z" + "vertex_to": "264", + "timestamp": "2025-11-27T04:01:56.899479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698065, - "rtt_ms": 1.698065, + "rtt_ns": 1844625, + "rtt_ms": 1.844625, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:58.359218267Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:56.899497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518165, - "rtt_ms": 1.518165, + "rtt_ns": 1826417, + "rtt_ms": 1.826417, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:58.359313376Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:01:56.899512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547295, - "rtt_ms": 1.547295, + "rtt_ns": 1558417, + "rtt_ms": 1.558417, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "306", - "timestamp": "2025-11-27T01:21:58.359498886Z" + "vertex_to": "337", + "timestamp": "2025-11-27T04:01:56.899876-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686905, - "rtt_ms": 1.686905, + "rtt_ns": 1392208, + "rtt_ms": 1.392208, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "533", - "timestamp": "2025-11-27T01:21:58.359539106Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:56.899894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629765, - "rtt_ms": 1.629765, + "rtt_ns": 1195333, + "rtt_ms": 1.195333, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.359555866Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.899909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051406, - "rtt_ms": 1.051406, + "rtt_ns": 1567459, + "rtt_ms": 1.567459, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.359641115Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.900221-08:00" }, { "operation": "add_edge", - "rtt_ns": 996457, - "rtt_ms": 0.996457, + "rtt_ns": 993375, + "rtt_ms": 0.993375, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:58.359655355Z" + "vertex_to": "357", + "timestamp": "2025-11-27T04:01:56.900473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122416, - "rtt_ms": 1.122416, + "rtt_ns": 977958, + "rtt_ms": 0.977958, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.359658455Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.900491-08:00" }, { "operation": "add_edge", - "rtt_ns": 629728, - "rtt_ms": 0.629728, + "rtt_ns": 1631542, + "rtt_ms": 1.631542, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "535", - "timestamp": "2025-11-27T01:21:58.359944084Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:56.900801-08:00" }, { "operation": "add_edge", - "rtt_ns": 736807, - "rtt_ms": 0.736807, + "rtt_ns": 1566916, + "rtt_ms": 1.566916, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "357", - "timestamp": "2025-11-27T01:21:58.359956634Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.900816-08:00" }, { "operation": "add_edge", - "rtt_ns": 771487, - "rtt_ms": 0.771487, + "rtt_ns": 1555250, + "rtt_ms": 1.55525, "checkpoint": 0, "vertex_from": "261", "vertex_to": "312", - "timestamp": "2025-11-27T01:21:58.359964504Z" + "timestamp": "2025-11-27T04:01:56.900832-08:00" }, { "operation": "add_edge", - "rtt_ns": 812607, - "rtt_ms": 0.812607, + "rtt_ns": 1500625, + "rtt_ms": 1.500625, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.359993184Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:56.900998-08:00" }, { "operation": "add_edge", - "rtt_ns": 730797, - "rtt_ms": 0.730797, + "rtt_ns": 1124750, + "rtt_ms": 1.12475, "checkpoint": 0, "vertex_from": "261", "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.360270603Z" + "timestamp": "2025-11-27T04:01:56.901002-08:00" }, { "operation": "add_edge", - "rtt_ns": 760077, - "rtt_ms": 0.760077, + "rtt_ns": 1319125, + "rtt_ms": 1.319125, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "732", - "timestamp": "2025-11-27T01:21:58.360316583Z" + "vertex_to": "451", + "timestamp": "2025-11-27T04:01:56.901228-08:00" }, { "operation": "add_edge", - "rtt_ns": 716518, - "rtt_ms": 0.716518, + "rtt_ns": 1373833, + "rtt_ms": 1.373833, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "451", - "timestamp": "2025-11-27T01:21:58.360358963Z" + "vertex_to": "732", + "timestamp": "2025-11-27T04:01:56.901269-08:00" }, { "operation": "add_edge", - "rtt_ns": 871307, - "rtt_ms": 0.871307, + "rtt_ns": 1240417, + "rtt_ms": 1.240417, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.360371403Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.901462-08:00" }, { "operation": "add_edge", - "rtt_ns": 739728, - "rtt_ms": 0.739728, + "rtt_ns": 1615459, + "rtt_ms": 1.615459, "checkpoint": 0, "vertex_from": "261", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.360398943Z" + "timestamp": "2025-11-27T04:01:56.90209-08:00" }, { "operation": "add_edge", - "rtt_ns": 800248, - "rtt_ms": 0.800248, + "rtt_ns": 1614875, + "rtt_ms": 1.614875, "checkpoint": 0, "vertex_from": "261", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.360456063Z" + "vertex_to": "679", + "timestamp": "2025-11-27T04:01:56.902106-08:00" }, { "operation": "add_edge", - "rtt_ns": 973357, - "rtt_ms": 0.973357, + "rtt_ns": 1304542, + "rtt_ms": 1.304542, "checkpoint": 0, "vertex_from": "261", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.360938371Z" + "timestamp": "2025-11-27T04:01:56.902121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189616, - "rtt_ms": 1.189616, + "rtt_ns": 1302750, + "rtt_ms": 1.30275, "checkpoint": 0, "vertex_from": "261", "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.36118358Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1254176, - "rtt_ms": 1.254176, - "checkpoint": 0, - "vertex_from": "261", - "vertex_to": "679", - "timestamp": "2025-11-27T01:21:58.36119976Z" + "timestamp": "2025-11-27T04:01:56.902136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244366, - "rtt_ms": 1.244366, + "rtt_ns": 1523459, + "rtt_ms": 1.523459, "checkpoint": 0, "vertex_from": "261", "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.36120158Z" + "timestamp": "2025-11-27T04:01:56.902325-08:00" }, { "operation": "add_edge", - "rtt_ns": 969527, - "rtt_ms": 0.969527, + "rtt_ns": 1728875, + "rtt_ms": 1.728875, "checkpoint": 0, - "vertex_from": "261", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:58.36124101Z" + "vertex_from": "262", + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:56.902732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054027, - "rtt_ms": 1.054027, + "rtt_ns": 1484708, + "rtt_ms": 1.484708, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:58.36137162Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.902754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023237, - "rtt_ms": 1.023237, + "rtt_ns": 1526000, + "rtt_ms": 1.526, "checkpoint": 0, "vertex_from": "262", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.36138322Z" + "timestamp": "2025-11-27T04:01:56.902755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494415, - "rtt_ms": 1.494415, + "rtt_ns": 1764667, + "rtt_ms": 1.764667, "checkpoint": 0, - "vertex_from": "262", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.361866458Z" + "vertex_from": "261", + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:56.902764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571235, - "rtt_ms": 1.571235, + "rtt_ns": 1475083, + "rtt_ms": 1.475083, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.362027908Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:01:56.902938-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630665, - "rtt_ms": 1.630665, + "rtt_ns": 1528583, + "rtt_ms": 1.528583, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "669", - "timestamp": "2025-11-27T01:21:58.362030488Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.903619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410286, - "rtt_ms": 1.410286, + "rtt_ns": 1557209, + "rtt_ms": 1.557209, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.362651726Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:56.903694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1883434, - "rtt_ms": 1.883434, + "rtt_ns": 1761042, + "rtt_ms": 1.761042, "checkpoint": 0, "vertex_from": "262", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.362822215Z" + "timestamp": "2025-11-27T04:01:56.903868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464055, - "rtt_ms": 1.464055, + "rtt_ns": 1765459, + "rtt_ms": 1.765459, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "788", - "timestamp": "2025-11-27T01:21:58.362836405Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.903887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709055, - "rtt_ms": 1.709055, + "rtt_ns": 1578542, + "rtt_ms": 1.578542, "checkpoint": 0, "vertex_from": "262", "vertex_to": "337", - "timestamp": "2025-11-27T01:21:58.362910965Z" + "timestamp": "2025-11-27T04:01:56.903907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765415, - "rtt_ms": 1.765415, + "rtt_ns": 1520583, + "rtt_ms": 1.520583, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "534", - "timestamp": "2025-11-27T01:21:58.362966485Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:56.904276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1136267, - "rtt_ms": 1.136267, + "rtt_ns": 1520500, + "rtt_ms": 1.5205, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "452", - "timestamp": "2025-11-27T01:21:58.363003815Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:56.904277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1640185, - "rtt_ms": 1.640185, + "rtt_ns": 1353583, + "rtt_ms": 1.353583, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:58.363024165Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.904293-08:00" }, { "operation": "add_edge", - "rtt_ns": 997077, - "rtt_ms": 0.997077, + "rtt_ns": 1557458, + "rtt_ms": 1.557458, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.363028365Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.904293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941054, - "rtt_ms": 1.941054, + "rtt_ns": 1561000, + "rtt_ms": 1.561, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.363125244Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:56.904327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619195, - "rtt_ms": 1.619195, + "rtt_ns": 1250917, + "rtt_ms": 1.250917, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.363647653Z" + "vertex_to": "284", + "timestamp": "2025-11-27T04:01:56.904947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410256, - "rtt_ms": 1.410256, + "rtt_ns": 1354041, + "rtt_ms": 1.354041, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.364247491Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.904974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290275, - "rtt_ms": 1.290275, + "rtt_ns": 1280792, + "rtt_ms": 1.280792, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.36431818Z" + "vertex_to": "690", + "timestamp": "2025-11-27T04:01:56.905188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515805, - "rtt_ms": 1.515805, + "rtt_ns": 1363166, + "rtt_ms": 1.363166, "checkpoint": 0, "vertex_from": "262", "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.36433883Z" + "timestamp": "2025-11-27T04:01:56.905232-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394835, - "rtt_ms": 1.394835, + "rtt_ns": 1490542, + "rtt_ms": 1.490542, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "421", - "timestamp": "2025-11-27T01:21:58.365043298Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.905378-08:00" }, { "operation": "add_edge", - "rtt_ns": 2038943, - "rtt_ms": 2.038943, + "rtt_ns": 1267958, + "rtt_ms": 1.267958, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:58.365043328Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.905562-08:00" }, { "operation": "add_edge", - "rtt_ns": 796127, - "rtt_ms": 0.796127, + "rtt_ns": 1297459, + "rtt_ms": 1.297459, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:58.365045268Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 712728, - "rtt_ms": 0.712728, - "checkpoint": 0, - "vertex_from": "949", - "timestamp": "2025-11-27T01:21:58.365053538Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:56.905575-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938484, - "rtt_ms": 1.938484, + "rtt_ns": 1273875, + "rtt_ms": 1.273875, "checkpoint": 0, "vertex_from": "262", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.365064938Z" + "timestamp": "2025-11-27T04:01:56.905601-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037543, - "rtt_ms": 2.037543, + "rtt_ns": 1363208, + "rtt_ms": 1.363208, "checkpoint": 0, "vertex_from": "262", "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.365066828Z" + "timestamp": "2025-11-27T04:01:56.905658-08:00" }, { "operation": "add_edge", - "rtt_ns": 2104133, - "rtt_ms": 2.104133, + "rtt_ns": 1382125, + "rtt_ms": 1.382125, "checkpoint": 0, "vertex_from": "262", "vertex_to": "401", - "timestamp": "2025-11-27T01:21:58.365071418Z" + "timestamp": "2025-11-27T04:01:56.905659-08:00" }, { "operation": "add_edge", - "rtt_ns": 2418412, - "rtt_ms": 2.418412, + "rtt_ns": 1542958, + "rtt_ms": 1.542958, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "284", - "timestamp": "2025-11-27T01:21:58.365071608Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:01:56.906492-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2161713, - "rtt_ms": 2.161713, + "operation": "add_vertex", + "rtt_ns": 1346250, + "rtt_ms": 1.34625, "checkpoint": 0, - "vertex_from": "262", - "vertex_to": "690", - "timestamp": "2025-11-27T01:21:58.365073838Z" + "vertex_from": "949", + "timestamp": "2025-11-27T04:01:56.906582-08:00" }, { "operation": "add_edge", - "rtt_ns": 780798, - "rtt_ms": 0.780798, + "rtt_ns": 1671125, + "rtt_ms": 1.671125, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.365099748Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:56.906646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581705, - "rtt_ms": 1.581705, + "rtt_ns": 1232042, + "rtt_ms": 1.232042, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "949", - "timestamp": "2025-11-27T01:21:58.366635793Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.906834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535065, - "rtt_ms": 1.535065, + "rtt_ns": 1663709, + "rtt_ms": 1.663709, "checkpoint": 0, - "vertex_from": "263", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.366636433Z" + "vertex_from": "262", + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:56.906853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680354, - "rtt_ms": 1.680354, + "rtt_ns": 1491500, + "rtt_ms": 1.4915, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.366726592Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.906871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714854, - "rtt_ms": 1.714854, + "rtt_ns": 1383791, + "rtt_ms": 1.383791, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "680", - "timestamp": "2025-11-27T01:21:58.366785902Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.90696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741884, - "rtt_ms": 1.741884, + "rtt_ns": 1394167, + "rtt_ms": 1.394167, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.366786092Z" + "vertex_to": "267", + "timestamp": "2025-11-27T04:01:56.907054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724824, - "rtt_ms": 1.724824, + "rtt_ns": 1492084, + "rtt_ms": 1.492084, "checkpoint": 0, - "vertex_from": "263", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.366800592Z" + "vertex_from": "262", + "vertex_to": "811", + "timestamp": "2025-11-27T04:01:56.907055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773604, - "rtt_ms": 1.773604, + "rtt_ns": 1428917, + "rtt_ms": 1.428917, "checkpoint": 0, "vertex_from": "262", - "vertex_to": "811", - "timestamp": "2025-11-27T01:21:58.366818732Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:56.907088-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016713, - "rtt_ms": 2.016713, + "rtt_ns": 1291459, + "rtt_ms": 1.291459, "checkpoint": 0, - "vertex_from": "262", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.367085101Z" + "vertex_from": "263", + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.907939-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010393, - "rtt_ms": 2.010393, + "rtt_ns": 1102875, + "rtt_ms": 1.102875, "checkpoint": 0, - "vertex_from": "262", - "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.367085341Z" + "vertex_from": "263", + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:56.907956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026083, - "rtt_ms": 2.026083, + "rtt_ns": 1137167, + "rtt_ms": 1.137167, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.367103161Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.907972-08:00" }, { "operation": "add_edge", - "rtt_ns": 793887, - "rtt_ms": 0.793887, + "rtt_ns": 1320500, + "rtt_ms": 1.3205, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "425", - "timestamp": "2025-11-27T01:21:58.367614889Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.908192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075857, - "rtt_ms": 1.075857, + "rtt_ns": 1721750, + "rtt_ms": 1.72175, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.367803839Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.908215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294715, - "rtt_ms": 1.294715, + "rtt_ns": 1647709, + "rtt_ms": 1.647709, "checkpoint": 0, - "vertex_from": "263", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.367935618Z" + "vertex_from": "262", + "vertex_to": "949", + "timestamp": "2025-11-27T04:01:56.90823-08:00" }, { "operation": "add_edge", - "rtt_ns": 1220666, - "rtt_ms": 1.220666, + "rtt_ns": 1299125, + "rtt_ms": 1.299125, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:58.368010488Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.908388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1244686, - "rtt_ms": 1.244686, + "rtt_ns": 1391625, + "rtt_ms": 1.391625, "checkpoint": 0, "vertex_from": "263", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.368032528Z" + "timestamp": "2025-11-27T04:01:56.908447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438205, - "rtt_ms": 1.438205, + "rtt_ns": 1441375, + "rtt_ms": 1.441375, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:58.368078918Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:56.908497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036897, - "rtt_ms": 1.036897, + "rtt_ns": 1565791, + "rtt_ms": 1.565791, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.368125588Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.908528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341736, - "rtt_ms": 1.341736, + "rtt_ns": 1306833, + "rtt_ms": 1.306833, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.368144208Z" + "vertex_to": "425", + "timestamp": "2025-11-27T04:01:56.909247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628645, - "rtt_ms": 1.628645, + "rtt_ns": 1349291, + "rtt_ms": 1.349291, "checkpoint": 0, "vertex_from": "263", "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.368715546Z" + "timestamp": "2025-11-27T04:01:56.909307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253526, - "rtt_ms": 1.253526, + "rtt_ns": 1445917, + "rtt_ms": 1.445917, "checkpoint": 0, "vertex_from": "263", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.368869575Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.909419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791854, - "rtt_ms": 1.791854, + "rtt_ns": 1431083, + "rtt_ms": 1.431083, "checkpoint": 0, "vertex_from": "263", "vertex_to": "264", - "timestamp": "2025-11-27T01:21:58.368897155Z" + "timestamp": "2025-11-27T04:01:56.909624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316405, - "rtt_ms": 1.316405, + "rtt_ns": 1405417, + "rtt_ms": 1.405417, "checkpoint": 0, "vertex_from": "263", "vertex_to": "525", - "timestamp": "2025-11-27T01:21:58.369121484Z" + "timestamp": "2025-11-27T04:01:56.909636-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1486833, + "rtt_ms": 1.486833, + "checkpoint": 0, + "vertex_from": "263", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.909703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289946, - "rtt_ms": 1.289946, + "rtt_ns": 1279917, + "rtt_ms": 1.279917, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.369226904Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:56.909809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388175, - "rtt_ms": 1.388175, + "rtt_ns": 1983708, + "rtt_ms": 1.983708, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:58.369423083Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.910372-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358475, - "rtt_ms": 1.358475, + "rtt_ns": 1940958, + "rtt_ms": 1.940958, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:58.369439073Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.910389-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384335, - "rtt_ms": 1.384335, + "rtt_ns": 2201166, + "rtt_ms": 2.201166, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.369511253Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:56.910699-08:00" }, { "operation": "add_edge", - "rtt_ns": 838647, - "rtt_ms": 0.838647, + "rtt_ns": 1667458, + "rtt_ms": 1.667458, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "673", - "timestamp": "2025-11-27T01:21:58.369555703Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.911306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554175, - "rtt_ms": 1.554175, + "rtt_ns": 1661792, + "rtt_ms": 1.661792, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.369566693Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.911367-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493925, - "rtt_ms": 1.493925, + "rtt_ns": 2002792, + "rtt_ms": 2.002792, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "659", - "timestamp": "2025-11-27T01:21:58.369640273Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:56.911423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340296, - "rtt_ms": 1.340296, + "rtt_ns": 2122125, + "rtt_ms": 2.122125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.370212831Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:01:56.91143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174877, - "rtt_ms": 1.174877, + "rtt_ns": 2200041, + "rtt_ms": 2.200041, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.370298311Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.91145-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095077, - "rtt_ms": 1.095077, + "rtt_ns": 1657042, + "rtt_ms": 1.657042, "checkpoint": 0, "vertex_from": "264", "vertex_to": "714", - "timestamp": "2025-11-27T01:21:58.370324601Z" + "timestamp": "2025-11-27T04:01:56.911467-08:00" }, { "operation": "add_edge", - "rtt_ns": 886238, - "rtt_ms": 0.886238, + "rtt_ns": 1851333, + "rtt_ms": 1.851333, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "818", - "timestamp": "2025-11-27T01:21:58.370327061Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.911476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448356, - "rtt_ms": 1.448356, + "rtt_ns": 2015667, + "rtt_ms": 2.015667, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.370353311Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:56.912388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625385, - "rtt_ms": 1.625385, + "rtt_ns": 2045292, + "rtt_ms": 2.045292, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.371182678Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.912745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792985, - "rtt_ms": 1.792985, + "rtt_ns": 2373833, + "rtt_ms": 2.373833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:58.371219048Z" + "vertex_to": "818", + "timestamp": "2025-11-27T04:01:56.912763-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612075, - "rtt_ms": 1.612075, + "rtt_ns": 1533250, + "rtt_ms": 1.53325, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.371253598Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.912984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712245, - "rtt_ms": 1.712245, + "rtt_ns": 1639667, + "rtt_ms": 1.639667, "checkpoint": 0, "vertex_from": "264", "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.371280438Z" + "timestamp": "2025-11-27T04:01:56.913009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769615, - "rtt_ms": 1.769615, + "rtt_ns": 1589333, + "rtt_ms": 1.589333, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.371283428Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.913014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356976, - "rtt_ms": 1.356976, + "rtt_ns": 1585792, + "rtt_ms": 1.585792, "checkpoint": 0, "vertex_from": "264", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.371571107Z" + "timestamp": "2025-11-27T04:01:56.913017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305286, - "rtt_ms": 1.305286, + "rtt_ns": 1542000, + "rtt_ms": 1.542, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.371605547Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:01:56.913021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363055, - "rtt_ms": 1.363055, + "rtt_ns": 1891125, + "rtt_ms": 1.891125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "736", - "timestamp": "2025-11-27T01:21:58.371692036Z" + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.913198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388175, - "rtt_ms": 1.388175, + "rtt_ns": 1735917, + "rtt_ms": 1.735917, "checkpoint": 0, "vertex_from": "264", "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.371714126Z" + "timestamp": "2025-11-27T04:01:56.913204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392165, - "rtt_ms": 1.392165, + "rtt_ns": 1612875, + "rtt_ms": 1.612875, "checkpoint": 0, "vertex_from": "264", "vertex_to": "780", - "timestamp": "2025-11-27T01:21:58.371747256Z" + "timestamp": "2025-11-27T04:01:56.914003-08:00" }, { "operation": "add_edge", - "rtt_ns": 870107, - "rtt_ms": 0.870107, + "rtt_ns": 1292083, + "rtt_ms": 1.292083, "checkpoint": 0, "vertex_from": "264", "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.372090305Z" + "timestamp": "2025-11-27T04:01:56.914057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141286, - "rtt_ms": 1.141286, + "rtt_ns": 1304542, + "rtt_ms": 1.304542, "checkpoint": 0, "vertex_from": "264", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.372426614Z" + "timestamp": "2025-11-27T04:01:56.91432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210086, - "rtt_ms": 1.210086, + "rtt_ns": 1325833, + "rtt_ms": 1.325833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "424", - "timestamp": "2025-11-27T01:21:58.372465724Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:56.914336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254696, - "rtt_ms": 1.254696, + "rtt_ns": 1324334, + "rtt_ms": 1.324334, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.372536484Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:56.914344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407305, - "rtt_ms": 1.407305, + "rtt_ns": 1724625, + "rtt_ms": 1.724625, "checkpoint": 0, "vertex_from": "264", "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.372591583Z" + "timestamp": "2025-11-27T04:01:56.91447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672834, - "rtt_ms": 1.672834, + "rtt_ns": 1281916, + "rtt_ms": 1.281916, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "400", - "timestamp": "2025-11-27T01:21:58.373246381Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.914486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662755, - "rtt_ms": 1.662755, + "rtt_ns": 1485500, + "rtt_ms": 1.4855, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "290", - "timestamp": "2025-11-27T01:21:58.373355721Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.914507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767254, - "rtt_ms": 1.767254, + "rtt_ns": 1528208, + "rtt_ms": 1.528208, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.373373771Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:56.914513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746335, - "rtt_ms": 1.746335, + "rtt_ns": 1339791, + "rtt_ms": 1.339791, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.373494811Z" + "vertex_to": "290", + "timestamp": "2025-11-27T04:01:56.914538-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1965764, - "rtt_ms": 1.965764, + "operation": "add_vertex", + "rtt_ns": 1400250, + "rtt_ms": 1.40025, "checkpoint": 0, - "vertex_from": "264", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.37368219Z" + "vertex_from": "335", + "timestamp": "2025-11-27T04:01:56.91546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1255246, - "rtt_ms": 1.255246, + "rtt_ns": 1686750, + "rtt_ms": 1.68675, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "451", - "timestamp": "2025-11-27T01:21:58.3736831Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.915691-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1681675, - "rtt_ms": 1.681675, + "operation": "add_edge", + "rtt_ns": 1706583, + "rtt_ms": 1.706583, "checkpoint": 0, - "vertex_from": "335", - "timestamp": "2025-11-27T01:21:58.37377474Z" + "vertex_from": "264", + "vertex_to": "451", + "timestamp": "2025-11-27T04:01:56.916027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252806, - "rtt_ms": 1.252806, + "rtt_ns": 1576292, + "rtt_ms": 1.576292, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "274", - "timestamp": "2025-11-27T01:21:58.37379068Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:56.916047-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332326, - "rtt_ms": 1.332326, + "rtt_ns": 1724958, + "rtt_ms": 1.724958, "checkpoint": 0, "vertex_from": "264", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.37379963Z" + "timestamp": "2025-11-27T04:01:56.916062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263986, - "rtt_ms": 1.263986, + "rtt_ns": 1716750, + "rtt_ms": 1.71675, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "562", - "timestamp": "2025-11-27T01:21:58.373857469Z" + "vertex_to": "274", + "timestamp": "2025-11-27T04:01:56.916062-08:00" }, { "operation": "add_edge", - "rtt_ns": 639348, - "rtt_ms": 0.639348, + "rtt_ns": 1555959, + "rtt_ms": 1.555959, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.373886849Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:56.916064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031857, - "rtt_ms": 1.031857, + "rtt_ns": 1593875, + "rtt_ms": 1.593875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.374407518Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.916081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101017, - "rtt_ms": 1.101017, + "rtt_ns": 1721375, + "rtt_ms": 1.721375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "587", - "timestamp": "2025-11-27T01:21:58.374458068Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:56.91626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204496, - "rtt_ms": 1.204496, + "rtt_ns": 1794459, + "rtt_ms": 1.794459, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "593", - "timestamp": "2025-11-27T01:21:58.374700637Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.916308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055597, - "rtt_ms": 1.055597, + "rtt_ns": 1162959, + "rtt_ms": 1.162959, "checkpoint": 0, "vertex_from": "264", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.374739377Z" + "timestamp": "2025-11-27T04:01:56.916855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537835, - "rtt_ms": 1.537835, + "rtt_ns": 1732334, + "rtt_ms": 1.732334, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "798", - "timestamp": "2025-11-27T01:21:58.375330585Z" + "vertex_to": "335", + "timestamp": "2025-11-27T04:01:56.917193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723085, - "rtt_ms": 1.723085, + "rtt_ns": 1313667, + "rtt_ms": 1.313667, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.375407525Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.917376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658114, - "rtt_ms": 1.658114, + "rtt_ns": 1389959, + "rtt_ms": 1.389959, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "335", - "timestamp": "2025-11-27T01:21:58.375433374Z" + "vertex_to": "317", + "timestamp": "2025-11-27T04:01:56.917454-08:00" }, { "operation": "add_edge", - "rtt_ns": 980076, - "rtt_ms": 0.980076, + "rtt_ns": 1560292, + "rtt_ms": 1.560292, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.375439814Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:56.917625-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652254, - "rtt_ms": 1.652254, + "rtt_ns": 1759792, + "rtt_ms": 1.759792, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.375453414Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:56.917788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565735, - "rtt_ms": 1.565735, + "rtt_ns": 966083, + "rtt_ms": 0.966083, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "786", - "timestamp": "2025-11-27T01:21:58.375456364Z" + "vertex_to": "419", + "timestamp": "2025-11-27T04:01:56.917822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618405, - "rtt_ms": 1.618405, + "rtt_ns": 1536042, + "rtt_ms": 1.536042, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "317", - "timestamp": "2025-11-27T01:21:58.375477734Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:56.917845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117106, - "rtt_ms": 1.117106, + "rtt_ns": 1678709, + "rtt_ms": 1.678709, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.375527574Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.91794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504445, - "rtt_ms": 1.504445, + "rtt_ns": 1871708, + "rtt_ms": 1.871708, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "419", - "timestamp": "2025-11-27T01:21:58.376245112Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.917953-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643714, - "rtt_ms": 1.643714, + "rtt_ns": 1928917, + "rtt_ms": 1.928917, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:58.376346901Z" + "vertex_to": "798", + "timestamp": "2025-11-27T04:01:56.917977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483365, - "rtt_ms": 1.483365, + "rtt_ns": 1081750, + "rtt_ms": 1.08175, "checkpoint": 0, "vertex_from": "264", "vertex_to": "618", - "timestamp": "2025-11-27T01:21:58.37689326Z" + "timestamp": "2025-11-27T04:01:56.918459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544165, - "rtt_ms": 1.544165, + "rtt_ns": 1279125, + "rtt_ms": 1.279125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.376998999Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:56.918475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577155, - "rtt_ms": 1.577155, + "rtt_ns": 1154292, + "rtt_ms": 1.154292, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:58.377056559Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:56.91878-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643565, - "rtt_ms": 1.643565, + "rtt_ns": 1281083, + "rtt_ms": 1.281083, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:58.377087909Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.919072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653605, - "rtt_ms": 1.653605, + "rtt_ns": 1633541, + "rtt_ms": 1.633541, "checkpoint": 0, "vertex_from": "264", "vertex_to": "267", - "timestamp": "2025-11-27T01:21:58.377088329Z" + "timestamp": "2025-11-27T04:01:56.919089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632305, - "rtt_ms": 1.632305, + "rtt_ns": 1387083, + "rtt_ms": 1.387083, "checkpoint": 0, "vertex_from": "264", "vertex_to": "932", - "timestamp": "2025-11-27T01:21:58.377089859Z" + "timestamp": "2025-11-27T04:01:56.919211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760634, - "rtt_ms": 1.760634, + "rtt_ns": 1371916, + "rtt_ms": 1.371916, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "432", - "timestamp": "2025-11-27T01:21:58.377092729Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:56.919219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700984, - "rtt_ms": 1.700984, + "rtt_ns": 1498500, + "rtt_ms": 1.4985, "checkpoint": 0, "vertex_from": "264", "vertex_to": "789", - "timestamp": "2025-11-27T01:21:58.377230598Z" + "timestamp": "2025-11-27T04:01:56.91944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1517105, - "rtt_ms": 1.517105, + "rtt_ns": 1479209, + "rtt_ms": 1.479209, "checkpoint": 0, "vertex_from": "264", "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.377865966Z" + "timestamp": "2025-11-27T04:01:56.919457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656534, - "rtt_ms": 1.656534, + "rtt_ns": 1548625, + "rtt_ms": 1.548625, "checkpoint": 0, "vertex_from": "264", "vertex_to": "916", - "timestamp": "2025-11-27T01:21:58.377903636Z" + "timestamp": "2025-11-27T04:01:56.919502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577394, - "rtt_ms": 1.577394, + "rtt_ns": 1075333, + "rtt_ms": 1.075333, "checkpoint": 0, "vertex_from": "264", "vertex_to": "452", - "timestamp": "2025-11-27T01:21:58.378471364Z" + "timestamp": "2025-11-27T04:01:56.919536-08:00" }, { "operation": "add_edge", - "rtt_ns": 2677021, - "rtt_ms": 2.677021, + "rtt_ns": 1387625, + "rtt_ms": 1.387625, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.37973611Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:56.919863-08:00" }, { "operation": "add_edge", - "rtt_ns": 2863431, - "rtt_ms": 2.863431, + "rtt_ns": 1345542, + "rtt_ms": 1.345542, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:58.37986373Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.920418-08:00" }, { "operation": "add_edge", - "rtt_ns": 2834320, - "rtt_ms": 2.83432, + "rtt_ns": 1202792, + "rtt_ms": 1.202792, "checkpoint": 0, "vertex_from": "264", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.379929399Z" + "timestamp": "2025-11-27T04:01:56.920423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2991800, - "rtt_ms": 2.9918, + "rtt_ns": 1388791, + "rtt_ms": 1.388791, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.380081399Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:56.920479-08:00" }, { "operation": "add_edge", - "rtt_ns": 2776641, - "rtt_ms": 2.776641, + "rtt_ns": 1936042, + "rtt_ms": 1.936042, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "710", - "timestamp": "2025-11-27T01:21:58.380644177Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.920717-08:00" }, { "operation": "add_edge", - "rtt_ns": 3639838, - "rtt_ms": 3.639838, + "rtt_ns": 1520541, + "rtt_ms": 1.520541, "checkpoint": 0, "vertex_from": "264", "vertex_to": "840", - "timestamp": "2025-11-27T01:21:58.380731517Z" + "timestamp": "2025-11-27T04:01:56.920734-08:00" }, { "operation": "add_edge", - "rtt_ns": 3660618, - "rtt_ms": 3.660618, + "rtt_ns": 1274458, + "rtt_ms": 1.274458, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:58.380751127Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.920811-08:00" }, { "operation": "add_edge", - "rtt_ns": 2848601, - "rtt_ms": 2.848601, + "rtt_ns": 1430708, + "rtt_ms": 1.430708, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "905", - "timestamp": "2025-11-27T01:21:58.380753167Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:01:56.920888-08:00" }, { "operation": "add_edge", - "rtt_ns": 3531439, - "rtt_ms": 3.531439, + "rtt_ns": 1447959, + "rtt_ms": 1.447959, "checkpoint": 0, "vertex_from": "264", "vertex_to": "696", - "timestamp": "2025-11-27T01:21:58.380764417Z" + "timestamp": "2025-11-27T04:01:56.920889-08:00" }, { "operation": "add_edge", - "rtt_ns": 2315033, - "rtt_ms": 2.315033, + "rtt_ns": 1599584, + "rtt_ms": 1.599584, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.380787437Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:01:56.921103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272986, - "rtt_ms": 1.272986, + "rtt_ns": 1641334, + "rtt_ms": 1.641334, "checkpoint": 0, "vertex_from": "264", "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.381011036Z" + "timestamp": "2025-11-27T04:01:56.921505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190396, - "rtt_ms": 1.190396, + "rtt_ns": 1056583, + "rtt_ms": 1.056583, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.381054806Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:56.921536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147987, - "rtt_ms": 1.147987, + "rtt_ns": 1448875, + "rtt_ms": 1.448875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "363", - "timestamp": "2025-11-27T01:21:58.381079856Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.921869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013477, - "rtt_ms": 1.013477, + "rtt_ns": 1463833, + "rtt_ms": 1.463833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "624", - "timestamp": "2025-11-27T01:21:58.381096476Z" + "vertex_to": "363", + "timestamp": "2025-11-27T04:01:56.921888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1203556, - "rtt_ms": 1.203556, + "rtt_ns": 1386709, + "rtt_ms": 1.386709, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "275", - "timestamp": "2025-11-27T01:21:58.382216282Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:56.922105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155876, - "rtt_ms": 1.155876, + "rtt_ns": 1388125, + "rtt_ms": 1.388125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.382236682Z" + "vertex_to": "286", + "timestamp": "2025-11-27T04:01:56.922123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591745, - "rtt_ms": 1.591745, + "rtt_ns": 1249708, + "rtt_ms": 1.249708, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "292", - "timestamp": "2025-11-27T01:21:58.382237192Z" + "vertex_to": "346", + "timestamp": "2025-11-27T04:01:56.922141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211906, - "rtt_ms": 1.211906, + "rtt_ns": 1342959, + "rtt_ms": 1.342959, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "342", - "timestamp": "2025-11-27T01:21:58.382268122Z" + "vertex_to": "421", + "timestamp": "2025-11-27T04:01:56.922156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480765, - "rtt_ms": 1.480765, + "rtt_ns": 1539583, + "rtt_ms": 1.539583, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.382269112Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:56.92243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642775, - "rtt_ms": 1.642775, + "rtt_ns": 1375042, + "rtt_ms": 1.375042, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "421", - "timestamp": "2025-11-27T01:21:58.382395252Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.922479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676555, - "rtt_ms": 1.676555, + "rtt_ns": 1237291, + "rtt_ms": 1.237291, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "286", - "timestamp": "2025-11-27T01:21:58.382411172Z" + "vertex_to": "275", + "timestamp": "2025-11-27T04:01:56.922743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662765, - "rtt_ms": 1.662765, + "rtt_ns": 1243875, + "rtt_ms": 1.243875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "346", - "timestamp": "2025-11-27T01:21:58.382429662Z" + "vertex_to": "342", + "timestamp": "2025-11-27T04:01:56.922782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701374, - "rtt_ms": 1.701374, + "rtt_ns": 1356666, + "rtt_ms": 1.356666, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "960", - "timestamp": "2025-11-27T01:21:58.382455861Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.923227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470295, - "rtt_ms": 1.470295, + "rtt_ns": 1410042, + "rtt_ms": 1.410042, "checkpoint": 0, "vertex_from": "264", "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.382567961Z" + "timestamp": "2025-11-27T04:01:56.923299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475055, - "rtt_ms": 1.475055, + "rtt_ns": 1384375, + "rtt_ms": 1.384375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "806", - "timestamp": "2025-11-27T01:21:58.383695297Z" + "vertex_to": "265", + "timestamp": "2025-11-27T04:01:56.923526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237866, - "rtt_ms": 1.237866, + "rtt_ns": 1387125, + "rtt_ms": 1.387125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "846", - "timestamp": "2025-11-27T01:21:58.383808077Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.923544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1380795, - "rtt_ms": 1.380795, + "rtt_ns": 1453375, + "rtt_ms": 1.453375, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:58.383812507Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:56.923559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400705, - "rtt_ms": 1.400705, + "rtt_ns": 1649417, + "rtt_ms": 1.649417, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "641", - "timestamp": "2025-11-27T01:21:58.383813387Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:01:56.923773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572765, - "rtt_ms": 1.572765, + "rtt_ns": 1546500, + "rtt_ms": 1.5465, "checkpoint": 0, "vertex_from": "264", "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.383844627Z" + "timestamp": "2025-11-27T04:01:56.923977-08:00" }, { "operation": "add_edge", - "rtt_ns": 2250313, - "rtt_ms": 2.250313, + "rtt_ns": 1243333, + "rtt_ms": 1.243333, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "611", - "timestamp": "2025-11-27T01:21:58.384489085Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:56.923988-08:00" }, { "operation": "add_edge", - "rtt_ns": 2325583, - "rtt_ms": 2.325583, + "rtt_ns": 1524833, + "rtt_ms": 1.524833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.384597685Z" + "vertex_to": "563", + "timestamp": "2025-11-27T04:01:56.924005-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393203, - "rtt_ms": 2.393203, + "rtt_ns": 1469125, + "rtt_ms": 1.469125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "265", - "timestamp": "2025-11-27T01:21:58.384632645Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:56.924253-08:00" }, { "operation": "add_edge", - "rtt_ns": 2338192, - "rtt_ms": 2.338192, + "rtt_ns": 1482875, + "rtt_ms": 1.482875, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "563", - "timestamp": "2025-11-27T01:21:58.384736184Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:56.924711-08:00" }, { "operation": "add_edge", - "rtt_ns": 2301743, - "rtt_ms": 2.301743, + "rtt_ns": 1505833, + "rtt_ms": 1.505833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:58.384759274Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.925033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718995, - "rtt_ms": 1.718995, + "rtt_ns": 1497583, + "rtt_ms": 1.497583, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "909", - "timestamp": "2025-11-27T01:21:58.385533142Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.925042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724155, - "rtt_ms": 1.724155, + "rtt_ns": 1502709, + "rtt_ms": 1.502709, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "803", - "timestamp": "2025-11-27T01:21:58.385570062Z" + "vertex_to": "909", + "timestamp": "2025-11-27T04:01:56.925063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757595, - "rtt_ms": 1.757595, + "rtt_ns": 1778125, + "rtt_ms": 1.778125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "406", - "timestamp": "2025-11-27T01:21:58.385573472Z" + "vertex_to": "846", + "timestamp": "2025-11-27T04:01:56.925079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083267, - "rtt_ms": 1.083267, + "rtt_ns": 1262833, + "rtt_ms": 1.262833, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:58.385574602Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.925269-08:00" }, { "operation": "add_edge", - "rtt_ns": 951337, - "rtt_ms": 0.951337, + "rtt_ns": 1503083, + "rtt_ms": 1.503083, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "550", - "timestamp": "2025-11-27T01:21:58.385585582Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:56.925278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894164, - "rtt_ms": 1.894164, + "rtt_ns": 1357584, + "rtt_ms": 1.357584, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.385591321Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:56.925346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794484, - "rtt_ms": 1.794484, + "rtt_ns": 1475125, + "rtt_ms": 1.475125, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.385604951Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:01:56.925455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1804754, - "rtt_ms": 1.804754, + "rtt_ns": 1309000, + "rtt_ms": 1.309, "checkpoint": 0, "vertex_from": "264", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.386404179Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:56.925563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754765, - "rtt_ms": 1.754765, + "rtt_ns": 1409583, + "rtt_ms": 1.409583, "checkpoint": 0, "vertex_from": "265", "vertex_to": "579", - "timestamp": "2025-11-27T01:21:58.386492489Z" + "timestamp": "2025-11-27T04:01:56.926121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885634, - "rtt_ms": 1.885634, + "rtt_ns": 1706042, + "rtt_ms": 1.706042, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.386648138Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.926976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591785, - "rtt_ms": 1.591785, + "rtt_ns": 2083334, + "rtt_ms": 2.083334, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "912", - "timestamp": "2025-11-27T01:21:58.387179636Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.927163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647304, - "rtt_ms": 1.647304, + "rtt_ns": 2135792, + "rtt_ms": 2.135792, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.387221586Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.927179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650204, - "rtt_ms": 1.650204, + "rtt_ns": 2161167, + "rtt_ms": 2.161167, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.387227146Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.927195-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621425, - "rtt_ms": 1.621425, + "rtt_ns": 2146334, + "rtt_ms": 2.146334, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.387229166Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:56.927209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725604, - "rtt_ms": 1.725604, + "rtt_ns": 1662709, + "rtt_ms": 1.662709, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.387260946Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.927227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693744, - "rtt_ms": 1.693744, + "rtt_ns": 1803042, + "rtt_ms": 1.803042, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.387266546Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.927259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686565, - "rtt_ms": 1.686565, + "rtt_ns": 2100417, + "rtt_ms": 2.100417, "checkpoint": 0, "vertex_from": "265", "vertex_to": "720", - "timestamp": "2025-11-27T01:21:58.387279746Z" + "timestamp": "2025-11-27T04:01:56.927449-08:00" }, { "operation": "add_edge", - "rtt_ns": 844208, - "rtt_ms": 0.844208, + "rtt_ns": 2246458, + "rtt_ms": 2.246458, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "420", - "timestamp": "2025-11-27T01:21:58.388074814Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:56.927525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464725, - "rtt_ms": 1.464725, + "rtt_ns": 1958417, + "rtt_ms": 1.958417, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "538", - "timestamp": "2025-11-27T01:21:58.388115433Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.928081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765374, - "rtt_ms": 1.765374, + "rtt_ns": 1437541, + "rtt_ms": 1.437541, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.388172953Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:56.928415-08:00" }, { "operation": "add_edge", - "rtt_ns": 952077, - "rtt_ms": 0.952077, + "rtt_ns": 1326166, + "rtt_ms": 1.326166, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:58.388174893Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:56.928536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037267, - "rtt_ms": 1.037267, + "rtt_ns": 1120292, + "rtt_ms": 1.120292, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.388218663Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:56.92857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776064, - "rtt_ms": 1.776064, + "rtt_ns": 1488458, + "rtt_ms": 1.488458, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.388270123Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.928748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185126, - "rtt_ms": 1.185126, + "rtt_ns": 1571292, + "rtt_ms": 1.571292, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.388455242Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.928767-08:00" }, { "operation": "add_edge", - "rtt_ns": 2037513, - "rtt_ms": 2.037513, + "rtt_ns": 1604125, + "rtt_ms": 1.604125, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:58.389318799Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:56.928784-08:00" }, { "operation": "add_edge", - "rtt_ns": 2064883, - "rtt_ms": 2.064883, + "rtt_ns": 1479958, + "rtt_ms": 1.479958, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "932", - "timestamp": "2025-11-27T01:21:58.389327419Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:56.929006-08:00" }, { "operation": "add_edge", - "rtt_ns": 2109453, - "rtt_ms": 2.109453, + "rtt_ns": 1857500, + "rtt_ms": 1.8575, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.389338189Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.929022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688304, - "rtt_ms": 1.688304, + "rtt_ns": 1808958, + "rtt_ms": 1.808958, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "897", - "timestamp": "2025-11-27T01:21:58.389765488Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:01:56.929036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1870244, - "rtt_ms": 1.870244, + "rtt_ns": 1474166, + "rtt_ms": 1.474166, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.390047117Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:56.929558-08:00" }, { "operation": "add_edge", - "rtt_ns": 2005513, - "rtt_ms": 2.005513, + "rtt_ns": 1159250, + "rtt_ms": 1.15925, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.390226446Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.929575-08:00" }, { "operation": "add_edge", - "rtt_ns": 2447632, - "rtt_ms": 2.447632, + "rtt_ns": 1425667, + "rtt_ms": 1.425667, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:58.390564305Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.929963-08:00" }, { "operation": "add_edge", - "rtt_ns": 2316532, - "rtt_ms": 2.316532, + "rtt_ns": 1282041, + "rtt_ms": 1.282041, "checkpoint": 0, "vertex_from": "265", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.390588155Z" + "timestamp": "2025-11-27T04:01:56.930031-08:00" }, { "operation": "add_edge", - "rtt_ns": 2759741, - "rtt_ms": 2.759741, + "rtt_ns": 1474584, + "rtt_ms": 1.474584, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.391216243Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.930046-08:00" }, { "operation": "add_edge", - "rtt_ns": 691508, - "rtt_ms": 0.691508, + "rtt_ns": 1406875, + "rtt_ms": 1.406875, "checkpoint": 0, - "vertex_from": "266", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.391281943Z" + "vertex_from": "265", + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:56.930413-08:00" }, { "operation": "add_edge", - "rtt_ns": 3223799, - "rtt_ms": 3.223799, + "rtt_ns": 1436833, + "rtt_ms": 1.436833, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.391397822Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.930474-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114183, - "rtt_ms": 2.114183, + "rtt_ns": 1706208, + "rtt_ms": 1.706208, "checkpoint": 0, "vertex_from": "265", "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.391434752Z" + "timestamp": "2025-11-27T04:01:56.930491-08:00" }, { "operation": "add_edge", - "rtt_ns": 2150283, - "rtt_ms": 2.150283, + "rtt_ns": 1690667, + "rtt_ms": 1.690667, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "792", - "timestamp": "2025-11-27T01:21:58.391479742Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.930713-08:00" }, { "operation": "add_edge", - "rtt_ns": 2154243, - "rtt_ms": 2.154243, + "rtt_ns": 1975333, + "rtt_ms": 1.975333, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.391497812Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.930744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239592, - "rtt_ms": 2.239592, + "rtt_ns": 1270583, + "rtt_ms": 1.270583, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.392007Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:56.930846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584585, - "rtt_ms": 1.584585, + "rtt_ns": 1678000, + "rtt_ms": 1.678, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:58.39215087Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.931237-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142623, - "rtt_ms": 2.142623, + "rtt_ns": 1208500, + "rtt_ms": 1.2085, "checkpoint": 0, - "vertex_from": "265", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.39219199Z" + "vertex_from": "266", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.931255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1964674, - "rtt_ms": 1.964674, + "rtt_ns": 1748291, + "rtt_ms": 1.748291, "checkpoint": 0, "vertex_from": "265", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.3921926Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:56.931714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049717, - "rtt_ms": 1.049717, + "rtt_ns": 1739625, + "rtt_ms": 1.739625, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.39226745Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.931772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155836, - "rtt_ms": 1.155836, + "rtt_ns": 1431375, + "rtt_ms": 1.431375, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.392439029Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.931906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857134, - "rtt_ms": 1.857134, + "rtt_ns": 1691375, + "rtt_ms": 1.691375, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.393255896Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:56.932183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759794, - "rtt_ms": 1.759794, + "rtt_ns": 1815708, + "rtt_ms": 1.815708, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "617", - "timestamp": "2025-11-27T01:21:58.393258756Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.93223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824174, - "rtt_ms": 1.824174, + "rtt_ns": 1657458, + "rtt_ms": 1.657458, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "650", - "timestamp": "2025-11-27T01:21:58.393260516Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.932506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820224, - "rtt_ms": 1.820224, + "rtt_ns": 1777959, + "rtt_ms": 1.777959, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "807", - "timestamp": "2025-11-27T01:21:58.393300986Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:56.932524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350226, - "rtt_ms": 1.350226, + "rtt_ns": 1306666, + "rtt_ms": 1.306666, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.393543906Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:56.932544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410305, - "rtt_ms": 1.410305, + "rtt_ns": 2023625, + "rtt_ms": 2.023625, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "596", - "timestamp": "2025-11-27T01:21:58.393563835Z" + "vertex_to": "807", + "timestamp": "2025-11-27T04:01:56.932737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471075, - "rtt_ms": 1.471075, + "rtt_ns": 1504917, + "rtt_ms": 1.504917, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "314", - "timestamp": "2025-11-27T01:21:58.393740285Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.932761-08:00" }, { "operation": "add_edge", - "rtt_ns": 2221913, - "rtt_ms": 2.221913, + "rtt_ns": 1598291, + "rtt_ms": 1.598291, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.394231853Z" + "vertex_to": "559", + "timestamp": "2025-11-27T04:01:56.933313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040667, - "rtt_ms": 1.040667, + "rtt_ns": 1558958, + "rtt_ms": 1.558958, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "527", - "timestamp": "2025-11-27T01:21:58.394304393Z" + "vertex_to": "314", + "timestamp": "2025-11-27T04:01:56.933332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879384, - "rtt_ms": 1.879384, + "rtt_ns": 1440167, + "rtt_ms": 1.440167, "checkpoint": 0, "vertex_from": "266", "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.394321493Z" + "timestamp": "2025-11-27T04:01:56.933348-08:00" }, { "operation": "add_edge", - "rtt_ns": 2136493, - "rtt_ms": 2.136493, + "rtt_ns": 1491833, + "rtt_ms": 1.491833, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "559", - "timestamp": "2025-11-27T01:21:58.394332823Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:56.933676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1217437, - "rtt_ms": 1.217437, + "rtt_ns": 1694041, + "rtt_ms": 1.694041, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "609", - "timestamp": "2025-11-27T01:21:58.394480313Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.934432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305806, - "rtt_ms": 1.305806, + "rtt_ns": 1905375, + "rtt_ms": 1.905375, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.394567852Z" + "vertex_to": "297", + "timestamp": "2025-11-27T04:01:56.93445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308576, - "rtt_ms": 1.308576, + "rtt_ns": 1946917, + "rtt_ms": 1.946917, "checkpoint": 0, "vertex_from": "266", "vertex_to": "339", - "timestamp": "2025-11-27T01:21:58.394612272Z" + "timestamp": "2025-11-27T04:01:56.934472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637984, - "rtt_ms": 1.637984, + "rtt_ns": 1981291, + "rtt_ms": 1.981291, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "297", - "timestamp": "2025-11-27T01:21:58.39518359Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:56.934488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716645, - "rtt_ms": 1.716645, + "rtt_ns": 2269667, + "rtt_ms": 2.269667, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.39528402Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.934501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589895, - "rtt_ms": 1.589895, + "rtt_ns": 1974250, + "rtt_ms": 1.97425, "checkpoint": 0, "vertex_from": "266", "vertex_to": "565", - "timestamp": "2025-11-27T01:21:58.3953321Z" + "timestamp": "2025-11-27T04:01:56.934736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130477, - "rtt_ms": 1.130477, + "rtt_ns": 1434625, + "rtt_ms": 1.434625, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.3954359Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:56.935112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486896, - "rtt_ms": 1.486896, + "rtt_ns": 2086750, + "rtt_ms": 2.08675, "checkpoint": 0, "vertex_from": "266", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.395721719Z" + "timestamp": "2025-11-27T04:01:56.935401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1443065, - "rtt_ms": 1.443065, + "rtt_ns": 2067625, + "rtt_ms": 2.067625, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:58.395778038Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1351835, - "rtt_ms": 1.351835, - "checkpoint": 0, - "vertex_from": "266", - "vertex_to": "742", - "timestamp": "2025-11-27T01:21:58.395834538Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:56.935418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609695, - "rtt_ms": 1.609695, + "rtt_ns": 2233292, + "rtt_ms": 2.233292, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "658", - "timestamp": "2025-11-27T01:21:58.395933168Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.935566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369226, - "rtt_ms": 1.369226, + "rtt_ns": 1439416, + "rtt_ms": 1.439416, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.395938568Z" + "vertex_to": "300", + "timestamp": "2025-11-27T04:01:56.935941-08:00" }, { "operation": "add_edge", - "rtt_ns": 767528, - "rtt_ms": 0.767528, + "rtt_ns": 1669167, + "rtt_ms": 1.669167, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "300", - "timestamp": "2025-11-27T01:21:58.396052928Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.936142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023417, - "rtt_ms": 1.023417, + "rtt_ns": 1725375, + "rtt_ms": 1.725375, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:58.396209237Z" + "vertex_to": "742", + "timestamp": "2025-11-27T04:01:56.936159-08:00" }, { "operation": "add_edge", - "rtt_ns": 930857, - "rtt_ms": 0.930857, + "rtt_ns": 1715666, + "rtt_ms": 1.715666, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.396264217Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.936167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717995, - "rtt_ms": 1.717995, + "rtt_ns": 1736958, + "rtt_ms": 1.736958, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.396331787Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:56.936225-08:00" }, { "operation": "add_edge", - "rtt_ns": 726567, - "rtt_ms": 0.726567, + "rtt_ns": 1505875, + "rtt_ms": 1.505875, "checkpoint": 0, "vertex_from": "266", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.396449626Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.936243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016246, - "rtt_ms": 1.016246, + "rtt_ns": 1295958, + "rtt_ms": 1.295958, "checkpoint": 0, "vertex_from": "266", "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.396453546Z" + "timestamp": "2025-11-27T04:01:56.93641-08:00" }, { "operation": "add_edge", - "rtt_ns": 700198, - "rtt_ms": 0.700198, + "rtt_ns": 1084583, + "rtt_ms": 1.084583, "checkpoint": 0, "vertex_from": "266", "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.396480576Z" + "timestamp": "2025-11-27T04:01:56.936503-08:00" }, { "operation": "add_edge", - "rtt_ns": 942377, - "rtt_ms": 0.942377, + "rtt_ns": 1122625, + "rtt_ms": 1.122625, "checkpoint": 0, - "vertex_from": "267", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.397153534Z" + "vertex_from": "266", + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.936524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392726, - "rtt_ms": 1.392726, + "rtt_ns": 1044167, + "rtt_ms": 1.044167, "checkpoint": 0, "vertex_from": "266", "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.397228214Z" + "timestamp": "2025-11-27T04:01:56.936611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300695, - "rtt_ms": 1.300695, + "rtt_ns": 1394500, + "rtt_ms": 1.3945, "checkpoint": 0, - "vertex_from": "267", + "vertex_from": "266", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.397355343Z" + "timestamp": "2025-11-27T04:01:56.937336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470135, - "rtt_ms": 1.470135, + "rtt_ns": 1116792, + "rtt_ms": 1.116792, "checkpoint": 0, - "vertex_from": "266", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.397404633Z" + "vertex_from": "267", + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.937621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464475, - "rtt_ms": 1.464475, + "rtt_ns": 1471291, + "rtt_ms": 1.471291, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "778", - "timestamp": "2025-11-27T01:21:58.397405473Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.937639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719804, - "rtt_ms": 1.719804, + "rtt_ns": 1498666, + "rtt_ms": 1.498666, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:58.397985671Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.937658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667794, - "rtt_ms": 1.667794, + "rtt_ns": 1531916, + "rtt_ms": 1.531916, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:58.398001101Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:56.937675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756775, - "rtt_ms": 1.756775, + "rtt_ns": 1450584, + "rtt_ms": 1.450584, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.398211461Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:56.937677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766575, - "rtt_ms": 1.766575, + "rtt_ns": 1446833, + "rtt_ms": 1.446833, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.398248861Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:56.93769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799775, - "rtt_ms": 1.799775, + "rtt_ns": 1368625, + "rtt_ms": 1.368625, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.398250471Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.937893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026167, - "rtt_ms": 1.026167, + "rtt_ns": 1318166, + "rtt_ms": 1.318166, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.398255421Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.937932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229756, - "rtt_ms": 1.229756, + "rtt_ns": 1651750, + "rtt_ms": 1.65175, "checkpoint": 0, - "vertex_from": "268", - "vertex_to": "589", - "timestamp": "2025-11-27T01:21:58.398636119Z" + "vertex_from": "267", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.938062-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299436, - "rtt_ms": 1.299436, + "rtt_ns": 1219333, + "rtt_ms": 1.219333, "checkpoint": 0, "vertex_from": "267", "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.398657259Z" + "timestamp": "2025-11-27T04:01:56.938841-08:00" }, { "operation": "add_edge", - "rtt_ns": 2987381, - "rtt_ms": 2.987381, + "rtt_ns": 1523792, + "rtt_ms": 1.523792, "checkpoint": 0, "vertex_from": "267", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.400142415Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.938862-08:00" }, { "operation": "add_edge", - "rtt_ns": 2782811, - "rtt_ms": 2.782811, + "rtt_ns": 1479917, + "rtt_ms": 1.479917, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.400189134Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:56.939156-08:00" }, { "operation": "add_edge", - "rtt_ns": 2348283, - "rtt_ms": 2.348283, + "rtt_ns": 1575125, + "rtt_ms": 1.575125, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:58.400350564Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.939234-08:00" }, { "operation": "add_edge", - "rtt_ns": 3021771, - "rtt_ms": 3.021771, + "rtt_ns": 1725875, + "rtt_ms": 1.725875, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:58.401010822Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.939417-08:00" }, { "operation": "add_edge", - "rtt_ns": 2996530, - "rtt_ms": 2.99653, + "rtt_ns": 1378458, + "rtt_ms": 1.378458, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.401209311Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.939441-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574092, - "rtt_ms": 2.574092, + "rtt_ns": 1791125, + "rtt_ms": 1.791125, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.401234081Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:56.939469-08:00" }, { "operation": "add_edge", - "rtt_ns": 3004010, - "rtt_ms": 3.00401, + "rtt_ns": 1844042, + "rtt_ms": 1.844042, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:58.401253701Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:56.939484-08:00" }, { "operation": "add_edge", - "rtt_ns": 3026960, - "rtt_ms": 3.02696, + "rtt_ns": 1555416, + "rtt_ms": 1.555416, "checkpoint": 0, "vertex_from": "268", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.401280311Z" + "timestamp": "2025-11-27T04:01:56.939488-08:00" }, { "operation": "add_edge", - "rtt_ns": 2663182, - "rtt_ms": 2.663182, + "rtt_ns": 1604417, + "rtt_ms": 1.604417, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.401300561Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:56.939498-08:00" }, { "operation": "add_edge", - "rtt_ns": 3065550, - "rtt_ms": 3.06555, + "rtt_ns": 1378667, + "rtt_ms": 1.378667, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.401323891Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.940242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736494, - "rtt_ms": 1.736494, + "rtt_ns": 1419542, + "rtt_ms": 1.419542, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "529", - "timestamp": "2025-11-27T01:21:58.401881149Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.940261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546395, - "rtt_ms": 1.546395, + "rtt_ns": 1356875, + "rtt_ms": 1.356875, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "811", - "timestamp": "2025-11-27T01:21:58.401898079Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:56.940513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860414, - "rtt_ms": 1.860414, + "rtt_ns": 1346666, + "rtt_ms": 1.346666, "checkpoint": 0, "vertex_from": "268", "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.402050598Z" + "timestamp": "2025-11-27T04:01:56.940581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502475, - "rtt_ms": 1.502475, + "rtt_ns": 1290208, + "rtt_ms": 1.290208, "checkpoint": 0, "vertex_from": "268", "vertex_to": "682", - "timestamp": "2025-11-27T01:21:58.402713076Z" + "timestamp": "2025-11-27T04:01:56.94076-08:00" }, { "operation": "add_edge", - "rtt_ns": 2060473, - "rtt_ms": 2.060473, + "rtt_ns": 1306458, + "rtt_ms": 1.306458, "checkpoint": 0, "vertex_from": "268", "vertex_to": "666", - "timestamp": "2025-11-27T01:21:58.403296854Z" + "timestamp": "2025-11-27T04:01:56.940791-08:00" }, { "operation": "add_edge", - "rtt_ns": 2330502, - "rtt_ms": 2.330502, + "rtt_ns": 1578375, + "rtt_ms": 1.578375, "checkpoint": 0, "vertex_from": "268", "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.403343254Z" + "timestamp": "2025-11-27T04:01:56.941032-08:00" }, { "operation": "add_edge", - "rtt_ns": 2124943, - "rtt_ms": 2.124943, + "rtt_ns": 1547500, + "rtt_ms": 1.5475, "checkpoint": 0, "vertex_from": "268", "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.403380694Z" + "timestamp": "2025-11-27T04:01:56.941037-08:00" }, { "operation": "add_edge", - "rtt_ns": 2075673, - "rtt_ms": 2.075673, + "rtt_ns": 1694416, + "rtt_ms": 1.694416, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.403400984Z" + "vertex_to": "811", + "timestamp": "2025-11-27T04:01:56.941113-08:00" }, { "operation": "add_edge", - "rtt_ns": 2133412, - "rtt_ms": 2.133412, + "rtt_ns": 1671167, + "rtt_ms": 1.671167, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.403435833Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.94117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558584, - "rtt_ms": 1.558584, + "rtt_ns": 1388125, + "rtt_ms": 1.388125, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.403457743Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.941631-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177722, - "rtt_ms": 2.177722, + "rtt_ns": 1076750, + "rtt_ms": 1.07675, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.403460063Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.941659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649044, - "rtt_ms": 1.649044, + "rtt_ns": 1147167, + "rtt_ms": 1.147167, "checkpoint": 0, "vertex_from": "268", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.403531523Z" + "timestamp": "2025-11-27T04:01:56.941661-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489855, - "rtt_ms": 1.489855, + "rtt_ns": 1475125, + "rtt_ms": 1.475125, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.403542423Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.941737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589755, - "rtt_ms": 1.589755, + "rtt_ns": 1169084, + "rtt_ms": 1.169084, "checkpoint": 0, "vertex_from": "268", "vertex_to": "897", - "timestamp": "2025-11-27T01:21:58.404304531Z" + "timestamp": "2025-11-27T04:01:56.941963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193787, - "rtt_ms": 1.193787, + "rtt_ns": 1615458, + "rtt_ms": 1.615458, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.40463044Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.942376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418345, - "rtt_ms": 1.418345, + "rtt_ns": 1281041, + "rtt_ms": 1.281041, "checkpoint": 0, "vertex_from": "268", "vertex_to": "643", - "timestamp": "2025-11-27T01:21:58.404820689Z" + "timestamp": "2025-11-27T04:01:56.942453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583045, - "rtt_ms": 1.583045, + "rtt_ns": 1341209, + "rtt_ms": 1.341209, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "293", - "timestamp": "2025-11-27T01:21:58.404881959Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:56.942455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611104, - "rtt_ms": 1.611104, + "rtt_ns": 1436417, + "rtt_ms": 1.436417, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:58.404992818Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.942474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471385, - "rtt_ms": 1.471385, + "rtt_ns": 1691625, + "rtt_ms": 1.691625, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.405014708Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:56.942726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212936, - "rtt_ms": 1.212936, + "rtt_ns": 1033333, + "rtt_ms": 1.033333, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:58.405523317Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:56.942771-08:00" }, { "operation": "add_edge", - "rtt_ns": 2029204, - "rtt_ms": 2.029204, + "rtt_ns": 1277000, + "rtt_ms": 1.277, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "796", - "timestamp": "2025-11-27T01:21:58.405562167Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.94291-08:00" }, { "operation": "add_edge", - "rtt_ns": 991316, - "rtt_ms": 0.991316, + "rtt_ns": 1578000, + "rtt_ms": 1.578, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.405622706Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:56.94324-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169793, - "rtt_ms": 2.169793, + "rtt_ns": 1637334, + "rtt_ms": 1.637334, "checkpoint": 0, "vertex_from": "268", "vertex_to": "406", - "timestamp": "2025-11-27T01:21:58.405628576Z" + "timestamp": "2025-11-27T04:01:56.943298-08:00" }, { "operation": "add_edge", - "rtt_ns": 2330262, - "rtt_ms": 2.330262, + "rtt_ns": 1519916, + "rtt_ms": 1.519916, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.405674236Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.943485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251193, - "rtt_ms": 2.251193, + "rtt_ns": 1372250, + "rtt_ms": 1.37225, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "323", - "timestamp": "2025-11-27T01:21:58.405712526Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:56.943828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528035, - "rtt_ms": 1.528035, + "rtt_ns": 1417584, + "rtt_ms": 1.417584, "checkpoint": 0, "vertex_from": "268", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.406411364Z" + "timestamp": "2025-11-27T04:01:56.943893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619905, - "rtt_ms": 1.619905, + "rtt_ns": 1732000, + "rtt_ms": 1.732, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "540", - "timestamp": "2025-11-27T01:21:58.406442584Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:56.944109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788784, - "rtt_ms": 1.788784, + "rtt_ns": 1391000, + "rtt_ms": 1.391, "checkpoint": 0, - "vertex_from": "269", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.407352181Z" + "vertex_from": "268", + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:56.944163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872474, - "rtt_ms": 1.872474, + "rtt_ns": 1727292, + "rtt_ms": 1.727292, "checkpoint": 0, - "vertex_from": "269", + "vertex_from": "268", "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.40758586Z" + "timestamp": "2025-11-27T04:01:56.944183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1968724, - "rtt_ms": 1.968724, + "rtt_ns": 1458625, + "rtt_ms": 1.458625, "checkpoint": 0, - "vertex_from": "269", - "vertex_to": "272", - "timestamp": "2025-11-27T01:21:58.40759239Z" + "vertex_from": "268", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:56.944186-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579152, - "rtt_ms": 2.579152, + "rtt_ns": 1303750, + "rtt_ms": 1.30375, "checkpoint": 0, "vertex_from": "268", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.40759645Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:56.944216-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1235417, + "rtt_ms": 1.235417, + "checkpoint": 0, + "vertex_from": "269", + "vertex_to": "272", + "timestamp": "2025-11-27T04:01:56.944535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1976974, - "rtt_ms": 1.976974, + "rtt_ns": 1085333, + "rtt_ms": 1.085333, "checkpoint": 0, "vertex_from": "269", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.40760712Z" + "timestamp": "2025-11-27T04:01:56.944572-08:00" }, { "operation": "add_edge", - "rtt_ns": 2644312, - "rtt_ms": 2.644312, + "rtt_ns": 1548292, + "rtt_ms": 1.548292, "checkpoint": 0, - "vertex_from": "268", - "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.40763824Z" + "vertex_from": "269", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.944791-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206633, - "rtt_ms": 2.206633, + "rtt_ns": 1095292, + "rtt_ms": 1.095292, "checkpoint": 0, - "vertex_from": "268", - "vertex_to": "752", - "timestamp": "2025-11-27T01:21:58.40773085Z" + "vertex_from": "269", + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:56.94526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2088234, - "rtt_ms": 2.088234, + "rtt_ns": 1618916, + "rtt_ms": 1.618916, "checkpoint": 0, "vertex_from": "269", "vertex_to": "838", - "timestamp": "2025-11-27T01:21:58.40776433Z" + "timestamp": "2025-11-27T04:01:56.94545-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779614, - "rtt_ms": 1.779614, + "rtt_ns": 1557958, + "rtt_ms": 1.557958, "checkpoint": 0, "vertex_from": "269", - "vertex_to": "804", - "timestamp": "2025-11-27T01:21:58.408192458Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.945452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834764, - "rtt_ms": 1.834764, + "rtt_ns": 1525417, + "rtt_ms": 1.525417, "checkpoint": 0, "vertex_from": "269", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:58.408278658Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.945708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289246, - "rtt_ms": 1.289246, + "rtt_ns": 1683542, + "rtt_ms": 1.683542, + "checkpoint": 0, + "vertex_from": "269", + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:56.945794-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1623500, + "rtt_ms": 1.6235, "checkpoint": 0, "vertex_from": "269", "vertex_to": "849", - "timestamp": "2025-11-27T01:21:58.408876656Z" + "timestamp": "2025-11-27T04:01:56.945811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356396, - "rtt_ms": 1.356396, + "rtt_ns": 1301667, + "rtt_ms": 1.301667, "checkpoint": 0, "vertex_from": "270", "vertex_to": "802", - "timestamp": "2025-11-27T01:21:58.408954956Z" + "timestamp": "2025-11-27T04:01:56.945838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1698165, - "rtt_ms": 1.698165, + "rtt_ns": 1528667, + "rtt_ms": 1.528667, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.409337555Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.946102-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084133, - "rtt_ms": 2.084133, + "rtt_ns": 1898541, + "rtt_ms": 1.898541, "checkpoint": 0, - "vertex_from": "269", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.409437824Z" + "vertex_from": "270", + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.946117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912134, - "rtt_ms": 1.912134, + "rtt_ns": 1338750, + "rtt_ms": 1.33875, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.409523794Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.94613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792154, - "rtt_ms": 1.792154, + "rtt_ns": 1610166, + "rtt_ms": 1.610166, "checkpoint": 0, "vertex_from": "270", "vertex_to": "946", - "timestamp": "2025-11-27T01:21:58.409557584Z" + "timestamp": "2025-11-27T04:01:56.947062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032094, - "rtt_ms": 2.032094, + "rtt_ns": 1438917, + "rtt_ms": 1.438917, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.409626084Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.947233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898064, - "rtt_ms": 1.898064, + "rtt_ns": 2068583, + "rtt_ms": 2.068583, "checkpoint": 0, "vertex_from": "270", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.409630724Z" + "timestamp": "2025-11-27T04:01:56.947329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395056, - "rtt_ms": 1.395056, + "rtt_ns": 1537333, + "rtt_ms": 1.537333, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.409675144Z" + "vertex_to": "824", + "timestamp": "2025-11-27T04:01:56.947349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520536, - "rtt_ms": 1.520536, + "rtt_ns": 1658042, + "rtt_ms": 1.658042, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.409714354Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.947368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594525, - "rtt_ms": 1.594525, + "rtt_ns": 1645125, + "rtt_ms": 1.645125, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.410474401Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.947484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227606, - "rtt_ms": 1.227606, + "rtt_ns": 2043834, + "rtt_ms": 2.043834, "checkpoint": 0, "vertex_from": "270", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.410568201Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.947497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632195, - "rtt_ms": 1.632195, + "rtt_ns": 1553375, + "rtt_ms": 1.553375, "checkpoint": 0, - "vertex_from": "270", - "vertex_to": "824", - "timestamp": "2025-11-27T01:21:58.410589121Z" + "vertex_from": "271", + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.947658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113007, - "rtt_ms": 1.113007, + "rtt_ns": 1700375, + "rtt_ms": 1.700375, "checkpoint": 0, "vertex_from": "271", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.410638041Z" + "timestamp": "2025-11-27T04:01:56.947818-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108036, - "rtt_ms": 1.108036, + "rtt_ns": 1736250, + "rtt_ms": 1.73625, "checkpoint": 0, "vertex_from": "271", "vertex_to": "401", - "timestamp": "2025-11-27T01:21:58.41066927Z" + "timestamp": "2025-11-27T04:01:56.947868-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1219292, + "rtt_ms": 1.219292, + "checkpoint": 0, + "vertex_from": "272", + "vertex_to": "739", + "timestamp": "2025-11-27T04:01:56.948454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329286, - "rtt_ms": 1.329286, + "rtt_ns": 1507584, + "rtt_ms": 1.507584, "checkpoint": 0, "vertex_from": "271", "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.41095712Z" + "timestamp": "2025-11-27T04:01:56.94857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353565, - "rtt_ms": 1.353565, + "rtt_ns": 1611334, + "rtt_ms": 1.611334, "checkpoint": 0, "vertex_from": "272", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.411070239Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1710245, - "rtt_ms": 1.710245, - "checkpoint": 0, - "vertex_from": "271", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.411150009Z" + "timestamp": "2025-11-27T04:01:56.948962-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518835, - "rtt_ms": 1.518835, + "rtt_ns": 1158917, + "rtt_ms": 1.158917, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "739", - "timestamp": "2025-11-27T01:21:58.411151559Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:56.948978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482295, - "rtt_ms": 1.482295, + "rtt_ns": 1515333, + "rtt_ms": 1.515333, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.411159269Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.949013-08:00" }, { "operation": "add_edge", - "rtt_ns": 745627, - "rtt_ms": 0.745627, + "rtt_ns": 1784458, + "rtt_ms": 1.784458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:58.411316028Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.949117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252656, - "rtt_ms": 1.252656, + "rtt_ns": 1763042, + "rtt_ms": 1.763042, "checkpoint": 0, "vertex_from": "272", "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.411729297Z" + "timestamp": "2025-11-27T04:01:56.949131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484695, - "rtt_ms": 1.484695, + "rtt_ns": 1476541, + "rtt_ms": 1.476541, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.412076056Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.949136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408396, - "rtt_ms": 1.408396, + "rtt_ns": 1756583, + "rtt_ms": 1.756583, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.412078966Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:56.949242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440605, - "rtt_ms": 1.440605, + "rtt_ns": 1207958, + "rtt_ms": 1.207958, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.412080836Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:56.949663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154906, - "rtt_ms": 1.154906, + "rtt_ns": 1947083, + "rtt_ms": 1.947083, "checkpoint": 0, "vertex_from": "272", "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.412114576Z" + "timestamp": "2025-11-27T04:01:56.949816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745714, - "rtt_ms": 1.745714, + "rtt_ns": 1285833, + "rtt_ms": 1.285833, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "790", - "timestamp": "2025-11-27T01:21:58.412899813Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:01:56.950265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794364, - "rtt_ms": 1.794364, + "rtt_ns": 1767375, + "rtt_ms": 1.767375, "checkpoint": 0, "vertex_from": "272", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.412946413Z" + "timestamp": "2025-11-27T04:01:56.950339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1787984, - "rtt_ms": 1.787984, + "rtt_ns": 1428208, + "rtt_ms": 1.428208, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "539", - "timestamp": "2025-11-27T01:21:58.412949713Z" + "vertex_to": "790", + "timestamp": "2025-11-27T04:01:56.950391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1646705, - "rtt_ms": 1.646705, + "rtt_ns": 1386250, + "rtt_ms": 1.38625, "checkpoint": 0, "vertex_from": "272", "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.412963953Z" + "timestamp": "2025-11-27T04:01:56.9504-08:00" }, { "operation": "add_edge", - "rtt_ns": 906477, - "rtt_ms": 0.906477, + "rtt_ns": 1602958, + "rtt_ms": 1.602958, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.412987223Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:56.950722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267746, - "rtt_ms": 1.267746, + "rtt_ns": 1707459, + "rtt_ms": 1.707459, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "352", - "timestamp": "2025-11-27T01:21:58.412998483Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.950844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931954, - "rtt_ms": 1.931954, + "rtt_ns": 1714250, + "rtt_ms": 1.71425, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "961", - "timestamp": "2025-11-27T01:21:58.413003773Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:56.950847-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128906, - "rtt_ms": 1.128906, + "rtt_ns": 1610000, + "rtt_ms": 1.61, "checkpoint": 0, "vertex_from": "272", "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.413211192Z" + "timestamp": "2025-11-27T04:01:56.950853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641205, - "rtt_ms": 1.641205, + "rtt_ns": 1372458, + "rtt_ms": 1.372458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.413757411Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.951638-08:00" }, { "operation": "add_edge", - "rtt_ns": 938377, - "rtt_ms": 0.938377, + "rtt_ns": 2207250, + "rtt_ms": 2.20725, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "789", - "timestamp": "2025-11-27T01:21:58.41392721Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.951871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013307, - "rtt_ms": 1.013307, + "rtt_ns": 1492542, + "rtt_ms": 1.492542, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "610", - "timestamp": "2025-11-27T01:21:58.41396442Z" + "vertex_to": "278", + "timestamp": "2025-11-27T04:01:56.951885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168527, - "rtt_ms": 1.168527, + "rtt_ns": 2265834, + "rtt_ms": 2.265834, "checkpoint": 0, "vertex_from": "272", "vertex_to": "450", - "timestamp": "2025-11-27T01:21:58.41407003Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1992414, - "rtt_ms": 1.992414, - "checkpoint": 0, - "vertex_from": "272", - "vertex_to": "595", - "timestamp": "2025-11-27T01:21:58.41407082Z" + "timestamp": "2025-11-27T04:01:56.952083-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141027, - "rtt_ms": 1.141027, + "rtt_ns": 1997459, + "rtt_ms": 1.997459, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "278", - "timestamp": "2025-11-27T01:21:58.41410752Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:56.952339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269836, - "rtt_ms": 1.269836, + "rtt_ns": 1615709, + "rtt_ms": 1.615709, "checkpoint": 0, "vertex_from": "272", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.414270939Z" + "timestamp": "2025-11-27T04:01:56.952339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814684, - "rtt_ms": 1.814684, + "rtt_ns": 1950250, + "rtt_ms": 1.95025, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.414765057Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:01:56.952352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158326, - "rtt_ms": 1.158326, + "rtt_ns": 2362250, + "rtt_ms": 2.36225, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "681", - "timestamp": "2025-11-27T01:21:58.414918067Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:56.953208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940854, - "rtt_ms": 1.940854, + "rtt_ns": 2405541, + "rtt_ms": 2.405541, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.414946797Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:56.953261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829825, - "rtt_ms": 1.829825, + "rtt_ns": 2079833, + "rtt_ms": 2.079833, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "656", - "timestamp": "2025-11-27T01:21:58.415042257Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.953719-08:00" }, { "operation": "add_edge", - "rtt_ns": 2177373, - "rtt_ms": 2.177373, + "rtt_ns": 1627500, + "rtt_ms": 1.6275, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.416106413Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.953969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2335592, - "rtt_ms": 2.335592, + "rtt_ns": 1913333, + "rtt_ms": 1.913333, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "517", - "timestamp": "2025-11-27T01:21:58.416406662Z" + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:56.953997-08:00" }, { "operation": "add_edge", - "rtt_ns": 2468272, - "rtt_ms": 2.468272, + "rtt_ns": 1661500, + "rtt_ms": 1.6615, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "321", - "timestamp": "2025-11-27T01:21:58.416541182Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:56.954003-08:00" }, { "operation": "add_edge", - "rtt_ns": 2771251, - "rtt_ms": 2.771251, + "rtt_ns": 3173583, + "rtt_ms": 3.173583, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "329", - "timestamp": "2025-11-27T01:21:58.416737091Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:56.954023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1818474, - "rtt_ms": 1.818474, + "rtt_ns": 2241458, + "rtt_ms": 2.241458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:58.416767601Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:56.954127-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802494, - "rtt_ms": 1.802494, + "rtt_ns": 2271000, + "rtt_ms": 2.271, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "408", - "timestamp": "2025-11-27T01:21:58.416846301Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:56.954143-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118204, - "rtt_ms": 2.118204, + "rtt_ns": 1932250, + "rtt_ms": 1.93225, "checkpoint": 0, "vertex_from": "272", "vertex_to": "578", - "timestamp": "2025-11-27T01:21:58.416885161Z" + "timestamp": "2025-11-27T04:01:56.954286-08:00" }, { "operation": "add_edge", - "rtt_ns": 3270059, - "rtt_ms": 3.270059, + "rtt_ns": 1528417, + "rtt_ms": 1.528417, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.417542508Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:56.955249-08:00" }, { "operation": "add_edge", - "rtt_ns": 2681211, - "rtt_ms": 2.681211, + "rtt_ns": 2094500, + "rtt_ms": 2.0945, "checkpoint": 0, "vertex_from": "272", "vertex_to": "418", - "timestamp": "2025-11-27T01:21:58.417600988Z" + "timestamp": "2025-11-27T04:01:56.955305-08:00" }, { "operation": "add_edge", - "rtt_ns": 3610858, - "rtt_ms": 3.610858, + "rtt_ns": 1333709, + "rtt_ms": 1.333709, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:58.417719888Z" + "vertex_to": "273", + "timestamp": "2025-11-27T04:01:56.955332-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636465, - "rtt_ms": 1.636465, + "rtt_ns": 2130208, + "rtt_ms": 2.130208, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "779", - "timestamp": "2025-11-27T01:21:58.417746068Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:56.955393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515875, - "rtt_ms": 1.515875, + "rtt_ns": 1392750, + "rtt_ms": 1.39275, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "273", - "timestamp": "2025-11-27T01:21:58.417924947Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:56.955417-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054013, - "rtt_ms": 2.054013, + "rtt_ns": 1488166, + "rtt_ms": 1.488166, "checkpoint": 0, "vertex_from": "272", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.418600465Z" + "timestamp": "2025-11-27T04:01:56.955493-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875194, - "rtt_ms": 1.875194, + "rtt_ns": 1575666, + "rtt_ms": 1.575666, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "515", - "timestamp": "2025-11-27T01:21:58.418644375Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:01:56.955547-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928734, - "rtt_ms": 1.928734, + "rtt_ns": 1261917, + "rtt_ms": 1.261917, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "519", - "timestamp": "2025-11-27T01:21:58.418668235Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:01:56.955549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272816, - "rtt_ms": 1.272816, + "rtt_ns": 1521792, + "rtt_ms": 1.521792, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:58.418818914Z" + "vertex_to": "281", + "timestamp": "2025-11-27T04:01:56.955665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965593, - "rtt_ms": 1.965593, + "rtt_ns": 1966959, + "rtt_ms": 1.966959, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "583", - "timestamp": "2025-11-27T01:21:58.418852384Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:56.956095-08:00" }, { "operation": "add_edge", - "rtt_ns": 2039063, - "rtt_ms": 2.039063, + "rtt_ns": 1568916, + "rtt_ms": 1.568916, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "281", - "timestamp": "2025-11-27T01:21:58.418886974Z" + "vertex_to": "727", + "timestamp": "2025-11-27T04:01:56.956963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311096, - "rtt_ms": 1.311096, + "rtt_ns": 1656708, + "rtt_ms": 1.656708, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.418918714Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:01:56.95699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134646, - "rtt_ms": 1.134646, + "rtt_ns": 1335291, + "rtt_ms": 1.335291, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:58.419061273Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:56.957001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347615, - "rtt_ms": 1.347615, + "rtt_ns": 1906166, + "rtt_ms": 1.906166, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "727", - "timestamp": "2025-11-27T01:21:58.419095573Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.957454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1440105, - "rtt_ms": 1.440105, + "rtt_ns": 2052583, + "rtt_ms": 2.052583, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "908", - "timestamp": "2025-11-27T01:21:58.419162133Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:56.957472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298515, - "rtt_ms": 1.298515, + "rtt_ns": 1938750, + "rtt_ms": 1.93875, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "808", - "timestamp": "2025-11-27T01:21:58.41990116Z" + "vertex_to": "276", + "timestamp": "2025-11-27T04:01:56.957488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1304325, - "rtt_ms": 1.304325, + "rtt_ns": 2009833, + "rtt_ms": 2.009833, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.41994984Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:56.957503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064026, - "rtt_ms": 1.064026, + "rtt_ns": 3127000, + "rtt_ms": 3.127, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "552", - "timestamp": "2025-11-27T01:21:58.41998406Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:56.958377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337915, - "rtt_ms": 1.337915, + "rtt_ns": 3174416, + "rtt_ms": 3.174416, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.42000742Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.958482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152766, - "rtt_ms": 1.152766, + "rtt_ns": 2340458, + "rtt_ms": 2.340458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "584", - "timestamp": "2025-11-27T01:21:58.42000805Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:56.959331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275036, - "rtt_ms": 1.275036, + "rtt_ns": 3251125, + "rtt_ms": 3.251125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "832", - "timestamp": "2025-11-27T01:21:58.42009582Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:56.959349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209256, - "rtt_ms": 1.209256, + "rtt_ns": 2520542, + "rtt_ms": 2.520542, "checkpoint": 0, "vertex_from": "272", "vertex_to": "549", - "timestamp": "2025-11-27T01:21:58.42009772Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1077137, - "rtt_ms": 1.077137, - "checkpoint": 0, - "vertex_from": "272", - "vertex_to": "523", - "timestamp": "2025-11-27T01:21:58.42017375Z" + "timestamp": "2025-11-27T04:01:56.959485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129857, - "rtt_ms": 1.129857, + "rtt_ns": 1999041, + "rtt_ms": 1.999041, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "324", - "timestamp": "2025-11-27T01:21:58.42019242Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:56.959503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597175, - "rtt_ms": 1.597175, + "rtt_ns": 2035792, + "rtt_ms": 2.035792, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "360", - "timestamp": "2025-11-27T01:21:58.420760488Z" + "vertex_to": "551", + "timestamp": "2025-11-27T04:01:56.959525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287176, - "rtt_ms": 1.287176, + "rtt_ns": 2562458, + "rtt_ms": 2.562458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "579", - "timestamp": "2025-11-27T01:21:58.421384746Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:56.959564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524505, - "rtt_ms": 1.524505, + "rtt_ns": 2212792, + "rtt_ms": 2.212792, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:58.421475845Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:56.959668-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1491515, - "rtt_ms": 1.491515, + "rtt_ns": 1802708, + "rtt_ms": 1.802708, "checkpoint": 0, "vertex_from": "478", - "timestamp": "2025-11-27T01:21:58.421479485Z" + "timestamp": "2025-11-27T04:01:56.960185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676375, - "rtt_ms": 1.676375, + "rtt_ns": 1906084, + "rtt_ms": 1.906084, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "551", - "timestamp": "2025-11-27T01:21:58.421579295Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:56.96039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419655, - "rtt_ms": 1.419655, + "rtt_ns": 5882958, + "rtt_ms": 5.882958, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:58.421613615Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.965217-08:00" }, { "operation": "add_edge", - "rtt_ns": 834587, - "rtt_ms": 0.834587, + "rtt_ns": 5756417, + "rtt_ms": 5.756417, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "860", - "timestamp": "2025-11-27T01:21:58.422221013Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:56.965242-08:00" }, { "operation": "add_edge", - "rtt_ns": 2201133, - "rtt_ms": 2.201133, + "rtt_ns": 6014250, + "rtt_ms": 6.01425, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "488", - "timestamp": "2025-11-27T01:21:58.422376623Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:56.965364-08:00" }, { "operation": "add_edge", - "rtt_ns": 2465332, - "rtt_ms": 2.465332, + "rtt_ns": 5884042, + "rtt_ms": 5.884042, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.422475102Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:56.965388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2481402, - "rtt_ms": 2.481402, + "rtt_ns": 5815500, + "rtt_ms": 5.8155, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.422491922Z" + "vertex_to": "860", + "timestamp": "2025-11-27T04:01:56.965484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2403262, - "rtt_ms": 2.403262, + "rtt_ns": 5975541, + "rtt_ms": 5.975541, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "397", - "timestamp": "2025-11-27T01:21:58.422502332Z" + "vertex_to": "291", + "timestamp": "2025-11-27T04:01:56.965541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742354, - "rtt_ms": 1.742354, + "rtt_ns": 6015292, + "rtt_ms": 6.015292, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "291", - "timestamp": "2025-11-27T01:21:58.422504622Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:56.965582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824835, - "rtt_ms": 1.824835, + "rtt_ns": 8532125, + "rtt_ms": 8.532125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "712", - "timestamp": "2025-11-27T01:21:58.42330213Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:56.966005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687445, - "rtt_ms": 1.687445, + "rtt_ns": 5742792, + "rtt_ms": 5.742792, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.42331046Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:56.966133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088097, - "rtt_ms": 1.088097, + "rtt_ns": 6384875, + "rtt_ms": 6.384875, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.42331169Z" + "vertex_to": "478", + "timestamp": "2025-11-27T04:01:56.96657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871485, - "rtt_ms": 1.871485, + "rtt_ns": 1343209, + "rtt_ms": 1.343209, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "478", - "timestamp": "2025-11-27T01:21:58.42335148Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.966587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198926, - "rtt_ms": 1.198926, + "rtt_ns": 1861458, + "rtt_ms": 1.861458, "checkpoint": 0, "vertex_from": "272", "vertex_to": "463", - "timestamp": "2025-11-27T01:21:58.423576879Z" + "timestamp": "2025-11-27T04:01:56.96725-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022654, - "rtt_ms": 2.022654, + "rtt_ns": 2049084, + "rtt_ms": 2.049084, "checkpoint": 0, "vertex_from": "272", "vertex_to": "554", - "timestamp": "2025-11-27T01:21:58.423603149Z" + "timestamp": "2025-11-27T04:01:56.967269-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131927, - "rtt_ms": 1.131927, + "rtt_ns": 2174833, + "rtt_ms": 2.174833, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "303", - "timestamp": "2025-11-27T01:21:58.423640019Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.96754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165577, - "rtt_ms": 1.165577, + "rtt_ns": 2007417, + "rtt_ms": 2.007417, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "457", - "timestamp": "2025-11-27T01:21:58.423669479Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:56.967557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307496, - "rtt_ms": 1.307496, + "rtt_ns": 1423417, + "rtt_ms": 1.423417, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "326", - "timestamp": "2025-11-27T01:21:58.423784838Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:01:56.967558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1292276, - "rtt_ms": 1.292276, + "rtt_ns": 2226250, + "rtt_ms": 2.22625, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "588", - "timestamp": "2025-11-27T01:21:58.423785378Z" + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:56.967711-08:00" }, { "operation": "add_edge", - "rtt_ns": 539428, - "rtt_ms": 0.539428, + "rtt_ns": 1751375, + "rtt_ms": 1.751375, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "948", - "timestamp": "2025-11-27T01:21:58.423851488Z" + "vertex_to": "303", + "timestamp": "2025-11-27T04:01:56.967758-08:00" }, { "operation": "add_edge", - "rtt_ns": 753447, - "rtt_ms": 0.753447, + "rtt_ns": 2054541, + "rtt_ms": 2.054541, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "929", - "timestamp": "2025-11-27T01:21:58.424057687Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.968642-08:00" }, { "operation": "add_edge", - "rtt_ns": 755027, - "rtt_ms": 0.755027, + "rtt_ns": 3145167, + "rtt_ms": 3.145167, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.424107757Z" + "vertex_to": "457", + "timestamp": "2025-11-27T04:01:56.968729-08:00" }, { "operation": "add_edge", - "rtt_ns": 943787, - "rtt_ms": 0.943787, + "rtt_ns": 1514750, + "rtt_ms": 1.51475, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "776", - "timestamp": "2025-11-27T01:21:58.424585516Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:56.968766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006267, - "rtt_ms": 1.006267, + "rtt_ns": 1240833, + "rtt_ms": 1.240833, "checkpoint": 0, "vertex_from": "272", "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.424611476Z" + "timestamp": "2025-11-27T04:01:56.968784-08:00" }, { "operation": "add_edge", - "rtt_ns": 964646, - "rtt_ms": 0.964646, + "rtt_ns": 1631250, + "rtt_ms": 1.63125, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "589", - "timestamp": "2025-11-27T01:21:58.424635755Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:56.968901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099666, - "rtt_ms": 1.099666, + "rtt_ns": 2355291, + "rtt_ms": 2.355291, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "581", - "timestamp": "2025-11-27T01:21:58.424677925Z" + "vertex_to": "948", + "timestamp": "2025-11-27T04:01:56.968927-08:00" }, { "operation": "add_edge", - "rtt_ns": 955817, - "rtt_ms": 0.955817, + "rtt_ns": 1564000, + "rtt_ms": 1.564, "checkpoint": 0, "vertex_from": "272", "vertex_to": "916", - "timestamp": "2025-11-27T01:21:58.424742115Z" + "timestamp": "2025-11-27T04:01:56.969276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448405, - "rtt_ms": 1.448405, + "rtt_ns": 1734750, + "rtt_ms": 1.73475, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.424762345Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:56.969307-08:00" }, { "operation": "add_edge", - "rtt_ns": 977117, - "rtt_ms": 0.977117, + "rtt_ns": 1558833, + "rtt_ms": 1.558833, "checkpoint": 0, "vertex_from": "272", "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.424763475Z" + "timestamp": "2025-11-27T04:01:56.969318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597075, - "rtt_ms": 1.597075, + "rtt_ns": 1794167, + "rtt_ms": 1.794167, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.425656062Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:56.969353-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820794, - "rtt_ms": 1.820794, + "rtt_ns": 1714791, + "rtt_ms": 1.714791, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "387", - "timestamp": "2025-11-27T01:21:58.425673482Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.970445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574035, - "rtt_ms": 1.574035, + "rtt_ns": 1678458, + "rtt_ms": 1.678458, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "547", - "timestamp": "2025-11-27T01:21:58.425683042Z" + "vertex_to": "489", + "timestamp": "2025-11-27T04:01:56.970463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014837, - "rtt_ms": 1.014837, + "rtt_ns": 1875709, + "rtt_ms": 1.875709, "checkpoint": 0, - "vertex_from": "273", - "vertex_to": "390", - "timestamp": "2025-11-27T01:21:58.425694302Z" + "vertex_from": "272", + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:56.970519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279696, - "rtt_ms": 1.279696, + "rtt_ns": 1595125, + "rtt_ms": 1.595125, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.426024571Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:56.970523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531576, - "rtt_ms": 1.531576, + "rtt_ns": 1702125, + "rtt_ms": 1.702125, "checkpoint": 0, - "vertex_from": "273", - "vertex_to": "708", - "timestamp": "2025-11-27T01:21:58.426169541Z" + "vertex_from": "272", + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.970606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679954, - "rtt_ms": 1.679954, + "rtt_ns": 1371917, + "rtt_ms": 1.371917, "checkpoint": 0, - "vertex_from": "272", - "vertex_to": "489", - "timestamp": "2025-11-27T01:21:58.4262698Z" + "vertex_from": "273", + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:56.970649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521675, - "rtt_ms": 1.521675, + "rtt_ns": 1411000, + "rtt_ms": 1.411, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.42628694Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.970719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699624, - "rtt_ms": 1.699624, + "rtt_ns": 1997000, + "rtt_ms": 1.997, "checkpoint": 0, "vertex_from": "272", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.42631335Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:56.970764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579435, - "rtt_ms": 1.579435, + "rtt_ns": 1476833, + "rtt_ms": 1.476833, "checkpoint": 0, "vertex_from": "273", "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.42634317Z" + "timestamp": "2025-11-27T04:01:56.970795-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1635459, + "rtt_ms": 1.635459, + "checkpoint": 0, + "vertex_from": "273", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.970991-08:00" }, { "operation": "add_edge", - "rtt_ns": 691628, - "rtt_ms": 0.691628, + "rtt_ns": 1417583, + "rtt_ms": 1.417583, "checkpoint": 0, "vertex_from": "273", "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.42638781Z" + "timestamp": "2025-11-27T04:01:56.971941-08:00" }, { "operation": "add_edge", - "rtt_ns": 767088, - "rtt_ms": 0.767088, + "rtt_ns": 1306375, + "rtt_ms": 1.306375, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "388", - "timestamp": "2025-11-27T01:21:58.42642468Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.972072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069807, - "rtt_ms": 1.069807, + "rtt_ns": 1689792, + "rtt_ms": 1.689792, "checkpoint": 0, "vertex_from": "273", "vertex_to": "276", - "timestamp": "2025-11-27T01:21:58.426754119Z" + "timestamp": "2025-11-27T04:01:56.972211-08:00" }, { "operation": "add_edge", - "rtt_ns": 849837, - "rtt_ms": 0.849837, + "rtt_ns": 1625083, + "rtt_ms": 1.625083, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "913", - "timestamp": "2025-11-27T01:21:58.426876148Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:56.972276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360616, - "rtt_ms": 1.360616, + "rtt_ns": 1715958, + "rtt_ms": 1.715958, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "582", - "timestamp": "2025-11-27T01:21:58.427036398Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:56.972323-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357186, - "rtt_ms": 1.357186, + "rtt_ns": 1423000, + "rtt_ms": 1.423, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.427645126Z" + "vertex_to": "285", + "timestamp": "2025-11-27T04:01:56.972415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479816, - "rtt_ms": 1.479816, + "rtt_ns": 1987542, + "rtt_ms": 1.987542, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "856", - "timestamp": "2025-11-27T01:21:58.427751136Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:56.972452-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525435, - "rtt_ms": 1.525435, + "rtt_ns": 1681916, + "rtt_ms": 1.681916, "checkpoint": 0, "vertex_from": "273", "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.427839365Z" + "timestamp": "2025-11-27T04:01:56.972478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684674, - "rtt_ms": 1.684674, + "rtt_ns": 2034834, + "rtt_ms": 2.034834, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "560", - "timestamp": "2025-11-27T01:21:58.427857175Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:56.972481-08:00" }, { "operation": "add_edge", - "rtt_ns": 999927, - "rtt_ms": 0.999927, + "rtt_ns": 1772375, + "rtt_ms": 1.772375, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:58.427878255Z" + "vertex_to": "856", + "timestamp": "2025-11-27T04:01:56.972492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485345, - "rtt_ms": 1.485345, + "rtt_ns": 1094209, + "rtt_ms": 1.094209, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.427911245Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.973418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159396, - "rtt_ms": 1.159396, + "rtt_ns": 1704000, + "rtt_ms": 1.704, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "302", - "timestamp": "2025-11-27T01:21:58.427914735Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.973776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588195, - "rtt_ms": 1.588195, + "rtt_ns": 1409416, + "rtt_ms": 1.409416, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "285", - "timestamp": "2025-11-27T01:21:58.427932355Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:56.973825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548565, - "rtt_ms": 1.548565, + "rtt_ns": 1924875, + "rtt_ms": 1.924875, "checkpoint": 0, "vertex_from": "273", "vertex_to": "372", - "timestamp": "2025-11-27T01:21:58.427937725Z" + "timestamp": "2025-11-27T04:01:56.973867-08:00" }, { "operation": "add_edge", - "rtt_ns": 891547, - "rtt_ms": 0.891547, + "rtt_ns": 1650583, + "rtt_ms": 1.650583, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "526", - "timestamp": "2025-11-27T01:21:58.428644593Z" + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:56.973928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625895, - "rtt_ms": 1.625895, + "rtt_ns": 1461959, + "rtt_ms": 1.461959, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.428664013Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:01:56.973943-08:00" }, { "operation": "add_edge", - "rtt_ns": 958617, - "rtt_ms": 0.958617, + "rtt_ns": 1517416, + "rtt_ms": 1.517416, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "522", - "timestamp": "2025-11-27T01:21:58.428799372Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.974011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1191456, - "rtt_ms": 1.191456, + "rtt_ns": 1628834, + "rtt_ms": 1.628834, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "580", - "timestamp": "2025-11-27T01:21:58.428837932Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:56.974082-08:00" }, { "operation": "add_edge", - "rtt_ns": 931857, - "rtt_ms": 0.931857, + "rtt_ns": 1670875, + "rtt_ms": 1.670875, "checkpoint": 0, - "vertex_from": "274", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.428870892Z" + "vertex_from": "273", + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:56.97415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080556, - "rtt_ms": 1.080556, + "rtt_ns": 1996083, + "rtt_ms": 1.996083, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.428992631Z" + "vertex_to": "302", + "timestamp": "2025-11-27T04:01:56.974208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133806, - "rtt_ms": 1.133806, + "rtt_ns": 1871292, + "rtt_ms": 1.871292, "checkpoint": 0, "vertex_from": "273", - "vertex_to": "678", - "timestamp": "2025-11-27T01:21:58.428992851Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.975291-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166686, - "rtt_ms": 1.166686, + "rtt_ns": 2403792, + "rtt_ms": 2.403792, "checkpoint": 0, "vertex_from": "273", "vertex_to": "596", - "timestamp": "2025-11-27T01:21:58.429083081Z" + "timestamp": "2025-11-27T04:01:56.976181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235666, - "rtt_ms": 1.235666, + "rtt_ns": 2143250, + "rtt_ms": 2.14325, "checkpoint": 0, - "vertex_from": "273", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.429115021Z" + "vertex_from": "274", + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:56.976226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644904, - "rtt_ms": 1.644904, + "rtt_ns": 2391208, + "rtt_ms": 2.391208, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.429578599Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.976259-08:00" }, { "operation": "add_edge", - "rtt_ns": 951907, - "rtt_ms": 0.951907, + "rtt_ns": 2411208, + "rtt_ms": 2.411208, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "649", - "timestamp": "2025-11-27T01:21:58.429791449Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:56.976355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158176, - "rtt_ms": 1.158176, + "rtt_ns": 2164917, + "rtt_ms": 2.164917, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.429804759Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:56.976374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249826, - "rtt_ms": 1.249826, + "rtt_ns": 2550125, + "rtt_ms": 2.550125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "518", - "timestamp": "2025-11-27T01:21:58.430051948Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.976376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1242156, - "rtt_ms": 1.242156, + "rtt_ns": 2539125, + "rtt_ms": 2.539125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "964", - "timestamp": "2025-11-27T01:21:58.430114348Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.976467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150807, - "rtt_ms": 1.150807, + "rtt_ns": 2328000, + "rtt_ms": 2.328, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "418", - "timestamp": "2025-11-27T01:21:58.430145068Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:01:56.976479-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105866, - "rtt_ms": 1.105866, + "rtt_ns": 2526500, + "rtt_ms": 2.5265, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "548", - "timestamp": "2025-11-27T01:21:58.430190357Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:56.976538-08:00" }, { "operation": "add_edge", - "rtt_ns": 946836, - "rtt_ms": 0.946836, + "rtt_ns": 1269333, + "rtt_ms": 1.269333, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "833", - "timestamp": "2025-11-27T01:21:58.430752875Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:56.97775-08:00" }, { "operation": "add_edge", - "rtt_ns": 982316, - "rtt_ms": 0.982316, + "rtt_ns": 1572125, + "rtt_ms": 1.572125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "449", - "timestamp": "2025-11-27T01:21:58.430775445Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:56.977755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737444, - "rtt_ms": 1.737444, + "rtt_ns": 1380666, + "rtt_ms": 1.380666, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.430853495Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:56.977758-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014964, - "rtt_ms": 2.014964, + "rtt_ns": 1246417, + "rtt_ms": 1.246417, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "768", - "timestamp": "2025-11-27T01:21:58.431010175Z" + "vertex_to": "277", + "timestamp": "2025-11-27T04:01:56.977786-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376153, - "rtt_ms": 2.376153, + "rtt_ns": 1376500, + "rtt_ms": 1.3765, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "613", - "timestamp": "2025-11-27T01:21:58.431041795Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:01:56.977844-08:00" }, { "operation": "add_edge", - "rtt_ns": 2010384, - "rtt_ms": 2.010384, + "rtt_ns": 1613541, + "rtt_ms": 1.613541, "checkpoint": 0, "vertex_from": "274", "vertex_to": "416", - "timestamp": "2025-11-27T01:21:58.431590203Z" + "timestamp": "2025-11-27T04:01:56.977874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1602214, - "rtt_ms": 1.602214, + "rtt_ns": 1726042, + "rtt_ms": 1.726042, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "393", - "timestamp": "2025-11-27T01:21:58.431655702Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.977952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638444, - "rtt_ms": 1.638444, + "rtt_ns": 1617125, + "rtt_ms": 1.617125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "573", - "timestamp": "2025-11-27T01:21:58.431754592Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:56.977973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639604, - "rtt_ms": 1.639604, + "rtt_ns": 1601625, + "rtt_ms": 1.601625, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "672", - "timestamp": "2025-11-27T01:21:58.431785822Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:56.977979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448865, - "rtt_ms": 1.448865, + "rtt_ns": 2685250, + "rtt_ms": 2.68525, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.43249141Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:56.977979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2408692, - "rtt_ms": 2.408692, + "rtt_ns": 1018667, + "rtt_ms": 1.018667, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "277", - "timestamp": "2025-11-27T01:21:58.432600519Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:56.978992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903214, - "rtt_ms": 1.903214, + "rtt_ns": 1295416, + "rtt_ms": 1.295416, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.432658759Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.979082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063107, - "rtt_ms": 1.063107, + "rtt_ns": 1471125, + "rtt_ms": 1.471125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.432721049Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.97923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138066, - "rtt_ms": 1.138066, + "rtt_ns": 1454583, + "rtt_ms": 1.454583, "checkpoint": 0, "vertex_from": "274", "vertex_to": "772", - "timestamp": "2025-11-27T01:21:58.432729189Z" + "timestamp": "2025-11-27T04:01:56.979329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1984214, - "rtt_ms": 1.984214, + "rtt_ns": 1516458, + "rtt_ms": 1.516458, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.432839149Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:56.979496-08:00" }, { "operation": "add_edge", - "rtt_ns": 2112904, - "rtt_ms": 2.112904, + "rtt_ns": 1813125, + "rtt_ms": 1.813125, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.432890559Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:56.979793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137366, - "rtt_ms": 1.137366, + "rtt_ns": 1905166, + "rtt_ms": 1.905166, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "356", - "timestamp": "2025-11-27T01:21:58.432924308Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.979858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926553, - "rtt_ms": 1.926553, + "rtt_ns": 2030209, + "rtt_ms": 2.030209, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.432937988Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.979875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706995, - "rtt_ms": 1.706995, + "rtt_ns": 2152750, + "rtt_ms": 2.15275, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "664", - "timestamp": "2025-11-27T01:21:58.433463867Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.979904-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338696, - "rtt_ms": 1.338696, + "rtt_ns": 2239042, + "rtt_ms": 2.239042, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "653", - "timestamp": "2025-11-27T01:21:58.433941085Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.979995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377546, - "rtt_ms": 1.377546, + "rtt_ns": 1721875, + "rtt_ms": 1.721875, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "782", - "timestamp": "2025-11-27T01:21:58.434037485Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:01:56.980715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361986, - "rtt_ms": 1.361986, + "rtt_ns": 1635375, + "rtt_ms": 1.635375, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.434092335Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:56.980719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284836, - "rtt_ms": 1.284836, + "rtt_ns": 1558459, + "rtt_ms": 1.558459, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "480", - "timestamp": "2025-11-27T01:21:58.434125075Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.980888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437596, - "rtt_ms": 1.437596, + "rtt_ns": 1686209, + "rtt_ms": 1.686209, "checkpoint": 0, "vertex_from": "274", "vertex_to": "546", - "timestamp": "2025-11-27T01:21:58.434160405Z" + "timestamp": "2025-11-27T04:01:56.980917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324055, - "rtt_ms": 1.324055, + "rtt_ns": 1531083, + "rtt_ms": 1.531083, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.434215874Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:56.981028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754004, - "rtt_ms": 1.754004, + "rtt_ns": 1416291, + "rtt_ms": 1.416291, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.434246614Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:56.981292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1400476, - "rtt_ms": 1.400476, + "rtt_ns": 1472083, + "rtt_ms": 1.472083, "checkpoint": 0, "vertex_from": "274", "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.434325894Z" - }, - { - "operation": "add_edge", - "rtt_ns": 928687, - "rtt_ms": 0.928687, - "checkpoint": 0, - "vertex_from": "274", - "vertex_to": "325", - "timestamp": "2025-11-27T01:21:58.434394304Z" + "timestamp": "2025-11-27T04:01:56.981331-08:00" }, { "operation": "add_edge", - "rtt_ns": 802637, - "rtt_ms": 0.802637, + "rtt_ns": 1396875, + "rtt_ms": 1.396875, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.434895622Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:01:56.981394-08:00" }, { "operation": "add_edge", - "rtt_ns": 2079864, - "rtt_ms": 2.079864, + "rtt_ns": 1652084, + "rtt_ms": 1.652084, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "385", - "timestamp": "2025-11-27T01:21:58.435018542Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.981446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206846, - "rtt_ms": 1.206846, + "rtt_ns": 1641000, + "rtt_ms": 1.641, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "900", - "timestamp": "2025-11-27T01:21:58.435149761Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:56.981546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582045, - "rtt_ms": 1.582045, + "rtt_ns": 1023208, + "rtt_ms": 1.023208, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "521", - "timestamp": "2025-11-27T01:21:58.435909209Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:56.98247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821784, - "rtt_ms": 1.821784, + "rtt_ns": 1777791, + "rtt_ms": 1.777791, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "481", - "timestamp": "2025-11-27T01:21:58.435947989Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:56.982494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716945, - "rtt_ms": 1.716945, + "rtt_ns": 1642625, + "rtt_ms": 1.642625, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.435964259Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:56.982561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076917, - "rtt_ms": 1.076917, + "rtt_ns": 1436958, + "rtt_ms": 1.436958, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "322", - "timestamp": "2025-11-27T01:21:58.435973749Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:56.98277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940974, - "rtt_ms": 1.940974, + "rtt_ns": 2075875, + "rtt_ms": 2.075875, "checkpoint": 0, "vertex_from": "274", - "vertex_to": "643", - "timestamp": "2025-11-27T01:21:58.435980029Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.982795-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858044, - "rtt_ms": 1.858044, + "rtt_ns": 1338209, + "rtt_ms": 1.338209, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "644", - "timestamp": "2025-11-27T01:21:58.436019369Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.982885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814325, - "rtt_ms": 1.814325, + "rtt_ns": 1629083, + "rtt_ms": 1.629083, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "676", - "timestamp": "2025-11-27T01:21:58.436031559Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.982923-08:00" }, { "operation": "add_edge", - "rtt_ns": 823497, - "rtt_ms": 0.823497, + "rtt_ns": 2057125, + "rtt_ms": 2.057125, "checkpoint": 0, - "vertex_from": "276", - "vertex_to": "688", - "timestamp": "2025-11-27T01:21:58.436856206Z" + "vertex_from": "274", + "vertex_to": "481", + "timestamp": "2025-11-27T04:01:56.982946-08:00" }, { "operation": "add_edge", - "rtt_ns": 890507, - "rtt_ms": 0.890507, + "rtt_ns": 1689167, + "rtt_ms": 1.689167, "checkpoint": 0, - "vertex_from": "276", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.436911526Z" + "vertex_from": "275", + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:56.983084-08:00" }, { "operation": "add_edge", - "rtt_ns": 2612191, - "rtt_ms": 2.612191, + "rtt_ns": 2070708, + "rtt_ms": 2.070708, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "530", - "timestamp": "2025-11-27T01:21:58.437007455Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:56.9831-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034353, - "rtt_ms": 2.034353, + "rtt_ns": 1148750, + "rtt_ms": 1.14875, "checkpoint": 0, - "vertex_from": "275", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.437054035Z" + "vertex_from": "276", + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:56.984097-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998644, - "rtt_ms": 1.998644, + "rtt_ns": 1229042, + "rtt_ms": 1.229042, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "705", - "timestamp": "2025-11-27T01:21:58.437947643Z" + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:56.984115-08:00" }, { "operation": "add_edge", - "rtt_ns": 2798262, - "rtt_ms": 2.798262, + "rtt_ns": 1658125, + "rtt_ms": 1.658125, "checkpoint": 0, "vertex_from": "275", "vertex_to": "577", - "timestamp": "2025-11-27T01:21:58.437949523Z" + "timestamp": "2025-11-27T04:01:56.98413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152313, - "rtt_ms": 2.152313, + "rtt_ns": 1779542, + "rtt_ms": 1.779542, "checkpoint": 0, "vertex_from": "275", "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.438062602Z" + "timestamp": "2025-11-27T04:01:56.984275-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1469542, + "rtt_ms": 1.469542, + "checkpoint": 0, + "vertex_from": "276", + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.984393-08:00" }, { "operation": "add_edge", - "rtt_ns": 2384722, - "rtt_ms": 2.384722, + "rtt_ns": 1616584, + "rtt_ms": 1.616584, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "525", - "timestamp": "2025-11-27T01:21:58.438365791Z" + "vertex_to": "956", + "timestamp": "2025-11-27T04:01:56.984413-08:00" }, { "operation": "add_edge", - "rtt_ns": 2418802, - "rtt_ms": 2.418802, + "rtt_ns": 1840375, + "rtt_ms": 1.840375, "checkpoint": 0, "vertex_from": "275", "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.438384341Z" + "timestamp": "2025-11-27T04:01:56.984611-08:00" }, { "operation": "add_edge", - "rtt_ns": 2451562, - "rtt_ms": 2.451562, + "rtt_ns": 2049458, + "rtt_ms": 2.049458, "checkpoint": 0, "vertex_from": "275", - "vertex_to": "956", - "timestamp": "2025-11-27T01:21:58.438429651Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:56.984612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762634, - "rtt_ms": 1.762634, + "rtt_ns": 1669209, + "rtt_ms": 1.669209, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.43861973Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:56.98477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902894, - "rtt_ms": 1.902894, + "rtt_ns": 1716333, + "rtt_ms": 1.716333, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "660", - "timestamp": "2025-11-27T01:21:58.43881549Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.984802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2491333, - "rtt_ms": 2.491333, + "rtt_ns": 1002542, + "rtt_ms": 1.002542, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.439499308Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.985774-08:00" }, { "operation": "add_edge", - "rtt_ns": 2541082, - "rtt_ms": 2.541082, + "rtt_ns": 1685625, + "rtt_ms": 1.685625, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "774", - "timestamp": "2025-11-27T01:21:58.439596047Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.985784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345826, - "rtt_ms": 1.345826, + "rtt_ns": 1209167, + "rtt_ms": 1.209167, "checkpoint": 0, "vertex_from": "276", "vertex_to": "537", - "timestamp": "2025-11-27T01:21:58.439731217Z" + "timestamp": "2025-11-27T04:01:56.985821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1945004, - "rtt_ms": 1.945004, + "rtt_ns": 1724667, + "rtt_ms": 1.724667, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "640", - "timestamp": "2025-11-27T01:21:58.440376165Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.986-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169313, - "rtt_ms": 2.169313, + "rtt_ns": 1885875, + "rtt_ms": 1.885875, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "896", - "timestamp": "2025-11-27T01:21:58.440536014Z" + "vertex_to": "370", + "timestamp": "2025-11-27T04:01:56.986017-08:00" }, { "operation": "add_edge", - "rtt_ns": 3176360, - "rtt_ms": 3.17636, + "rtt_ns": 1622291, + "rtt_ms": 1.622291, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.441127802Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:56.986036-08:00" }, { "operation": "add_edge", - "rtt_ns": 2536402, - "rtt_ms": 2.536402, + "rtt_ns": 1679167, + "rtt_ms": 1.679167, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.441157142Z" + "vertex_to": "686", + "timestamp": "2025-11-27T04:01:56.986074-08:00" }, { "operation": "add_edge", - "rtt_ns": 3210019, - "rtt_ms": 3.210019, + "rtt_ns": 2010250, + "rtt_ms": 2.01025, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "370", - "timestamp": "2025-11-27T01:21:58.441159042Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:56.986126-08:00" }, { "operation": "add_edge", - "rtt_ns": 3103820, - "rtt_ms": 3.10382, + "rtt_ns": 1517125, + "rtt_ms": 1.517125, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "686", - "timestamp": "2025-11-27T01:21:58.441168352Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:56.986131-08:00" }, { "operation": "add_edge", - "rtt_ns": 2360562, - "rtt_ms": 2.360562, + "rtt_ns": 1387583, + "rtt_ms": 1.387583, "checkpoint": 0, "vertex_from": "276", "vertex_to": "587", - "timestamp": "2025-11-27T01:21:58.441178042Z" + "timestamp": "2025-11-27T04:01:56.98619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712454, - "rtt_ms": 1.712454, + "rtt_ns": 1166417, + "rtt_ms": 1.166417, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.441212472Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.987293-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639475, - "rtt_ms": 1.639475, + "rtt_ns": 1555084, + "rtt_ms": 1.555084, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.441236102Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:56.987377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567905, - "rtt_ms": 1.567905, + "rtt_ns": 1519084, + "rtt_ms": 1.519084, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "585", - "timestamp": "2025-11-27T01:21:58.441300202Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:56.987537-08:00" }, { "operation": "add_edge", - "rtt_ns": 1035896, - "rtt_ms": 1.035896, + "rtt_ns": 1786500, + "rtt_ms": 1.7865, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "617", - "timestamp": "2025-11-27T01:21:58.441416611Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.987561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1430735, - "rtt_ms": 1.430735, + "rtt_ns": 1624125, + "rtt_ms": 1.624125, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "592", - "timestamp": "2025-11-27T01:21:58.441969039Z" + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:56.98766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419745, - "rtt_ms": 1.419745, + "rtt_ns": 1554416, + "rtt_ms": 1.554416, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "304", - "timestamp": "2025-11-27T01:21:58.442589817Z" + "vertex_to": "333", + "timestamp": "2025-11-27T04:01:56.987745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570935, - "rtt_ms": 1.570935, + "rtt_ns": 2110417, + "rtt_ms": 2.110417, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "654", - "timestamp": "2025-11-27T01:21:58.442700587Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:56.987895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465695, - "rtt_ms": 1.465695, + "rtt_ns": 1780917, + "rtt_ms": 1.780917, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "514", - "timestamp": "2025-11-27T01:21:58.442703057Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:56.987914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561455, - "rtt_ms": 1.561455, + "rtt_ns": 1933000, + "rtt_ms": 1.933, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.442722017Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:56.987934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568015, - "rtt_ms": 1.568015, + "rtt_ns": 1956459, + "rtt_ms": 1.956459, "checkpoint": 0, "vertex_from": "276", "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.442726657Z" + "timestamp": "2025-11-27T04:01:56.988031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513635, - "rtt_ms": 1.513635, + "rtt_ns": 1487125, + "rtt_ms": 1.487125, "checkpoint": 0, "vertex_from": "276", "vertex_to": "800", - "timestamp": "2025-11-27T01:21:58.442727807Z" + "timestamp": "2025-11-27T04:01:56.988781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452495, - "rtt_ms": 1.452495, + "rtt_ns": 1447708, + "rtt_ms": 1.447708, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "512", - "timestamp": "2025-11-27T01:21:58.442753397Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:56.988826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340526, - "rtt_ms": 1.340526, + "rtt_ns": 2120875, + "rtt_ms": 2.120875, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:58.442759027Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:56.989658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587525, - "rtt_ms": 1.587525, + "rtt_ns": 1674458, + "rtt_ms": 1.674458, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "333", - "timestamp": "2025-11-27T01:21:58.442768747Z" + "vertex_to": "398", + "timestamp": "2025-11-27T04:01:56.989708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643875, - "rtt_ms": 1.643875, + "rtt_ns": 2063583, + "rtt_ms": 2.063583, "checkpoint": 0, "vertex_from": "276", "vertex_to": "536", - "timestamp": "2025-11-27T01:21:58.443614124Z" + "timestamp": "2025-11-27T04:01:56.989725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612975, - "rtt_ms": 1.612975, + "rtt_ns": 1874708, + "rtt_ms": 1.874708, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "898", - "timestamp": "2025-11-27T01:21:58.444204352Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:01:56.98981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1471355, - "rtt_ms": 1.471355, + "rtt_ns": 1916083, + "rtt_ms": 1.916083, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "784", - "timestamp": "2025-11-27T01:21:58.444241332Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:56.989831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486665, - "rtt_ms": 1.486665, + "rtt_ns": 2092541, + "rtt_ms": 2.092541, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "924", - "timestamp": "2025-11-27T01:21:58.444246922Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:56.989839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547565, - "rtt_ms": 1.547565, + "rtt_ns": 2032334, + "rtt_ms": 2.032334, "checkpoint": 0, "vertex_from": "276", "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.444249132Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1546325, - "rtt_ms": 1.546325, - "checkpoint": 0, - "vertex_from": "276", - "vertex_to": "528", - "timestamp": "2025-11-27T01:21:58.444250942Z" + "timestamp": "2025-11-27T04:01:56.989928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543735, - "rtt_ms": 1.543735, + "rtt_ns": 2369916, + "rtt_ms": 2.369916, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "744", - "timestamp": "2025-11-27T01:21:58.444268252Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:56.989932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556965, - "rtt_ms": 1.556965, + "rtt_ns": 1411959, + "rtt_ms": 1.411959, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "398", - "timestamp": "2025-11-27T01:21:58.444286812Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:56.991121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556645, - "rtt_ms": 1.556645, + "rtt_ns": 2444041, + "rtt_ms": 2.444041, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "354", - "timestamp": "2025-11-27T01:21:58.444286672Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.991271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531115, - "rtt_ms": 1.531115, + "rtt_ns": 1524125, + "rtt_ms": 1.524125, "checkpoint": 0, - "vertex_from": "276", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.444286852Z" + "vertex_from": "277", + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:56.991335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526065, - "rtt_ms": 1.526065, + "rtt_ns": 1523417, + "rtt_ms": 1.523417, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "386", - "timestamp": "2025-11-27T01:21:58.445776857Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:56.991355-08:00" }, { "operation": "add_edge", - "rtt_ns": 2165683, - "rtt_ms": 2.165683, + "rtt_ns": 1722334, + "rtt_ms": 1.722334, "checkpoint": 0, "vertex_from": "276", - "vertex_to": "353", - "timestamp": "2025-11-27T01:21:58.445782047Z" + "vertex_to": "924", + "timestamp": "2025-11-27T04:01:56.991382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608965, - "rtt_ms": 1.608965, + "rtt_ns": 1515000, + "rtt_ms": 1.515, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "545", - "timestamp": "2025-11-27T01:21:58.445858107Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:56.991443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652075, - "rtt_ms": 1.652075, + "rtt_ns": 1566667, + "rtt_ms": 1.566667, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "404", - "timestamp": "2025-11-27T01:21:58.445858757Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:56.991499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597285, - "rtt_ms": 1.597285, + "rtt_ns": 1790333, + "rtt_ms": 1.790333, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "909", - "timestamp": "2025-11-27T01:21:58.445888207Z" + "vertex_from": "276", + "vertex_to": "353", + "timestamp": "2025-11-27T04:01:56.991516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622375, - "rtt_ms": 1.622375, + "rtt_ns": 1698417, + "rtt_ms": 1.698417, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "674", - "timestamp": "2025-11-27T01:21:58.445910687Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:56.991538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656454, - "rtt_ms": 1.656454, + "rtt_ns": 2765500, + "rtt_ms": 2.7655, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "280", - "timestamp": "2025-11-27T01:21:58.445927286Z" + "vertex_from": "276", + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:56.991552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639044, - "rtt_ms": 1.639044, + "rtt_ns": 1536750, + "rtt_ms": 1.53675, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "770", - "timestamp": "2025-11-27T01:21:58.445928186Z" + "vertex_from": "278", + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:56.99309-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713364, - "rtt_ms": 1.713364, + "rtt_ns": 1983209, + "rtt_ms": 1.983209, "checkpoint": 0, "vertex_from": "277", - "vertex_to": "336", - "timestamp": "2025-11-27T01:21:58.445966146Z" + "vertex_to": "280", + "timestamp": "2025-11-27T04:01:56.993107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837844, - "rtt_ms": 1.837844, + "rtt_ns": 1607625, + "rtt_ms": 1.607625, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "544", - "timestamp": "2025-11-27T01:21:58.446081286Z" + "vertex_from": "278", + "vertex_to": "632", + "timestamp": "2025-11-27T04:01:56.993108-08:00" }, { "operation": "add_edge", - "rtt_ns": 705188, - "rtt_ms": 0.705188, + "rtt_ns": 1606291, + "rtt_ms": 1.606291, "checkpoint": 0, - "vertex_from": "277", - "vertex_to": "328", - "timestamp": "2025-11-27T01:21:58.446484065Z" + "vertex_from": "278", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:56.993122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193326, - "rtt_ms": 1.193326, + "rtt_ns": 1695416, + "rtt_ms": 1.695416, "checkpoint": 0, "vertex_from": "278", "vertex_to": "520", - "timestamp": "2025-11-27T01:21:58.446977573Z" + "timestamp": "2025-11-27T04:01:56.993139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221046, - "rtt_ms": 1.221046, + "rtt_ns": 1773584, + "rtt_ms": 1.773584, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "600", - "timestamp": "2025-11-27T01:21:58.447133043Z" + "vertex_from": "277", + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:56.993156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246216, - "rtt_ms": 1.246216, + "rtt_ns": 2160792, + "rtt_ms": 2.160792, "checkpoint": 0, "vertex_from": "278", "vertex_to": "707", - "timestamp": "2025-11-27T01:21:58.447136863Z" + "timestamp": "2025-11-27T04:01:56.9937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654954, - "rtt_ms": 1.654954, + "rtt_ns": 2612958, + "rtt_ms": 2.612958, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "632", - "timestamp": "2025-11-27T01:21:58.447514301Z" + "vertex_from": "277", + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:56.993949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235766, - "rtt_ms": 1.235766, + "rtt_ns": 2614208, + "rtt_ms": 2.614208, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "289", - "timestamp": "2025-11-27T01:21:58.447721171Z" + "vertex_from": "277", + "vertex_to": "909", + "timestamp": "2025-11-27T04:01:56.99397-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3254125, + "rtt_ms": 3.254125, + "checkpoint": 0, + "vertex_from": "277", + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:56.994527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800315, - "rtt_ms": 1.800315, + "rtt_ns": 1500250, + "rtt_ms": 1.50025, "checkpoint": 0, "vertex_from": "278", "vertex_to": "384", - "timestamp": "2025-11-27T01:21:58.447729831Z" + "timestamp": "2025-11-27T04:01:56.994608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1878284, - "rtt_ms": 1.878284, + "rtt_ns": 1577500, + "rtt_ms": 1.5775, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "516", - "timestamp": "2025-11-27T01:21:58.447738601Z" + "vertex_to": "289", + "timestamp": "2025-11-27T04:01:56.994718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776115, - "rtt_ms": 1.776115, + "rtt_ns": 1818792, + "rtt_ms": 1.818792, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "549", - "timestamp": "2025-11-27T01:21:58.447743361Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:56.99491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662105, - "rtt_ms": 1.662105, + "rtt_ns": 1948833, + "rtt_ms": 1.948833, "checkpoint": 0, "vertex_from": "278", "vertex_to": "646", - "timestamp": "2025-11-27T01:21:58.447748331Z" + "timestamp": "2025-11-27T04:01:56.995073-08:00" }, { "operation": "add_edge", - "rtt_ns": 1840255, - "rtt_ms": 1.840255, + "rtt_ns": 1990625, + "rtt_ms": 1.990625, "checkpoint": 0, "vertex_from": "278", - "vertex_to": "864", - "timestamp": "2025-11-27T01:21:58.447769411Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:56.995101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325845, - "rtt_ms": 1.325845, + "rtt_ns": 1505084, + "rtt_ms": 1.505084, "checkpoint": 0, "vertex_from": "279", - "vertex_to": "513", - "timestamp": "2025-11-27T01:21:58.448464188Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:56.995207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521655, - "rtt_ms": 1.521655, + "rtt_ns": 1254000, + "rtt_ms": 1.254, "checkpoint": 0, - "vertex_from": "278", - "vertex_to": "608", - "timestamp": "2025-11-27T01:21:58.448500968Z" + "vertex_from": "279", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:56.995225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037297, - "rtt_ms": 1.037297, + "rtt_ns": 1307916, + "rtt_ms": 1.307916, "checkpoint": 0, "vertex_from": "279", - "vertex_to": "576", - "timestamp": "2025-11-27T01:21:58.448553298Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:56.995258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487155, - "rtt_ms": 1.487155, + "rtt_ns": 1494292, + "rtt_ms": 1.494292, "checkpoint": 0, "vertex_from": "279", - "vertex_to": "648", - "timestamp": "2025-11-27T01:21:58.448622498Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:56.996024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652574, - "rtt_ms": 1.652574, + "rtt_ns": 1673167, + "rtt_ms": 1.673167, "checkpoint": 0, "vertex_from": "280", "vertex_to": "650", - "timestamp": "2025-11-27T01:21:58.449397295Z" + "timestamp": "2025-11-27T04:01:56.996584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625934, - "rtt_ms": 1.625934, + "rtt_ns": 3440750, + "rtt_ms": 3.44075, "checkpoint": 0, - "vertex_from": "280", - "vertex_to": "320", - "timestamp": "2025-11-27T01:21:58.449403365Z" + "vertex_from": "278", + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:56.996597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685674, - "rtt_ms": 1.685674, + "rtt_ns": 1396958, + "rtt_ms": 1.396958, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "704", - "timestamp": "2025-11-27T01:21:58.449427785Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:56.996657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684184, - "rtt_ms": 1.684184, + "rtt_ns": 1598000, + "rtt_ms": 1.598, "checkpoint": 0, "vertex_from": "280", "vertex_to": "908", - "timestamp": "2025-11-27T01:21:58.449434825Z" + "timestamp": "2025-11-27T04:01:56.996673-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759674, - "rtt_ms": 1.759674, + "rtt_ns": 1537333, + "rtt_ms": 1.537333, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "448", - "timestamp": "2025-11-27T01:21:58.449490655Z" + "vertex_to": "288", + "timestamp": "2025-11-27T04:01:56.996746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790854, - "rtt_ms": 1.790854, + "rtt_ns": 2346125, + "rtt_ms": 2.346125, "checkpoint": 0, - "vertex_from": "279", - "vertex_to": "769", - "timestamp": "2025-11-27T01:21:58.449513225Z" + "vertex_from": "280", + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:56.997065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404026, - "rtt_ms": 1.404026, + "rtt_ns": 2456000, + "rtt_ms": 2.456, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "288", - "timestamp": "2025-11-27T01:21:58.449870384Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:56.997065-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394066, - "rtt_ms": 1.394066, + "rtt_ns": 1932292, + "rtt_ms": 1.932292, "checkpoint": 0, "vertex_from": "280", "vertex_to": "808", - "timestamp": "2025-11-27T01:21:58.449896704Z" + "timestamp": "2025-11-27T04:01:56.997158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1670305, - "rtt_ms": 1.670305, + "rtt_ns": 1153000, + "rtt_ms": 1.153, "checkpoint": 0, "vertex_from": "280", "vertex_to": "706", - "timestamp": "2025-11-27T01:21:58.450294473Z" + "timestamp": "2025-11-27T04:01:56.997179-08:00" }, { "operation": "add_edge", - "rtt_ns": 885697, - "rtt_ms": 0.885697, + "rtt_ns": 2142333, + "rtt_ms": 2.142333, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "566", - "timestamp": "2025-11-27T01:21:58.450378792Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:56.997245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867824, - "rtt_ms": 1.867824, + "rtt_ns": 1052875, + "rtt_ms": 1.052875, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "296", - "timestamp": "2025-11-27T01:21:58.450423712Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:56.997651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089107, - "rtt_ms": 1.089107, + "rtt_ns": 1089541, + "rtt_ms": 1.089541, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "392", - "timestamp": "2025-11-27T01:21:58.450495492Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:56.997675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175087, - "rtt_ms": 1.175087, + "rtt_ns": 1339625, + "rtt_ms": 1.339625, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "368", - "timestamp": "2025-11-27T01:21:58.450574212Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:56.997997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173457, - "rtt_ms": 1.173457, + "rtt_ns": 1349167, + "rtt_ms": 1.349167, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "642", - "timestamp": "2025-11-27T01:21:58.450603022Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:01:56.998023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241616, - "rtt_ms": 1.241616, + "rtt_ns": 1373209, + "rtt_ms": 1.373209, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "556", - "timestamp": "2025-11-27T01:21:58.450677841Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:01:56.99812-08:00" }, { "operation": "bfs", - "rtt_ns": 10142977, - "rtt_ms": 10, + "rtt_ns": 2891250, + "rtt_ms": 2, "checkpoint": 5, "bfs_start": "0", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "687", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "303", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "219", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "494", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "1001", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "335", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "855", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "875", - "538", - "463", - "388", - "640", - "62", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "239", - "956", - "669", - "51", - "848", - "883", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "126", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "478", - "152", - "993", - "448", - "939", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "847", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "859", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "739", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "827", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "429", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "351", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "1", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "0", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "948", - "970", - "641", - "461", - "706", - "223", - "813", - "949", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "318", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "413", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "350", - "432", - "221", - "373", - "1008", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "715", - "683", - "273", - "462", - "829", - "760", - "150", - "372", - "638", - "532", - "651", - "743", - "899", - "831", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "727", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "31", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "853", - "114", - "820", - "542", - "696", - "591", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "508", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "663", - "30", - "548" + "0" ], - "timestamp": "2025-11-27T01:22:00.495524119Z" + "timestamp": "2025-11-27T04:01:59.035212-08:00" }, { "operation": "bfs", - "rtt_ns": 11801582, - "rtt_ms": 11, + "rtt_ns": 1733750, + "rtt_ms": 1, "checkpoint": 5, "bfs_start": "1", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "687", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "303", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "219", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "494", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "335", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "855", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "875", - "538", - "463", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "239", - "956", - "669", - "51", - "848", - "883", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "478", - "152", - "993", - "448", - "939", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "847", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "739", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "827", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "429", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "351", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "378", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "1", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "948", - "970", - "641", - "461", - "706", - "223", - "813", - "949", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "486", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "215", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "318", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "350", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "638", - "532", - "651", - "743", - "899", - "831", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "253", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "727", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "853", - "114", - "820", - "542", - "696", - "591", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "508", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "1" ], - "timestamp": "2025-11-27T01:22:00.50768705Z" + "timestamp": "2025-11-27T04:01:59.037125-08:00" }, { "operation": "bfs", - "rtt_ns": 6963228, - "rtt_ms": 6, + "rtt_ns": 1375375, + "rtt_ms": 1, "checkpoint": 5, "bfs_start": "2", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "687", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "303", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "219", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "399", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "494", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "767", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "335", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "875", - "538", - "463", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "2", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "239", - "956", - "669", - "51", - "848", - "883", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "478", - "152", - "993", - "448", - "939", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "847", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "739", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "827", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "429", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "351", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "948", - "970", - "641", - "461", - "706", - "223", - "813", - "949", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "318", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "821", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "941", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "350", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "638", - "532", - "651", - "743", - "899", - "831", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "727", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "477", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "696", - "591", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "508", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "2" ], - "timestamp": "2025-11-27T01:22:00.514888587Z" + "timestamp": "2025-11-27T04:01:59.03866-08:00" }, { "operation": "bfs", - "rtt_ns": 7027147, - "rtt_ms": 7, + "rtt_ns": 1170750, + "rtt_ms": 1, "checkpoint": 5, "bfs_start": "4", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "687", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "303", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "219", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "494", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "335", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "875", - "538", - "463", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "239", - "956", - "669", - "51", - "848", - "883", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "478", - "152", - "993", - "448", - "939", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "847", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "739", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "827", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "429", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "351", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "948", - "970", - "641", - "461", - "706", - "223", - "813", - "949", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "318", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "350", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "638", - "532", - "651", - "743", - "899", - "831", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "727", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "696", - "591", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "508", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "4" ], - "timestamp": "2025-11-27T01:22:00.522236043Z" + "timestamp": "2025-11-27T04:01:59.04001-08:00" }, { "operation": "bfs", - "rtt_ns": 7450426, - "rtt_ms": 7, + "rtt_ns": 1054833, + "rtt_ms": 1, "checkpoint": 5, "bfs_start": "3", "bfs_radius": 10, "bfs_result": [ - "371", - "880", - "870", - "181", - "828", - "812", - "516", - "283", - "81", - "279", - "562", - "566", - "309", - "675", - "867", - "44", - "270", - "397", - "752", - "250", - "468", - "259", - "609", - "49", - "652", - "996", - "736", - "465", - "125", - "989", - "231", - "554", - "80", - "377", - "141", - "723", - "178", - "15", - "940", - "701", - "311", - "565", - "474", - "207", - "146", - "704", - "363", - "913", - "19", - "396", - "687", - "257", - "46", - "71", - "401", - "512", - "570", - "849", - "205", - "535", - "306", - "437", - "744", - "420", - "203", - "531", - "42", - "299", - "458", - "662", - "392", - "116", - "680", - "513", - "544", - "552", - "208", - "293", - "783", - "753", - "560", - "39", - "285", - "936", - "183", - "45", - "839", - "106", - "165", - "543", - "624", - "965", - "213", - "746", - "434", - "503", - "583", - "113", - "407", - "475", - "50", - "43", - "946", - "110", - "340", - "331", - "973", - "602", - "740", - "787", - "123", - "901", - "598", - "791", - "576", - "282", - "305", - "316", - "230", - "303", - "64", - "648", - "57", - "220", - "94", - "7", - "25", - "620", - "142", - "286", - "866", - "212", - "900", - "782", - "108", - "887", - "238", - "801", - "219", - "69", - "427", - "856", - "76", - "443", - "777", - "489", - "768", - "385", - "606", - "60", - "359", - "962", - "966", - "589", - "634", - "809", - "177", - "121", - "986", - "323", - "352", - "53", - "699", - "117", - "442", - "718", - "327", - "217", - "838", - "258", - "969", - "587", - "868", - "307", - "534", - "546", - "844", - "758", - "574", - "21", - "267", - "200", - "449", - "659", - "604", - "664", - "929", - "616", - "938", - "646", - "612", - "202", - "533", - "435", - "423", - "450", - "52", - "911", - "419", - "749", - "964", - "289", - "328", - "460", - "686", - "167", - "707", - "417", - "496", - "310", - "914", - "494", - "888", - "261", - "497", - "995", - "336", - "367", - "655", - "728", - "92", - "218", - "236", - "472", - "198", - "874", - "682", - "157", - "688", - "229", - "778", - "593", - "398", - "621", - "924", - "519", - "304", - "540", - "644", - "771", - "173", - "412", - "264", - "337", - "930", - "79", - "795", - "748", - "341", - "457", - "694", - "47", - "34", - "769", - "170", - "483", - "335", - "184", - "601", - "402", - "395", - "721", - "65", - "642", - "520", - "252", - "464", - "737", - "578", - "138", - "431", - "818", - "370", - "750", - "374", - "805", - "811", - "553", - "923", - "875", - "538", - "463", - "388", - "640", - "418", - "320", - "182", - "300", - "865", - "3", - "4", - "610", - "424", - "459", - "409", - "756", - "626", - "514", - "362", - "358", - "149", - "347", - "473", - "915", - "666", - "405", - "239", - "956", - "669", - "51", - "848", - "883", - "225", - "843", - "717", - "1002", - "796", - "226", - "73", - "492", - "365", - "679", - "755", - "525", - "832", - "860", - "527", - "314", - "90", - "789", - "274", - "881", - "478", - "152", - "993", - "448", - "939", - "822", - "129", - "792", - "78", - "672", - "400", - "48", - "784", - "160", - "265", - "557", - "850", - "276", - "713", - "330", - "111", - "158", - "332", - "992", - "872", - "536", - "112", - "387", - "222", - "847", - "246", - "29", - "237", - "245", - "803", - "40", - "247", - "422", - "421", - "10", - "75", - "597", - "596", - "224", - "192", - "842", - "928", - "61", - "33", - "547", - "9", - "302", - "667", - "558", - "313", - "909", - "66", - "256", - "691", - "294", - "451", - "452", - "145", - "455", - "228", - "82", - "454", - "676", - "322", - "263", - "650", - "505", - "954", - "249", - "890", - "580", - "643", - "156", - "187", - "176", - "673", - "227", - "858", - "967", - "266", - "338", - "738", - "339", - "456", - "103", - "344", - "816", - "739", - "561", - "85", - "972", - "195", - "101", - "99", - "166", - "154", - "827", - "275", - "518", - "944", - "248", - "68", - "324", - "349", - "429", - "298", - "119", - "334", - "408", - "697", - "368", - "802", - "619", - "571", - "785", - "317", - "376", - "120", - "26", - "403", - "436", - "922", - "351", - "186", - "357", - "353", - "963", - "174", - "692", - "716", - "537", - "325", - "685", - "625", - "592", - "390", - "485", - "974", - "414", - "563", - "268", - "774", - "13", - "908", - "136", - "326", - "613", - "764", - "603", - "321", - "98", - "884", - "528", - "58", - "690", - "360", - "599", - "541", - "132", - "369", - "920", - "729", - "660", - "481", - "244", - "902", - "271", - "681", - "27", - "586", - "628", - "720", - "105", - "364", - "781", - "960", - "678", - "151", - "88", - "636", - "837", - "147", - "281", - "754", - "70", - "500", - "772", - "209", - "931", - "278", - "948", - "970", - "641", - "461", - "706", - "223", - "813", - "949", - "793", - "131", - "127", - "588", - "632", - "161", - "898", - "629", - "817", - "83", - "703", - "674", - "194", - "794", - "163", - "97", - "470", - "819", - "55", - "649", - "633", - "361", - "654", - "232", - "243", - "84", - "404", - "444", - "155", - "375", - "386", - "260", - "564", - "945", - "272", - "188", - "695", - "910", - "668", - "530", - "179", - "133", - "87", - "656", - "779", - "346", - "985", - "522", - "480", - "342", - "808", - "647", - "406", - "211", - "140", - "329", - "799", - "896", - "834", - "618", - "241", - "582", - "988", - "430", - "824", - "730", - "521", - "204", - "854", - "984", - "135", - "904", - "814", - "74", - "857", - "798", - "555", - "63", - "269", - "318", - "143", - "144", - "295", - "159", - "556", - "467", - "788", - "292", - "573", - "710", - "732", - "296", - "790", - "550", - "17", - "551", - "290", - "20", - "722", - "426", - "416", - "645", - "568", - "614", - "689", - "559", - "952", - "139", - "100", - "18", - "977", - "873", - "169", - "800", - "333", - "876", - "921", - "661", - "384", - "118", - "104", - "712", - "825", - "861", - "892", - "773", - "806", - "16", - "600", - "93", - "804", - "366", - "284", - "482", - "595", - "22", - "569", - "12", - "994", - "59", - "979", - "918", - "350", - "432", - "221", - "373", - "175", - "526", - "86", - "677", - "91", - "549", - "622", - "479", - "976", - "698", - "932", - "23", - "488", - "193", - "742", - "852", - "287", - "709", - "490", - "168", - "980", - "933", - "579", - "428", - "234", - "438", - "937", - "128", - "262", - "391", - "148", - "8", - "153", - "28", - "345", - "504", - "683", - "273", - "829", - "760", - "150", - "372", - "638", - "532", - "651", - "743", - "899", - "831", - "981", - "122", - "196", - "297", - "590", - "630", - "608", - "41", - "581", - "240", - "134", - "301", - "355", - "708", - "786", - "277", - "724", - "180", - "37", - "684", - "440", - "539", - "102", - "665", - "343", - "291", - "851", - "89", - "393", - "214", - "77", - "584", - "572", - "727", - "916", - "137", - "515", - "5", - "433", - "567", - "836", - "197", - "524", - "124", - "607", - "776", - "545", - "577", - "356", - "348", - "846", - "617", - "288", - "190", - "411", - "657", - "233", - "96", - "498", - "11", - "466", - "107", - "24", - "199", - "487", - "394", - "216", - "389", - "484", - "961", - "833", - "210", - "72", - "410", - "280", - "885", - "1009", - "810", - "529", - "725", - "6", - "912", - "172", - "242", - "882", - "56", - "869", - "67", - "54", - "897", - "841", - "845", - "594", - "585", - "775", - "605", - "745", - "162", - "114", - "820", - "542", - "696", - "591", - "705", - "637", - "934", - "453", - "826", - "770", - "968", - "171", - "35", - "185", - "312", - "308", - "38", - "425", - "206", - "517", - "115", - "32", - "354", - "164", - "840", - "807", - "835", - "714", - "508", - "864", - "201", - "611", - "523", - "653", - "627", - "130", - "14", - "615", - "905", - "36", - "658", - "862", - "670", - "780", - "906", - "30", - "548" + "3" ], - "timestamp": "2025-11-27T01:22:00.529930118Z" + "timestamp": "2025-11-27T04:01:59.041128-08:00" }, { "operation": "add_edge", - "rtt_ns": 1874704, - "rtt_ms": 1.874704, + "rtt_ns": 2573458, + "rtt_ms": 2.573458, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.531872922Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:59.043724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931934, - "rtt_ms": 1.931934, + "rtt_ns": 2622250, + "rtt_ms": 2.62225, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "588", - "timestamp": "2025-11-27T01:22:00.531912872Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.043809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938984, - "rtt_ms": 1.938984, + "rtt_ns": 3046791, + "rtt_ms": 3.046791, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "912", - "timestamp": "2025-11-27T01:22:00.531922432Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.044228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937824, - "rtt_ms": 1.937824, + "rtt_ns": 3128833, + "rtt_ms": 3.128833, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.531950132Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.044303-08:00" }, { "operation": "add_edge", - "rtt_ns": 2043334, - "rtt_ms": 2.043334, + "rtt_ns": 3255708, + "rtt_ms": 3.255708, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.531998222Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:59.044423-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021514, - "rtt_ms": 2.021514, + "rtt_ns": 3343667, + "rtt_ms": 3.343667, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.532052992Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:59.044542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071654, - "rtt_ms": 2.071654, + "rtt_ns": 3427958, + "rtt_ms": 3.427958, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.532094582Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.04457-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071004, - "rtt_ms": 2.071004, + "rtt_ns": 3451333, + "rtt_ms": 3.451333, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "298", - "timestamp": "2025-11-27T01:22:00.532097032Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:59.044613-08:00" }, { "operation": "add_edge", - "rtt_ns": 2159753, - "rtt_ms": 2.159753, + "rtt_ns": 3492875, + "rtt_ms": 3.492875, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.532154061Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.044686-08:00" }, { "operation": "add_edge", - "rtt_ns": 2151883, - "rtt_ms": 2.151883, + "rtt_ns": 3618208, + "rtt_ms": 3.618208, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.532182711Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.044818-08:00" }, { "operation": "add_edge", - "rtt_ns": 900737, - "rtt_ms": 0.900737, + "rtt_ns": 3821708, + "rtt_ms": 3.821708, "checkpoint": 0, "vertex_from": "280", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.532818409Z" + "timestamp": "2025-11-27T04:01:59.047632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002847, - "rtt_ms": 1.002847, + "rtt_ns": 4006125, + "rtt_ms": 4.006125, "checkpoint": 0, "vertex_from": "280", "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.532878219Z" + "timestamp": "2025-11-27T04:01:59.047732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237716, - "rtt_ms": 1.237716, + "rtt_ns": 3712000, + "rtt_ms": 3.712, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.533164218Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:59.048255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344075, - "rtt_ms": 1.344075, + "rtt_ns": 3720166, + "rtt_ms": 3.720166, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "406", - "timestamp": "2025-11-27T01:22:00.533344627Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.048335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801184, - "rtt_ms": 1.801184, + "rtt_ns": 4171083, + "rtt_ms": 4.171083, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.533856006Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.048403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955543, - "rtt_ms": 1.955543, + "rtt_ns": 4173541, + "rtt_ms": 4.173541, "checkpoint": 0, "vertex_from": "280", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.533907365Z" + "timestamp": "2025-11-27T04:01:59.048477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841393, - "rtt_ms": 1.841393, + "rtt_ns": 4099916, + "rtt_ms": 4.099916, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.533940425Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:59.048524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846203, - "rtt_ms": 1.846203, + "rtt_ns": 4039292, + "rtt_ms": 4.039292, "checkpoint": 0, "vertex_from": "280", "vertex_to": "357", - "timestamp": "2025-11-27T01:22:00.533943965Z" + "timestamp": "2025-11-27T04:01:59.04861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792394, - "rtt_ms": 1.792394, + "rtt_ns": 3956000, + "rtt_ms": 3.956, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.533948585Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.048775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979684, - "rtt_ms": 1.979684, + "rtt_ns": 4146542, + "rtt_ms": 4.146542, "checkpoint": 0, "vertex_from": "280", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.534163855Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.048834-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3741792, + "rtt_ms": 3.741792, + "checkpoint": 0, + "vertex_from": "281", + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:59.051475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980803, - "rtt_ms": 1.980803, + "rtt_ns": 3936541, + "rtt_ms": 3.936541, "checkpoint": 0, "vertex_from": "280", "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.534801882Z" + "timestamp": "2025-11-27T04:01:59.05157-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3523125, + "rtt_ms": 3.523125, + "checkpoint": 0, + "vertex_from": "281", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.052001-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539255, - "rtt_ms": 1.539255, + "rtt_ns": 3752334, + "rtt_ms": 3.752334, "checkpoint": 0, "vertex_from": "281", "vertex_to": "779", - "timestamp": "2025-11-27T01:22:00.534885502Z" + "timestamp": "2025-11-27T04:01:59.052088-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143673, - "rtt_ms": 2.143673, + "rtt_ns": 3729292, + "rtt_ms": 3.729292, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "304", - "timestamp": "2025-11-27T01:22:00.535024242Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:59.052133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1859904, - "rtt_ms": 1.859904, + "rtt_ns": 3971125, + "rtt_ms": 3.971125, "checkpoint": 0, "vertex_from": "281", "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.535025752Z" + "timestamp": "2025-11-27T04:01:59.052227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757584, - "rtt_ms": 1.757584, + "rtt_ns": 4165042, + "rtt_ms": 4.165042, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.535707519Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.052776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789834, - "rtt_ms": 1.789834, + "rtt_ns": 4347541, + "rtt_ms": 4.347541, "checkpoint": 0, "vertex_from": "281", "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.535731659Z" + "timestamp": "2025-11-27T04:01:59.052873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881243, - "rtt_ms": 1.881243, + "rtt_ns": 4082167, + "rtt_ms": 4.082167, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.535738729Z" + "vertex_to": "604", + "timestamp": "2025-11-27T04:01:59.052917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576994, - "rtt_ms": 1.576994, + "rtt_ns": 4245417, + "rtt_ms": 4.245417, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "604", - "timestamp": "2025-11-27T01:22:00.535743529Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.053021-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799644, - "rtt_ms": 1.799644, + "rtt_ns": 3783916, + "rtt_ms": 3.783916, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.535745039Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:59.055355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912754, - "rtt_ms": 1.912754, + "rtt_ns": 3990583, + "rtt_ms": 3.990583, "checkpoint": 0, "vertex_from": "281", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.535821049Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:59.055468-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406305, - "rtt_ms": 1.406305, + "rtt_ns": 3958083, + "rtt_ms": 3.958083, "checkpoint": 0, "vertex_from": "282", "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.536432337Z" + "timestamp": "2025-11-27T04:01:59.05596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750994, - "rtt_ms": 1.750994, + "rtt_ns": 3874833, + "rtt_ms": 3.874833, "checkpoint": 0, - "vertex_from": "281", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.536639896Z" + "vertex_from": "282", + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:59.056008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1850384, - "rtt_ms": 1.850384, + "rtt_ns": 3798541, + "rtt_ms": 3.798541, "checkpoint": 0, - "vertex_from": "281", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.536654316Z" + "vertex_from": "282", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.056026-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1671974, - "rtt_ms": 1.671974, + "operation": "add_vertex", + "rtt_ns": 3723333, + "rtt_ms": 3.723333, "checkpoint": 0, - "vertex_from": "282", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.536699886Z" + "vertex_from": "741", + "timestamp": "2025-11-27T04:01:59.056598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1479686, - "rtt_ms": 1.479686, + "rtt_ns": 4608417, + "rtt_ms": 4.608417, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.537212995Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.056697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555705, - "rtt_ms": 1.555705, + "rtt_ns": 3936333, + "rtt_ms": 3.936333, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.537265004Z" + "vertex_to": "305", + "timestamp": "2025-11-27T04:01:59.056713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641305, - "rtt_ms": 1.641305, + "rtt_ns": 3861250, + "rtt_ms": 3.86125, "checkpoint": 0, "vertex_from": "282", "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.537387324Z" + "timestamp": "2025-11-27T04:01:59.056779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680775, - "rtt_ms": 1.680775, + "rtt_ns": 3909625, + "rtt_ms": 3.909625, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "305", - "timestamp": "2025-11-27T01:22:00.537420904Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1719925, - "rtt_ms": 1.719925, - "checkpoint": 0, - "vertex_from": "741", - "timestamp": "2025-11-27T01:22:00.537467894Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:59.056932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653115, - "rtt_ms": 1.653115, + "rtt_ns": 3660667, + "rtt_ms": 3.660667, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "542", - "timestamp": "2025-11-27T01:22:00.537476574Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.059129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631575, - "rtt_ms": 1.631575, + "rtt_ns": 3846875, + "rtt_ms": 3.846875, "checkpoint": 0, "vertex_from": "282", "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.538065712Z" + "timestamp": "2025-11-27T04:01:59.059203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568465, - "rtt_ms": 1.568465, + "rtt_ns": 3687209, + "rtt_ms": 3.687209, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.538224621Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:59.059697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718175, - "rtt_ms": 1.718175, + "rtt_ns": 3805334, + "rtt_ms": 3.805334, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.538359461Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.059767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793004, - "rtt_ms": 1.793004, + "rtt_ns": 3793416, + "rtt_ms": 3.793416, "checkpoint": 0, "vertex_from": "283", "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.539008509Z" + "timestamp": "2025-11-27T04:01:59.05982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347533, - "rtt_ms": 2.347533, + "rtt_ns": 3394417, + "rtt_ms": 3.394417, "checkpoint": 0, "vertex_from": "282", - "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.539048919Z" + "vertex_to": "741", + "timestamp": "2025-11-27T04:01:59.059992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815635, - "rtt_ms": 1.815635, + "rtt_ns": 3839250, + "rtt_ms": 3.83925, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.539081509Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.060619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667485, - "rtt_ms": 1.667485, + "rtt_ns": 3937125, + "rtt_ms": 3.937125, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.539091229Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:59.060635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682005, - "rtt_ms": 1.682005, + "rtt_ns": 3772375, + "rtt_ms": 3.772375, "checkpoint": 0, - "vertex_from": "282", - "vertex_to": "741", - "timestamp": "2025-11-27T01:22:00.539150459Z" + "vertex_from": "283", + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.060705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762245, - "rtt_ms": 1.762245, + "rtt_ns": 4031000, + "rtt_ms": 4.031, "checkpoint": 0, "vertex_from": "283", "vertex_to": "394", - "timestamp": "2025-11-27T01:22:00.539150849Z" + "timestamp": "2025-11-27T04:01:59.060745-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816054, - "rtt_ms": 1.816054, + "rtt_ns": 3962833, + "rtt_ms": 3.962833, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.539295008Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.063093-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272156, - "rtt_ms": 1.272156, + "rtt_ns": 4079500, + "rtt_ms": 4.0795, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.539339858Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:59.063283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1232087, - "rtt_ms": 1.232087, + "rtt_ns": 3538334, + "rtt_ms": 3.538334, "checkpoint": 0, - "vertex_from": "283", - "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.539458038Z" + "vertex_from": "284", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.063533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344876, - "rtt_ms": 1.344876, + "rtt_ns": 3823333, + "rtt_ms": 3.823333, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.539706037Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.063591-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085506, - "rtt_ms": 1.085506, + "rtt_ns": 3898792, + "rtt_ms": 3.898792, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.540135435Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.063597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218476, - "rtt_ms": 1.218476, + "rtt_ns": 3790000, + "rtt_ms": 3.79, "checkpoint": 0, "vertex_from": "283", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.540229225Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.063611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209136, - "rtt_ms": 1.209136, + "rtt_ns": 3151583, + "rtt_ms": 3.151583, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.540361275Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:59.063898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278716, - "rtt_ms": 1.278716, + "rtt_ns": 3289458, + "rtt_ms": 3.289458, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.540361615Z" + "vertex_to": "287", + "timestamp": "2025-11-27T04:01:59.06391-08:00" }, { "operation": "add_edge", - "rtt_ns": 925627, - "rtt_ms": 0.925627, + "rtt_ns": 3240959, + "rtt_ms": 3.240959, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "940", - "timestamp": "2025-11-27T01:22:00.540385525Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:59.063947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062267, - "rtt_ms": 1.062267, + "rtt_ns": 3319375, + "rtt_ms": 3.319375, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.540403615Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.063955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358345, - "rtt_ms": 1.358345, + "rtt_ns": 2690959, + "rtt_ms": 2.690959, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "287", - "timestamp": "2025-11-27T01:22:00.540451584Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:59.065785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183236, - "rtt_ms": 1.183236, + "rtt_ns": 2201042, + "rtt_ms": 2.201042, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.540479984Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:59.065813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366225, - "rtt_ms": 1.366225, + "rtt_ns": 2542166, + "rtt_ms": 2.542166, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "325", - "timestamp": "2025-11-27T01:22:00.540519004Z" + "vertex_to": "940", + "timestamp": "2025-11-27T04:01:59.065826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1543455, - "rtt_ms": 1.543455, + "rtt_ns": 2242666, + "rtt_ms": 2.242666, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.541250902Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:59.065837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034826, - "rtt_ms": 1.034826, + "rtt_ns": 2316292, + "rtt_ms": 2.316292, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "307", - "timestamp": "2025-11-27T01:22:00.541423151Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.06585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329486, - "rtt_ms": 1.329486, + "rtt_ns": 2321958, + "rtt_ms": 2.321958, "checkpoint": 0, - "vertex_from": "285", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.5417829Z" + "vertex_from": "284", + "vertex_to": "484", + "timestamp": "2025-11-27T04:01:59.06627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590025, - "rtt_ms": 1.590025, + "rtt_ns": 2376792, + "rtt_ms": 2.376792, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.54182061Z" + "vertex_to": "994", + "timestamp": "2025-11-27T04:01:59.066277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496945, - "rtt_ms": 1.496945, + "rtt_ns": 2321000, + "rtt_ms": 2.321, "checkpoint": 0, - "vertex_from": "284", - "vertex_to": "841", - "timestamp": "2025-11-27T01:22:00.54186039Z" + "vertex_from": "285", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.066277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538525, - "rtt_ms": 1.538525, + "rtt_ns": 2373792, + "rtt_ms": 2.373792, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "994", - "timestamp": "2025-11-27T01:22:00.54190366Z" + "vertex_to": "307", + "timestamp": "2025-11-27T04:01:59.066285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1772295, - "rtt_ms": 1.772295, + "rtt_ns": 2701667, + "rtt_ms": 2.701667, "checkpoint": 0, "vertex_from": "284", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.54191041Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:59.0663-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402066, - "rtt_ms": 1.402066, + "rtt_ns": 1638000, + "rtt_ms": 1.638, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.54192318Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1576635, - "rtt_ms": 1.576635, - "checkpoint": 0, - "vertex_from": "284", - "vertex_to": "484", - "timestamp": "2025-11-27T01:22:00.541983Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.067425-08:00" }, { "operation": "add_edge", - "rtt_ns": 758417, - "rtt_ms": 0.758417, + "rtt_ns": 1588542, + "rtt_ms": 1.588542, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.542010889Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:01:59.067439-08:00" }, { "operation": "add_edge", - "rtt_ns": 598848, - "rtt_ms": 0.598848, + "rtt_ns": 1800500, + "rtt_ms": 1.8005, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "293", - "timestamp": "2025-11-27T01:22:00.542023419Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.067627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544445, - "rtt_ms": 1.544445, + "rtt_ns": 1362834, + "rtt_ms": 1.362834, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.542025109Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:59.067643-08:00" }, { "operation": "add_edge", - "rtt_ns": 866857, - "rtt_ms": 0.866857, + "rtt_ns": 1817417, + "rtt_ms": 1.817417, "checkpoint": 0, "vertex_from": "285", - "vertex_to": "685", - "timestamp": "2025-11-27T01:22:00.542651027Z" + "vertex_to": "293", + "timestamp": "2025-11-27T04:01:59.067655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743445, - "rtt_ms": 1.743445, + "rtt_ns": 1441125, + "rtt_ms": 1.441125, "checkpoint": 0, "vertex_from": "285", "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.543566795Z" + "timestamp": "2025-11-27T04:01:59.067713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561505, - "rtt_ms": 1.561505, + "rtt_ns": 1907209, + "rtt_ms": 1.907209, "checkpoint": 0, - "vertex_from": "288", - "vertex_to": "685", - "timestamp": "2025-11-27T01:22:00.543586944Z" + "vertex_from": "285", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.067721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759864, - "rtt_ms": 1.759864, + "rtt_ns": 1462791, + "rtt_ms": 1.462791, "checkpoint": 0, "vertex_from": "285", "vertex_to": "289", - "timestamp": "2025-11-27T01:22:00.543622584Z" + "timestamp": "2025-11-27T04:01:59.06774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665294, - "rtt_ms": 1.665294, + "rtt_ns": 1537500, + "rtt_ms": 1.5375, "checkpoint": 0, "vertex_from": "287", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.543649904Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.067838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751914, - "rtt_ms": 1.751914, + "rtt_ns": 1563834, + "rtt_ms": 1.563834, "checkpoint": 0, - "vertex_from": "285", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.543657704Z" + "vertex_from": "286", + "vertex_to": "345", + "timestamp": "2025-11-27T04:01:59.06785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1736834, - "rtt_ms": 1.736834, + "rtt_ns": 1745250, + "rtt_ms": 1.74525, "checkpoint": 0, "vertex_from": "287", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.543662204Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.069171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671835, - "rtt_ms": 1.671835, + "rtt_ns": 1543917, + "rtt_ms": 1.543917, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.543684544Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:01:59.069172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1965564, - "rtt_ms": 1.965564, + "rtt_ns": 1523292, + "rtt_ms": 1.523292, "checkpoint": 0, - "vertex_from": "286", - "vertex_to": "345", - "timestamp": "2025-11-27T01:22:00.543878564Z" + "vertex_from": "288", + "vertex_to": "473", + "timestamp": "2025-11-27T04:01:59.06918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2745062, - "rtt_ms": 2.745062, + "rtt_ns": 1946292, + "rtt_ms": 1.946292, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "448", - "timestamp": "2025-11-27T01:22:00.544772121Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.069387-08:00" }, { "operation": "add_edge", - "rtt_ns": 2597512, - "rtt_ms": 2.597512, + "rtt_ns": 1794500, + "rtt_ms": 1.7945, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "473", - "timestamp": "2025-11-27T01:22:00.545252119Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:59.069439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881624, - "rtt_ms": 1.881624, + "rtt_ns": 1755333, + "rtt_ms": 1.755333, "checkpoint": 0, "vertex_from": "288", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.545470128Z" + "timestamp": "2025-11-27T04:01:59.069477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838014, - "rtt_ms": 1.838014, + "rtt_ns": 1631584, + "rtt_ms": 1.631584, "checkpoint": 0, "vertex_from": "288", "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.545496658Z" + "timestamp": "2025-11-27T04:01:59.069484-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057353, - "rtt_ms": 2.057353, + "rtt_ns": 1785417, + "rtt_ms": 1.785417, "checkpoint": 0, "vertex_from": "288", "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.545626708Z" + "timestamp": "2025-11-27T04:01:59.069501-08:00" }, { "operation": "add_edge", - "rtt_ns": 2146154, - "rtt_ms": 2.146154, + "rtt_ns": 1780959, + "rtt_ms": 1.780959, "checkpoint": 0, "vertex_from": "288", "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.545770658Z" + "timestamp": "2025-11-27T04:01:59.069522-08:00" }, { "operation": "add_edge", - "rtt_ns": 2735822, - "rtt_ms": 2.735822, + "rtt_ns": 1745250, + "rtt_ms": 1.74525, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "332", - "timestamp": "2025-11-27T01:22:00.546400616Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.069584-08:00" }, { "operation": "add_edge", - "rtt_ns": 2736601, - "rtt_ms": 2.736601, + "rtt_ns": 1498500, + "rtt_ms": 1.4985, "checkpoint": 0, "vertex_from": "288", "vertex_to": "336", - "timestamp": "2025-11-27T01:22:00.546422805Z" + "timestamp": "2025-11-27T04:01:59.070673-08:00" }, { "operation": "add_edge", - "rtt_ns": 2778211, - "rtt_ms": 2.778211, + "rtt_ns": 1249208, + "rtt_ms": 1.249208, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.546429005Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.070689-08:00" }, { "operation": "add_edge", - "rtt_ns": 2586401, - "rtt_ms": 2.586401, + "rtt_ns": 1473708, + "rtt_ms": 1.473708, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.546466095Z" + "vertex_to": "692", + "timestamp": "2025-11-27T04:01:59.070863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1780344, - "rtt_ms": 1.780344, + "rtt_ns": 1376208, + "rtt_ms": 1.376208, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "692", - "timestamp": "2025-11-27T01:22:00.546555705Z" + "vertex_to": "468", + "timestamp": "2025-11-27T04:01:59.070961-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436006, - "rtt_ms": 1.436006, + "rtt_ns": 1799875, + "rtt_ms": 1.799875, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.546690015Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.070981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309036, - "rtt_ms": 1.309036, + "rtt_ns": 1975291, + "rtt_ms": 1.975291, + "checkpoint": 0, + "vertex_from": "288", + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:59.071149-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1684167, + "rtt_ms": 1.684167, "checkpoint": 0, "vertex_from": "288", "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.546780414Z" + "timestamp": "2025-11-27T04:01:59.071163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296566, - "rtt_ms": 1.296566, + "rtt_ns": 1694625, + "rtt_ms": 1.694625, "checkpoint": 0, "vertex_from": "288", "vertex_to": "341", - "timestamp": "2025-11-27T01:22:00.546794444Z" + "timestamp": "2025-11-27T04:01:59.07118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267456, - "rtt_ms": 1.267456, + "rtt_ns": 1667792, + "rtt_ms": 1.667792, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "682", - "timestamp": "2025-11-27T01:22:00.546896124Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.071191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151236, - "rtt_ms": 1.151236, + "rtt_ns": 1767833, + "rtt_ms": 1.767833, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.546923364Z" + "vertex_to": "682", + "timestamp": "2025-11-27T04:01:59.07127-08:00" }, { "operation": "add_edge", - "rtt_ns": 666177, - "rtt_ms": 0.666177, + "rtt_ns": 1266000, + "rtt_ms": 1.266, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "468", - "timestamp": "2025-11-27T01:22:00.547068113Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:59.072228-08:00" }, { "operation": "add_edge", - "rtt_ns": 653588, - "rtt_ms": 0.653588, + "rtt_ns": 1556250, + "rtt_ms": 1.55625, "checkpoint": 0, "vertex_from": "288", "vertex_to": "543", - "timestamp": "2025-11-27T01:22:00.547084993Z" + "timestamp": "2025-11-27T04:01:59.072246-08:00" }, { "operation": "add_edge", - "rtt_ns": 735018, - "rtt_ms": 0.735018, + "rtt_ns": 1810375, + "rtt_ms": 1.810375, "checkpoint": 0, "vertex_from": "288", "vertex_to": "327", - "timestamp": "2025-11-27T01:22:00.547159203Z" + "timestamp": "2025-11-27T04:01:59.072484-08:00" }, { "operation": "add_edge", - "rtt_ns": 708068, - "rtt_ms": 0.708068, + "rtt_ns": 1633708, + "rtt_ms": 1.633708, "checkpoint": 0, "vertex_from": "288", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.547175363Z" + "timestamp": "2025-11-27T04:01:59.072498-08:00" }, { "operation": "add_edge", - "rtt_ns": 811517, - "rtt_ms": 0.811517, + "rtt_ns": 1460500, + "rtt_ms": 1.4605, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "402", - "timestamp": "2025-11-27T01:22:00.547368572Z" + "vertex_to": "944", + "timestamp": "2025-11-27T04:01:59.072653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318525, - "rtt_ms": 1.318525, + "rtt_ns": 1593750, + "rtt_ms": 1.59375, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "968", - "timestamp": "2025-11-27T01:22:00.54801119Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:01:59.072757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297816, - "rtt_ms": 1.297816, + "rtt_ns": 1701708, + "rtt_ms": 1.701708, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "594", - "timestamp": "2025-11-27T01:22:00.54807967Z" + "vertex_to": "988", + "timestamp": "2025-11-27T04:01:59.072882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049437, - "rtt_ms": 1.049437, + "rtt_ns": 1912125, + "rtt_ms": 1.912125, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.54811907Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:01:59.072894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282066, - "rtt_ms": 1.282066, + "rtt_ns": 1755750, + "rtt_ms": 1.75575, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "944", - "timestamp": "2025-11-27T01:22:00.54820644Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:59.072906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1052997, - "rtt_ms": 1.052997, + "rtt_ns": 1722333, + "rtt_ms": 1.722333, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.54821389Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.072995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166827, - "rtt_ms": 1.166827, + "rtt_ns": 1460875, + "rtt_ms": 1.460875, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.54825296Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:59.073708-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373365, - "rtt_ms": 1.373365, + "rtt_ns": 1491709, + "rtt_ms": 1.491709, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "988", - "timestamp": "2025-11-27T01:22:00.548270859Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.073721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498845, - "rtt_ms": 1.498845, + "rtt_ns": 1621125, + "rtt_ms": 1.621125, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "803", - "timestamp": "2025-11-27T01:22:00.548294609Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:01:59.074106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510165, - "rtt_ms": 1.510165, + "rtt_ns": 1623917, + "rtt_ms": 1.623917, "checkpoint": 0, "vertex_from": "288", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.548880037Z" + "timestamp": "2025-11-27T04:01:59.074123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738624, - "rtt_ms": 1.738624, + "rtt_ns": 1376458, + "rtt_ms": 1.376458, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "696", - "timestamp": "2025-11-27T01:22:00.548915557Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.074134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075867, - "rtt_ms": 1.075867, + "rtt_ns": 1493125, + "rtt_ms": 1.493125, "checkpoint": 0, "vertex_from": "288", "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.549088327Z" + "timestamp": "2025-11-27T04:01:59.074146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423945, - "rtt_ms": 1.423945, + "rtt_ns": 1436667, + "rtt_ms": 1.436667, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.549505825Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:59.074343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794604, - "rtt_ms": 1.794604, + "rtt_ns": 1475958, + "rtt_ms": 1.475958, "checkpoint": 0, "vertex_from": "288", "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.549915384Z" + "timestamp": "2025-11-27T04:01:59.074359-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700824, - "rtt_ms": 1.700824, + "rtt_ns": 1375167, + "rtt_ms": 1.375167, "checkpoint": 0, "vertex_from": "288", "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.549954894Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1781174, - "rtt_ms": 1.781174, - "checkpoint": 0, - "vertex_from": "288", - "vertex_to": "344", - "timestamp": "2025-11-27T01:22:00.550076993Z" + "timestamp": "2025-11-27T04:01:59.074371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941393, - "rtt_ms": 1.941393, + "rtt_ns": 1561792, + "rtt_ms": 1.561792, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.550157383Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1303316, - "rtt_ms": 1.303316, - "checkpoint": 0, - "vertex_from": "288", - "vertex_to": "424", - "timestamp": "2025-11-27T01:22:00.550220093Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:59.074457-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049923, - "rtt_ms": 2.049923, + "rtt_ns": 1929875, + "rtt_ms": 1.929875, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "526", - "timestamp": "2025-11-27T01:22:00.550258043Z" + "vertex_to": "344", + "timestamp": "2025-11-27T04:01:59.075652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183966, - "rtt_ms": 1.183966, + "rtt_ns": 1562042, + "rtt_ms": 1.562042, "checkpoint": 0, "vertex_from": "288", "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.550273543Z" + "timestamp": "2025-11-27T04:01:59.075697-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089523, - "rtt_ms": 2.089523, + "rtt_ns": 1646500, + "rtt_ms": 1.6465, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "440", - "timestamp": "2025-11-27T01:22:00.550362962Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:59.075771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514435, - "rtt_ms": 1.514435, + "rtt_ns": 1666000, + "rtt_ms": 1.666, "checkpoint": 0, "vertex_from": "288", "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.550396072Z" + "timestamp": "2025-11-27T04:01:59.075773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1506955, - "rtt_ms": 1.506955, + "rtt_ns": 2108666, + "rtt_ms": 2.108666, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "740", - "timestamp": "2025-11-27T01:22:00.55101405Z" + "vertex_to": "440", + "timestamp": "2025-11-27T04:01:59.075817-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278226, - "rtt_ms": 1.278226, + "rtt_ns": 1523500, + "rtt_ms": 1.5235, "checkpoint": 0, "vertex_from": "288", "vertex_to": "781", - "timestamp": "2025-11-27T01:22:00.55119468Z" + "timestamp": "2025-11-27T04:01:59.075868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1130407, - "rtt_ms": 1.130407, + "rtt_ns": 1497833, + "rtt_ms": 1.497833, "checkpoint": 0, "vertex_from": "288", "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.55120961Z" + "timestamp": "2025-11-27T04:01:59.075872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005097, - "rtt_ms": 1.005097, + "rtt_ns": 1539250, + "rtt_ms": 1.53925, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.55122694Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:59.075899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308955, - "rtt_ms": 1.308955, + "rtt_ns": 1765333, + "rtt_ms": 1.765333, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "392", - "timestamp": "2025-11-27T01:22:00.551265349Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:01:59.075913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1383146, - "rtt_ms": 1.383146, + "rtt_ns": 1550833, + "rtt_ms": 1.550833, "checkpoint": 0, "vertex_from": "288", "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.551542449Z" + "timestamp": "2025-11-27T04:01:59.07601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294895, - "rtt_ms": 1.294895, + "rtt_ns": 1723500, + "rtt_ms": 1.7235, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "386", - "timestamp": "2025-11-27T01:22:00.551569958Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:59.077734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294386, - "rtt_ms": 1.294386, + "rtt_ns": 1898625, + "rtt_ms": 1.898625, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "296", - "timestamp": "2025-11-27T01:22:00.551658978Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.077778-08:00" }, { "operation": "add_edge", - "rtt_ns": 717838, - "rtt_ms": 0.717838, + "rtt_ns": 1886125, + "rtt_ms": 1.886125, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.551733508Z" + "vertex_to": "298", + "timestamp": "2025-11-27T04:01:59.077786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503445, - "rtt_ms": 1.503445, + "rtt_ns": 1970459, + "rtt_ms": 1.970459, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.551763098Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:01:59.077789-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371336, - "rtt_ms": 1.371336, + "rtt_ns": 2025458, + "rtt_ms": 2.025458, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "669", - "timestamp": "2025-11-27T01:22:00.551768758Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:59.0778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045266, - "rtt_ms": 1.045266, + "rtt_ns": 2151083, + "rtt_ms": 2.151083, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.552275236Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.077805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305915, - "rtt_ms": 1.305915, + "rtt_ns": 1896292, + "rtt_ms": 1.896292, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "298", - "timestamp": "2025-11-27T01:22:00.552516905Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:59.07781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350815, - "rtt_ms": 1.350815, + "rtt_ns": 1947083, + "rtt_ms": 1.947083, "checkpoint": 0, "vertex_from": "288", "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.552547605Z" + "timestamp": "2025-11-27T04:01:59.077821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375686, - "rtt_ms": 1.375686, + "rtt_ns": 2132958, + "rtt_ms": 2.132958, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.552642375Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.077831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1170176, - "rtt_ms": 1.170176, + "rtt_ns": 2269000, + "rtt_ms": 2.269, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.552713885Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:59.078041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598155, - "rtt_ms": 1.598155, + "rtt_ns": 1074291, + "rtt_ms": 1.074291, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "572", - "timestamp": "2025-11-27T01:22:00.553171173Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.079116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065517, - "rtt_ms": 1.065517, + "rtt_ns": 1386709, + "rtt_ms": 1.386709, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "657", - "timestamp": "2025-11-27T01:22:00.553346023Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:59.079167-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712665, - "rtt_ms": 1.712665, + "rtt_ns": 1590000, + "rtt_ms": 1.59, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "482", - "timestamp": "2025-11-27T01:22:00.553373523Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:59.079391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610625, - "rtt_ms": 1.610625, + "rtt_ns": 1788250, + "rtt_ms": 1.78825, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.553374903Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:59.079599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643145, - "rtt_ms": 1.643145, + "rtt_ns": 1874833, + "rtt_ms": 1.874833, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "325", - "timestamp": "2025-11-27T01:22:00.553413023Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.079612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706144, - "rtt_ms": 1.706144, + "rtt_ns": 1801750, + "rtt_ms": 1.80175, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "587", - "timestamp": "2025-11-27T01:22:00.553441412Z" + "vertex_to": "727", + "timestamp": "2025-11-27T04:01:59.079624-08:00" }, { "operation": "add_edge", - "rtt_ns": 833507, - "rtt_ms": 0.833507, + "rtt_ns": 1832084, + "rtt_ms": 1.832084, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "340", - "timestamp": "2025-11-27T01:22:00.55418162Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:59.079638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663735, - "rtt_ms": 1.663735, + "rtt_ns": 1862584, + "rtt_ms": 1.862584, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.5542129Z" + "vertex_to": "482", + "timestamp": "2025-11-27T04:01:59.07965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726305, - "rtt_ms": 1.726305, + "rtt_ns": 1879583, + "rtt_ms": 1.879583, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "727", - "timestamp": "2025-11-27T01:22:00.55424538Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:59.079711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1556485, - "rtt_ms": 1.556485, + "rtt_ns": 2018250, + "rtt_ms": 2.01825, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.55427199Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:59.079809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644825, - "rtt_ms": 1.644825, + "rtt_ns": 1464084, + "rtt_ms": 1.464084, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.55428841Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:59.080857-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205756, - "rtt_ms": 1.205756, + "rtt_ns": 1706000, + "rtt_ms": 1.706, "checkpoint": 0, "vertex_from": "288", "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.554378299Z" + "timestamp": "2025-11-27T04:01:59.080875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499705, - "rtt_ms": 1.499705, + "rtt_ns": 1777250, + "rtt_ms": 1.77725, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "610", - "timestamp": "2025-11-27T01:22:00.554877038Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.080896-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573605, - "rtt_ms": 1.573605, + "rtt_ns": 1309500, + "rtt_ms": 1.3095, "checkpoint": 0, "vertex_from": "288", "vertex_to": "534", - "timestamp": "2025-11-27T01:22:00.554950288Z" + "timestamp": "2025-11-27T04:01:59.080909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662915, - "rtt_ms": 1.662915, + "rtt_ns": 1111334, + "rtt_ms": 1.111334, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.555105347Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:59.080921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707634, - "rtt_ms": 1.707634, + "rtt_ns": 1616709, + "rtt_ms": 1.616709, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "470", - "timestamp": "2025-11-27T01:22:00.555122547Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:59.081329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096357, - "rtt_ms": 1.096357, + "rtt_ns": 1732959, + "rtt_ms": 1.732959, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "668", - "timestamp": "2025-11-27T01:22:00.555311727Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:59.081346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224156, - "rtt_ms": 1.224156, + "rtt_ns": 1734166, + "rtt_ms": 1.734166, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "630", - "timestamp": "2025-11-27T01:22:00.555497086Z" + "vertex_to": "470", + "timestamp": "2025-11-27T04:01:59.081358-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238056, - "rtt_ms": 1.238056, + "rtt_ns": 1836541, + "rtt_ms": 1.836541, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "992", - "timestamp": "2025-11-27T01:22:00.555528056Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:59.081487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325046, - "rtt_ms": 1.325046, + "rtt_ns": 1938792, + "rtt_ms": 1.938792, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "553", - "timestamp": "2025-11-27T01:22:00.555571896Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:59.081578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408626, - "rtt_ms": 1.408626, + "rtt_ns": 2017416, + "rtt_ms": 2.017416, "checkpoint": 0, "vertex_from": "288", - "vertex_to": "393", - "timestamp": "2025-11-27T01:22:00.555591666Z" + "vertex_to": "630", + "timestamp": "2025-11-27T04:01:59.082875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227347, - "rtt_ms": 1.227347, + "rtt_ns": 1841250, + "rtt_ms": 1.84125, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.555607166Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:59.083201-08:00" }, { "operation": "add_edge", - "rtt_ns": 930297, - "rtt_ms": 0.930297, + "rtt_ns": 1874625, + "rtt_ms": 1.874625, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "325", - "timestamp": "2025-11-27T01:22:00.556244434Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.083221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341185, - "rtt_ms": 1.341185, + "rtt_ns": 2315917, + "rtt_ms": 2.315917, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.556293803Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.083226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202016, - "rtt_ms": 1.202016, + "rtt_ns": 2320291, + "rtt_ms": 2.320291, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.556308843Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:59.083242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322666, - "rtt_ms": 1.322666, + "rtt_ns": 1665042, + "rtt_ms": 1.665042, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.556447223Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.083244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588945, - "rtt_ms": 1.588945, + "rtt_ns": 2386834, + "rtt_ms": 2.386834, + "checkpoint": 0, + "vertex_from": "288", + "vertex_to": "992", + "timestamp": "2025-11-27T04:01:59.083263-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1953834, + "rtt_ms": 1.953834, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.556467753Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.083284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555995, - "rtt_ms": 1.555995, + "rtt_ns": 2387084, + "rtt_ms": 2.387084, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.557129291Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.083284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664035, - "rtt_ms": 1.664035, + "rtt_ns": 1856250, + "rtt_ms": 1.85625, "checkpoint": 0, "vertex_from": "289", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.557162691Z" + "timestamp": "2025-11-27T04:01:59.083344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629145, - "rtt_ms": 1.629145, + "rtt_ns": 1280250, + "rtt_ms": 1.28025, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.557164651Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.084507-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559625, - "rtt_ms": 1.559625, + "rtt_ns": 1687625, + "rtt_ms": 1.687625, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "330", - "timestamp": "2025-11-27T01:22:00.557167861Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.084565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371706, - "rtt_ms": 1.371706, + "rtt_ns": 1316791, + "rtt_ms": 1.316791, "checkpoint": 0, "vertex_from": "289", "vertex_to": "442", - "timestamp": "2025-11-27T01:22:00.557821989Z" + "timestamp": "2025-11-27T04:01:59.08458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599744, - "rtt_ms": 1.599744, + "rtt_ns": 1627083, + "rtt_ms": 1.627083, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.557847388Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:59.084849-08:00" }, { "operation": "add_edge", - "rtt_ns": 845937, - "rtt_ms": 0.845937, + "rtt_ns": 1605375, + "rtt_ms": 1.605375, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.557976588Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:59.084893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665155, - "rtt_ms": 1.665155, + "rtt_ns": 1664958, + "rtt_ms": 1.664958, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "406", - "timestamp": "2025-11-27T01:22:00.558135008Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.084908-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917954, - "rtt_ms": 1.917954, + "rtt_ns": 1567042, + "rtt_ms": 1.567042, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.558212817Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:59.084913-08:00" }, { "operation": "add_edge", - "rtt_ns": 2668161, - "rtt_ms": 2.668161, + "rtt_ns": 1907625, + "rtt_ms": 1.907625, "checkpoint": 0, "vertex_from": "289", "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.558260757Z" + "timestamp": "2025-11-27T04:01:59.085109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1986874, - "rtt_ms": 1.986874, + "rtt_ns": 1927166, + "rtt_ms": 1.927166, "checkpoint": 0, "vertex_from": "289", "vertex_to": "609", - "timestamp": "2025-11-27T01:22:00.558298177Z" + "timestamp": "2025-11-27T04:01:59.085172-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1936500, + "rtt_ms": 1.9365, + "checkpoint": 0, + "vertex_from": "289", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.085303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1299546, - "rtt_ms": 1.299546, + "rtt_ns": 1528167, + "rtt_ms": 1.528167, "checkpoint": 0, "vertex_from": "289", "vertex_to": "905", - "timestamp": "2025-11-27T01:22:00.558465507Z" + "timestamp": "2025-11-27T04:01:59.086038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794244, - "rtt_ms": 1.794244, + "rtt_ns": 1457042, + "rtt_ms": 1.457042, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "838", - "timestamp": "2025-11-27T01:22:00.558965445Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:59.086351-08:00" }, { "operation": "add_edge", - "rtt_ns": 839928, - "rtt_ms": 0.839928, + "rtt_ns": 1915875, + "rtt_ms": 1.915875, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "796", - "timestamp": "2025-11-27T01:22:00.559054865Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:01:59.086482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102927, - "rtt_ms": 1.102927, + "rtt_ns": 1900917, + "rtt_ms": 1.900917, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.559081605Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.086483-08:00" }, { "operation": "add_edge", - "rtt_ns": 1236947, - "rtt_ms": 1.236947, + "rtt_ns": 1592166, + "rtt_ms": 1.592166, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "710", - "timestamp": "2025-11-27T01:22:00.559086885Z" + "vertex_to": "334", + "timestamp": "2025-11-27T04:01:59.086502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951773, - "rtt_ms": 1.951773, + "rtt_ns": 1863625, + "rtt_ms": 1.863625, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.559116544Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:01:59.086714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357015, - "rtt_ms": 1.357015, + "rtt_ns": 1625042, + "rtt_ms": 1.625042, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.559180964Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.086735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173686, - "rtt_ms": 1.173686, + "rtt_ns": 1585333, + "rtt_ms": 1.585333, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "334", - "timestamp": "2025-11-27T01:22:00.559309954Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:59.086758-08:00" }, { "operation": "add_edge", - "rtt_ns": 774107, - "rtt_ms": 0.774107, + "rtt_ns": 1857166, + "rtt_ms": 1.857166, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "328", - "timestamp": "2025-11-27T01:22:00.559830212Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:59.086771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641355, - "rtt_ms": 1.641355, + "rtt_ns": 1727333, + "rtt_ms": 1.727333, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.559903662Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.087033-08:00" }, { "operation": "add_edge", - "rtt_ns": 955727, - "rtt_ms": 0.955727, + "rtt_ns": 1893125, + "rtt_ms": 1.893125, "checkpoint": 0, "vertex_from": "289", "vertex_to": "396", - "timestamp": "2025-11-27T01:22:00.559923102Z" + "timestamp": "2025-11-27T04:01:59.087934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908744, - "rtt_ms": 1.908744, + "rtt_ns": 2616666, + "rtt_ms": 2.616666, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.560208461Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:59.08897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139526, - "rtt_ms": 1.139526, + "rtt_ns": 2557708, + "rtt_ms": 2.557708, "checkpoint": 0, "vertex_from": "289", "vertex_to": "448", - "timestamp": "2025-11-27T01:22:00.560223421Z" + "timestamp": "2025-11-27T04:01:59.089042-08:00" }, { "operation": "add_edge", - "rtt_ns": 2235122, - "rtt_ms": 2.235122, + "rtt_ns": 2607500, + "rtt_ms": 2.6075, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.560702579Z" + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:59.089092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579255, - "rtt_ms": 1.579255, + "rtt_ns": 2344917, + "rtt_ms": 2.344917, "checkpoint": 0, - "vertex_from": "289", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.560761449Z" + "vertex_from": "290", + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:59.089117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668835, - "rtt_ms": 1.668835, + "rtt_ns": 2644333, + "rtt_ms": 2.644333, "checkpoint": 0, "vertex_from": "289", "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.560787079Z" + "timestamp": "2025-11-27T04:01:59.089149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493765, - "rtt_ms": 1.493765, + "rtt_ns": 2718166, + "rtt_ms": 2.718166, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.560805139Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.089435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746794, - "rtt_ms": 1.746794, + "rtt_ns": 2422583, + "rtt_ms": 2.422583, "checkpoint": 0, - "vertex_from": "289", - "vertex_to": "292", - "timestamp": "2025-11-27T01:22:00.560834899Z" + "vertex_from": "290", + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:59.089458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643375, - "rtt_ms": 1.643375, + "rtt_ns": 2740833, + "rtt_ms": 2.740833, "checkpoint": 0, "vertex_from": "289", - "vertex_to": "324", - "timestamp": "2025-11-27T01:22:00.561475577Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.089477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798884, - "rtt_ms": 1.798884, + "rtt_ns": 2808625, + "rtt_ms": 2.808625, "checkpoint": 0, - "vertex_from": "290", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.561704396Z" + "vertex_from": "289", + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:59.089567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507635, - "rtt_ms": 1.507635, + "rtt_ns": 1787417, + "rtt_ms": 1.787417, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.561732376Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.089722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053317, - "rtt_ms": 1.053317, + "rtt_ns": 1898708, + "rtt_ms": 1.898708, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "984", - "timestamp": "2025-11-27T01:22:00.561758426Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.090871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908563, - "rtt_ms": 1.908563, + "rtt_ns": 1412875, + "rtt_ms": 1.412875, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.561832985Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.09089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675314, - "rtt_ms": 1.675314, + "rtt_ns": 2123375, + "rtt_ms": 2.123375, "checkpoint": 0, "vertex_from": "290", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.562437623Z" + "timestamp": "2025-11-27T04:01:59.091217-08:00" }, { "operation": "add_edge", - "rtt_ns": 2229082, - "rtt_ms": 2.229082, - "checkpoint": 0, - "vertex_from": "290", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.562439703Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1663324, - "rtt_ms": 1.663324, + "rtt_ns": 1811167, + "rtt_ms": 1.811167, "checkpoint": 0, "vertex_from": "290", "vertex_to": "736", - "timestamp": "2025-11-27T01:22:00.562499383Z" + "timestamp": "2025-11-27T04:01:59.091248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696164, - "rtt_ms": 1.696164, + "rtt_ns": 1813625, + "rtt_ms": 1.813625, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.562504203Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.091273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727084, - "rtt_ms": 1.727084, + "rtt_ns": 2125083, + "rtt_ms": 2.125083, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "368", - "timestamp": "2025-11-27T01:22:00.562516103Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.091275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271945, - "rtt_ms": 1.271945, + "rtt_ns": 2255291, + "rtt_ms": 2.255291, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.562748832Z" + "vertex_to": "984", + "timestamp": "2025-11-27T04:01:59.091298-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697595, - "rtt_ms": 1.697595, + "rtt_ns": 1599166, + "rtt_ms": 1.599166, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "361", - "timestamp": "2025-11-27T01:22:00.564136978Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:59.091322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668205, - "rtt_ms": 1.668205, + "rtt_ns": 1754208, + "rtt_ms": 1.754208, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "661", - "timestamp": "2025-11-27T01:22:00.564174808Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.091322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1662355, - "rtt_ms": 1.662355, + "rtt_ns": 2230667, + "rtt_ms": 2.230667, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.564181348Z" + "vertex_to": "368", + "timestamp": "2025-11-27T04:01:59.091349-08:00" }, { "operation": "add_edge", - "rtt_ns": 2425462, - "rtt_ms": 2.425462, + "rtt_ns": 1636833, + "rtt_ms": 1.636833, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.564186158Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:01:59.092509-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704885, - "rtt_ms": 1.704885, + "rtt_ns": 1638459, + "rtt_ms": 1.638459, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.564211508Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:59.092529-08:00" }, { "operation": "add_edge", - "rtt_ns": 2531161, - "rtt_ms": 2.531161, + "rtt_ns": 1456458, + "rtt_ms": 1.456458, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.564240867Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:59.09278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809194, - "rtt_ms": 1.809194, + "rtt_ns": 1449208, + "rtt_ms": 1.449208, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.564250227Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:59.092799-08:00" }, { "operation": "add_edge", - "rtt_ns": 2488912, - "rtt_ms": 2.488912, + "rtt_ns": 1557875, + "rtt_ms": 1.557875, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "912", - "timestamp": "2025-11-27T01:22:00.564323687Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.092809-08:00" }, { "operation": "add_edge", - "rtt_ns": 2779601, - "rtt_ms": 2.779601, + "rtt_ns": 1682833, + "rtt_ms": 1.682833, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.564514277Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:01:59.093007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2283863, - "rtt_ms": 2.283863, + "rtt_ns": 1741000, + "rtt_ms": 1.741, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.565034835Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.093017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1502475, - "rtt_ms": 1.502475, + "rtt_ns": 1861916, + "rtt_ms": 1.861916, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "613", - "timestamp": "2025-11-27T01:22:00.565686403Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.09308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528565, - "rtt_ms": 1.528565, + "rtt_ns": 1845417, + "rtt_ms": 1.845417, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.565741783Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.093146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231296, - "rtt_ms": 1.231296, + "rtt_ns": 1909292, + "rtt_ms": 1.909292, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.565747463Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:01:59.093184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573385, - "rtt_ms": 1.573385, + "rtt_ns": 1632500, + "rtt_ms": 1.6325, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.565818162Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.094163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675274, - "rtt_ms": 1.675274, + "rtt_ns": 1671792, + "rtt_ms": 1.671792, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "565", - "timestamp": "2025-11-27T01:22:00.565852552Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:59.094182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713634, - "rtt_ms": 1.713634, + "rtt_ns": 1767167, + "rtt_ms": 1.767167, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "657", - "timestamp": "2025-11-27T01:22:00.565854562Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.094567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786144, - "rtt_ms": 1.786144, + "rtt_ns": 1806875, + "rtt_ms": 1.806875, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.565975682Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:59.094588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749815, - "rtt_ms": 1.749815, + "rtt_ns": 1456542, + "rtt_ms": 1.456542, "checkpoint": 0, - "vertex_from": "290", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.566001152Z" + "vertex_from": "291", + "vertex_to": "292", + "timestamp": "2025-11-27T04:01:59.094605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683545, - "rtt_ms": 1.683545, + "rtt_ns": 1435000, + "rtt_ms": 1.435, "checkpoint": 0, - "vertex_from": "290", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.566008882Z" + "vertex_from": "291", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.09462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936454, - "rtt_ms": 1.936454, + "rtt_ns": 1626833, + "rtt_ms": 1.626833, "checkpoint": 0, "vertex_from": "290", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.566972529Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.094635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295446, - "rtt_ms": 1.295446, + "rtt_ns": 1839750, + "rtt_ms": 1.83975, "checkpoint": 0, - "vertex_from": "291", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.566984659Z" + "vertex_from": "290", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.094651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363395, - "rtt_ms": 1.363395, + "rtt_ns": 1864000, + "rtt_ms": 1.864, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "292", - "timestamp": "2025-11-27T01:22:00.567106488Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.094945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730534, - "rtt_ms": 1.730534, + "rtt_ns": 1938208, + "rtt_ms": 1.938208, "checkpoint": 0, - "vertex_from": "291", - "vertex_to": "526", - "timestamp": "2025-11-27T01:22:00.567741616Z" + "vertex_from": "290", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.094957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938304, - "rtt_ms": 1.938304, + "rtt_ns": 1642208, + "rtt_ms": 1.642208, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "304", - "timestamp": "2025-11-27T01:22:00.567793646Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:59.095807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1961054, - "rtt_ms": 1.961054, + "rtt_ns": 1260041, + "rtt_ms": 1.260041, "checkpoint": 0, "vertex_from": "291", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.567818846Z" + "timestamp": "2025-11-27T04:01:59.095828-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855444, - "rtt_ms": 1.855444, + "rtt_ns": 1487459, + "rtt_ms": 1.487459, "checkpoint": 0, "vertex_from": "291", "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.567832736Z" + "timestamp": "2025-11-27T04:01:59.096076-08:00" }, { "operation": "add_edge", - "rtt_ns": 2017354, - "rtt_ms": 2.017354, + "rtt_ns": 1489917, + "rtt_ms": 1.489917, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "322", - "timestamp": "2025-11-27T01:22:00.567837916Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.096095-08:00" }, { "operation": "add_edge", - "rtt_ns": 2122773, - "rtt_ms": 2.122773, + "rtt_ns": 1496750, + "rtt_ms": 1.49675, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.567871866Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:59.096132-08:00" }, { "operation": "add_edge", - "rtt_ns": 883658, - "rtt_ms": 0.883658, + "rtt_ns": 1502167, + "rtt_ms": 1.502167, "checkpoint": 0, - "vertex_from": "292", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.568627184Z" + "vertex_from": "291", + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.096155-08:00" }, { "operation": "add_edge", - "rtt_ns": 2677821, - "rtt_ms": 2.677821, + "rtt_ns": 1536042, + "rtt_ms": 1.536042, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.568680863Z" + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:59.096157-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778494, - "rtt_ms": 1.778494, + "rtt_ns": 1988958, + "rtt_ms": 1.988958, "checkpoint": 0, "vertex_from": "291", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.568764933Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:59.096172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822414, - "rtt_ms": 1.822414, + "rtt_ns": 2010291, + "rtt_ms": 2.010291, "checkpoint": 0, - "vertex_from": "291", - "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.568798283Z" + "vertex_from": "292", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.096956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2190613, - "rtt_ms": 2.190613, + "rtt_ns": 2008708, + "rtt_ms": 2.008708, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.569299091Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.096974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528985, - "rtt_ms": 1.528985, + "rtt_ns": 1313334, + "rtt_ms": 1.313334, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "393", - "timestamp": "2025-11-27T01:22:00.569324021Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.097446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1616865, - "rtt_ms": 1.616865, + "rtt_ns": 1305750, + "rtt_ms": 1.30575, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.569458431Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.097463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621745, - "rtt_ms": 1.621745, + "rtt_ns": 1403750, + "rtt_ms": 1.40375, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.569495041Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.097578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705555, - "rtt_ms": 1.705555, + "rtt_ns": 1440000, + "rtt_ms": 1.44, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.569526251Z" + "vertex_to": "306", + "timestamp": "2025-11-27T04:01:59.097598-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718265, - "rtt_ms": 1.718265, + "rtt_ns": 1529167, + "rtt_ms": 1.529167, "checkpoint": 0, "vertex_from": "292", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.569553851Z" + "timestamp": "2025-11-27T04:01:59.097606-08:00" }, { "operation": "add_edge", - "rtt_ns": 2273652, - "rtt_ms": 2.273652, + "rtt_ns": 1829208, + "rtt_ms": 1.829208, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "306", - "timestamp": "2025-11-27T01:22:00.570902986Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:59.097658-08:00" }, { "operation": "add_edge", - "rtt_ns": 2208473, - "rtt_ms": 2.208473, + "rtt_ns": 1580542, + "rtt_ms": 1.580542, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.570974696Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.097676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574162, - "rtt_ms": 2.574162, + "rtt_ns": 2082875, + "rtt_ms": 2.082875, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.571256155Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:59.097891-08:00" }, { "operation": "add_edge", - "rtt_ns": 2603952, - "rtt_ms": 2.603952, + "rtt_ns": 1566000, + "rtt_ms": 1.566, "checkpoint": 0, "vertex_from": "292", "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.571404125Z" + "timestamp": "2025-11-27T04:01:59.098524-08:00" }, { "operation": "add_edge", - "rtt_ns": 2152904, - "rtt_ms": 2.152904, + "rtt_ns": 1172750, + "rtt_ms": 1.17275, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.571477915Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.099064-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291193, - "rtt_ms": 2.291193, + "rtt_ns": 2107833, + "rtt_ms": 2.107833, "checkpoint": 0, "vertex_from": "292", "vertex_to": "912", - "timestamp": "2025-11-27T01:22:00.571592254Z" + "timestamp": "2025-11-27T04:01:59.099083-08:00" }, { "operation": "add_edge", - "rtt_ns": 2462872, - "rtt_ms": 2.462872, + "rtt_ns": 1530250, + "rtt_ms": 1.53025, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "568", - "timestamp": "2025-11-27T01:22:00.571922673Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:59.099109-08:00" }, { "operation": "add_edge", - "rtt_ns": 2550952, - "rtt_ms": 2.550952, + "rtt_ns": 1668584, + "rtt_ms": 1.668584, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.572078363Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:59.099133-08:00" }, { "operation": "add_edge", - "rtt_ns": 2621771, - "rtt_ms": 2.621771, + "rtt_ns": 1694917, + "rtt_ms": 1.694917, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.572118272Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.099142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1246716, - "rtt_ms": 1.246716, + "rtt_ns": 3293541, + "rtt_ms": 3.293541, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "450", - "timestamp": "2025-11-27T01:22:00.572224262Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:59.100901-08:00" }, { "operation": "add_edge", - "rtt_ns": 2724891, - "rtt_ms": 2.724891, + "rtt_ns": 3381708, + "rtt_ms": 3.381708, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.572281512Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:59.10098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499046, - "rtt_ms": 1.499046, + "rtt_ns": 3383750, + "rtt_ms": 3.38375, "checkpoint": 0, "vertex_from": "292", "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.572403142Z" + "timestamp": "2025-11-27T04:01:59.101043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1361246, - "rtt_ms": 1.361246, + "rtt_ns": 2567334, + "rtt_ms": 2.567334, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.572618881Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.101094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335606, - "rtt_ms": 1.335606, + "rtt_ns": 2005708, + "rtt_ms": 2.005708, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.572741921Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:59.101149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324645, - "rtt_ms": 1.324645, + "rtt_ns": 2228458, + "rtt_ms": 2.228458, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "938", - "timestamp": "2025-11-27T01:22:00.57280379Z" + "vertex_to": "296", + "timestamp": "2025-11-27T04:01:59.101338-08:00" }, { "operation": "add_edge", - "rtt_ns": 2016234, - "rtt_ms": 2.016234, + "rtt_ns": 2250000, + "rtt_ms": 2.25, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "598", - "timestamp": "2025-11-27T01:22:00.573610318Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:59.101384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606095, - "rtt_ms": 1.606095, + "rtt_ns": 2335208, + "rtt_ms": 2.335208, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "330", - "timestamp": "2025-11-27T01:22:00.573685668Z" + "vertex_to": "938", + "timestamp": "2025-11-27T04:01:59.1014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786404, - "rtt_ms": 1.786404, + "rtt_ns": 2359959, + "rtt_ms": 2.359959, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "296", - "timestamp": "2025-11-27T01:22:00.573711057Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:01:59.101444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621575, - "rtt_ms": 1.621575, + "rtt_ns": 3779875, + "rtt_ms": 3.779875, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.573740667Z" + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:59.101457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483515, - "rtt_ms": 1.483515, + "rtt_ns": 1916208, + "rtt_ms": 1.916208, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.573767327Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.10296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573195, - "rtt_ms": 1.573195, + "rtt_ns": 1529792, + "rtt_ms": 1.529792, "checkpoint": 0, - "vertex_from": "292", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.573798607Z" + "vertex_from": "293", + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.102988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576355, - "rtt_ms": 1.576355, + "rtt_ns": 1858083, + "rtt_ms": 1.858083, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.573980837Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:59.103008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290135, - "rtt_ms": 1.290135, + "rtt_ns": 2535042, + "rtt_ms": 2.535042, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "523", - "timestamp": "2025-11-27T01:22:00.574033276Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:59.103631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248286, - "rtt_ms": 1.248286, + "rtt_ns": 2308750, + "rtt_ms": 2.30875, "checkpoint": 0, "vertex_from": "292", "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.574052946Z" + "timestamp": "2025-11-27T04:01:59.103649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439895, - "rtt_ms": 1.439895, + "rtt_ns": 2201917, + "rtt_ms": 2.201917, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.574060136Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:01:59.103649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094136, - "rtt_ms": 1.094136, + "rtt_ns": 2747541, + "rtt_ms": 2.747541, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "868", - "timestamp": "2025-11-27T01:22:00.574705814Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.103652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106936, - "rtt_ms": 1.106936, + "rtt_ns": 2710583, + "rtt_ms": 2.710583, "checkpoint": 0, "vertex_from": "292", - "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.574793624Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.103692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1186597, - "rtt_ms": 1.186597, + "rtt_ns": 2310417, + "rtt_ms": 2.310417, "checkpoint": 0, - "vertex_from": "293", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.574928484Z" + "vertex_from": "292", + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:59.103712-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177966, - "rtt_ms": 1.177966, + "rtt_ns": 2338292, + "rtt_ms": 2.338292, "checkpoint": 0, - "vertex_from": "293", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.574977583Z" + "vertex_from": "292", + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:59.103723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1339746, - "rtt_ms": 1.339746, + "rtt_ns": 1588084, + "rtt_ms": 1.588084, "checkpoint": 0, "vertex_from": "293", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.575111303Z" + "timestamp": "2025-11-27T04:01:59.10455-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500806, - "rtt_ms": 1.500806, + "rtt_ns": 1933291, + "rtt_ms": 1.933291, "checkpoint": 0, - "vertex_from": "292", - "vertex_to": "696", - "timestamp": "2025-11-27T01:22:00.575213383Z" + "vertex_from": "293", + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:59.104943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233136, - "rtt_ms": 1.233136, + "rtt_ns": 1974375, + "rtt_ms": 1.974375, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.575215683Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.104963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190067, - "rtt_ms": 1.190067, + "rtt_ns": 1919458, + "rtt_ms": 1.919458, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.575224513Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.105571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179127, - "rtt_ms": 1.179127, + "rtt_ns": 1948208, + "rtt_ms": 1.948208, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "813", - "timestamp": "2025-11-27T01:22:00.575241193Z" + "vertex_to": "331", + "timestamp": "2025-11-27T04:01:59.105601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248566, - "rtt_ms": 1.248566, + "rtt_ns": 1910167, + "rtt_ms": 1.910167, "checkpoint": 0, - "vertex_from": "293", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.575309362Z" + "vertex_from": "294", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.105635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374436, - "rtt_ms": 1.374436, + "rtt_ns": 2578333, + "rtt_ms": 2.578333, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.57616977Z" + "vertex_to": "813", + "timestamp": "2025-11-27T04:01:59.106231-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344115, - "rtt_ms": 1.344115, + "rtt_ns": 2621333, + "rtt_ms": 2.621333, "checkpoint": 0, "vertex_from": "293", "vertex_to": "550", - "timestamp": "2025-11-27T01:22:00.576273939Z" + "timestamp": "2025-11-27T04:01:59.106334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611895, - "rtt_ms": 1.611895, + "rtt_ns": 2670958, + "rtt_ms": 2.670958, "checkpoint": 0, "vertex_from": "293", - "vertex_to": "331", - "timestamp": "2025-11-27T01:22:00.576320569Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.106364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092777, - "rtt_ms": 1.092777, + "rtt_ns": 2750208, + "rtt_ms": 2.750208, "checkpoint": 0, - "vertex_from": "294", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.576403369Z" + "vertex_from": "293", + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.106382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494376, - "rtt_ms": 1.494376, + "rtt_ns": 2085292, + "rtt_ms": 2.085292, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.576474689Z" + "vertex_to": "397", + "timestamp": "2025-11-27T04:01:59.106637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406345, - "rtt_ms": 1.406345, + "rtt_ns": 1835125, + "rtt_ms": 1.835125, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "397", - "timestamp": "2025-11-27T01:22:00.576523908Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:59.106779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1357715, - "rtt_ms": 1.357715, + "rtt_ns": 2147666, + "rtt_ms": 2.147666, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.576583738Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:59.107112-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427055, - "rtt_ms": 1.427055, + "rtt_ns": 2149125, + "rtt_ms": 2.149125, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "330", - "timestamp": "2025-11-27T01:22:00.576641858Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.107722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415655, - "rtt_ms": 1.415655, + "rtt_ns": 2097125, + "rtt_ms": 2.097125, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.576659248Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.107733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496155, - "rtt_ms": 1.496155, + "rtt_ns": 1402625, + "rtt_ms": 1.402625, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.576713838Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.108041-08:00" }, { "operation": "add_edge", - "rtt_ns": 755467, - "rtt_ms": 0.755467, + "rtt_ns": 1765750, + "rtt_ms": 1.76575, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "336", - "timestamp": "2025-11-27T01:22:00.576926957Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:59.108101-08:00" }, { "operation": "add_edge", - "rtt_ns": 667248, - "rtt_ms": 0.667248, + "rtt_ns": 1319750, + "rtt_ms": 1.31975, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "304", - "timestamp": "2025-11-27T01:22:00.576943137Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:01:59.108102-08:00" }, { "operation": "add_edge", - "rtt_ns": 841177, - "rtt_ms": 0.841177, + "rtt_ns": 2516250, + "rtt_ms": 2.51625, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.577162876Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.108119-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024136, - "rtt_ms": 1.024136, + "rtt_ns": 1770417, + "rtt_ms": 1.770417, "checkpoint": 0, - "vertex_from": "295", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.577685164Z" + "vertex_from": "294", + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:59.108136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165976, - "rtt_ms": 1.165976, + "rtt_ns": 1903792, + "rtt_ms": 1.903792, "checkpoint": 0, "vertex_from": "294", - "vertex_to": "849", - "timestamp": "2025-11-27T01:22:00.577692044Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:59.108148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290975, - "rtt_ms": 1.290975, + "rtt_ns": 1772500, + "rtt_ms": 1.7725, "checkpoint": 0, "vertex_from": "294", "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.577695604Z" + "timestamp": "2025-11-27T04:01:59.108156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1014826, - "rtt_ms": 1.014826, + "rtt_ns": 1403167, + "rtt_ms": 1.403167, "checkpoint": 0, "vertex_from": "295", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.577730944Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.108516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227716, - "rtt_ms": 1.227716, + "rtt_ns": 1451959, + "rtt_ms": 1.451959, "checkpoint": 0, "vertex_from": "295", "vertex_to": "372", - "timestamp": "2025-11-27T01:22:00.577871694Z" + "timestamp": "2025-11-27T04:01:59.109175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472105, - "rtt_ms": 1.472105, - "checkpoint": 0, - "vertex_from": "294", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.577948124Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1546325, - "rtt_ms": 1.546325, + "rtt_ns": 1499042, + "rtt_ms": 1.499042, "checkpoint": 0, "vertex_from": "295", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.578131653Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.109233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572695, - "rtt_ms": 1.572695, + "rtt_ns": 1451250, + "rtt_ms": 1.45125, "checkpoint": 0, "vertex_from": "296", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.578737061Z" + "timestamp": "2025-11-27T04:01:59.109571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857614, - "rtt_ms": 1.857614, + "rtt_ns": 1544875, + "rtt_ms": 1.544875, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.578785771Z" + "vertex_from": "295", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.109588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882944, - "rtt_ms": 1.882944, + "rtt_ns": 1503792, + "rtt_ms": 1.503792, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "304", - "timestamp": "2025-11-27T01:22:00.578827131Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.109641-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1333325, - "rtt_ms": 1.333325, + "operation": "add_edge", + "rtt_ns": 1830000, + "rtt_ms": 1.83, "checkpoint": 0, - "vertex_from": "711", - "timestamp": "2025-11-27T01:22:00.579215979Z" + "vertex_from": "296", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.109933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432455, - "rtt_ms": 1.432455, + "rtt_ns": 1849667, + "rtt_ms": 1.849667, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "485", - "timestamp": "2025-11-27T01:22:00.579382769Z" + "vertex_to": "304", + "timestamp": "2025-11-27T04:01:59.109952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827584, - "rtt_ms": 1.827584, + "rtt_ns": 1810667, + "rtt_ms": 1.810667, "checkpoint": 0, "vertex_from": "296", "vertex_to": "715", - "timestamp": "2025-11-27T01:22:00.579524438Z" + "timestamp": "2025-11-27T04:01:59.109968-08:00" }, { "operation": "add_edge", - "rtt_ns": 2041974, - "rtt_ms": 2.041974, + "rtt_ns": 1940084, + "rtt_ms": 1.940084, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.579728768Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:59.110089-08:00" }, { "operation": "add_edge", - "rtt_ns": 2469712, - "rtt_ms": 2.469712, + "rtt_ns": 1655334, + "rtt_ms": 1.655334, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.580163686Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:59.110174-08:00" }, { "operation": "add_edge", - "rtt_ns": 913127, - "rtt_ms": 0.913127, + "rtt_ns": 1355542, + "rtt_ms": 1.355542, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.580298666Z" + "vertex_to": "322", + "timestamp": "2025-11-27T04:01:59.110998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2731491, - "rtt_ms": 2.731491, + "rtt_ns": 1425833, + "rtt_ms": 1.425833, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.580464215Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.111014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687874, - "rtt_ms": 1.687874, + "rtt_ns": 1427166, + "rtt_ms": 1.427166, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "322", - "timestamp": "2025-11-27T01:22:00.580475305Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:59.111396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1343466, - "rtt_ms": 1.343466, + "rtt_ns": 1511250, + "rtt_ms": 1.51125, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "711", - "timestamp": "2025-11-27T01:22:00.580560015Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.111446-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471352, - "rtt_ms": 2.471352, + "rtt_ns": 1892917, + "rtt_ms": 1.892917, "checkpoint": 0, "vertex_from": "296", "vertex_to": "464", - "timestamp": "2025-11-27T01:22:00.580605855Z" + "timestamp": "2025-11-27T04:01:59.111465-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2286583, + "rtt_ms": 2.286583, + "checkpoint": 0, + "vertex_from": "711", + "timestamp": "2025-11-27T04:01:59.111465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832454, - "rtt_ms": 1.832454, + "rtt_ns": 1390625, + "rtt_ms": 1.390625, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.580660855Z" + "vertex_to": "884", + "timestamp": "2025-11-27T04:01:59.111482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215766, - "rtt_ms": 1.215766, + "rtt_ns": 1609750, + "rtt_ms": 1.60975, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.580742114Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.111563-08:00" }, { "operation": "add_edge", - "rtt_ns": 2049263, - "rtt_ms": 2.049263, + "rtt_ns": 1442750, + "rtt_ms": 1.44275, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.580788664Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:59.111618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1830364, - "rtt_ms": 1.830364, + "rtt_ns": 3240875, + "rtt_ms": 3.240875, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "884", - "timestamp": "2025-11-27T01:22:00.581561422Z" + "vertex_to": "485", + "timestamp": "2025-11-27T04:01:59.112475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427486, - "rtt_ms": 1.427486, + "rtt_ns": 1476417, + "rtt_ms": 1.476417, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "613", - "timestamp": "2025-11-27T01:22:00.581592552Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:59.112475-08:00" }, { "operation": "add_edge", - "rtt_ns": 930607, - "rtt_ms": 0.930607, + "rtt_ns": 1540917, + "rtt_ms": 1.540917, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.581674201Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.112556-08:00" }, { "operation": "add_edge", - "rtt_ns": 897997, - "rtt_ms": 0.897997, + "rtt_ns": 1399334, + "rtt_ms": 1.399334, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.581688161Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:59.112798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406275, - "rtt_ms": 1.406275, + "rtt_ns": 1654833, + "rtt_ms": 1.654833, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "388", - "timestamp": "2025-11-27T01:22:00.581706881Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:59.113121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147556, - "rtt_ms": 1.147556, + "rtt_ns": 1719166, + "rtt_ms": 1.719166, "checkpoint": 0, "vertex_from": "296", "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.581711861Z" + "timestamp": "2025-11-27T04:01:59.113166-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249526, - "rtt_ms": 1.249526, + "rtt_ns": 1565167, + "rtt_ms": 1.565167, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.581714861Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.113184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108816, - "rtt_ms": 1.108816, + "rtt_ns": 1735917, + "rtt_ms": 1.735917, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.581716611Z" + "vertex_to": "711", + "timestamp": "2025-11-27T04:01:59.113202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074146, - "rtt_ms": 1.074146, + "rtt_ns": 1757541, + "rtt_ms": 1.757541, "checkpoint": 0, "vertex_from": "296", "vertex_to": "336", - "timestamp": "2025-11-27T01:22:00.581737561Z" + "timestamp": "2025-11-27T04:01:59.113241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285976, - "rtt_ms": 1.285976, + "rtt_ns": 1833166, + "rtt_ms": 1.833166, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "535", - "timestamp": "2025-11-27T01:22:00.581763701Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.113397-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1067117, - "rtt_ms": 1.067117, + "operation": "add_edge", + "rtt_ns": 1597125, + "rtt_ms": 1.597125, "checkpoint": 0, - "vertex_from": "903", - "timestamp": "2025-11-27T01:22:00.582758998Z" + "vertex_from": "296", + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.114074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1089167, - "rtt_ms": 1.089167, + "rtt_ns": 1630667, + "rtt_ms": 1.630667, "checkpoint": 0, - "vertex_from": "297", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.582807068Z" + "vertex_from": "296", + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:59.114107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1775635, - "rtt_ms": 1.775635, + "rtt_ns": 1802625, + "rtt_ms": 1.802625, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.583483746Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:59.114359-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1830917, + "rtt_ms": 1.830917, + "checkpoint": 0, + "vertex_from": "903", + "timestamp": "2025-11-27T04:01:59.114632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1932084, - "rtt_ms": 1.932084, + "rtt_ns": 1485250, + "rtt_ms": 1.48525, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.583495826Z" + "vertex_from": "297", + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:59.114652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828185, - "rtt_ms": 1.828185, + "rtt_ns": 1539917, + "rtt_ms": 1.539917, "checkpoint": 0, "vertex_from": "296", - "vertex_to": "449", - "timestamp": "2025-11-27T01:22:00.583503936Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:01:59.114662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923274, - "rtt_ms": 1.923274, + "rtt_ns": 2350834, + "rtt_ms": 2.350834, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.583516996Z" + "vertex_from": "297", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.115554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790044, - "rtt_ms": 1.790044, + "rtt_ns": 2551958, + "rtt_ms": 2.551958, "checkpoint": 0, "vertex_from": "297", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.583554975Z" + "timestamp": "2025-11-27T04:01:59.11595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820774, - "rtt_ms": 1.820774, + "rtt_ns": 2733875, + "rtt_ms": 2.733875, "checkpoint": 0, "vertex_from": "297", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.583561255Z" + "timestamp": "2025-11-27T04:01:59.115978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849984, - "rtt_ms": 1.849984, + "rtt_ns": 2810166, + "rtt_ms": 2.810166, "checkpoint": 0, "vertex_from": "297", "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.583566555Z" + "timestamp": "2025-11-27T04:01:59.115994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855224, - "rtt_ms": 1.855224, + "rtt_ns": 2036167, + "rtt_ms": 2.036167, "checkpoint": 0, - "vertex_from": "297", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.583570195Z" + "vertex_from": "296", + "vertex_to": "903", + "timestamp": "2025-11-27T04:01:59.116669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767364, - "rtt_ms": 1.767364, + "rtt_ns": 2875916, + "rtt_ms": 2.875916, "checkpoint": 0, "vertex_from": "297", "vertex_to": "368", - "timestamp": "2025-11-27T01:22:00.584576862Z" + "timestamp": "2025-11-27T04:01:59.116951-08:00" }, { "operation": "add_edge", - "rtt_ns": 2280283, - "rtt_ms": 2.280283, + "rtt_ns": 2612541, + "rtt_ms": 2.612541, "checkpoint": 0, - "vertex_from": "296", - "vertex_to": "903", - "timestamp": "2025-11-27T01:22:00.585039831Z" + "vertex_from": "297", + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:59.116974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657934, - "rtt_ms": 1.657934, + "rtt_ns": 2873250, + "rtt_ms": 2.87325, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.58515704Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:01:59.116984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708384, - "rtt_ms": 1.708384, + "rtt_ns": 2341291, + "rtt_ms": 2.341291, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "330", - "timestamp": "2025-11-27T01:22:00.58522669Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.116995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779694, - "rtt_ms": 1.779694, + "rtt_ns": 2341500, + "rtt_ms": 2.3415, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "661", - "timestamp": "2025-11-27T01:22:00.585265Z" + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:59.117006-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692655, - "rtt_ms": 1.692655, + "rtt_ns": 2024125, + "rtt_ms": 2.024125, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "412", - "timestamp": "2025-11-27T01:22:00.58527074Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:59.117579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739605, - "rtt_ms": 1.739605, + "rtt_ns": 1408041, + "rtt_ms": 1.408041, "checkpoint": 0, - "vertex_from": "297", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.58530838Z" + "vertex_from": "298", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.118078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1749915, - "rtt_ms": 1.749915, + "rtt_ns": 2119792, + "rtt_ms": 2.119792, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.58531283Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.118098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806864, - "rtt_ms": 1.806864, + "rtt_ns": 2219833, + "rtt_ms": 2.219833, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.58531359Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.118171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792175, - "rtt_ms": 1.792175, + "rtt_ns": 2392833, + "rtt_ms": 2.392833, "checkpoint": 0, "vertex_from": "297", - "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.58534939Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:59.118388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033127, - "rtt_ms": 1.033127, + "rtt_ns": 1769625, + "rtt_ms": 1.769625, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.586191397Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:59.118721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638565, - "rtt_ms": 1.638565, + "rtt_ns": 1862000, + "rtt_ms": 1.862, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.586219427Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.118858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392405, - "rtt_ms": 1.392405, + "rtt_ns": 1874375, + "rtt_ms": 1.874375, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.586433806Z" + "vertex_to": "325", + "timestamp": "2025-11-27T04:01:59.118861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611245, - "rtt_ms": 1.611245, + "rtt_ns": 2218583, + "rtt_ms": 2.218583, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "325", - "timestamp": "2025-11-27T01:22:00.586839175Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:59.119225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1696175, - "rtt_ms": 1.696175, + "rtt_ns": 1699875, + "rtt_ms": 1.699875, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.586963845Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.119282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669385, - "rtt_ms": 1.669385, + "rtt_ns": 1282542, + "rtt_ms": 1.282542, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "534", - "timestamp": "2025-11-27T01:22:00.586983515Z" + "vertex_to": "594", + "timestamp": "2025-11-27T04:01:59.119382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716345, - "rtt_ms": 1.716345, + "rtt_ns": 1014375, + "rtt_ms": 1.014375, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "336", - "timestamp": "2025-11-27T01:22:00.586988905Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:01:59.119403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685755, - "rtt_ms": 1.685755, + "rtt_ns": 1766250, + "rtt_ms": 1.76625, "checkpoint": 0, "vertex_from": "298", - "vertex_to": "594", - "timestamp": "2025-11-27T01:22:00.587000625Z" + "vertex_to": "572", + "timestamp": "2025-11-27T04:01:59.11994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660635, - "rtt_ms": 1.660635, + "rtt_ns": 1405000, + "rtt_ms": 1.405, "checkpoint": 0, - "vertex_from": "298", - "vertex_to": "572", - "timestamp": "2025-11-27T01:22:00.587013935Z" + "vertex_from": "299", + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:59.120266-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704725, - "rtt_ms": 1.704725, + "rtt_ns": 1041208, + "rtt_ms": 1.041208, "checkpoint": 0, - "vertex_from": "298", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.587014105Z" + "vertex_from": "299", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:59.120324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1682845, - "rtt_ms": 1.682845, + "rtt_ns": 1334750, + "rtt_ms": 1.33475, "checkpoint": 0, - "vertex_from": "298", - "vertex_to": "632", - "timestamp": "2025-11-27T01:22:00.587876382Z" + "vertex_from": "300", + "vertex_to": "961", + "timestamp": "2025-11-27T04:01:59.120739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654705, - "rtt_ms": 1.654705, + "rtt_ns": 1387625, + "rtt_ms": 1.387625, "checkpoint": 0, - "vertex_from": "298", - "vertex_to": "480", - "timestamp": "2025-11-27T01:22:00.587877262Z" + "vertex_from": "300", + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:59.120771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142876, - "rtt_ms": 1.142876, + "rtt_ns": 2069000, + "rtt_ms": 2.069, "checkpoint": 0, - "vertex_from": "299", - "vertex_to": "329", - "timestamp": "2025-11-27T01:22:00.588108391Z" + "vertex_from": "298", + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:59.120791-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699695, - "rtt_ms": 1.699695, + "rtt_ns": 1930166, + "rtt_ms": 1.930166, "checkpoint": 0, "vertex_from": "299", - "vertex_to": "388", - "timestamp": "2025-11-27T01:22:00.588136711Z" + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:59.120793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718555, - "rtt_ms": 1.718555, + "rtt_ns": 1582208, + "rtt_ms": 1.582208, "checkpoint": 0, "vertex_from": "299", - "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.58855914Z" + "vertex_to": "329", + "timestamp": "2025-11-27T04:01:59.120809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639824, - "rtt_ms": 1.639824, + "rtt_ns": 2914584, + "rtt_ms": 2.914584, "checkpoint": 0, - "vertex_from": "300", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.588657679Z" + "vertex_from": "298", + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:59.120994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686654, - "rtt_ms": 1.686654, + "rtt_ns": 4540042, + "rtt_ms": 4.540042, "checkpoint": 0, - "vertex_from": "300", - "vertex_to": "961", - "timestamp": "2025-11-27T01:22:00.588690069Z" + "vertex_from": "298", + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:59.121515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704354, - "rtt_ms": 1.704354, + "rtt_ns": 1873583, + "rtt_ms": 1.873583, "checkpoint": 0, "vertex_from": "300", "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.588719719Z" + "timestamp": "2025-11-27T04:01:59.121815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742034, - "rtt_ms": 1.742034, + "rtt_ns": 1505917, + "rtt_ms": 1.505917, "checkpoint": 0, - "vertex_from": "299", - "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.588726839Z" + "vertex_from": "300", + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:59.121833-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770704, - "rtt_ms": 1.770704, + "rtt_ns": 1391417, + "rtt_ms": 1.391417, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.588761169Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.122163-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406786, - "rtt_ms": 1.406786, + "rtt_ns": 1386917, + "rtt_ms": 1.386917, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.589523177Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:59.122182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744574, - "rtt_ms": 1.744574, + "rtt_ns": 1404916, + "rtt_ms": 1.404916, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "962", - "timestamp": "2025-11-27T01:22:00.589622956Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.122197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488025, - "rtt_ms": 1.488025, + "rtt_ns": 1931125, + "rtt_ms": 1.931125, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.589626546Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.122198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751314, - "rtt_ms": 1.751314, + "rtt_ns": 1521459, + "rtt_ms": 1.521459, "checkpoint": 0, "vertex_from": "300", "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.589630836Z" + "timestamp": "2025-11-27T04:01:59.122262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525245, - "rtt_ms": 1.525245, + "rtt_ns": 1507208, + "rtt_ms": 1.507208, "checkpoint": 0, "vertex_from": "300", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.590216624Z" + "timestamp": "2025-11-27T04:01:59.122502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1660185, - "rtt_ms": 1.660185, + "rtt_ns": 1356750, + "rtt_ms": 1.35675, "checkpoint": 0, "vertex_from": "300", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.590381034Z" + "timestamp": "2025-11-27T04:01:59.122872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824124, - "rtt_ms": 1.824124, + "rtt_ns": 1488500, + "rtt_ms": 1.4885, "checkpoint": 0, "vertex_from": "300", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.590385214Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.123322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731405, - "rtt_ms": 1.731405, + "rtt_ns": 2570583, + "rtt_ms": 2.570583, "checkpoint": 0, "vertex_from": "300", "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.590390544Z" + "timestamp": "2025-11-27T04:01:59.12338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687675, - "rtt_ms": 1.687675, + "rtt_ns": 1475875, + "rtt_ms": 1.475875, "checkpoint": 0, - "vertex_from": "300", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.590415694Z" + "vertex_from": "303", + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:59.123979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666835, - "rtt_ms": 1.666835, + "rtt_ns": 1812666, + "rtt_ms": 1.812666, "checkpoint": 0, - "vertex_from": "300", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.590429994Z" + "vertex_from": "301", + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:59.123996-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565005, - "rtt_ms": 1.565005, + "rtt_ns": 1845666, + "rtt_ms": 1.845666, "checkpoint": 0, "vertex_from": "301", "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.591094982Z" + "timestamp": "2025-11-27T04:01:59.12401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551525, - "rtt_ms": 1.551525, + "rtt_ns": 1812958, + "rtt_ms": 1.812958, "checkpoint": 0, "vertex_from": "302", "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.591184111Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1653965, - "rtt_ms": 1.653965, - "checkpoint": 0, - "vertex_from": "301", - "vertex_to": "456", - "timestamp": "2025-11-27T01:22:00.591283931Z" + "timestamp": "2025-11-27T04:01:59.124025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113947, - "rtt_ms": 1.113947, + "rtt_ns": 1874542, + "rtt_ms": 1.874542, "checkpoint": 0, "vertex_from": "302", "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.591332381Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1775945, - "rtt_ms": 1.775945, - "checkpoint": 0, - "vertex_from": "301", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.591401041Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1732584, - "rtt_ms": 1.732584, - "checkpoint": 0, - "vertex_from": "303", - "vertex_to": "617", - "timestamp": "2025-11-27T01:22:00.592116998Z" + "timestamp": "2025-11-27T04:01:59.124138-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1728464, - "rtt_ms": 1.728464, + "rtt_ns": 1743250, + "rtt_ms": 1.74325, "checkpoint": 0, "vertex_from": "379", - "timestamp": "2025-11-27T01:22:00.592117948Z" + "timestamp": "2025-11-27T04:01:59.124617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1744124, - "rtt_ms": 1.744124, + "rtt_ns": 2797875, + "rtt_ms": 2.797875, "checkpoint": 0, - "vertex_from": "304", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.592161378Z" + "vertex_from": "301", + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:59.124999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816954, - "rtt_ms": 1.816954, + "rtt_ns": 1754708, + "rtt_ms": 1.754708, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.592208808Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.125136-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791044, - "rtt_ms": 1.791044, + "rtt_ns": 1254583, + "rtt_ms": 1.254583, "checkpoint": 0, "vertex_from": "304", "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.592222338Z" + "timestamp": "2025-11-27T04:01:59.125235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119466, - "rtt_ms": 1.119466, + "rtt_ns": 1226750, + "rtt_ms": 1.22675, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.592453117Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.125253-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871334, - "rtt_ms": 1.871334, + "rtt_ns": 1939083, + "rtt_ms": 1.939083, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "920", - "timestamp": "2025-11-27T01:22:00.593057115Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:59.125264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998453, - "rtt_ms": 1.998453, + "rtt_ns": 1755375, + "rtt_ms": 1.755375, "checkpoint": 0, "vertex_from": "304", "vertex_to": "378", - "timestamp": "2025-11-27T01:22:00.593096345Z" + "timestamp": "2025-11-27T04:01:59.125752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1851714, - "rtt_ms": 1.851714, + "rtt_ns": 1738167, + "rtt_ms": 1.738167, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.593137455Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:59.125877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091027, - "rtt_ms": 1.091027, + "rtt_ns": 1207166, + "rtt_ms": 1.207166, "checkpoint": 0, "vertex_from": "304", "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.593211065Z" + "timestamp": "2025-11-27T04:01:59.126344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075076, - "rtt_ms": 1.075076, + "rtt_ns": 1107958, + "rtt_ms": 1.107958, "checkpoint": 0, "vertex_from": "304", "vertex_to": "779", - "timestamp": "2025-11-27T01:22:00.593288274Z" + "timestamp": "2025-11-27T04:01:59.126362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1955003, - "rtt_ms": 1.955003, + "rtt_ns": 1380250, + "rtt_ms": 1.38025, "checkpoint": 0, "vertex_from": "304", "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.593358264Z" + "timestamp": "2025-11-27T04:01:59.12638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271396, - "rtt_ms": 1.271396, + "rtt_ns": 1854500, + "rtt_ms": 1.8545, "checkpoint": 0, "vertex_from": "303", "vertex_to": "379", - "timestamp": "2025-11-27T01:22:00.593389924Z" + "timestamp": "2025-11-27T04:01:59.126471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215096, - "rtt_ms": 1.215096, + "rtt_ns": 1261375, + "rtt_ms": 1.261375, "checkpoint": 0, "vertex_from": "304", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.593439874Z" + "timestamp": "2025-11-27T04:01:59.126526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282156, - "rtt_ms": 1.282156, + "rtt_ns": 1344084, + "rtt_ms": 1.344084, "checkpoint": 0, "vertex_from": "304", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.593445474Z" + "timestamp": "2025-11-27T04:01:59.12658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843964, - "rtt_ms": 1.843964, + "rtt_ns": 5037667, + "rtt_ms": 5.037667, "checkpoint": 0, - "vertex_from": "304", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.594299501Z" + "vertex_from": "300", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.126854-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395636, - "rtt_ms": 1.395636, + "rtt_ns": 3472958, + "rtt_ms": 3.472958, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.59468522Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:59.127484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674304, - "rtt_ms": 1.674304, + "rtt_ns": 1595792, + "rtt_ms": 1.595792, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.594733139Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:59.127959-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552414, - "rtt_ms": 1.552414, + "rtt_ns": 2224833, + "rtt_ms": 2.224833, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.594764829Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:59.127978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411135, - "rtt_ms": 1.411135, + "rtt_ns": 2114500, + "rtt_ms": 2.1145, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.594802109Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:59.127995-08:00" }, { "operation": "add_edge", - "rtt_ns": 1726734, - "rtt_ms": 1.726734, + "rtt_ns": 1752334, + "rtt_ms": 1.752334, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.594865949Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:59.128098-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537755, - "rtt_ms": 1.537755, + "rtt_ns": 1602042, + "rtt_ms": 1.602042, "checkpoint": 0, "vertex_from": "304", "vertex_to": "432", - "timestamp": "2025-11-27T01:22:00.594897449Z" + "timestamp": "2025-11-27T04:01:59.128129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1880924, - "rtt_ms": 1.880924, + "rtt_ns": 1784041, + "rtt_ms": 1.784041, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "328", - "timestamp": "2025-11-27T01:22:00.594979269Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:59.128165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552655, - "rtt_ms": 1.552655, + "rtt_ns": 1693375, + "rtt_ms": 1.693375, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "542", - "timestamp": "2025-11-27T01:22:00.594994269Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.128165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565925, - "rtt_ms": 1.565925, + "rtt_ns": 1440833, + "rtt_ms": 1.440833, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.595013599Z" + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:59.128296-08:00" }, { "operation": "add_edge", - "rtt_ns": 801347, - "rtt_ms": 0.801347, + "rtt_ns": 977291, + "rtt_ms": 0.977291, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "480", - "timestamp": "2025-11-27T01:22:00.595102448Z" - }, - { - "operation": "add_edge", - "rtt_ns": 903157, - "rtt_ms": 0.903157, - "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "323", - "timestamp": "2025-11-27T01:22:00.595669076Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.128462-08:00" }, { "operation": "add_edge", - "rtt_ns": 957357, - "rtt_ms": 0.957357, + "rtt_ns": 2105083, + "rtt_ms": 2.105083, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.595693136Z" + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:59.128687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137456, - "rtt_ms": 1.137456, + "rtt_ns": 1444834, + "rtt_ms": 1.444834, "checkpoint": 0, "vertex_from": "304", - "vertex_to": "723", - "timestamp": "2025-11-27T01:22:00.595824316Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:59.129405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650825, - "rtt_ms": 1.650825, + "rtt_ns": 1258625, + "rtt_ms": 1.258625, "checkpoint": 0, "vertex_from": "305", "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.596550444Z" + "timestamp": "2025-11-27T04:01:59.129425-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724044, - "rtt_ms": 1.724044, + "rtt_ns": 1767834, + "rtt_ms": 1.767834, "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "913", - "timestamp": "2025-11-27T01:22:00.596591483Z" + "vertex_from": "304", + "vertex_to": "723", + "timestamp": "2025-11-27T04:01:59.129747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643474, - "rtt_ms": 1.643474, + "rtt_ns": 1666417, + "rtt_ms": 1.666417, "checkpoint": 0, "vertex_from": "305", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.596624563Z" + "vertex_to": "323", + "timestamp": "2025-11-27T04:01:59.129767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614064, - "rtt_ms": 1.614064, + "rtt_ns": 1485500, + "rtt_ms": 1.4855, "checkpoint": 0, "vertex_from": "305", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.596629213Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.129782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848764, - "rtt_ms": 1.848764, + "rtt_ns": 1662417, + "rtt_ms": 1.662417, "checkpoint": 0, "vertex_from": "305", "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.596651973Z" + "timestamp": "2025-11-27T04:01:59.129793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570875, - "rtt_ms": 1.570875, + "rtt_ns": 1423208, + "rtt_ms": 1.423208, "checkpoint": 0, "vertex_from": "305", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.596674113Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.129886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1854964, - "rtt_ms": 1.854964, + "rtt_ns": 1939708, + "rtt_ms": 1.939708, "checkpoint": 0, - "vertex_from": "305", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.596850063Z" + "vertex_from": "304", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.129935-08:00" }, { "operation": "add_edge", - "rtt_ns": 871857, - "rtt_ms": 0.871857, + "rtt_ns": 1530792, + "rtt_ms": 1.530792, "checkpoint": 0, - "vertex_from": "306", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.597423741Z" + "vertex_from": "305", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.130219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784725, - "rtt_ms": 1.784725, + "rtt_ns": 1414125, + "rtt_ms": 1.414125, "checkpoint": 0, "vertex_from": "306", "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.597455911Z" + "timestamp": "2025-11-27T04:01:59.13084-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927084, - "rtt_ms": 1.927084, + "rtt_ns": 1453167, + "rtt_ms": 1.453167, "checkpoint": 0, - "vertex_from": "306", - "vertex_to": "324", - "timestamp": "2025-11-27T01:22:00.59762187Z" + "vertex_from": "305", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.130859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815034, - "rtt_ms": 1.815034, + "rtt_ns": 1375334, + "rtt_ms": 1.375334, "checkpoint": 0, "vertex_from": "306", "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.59764102Z" + "timestamp": "2025-11-27T04:01:59.131143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025857, - "rtt_ms": 1.025857, + "rtt_ns": 1235166, + "rtt_ms": 1.235166, "checkpoint": 0, "vertex_from": "306", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.59765619Z" + "timestamp": "2025-11-27T04:01:59.131172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756815, - "rtt_ms": 1.756815, + "rtt_ns": 1459333, + "rtt_ms": 1.459333, "checkpoint": 0, "vertex_from": "306", "vertex_to": "386", - "timestamp": "2025-11-27T01:22:00.598384248Z" + "timestamp": "2025-11-27T04:01:59.131348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767735, - "rtt_ms": 1.767735, + "rtt_ns": 1570416, + "rtt_ms": 1.570416, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "952", - "timestamp": "2025-11-27T01:22:00.598444288Z" + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:59.131366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876134, - "rtt_ms": 1.876134, + "rtt_ns": 1598750, + "rtt_ms": 1.59875, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "340", - "timestamp": "2025-11-27T01:22:00.598468617Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.131382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827304, - "rtt_ms": 1.827304, + "rtt_ns": 1635833, + "rtt_ms": 1.635833, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "550", - "timestamp": "2025-11-27T01:22:00.598480387Z" + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:59.131383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632394, - "rtt_ms": 1.632394, + "rtt_ns": 1426875, + "rtt_ms": 1.426875, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.598483747Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:01:59.131647-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1403417, + "rtt_ms": 1.403417, + "checkpoint": 0, + "vertex_from": "307", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.132577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332346, - "rtt_ms": 1.332346, + "rtt_ns": 2224458, + "rtt_ms": 2.224458, "checkpoint": 0, "vertex_from": "306", - "vertex_to": "326", - "timestamp": "2025-11-27T01:22:00.598757717Z" + "vertex_to": "952", + "timestamp": "2025-11-27T04:01:59.133066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162746, - "rtt_ms": 1.162746, + "rtt_ns": 1745625, + "rtt_ms": 1.745625, "checkpoint": 0, - "vertex_from": "307", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.598786146Z" + "vertex_from": "308", + "vertex_to": "324", + "timestamp": "2025-11-27T04:01:59.133135-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363565, - "rtt_ms": 1.363565, + "rtt_ns": 1799958, + "rtt_ms": 1.799958, "checkpoint": 0, - "vertex_from": "307", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.598824776Z" + "vertex_from": "308", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:59.133185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211036, - "rtt_ms": 1.211036, + "rtt_ns": 2091667, + "rtt_ms": 2.091667, "checkpoint": 0, - "vertex_from": "307", - "vertex_to": "677", - "timestamp": "2025-11-27T01:22:00.598853446Z" + "vertex_from": "306", + "vertex_to": "326", + "timestamp": "2025-11-27T04:01:59.133236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196696, - "rtt_ms": 1.196696, + "rtt_ns": 2435167, + "rtt_ms": 2.435167, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "324", - "timestamp": "2025-11-27T01:22:00.598854346Z" + "vertex_from": "306", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.133294-08:00" }, { "operation": "add_edge", - "rtt_ns": 854018, - "rtt_ms": 0.854018, + "rtt_ns": 2678292, + "rtt_ms": 2.678292, "checkpoint": 0, "vertex_from": "308", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.599323995Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.134327-08:00" }, { "operation": "add_edge", - "rtt_ns": 867028, - "rtt_ms": 0.867028, + "rtt_ns": 2984375, + "rtt_ms": 2.984375, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.599350255Z" + "vertex_from": "307", + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:59.134351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070536, - "rtt_ms": 1.070536, + "rtt_ns": 3011167, + "rtt_ms": 3.011167, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.599456274Z" + "vertex_from": "307", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.13436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078386, - "rtt_ms": 1.078386, + "rtt_ns": 1465125, + "rtt_ms": 1.465125, "checkpoint": 0, - "vertex_from": "308", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.599523484Z" + "vertex_from": "309", + "vertex_to": "340", + "timestamp": "2025-11-27T04:01:59.134703-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054327, - "rtt_ms": 1.054327, + "rtt_ns": 1779375, + "rtt_ms": 1.779375, "checkpoint": 0, "vertex_from": "308", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.599540554Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.134966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354855, - "rtt_ms": 1.354855, + "rtt_ns": 2086667, + "rtt_ms": 2.086667, "checkpoint": 0, "vertex_from": "308", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.600113992Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.135155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448986, - "rtt_ms": 1.448986, + "rtt_ns": 1901625, + "rtt_ms": 1.901625, "checkpoint": 0, "vertex_from": "309", "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.600274912Z" + "timestamp": "2025-11-27T04:01:59.135197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438236, - "rtt_ms": 1.438236, + "rtt_ns": 2749542, + "rtt_ms": 2.749542, "checkpoint": 0, - "vertex_from": "309", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.600294312Z" + "vertex_from": "308", + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.135329-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2208750, + "rtt_ms": 2.20875, + "checkpoint": 0, + "vertex_from": "308", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:59.135345-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586485, - "rtt_ms": 1.586485, + "rtt_ns": 1252125, + "rtt_ms": 1.252125, "checkpoint": 0, - "vertex_from": "309", - "vertex_to": "340", - "timestamp": "2025-11-27T01:22:00.600373611Z" + "vertex_from": "310", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.136219-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1797725, - "rtt_ms": 1.797725, + "operation": "add_edge", + "rtt_ns": 1879583, + "rtt_ms": 1.879583, "checkpoint": 0, - "vertex_from": "1019", - "timestamp": "2025-11-27T01:22:00.600654811Z" + "vertex_from": "310", + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:59.136242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349115, - "rtt_ms": 1.349115, + "rtt_ns": 1556916, + "rtt_ms": 1.556916, "checkpoint": 0, "vertex_from": "310", "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.60070034Z" + "timestamp": "2025-11-27T04:01:59.136261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392386, - "rtt_ms": 1.392386, + "rtt_ns": 8161125, + "rtt_ms": 8.161125, "checkpoint": 0, - "vertex_from": "310", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.60084973Z" + "vertex_from": "305", + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:59.136328-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350996, - "rtt_ms": 1.350996, + "rtt_ns": 1271959, + "rtt_ms": 1.271959, "checkpoint": 0, "vertex_from": "310", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.6008772Z" + "timestamp": "2025-11-27T04:01:59.13643-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356516, - "rtt_ms": 1.356516, + "rtt_ns": 1214125, + "rtt_ms": 1.214125, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.60089909Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.13656-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600405, - "rtt_ms": 1.600405, + "rtt_ns": 1351083, + "rtt_ms": 1.351083, "checkpoint": 0, - "vertex_from": "310", - "vertex_to": "352", - "timestamp": "2025-11-27T01:22:00.60092603Z" + "vertex_from": "312", + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:59.136681-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 2587834, + "rtt_ms": 2.587834, + "checkpoint": 0, + "vertex_from": "1019", + "timestamp": "2025-11-27T04:01:59.136943-08:00" }, { "operation": "add_edge", - "rtt_ns": 906307, - "rtt_ms": 0.906307, + "rtt_ns": 1623708, + "rtt_ms": 1.623708, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "901", - "timestamp": "2025-11-27T01:22:00.601021719Z" + "vertex_to": "387", + "timestamp": "2025-11-27T04:01:59.137845-08:00" }, { "operation": "add_edge", - "rtt_ns": 773547, - "rtt_ms": 0.773547, + "rtt_ns": 1342750, + "rtt_ms": 1.34275, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.601049369Z" + "vertex_to": "394", + "timestamp": "2025-11-27T04:01:59.137904-08:00" }, { "operation": "add_edge", - "rtt_ns": 713108, - "rtt_ms": 0.713108, + "rtt_ns": 1451791, + "rtt_ms": 1.451791, "checkpoint": 0, - "vertex_from": "312", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.601088569Z" + "vertex_from": "313", + "vertex_to": "320", + "timestamp": "2025-11-27T04:01:59.138134-08:00" }, { "operation": "add_edge", - "rtt_ns": 840637, - "rtt_ms": 0.840637, + "rtt_ns": 2974875, + "rtt_ms": 2.974875, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "387", - "timestamp": "2025-11-27T01:22:00.601136069Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.138174-08:00" }, { "operation": "add_edge", - "rtt_ns": 993256, - "rtt_ms": 0.993256, + "rtt_ns": 2026292, + "rtt_ms": 2.026292, "checkpoint": 0, - "vertex_from": "309", - "vertex_to": "1019", - "timestamp": "2025-11-27T01:22:00.601648357Z" + "vertex_from": "312", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.138269-08:00" }, { "operation": "add_edge", - "rtt_ns": 750717, - "rtt_ms": 0.750717, + "rtt_ns": 2011166, + "rtt_ms": 2.011166, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "394", - "timestamp": "2025-11-27T01:22:00.601650467Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.138275-08:00" }, { "operation": "add_edge", - "rtt_ns": 980777, - "rtt_ms": 0.980777, + "rtt_ns": 1967292, + "rtt_ms": 1.967292, "checkpoint": 0, "vertex_from": "312", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.601682647Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:59.138296-08:00" }, { "operation": "add_edge", - "rtt_ns": 816767, - "rtt_ms": 0.816767, + "rtt_ns": 2000958, + "rtt_ms": 2.000958, "checkpoint": 0, "vertex_from": "312", "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.601694677Z" + "timestamp": "2025-11-27T04:01:59.138432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122596, - "rtt_ms": 1.122596, + "rtt_ns": 4195000, + "rtt_ms": 4.195, "checkpoint": 0, - "vertex_from": "312", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.601973436Z" + "vertex_from": "309", + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:59.138523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407005, - "rtt_ms": 1.407005, + "rtt_ns": 1630417, + "rtt_ms": 1.630417, "checkpoint": 0, - "vertex_from": "313", - "vertex_to": "320", - "timestamp": "2025-11-27T01:22:00.602334155Z" + "vertex_from": "309", + "vertex_to": "1019", + "timestamp": "2025-11-27T04:01:59.138574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332336, - "rtt_ms": 1.332336, + "rtt_ns": 996750, + "rtt_ms": 0.99675, "checkpoint": 0, - "vertex_from": "313", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.602382355Z" + "vertex_from": "314", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.139273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416916, - "rtt_ms": 1.416916, + "rtt_ns": 1562000, + "rtt_ms": 1.562, "checkpoint": 0, "vertex_from": "313", "vertex_to": "420", - "timestamp": "2025-11-27T01:22:00.602506605Z" + "timestamp": "2025-11-27T04:01:59.139713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1516676, - "rtt_ms": 1.516676, + "rtt_ns": 1826416, + "rtt_ms": 1.826416, "checkpoint": 0, "vertex_from": "313", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.602539185Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.139731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247396, - "rtt_ms": 1.247396, + "rtt_ns": 1435458, + "rtt_ms": 1.435458, "checkpoint": 0, "vertex_from": "314", "vertex_to": "322", - "timestamp": "2025-11-27T01:22:00.602933003Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1886224, - "rtt_ms": 1.886224, - "checkpoint": 0, - "vertex_from": "1004", - "timestamp": "2025-11-27T01:22:00.603025003Z" + "timestamp": "2025-11-27T04:01:59.139733-08:00" }, { "operation": "add_edge", - "rtt_ns": 777818, - "rtt_ms": 0.777818, + "rtt_ns": 1899667, + "rtt_ms": 1.899667, "checkpoint": 0, - "vertex_from": "316", - "vertex_to": "356", - "timestamp": "2025-11-27T01:22:00.603113773Z" + "vertex_from": "313", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.139747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1432886, - "rtt_ms": 1.432886, + "rtt_ns": 1336417, + "rtt_ms": 1.336417, "checkpoint": 0, "vertex_from": "314", "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.603129043Z" + "timestamp": "2025-11-27T04:01:59.139771-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1487826, - "rtt_ms": 1.487826, + "operation": "add_vertex", + "rtt_ns": 1617750, + "rtt_ms": 1.61775, "checkpoint": 0, - "vertex_from": "314", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.603137743Z" + "vertex_from": "1004", + "timestamp": "2025-11-27T04:01:59.139794-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1193467, - "rtt_ms": 1.193467, + "operation": "add_edge", + "rtt_ns": 1591875, + "rtt_ms": 1.591875, "checkpoint": 0, - "vertex_from": "315", - "timestamp": "2025-11-27T01:22:00.603169473Z" + "vertex_from": "314", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.139861-08:00" }, { "operation": "add_edge", - "rtt_ns": 862117, - "rtt_ms": 0.862117, + "rtt_ns": 2072959, + "rtt_ms": 2.072959, "checkpoint": 0, "vertex_from": "316", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.603245212Z" + "timestamp": "2025-11-27T04:01:59.141348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842195, - "rtt_ms": 1.842195, + "rtt_ns": 1618917, + "rtt_ms": 1.618917, "checkpoint": 0, - "vertex_from": "314", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.603493862Z" + "vertex_from": "317", + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:59.141367-08:00" }, { "operation": "add_edge", - "rtt_ns": 975176, - "rtt_ms": 0.975176, + "rtt_ns": 1610833, + "rtt_ms": 1.610833, "checkpoint": 0, - "vertex_from": "316", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.603515511Z" + "vertex_from": "318", + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.141383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253266, - "rtt_ms": 1.253266, + "rtt_ns": 2823208, + "rtt_ms": 2.823208, "checkpoint": 0, "vertex_from": "316", - "vertex_to": "321", - "timestamp": "2025-11-27T01:22:00.603761081Z" + "vertex_to": "356", + "timestamp": "2025-11-27T04:01:59.141399-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1046497, - "rtt_ms": 1.046497, + "operation": "add_vertex", + "rtt_ns": 1551334, + "rtt_ms": 1.551334, "checkpoint": 0, - "vertex_from": "316", - "vertex_to": "611", - "timestamp": "2025-11-27T01:22:00.60398172Z" + "vertex_from": "319", + "timestamp": "2025-11-27T04:01:59.141414-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1532195, - "rtt_ms": 1.532195, + "operation": "add_vertex", + "rtt_ns": 3115042, + "rtt_ms": 3.115042, "checkpoint": 0, - "vertex_from": "317", - "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.604647448Z" + "vertex_from": "315", + "timestamp": "2025-11-27T04:01:59.141639-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144147, - "rtt_ms": 1.144147, + "rtt_ns": 1925042, + "rtt_ms": 1.925042, "checkpoint": 0, - "vertex_from": "320", - "vertex_to": "551", - "timestamp": "2025-11-27T01:22:00.604661848Z" + "vertex_from": "316", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.141657-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1533955, - "rtt_ms": 1.533955, + "operation": "add_edge", + "rtt_ns": 1943417, + "rtt_ms": 1.943417, "checkpoint": 0, - "vertex_from": "319", - "timestamp": "2025-11-27T01:22:00.604673428Z" + "vertex_from": "316", + "vertex_to": "611", + "timestamp": "2025-11-27T04:01:59.141678-08:00" }, { "operation": "add_edge", - "rtt_ns": 1647925, - "rtt_ms": 1.647925, + "rtt_ns": 1995208, + "rtt_ms": 1.995208, "checkpoint": 0, - "vertex_from": "313", - "vertex_to": "1004", - "timestamp": "2025-11-27T01:22:00.604673598Z" + "vertex_from": "316", + "vertex_to": "321", + "timestamp": "2025-11-27T04:01:59.141709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560025, - "rtt_ms": 1.560025, + "rtt_ns": 1936333, + "rtt_ms": 1.936333, "checkpoint": 0, - "vertex_from": "318", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.604691158Z" + "vertex_from": "313", + "vertex_to": "1004", + "timestamp": "2025-11-27T04:01:59.141731-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449116, - "rtt_ms": 1.449116, + "rtt_ns": 1300917, + "rtt_ms": 1.300917, "checkpoint": 0, - "vertex_from": "320", - "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.604695918Z" + "vertex_from": "319", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.142716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789924, - "rtt_ms": 1.789924, + "rtt_ns": 1657000, + "rtt_ms": 1.657, "checkpoint": 0, - "vertex_from": "315", - "vertex_to": "332", - "timestamp": "2025-11-27T01:22:00.604960237Z" + "vertex_from": "320", + "vertex_to": "918", + "timestamp": "2025-11-27T04:01:59.143057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484255, - "rtt_ms": 1.484255, + "rtt_ns": 1737750, + "rtt_ms": 1.73775, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.604978887Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:59.143087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258936, - "rtt_ms": 1.258936, + "rtt_ns": 1750875, + "rtt_ms": 1.750875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "918", - "timestamp": "2025-11-27T01:22:00.605021357Z" + "vertex_to": "551", + "timestamp": "2025-11-27T04:01:59.143134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107966, - "rtt_ms": 1.107966, + "rtt_ns": 1782875, + "rtt_ms": 1.782875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "662", - "timestamp": "2025-11-27T01:22:00.605091336Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.143151-08:00" }, { "operation": "add_edge", - "rtt_ns": 823547, - "rtt_ms": 0.823547, + "rtt_ns": 1654375, + "rtt_ms": 1.654375, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.605846234Z" + "vertex_to": "349", + "timestamp": "2025-11-27T04:01:59.143365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1157376, - "rtt_ms": 1.157376, + "rtt_ns": 1647417, + "rtt_ms": 1.647417, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.605849634Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.143382-08:00" }, { "operation": "add_edge", - "rtt_ns": 868617, - "rtt_ms": 0.868617, + "rtt_ns": 1738417, + "rtt_ms": 1.738417, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.605849914Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:59.143396-08:00" }, { "operation": "add_edge", - "rtt_ns": 971587, - "rtt_ms": 0.971587, + "rtt_ns": 1870917, + "rtt_ms": 1.870917, "checkpoint": 0, - "vertex_from": "320", - "vertex_to": "488", - "timestamp": "2025-11-27T01:22:00.605935014Z" + "vertex_from": "315", + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:59.143514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316386, - "rtt_ms": 1.316386, + "rtt_ns": 1939500, + "rtt_ms": 1.9395, "checkpoint": 0, "vertex_from": "320", "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.605964734Z" + "timestamp": "2025-11-27T04:01:59.143618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291256, - "rtt_ms": 1.291256, + "rtt_ns": 1292125, + "rtt_ms": 1.292125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.605966194Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:59.14435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314536, - "rtt_ms": 1.314536, + "rtt_ns": 1295250, + "rtt_ms": 1.29525, "checkpoint": 0, - "vertex_from": "319", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.605988524Z" + "vertex_from": "320", + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:59.144383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301016, - "rtt_ms": 1.301016, + "rtt_ns": 1950000, + "rtt_ms": 1.95, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.605998244Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.144669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1449465, - "rtt_ms": 1.449465, + "rtt_ns": 1778917, + "rtt_ms": 1.778917, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "349", - "timestamp": "2025-11-27T01:22:00.606112653Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.144931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091117, - "rtt_ms": 1.091117, + "rtt_ns": 1583958, + "rtt_ms": 1.583958, "checkpoint": 0, "vertex_from": "320", "vertex_to": "326", - "timestamp": "2025-11-27T01:22:00.606183493Z" + "timestamp": "2025-11-27T04:01:59.144949-08:00" }, { "operation": "add_edge", - "rtt_ns": 985616, - "rtt_ms": 0.985616, + "rtt_ns": 1346167, + "rtt_ms": 1.346167, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "716", - "timestamp": "2025-11-27T01:22:00.60697582Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:59.144966-08:00" }, { "operation": "add_edge", - "rtt_ns": 977756, - "rtt_ms": 0.977756, + "rtt_ns": 1844750, + "rtt_ms": 1.84475, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "332", - "timestamp": "2025-11-27T01:22:00.60697753Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:59.14498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127956, - "rtt_ms": 1.127956, + "rtt_ns": 1601458, + "rtt_ms": 1.601458, "checkpoint": 0, "vertex_from": "320", "vertex_to": "498", - "timestamp": "2025-11-27T01:22:00.60697916Z" + "timestamp": "2025-11-27T04:01:59.144999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1146236, - "rtt_ms": 1.146236, + "rtt_ns": 1651792, + "rtt_ms": 1.651792, "checkpoint": 0, "vertex_from": "320", "vertex_to": "825", - "timestamp": "2025-11-27T01:22:00.6069943Z" + "timestamp": "2025-11-27T04:01:59.145035-08:00" }, { "operation": "add_edge", - "rtt_ns": 2380652, - "rtt_ms": 2.380652, + "rtt_ns": 1602542, + "rtt_ms": 1.602542, "checkpoint": 0, "vertex_from": "320", "vertex_to": "525", - "timestamp": "2025-11-27T01:22:00.608233226Z" + "timestamp": "2025-11-27T04:01:59.145119-08:00" }, { "operation": "add_edge", - "rtt_ns": 2401672, - "rtt_ms": 2.401672, + "rtt_ns": 1270458, + "rtt_ms": 1.270458, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.608338326Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.146237-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376282, - "rtt_ms": 2.376282, + "rtt_ns": 1949833, + "rtt_ms": 1.949833, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.608560525Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:01:59.146303-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1644375, + "rtt_ms": 1.644375, + "checkpoint": 0, + "vertex_from": "320", + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:59.146314-08:00" }, { "operation": "add_edge", - "rtt_ns": 2672741, - "rtt_ms": 2.672741, + "rtt_ns": 1950500, + "rtt_ms": 1.9505, "checkpoint": 0, "vertex_from": "320", "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.608640755Z" + "timestamp": "2025-11-27T04:01:59.146335-08:00" }, { "operation": "add_edge", - "rtt_ns": 2555042, - "rtt_ms": 2.555042, + "rtt_ns": 1406334, + "rtt_ms": 1.406334, "checkpoint": 0, "vertex_from": "320", "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.608668975Z" + "timestamp": "2025-11-27T04:01:59.146357-08:00" }, { "operation": "add_edge", - "rtt_ns": 3405799, - "rtt_ms": 3.405799, + "rtt_ns": 1599000, + "rtt_ms": 1.599, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "539", - "timestamp": "2025-11-27T01:22:00.609373173Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:59.14653-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464502, - "rtt_ms": 2.464502, + "rtt_ns": 2405417, + "rtt_ms": 2.405417, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.609443342Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.147526-08:00" }, { "operation": "add_edge", - "rtt_ns": 2464222, - "rtt_ms": 2.464222, + "rtt_ns": 2511042, + "rtt_ms": 2.511042, "checkpoint": 0, "vertex_from": "320", "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.609445402Z" + "timestamp": "2025-11-27T04:01:59.147548-08:00" }, { "operation": "add_edge", - "rtt_ns": 2515752, - "rtt_ms": 2.515752, + "rtt_ns": 2583708, + "rtt_ms": 2.583708, "checkpoint": 0, "vertex_from": "320", "vertex_to": "946", - "timestamp": "2025-11-27T01:22:00.609493012Z" + "timestamp": "2025-11-27T04:01:59.147565-08:00" }, { "operation": "add_edge", - "rtt_ns": 2502692, - "rtt_ms": 2.502692, + "rtt_ns": 2581500, + "rtt_ms": 2.5815, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.609498782Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:59.147581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428236, - "rtt_ms": 1.428236, + "rtt_ns": 1758541, + "rtt_ms": 1.758541, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "901", - "timestamp": "2025-11-27T01:22:00.609663052Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:59.148063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1576255, - "rtt_ms": 1.576255, + "rtt_ns": 1742375, + "rtt_ms": 1.742375, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "562", - "timestamp": "2025-11-27T01:22:00.61013891Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.148079-08:00" }, { "operation": "add_edge", - "rtt_ns": 862157, - "rtt_ms": 0.862157, + "rtt_ns": 2196792, + "rtt_ms": 2.196792, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.61023635Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:59.148436-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930484, - "rtt_ms": 1.930484, + "rtt_ns": 1922708, + "rtt_ms": 1.922708, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.61026999Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.148454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634535, - "rtt_ms": 1.634535, + "rtt_ns": 2111083, + "rtt_ms": 2.111083, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.61027646Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:59.148469-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642754, - "rtt_ms": 1.642754, + "rtt_ns": 2170500, + "rtt_ms": 2.1705, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.610312709Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:59.148486-08:00" }, { "operation": "add_edge", - "rtt_ns": 840487, - "rtt_ms": 0.840487, + "rtt_ns": 1490750, + "rtt_ms": 1.49075, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.610340279Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:01:59.149057-08:00" }, { "operation": "add_edge", - "rtt_ns": 867017, - "rtt_ms": 0.867017, + "rtt_ns": 2041375, + "rtt_ms": 2.041375, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "569", - "timestamp": "2025-11-27T01:22:00.610361529Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:59.149623-08:00" }, { "operation": "add_edge", - "rtt_ns": 994337, - "rtt_ms": 0.994337, + "rtt_ns": 2160291, + "rtt_ms": 2.160291, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "675", - "timestamp": "2025-11-27T01:22:00.610441499Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:59.149687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441425, - "rtt_ms": 1.441425, + "rtt_ns": 1667291, + "rtt_ms": 1.667291, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.611106287Z" + "vertex_to": "1008", + "timestamp": "2025-11-27T04:01:59.150138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705885, - "rtt_ms": 1.705885, + "rtt_ns": 2090292, + "rtt_ms": 2.090292, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.611151367Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:59.150154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267696, - "rtt_ms": 1.267696, + "rtt_ns": 1669041, + "rtt_ms": 1.669041, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.611408276Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.150156-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174666, - "rtt_ms": 1.174666, + "rtt_ns": 2621709, + "rtt_ms": 2.621709, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.611516625Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:59.150171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266466, - "rtt_ms": 1.266466, + "rtt_ns": 1752500, + "rtt_ms": 1.7525, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "389", - "timestamp": "2025-11-27T01:22:00.611629215Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.15019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396946, - "rtt_ms": 1.396946, + "rtt_ns": 2126000, + "rtt_ms": 2.126, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.611711015Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.150206-08:00" }, { "operation": "add_edge", - "rtt_ns": 1082826, - "rtt_ms": 1.082826, + "rtt_ns": 1761416, + "rtt_ms": 1.761416, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "677", - "timestamp": "2025-11-27T01:22:00.612190643Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.150216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938403, - "rtt_ms": 1.938403, + "rtt_ns": 1587375, + "rtt_ms": 1.587375, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.612209493Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.150645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214476, - "rtt_ms": 1.214476, + "rtt_ns": 1235167, + "rtt_ms": 1.235167, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "392", - "timestamp": "2025-11-27T01:22:00.612366793Z" + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:59.151392-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128413, - "rtt_ms": 2.128413, + "rtt_ns": 1715333, + "rtt_ms": 1.715333, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "1008", - "timestamp": "2025-11-27T01:22:00.612406263Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.151404-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258012, - "rtt_ms": 2.258012, + "rtt_ns": 1385416, + "rtt_ms": 1.385416, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.612496642Z" + "vertex_to": "433", + "timestamp": "2025-11-27T04:01:59.151576-08:00" }, { "operation": "add_edge", - "rtt_ns": 2447492, - "rtt_ms": 2.447492, + "rtt_ns": 1637750, + "rtt_ms": 1.63775, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.612890091Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:59.151855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705644, - "rtt_ms": 1.705644, + "rtt_ns": 1756417, + "rtt_ms": 1.756417, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "361", - "timestamp": "2025-11-27T01:22:00.61311534Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:59.151895-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408195, - "rtt_ms": 1.408195, + "rtt_ns": 1706500, + "rtt_ms": 1.7065, "checkpoint": 0, "vertex_from": "320", "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.61312018Z" + "timestamp": "2025-11-27T04:01:59.151913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512265, - "rtt_ms": 1.512265, + "rtt_ns": 1771042, + "rtt_ms": 1.771042, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "433", - "timestamp": "2025-11-27T01:22:00.61314257Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:59.151927-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553885, - "rtt_ms": 1.553885, + "rtt_ns": 2315166, + "rtt_ms": 2.315166, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.613922708Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:59.151942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777125, - "rtt_ms": 1.777125, + "rtt_ns": 1783958, + "rtt_ms": 1.783958, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.613987898Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.151956-08:00" }, { "operation": "add_edge", - "rtt_ns": 2542342, - "rtt_ms": 2.542342, + "rtt_ns": 1406333, + "rtt_ms": 1.406333, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.614060247Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:59.152052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689144, - "rtt_ms": 1.689144, + "rtt_ns": 1245834, + "rtt_ms": 1.245834, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.614096577Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:59.153188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907404, - "rtt_ms": 1.907404, + "rtt_ns": 2065500, + "rtt_ms": 2.0655, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "568", - "timestamp": "2025-11-27T01:22:00.614100997Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:59.15347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005217, - "rtt_ms": 1.005217, + "rtt_ns": 1626542, + "rtt_ms": 1.626542, "checkpoint": 0, "vertex_from": "320", "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.614121547Z" + "timestamp": "2025-11-27T04:01:59.153523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650755, - "rtt_ms": 1.650755, + "rtt_ns": 1587625, + "rtt_ms": 1.587625, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "352", - "timestamp": "2025-11-27T01:22:00.614148267Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.153544-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274766, - "rtt_ms": 1.274766, + "rtt_ns": 1697375, + "rtt_ms": 1.697375, "checkpoint": 0, "vertex_from": "320", "vertex_to": "427", - "timestamp": "2025-11-27T01:22:00.614166347Z" + "timestamp": "2025-11-27T04:01:59.153553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1028747, - "rtt_ms": 1.028747, + "rtt_ns": 2201791, + "rtt_ms": 2.201791, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.614172177Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:59.153595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194406, - "rtt_ms": 1.194406, + "rtt_ns": 1780541, + "rtt_ms": 1.780541, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "406", - "timestamp": "2025-11-27T01:22:00.614316336Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:59.153709-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347025, - "rtt_ms": 1.347025, + "rtt_ns": 2237042, + "rtt_ms": 2.237042, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "336", - "timestamp": "2025-11-27T01:22:00.615270623Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:59.153814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353115, - "rtt_ms": 1.353115, + "rtt_ns": 2072875, + "rtt_ms": 2.072875, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.615342603Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.154126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298766, - "rtt_ms": 1.298766, + "rtt_ns": 2232542, + "rtt_ms": 2.232542, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "429", - "timestamp": "2025-11-27T01:22:00.615396753Z" + "vertex_to": "406", + "timestamp": "2025-11-27T04:01:59.154147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384696, - "rtt_ms": 1.384696, + "rtt_ns": 1805792, + "rtt_ms": 1.805792, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.615486943Z" + "vertex_to": "429", + "timestamp": "2025-11-27T04:01:59.154997-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439016, - "rtt_ms": 1.439016, + "rtt_ns": 1521250, + "rtt_ms": 1.52125, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.615501193Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:59.155045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395286, - "rtt_ms": 1.395286, + "rtt_ns": 1509875, + "rtt_ms": 1.509875, "checkpoint": 0, "vertex_from": "320", "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.615544203Z" + "timestamp": "2025-11-27T04:01:59.155055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1447025, - "rtt_ms": 1.447025, + "rtt_ns": 1618542, + "rtt_ms": 1.618542, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.615569822Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.155091-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436595, - "rtt_ms": 1.436595, + "rtt_ns": 1769542, + "rtt_ms": 1.769542, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "710", - "timestamp": "2025-11-27T01:22:00.615610952Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.155324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1476935, - "rtt_ms": 1.476935, + "rtt_ns": 1528208, + "rtt_ms": 1.528208, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.615644302Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.155342-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351986, - "rtt_ms": 1.351986, + "rtt_ns": 1762000, + "rtt_ms": 1.762, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.615669872Z" + "vertex_to": "710", + "timestamp": "2025-11-27T04:01:59.155358-08:00" }, { "operation": "add_edge", - "rtt_ns": 818677, - "rtt_ms": 0.818677, + "rtt_ns": 1663250, + "rtt_ms": 1.66325, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.61621645Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.155373-08:00" }, { "operation": "add_edge", - "rtt_ns": 753897, - "rtt_ms": 0.753897, + "rtt_ns": 1798458, + "rtt_ms": 1.798458, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "655", - "timestamp": "2025-11-27T01:22:00.61624191Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:59.155926-08:00" }, { "operation": "add_edge", - "rtt_ns": 1158597, - "rtt_ms": 1.158597, + "rtt_ns": 1819083, + "rtt_ms": 1.819083, "checkpoint": 0, "vertex_from": "320", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.61643034Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:59.155967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166377, - "rtt_ms": 1.166377, + "rtt_ns": 1895375, + "rtt_ms": 1.895375, "checkpoint": 0, - "vertex_from": "320", - "vertex_to": "681", - "timestamp": "2025-11-27T01:22:00.61651026Z" + "vertex_from": "321", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.156987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045466, - "rtt_ms": 1.045466, + "rtt_ns": 1963250, + "rtt_ms": 1.96325, "checkpoint": 0, "vertex_from": "320", "vertex_to": "531", - "timestamp": "2025-11-27T01:22:00.616548839Z" + "timestamp": "2025-11-27T04:01:59.15701-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512825, - "rtt_ms": 1.512825, + "rtt_ns": 1700625, + "rtt_ms": 1.700625, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.617162127Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:59.157026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1671454, - "rtt_ms": 1.671454, + "rtt_ns": 1682709, + "rtt_ms": 1.682709, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.617216637Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.157041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645325, - "rtt_ms": 1.645325, + "rtt_ns": 1999250, + "rtt_ms": 1.99925, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "402", - "timestamp": "2025-11-27T01:22:00.617257387Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.157056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706045, - "rtt_ms": 1.706045, + "rtt_ns": 1727166, + "rtt_ms": 1.727166, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.617276597Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.15707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054797, - "rtt_ms": 1.054797, + "rtt_ns": 2074000, + "rtt_ms": 2.074, "checkpoint": 0, - "vertex_from": "321", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.617297587Z" + "vertex_from": "320", + "vertex_to": "655", + "timestamp": "2025-11-27T04:01:59.157074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823884, - "rtt_ms": 1.823884, + "rtt_ns": 1708750, + "rtt_ms": 1.70875, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.617494756Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:59.157082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833004, - "rtt_ms": 1.833004, + "rtt_ns": 1601958, + "rtt_ms": 1.601958, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.618345184Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.157571-08:00" }, { "operation": "add_edge", - "rtt_ns": 2128474, - "rtt_ms": 2.128474, + "rtt_ns": 1662917, + "rtt_ms": 1.662917, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "392", - "timestamp": "2025-11-27T01:22:00.618346164Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.15759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879314, - "rtt_ms": 1.879314, + "rtt_ns": 1654042, + "rtt_ms": 1.654042, "checkpoint": 0, "vertex_from": "321", "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.618429323Z" + "timestamp": "2025-11-27T04:01:59.158665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101343, - "rtt_ms": 2.101343, + "rtt_ns": 1710541, + "rtt_ms": 1.710541, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.618532743Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.158699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1615845, - "rtt_ms": 1.615845, + "rtt_ns": 1728000, + "rtt_ms": 1.728, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "332", - "timestamp": "2025-11-27T01:22:00.618779622Z" + "vertex_to": "781", + "timestamp": "2025-11-27T04:01:59.15877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092744, - "rtt_ms": 2.092744, + "rtt_ns": 1897375, + "rtt_ms": 1.897375, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "781", - "timestamp": "2025-11-27T01:22:00.619310561Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:01:59.158972-08:00" }, { "operation": "add_edge", - "rtt_ns": 2378453, - "rtt_ms": 2.378453, + "rtt_ns": 1962584, + "rtt_ms": 1.962584, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.61965676Z" + "vertex_to": "332", + "timestamp": "2025-11-27T04:01:59.158989-08:00" }, { "operation": "add_edge", - "rtt_ns": 2425052, - "rtt_ms": 2.425052, + "rtt_ns": 1950041, + "rtt_ms": 1.950041, "checkpoint": 0, "vertex_from": "321", "vertex_to": "401", - "timestamp": "2025-11-27T01:22:00.619684959Z" + "timestamp": "2025-11-27T04:01:59.159007-08:00" }, { "operation": "add_edge", - "rtt_ns": 2472962, - "rtt_ms": 2.472962, + "rtt_ns": 1940458, + "rtt_ms": 1.940458, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "362", - "timestamp": "2025-11-27T01:22:00.619772499Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:59.159012-08:00" }, { "operation": "add_edge", - "rtt_ns": 2957951, - "rtt_ms": 2.957951, + "rtt_ns": 2060125, + "rtt_ms": 2.060125, "checkpoint": 0, "vertex_from": "321", "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.620454007Z" + "timestamp": "2025-11-27T04:01:59.159143-08:00" }, { "operation": "add_edge", - "rtt_ns": 2160433, - "rtt_ms": 2.160433, + "rtt_ns": 1696542, + "rtt_ms": 1.696542, "checkpoint": 0, "vertex_from": "321", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.620507317Z" + "timestamp": "2025-11-27T04:01:59.159269-08:00" }, { "operation": "add_edge", - "rtt_ns": 2114774, - "rtt_ms": 2.114774, + "rtt_ns": 1797542, + "rtt_ms": 1.797542, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "540", - "timestamp": "2025-11-27T01:22:00.620545847Z" + "vertex_to": "360", + "timestamp": "2025-11-27T04:01:59.159388-08:00" }, { "operation": "add_edge", - "rtt_ns": 2042333, - "rtt_ms": 2.042333, + "rtt_ns": 1639250, + "rtt_ms": 1.63925, "checkpoint": 0, "vertex_from": "321", "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.620577896Z" + "timestamp": "2025-11-27T04:01:59.16034-08:00" }, { "operation": "add_edge", - "rtt_ns": 2267462, - "rtt_ms": 2.267462, + "rtt_ns": 1731709, + "rtt_ms": 1.731709, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "360", - "timestamp": "2025-11-27T01:22:00.620616176Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:59.1604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1937494, - "rtt_ms": 1.937494, + "rtt_ns": 1328875, + "rtt_ms": 1.328875, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.620718906Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:59.160599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003877, - "rtt_ms": 1.003877, + "rtt_ns": 1648042, + "rtt_ms": 1.648042, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.620778456Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:01:59.160621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1111167, - "rtt_ms": 1.111167, + "rtt_ns": 1628500, + "rtt_ms": 1.6285, "checkpoint": 0, "vertex_from": "321", "vertex_to": "964", - "timestamp": "2025-11-27T01:22:00.620798106Z" + "timestamp": "2025-11-27T04:01:59.160636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534145, - "rtt_ms": 1.534145, + "rtt_ns": 1879416, + "rtt_ms": 1.879416, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "773", - "timestamp": "2025-11-27T01:22:00.620847186Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:59.160651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194266, - "rtt_ms": 1.194266, + "rtt_ns": 1267750, + "rtt_ms": 1.26775, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.620853416Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:59.160657-08:00" }, { "operation": "add_edge", - "rtt_ns": 629688, - "rtt_ms": 0.629688, + "rtt_ns": 1673000, + "rtt_ms": 1.673, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.621139085Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:59.160686-08:00" }, { "operation": "add_edge", - "rtt_ns": 684698, - "rtt_ms": 0.684698, + "rtt_ns": 1543375, + "rtt_ms": 1.543375, "checkpoint": 0, "vertex_from": "321", "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.621140525Z" + "timestamp": "2025-11-27T04:01:59.160688-08:00" }, { "operation": "add_edge", - "rtt_ns": 674977, - "rtt_ms": 0.674977, + "rtt_ns": 1736125, + "rtt_ms": 1.736125, "checkpoint": 0, "vertex_from": "321", - "vertex_to": "336", - "timestamp": "2025-11-27T01:22:00.621221794Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:59.160726-08:00" }, { "operation": "add_edge", - "rtt_ns": 651098, - "rtt_ms": 0.651098, + "rtt_ns": 1566250, + "rtt_ms": 1.56625, "checkpoint": 0, - "vertex_from": "321", - "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.621230824Z" + "vertex_from": "322", + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.162224-08:00" }, { "operation": "add_edge", - "rtt_ns": 693438, - "rtt_ms": 0.693438, + "rtt_ns": 1645209, + "rtt_ms": 1.645209, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.621311944Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:59.162245-08:00" }, { "operation": "add_edge", - "rtt_ns": 835027, - "rtt_ms": 0.835027, + "rtt_ns": 1611583, + "rtt_ms": 1.611583, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "681", - "timestamp": "2025-11-27T01:22:00.622059571Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:59.162248-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314515, - "rtt_ms": 1.314515, + "rtt_ns": 1561042, + "rtt_ms": 1.561042, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.622113971Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:59.162252-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1921541, + "rtt_ms": 1.921541, + "checkpoint": 0, + "vertex_from": "321", + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:59.162263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340205, - "rtt_ms": 1.340205, + "rtt_ns": 1579291, + "rtt_ms": 1.579291, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.622195141Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.162268-08:00" }, { "operation": "add_edge", - "rtt_ns": 993177, - "rtt_ms": 0.993177, + "rtt_ns": 1937208, + "rtt_ms": 1.937208, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.622227061Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.162339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1491575, - "rtt_ms": 1.491575, + "rtt_ns": 1727334, + "rtt_ms": 1.727334, "checkpoint": 0, "vertex_from": "322", "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.622271811Z" + "timestamp": "2025-11-27T04:01:59.162349-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567225, - "rtt_ms": 1.567225, + "rtt_ns": 1822250, + "rtt_ms": 1.82225, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.622287221Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:59.16255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458805, - "rtt_ms": 1.458805, + "rtt_ns": 2546750, + "rtt_ms": 2.54675, "checkpoint": 0, "vertex_from": "322", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.622307271Z" + "timestamp": "2025-11-27T04:01:59.163198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173066, - "rtt_ms": 1.173066, + "rtt_ns": 1523250, + "rtt_ms": 1.52325, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.622315511Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:59.163769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248295, - "rtt_ms": 1.248295, + "rtt_ns": 1523500, + "rtt_ms": 1.5235, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.62238917Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.163788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738824, - "rtt_ms": 1.738824, + "rtt_ns": 1807125, + "rtt_ms": 1.807125, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.623052458Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:01:59.16415-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301116, - "rtt_ms": 1.301116, + "rtt_ns": 1899000, + "rtt_ms": 1.899, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "789", - "timestamp": "2025-11-27T01:22:00.623416937Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.164168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1305746, - "rtt_ms": 1.305746, + "rtt_ns": 1942417, + "rtt_ms": 1.942417, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.623502197Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.164168-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307086, - "rtt_ms": 1.307086, + "rtt_ns": 1953917, + "rtt_ms": 1.953917, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.623540977Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:01:59.164304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503495, - "rtt_ms": 1.503495, + "rtt_ns": 2166708, + "rtt_ms": 2.166708, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "480", - "timestamp": "2025-11-27T01:22:00.623567696Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:01:59.16442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310245, - "rtt_ms": 1.310245, + "rtt_ns": 2892166, + "rtt_ms": 2.892166, "checkpoint": 0, "vertex_from": "322", "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.623619576Z" + "timestamp": "2025-11-27T04:01:59.165444-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363325, - "rtt_ms": 1.363325, + "rtt_ns": 1329458, + "rtt_ms": 1.329458, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "653", - "timestamp": "2025-11-27T01:22:00.623652666Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.16548-08:00" }, { "operation": "add_edge", - "rtt_ns": 1450375, - "rtt_ms": 1.450375, + "rtt_ns": 1714500, + "rtt_ms": 1.7145, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.623767666Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:59.165503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760945, - "rtt_ms": 1.760945, + "rtt_ns": 1293708, + "rtt_ms": 1.293708, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.624151415Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.165599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1993363, - "rtt_ms": 1.993363, + "rtt_ns": 3366458, + "rtt_ms": 3.366458, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "609", - "timestamp": "2025-11-27T01:22:00.624267194Z" + "vertex_to": "480", + "timestamp": "2025-11-27T04:01:59.165615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234206, - "rtt_ms": 1.234206, + "rtt_ns": 1212042, + "rtt_ms": 1.212042, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.624290364Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:59.165633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542785, - "rtt_ms": 1.542785, + "rtt_ns": 1463125, + "rtt_ms": 1.463125, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.624960742Z" + "vertex_to": "554", + "timestamp": "2025-11-27T04:01:59.165634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478295, - "rtt_ms": 1.478295, + "rtt_ns": 1928583, + "rtt_ms": 1.928583, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.625020572Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:59.165699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531665, - "rtt_ms": 1.531665, + "rtt_ns": 1555750, + "rtt_ms": 1.55575, "checkpoint": 0, "vertex_from": "322", "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.625036372Z" + "timestamp": "2025-11-27T04:01:59.165727-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667925, - "rtt_ms": 1.667925, + "rtt_ns": 2533334, + "rtt_ms": 2.533334, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.625236521Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.165732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677935, - "rtt_ms": 1.677935, + "rtt_ns": 902916, + "rtt_ms": 0.902916, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.625298661Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.166407-08:00" }, { "operation": "add_edge", - "rtt_ns": 595018, - "rtt_ms": 0.595018, + "rtt_ns": 1876166, + "rtt_ms": 1.876166, "checkpoint": 0, - "vertex_from": "323", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.625894589Z" + "vertex_from": "322", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:59.167476-08:00" }, { "operation": "add_edge", - "rtt_ns": 749918, - "rtt_ms": 0.749918, + "rtt_ns": 1824541, + "rtt_ms": 1.824541, "checkpoint": 0, - "vertex_from": "323", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.625987859Z" + "vertex_from": "322", + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.167525-08:00" }, { "operation": "add_edge", - "rtt_ns": 2262153, - "rtt_ms": 2.262153, + "rtt_ns": 2150875, + "rtt_ms": 2.150875, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "420", - "timestamp": "2025-11-27T01:22:00.626031279Z" + "vertex_to": "461", + "timestamp": "2025-11-27T04:01:59.167596-08:00" }, { "operation": "add_edge", - "rtt_ns": 2393883, - "rtt_ms": 2.393883, + "rtt_ns": 1882500, + "rtt_ms": 1.8825, "checkpoint": 0, - "vertex_from": "322", - "vertex_to": "461", - "timestamp": "2025-11-27T01:22:00.626048109Z" + "vertex_from": "323", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.167615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974793, - "rtt_ms": 1.974793, + "rtt_ns": 1985542, + "rtt_ms": 1.985542, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.626127388Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:59.167619-08:00" }, { "operation": "add_edge", - "rtt_ns": 2158793, - "rtt_ms": 2.158793, + "rtt_ns": 2148875, + "rtt_ms": 2.148875, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.626452597Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:59.16763-08:00" }, { "operation": "add_edge", - "rtt_ns": 2239193, - "rtt_ms": 2.239193, + "rtt_ns": 2087292, + "rtt_ms": 2.087292, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.626507557Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:59.167704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1842714, - "rtt_ms": 1.842714, + "rtt_ns": 2065042, + "rtt_ms": 2.065042, "checkpoint": 0, - "vertex_from": "322", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.626804926Z" + "vertex_from": "323", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.167792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924384, - "rtt_ms": 1.924384, + "rtt_ns": 2156875, + "rtt_ms": 2.156875, "checkpoint": 0, "vertex_from": "322", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.626962606Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:59.167793-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940374, - "rtt_ms": 1.940374, + "rtt_ns": 1282917, + "rtt_ms": 1.282917, "checkpoint": 0, - "vertex_from": "322", - "vertex_to": "553", - "timestamp": "2025-11-27T01:22:00.626963756Z" + "vertex_from": "323", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.168907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577375, - "rtt_ms": 1.577375, + "rtt_ns": 1308542, + "rtt_ms": 1.308542, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.627473314Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.168925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666914, - "rtt_ms": 1.666914, + "rtt_ns": 1343750, + "rtt_ms": 1.34375, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.627655913Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.16894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210866, - "rtt_ms": 1.210866, + "rtt_ns": 1477791, + "rtt_ms": 1.477791, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "677", - "timestamp": "2025-11-27T01:22:00.627719643Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.168955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679344, - "rtt_ms": 1.679344, + "rtt_ns": 1446583, + "rtt_ms": 1.446583, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.627730033Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.168972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1603335, - "rtt_ms": 1.603335, + "rtt_ns": 1226000, + "rtt_ms": 1.226, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.627731883Z" + "vertex_to": "880", + "timestamp": "2025-11-27T04:01:59.16902-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340306, - "rtt_ms": 1.340306, + "rtt_ns": 2626292, + "rtt_ms": 2.626292, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.627794043Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.169034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511535, - "rtt_ms": 1.511535, + "rtt_ns": 1444875, + "rtt_ms": 1.444875, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.628318291Z" + "vertex_to": "677", + "timestamp": "2025-11-27T04:01:59.169076-08:00" }, { "operation": "add_edge", - "rtt_ns": 2378132, - "rtt_ms": 2.378132, + "rtt_ns": 1457000, + "rtt_ms": 1.457, "checkpoint": 0, "vertex_from": "323", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.628411331Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.169161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513485, - "rtt_ms": 1.513485, + "rtt_ns": 1384792, + "rtt_ms": 1.384792, "checkpoint": 0, "vertex_from": "324", "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.628479821Z" + "timestamp": "2025-11-27T04:01:59.169179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712664, - "rtt_ms": 1.712664, + "rtt_ns": 1387417, + "rtt_ms": 1.387417, "checkpoint": 0, - "vertex_from": "323", - "vertex_to": "880", - "timestamp": "2025-11-27T01:22:00.628677Z" + "vertex_from": "324", + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:59.170343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1227076, - "rtt_ms": 1.227076, + "rtt_ns": 1284083, + "rtt_ms": 1.284083, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.62870278Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:59.170362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1127967, - "rtt_ms": 1.127967, + "rtt_ns": 1462458, + "rtt_ms": 1.462458, "checkpoint": 0, "vertex_from": "324", "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.62878515Z" + "timestamp": "2025-11-27T04:01:59.170388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497645, - "rtt_ms": 1.497645, + "rtt_ns": 1503792, + "rtt_ms": 1.503792, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "611", - "timestamp": "2025-11-27T01:22:00.629218398Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.170412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523975, - "rtt_ms": 1.523975, + "rtt_ns": 1391959, + "rtt_ms": 1.391959, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.629319268Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:59.170427-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601395, - "rtt_ms": 1.601395, + "rtt_ns": 1620083, + "rtt_ms": 1.620083, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.629334268Z" + "vertex_to": "791", + "timestamp": "2025-11-27T04:01:59.170783-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1810000, + "rtt_ms": 1.81, + "checkpoint": 0, + "vertex_from": "797", + "timestamp": "2025-11-27T04:01:59.170991-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007787, - "rtt_ms": 1.007787, + "rtt_ns": 2041459, + "rtt_ms": 2.041459, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "664", - "timestamp": "2025-11-27T01:22:00.629341228Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.171015-08:00" }, { "operation": "add_edge", - "rtt_ns": 914207, - "rtt_ms": 0.914207, + "rtt_ns": 2240000, + "rtt_ms": 2.24, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "791", - "timestamp": "2025-11-27T01:22:00.629404088Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:59.171263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044237, - "rtt_ms": 1.044237, + "rtt_ns": 2346250, + "rtt_ms": 2.34625, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "393", - "timestamp": "2025-11-27T01:22:00.629458998Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:01:59.171288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729075, - "rtt_ms": 1.729075, + "rtt_ns": 1365500, + "rtt_ms": 1.3655, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.629461278Z" + "vertex_to": "328", + "timestamp": "2025-11-27T04:01:59.171729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520595, - "rtt_ms": 1.520595, + "rtt_ns": 1426583, + "rtt_ms": 1.426583, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "601", - "timestamp": "2025-11-27T01:22:00.630225825Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.171839-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1559305, - "rtt_ms": 1.559305, + "operation": "add_edge", + "rtt_ns": 1562500, + "rtt_ms": 1.5625, "checkpoint": 0, - "vertex_from": "797", - "timestamp": "2025-11-27T01:22:00.630239725Z" + "vertex_from": "324", + "vertex_to": "601", + "timestamp": "2025-11-27T04:01:59.171907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614475, - "rtt_ms": 1.614475, + "rtt_ns": 1541375, + "rtt_ms": 1.541375, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "328", - "timestamp": "2025-11-27T01:22:00.630401395Z" + "vertex_to": "817", + "timestamp": "2025-11-27T04:01:59.171969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695045, - "rtt_ms": 1.695045, + "rtt_ns": 1749542, + "rtt_ms": 1.749542, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.630914153Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:59.173039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786234, - "rtt_ms": 1.786234, + "rtt_ns": 2273041, + "rtt_ms": 2.273041, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.631106282Z" + "vertex_to": "392", + "timestamp": "2025-11-27T04:01:59.173057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774724, - "rtt_ms": 1.774724, + "rtt_ns": 1340792, + "rtt_ms": 1.340792, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "817", - "timestamp": "2025-11-27T01:22:00.631110322Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:59.173072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652734, - "rtt_ms": 1.652734, + "rtt_ns": 1824042, + "rtt_ms": 1.824042, "checkpoint": 0, "vertex_from": "324", "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.631112862Z" + "timestamp": "2025-11-27T04:01:59.173089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1720484, - "rtt_ms": 1.720484, + "rtt_ns": 2112333, + "rtt_ms": 2.112333, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.631127042Z" + "vertex_to": "797", + "timestamp": "2025-11-27T04:01:59.173103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701754, - "rtt_ms": 1.701754, + "rtt_ns": 2101875, + "rtt_ms": 2.101875, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "338", - "timestamp": "2025-11-27T01:22:00.631164522Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.17312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879184, - "rtt_ms": 1.879184, + "rtt_ns": 1162917, + "rtt_ms": 1.162917, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "392", - "timestamp": "2025-11-27T01:22:00.631221562Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:59.173133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409435, - "rtt_ms": 1.409435, + "rtt_ns": 1341334, + "rtt_ms": 1.341334, "checkpoint": 0, "vertex_from": "324", "vertex_to": "721", - "timestamp": "2025-11-27T01:22:00.63181295Z" + "timestamp": "2025-11-27T04:01:59.173182-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606775, - "rtt_ms": 1.606775, + "rtt_ns": 2839334, + "rtt_ms": 2.839334, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.63183555Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:59.173228-08:00" }, { "operation": "add_edge", - "rtt_ns": 814528, - "rtt_ms": 0.814528, + "rtt_ns": 1418042, + "rtt_ms": 1.418042, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.63192575Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:59.174491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752115, - "rtt_ms": 1.752115, + "rtt_ns": 1495833, + "rtt_ms": 1.495833, "checkpoint": 0, - "vertex_from": "324", - "vertex_to": "797", - "timestamp": "2025-11-27T01:22:00.63199204Z" + "vertex_from": "325", + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.174681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204806, - "rtt_ms": 1.204806, + "rtt_ns": 1587166, + "rtt_ms": 1.587166, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "722", - "timestamp": "2025-11-27T01:22:00.632120279Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.174691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487196, - "rtt_ms": 1.487196, + "rtt_ns": 1683500, + "rtt_ms": 1.6835, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.632652998Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:59.174724-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657015, - "rtt_ms": 1.657015, + "rtt_ns": 1680416, + "rtt_ms": 1.680416, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "868", - "timestamp": "2025-11-27T01:22:00.632784997Z" + "vertex_to": "389", + "timestamp": "2025-11-27T04:01:59.174738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1609775, - "rtt_ms": 1.609775, + "rtt_ns": 1659209, + "rtt_ms": 1.659209, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.632832267Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:59.174749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1734345, - "rtt_ms": 1.734345, + "rtt_ns": 2924750, + "rtt_ms": 2.92475, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "588", - "timestamp": "2025-11-27T01:22:00.632842117Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:01:59.174832-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047637, - "rtt_ms": 1.047637, + "rtt_ns": 1739708, + "rtt_ms": 1.739708, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "427", - "timestamp": "2025-11-27T01:22:00.632862057Z" + "vertex_to": "574", + "timestamp": "2025-11-27T04:01:59.174874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759495, - "rtt_ms": 1.759495, + "rtt_ns": 2092292, + "rtt_ms": 2.092292, "checkpoint": 0, "vertex_from": "324", - "vertex_to": "389", - "timestamp": "2025-11-27T01:22:00.632874217Z" + "vertex_to": "427", + "timestamp": "2025-11-27T04:01:59.175213-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497886, - "rtt_ms": 1.497886, + "rtt_ns": 954291, + "rtt_ms": 0.954291, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.633619005Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1899784, - "rtt_ms": 1.899784, - "checkpoint": 0, - "vertex_from": "324", - "vertex_to": "574", - "timestamp": "2025-11-27T01:22:00.633736374Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.175705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105826, - "rtt_ms": 1.105826, + "rtt_ns": 1288875, + "rtt_ms": 1.288875, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "752", - "timestamp": "2025-11-27T01:22:00.633759974Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:59.176013-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767484, - "rtt_ms": 1.767484, + "rtt_ns": 1294083, + "rtt_ms": 1.294083, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.633760154Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:59.176033-08:00" }, { "operation": "add_edge", - "rtt_ns": 974137, - "rtt_ms": 0.974137, + "rtt_ns": 1356375, + "rtt_ms": 1.356375, "checkpoint": 0, "vertex_from": "325", "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.633760004Z" + "timestamp": "2025-11-27T04:01:59.176049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1912294, - "rtt_ms": 1.912294, + "rtt_ns": 2858084, + "rtt_ms": 2.858084, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.633839344Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.176087-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295776, - "rtt_ms": 1.295776, + "rtt_ns": 1548167, + "rtt_ms": 1.548167, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.634170883Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:59.176233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760264, - "rtt_ms": 1.760264, + "rtt_ns": 1440625, + "rtt_ms": 1.440625, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.634622911Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.176274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792544, - "rtt_ms": 1.792544, + "rtt_ns": 1813791, + "rtt_ms": 1.813791, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "412", - "timestamp": "2025-11-27T01:22:00.634635781Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.176306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1960674, - "rtt_ms": 1.960674, + "rtt_ns": 2049375, + "rtt_ms": 2.049375, "checkpoint": 0, "vertex_from": "325", - "vertex_to": "568", - "timestamp": "2025-11-27T01:22:00.634798611Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.177264-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1540495, - "rtt_ms": 1.540495, + "rtt_ns": 2582000, + "rtt_ms": 2.582, "checkpoint": 0, "vertex_from": "471", - "timestamp": "2025-11-27T01:22:00.63516415Z" + "timestamp": "2025-11-27T04:01:59.17746-08:00" }, { "operation": "add_edge", - "rtt_ns": 1474825, - "rtt_ms": 1.474825, + "rtt_ns": 1602833, + "rtt_ms": 1.602833, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.635235629Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.177637-08:00" }, { "operation": "add_edge", - "rtt_ns": 1465695, - "rtt_ms": 1.465695, + "rtt_ns": 1691458, + "rtt_ms": 1.691458, "checkpoint": 0, "vertex_from": "326", "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.635306999Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1577335, - "rtt_ms": 1.577335, - "checkpoint": 0, - "vertex_from": "325", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.635314279Z" + "timestamp": "2025-11-27T04:01:59.177743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1645565, - "rtt_ms": 1.645565, + "rtt_ns": 1549500, + "rtt_ms": 1.5495, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.635407969Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:59.177825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648175, - "rtt_ms": 1.648175, + "rtt_ns": 1664750, + "rtt_ms": 1.66475, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "616", - "timestamp": "2025-11-27T01:22:00.635410469Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:59.177899-08:00" }, { "operation": "add_edge", - "rtt_ns": 838958, - "rtt_ms": 0.838958, + "rtt_ns": 1918875, + "rtt_ms": 1.918875, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.635462959Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:59.177933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306156, - "rtt_ms": 1.306156, + "rtt_ns": 2246708, + "rtt_ms": 2.246708, "checkpoint": 0, "vertex_from": "326", - "vertex_to": "789", - "timestamp": "2025-11-27T01:22:00.635477969Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.177955-08:00" }, { "operation": "add_edge", - "rtt_ns": 690968, - "rtt_ms": 0.690968, + "rtt_ns": 1660583, + "rtt_ms": 1.660583, "checkpoint": 0, "vertex_from": "326", "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.635490789Z" + "timestamp": "2025-11-27T04:01:59.177967-08:00" }, { "operation": "add_edge", - "rtt_ns": 984257, - "rtt_ms": 0.984257, + "rtt_ns": 2075333, + "rtt_ms": 2.075333, "checkpoint": 0, - "vertex_from": "327", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.636293036Z" + "vertex_from": "326", + "vertex_to": "789", + "timestamp": "2025-11-27T04:01:59.178164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086007, - "rtt_ms": 1.086007, + "rtt_ns": 1499208, + "rtt_ms": 1.499208, "checkpoint": 0, "vertex_from": "326", "vertex_to": "550", - "timestamp": "2025-11-27T01:22:00.636322596Z" + "timestamp": "2025-11-27T04:01:59.178766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034677, - "rtt_ms": 1.034677, + "rtt_ns": 1720583, + "rtt_ms": 1.720583, "checkpoint": 0, - "vertex_from": "327", - "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.636349986Z" + "vertex_from": "325", + "vertex_to": "471", + "timestamp": "2025-11-27T04:01:59.179181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1225816, - "rtt_ms": 1.225816, + "rtt_ns": 1501583, + "rtt_ms": 1.501583, "checkpoint": 0, - "vertex_from": "325", - "vertex_to": "471", - "timestamp": "2025-11-27T01:22:00.636390386Z" + "vertex_from": "327", + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:59.179245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820404, - "rtt_ms": 1.820404, + "rtt_ns": 1446792, + "rtt_ms": 1.446792, "checkpoint": 0, - "vertex_from": "326", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.636456985Z" + "vertex_from": "327", + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.179273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179906, - "rtt_ms": 1.179906, + "rtt_ns": 1706291, + "rtt_ms": 1.706291, "checkpoint": 0, "vertex_from": "327", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.636588335Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:59.179344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1561255, - "rtt_ms": 1.561255, + "rtt_ns": 1499500, + "rtt_ms": 1.4995, "checkpoint": 0, "vertex_from": "328", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.636972674Z" + "timestamp": "2025-11-27T04:01:59.179401-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649734, - "rtt_ms": 1.649734, + "rtt_ns": 1433709, + "rtt_ms": 1.433709, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.637113713Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.179402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673034, - "rtt_ms": 1.673034, + "rtt_ns": 1484334, + "rtt_ms": 1.484334, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "336", - "timestamp": "2025-11-27T01:22:00.637152213Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.179419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751494, - "rtt_ms": 1.751494, + "rtt_ns": 2207042, + "rtt_ms": 2.207042, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.637243373Z" + "vertex_to": "336", + "timestamp": "2025-11-27T04:01:59.180164-08:00" }, { "operation": "add_edge", - "rtt_ns": 1273775, - "rtt_ms": 1.273775, + "rtt_ns": 1910375, + "rtt_ms": 1.910375, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.637665301Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:59.181256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360206, - "rtt_ms": 1.360206, + "rtt_ns": 2205916, + "rtt_ms": 2.205916, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.637818031Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.181388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125586, - "rtt_ms": 1.125586, + "rtt_ns": 2064292, + "rtt_ms": 2.064292, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "587", - "timestamp": "2025-11-27T01:22:00.6380991Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:59.181484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777704, - "rtt_ms": 1.777704, + "rtt_ns": 2100459, + "rtt_ms": 2.100459, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.63812883Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.181503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1835354, - "rtt_ms": 1.835354, + "rtt_ns": 2759958, + "rtt_ms": 2.759958, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.63813023Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.181527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575665, - "rtt_ms": 1.575665, + "rtt_ns": 2286334, + "rtt_ms": 2.286334, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.63816472Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.181532-08:00" }, { "operation": "add_edge", - "rtt_ns": 2394672, - "rtt_ms": 2.394672, + "rtt_ns": 2214166, + "rtt_ms": 2.214166, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.638718068Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:01:59.181617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613775, - "rtt_ms": 1.613775, + "rtt_ns": 1560625, + "rtt_ms": 1.560625, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "402", - "timestamp": "2025-11-27T01:22:00.638767018Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.181726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706754, - "rtt_ms": 1.706754, + "rtt_ns": 2463834, + "rtt_ms": 2.463834, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.638822477Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.181737-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190116, - "rtt_ms": 1.190116, + "rtt_ns": 3630917, + "rtt_ms": 3.630917, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.638856487Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.181796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637604, - "rtt_ms": 1.637604, + "rtt_ns": 1053042, + "rtt_ms": 1.053042, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.638882027Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.18258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1468585, - "rtt_ms": 1.468585, + "rtt_ns": 1340291, + "rtt_ms": 1.340291, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "662", - "timestamp": "2025-11-27T01:22:00.639571905Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:59.182597-08:00" }, { "operation": "add_edge", - "rtt_ns": 964086, - "rtt_ms": 0.964086, + "rtt_ns": 1425417, + "rtt_ms": 1.425417, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.639731924Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.182814-08:00" }, { "operation": "add_edge", - "rtt_ns": 981987, - "rtt_ms": 0.981987, + "rtt_ns": 1383833, + "rtt_ms": 1.383833, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.639805254Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.182888-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059933, - "rtt_ms": 2.059933, + "rtt_ns": 1191375, + "rtt_ms": 1.191375, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.639882114Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.182988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1179566, - "rtt_ms": 1.179566, + "rtt_ns": 1465792, + "rtt_ms": 1.465792, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.639898944Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.182999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863614, - "rtt_ms": 1.863614, + "rtt_ns": 1519500, + "rtt_ms": 1.5195, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.639995484Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:59.183004-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848914, - "rtt_ms": 1.848914, + "rtt_ns": 1405709, + "rtt_ms": 1.405709, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.640014684Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:59.183023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919623, - "rtt_ms": 1.919623, + "rtt_ns": 1500792, + "rtt_ms": 1.500792, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.640051353Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.183227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773134, - "rtt_ms": 1.773134, + "rtt_ns": 1626958, + "rtt_ms": 1.626958, "checkpoint": 0, "vertex_from": "328", "vertex_to": "773", - "timestamp": "2025-11-27T01:22:00.640656581Z" + "timestamp": "2025-11-27T04:01:59.184208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1162836, - "rtt_ms": 1.162836, + "rtt_ns": 1589875, + "rtt_ms": 1.589875, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.640738821Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:59.184579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1915084, - "rtt_ms": 1.915084, + "rtt_ns": 1996916, + "rtt_ms": 1.996916, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.640772391Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:59.184594-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205027, - "rtt_ms": 1.205027, + "rtt_ns": 1860750, + "rtt_ms": 1.86075, "checkpoint": 0, - "vertex_from": "329", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.641863388Z" + "vertex_from": "328", + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.184676-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034173, - "rtt_ms": 2.034173, + "rtt_ns": 1472250, + "rtt_ms": 1.47225, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.641918397Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.1847-08:00" }, { "operation": "add_edge", - "rtt_ns": 2142933, - "rtt_ms": 2.142933, + "rtt_ns": 1842000, + "rtt_ms": 1.842, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.641951657Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:59.184842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958483, - "rtt_ms": 1.958483, + "rtt_ns": 1855542, + "rtt_ms": 1.855542, "checkpoint": 0, "vertex_from": "328", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.641956317Z" + "timestamp": "2025-11-27T04:01:59.184861-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251823, - "rtt_ms": 2.251823, + "rtt_ns": 3460625, + "rtt_ms": 3.460625, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.641985677Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:59.185199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265236, - "rtt_ms": 1.265236, + "rtt_ns": 2235583, + "rtt_ms": 2.235583, "checkpoint": 0, - "vertex_from": "329", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.642005347Z" + "vertex_from": "328", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.185259-08:00" }, { "operation": "add_edge", - "rtt_ns": 1991934, - "rtt_ms": 1.991934, + "rtt_ns": 2412834, + "rtt_ms": 2.412834, "checkpoint": 0, "vertex_from": "328", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.642044937Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.185303-08:00" }, { "operation": "add_edge", - "rtt_ns": 2254573, - "rtt_ms": 2.254573, + "rtt_ns": 1266042, + "rtt_ms": 1.266042, "checkpoint": 0, - "vertex_from": "328", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.642155247Z" + "vertex_from": "329", + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.185943-08:00" }, { "operation": "add_edge", - "rtt_ns": 2180344, - "rtt_ms": 2.180344, + "rtt_ns": 1486958, + "rtt_ms": 1.486958, "checkpoint": 0, - "vertex_from": "328", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.642197027Z" + "vertex_from": "329", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.186082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477535, - "rtt_ms": 1.477535, + "rtt_ns": 1489167, + "rtt_ms": 1.489167, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.642250626Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:59.18619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121636, - "rtt_ms": 1.121636, + "rtt_ns": 1624666, + "rtt_ms": 1.624666, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.642987944Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.186204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054317, - "rtt_ms": 1.054317, + "rtt_ns": 2042584, + "rtt_ms": 2.042584, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "412", - "timestamp": "2025-11-27T01:22:00.643041854Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.186252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1094037, - "rtt_ms": 1.094037, + "rtt_ns": 1786292, + "rtt_ms": 1.786292, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "362", - "timestamp": "2025-11-27T01:22:00.643052074Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.186629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103427, - "rtt_ms": 1.103427, + "rtt_ns": 1465708, + "rtt_ms": 1.465708, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.643057704Z" + "vertex_to": "412", + "timestamp": "2025-11-27T04:01:59.186666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341416, - "rtt_ms": 1.341416, + "rtt_ns": 1439958, + "rtt_ms": 1.439958, "checkpoint": 0, "vertex_from": "329", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.643387963Z" + "timestamp": "2025-11-27T04:01:59.186743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544046, - "rtt_ms": 1.544046, + "rtt_ns": 1925167, + "rtt_ms": 1.925167, "checkpoint": 0, "vertex_from": "329", - "vertex_to": "352", - "timestamp": "2025-11-27T01:22:00.643464013Z" + "vertex_to": "362", + "timestamp": "2025-11-27T04:01:59.186787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256556, - "rtt_ms": 1.256556, + "rtt_ns": 1900375, + "rtt_ms": 1.900375, "checkpoint": 0, - "vertex_from": "330", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.643508142Z" + "vertex_from": "329", + "vertex_to": "330", + "timestamp": "2025-11-27T04:01:59.18716-08:00" }, { "operation": "add_edge", - "rtt_ns": 1315145, - "rtt_ms": 1.315145, + "rtt_ns": 1202500, + "rtt_ms": 1.2025, "checkpoint": 0, "vertex_from": "329", "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.643513362Z" + "timestamp": "2025-11-27T04:01:59.187285-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382735, - "rtt_ms": 1.382735, + "rtt_ns": 1640625, + "rtt_ms": 1.640625, "checkpoint": 0, "vertex_from": "329", "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.643539352Z" + "timestamp": "2025-11-27T04:01:59.187584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535535, - "rtt_ms": 1.535535, + "rtt_ns": 1676666, + "rtt_ms": 1.676666, "checkpoint": 0, - "vertex_from": "329", - "vertex_to": "330", - "timestamp": "2025-11-27T01:22:00.643543352Z" + "vertex_from": "330", + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.188343-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129776, - "rtt_ms": 1.129776, + "rtt_ns": 1617333, + "rtt_ms": 1.617333, "checkpoint": 0, "vertex_from": "330", - "vertex_to": "600", - "timestamp": "2025-11-27T01:22:00.64411975Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.188361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063806, - "rtt_ms": 1.063806, + "rtt_ns": 2123042, + "rtt_ms": 2.123042, "checkpoint": 0, "vertex_from": "330", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.6441234Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.188376-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1252196, - "rtt_ms": 1.252196, + "operation": "add_vertex", + "rtt_ns": 1601958, + "rtt_ms": 1.601958, "checkpoint": 0, - "vertex_from": "330", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.64430624Z" + "vertex_from": "919", + "timestamp": "2025-11-27T04:01:59.18839-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263786, - "rtt_ms": 1.263786, + "rtt_ns": 1761167, + "rtt_ms": 1.761167, "checkpoint": 0, "vertex_from": "330", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.64430691Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:59.188391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067306, - "rtt_ms": 1.067306, + "rtt_ns": 2265000, + "rtt_ms": 2.265, "checkpoint": 0, "vertex_from": "330", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.644456739Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.188456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527105, - "rtt_ms": 1.527105, + "rtt_ns": 1294375, + "rtt_ms": 1.294375, "checkpoint": 0, "vertex_from": "331", - "vertex_to": "361", - "timestamp": "2025-11-27T01:22:00.645073127Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.18858-08:00" }, { "operation": "add_edge", - "rtt_ns": 986577, - "rtt_ms": 0.986577, + "rtt_ns": 2377750, + "rtt_ms": 2.37775, "checkpoint": 0, - "vertex_from": "332", - "vertex_to": "338", - "timestamp": "2025-11-27T01:22:00.645108167Z" + "vertex_from": "330", + "vertex_to": "600", + "timestamp": "2025-11-27T04:01:59.188583-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644075, - "rtt_ms": 1.644075, + "rtt_ns": 2153834, + "rtt_ms": 2.153834, "checkpoint": 0, "vertex_from": "330", "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.645154307Z" + "timestamp": "2025-11-27T04:01:59.189315-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1748524, - "rtt_ms": 1.748524, + "operation": "add_edge", + "rtt_ns": 1220625, + "rtt_ms": 1.220625, "checkpoint": 0, - "vertex_from": "919", - "timestamp": "2025-11-27T01:22:00.645216667Z" + "vertex_from": "330", + "vertex_to": "919", + "timestamp": "2025-11-27T04:01:59.189611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1154797, - "rtt_ms": 1.154797, + "rtt_ns": 1335417, + "rtt_ms": 1.335417, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.645280807Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.189792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770935, - "rtt_ms": 1.770935, + "rtt_ns": 1418209, + "rtt_ms": 1.418209, "checkpoint": 0, - "vertex_from": "331", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.645285837Z" + "vertex_from": "332", + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:59.18981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1134256, - "rtt_ms": 1.134256, + "rtt_ns": 2267959, + "rtt_ms": 2.267959, "checkpoint": 0, - "vertex_from": "332", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.645442486Z" + "vertex_from": "331", + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:59.189853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147056, - "rtt_ms": 1.147056, + "rtt_ns": 1553000, + "rtt_ms": 1.553, "checkpoint": 0, - "vertex_from": "332", - "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.645455386Z" + "vertex_from": "331", + "vertex_to": "361", + "timestamp": "2025-11-27T04:01:59.189897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1963974, - "rtt_ms": 1.963974, + "rtt_ns": 1536833, + "rtt_ms": 1.536833, "checkpoint": 0, - "vertex_from": "331", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.645504716Z" + "vertex_from": "332", + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:59.189913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152097, - "rtt_ms": 1.152097, + "rtt_ns": 1348500, + "rtt_ms": 1.3485, "checkpoint": 0, "vertex_from": "332", "vertex_to": "550", - "timestamp": "2025-11-27T01:22:00.645610806Z" + "timestamp": "2025-11-27T04:01:59.189929-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106027, - "rtt_ms": 1.106027, + "rtt_ns": 1611583, + "rtt_ms": 1.611583, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.646181954Z" + "vertex_to": "338", + "timestamp": "2025-11-27T04:01:59.189979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369866, - "rtt_ms": 1.369866, + "rtt_ns": 1476458, + "rtt_ms": 1.476458, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.646479403Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.190061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233126, - "rtt_ms": 1.233126, + "rtt_ns": 1633833, + "rtt_ms": 1.633833, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.646515643Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:59.191488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075977, - "rtt_ms": 1.075977, + "rtt_ns": 1439500, + "rtt_ms": 1.4395, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.646520253Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:01:59.191501-08:00" }, { "operation": "add_edge", - "rtt_ns": 1234256, - "rtt_ms": 1.234256, + "rtt_ns": 1614500, + "rtt_ms": 1.6145, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.646521473Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.191512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019417, - "rtt_ms": 1.019417, + "rtt_ns": 2331958, + "rtt_ms": 2.331958, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.646525643Z" + "vertex_to": "352", + "timestamp": "2025-11-27T04:01:59.191944-08:00" }, { "operation": "add_edge", - "rtt_ns": 1373766, - "rtt_ms": 1.373766, + "rtt_ns": 2094417, + "rtt_ms": 2.094417, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "352", - "timestamp": "2025-11-27T01:22:00.646528913Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.192025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374216, - "rtt_ms": 1.374216, + "rtt_ns": 2715833, + "rtt_ms": 2.715833, "checkpoint": 0, - "vertex_from": "330", - "vertex_to": "919", - "timestamp": "2025-11-27T01:22:00.646591363Z" + "vertex_from": "332", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:59.192032-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456236, - "rtt_ms": 1.456236, + "rtt_ns": 2309583, + "rtt_ms": 2.309583, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.646912762Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:01:59.192103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571785, - "rtt_ms": 1.571785, + "rtt_ns": 2228875, + "rtt_ms": 2.228875, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.647183561Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.192143-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018927, - "rtt_ms": 1.018927, + "rtt_ns": 2378166, + "rtt_ms": 2.378166, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.647202621Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.192189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1289956, - "rtt_ms": 1.289956, + "rtt_ns": 2284083, + "rtt_ms": 2.284083, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.647808479Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.192263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1294836, - "rtt_ms": 1.294836, + "rtt_ns": 1251791, + "rtt_ms": 1.251791, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.647825529Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.192753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238716, - "rtt_ms": 1.238716, + "rtt_ns": 1557333, + "rtt_ms": 1.557333, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.647832199Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.193071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311646, - "rtt_ms": 1.311646, + "rtt_ns": 1193250, + "rtt_ms": 1.19325, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.647835129Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:01:59.193138-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356656, - "rtt_ms": 1.356656, + "rtt_ns": 1739041, + "rtt_ms": 1.739041, "checkpoint": 0, "vertex_from": "332", - "vertex_to": "789", - "timestamp": "2025-11-27T01:22:00.647838519Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.193228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318326, - "rtt_ms": 1.318326, + "rtt_ns": 1956334, + "rtt_ms": 1.956334, "checkpoint": 0, "vertex_from": "333", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.647841019Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.19399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1322256, - "rtt_ms": 1.322256, + "rtt_ns": 1819125, + "rtt_ms": 1.819125, "checkpoint": 0, - "vertex_from": "333", - "vertex_to": "794", - "timestamp": "2025-11-27T01:22:00.647849769Z" + "vertex_from": "336", + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:59.194009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1122326, - "rtt_ms": 1.122326, + "rtt_ns": 1865583, + "rtt_ms": 1.865583, "checkpoint": 0, "vertex_from": "334", - "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.648037548Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.194012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433545, - "rtt_ms": 1.433545, + "rtt_ns": 1952458, + "rtt_ms": 1.952458, "checkpoint": 0, - "vertex_from": "336", - "vertex_to": "386", - "timestamp": "2025-11-27T01:22:00.648637706Z" + "vertex_from": "334", + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:59.194057-08:00" }, { "operation": "add_edge", - "rtt_ns": 847037, - "rtt_ms": 0.847037, + "rtt_ns": 1107125, + "rtt_ms": 1.107125, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.648661156Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.194179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489555, - "rtt_ms": 1.489555, + "rtt_ns": 2035958, + "rtt_ms": 2.035958, "checkpoint": 0, - "vertex_from": "334", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.648675996Z" + "vertex_from": "336", + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:59.1943-08:00" }, { "operation": "add_edge", - "rtt_ns": 968547, - "rtt_ms": 0.968547, + "rtt_ns": 1687875, + "rtt_ms": 1.687875, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "418", - "timestamp": "2025-11-27T01:22:00.648812636Z" + "vertex_to": "358", + "timestamp": "2025-11-27T04:01:59.194443-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041996, - "rtt_ms": 1.041996, + "rtt_ns": 2763334, + "rtt_ms": 2.763334, "checkpoint": 0, - "vertex_from": "336", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.648878405Z" + "vertex_from": "333", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.194792-08:00" }, { "operation": "add_edge", - "rtt_ns": 1058286, - "rtt_ms": 1.058286, + "rtt_ns": 1985958, + "rtt_ms": 1.985958, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "358", - "timestamp": "2025-11-27T01:22:00.648885325Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:59.195125-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048776, - "rtt_ms": 1.048776, + "rtt_ns": 1188042, + "rtt_ms": 1.188042, "checkpoint": 0, "vertex_from": "336", "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.648901175Z" + "timestamp": "2025-11-27T04:01:59.195198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068726, - "rtt_ms": 1.068726, + "rtt_ns": 1248958, + "rtt_ms": 1.248958, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.648909485Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:59.19524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1256226, - "rtt_ms": 1.256226, + "rtt_ns": 1336000, + "rtt_ms": 1.336, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.649090155Z" + "vertex_to": "667", + "timestamp": "2025-11-27T04:01:59.19535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073597, - "rtt_ms": 1.073597, + "rtt_ns": 1327334, + "rtt_ms": 1.327334, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "667", - "timestamp": "2025-11-27T01:22:00.649112755Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.195385-08:00" }, { "operation": "add_edge", - "rtt_ns": 785368, - "rtt_ms": 0.785368, + "rtt_ns": 2245791, + "rtt_ms": 2.245791, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.649447594Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.195475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209356, - "rtt_ms": 1.209356, + "rtt_ns": 2121166, + "rtt_ms": 2.121166, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.650024022Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.196301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391826, - "rtt_ms": 1.391826, + "rtt_ns": 1963875, + "rtt_ms": 1.963875, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.650031162Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.19641-08:00" }, { "operation": "add_edge", - "rtt_ns": 1151207, - "rtt_ms": 1.151207, + "rtt_ns": 1718291, + "rtt_ms": 1.718291, "checkpoint": 0, "vertex_from": "336", "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.650031582Z" + "timestamp": "2025-11-27T04:01:59.196511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1367006, - "rtt_ms": 1.367006, + "rtt_ns": 2213583, + "rtt_ms": 2.213583, "checkpoint": 0, "vertex_from": "336", "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.650046432Z" + "timestamp": "2025-11-27T04:01:59.196515-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033136, - "rtt_ms": 1.033136, + "rtt_ns": 1053375, + "rtt_ms": 1.053375, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.650125391Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:01:59.196529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221056, - "rtt_ms": 1.221056, + "rtt_ns": 1485000, + "rtt_ms": 1.485, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.650125681Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:59.196611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221196, - "rtt_ms": 1.221196, + "rtt_ns": 1386042, + "rtt_ms": 1.386042, "checkpoint": 0, "vertex_from": "336", "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.650133231Z" + "timestamp": "2025-11-27T04:01:59.196627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040146, - "rtt_ms": 1.040146, + "rtt_ns": 1285000, + "rtt_ms": 1.285, "checkpoint": 0, "vertex_from": "336", "vertex_to": "812", - "timestamp": "2025-11-27T01:22:00.650154701Z" + "timestamp": "2025-11-27T04:01:59.196671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1306516, - "rtt_ms": 1.306516, + "rtt_ns": 1482958, + "rtt_ms": 1.482958, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.650194361Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:59.196682-08:00" }, { "operation": "add_edge", - "rtt_ns": 868207, - "rtt_ms": 0.868207, + "rtt_ns": 1345625, + "rtt_ms": 1.345625, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.650917239Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.196696-08:00" }, { "operation": "add_edge", - "rtt_ns": 932347, - "rtt_ms": 0.932347, + "rtt_ns": 959125, + "rtt_ms": 0.959125, "checkpoint": 0, - "vertex_from": "336", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.650966639Z" + "vertex_from": "337", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.197631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547475, - "rtt_ms": 1.547475, + "rtt_ns": 1294375, + "rtt_ms": 1.294375, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "647", - "timestamp": "2025-11-27T01:22:00.650996629Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.19781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080136, - "rtt_ms": 1.080136, + "rtt_ns": 1452292, + "rtt_ms": 1.452292, "checkpoint": 0, "vertex_from": "336", "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.651113058Z" + "timestamp": "2025-11-27T04:01:59.197863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115776, - "rtt_ms": 1.115776, + "rtt_ns": 1456625, + "rtt_ms": 1.456625, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "806", - "timestamp": "2025-11-27T01:22:00.651141668Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.197968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1641235, - "rtt_ms": 1.641235, + "rtt_ns": 1360333, + "rtt_ms": 1.360333, "checkpoint": 0, - "vertex_from": "337", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.651837746Z" + "vertex_from": "336", + "vertex_to": "680", + "timestamp": "2025-11-27T04:01:59.197988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1766405, - "rtt_ms": 1.766405, + "rtt_ns": 1382750, + "rtt_ms": 1.38275, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "523", - "timestamp": "2025-11-27T01:22:00.651893606Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.197994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786545, - "rtt_ms": 1.786545, + "rtt_ns": 1728417, + "rtt_ms": 1.728417, "checkpoint": 0, "vertex_from": "336", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.651915076Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:59.19803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761845, - "rtt_ms": 1.761845, + "rtt_ns": 1366333, + "rtt_ms": 1.366333, "checkpoint": 0, "vertex_from": "337", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.651917976Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.198051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799365, - "rtt_ms": 1.799365, + "rtt_ns": 1406459, + "rtt_ms": 1.406459, "checkpoint": 0, - "vertex_from": "336", - "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.651934636Z" + "vertex_from": "337", + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.198104-08:00" }, { "operation": "add_edge", - "rtt_ns": 959727, - "rtt_ms": 0.959727, + "rtt_ns": 1616417, + "rtt_ms": 1.616417, "checkpoint": 0, - "vertex_from": "337", - "vertex_to": "654", - "timestamp": "2025-11-27T01:22:00.651957446Z" + "vertex_from": "336", + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:59.198146-08:00" }, { "operation": "add_edge", - "rtt_ns": 736937, - "rtt_ms": 0.736937, + "rtt_ns": 2057041, + "rtt_ms": 2.057041, "checkpoint": 0, - "vertex_from": "339", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.652695563Z" + "vertex_from": "338", + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.200109-08:00" }, { "operation": "add_edge", - "rtt_ns": 795317, - "rtt_ms": 0.795317, + "rtt_ns": 2507292, + "rtt_ms": 2.507292, "checkpoint": 0, - "vertex_from": "339", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.652732333Z" + "vertex_from": "337", + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:59.200139-08:00" }, { "operation": "add_edge", - "rtt_ns": 2434642, - "rtt_ms": 2.434642, + "rtt_ns": 2284000, + "rtt_ms": 2.284, "checkpoint": 0, "vertex_from": "337", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.653354201Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.200148-08:00" }, { "operation": "add_edge", - "rtt_ns": 2247603, - "rtt_ms": 2.247603, + "rtt_ns": 2050917, + "rtt_ms": 2.050917, "checkpoint": 0, - "vertex_from": "337", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.653362251Z" + "vertex_from": "339", + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.200155-08:00" }, { "operation": "add_edge", - "rtt_ns": 1540205, - "rtt_ms": 1.540205, + "rtt_ns": 2024334, + "rtt_ms": 2.024334, "checkpoint": 0, - "vertex_from": "338", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.653379721Z" + "vertex_from": "339", + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.200171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547065, - "rtt_ms": 1.547065, + "rtt_ns": 2140917, + "rtt_ms": 2.140917, "checkpoint": 0, "vertex_from": "338", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.653442061Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.200171-08:00" }, { "operation": "add_edge", - "rtt_ns": 3068430, - "rtt_ms": 3.06843, + "rtt_ns": 2250875, + "rtt_ms": 2.250875, "checkpoint": 0, "vertex_from": "337", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.654039699Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:59.20022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457925, - "rtt_ms": 1.457925, + "rtt_ns": 2235125, + "rtt_ms": 2.235125, "checkpoint": 0, - "vertex_from": "339", - "vertex_to": "354", - "timestamp": "2025-11-27T01:22:00.654155078Z" + "vertex_from": "338", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.200224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475215, - "rtt_ms": 1.475215, + "rtt_ns": 2522750, + "rtt_ms": 2.52275, "checkpoint": 0, - "vertex_from": "340", - "vertex_to": "404", - "timestamp": "2025-11-27T01:22:00.654209998Z" + "vertex_from": "337", + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:59.200334-08:00" }, { "operation": "add_edge", - "rtt_ns": 2327222, - "rtt_ms": 2.327222, + "rtt_ns": 2478416, + "rtt_ms": 2.478416, "checkpoint": 0, "vertex_from": "338", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.654246498Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:59.200474-08:00" }, { "operation": "add_edge", - "rtt_ns": 2347302, - "rtt_ms": 2.347302, + "rtt_ns": 1642875, + "rtt_ms": 1.642875, "checkpoint": 0, - "vertex_from": "338", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.654263568Z" + "vertex_from": "340", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.202118-08:00" }, { "operation": "add_edge", - "rtt_ns": 3182920, - "rtt_ms": 3.18292, + "rtt_ns": 1824875, + "rtt_ms": 1.824875, "checkpoint": 0, - "vertex_from": "337", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.654326658Z" + "vertex_from": "340", + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:59.20216-08:00" }, { "operation": "add_edge", - "rtt_ns": 1038716, - "rtt_ms": 1.038716, + "rtt_ns": 2082791, + "rtt_ms": 2.082791, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.654403347Z" + "vertex_to": "404", + "timestamp": "2025-11-27T04:01:59.202222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032686, - "rtt_ms": 1.032686, + "rtt_ns": 2114500, + "rtt_ms": 2.1145, "checkpoint": 0, "vertex_from": "340", "vertex_to": "589", - "timestamp": "2025-11-27T01:22:00.654477037Z" + "timestamp": "2025-11-27T04:01:59.202287-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181426, - "rtt_ms": 1.181426, + "rtt_ns": 2159333, + "rtt_ms": 2.159333, "checkpoint": 0, "vertex_from": "340", "vertex_to": "789", - "timestamp": "2025-11-27T01:22:00.654537437Z" + "timestamp": "2025-11-27T04:01:59.202308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1174876, - "rtt_ms": 1.174876, + "rtt_ns": 2140959, + "rtt_ms": 2.140959, "checkpoint": 0, "vertex_from": "340", "vertex_to": "736", - "timestamp": "2025-11-27T01:22:00.654557547Z" + "timestamp": "2025-11-27T04:01:59.202313-08:00" }, { "operation": "add_edge", - "rtt_ns": 727627, - "rtt_ms": 0.727627, + "rtt_ns": 2212333, + "rtt_ms": 2.212333, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.654769296Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1161316, - "rtt_ms": 1.161316, - "checkpoint": 0, - "vertex_from": "342", - "vertex_to": "542", - "timestamp": "2025-11-27T01:22:00.655490274Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.202368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1300546, - "rtt_ms": 1.300546, + "rtt_ns": 2169416, + "rtt_ms": 2.169416, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.655548884Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.202394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148947, - "rtt_ms": 1.148947, + "rtt_ns": 2312500, + "rtt_ms": 2.3125, "checkpoint": 0, - "vertex_from": "343", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.655553694Z" + "vertex_from": "339", + "vertex_to": "354", + "timestamp": "2025-11-27T04:01:59.202423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401805, - "rtt_ms": 1.401805, + "rtt_ns": 2216125, + "rtt_ms": 2.216125, "checkpoint": 0, "vertex_from": "340", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.655558433Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.202439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024336, - "rtt_ms": 1.024336, + "rtt_ns": 1213792, + "rtt_ms": 1.213792, "checkpoint": 0, "vertex_from": "344", "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.655562883Z" + "timestamp": "2025-11-27T04:01:59.203525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298645, - "rtt_ms": 1.298645, + "rtt_ns": 1160791, + "rtt_ms": 1.160791, "checkpoint": 0, - "vertex_from": "341", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.655564283Z" + "vertex_from": "344", + "vertex_to": "866", + "timestamp": "2025-11-27T04:01:59.203556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356315, - "rtt_ms": 1.356315, + "rtt_ns": 1527708, + "rtt_ms": 1.527708, "checkpoint": 0, - "vertex_from": "340", - "vertex_to": "681", - "timestamp": "2025-11-27T01:22:00.655568123Z" + "vertex_from": "342", + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:59.203691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653345, - "rtt_ms": 1.653345, + "rtt_ns": 1481375, + "rtt_ms": 1.481375, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.656132162Z" + "vertex_to": "472", + "timestamp": "2025-11-27T04:01:59.203851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896294, - "rtt_ms": 1.896294, + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.656454551Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.203876-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1178597, - "rtt_ms": 1.178597, + "operation": "add_edge", + "rtt_ns": 1843792, + "rtt_ms": 1.843792, "checkpoint": 0, - "vertex_from": "747", - "timestamp": "2025-11-27T01:22:00.65674667Z" + "vertex_from": "344", + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:59.204268-08:00" }, { "operation": "add_edge", - "rtt_ns": 3180100, - "rtt_ms": 3.1801, + "rtt_ns": 2165417, + "rtt_ms": 2.165417, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "472", - "timestamp": "2025-11-27T01:22:00.657952336Z" + "vertex_from": "341", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.204287-08:00" }, { "operation": "add_edge", - "rtt_ns": 2522651, - "rtt_ms": 2.522651, + "rtt_ns": 1862084, + "rtt_ms": 1.862084, "checkpoint": 0, "vertex_from": "344", "vertex_to": "806", - "timestamp": "2025-11-27T01:22:00.658078105Z" + "timestamp": "2025-11-27T04:01:59.204303-08:00" }, { "operation": "add_edge", - "rtt_ns": 2546801, - "rtt_ms": 2.546801, + "rtt_ns": 2002292, + "rtt_ms": 2.002292, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "420", - "timestamp": "2025-11-27T01:22:00.658096775Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.204317-08:00" }, { "operation": "add_edge", - "rtt_ns": 2574882, - "rtt_ms": 2.574882, + "rtt_ns": 2368750, + "rtt_ms": 2.36875, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "422", - "timestamp": "2025-11-27T01:22:00.658140545Z" + "vertex_from": "343", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.204593-08:00" }, { "operation": "add_edge", - "rtt_ns": 2622422, - "rtt_ms": 2.622422, + "rtt_ns": 1840375, + "rtt_ms": 1.840375, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.658194735Z" + "vertex_to": "422", + "timestamp": "2025-11-27T04:01:59.205398-08:00" }, { "operation": "add_edge", - "rtt_ns": 2728012, - "rtt_ms": 2.728012, + "rtt_ns": 1887875, + "rtt_ms": 1.887875, "checkpoint": 0, "vertex_from": "344", "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.658288145Z" + "timestamp": "2025-11-27T04:01:59.205415-08:00" }, { - "operation": "add_edge", - "rtt_ns": 2825971, - "rtt_ms": 2.825971, + "operation": "add_vertex", + "rtt_ns": 1628208, + "rtt_ms": 1.628208, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "866", - "timestamp": "2025-11-27T01:22:00.658318905Z" + "vertex_from": "983", + "timestamp": "2025-11-27T04:01:59.205509-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2246923, - "rtt_ms": 2.246923, + "rtt_ns": 1961708, + "rtt_ms": 1.961708, "checkpoint": 0, - "vertex_from": "983", - "timestamp": "2025-11-27T01:22:00.658382285Z" + "vertex_from": "747", + "timestamp": "2025-11-27T04:01:59.205657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693394, - "rtt_ms": 1.693394, + "rtt_ns": 1471833, + "rtt_ms": 1.471833, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "747", - "timestamp": "2025-11-27T01:22:00.658440484Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:59.205742-08:00" }, { "operation": "add_edge", - "rtt_ns": 2014523, - "rtt_ms": 2.014523, + "rtt_ns": 1953042, + "rtt_ms": 1.953042, "checkpoint": 0, "vertex_from": "344", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.658470344Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.205805-08:00" }, { "operation": "add_edge", - "rtt_ns": 978037, - "rtt_ms": 0.978037, + "rtt_ns": 1729500, + "rtt_ms": 1.7295, "checkpoint": 0, "vertex_from": "345", "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.659057732Z" + "timestamp": "2025-11-27T04:01:59.206033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043997, - "rtt_ms": 1.043997, + "rtt_ns": 1748375, + "rtt_ms": 1.748375, "checkpoint": 0, "vertex_from": "345", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.659142362Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.206037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1005687, - "rtt_ms": 1.005687, + "rtt_ns": 1250292, + "rtt_ms": 1.250292, "checkpoint": 0, "vertex_from": "346", "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.659295042Z" + "timestamp": "2025-11-27T04:01:59.206666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1103247, - "rtt_ms": 1.103247, + "rtt_ns": 1286000, + "rtt_ms": 1.286, "checkpoint": 0, "vertex_from": "346", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.659299312Z" + "timestamp": "2025-11-27T04:01:59.206685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451885, - "rtt_ms": 1.451885, + "rtt_ns": 1170083, + "rtt_ms": 1.170083, "checkpoint": 0, - "vertex_from": "345", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.659406961Z" + "vertex_from": "344", + "vertex_to": "983", + "timestamp": "2025-11-27T04:01:59.206698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1290526, - "rtt_ms": 1.290526, + "rtt_ns": 2517167, + "rtt_ms": 2.517167, "checkpoint": 0, - "vertex_from": "346", - "vertex_to": "666", - "timestamp": "2025-11-27T01:22:00.659434421Z" + "vertex_from": "345", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.206835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667004, - "rtt_ms": 1.667004, + "rtt_ns": 1621958, + "rtt_ms": 1.621958, "checkpoint": 0, - "vertex_from": "344", - "vertex_to": "983", - "timestamp": "2025-11-27T01:22:00.660049699Z" + "vertex_from": "346", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.207366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747354, - "rtt_ms": 1.747354, + "rtt_ns": 2234000, + "rtt_ms": 2.234, "checkpoint": 0, "vertex_from": "346", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.660068529Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.208041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606015, - "rtt_ms": 1.606015, + "rtt_ns": 2226791, + "rtt_ms": 2.226791, "checkpoint": 0, - "vertex_from": "346", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.660078269Z" + "vertex_from": "347", + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:59.208264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672965, - "rtt_ms": 1.672965, + "rtt_ns": 2623417, + "rtt_ms": 2.623417, "checkpoint": 0, - "vertex_from": "347", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.660816377Z" + "vertex_from": "344", + "vertex_to": "747", + "timestamp": "2025-11-27T04:01:59.20828-08:00" }, { "operation": "add_edge", - "rtt_ns": 2373853, - "rtt_ms": 2.373853, + "rtt_ns": 2262458, + "rtt_ms": 2.262458, "checkpoint": 0, "vertex_from": "346", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.660817047Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.208296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559615, - "rtt_ms": 1.559615, + "rtt_ns": 1953417, + "rtt_ms": 1.953417, "checkpoint": 0, - "vertex_from": "348", - "vertex_to": "534", - "timestamp": "2025-11-27T01:22:00.660856487Z" + "vertex_from": "347", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.20862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486075, - "rtt_ms": 1.486075, + "rtt_ns": 1936083, + "rtt_ms": 1.936083, "checkpoint": 0, - "vertex_from": "350", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.660921596Z" + "vertex_from": "348", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.208638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655114, - "rtt_ms": 1.655114, + "rtt_ns": 1969416, + "rtt_ms": 1.969416, "checkpoint": 0, "vertex_from": "348", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.660955736Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:59.208655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902394, - "rtt_ms": 1.902394, + "rtt_ns": 1301792, + "rtt_ms": 1.301792, "checkpoint": 0, - "vertex_from": "347", - "vertex_to": "936", - "timestamp": "2025-11-27T01:22:00.660961786Z" + "vertex_from": "350", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.20867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555965, - "rtt_ms": 1.555965, + "rtt_ns": 2053125, + "rtt_ms": 2.053125, "checkpoint": 0, "vertex_from": "349", "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.660964336Z" + "timestamp": "2025-11-27T04:01:59.208889-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054957, - "rtt_ms": 1.054957, + "rtt_ns": 4922583, + "rtt_ms": 4.922583, "checkpoint": 0, - "vertex_from": "350", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.661105766Z" + "vertex_from": "346", + "vertex_to": "666", + "timestamp": "2025-11-27T04:01:59.209516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070337, - "rtt_ms": 1.070337, + "rtt_ns": 1281209, + "rtt_ms": 1.281209, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.661140036Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.209578-08:00" }, { "operation": "add_edge", - "rtt_ns": 976737, - "rtt_ms": 0.976737, + "rtt_ns": 1219625, + "rtt_ms": 1.219625, "checkpoint": 0, "vertex_from": "352", "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.661796024Z" + "timestamp": "2025-11-27T04:01:59.209841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741055, - "rtt_ms": 1.741055, + "rtt_ns": 1185667, + "rtt_ms": 1.185667, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.661821704Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:59.209842-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037957, - "rtt_ms": 1.037957, + "rtt_ns": 1577500, + "rtt_ms": 1.5775, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.661856204Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.209859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1049976, - "rtt_ms": 1.049976, + "rtt_ns": 1599750, + "rtt_ms": 1.59975, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "388", - "timestamp": "2025-11-27T01:22:00.661909803Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.209865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145227, - "rtt_ms": 1.145227, + "rtt_ns": 1212208, + "rtt_ms": 1.212208, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.662108123Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.209885-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354016, - "rtt_ms": 1.354016, + "rtt_ns": 1025417, + "rtt_ms": 1.025417, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.662310522Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:59.209915-08:00" }, { "operation": "add_edge", - "rtt_ns": 952306, - "rtt_ms": 0.952306, + "rtt_ns": 1335500, + "rtt_ms": 1.3355, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.66280957Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:59.209974-08:00" }, { "operation": "add_edge", - "rtt_ns": 1139146, - "rtt_ms": 1.139146, + "rtt_ns": 1957000, + "rtt_ms": 1.957, "checkpoint": 0, - "vertex_from": "352", - "vertex_to": "803", - "timestamp": "2025-11-27T01:22:00.66293628Z" + "vertex_from": "350", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.209999-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816864, - "rtt_ms": 1.816864, + "rtt_ns": 1229500, + "rtt_ms": 1.2295, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.66295759Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:59.210809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054927, - "rtt_ms": 1.054927, + "rtt_ns": 1105167, + "rtt_ms": 1.105167, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.66296584Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:01:59.210948-08:00" }, { "operation": "add_edge", - "rtt_ns": 2027364, - "rtt_ms": 2.027364, + "rtt_ns": 1746375, + "rtt_ms": 1.746375, "checkpoint": 0, "vertex_from": "352", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.66299279Z" + "timestamp": "2025-11-27T04:01:59.211264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1914064, - "rtt_ms": 1.914064, + "rtt_ns": 2020375, + "rtt_ms": 2.020375, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.66302099Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.211906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328895, - "rtt_ms": 1.328895, + "rtt_ns": 2040041, + "rtt_ms": 2.040041, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.663152119Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.211908-08:00" }, { "operation": "add_edge", - "rtt_ns": 2244583, - "rtt_ms": 2.244583, + "rtt_ns": 2077958, + "rtt_ms": 2.077958, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.663167919Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.211919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365215, - "rtt_ms": 1.365215, + "rtt_ns": 2152959, + "rtt_ms": 2.152959, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.663474778Z" + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:59.212153-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547335, - "rtt_ms": 1.547335, + "rtt_ns": 2196250, + "rtt_ms": 2.19625, "checkpoint": 0, "vertex_from": "352", "vertex_to": "460", - "timestamp": "2025-11-27T01:22:00.663859517Z" + "timestamp": "2025-11-27T04:01:59.212171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135927, - "rtt_ms": 1.135927, + "rtt_ns": 2331709, + "rtt_ms": 2.331709, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "401", - "timestamp": "2025-11-27T01:22:00.663947227Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:59.212191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123496, - "rtt_ms": 1.123496, + "rtt_ns": 2421458, + "rtt_ms": 2.421458, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "369", - "timestamp": "2025-11-27T01:22:00.664082216Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:01:59.212338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1494605, - "rtt_ms": 1.494605, + "rtt_ns": 1428292, + "rtt_ms": 1.428292, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.664461965Z" + "vertex_to": "369", + "timestamp": "2025-11-27T04:01:59.212377-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023944, - "rtt_ms": 2.023944, + "rtt_ns": 1927833, + "rtt_ms": 1.927833, "checkpoint": 0, "vertex_from": "352", "vertex_to": "555", - "timestamp": "2025-11-27T01:22:00.664962274Z" + "timestamp": "2025-11-27T04:01:59.212739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159956, - "rtt_ms": 1.159956, + "rtt_ns": 2021083, + "rtt_ms": 2.021083, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.665021343Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.214399-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564995, - "rtt_ms": 1.564995, + "rtt_ns": 2076458, + "rtt_ms": 2.076458, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.665042043Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.214415-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023343, - "rtt_ms": 2.023343, + "rtt_ns": 2522334, + "rtt_ms": 2.522334, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.665045853Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.21443-08:00" }, { "operation": "add_edge", - "rtt_ns": 2080343, - "rtt_ms": 2.080343, + "rtt_ns": 2285000, + "rtt_ms": 2.285, "checkpoint": 0, - "vertex_from": "352", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.665076123Z" + "vertex_from": "353", + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.214477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1946944, - "rtt_ms": 1.946944, + "rtt_ns": 2583083, + "rtt_ms": 2.583083, "checkpoint": 0, "vertex_from": "352", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.665100823Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:59.214492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972244, - "rtt_ms": 1.972244, + "rtt_ns": 2348042, + "rtt_ms": 2.348042, "checkpoint": 0, "vertex_from": "353", "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.665142673Z" + "timestamp": "2025-11-27T04:01:59.214502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214996, - "rtt_ms": 1.214996, + "rtt_ns": 3257916, + "rtt_ms": 3.257916, "checkpoint": 0, - "vertex_from": "353", + "vertex_from": "352", "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.665164053Z" + "timestamp": "2025-11-27T04:01:59.214522-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2970000, + "rtt_ms": 2.97, + "checkpoint": 0, + "vertex_from": "352", + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.214891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159747, - "rtt_ms": 1.159747, + "rtt_ns": 2785708, + "rtt_ms": 2.785708, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.665243363Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.214958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325396, - "rtt_ms": 1.325396, + "rtt_ns": 2292416, + "rtt_ms": 2.292416, "checkpoint": 0, "vertex_from": "353", "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.665789391Z" + "timestamp": "2025-11-27T04:01:59.215032-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1334041, + "rtt_ms": 1.334041, + "checkpoint": 0, + "vertex_from": "354", + "vertex_to": "842", + "timestamp": "2025-11-27T04:01:59.215838-08:00" }, { "operation": "add_edge", - "rtt_ns": 862517, - "rtt_ms": 0.862517, + "rtt_ns": 1463875, + "rtt_ms": 1.463875, "checkpoint": 0, "vertex_from": "353", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.665826031Z" + "timestamp": "2025-11-27T04:01:59.215865-08:00" }, { "operation": "add_edge", - "rtt_ns": 829788, - "rtt_ms": 0.829788, + "rtt_ns": 1483500, + "rtt_ms": 1.4835, "checkpoint": 0, "vertex_from": "353", "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.665853271Z" + "timestamp": "2025-11-27T04:01:59.215902-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1381917, + "rtt_ms": 1.381917, + "checkpoint": 0, + "vertex_from": "354", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.215906-08:00" }, { "operation": "add_edge", - "rtt_ns": 786048, - "rtt_ms": 0.786048, + "rtt_ns": 2031167, + "rtt_ms": 2.031167, "checkpoint": 0, "vertex_from": "353", - "vertex_to": "401", - "timestamp": "2025-11-27T01:22:00.665865021Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.216463-08:00" }, { "operation": "add_edge", - "rtt_ns": 924187, - "rtt_ms": 0.924187, + "rtt_ns": 1589875, + "rtt_ms": 1.589875, "checkpoint": 0, "vertex_from": "354", "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.66609008Z" + "timestamp": "2025-11-27T04:01:59.216482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124627, - "rtt_ms": 1.124627, + "rtt_ns": 1881375, + "rtt_ms": 1.881375, "checkpoint": 0, - "vertex_from": "353", + "vertex_from": "354", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.66616855Z" + "timestamp": "2025-11-27T04:01:59.216841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152597, - "rtt_ms": 1.152597, + "rtt_ns": 2402500, + "rtt_ms": 2.4025, "checkpoint": 0, "vertex_from": "353", "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.66620138Z" + "timestamp": "2025-11-27T04:01:59.216881-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182046, - "rtt_ms": 1.182046, + "rtt_ns": 2399292, + "rtt_ms": 2.399292, "checkpoint": 0, - "vertex_from": "354", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.666325979Z" + "vertex_from": "353", + "vertex_to": "401", + "timestamp": "2025-11-27T04:01:59.216892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239966, - "rtt_ms": 1.239966, + "rtt_ns": 2114375, + "rtt_ms": 2.114375, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "842", - "timestamp": "2025-11-27T01:22:00.666342299Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.217148-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125376, - "rtt_ms": 1.125376, + "rtt_ns": 1579375, + "rtt_ms": 1.579375, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.666369549Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.217419-08:00" }, { "operation": "add_edge", - "rtt_ns": 715008, - "rtt_ms": 0.715008, + "rtt_ns": 1749416, + "rtt_ms": 1.749416, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.666506609Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.217654-08:00" }, { "operation": "add_edge", - "rtt_ns": 670688, - "rtt_ms": 0.670688, + "rtt_ns": 1911917, + "rtt_ms": 1.911917, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.666537449Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.21782-08:00" }, { "operation": "add_edge", - "rtt_ns": 732468, - "rtt_ms": 0.732468, + "rtt_ns": 1975667, + "rtt_ms": 1.975667, "checkpoint": 0, "vertex_from": "354", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.666559589Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.217842-08:00" }, { "operation": "add_edge", - "rtt_ns": 732138, - "rtt_ms": 0.732138, + "rtt_ns": 1666541, + "rtt_ms": 1.666541, "checkpoint": 0, - "vertex_from": "354", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.666586609Z" + "vertex_from": "355", + "vertex_to": "746", + "timestamp": "2025-11-27T04:01:59.218131-08:00" }, { "operation": "add_edge", - "rtt_ns": 538998, - "rtt_ms": 0.538998, + "rtt_ns": 1306792, + "rtt_ms": 1.306792, "checkpoint": 0, - "vertex_from": "354", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.666630028Z" + "vertex_from": "355", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.21815-08:00" }, { "operation": "add_edge", - "rtt_ns": 633628, - "rtt_ms": 0.633628, + "rtt_ns": 1667459, + "rtt_ms": 1.667459, "checkpoint": 0, "vertex_from": "355", "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.666835788Z" + "timestamp": "2025-11-27T04:01:59.218151-08:00" }, { "operation": "add_edge", - "rtt_ns": 688408, - "rtt_ms": 0.688408, + "rtt_ns": 1654000, + "rtt_ms": 1.654, "checkpoint": 0, - "vertex_from": "355", - "vertex_to": "746", - "timestamp": "2025-11-27T01:22:00.666858838Z" + "vertex_from": "356", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.218548-08:00" }, { "operation": "add_edge", - "rtt_ns": 608508, - "rtt_ms": 0.608508, + "rtt_ns": 1667625, + "rtt_ms": 1.667625, "checkpoint": 0, "vertex_from": "355", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.666935557Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:59.21855-08:00" }, { "operation": "add_edge", - "rtt_ns": 647658, - "rtt_ms": 0.647658, + "rtt_ns": 1408875, + "rtt_ms": 1.408875, "checkpoint": 0, - "vertex_from": "355", - "vertex_to": "920", - "timestamp": "2025-11-27T01:22:00.666991447Z" + "vertex_from": "356", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.218558-08:00" }, { "operation": "add_edge", - "rtt_ns": 844837, - "rtt_ms": 0.844837, + "rtt_ns": 1209250, + "rtt_ms": 1.20925, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "906", - "timestamp": "2025-11-27T01:22:00.667681935Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.218629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1095276, - "rtt_ms": 1.095276, + "rtt_ns": 1029959, + "rtt_ms": 1.029959, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.667683065Z" + "vertex_to": "385", + "timestamp": "2025-11-27T04:01:59.218685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1068967, - "rtt_ms": 1.068967, + "rtt_ns": 1183958, + "rtt_ms": 1.183958, "checkpoint": 0, "vertex_from": "356", "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.667699975Z" + "timestamp": "2025-11-27T04:01:59.219027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329826, - "rtt_ms": 1.329826, + "rtt_ns": 1833250, + "rtt_ms": 1.83325, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.667701435Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.219656-08:00" }, { "operation": "add_edge", - "rtt_ns": 914767, - "rtt_ms": 0.914767, + "rtt_ns": 1508041, + "rtt_ms": 1.508041, "checkpoint": 0, - "vertex_from": "357", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.667774625Z" + "vertex_from": "358", + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:59.219679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282836, - "rtt_ms": 1.282836, + "rtt_ns": 1747958, + "rtt_ms": 1.747958, "checkpoint": 0, "vertex_from": "356", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.667790465Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:01:59.21988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263176, - "rtt_ms": 1.263176, + "rtt_ns": 1748792, + "rtt_ms": 1.748792, "checkpoint": 0, - "vertex_from": "356", - "vertex_to": "385", - "timestamp": "2025-11-27T01:22:00.667823565Z" + "vertex_from": "357", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.2199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316035, - "rtt_ms": 1.316035, + "rtt_ns": 1467000, + "rtt_ms": 1.467, "checkpoint": 0, - "vertex_from": "356", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.667854294Z" + "vertex_from": "360", + "vertex_to": "992", + "timestamp": "2025-11-27T04:01:59.220098-08:00" }, { "operation": "add_edge", - "rtt_ns": 915397, - "rtt_ms": 0.915397, + "rtt_ns": 1567083, + "rtt_ms": 1.567083, "checkpoint": 0, "vertex_from": "358", "vertex_to": "457", - "timestamp": "2025-11-27T01:22:00.667907884Z" + "timestamp": "2025-11-27T04:01:59.220117-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448926, - "rtt_ms": 1.448926, + "rtt_ns": 1566417, + "rtt_ms": 1.566417, "checkpoint": 0, "vertex_from": "358", - "vertex_to": "676", - "timestamp": "2025-11-27T01:22:00.668385553Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:59.220118-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116416, - "rtt_ms": 1.116416, + "rtt_ns": 1542375, + "rtt_ms": 1.542375, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "603", - "timestamp": "2025-11-27T01:22:00.668908691Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.220228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107497, - "rtt_ms": 1.107497, + "rtt_ns": 1716459, + "rtt_ms": 1.716459, "checkpoint": 0, - "vertex_from": "360", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.668963261Z" + "vertex_from": "359", + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:59.220277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184966, - "rtt_ms": 1.184966, + "rtt_ns": 1684458, + "rtt_ms": 1.684458, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.669010061Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:01:59.220714-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354335, - "rtt_ms": 1.354335, + "rtt_ns": 1519458, + "rtt_ms": 1.519458, "checkpoint": 0, - "vertex_from": "359", - "vertex_to": "448", - "timestamp": "2025-11-27T01:22:00.66904212Z" + "vertex_from": "360", + "vertex_to": "603", + "timestamp": "2025-11-27T04:01:59.221179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1375855, - "rtt_ms": 1.375855, + "rtt_ns": 1505834, + "rtt_ms": 1.505834, "checkpoint": 0, - "vertex_from": "358", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.66906357Z" + "vertex_from": "360", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.221186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257906, - "rtt_ms": 1.257906, + "rtt_ns": 1457417, + "rtt_ms": 1.457417, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.66916748Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.221338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467365, - "rtt_ms": 1.467365, + "rtt_ns": 1308292, + "rtt_ms": 1.308292, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "718", - "timestamp": "2025-11-27T01:22:00.6692438Z" + "vertex_to": "558", + "timestamp": "2025-11-27T04:01:59.221426-08:00" }, { "operation": "add_edge", - "rtt_ns": 2312832, - "rtt_ms": 2.312832, + "rtt_ns": 1218125, + "rtt_ms": 1.218125, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.670018827Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.221447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673034, - "rtt_ms": 1.673034, + "rtt_ns": 1492541, + "rtt_ms": 1.492541, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "531", - "timestamp": "2025-11-27T01:22:00.670060337Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:01:59.221611-08:00" }, { "operation": "add_edge", - "rtt_ns": 2375852, - "rtt_ms": 2.375852, + "rtt_ns": 1536375, + "rtt_ms": 1.536375, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "992", - "timestamp": "2025-11-27T01:22:00.670078047Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:59.221635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017507, - "rtt_ms": 1.017507, + "rtt_ns": 1402959, + "rtt_ms": 1.402959, "checkpoint": 0, - "vertex_from": "361", - "vertex_to": "525", - "timestamp": "2025-11-27T01:22:00.670082117Z" + "vertex_from": "360", + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:59.221681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891764, - "rtt_ms": 1.891764, + "rtt_ns": 1832458, + "rtt_ms": 1.832458, "checkpoint": 0, "vertex_from": "360", - "vertex_to": "558", - "timestamp": "2025-11-27T01:22:00.670802685Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.221733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1070327, - "rtt_ms": 1.070327, + "rtt_ns": 1152000, + "rtt_ms": 1.152, "checkpoint": 0, "vertex_from": "362", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.671090754Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.222334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876963, - "rtt_ms": 1.876963, + "rtt_ns": 1112125, + "rtt_ms": 1.112125, "checkpoint": 0, - "vertex_from": "362", + "vertex_from": "363", "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.671121933Z" + "timestamp": "2025-11-27T04:01:59.22256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069046, - "rtt_ms": 1.069046, + "rtt_ns": 1589334, + "rtt_ms": 1.589334, "checkpoint": 0, - "vertex_from": "363", - "vertex_to": "409", - "timestamp": "2025-11-27T01:22:00.671131073Z" + "vertex_from": "362", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.222928-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169222, - "rtt_ms": 2.169222, + "rtt_ns": 2234625, + "rtt_ms": 2.234625, "checkpoint": 0, - "vertex_from": "360", - "vertex_to": "662", - "timestamp": "2025-11-27T01:22:00.671134053Z" + "vertex_from": "361", + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:59.222949-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065206, - "rtt_ms": 1.065206, + "rtt_ns": 1322084, + "rtt_ms": 1.322084, "checkpoint": 0, - "vertex_from": "363", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.671148183Z" + "vertex_from": "364", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.222959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2138022, - "rtt_ms": 2.138022, + "rtt_ns": 1777875, + "rtt_ms": 1.777875, "checkpoint": 0, - "vertex_from": "360", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.671149853Z" + "vertex_from": "362", + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.222965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2120623, - "rtt_ms": 2.120623, + "rtt_ns": 1557208, + "rtt_ms": 1.557208, "checkpoint": 0, - "vertex_from": "360", - "vertex_to": "448", - "timestamp": "2025-11-27T01:22:00.671163333Z" + "vertex_from": "363", + "vertex_to": "409", + "timestamp": "2025-11-27T04:01:59.222984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1997583, - "rtt_ms": 1.997583, + "rtt_ns": 1559750, + "rtt_ms": 1.55975, "checkpoint": 0, - "vertex_from": "362", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.671166473Z" + "vertex_from": "363", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.223172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161986, - "rtt_ms": 1.161986, + "rtt_ns": 1580333, + "rtt_ms": 1.580333, "checkpoint": 0, - "vertex_from": "363", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.671242113Z" + "vertex_from": "364", + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.223263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309075, - "rtt_ms": 1.309075, + "rtt_ns": 1549417, + "rtt_ms": 1.549417, "checkpoint": 0, "vertex_from": "364", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.6721132Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.223283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101336, - "rtt_ms": 1.101336, + "rtt_ns": 1656958, + "rtt_ms": 1.656958, "checkpoint": 0, "vertex_from": "364", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.67219428Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:59.223994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802075, - "rtt_ms": 1.802075, + "rtt_ns": 1449000, + "rtt_ms": 1.449, "checkpoint": 0, "vertex_from": "364", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.672925798Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.224011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791435, - "rtt_ms": 1.791435, + "rtt_ns": 1244167, + "rtt_ms": 1.244167, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.672959418Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:59.224229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832985, - "rtt_ms": 1.832985, + "rtt_ns": 1314333, + "rtt_ms": 1.314333, "checkpoint": 0, - "vertex_from": "364", - "vertex_to": "657", - "timestamp": "2025-11-27T01:22:00.672966278Z" + "vertex_from": "367", + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.224244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721535, - "rtt_ms": 1.721535, + "rtt_ns": 1308334, + "rtt_ms": 1.308334, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "595", - "timestamp": "2025-11-27T01:22:00.672966438Z" + "vertex_to": "427", + "timestamp": "2025-11-27T04:01:59.224258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821535, - "rtt_ms": 1.821535, + "rtt_ns": 1492709, + "rtt_ms": 1.492709, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "427", - "timestamp": "2025-11-27T01:22:00.672975118Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.224454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814964, - "rtt_ms": 1.814964, + "rtt_ns": 1187667, + "rtt_ms": 1.187667, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.672980757Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.224471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855864, - "rtt_ms": 1.855864, + "rtt_ns": 1319333, + "rtt_ms": 1.319333, "checkpoint": 0, - "vertex_from": "364", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.672993327Z" + "vertex_from": "368", + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:59.224584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1857914, - "rtt_ms": 1.857914, + "rtt_ns": 1621750, + "rtt_ms": 1.62175, "checkpoint": 0, - "vertex_from": "367", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.673008697Z" + "vertex_from": "368", + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:59.224588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637145, - "rtt_ms": 1.637145, + "rtt_ns": 1728542, + "rtt_ms": 1.728542, "checkpoint": 0, "vertex_from": "368", "vertex_to": "616", - "timestamp": "2025-11-27T01:22:00.673752915Z" + "timestamp": "2025-11-27T04:01:59.224903-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741904, - "rtt_ms": 1.741904, + "rtt_ns": 1236875, + "rtt_ms": 1.236875, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "557", - "timestamp": "2025-11-27T01:22:00.673937894Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.225466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1630974, - "rtt_ms": 1.630974, + "rtt_ns": 1339958, + "rtt_ms": 1.339958, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.674559172Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.225812-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592074, - "rtt_ms": 1.592074, + "rtt_ns": 1568750, + "rtt_ms": 1.56875, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.674568592Z" + "vertex_to": "384", + "timestamp": "2025-11-27T04:01:59.225827-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618964, - "rtt_ms": 1.618964, + "rtt_ns": 1845917, + "rtt_ms": 1.845917, "checkpoint": 0, "vertex_from": "368", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.674579822Z" + "timestamp": "2025-11-27T04:01:59.225841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577065, - "rtt_ms": 1.577065, + "rtt_ns": 1496500, + "rtt_ms": 1.4965, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.674587072Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.225951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623624, - "rtt_ms": 1.623624, + "rtt_ns": 1490750, + "rtt_ms": 1.49075, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.674593562Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.226076-08:00" }, { "operation": "add_edge", - "rtt_ns": 1612295, - "rtt_ms": 1.612295, + "rtt_ns": 2065333, + "rtt_ms": 2.065333, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "384", - "timestamp": "2025-11-27T01:22:00.674594622Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:59.226077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625585, - "rtt_ms": 1.625585, + "rtt_ns": 1834875, + "rtt_ms": 1.834875, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.674621852Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.22608-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655354, - "rtt_ms": 1.655354, + "rtt_ns": 1741917, + "rtt_ms": 1.741917, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.674625332Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.22633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1499525, - "rtt_ms": 1.499525, + "rtt_ns": 1442166, + "rtt_ms": 1.442166, "checkpoint": 0, "vertex_from": "368", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.67525644Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:59.226348-08:00" }, { "operation": "add_edge", - "rtt_ns": 809958, - "rtt_ms": 0.809958, + "rtt_ns": 1281541, + "rtt_ms": 1.281541, + "checkpoint": 0, + "vertex_from": "370", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.22711-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1223625, + "rtt_ms": 1.223625, "checkpoint": 0, "vertex_from": "372", "vertex_to": "534", - "timestamp": "2025-11-27T01:22:00.67540695Z" + "timestamp": "2025-11-27T04:01:59.227175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798825, - "rtt_ms": 1.798825, + "rtt_ns": 1760333, + "rtt_ms": 1.760333, "checkpoint": 0, - "vertex_from": "368", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.675738249Z" + "vertex_from": "370", + "vertex_to": "621", + "timestamp": "2025-11-27T04:01:59.227228-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272726, - "rtt_ms": 1.272726, + "rtt_ns": 1362791, + "rtt_ms": 1.362791, "checkpoint": 0, "vertex_from": "373", "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.675900248Z" + "timestamp": "2025-11-27T04:01:59.227441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390196, - "rtt_ms": 1.390196, + "rtt_ns": 1390667, + "rtt_ms": 1.390667, "checkpoint": 0, - "vertex_from": "368", - "vertex_to": "418", - "timestamp": "2025-11-27T01:22:00.675951218Z" + "vertex_from": "374", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.227471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691235, - "rtt_ms": 1.691235, + "rtt_ns": 1550042, + "rtt_ms": 1.550042, "checkpoint": 0, "vertex_from": "372", "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.676316587Z" + "timestamp": "2025-11-27T04:01:59.227626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759405, - "rtt_ms": 1.759405, + "rtt_ns": 1837417, + "rtt_ms": 1.837417, "checkpoint": 0, "vertex_from": "370", "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.676342357Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1802275, - "rtt_ms": 1.802275, - "checkpoint": 0, - "vertex_from": "370", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.676392397Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1855885, - "rtt_ms": 1.855885, - "checkpoint": 0, - "vertex_from": "370", - "vertex_to": "621", - "timestamp": "2025-11-27T01:22:00.676428137Z" + "timestamp": "2025-11-27T04:01:59.22765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860614, - "rtt_ms": 1.860614, + "rtt_ns": 1823292, + "rtt_ms": 1.823292, "checkpoint": 0, "vertex_from": "370", "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.676458266Z" + "timestamp": "2025-11-27T04:01:59.227665-08:00" }, { "operation": "add_edge", - "rtt_ns": 1221326, - "rtt_ms": 1.221326, + "rtt_ns": 1517541, + "rtt_ms": 1.517541, "checkpoint": 0, - "vertex_from": "374", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.676479826Z" + "vertex_from": "376", + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.227866-08:00" }, { "operation": "add_edge", - "rtt_ns": 1505935, - "rtt_ms": 1.505935, + "rtt_ns": 1651000, + "rtt_ms": 1.651, "checkpoint": 0, "vertex_from": "375", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.676914315Z" + "timestamp": "2025-11-27T04:01:59.227982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325016, - "rtt_ms": 1.325016, + "rtt_ns": 1505917, + "rtt_ms": 1.505917, "checkpoint": 0, "vertex_from": "376", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.677065385Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:59.228618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1215936, - "rtt_ms": 1.215936, + "rtt_ns": 1475833, + "rtt_ms": 1.475833, "checkpoint": 0, "vertex_from": "376", - "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.677117474Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 704578, - "rtt_ms": 0.704578, - "checkpoint": 0, - "vertex_from": "381", - "timestamp": "2025-11-27T01:22:00.677186644Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:59.228652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248106, - "rtt_ms": 1.248106, + "rtt_ns": 1192667, + "rtt_ms": 1.192667, "checkpoint": 0, "vertex_from": "376", - "vertex_to": "388", - "timestamp": "2025-11-27T01:22:00.677200084Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:59.228665-08:00" }, { "operation": "add_edge", - "rtt_ns": 892927, - "rtt_ms": 0.892927, + "rtt_ns": 1438375, + "rtt_ms": 1.438375, "checkpoint": 0, "vertex_from": "376", "vertex_to": "553", - "timestamp": "2025-11-27T01:22:00.677210854Z" + "timestamp": "2025-11-27T04:01:59.228668-08:00" }, { "operation": "add_edge", - "rtt_ns": 881867, - "rtt_ms": 0.881867, + "rtt_ns": 1521042, + "rtt_ms": 1.521042, "checkpoint": 0, "vertex_from": "376", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.677226744Z" + "timestamp": "2025-11-27T04:01:59.228964-08:00" }, { "operation": "add_vertex", - "rtt_ns": 908867, - "rtt_ms": 0.908867, + "rtt_ns": 1984584, + "rtt_ms": 1.984584, "checkpoint": 0, - "vertex_from": "380", - "timestamp": "2025-11-27T01:22:00.677339464Z" + "vertex_from": "381", + "timestamp": "2025-11-27T04:01:59.229636-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1470275, - "rtt_ms": 1.470275, + "operation": "add_vertex", + "rtt_ns": 1802333, + "rtt_ms": 1.802333, "checkpoint": 0, - "vertex_from": "376", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.677864272Z" + "vertex_from": "382", + "timestamp": "2025-11-27T04:01:59.229672-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1693385, - "rtt_ms": 1.693385, + "rtt_ns": 1749917, + "rtt_ms": 1.749917, "checkpoint": 0, - "vertex_from": "381", - "timestamp": "2025-11-27T01:22:00.678154171Z" + "vertex_from": "382", + "timestamp": "2025-11-27T04:01:59.229733-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1264376, - "rtt_ms": 1.264376, + "rtt_ns": 2220833, + "rtt_ms": 2.220833, "checkpoint": 0, - "vertex_from": "382", - "timestamp": "2025-11-27T01:22:00.678181141Z" + "vertex_from": "380", + "timestamp": "2025-11-27T04:01:59.229848-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1162306, - "rtt_ms": 1.162306, + "rtt_ns": 2236125, + "rtt_ms": 2.236125, "checkpoint": 0, - "vertex_from": "382", - "timestamp": "2025-11-27T01:22:00.678228771Z" + "vertex_from": "381", + "timestamp": "2025-11-27T04:01:59.229901-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657775, - "rtt_ms": 1.657775, + "rtt_ns": 1451958, + "rtt_ms": 1.451958, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.678869679Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:59.230072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654895, - "rtt_ms": 1.654895, + "rtt_ns": 1121667, + "rtt_ms": 1.121667, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.678882759Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.230089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719365, - "rtt_ms": 1.719365, + "rtt_ns": 1696833, + "rtt_ms": 1.696833, "checkpoint": 0, - "vertex_from": "381", - "vertex_to": "657", - "timestamp": "2025-11-27T01:22:00.678907159Z" + "vertex_from": "384", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.230363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570205, - "rtt_ms": 1.570205, + "rtt_ns": 1749958, + "rtt_ms": 1.749958, "checkpoint": 0, - "vertex_from": "380", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.678910619Z" + "vertex_from": "384", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.230419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799685, - "rtt_ms": 1.799685, + "rtt_ns": 1907333, + "rtt_ms": 1.907333, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.678918769Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:59.23056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1950544, - "rtt_ms": 1.950544, + "rtt_ns": 942833, + "rtt_ms": 0.942833, "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.679156438Z" + "vertex_from": "382", + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:59.230617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207526, - "rtt_ms": 1.207526, + "rtt_ns": 1106042, + "rtt_ms": 1.106042, "checkpoint": 0, "vertex_from": "381", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.679362467Z" + "timestamp": "2025-11-27T04:01:59.230744-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654655, - "rtt_ms": 1.654655, + "rtt_ns": 1237750, + "rtt_ms": 1.23775, "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.679519807Z" + "vertex_from": "380", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.231086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809954, - "rtt_ms": 1.809954, + "rtt_ns": 2106084, + "rtt_ms": 2.106084, "checkpoint": 0, "vertex_from": "382", - "vertex_to": "913", - "timestamp": "2025-11-27T01:22:00.679992335Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.23184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155736, - "rtt_ms": 1.155736, + "rtt_ns": 1954625, + "rtt_ms": 1.954625, "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "920", - "timestamp": "2025-11-27T01:22:00.680067645Z" + "vertex_from": "381", + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:59.231857-08:00" }, { "operation": "add_edge", - "rtt_ns": 927077, - "rtt_ms": 0.927077, + "rtt_ns": 1782166, + "rtt_ms": 1.782166, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.680084535Z" + "vertex_to": "386", + "timestamp": "2025-11-27T04:01:59.231871-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226056, - "rtt_ms": 1.226056, + "rtt_ns": 1814250, + "rtt_ms": 1.81425, "checkpoint": 0, "vertex_from": "384", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.680097095Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1933074, - "rtt_ms": 1.933074, - "checkpoint": 0, - "vertex_from": "382", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.680162465Z" + "timestamp": "2025-11-27T04:01:59.231887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326345, - "rtt_ms": 1.326345, + "rtt_ns": 1339208, + "rtt_ms": 1.339208, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "668", - "timestamp": "2025-11-27T01:22:00.680235684Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.2319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319025, - "rtt_ms": 1.319025, + "rtt_ns": 1552333, + "rtt_ms": 1.552333, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.680238754Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:59.231916-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402905, - "rtt_ms": 1.402905, + "rtt_ns": 1443666, + "rtt_ms": 1.443666, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "386", - "timestamp": "2025-11-27T01:22:00.680286474Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.232061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1513655, - "rtt_ms": 1.513655, + "rtt_ns": 1795708, + "rtt_ms": 1.795708, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "932", - "timestamp": "2025-11-27T01:22:00.680877272Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:01:59.232215-08:00" }, { "operation": "add_edge", - "rtt_ns": 933937, - "rtt_ms": 0.933937, + "rtt_ns": 1659083, + "rtt_ms": 1.659083, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "661", - "timestamp": "2025-11-27T01:22:00.680927192Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.232747-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451625, - "rtt_ms": 1.451625, + "rtt_ns": 2017667, + "rtt_ms": 2.017667, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.680973102Z" + "vertex_to": "932", + "timestamp": "2025-11-27T04:01:59.232764-08:00" }, { "operation": "add_edge", - "rtt_ns": 977807, - "rtt_ms": 0.977807, + "rtt_ns": 1199500, + "rtt_ms": 1.1995, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.681075582Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:01:59.233041-08:00" }, { "operation": "add_edge", - "rtt_ns": 1023547, - "rtt_ms": 1.023547, + "rtt_ns": 1272375, + "rtt_ms": 1.272375, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.681092162Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.233144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285626, - "rtt_ms": 1.285626, + "rtt_ns": 1365125, + "rtt_ms": 1.365125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "527", - "timestamp": "2025-11-27T01:22:00.68152273Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.233252-08:00" }, { "operation": "add_edge", - "rtt_ns": 968596, - "rtt_ms": 0.968596, + "rtt_ns": 1403125, + "rtt_ms": 1.403125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "540", - "timestamp": "2025-11-27T01:22:00.682062218Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:59.233304-08:00" }, { "operation": "add_edge", - "rtt_ns": 2005693, - "rtt_ms": 2.005693, + "rtt_ns": 1401584, + "rtt_ms": 1.401584, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.682091378Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:59.233318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026196, - "rtt_ms": 1.026196, + "rtt_ns": 1463125, + "rtt_ms": 1.463125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.682103248Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:01:59.233321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1951693, - "rtt_ms": 1.951693, + "rtt_ns": 1862834, + "rtt_ms": 1.862834, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.682115278Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:59.233925-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841484, - "rtt_ms": 1.841484, + "rtt_ns": 1729708, + "rtt_ms": 1.729708, "checkpoint": 0, "vertex_from": "384", "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.682129158Z" + "timestamp": "2025-11-27T04:01:59.233946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1990954, - "rtt_ms": 1.990954, + "rtt_ns": 1244875, + "rtt_ms": 1.244875, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "588", - "timestamp": "2025-11-27T01:22:00.682230868Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:59.234011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1364626, - "rtt_ms": 1.364626, + "rtt_ns": 1266083, + "rtt_ms": 1.266083, "checkpoint": 0, "vertex_from": "384", "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.682243438Z" + "timestamp": "2025-11-27T04:01:59.234014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385765, - "rtt_ms": 1.385765, + "rtt_ns": 1291125, + "rtt_ms": 1.291125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "448", - "timestamp": "2025-11-27T01:22:00.682313907Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.234333-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431605, - "rtt_ms": 1.431605, + "rtt_ns": 1137208, + "rtt_ms": 1.137208, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.682405897Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:59.234456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184346, - "rtt_ms": 1.184346, + "rtt_ns": 1528458, + "rtt_ms": 1.528458, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.683416224Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:01:59.234834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934054, - "rtt_ms": 1.934054, + "rtt_ns": 1788667, + "rtt_ms": 1.788667, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "681", - "timestamp": "2025-11-27T01:22:00.683458704Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.234934-08:00" }, { "operation": "add_edge", - "rtt_ns": 1387285, - "rtt_ms": 1.387285, + "rtt_ns": 1446542, + "rtt_ms": 1.446542, "checkpoint": 0, "vertex_from": "384", "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.683517513Z" + "timestamp": "2025-11-27T04:01:59.235461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429385, - "rtt_ms": 1.429385, + "rtt_ns": 2271791, + "rtt_ms": 2.271791, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "393", - "timestamp": "2025-11-27T01:22:00.683521883Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:59.236219-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504635, - "rtt_ms": 1.504635, + "rtt_ns": 2973167, + "rtt_ms": 2.973167, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "535", - "timestamp": "2025-11-27T01:22:00.683609643Z" + "vertex_to": "393", + "timestamp": "2025-11-27T04:01:59.236295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224756, - "rtt_ms": 1.224756, + "rtt_ns": 2457583, + "rtt_ms": 2.457583, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "714", - "timestamp": "2025-11-27T01:22:00.683631763Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:59.236473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676865, - "rtt_ms": 1.676865, + "rtt_ns": 2568500, + "rtt_ms": 2.5685, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.683740053Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:01:59.236494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524665, - "rtt_ms": 1.524665, + "rtt_ns": 3251458, + "rtt_ms": 3.251458, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "426", - "timestamp": "2025-11-27T01:22:00.683769353Z" + "vertex_to": "540", + "timestamp": "2025-11-27T04:01:59.236504-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082363, - "rtt_ms": 2.082363, + "rtt_ns": 2547250, + "rtt_ms": 2.54725, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.684198651Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:01:59.237004-08:00" }, { "operation": "add_edge", - "rtt_ns": 874987, - "rtt_ms": 0.874987, + "rtt_ns": 2286583, + "rtt_ms": 2.286583, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.684292831Z" + "vertex_to": "714", + "timestamp": "2025-11-27T04:01:59.237123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218006, - "rtt_ms": 1.218006, + "rtt_ns": 2920375, + "rtt_ms": 2.920375, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.68467777Z" + "vertex_to": "426", + "timestamp": "2025-11-27T04:01:59.237254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555165, - "rtt_ms": 1.555165, + "rtt_ns": 2433750, + "rtt_ms": 2.43375, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.685073758Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:59.237369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564085, - "rtt_ms": 1.564085, + "rtt_ns": 1699125, + "rtt_ms": 1.699125, "checkpoint": 0, "vertex_from": "384", "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.685087378Z" + "timestamp": "2025-11-27T04:01:59.237995-08:00" }, { "operation": "add_edge", - "rtt_ns": 2780141, - "rtt_ms": 2.780141, + "rtt_ns": 1173667, + "rtt_ms": 1.173667, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "569", - "timestamp": "2025-11-27T01:22:00.685095168Z" + "vertex_to": "696", + "timestamp": "2025-11-27T04:01:59.238429-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1549955, - "rtt_ms": 1.549955, + "rtt_ns": 1977125, + "rtt_ms": 1.977125, "checkpoint": 0, "vertex_from": "971", - "timestamp": "2025-11-27T01:22:00.685291658Z" + "timestamp": "2025-11-27T04:01:59.238485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1681395, - "rtt_ms": 1.681395, + "rtt_ns": 1514166, + "rtt_ms": 1.514166, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.685314888Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.238519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1704435, - "rtt_ms": 1.704435, + "rtt_ns": 2319958, + "rtt_ms": 2.319958, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "799", - "timestamp": "2025-11-27T01:22:00.685315028Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.238539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020977, - "rtt_ms": 1.020977, + "rtt_ns": 3086916, + "rtt_ms": 3.086916, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.686095535Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.23855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016217, - "rtt_ms": 1.016217, + "rtt_ns": 2094792, + "rtt_ms": 2.094792, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.686111925Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.23859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919524, - "rtt_ms": 1.919524, + "rtt_ns": 2124417, + "rtt_ms": 2.124417, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.686119305Z" + "vertex_to": "799", + "timestamp": "2025-11-27T04:01:59.238605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485565, - "rtt_ms": 1.485565, + "rtt_ns": 1400000, + "rtt_ms": 1.4, "checkpoint": 0, "vertex_from": "384", "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.686164705Z" + "timestamp": "2025-11-27T04:01:59.238771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1905874, - "rtt_ms": 1.905874, + "rtt_ns": 1463875, + "rtt_ms": 1.463875, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "696", - "timestamp": "2025-11-27T01:22:00.686200185Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.23946-08:00" }, { "operation": "add_edge", - "rtt_ns": 2483082, - "rtt_ms": 2.483082, + "rtt_ns": 2363459, + "rtt_ms": 2.363459, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.686254425Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.239487-08:00" }, { "operation": "add_edge", - "rtt_ns": 970417, - "rtt_ms": 0.970417, + "rtt_ns": 1088917, + "rtt_ms": 1.088917, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.686286575Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:59.239519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156886, - "rtt_ms": 1.156886, + "rtt_ns": 1094666, + "rtt_ms": 1.094666, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "420", - "timestamp": "2025-11-27T01:22:00.686473494Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.239615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464476, - "rtt_ms": 1.464476, + "rtt_ns": 1738958, + "rtt_ms": 1.738958, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.686553224Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.240279-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329955, - "rtt_ms": 1.329955, + "rtt_ns": 1827625, + "rtt_ms": 1.827625, "checkpoint": 0, "vertex_from": "384", "vertex_to": "971", - "timestamp": "2025-11-27T01:22:00.686621773Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2195683, - "rtt_ms": 2.195683, - "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "618", - "timestamp": "2025-11-27T01:22:00.688361498Z" + "timestamp": "2025-11-27T04:01:59.240313-08:00" }, { "operation": "add_edge", - "rtt_ns": 2500002, - "rtt_ms": 2.500002, + "rtt_ns": 2066166, + "rtt_ms": 2.066166, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "553", - "timestamp": "2025-11-27T01:22:00.688597527Z" + "vertex_to": "420", + "timestamp": "2025-11-27T04:01:59.240619-08:00" }, { "operation": "add_edge", - "rtt_ns": 2518662, - "rtt_ms": 2.518662, + "rtt_ns": 2265000, + "rtt_ms": 2.265, "checkpoint": 0, "vertex_from": "384", "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.688631727Z" + "timestamp": "2025-11-27T04:01:59.240872-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579122, - "rtt_ms": 2.579122, + "rtt_ns": 2160584, + "rtt_ms": 2.160584, "checkpoint": 0, "vertex_from": "384", "vertex_to": "563", - "timestamp": "2025-11-27T01:22:00.688699237Z" + "timestamp": "2025-11-27T04:01:59.240934-08:00" }, { "operation": "add_vertex", - "rtt_ns": 2626621, - "rtt_ms": 2.626621, + "rtt_ns": 1685500, + "rtt_ms": 1.6855, "checkpoint": 0, "vertex_from": "917", - "timestamp": "2025-11-27T01:22:00.688884026Z" + "timestamp": "2025-11-27T04:01:59.241206-08:00" }, { "operation": "add_edge", - "rtt_ns": 2705201, - "rtt_ms": 2.705201, + "rtt_ns": 2631583, + "rtt_ms": 2.631583, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.688992906Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:01:59.241224-08:00" }, { "operation": "add_edge", - "rtt_ns": 2688651, - "rtt_ms": 2.688651, + "rtt_ns": 1740833, + "rtt_ms": 1.740833, + "checkpoint": 0, + "vertex_from": "384", + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:59.241229-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1077417, + "rtt_ms": 1.077417, "checkpoint": 0, "vertex_from": "384", "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.689243355Z" + "timestamp": "2025-11-27T04:01:59.241392-08:00" }, { "operation": "add_edge", - "rtt_ns": 3522079, - "rtt_ms": 3.522079, + "rtt_ns": 1948791, + "rtt_ms": 1.948791, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.689996763Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:01:59.24141-08:00" }, { "operation": "add_edge", - "rtt_ns": 3829768, - "rtt_ms": 3.829768, + "rtt_ns": 1933000, + "rtt_ms": 1.933, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.690030973Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.241548-08:00" }, { "operation": "add_edge", - "rtt_ns": 3433650, - "rtt_ms": 3.43365, + "rtt_ns": 1283208, + "rtt_ms": 1.283208, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.690058323Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.241565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752514, - "rtt_ms": 1.752514, + "rtt_ns": 1444500, + "rtt_ms": 1.4445, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.690115762Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.242064-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583505, - "rtt_ms": 1.583505, + "rtt_ns": 1451416, + "rtt_ms": 1.451416, "checkpoint": 0, "vertex_from": "384", "vertex_to": "387", - "timestamp": "2025-11-27T01:22:00.690182712Z" + "timestamp": "2025-11-27T04:01:59.242388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520265, - "rtt_ms": 1.520265, + "rtt_ns": 1194791, + "rtt_ms": 1.194791, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.690220552Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.242419-08:00" }, { "operation": "add_edge", - "rtt_ns": 1589165, - "rtt_ms": 1.589165, + "rtt_ns": 1691042, + "rtt_ms": 1.691042, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.690221612Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:59.242564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1885174, - "rtt_ms": 1.885174, + "rtt_ns": 1486667, + "rtt_ms": 1.486667, "checkpoint": 0, "vertex_from": "384", "vertex_to": "917", - "timestamp": "2025-11-27T01:22:00.6907697Z" + "timestamp": "2025-11-27T04:01:59.242693-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1479125, + "rtt_ms": 1.479125, + "checkpoint": 0, + "vertex_from": "384", + "vertex_to": "896", + "timestamp": "2025-11-27T04:01:59.24271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817594, - "rtt_ms": 1.817594, + "rtt_ns": 1630708, + "rtt_ms": 1.630708, "checkpoint": 0, "vertex_from": "384", "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.69081154Z" + "timestamp": "2025-11-27T04:01:59.243023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588205, - "rtt_ms": 1.588205, + "rtt_ns": 1753709, + "rtt_ms": 1.753709, "checkpoint": 0, "vertex_from": "384", "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.69083238Z" + "timestamp": "2025-11-27T04:01:59.243165-08:00" }, { "operation": "add_edge", - "rtt_ns": 995677, - "rtt_ms": 0.995677, + "rtt_ns": 1676084, + "rtt_ms": 1.676084, "checkpoint": 0, "vertex_from": "384", "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.69099467Z" + "timestamp": "2025-11-27T04:01:59.243226-08:00" }, { "operation": "add_edge", - "rtt_ns": 990897, - "rtt_ms": 0.990897, + "rtt_ns": 1660459, + "rtt_ms": 1.660459, "checkpoint": 0, "vertex_from": "384", "vertex_to": "572", - "timestamp": "2025-11-27T01:22:00.69102309Z" + "timestamp": "2025-11-27T04:01:59.243227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379176, - "rtt_ms": 1.379176, + "rtt_ns": 1337708, + "rtt_ms": 1.337708, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "519", - "timestamp": "2025-11-27T01:22:00.691601198Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:59.243403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542595, - "rtt_ms": 1.542595, + "rtt_ns": 1769791, + "rtt_ms": 1.769791, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.691765327Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:01:59.244191-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1140333, + "rtt_ms": 1.140333, + "checkpoint": 0, + "vertex_from": "385", + "vertex_to": "526", + "timestamp": "2025-11-27T04:01:59.244308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1687545, - "rtt_ms": 1.687545, + "rtt_ns": 1934625, + "rtt_ms": 1.934625, "checkpoint": 0, "vertex_from": "384", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.691804147Z" + "timestamp": "2025-11-27T04:01:59.244325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115017, - "rtt_ms": 1.115017, + "rtt_ns": 1870792, + "rtt_ms": 1.870792, "checkpoint": 0, - "vertex_from": "385", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.691927297Z" + "vertex_from": "384", + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:59.244435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867744, - "rtt_ms": 1.867744, + "rtt_ns": 1910083, + "rtt_ms": 1.910083, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.691927287Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:59.244604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455846, - "rtt_ms": 1.455846, + "rtt_ns": 1385042, + "rtt_ms": 1.385042, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "526", - "timestamp": "2025-11-27T01:22:00.692289316Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.244613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578475, - "rtt_ms": 1.578475, + "rtt_ns": 1602416, + "rtt_ms": 1.602416, "checkpoint": 0, - "vertex_from": "384", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.692349655Z" + "vertex_from": "385", + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.244627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1329095, - "rtt_ms": 1.329095, + "rtt_ns": 1264500, + "rtt_ms": 1.2645, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "488", - "timestamp": "2025-11-27T01:22:00.692354795Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.244669-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176063, - "rtt_ms": 2.176063, + "rtt_ns": 2072125, + "rtt_ms": 2.072125, "checkpoint": 0, "vertex_from": "384", - "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.692360135Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.244783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1384995, - "rtt_ms": 1.384995, + "rtt_ns": 2133709, + "rtt_ms": 2.133709, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.692380505Z" + "vertex_to": "488", + "timestamp": "2025-11-27T04:01:59.245362-08:00" }, { "operation": "add_edge", - "rtt_ns": 850327, - "rtt_ms": 0.850327, + "rtt_ns": 1020625, + "rtt_ms": 1.020625, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.692452675Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.245691-08:00" }, { "operation": "add_edge", - "rtt_ns": 912427, - "rtt_ms": 0.912427, + "rtt_ns": 1183667, + "rtt_ms": 1.183667, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "549", - "timestamp": "2025-11-27T01:22:00.692679264Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:01:59.245789-08:00" }, { "operation": "add_edge", - "rtt_ns": 792497, - "rtt_ms": 0.792497, + "rtt_ns": 1254209, + "rtt_ms": 1.254209, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "388", - "timestamp": "2025-11-27T01:22:00.692722094Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.245883-08:00" }, { "operation": "add_edge", - "rtt_ns": 857427, - "rtt_ms": 0.857427, + "rtt_ns": 1463583, + "rtt_ms": 1.463583, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "531", - "timestamp": "2025-11-27T01:22:00.692786264Z" + "vertex_to": "388", + "timestamp": "2025-11-27T04:01:59.2459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1003667, - "rtt_ms": 1.003667, + "rtt_ns": 1694667, + "rtt_ms": 1.694667, "checkpoint": 0, "vertex_from": "385", "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.692808944Z" - }, - { - "operation": "add_edge", - "rtt_ns": 656807, - "rtt_ms": 0.656807, - "checkpoint": 0, - "vertex_from": "385", - "vertex_to": "744", - "timestamp": "2025-11-27T01:22:00.692947493Z" + "timestamp": "2025-11-27T04:01:59.246004-08:00" }, { "operation": "add_edge", - "rtt_ns": 872368, - "rtt_ms": 0.872368, + "rtt_ns": 1405041, + "rtt_ms": 1.405041, "checkpoint": 0, "vertex_from": "385", "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.693224063Z" + "timestamp": "2025-11-27T04:01:59.24602-08:00" }, { "operation": "add_edge", - "rtt_ns": 785808, - "rtt_ms": 0.785808, + "rtt_ns": 1701833, + "rtt_ms": 1.701833, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.693239513Z" + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:59.246028-08:00" }, { "operation": "add_edge", - "rtt_ns": 899257, - "rtt_ms": 0.899257, + "rtt_ns": 1888791, + "rtt_ms": 1.888791, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.693254892Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:59.24608-08:00" }, { "operation": "add_edge", - "rtt_ns": 960907, - "rtt_ms": 0.960907, + "rtt_ns": 1697292, + "rtt_ms": 1.697292, "checkpoint": 0, "vertex_from": "385", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.693342022Z" + "timestamp": "2025-11-27T04:01:59.246481-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048807, - "rtt_ms": 1.048807, + "rtt_ns": 1358125, + "rtt_ms": 1.358125, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.693409692Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:59.24672-08:00" }, { "operation": "add_edge", - "rtt_ns": 702418, - "rtt_ms": 0.702418, + "rtt_ns": 1084667, + "rtt_ms": 1.084667, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.693424922Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.246776-08:00" }, { "operation": "add_edge", - "rtt_ns": 824208, - "rtt_ms": 0.824208, + "rtt_ns": 1188125, + "rtt_ms": 1.188125, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.693504632Z" + "vertex_to": "720", + "timestamp": "2025-11-27T04:01:59.247269-08:00" }, { "operation": "add_edge", - "rtt_ns": 802087, - "rtt_ms": 0.802087, + "rtt_ns": 1589167, + "rtt_ms": 1.589167, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.693588791Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:59.24761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1218177, - "rtt_ms": 1.218177, + "rtt_ns": 1595000, + "rtt_ms": 1.595, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.69416617Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:59.247624-08:00" }, { "operation": "add_edge", - "rtt_ns": 928398, - "rtt_ms": 0.928398, + "rtt_ns": 1928083, + "rtt_ms": 1.928083, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.69418465Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.247718-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013556, - "rtt_ms": 1.013556, + "rtt_ns": 1854709, + "rtt_ms": 1.854709, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.694238639Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.247739-08:00" }, { "operation": "add_edge", - "rtt_ns": 1437405, - "rtt_ms": 1.437405, + "rtt_ns": 1323083, + "rtt_ms": 1.323083, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "852", - "timestamp": "2025-11-27T01:22:00.694247109Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.247805-08:00" }, { "operation": "add_edge", - "rtt_ns": 1054086, - "rtt_ms": 1.054086, + "rtt_ns": 1836500, + "rtt_ms": 1.8365, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.694294219Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:01:59.247842-08:00" }, { "operation": "add_edge", - "rtt_ns": 976487, - "rtt_ms": 0.976487, + "rtt_ns": 1981583, + "rtt_ms": 1.981583, "checkpoint": 0, "vertex_from": "385", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.694319119Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:01:59.247882-08:00" }, { "operation": "add_edge", - "rtt_ns": 1635494, - "rtt_ms": 1.635494, + "rtt_ns": 1279750, + "rtt_ms": 1.27975, "checkpoint": 0, "vertex_from": "386", "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.695140516Z" + "timestamp": "2025-11-27T04:01:59.24855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1759744, - "rtt_ms": 1.759744, + "rtt_ns": 2062625, + "rtt_ms": 2.062625, "checkpoint": 0, "vertex_from": "386", "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.695170116Z" + "timestamp": "2025-11-27T04:01:59.248784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007246, - "rtt_ms": 1.007246, + "rtt_ns": 2027750, + "rtt_ms": 2.02775, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.695173986Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.248804-08:00" }, { "operation": "add_edge", - "rtt_ns": 954757, - "rtt_ms": 0.954757, + "rtt_ns": 1216333, + "rtt_ms": 1.216333, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.695194006Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.249099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770564, - "rtt_ms": 1.770564, + "rtt_ns": 1447708, + "rtt_ms": 1.447708, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.695196036Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:59.249187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614655, - "rtt_ms": 1.614655, + "rtt_ns": 1603250, + "rtt_ms": 1.60325, "checkpoint": 0, "vertex_from": "386", "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.695204206Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1181236, - "rtt_ms": 1.181236, - "checkpoint": 0, - "vertex_from": "386", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.695501145Z" + "timestamp": "2025-11-27T04:01:59.249214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279606, - "rtt_ms": 1.279606, + "rtt_ns": 1563792, + "rtt_ms": 1.563792, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.695527305Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:59.249284-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287456, - "rtt_ms": 1.287456, + "rtt_ns": 1451500, + "rtt_ms": 1.4515, "checkpoint": 0, "vertex_from": "386", "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.695582415Z" + "timestamp": "2025-11-27T04:01:59.249295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442265, - "rtt_ms": 1.442265, + "rtt_ns": 1561417, + "rtt_ms": 1.561417, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "916", - "timestamp": "2025-11-27T01:22:00.695627475Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:59.249367-08:00" }, { "operation": "add_edge", - "rtt_ns": 767528, - "rtt_ms": 0.767528, + "rtt_ns": 1745417, + "rtt_ms": 1.745417, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.696269953Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.24937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1182417, - "rtt_ms": 1.182417, + "rtt_ns": 1648041, + "rtt_ms": 1.648041, "checkpoint": 0, "vertex_from": "386", "vertex_to": "721", - "timestamp": "2025-11-27T01:22:00.696323903Z" + "timestamp": "2025-11-27T04:01:59.250199-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172056, - "rtt_ms": 1.172056, + "rtt_ns": 1560917, + "rtt_ms": 1.560917, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.696377302Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:59.250366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202316, - "rtt_ms": 1.202316, + "rtt_ns": 1258958, + "rtt_ms": 1.258958, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "390", - "timestamp": "2025-11-27T01:22:00.696377502Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.250474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1224906, - "rtt_ms": 1.224906, + "rtt_ns": 1349625, + "rtt_ms": 1.349625, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.696397232Z" + "vertex_to": "449", + "timestamp": "2025-11-27T04:01:59.250538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263736, - "rtt_ms": 1.263736, + "rtt_ns": 1459709, + "rtt_ms": 1.459709, "checkpoint": 0, "vertex_from": "386", "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.696459022Z" + "timestamp": "2025-11-27T04:01:59.250561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466995, - "rtt_ms": 1.466995, + "rtt_ns": 1362708, + "rtt_ms": 1.362708, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "449", - "timestamp": "2025-11-27T01:22:00.696664161Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.250658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264116, - "rtt_ms": 1.264116, + "rtt_ns": 1884625, + "rtt_ms": 1.884625, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.696792191Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:59.250669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653174, - "rtt_ms": 1.653174, + "rtt_ns": 1420334, + "rtt_ms": 1.420334, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.697281209Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:01:59.250705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747904, - "rtt_ms": 1.747904, + "rtt_ns": 1358791, + "rtt_ms": 1.358791, "checkpoint": 0, "vertex_from": "386", "vertex_to": "550", - "timestamp": "2025-11-27T01:22:00.697331249Z" + "timestamp": "2025-11-27T04:01:59.250726-08:00" }, { "operation": "add_edge", - "rtt_ns": 1046527, - "rtt_ms": 1.046527, + "rtt_ns": 1426417, + "rtt_ms": 1.426417, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "436", - "timestamp": "2025-11-27T01:22:00.697445449Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.250797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096457, - "rtt_ms": 1.096457, + "rtt_ns": 1660750, + "rtt_ms": 1.66075, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.697474709Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.252331-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205746, - "rtt_ms": 1.205746, + "rtt_ns": 1612542, + "rtt_ms": 1.612542, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.697476649Z" + "vertex_to": "655", + "timestamp": "2025-11-27T04:01:59.252339-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098807, - "rtt_ms": 1.098807, + "rtt_ns": 1874542, + "rtt_ms": 1.874542, "checkpoint": 0, "vertex_from": "386", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.697477159Z" + "timestamp": "2025-11-27T04:01:59.25235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169156, - "rtt_ms": 1.169156, + "rtt_ns": 1654042, + "rtt_ms": 1.654042, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.697494019Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.25236-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275206, - "rtt_ms": 1.275206, + "rtt_ns": 1707250, + "rtt_ms": 1.70725, "checkpoint": 0, "vertex_from": "386", "vertex_to": "569", - "timestamp": "2025-11-27T01:22:00.697735358Z" + "timestamp": "2025-11-27T04:01:59.252366-08:00" }, { "operation": "add_edge", - "rtt_ns": 1196306, - "rtt_ms": 1.196306, + "rtt_ns": 2177583, + "rtt_ms": 2.177583, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.697862217Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.252377-08:00" }, { "operation": "add_edge", - "rtt_ns": 646968, - "rtt_ms": 0.646968, + "rtt_ns": 1853958, + "rtt_ms": 1.853958, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.697979067Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:59.252395-08:00" }, { "operation": "add_edge", - "rtt_ns": 718818, - "rtt_ms": 0.718818, + "rtt_ns": 2038459, + "rtt_ms": 2.038459, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "655", - "timestamp": "2025-11-27T01:22:00.698001427Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.252405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211246, - "rtt_ms": 1.211246, + "rtt_ns": 1913166, + "rtt_ms": 1.913166, "checkpoint": 0, "vertex_from": "386", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.698004287Z" + "vertex_to": "436", + "timestamp": "2025-11-27T04:01:59.252476-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1704417, + "rtt_ms": 1.704417, + "checkpoint": 0, + "vertex_from": "386", + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.252502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1152626, - "rtt_ms": 1.152626, + "rtt_ns": 1252041, + "rtt_ms": 1.252041, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.698630065Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:59.253755-08:00" }, { "operation": "add_edge", - "rtt_ns": 917817, - "rtt_ms": 0.917817, + "rtt_ns": 1497292, + "rtt_ms": 1.497292, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.698654615Z" + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.253831-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222156, - "rtt_ms": 1.222156, + "rtt_ns": 1530875, + "rtt_ms": 1.530875, "checkpoint": 0, "vertex_from": "387", "vertex_to": "432", - "timestamp": "2025-11-27T01:22:00.698702665Z" + "timestamp": "2025-11-27T04:01:59.253891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253856, - "rtt_ms": 1.253856, + "rtt_ns": 1588083, + "rtt_ms": 1.588083, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "929", - "timestamp": "2025-11-27T01:22:00.698730005Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:01:59.253994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395755, - "rtt_ms": 1.395755, + "rtt_ns": 1642709, + "rtt_ms": 1.642709, "checkpoint": 0, "vertex_from": "387", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.698890514Z" + "timestamp": "2025-11-27T04:01:59.254009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488525, - "rtt_ms": 1.488525, + "rtt_ns": 1688583, + "rtt_ms": 1.688583, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.698934764Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:01:59.254029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1078637, - "rtt_ms": 1.078637, + "rtt_ns": 1662042, + "rtt_ms": 1.662042, "checkpoint": 0, "vertex_from": "387", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.698941714Z" + "timestamp": "2025-11-27T04:01:59.254058-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631445, - "rtt_ms": 1.631445, + "rtt_ns": 1780000, + "rtt_ms": 1.78, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.699611202Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.25413-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067496, - "rtt_ms": 1.067496, + "rtt_ns": 1725083, + "rtt_ms": 1.725083, "checkpoint": 0, - "vertex_from": "388", - "vertex_to": "569", - "timestamp": "2025-11-27T01:22:00.699698731Z" + "vertex_from": "387", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.254201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1706434, - "rtt_ms": 1.706434, + "rtt_ns": 1886667, + "rtt_ms": 1.886667, "checkpoint": 0, "vertex_from": "387", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.699708461Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:59.254265-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004196, - "rtt_ms": 1.004196, + "rtt_ns": 1102375, + "rtt_ms": 1.102375, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.699735201Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:59.255234-08:00" }, { "operation": "add_edge", - "rtt_ns": 1090106, - "rtt_ms": 1.090106, + "rtt_ns": 1420292, + "rtt_ms": 1.420292, "checkpoint": 0, "vertex_from": "388", "vertex_to": "417", - "timestamp": "2025-11-27T01:22:00.699747901Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1760634, - "rtt_ms": 1.760634, - "checkpoint": 0, - "vertex_from": "387", - "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.699766381Z" + "timestamp": "2025-11-27T04:01:59.255252-08:00" }, { "operation": "add_edge", - "rtt_ns": 1076086, - "rtt_ms": 1.076086, + "rtt_ns": 1612541, + "rtt_ms": 1.612541, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.699780361Z" + "vertex_to": "569", + "timestamp": "2025-11-27T04:01:59.255369-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619495, - "rtt_ms": 1.619495, + "rtt_ns": 1373000, + "rtt_ms": 1.373, "checkpoint": 0, "vertex_from": "388", "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.700555449Z" + "timestamp": "2025-11-27T04:01:59.255403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1790924, - "rtt_ms": 1.790924, + "rtt_ns": 1375333, + "rtt_ms": 1.375333, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.700683908Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:01:59.255435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792224, - "rtt_ms": 1.792224, + "rtt_ns": 1221334, + "rtt_ms": 1.221334, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "625", - "timestamp": "2025-11-27T01:22:00.700735538Z" + "vertex_to": "996", + "timestamp": "2025-11-27T04:01:59.255488-08:00" }, { "operation": "add_edge", - "rtt_ns": 984557, - "rtt_ms": 0.984557, + "rtt_ns": 1375209, + "rtt_ms": 1.375209, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.700752118Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.255577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071327, - "rtt_ms": 1.071327, + "rtt_ns": 1706458, + "rtt_ms": 1.706458, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "996", - "timestamp": "2025-11-27T01:22:00.700782098Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:59.2556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176316, - "rtt_ms": 1.176316, + "rtt_ns": 1630166, + "rtt_ms": 1.630166, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.700788548Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.25564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1328226, - "rtt_ms": 1.328226, + "rtt_ns": 1773583, + "rtt_ms": 1.773583, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.701077577Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:59.255771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656935, - "rtt_ms": 1.656935, + "rtt_ns": 1165709, + "rtt_ms": 1.165709, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "452", - "timestamp": "2025-11-27T01:22:00.701393636Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:01:59.256602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795564, - "rtt_ms": 1.795564, + "rtt_ns": 1236958, + "rtt_ms": 1.236958, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "595", - "timestamp": "2025-11-27T01:22:00.701577735Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:59.256607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1902704, - "rtt_ms": 1.902704, + "rtt_ns": 1653042, + "rtt_ms": 1.653042, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.701603085Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:59.256888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1148317, - "rtt_ms": 1.148317, + "rtt_ns": 1530542, + "rtt_ms": 1.530542, "checkpoint": 0, "vertex_from": "388", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.701833105Z" + "timestamp": "2025-11-27T04:01:59.257019-08:00" }, { "operation": "add_edge", - "rtt_ns": 2212313, - "rtt_ms": 2.212313, + "rtt_ns": 1618625, + "rtt_ms": 1.618625, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "794", - "timestamp": "2025-11-27T01:22:00.702769182Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:01:59.257023-08:00" }, { "operation": "add_edge", - "rtt_ns": 2081923, - "rtt_ms": 2.081923, + "rtt_ns": 1270167, + "rtt_ms": 1.270167, "checkpoint": 0, "vertex_from": "388", "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.702871651Z" + "timestamp": "2025-11-27T04:01:59.257041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2850371, - "rtt_ms": 2.850371, + "rtt_ns": 1404000, + "rtt_ms": 1.404, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.703586609Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.257045-08:00" }, { "operation": "add_edge", - "rtt_ns": 3026910, - "rtt_ms": 3.02691, + "rtt_ns": 1482917, + "rtt_ms": 1.482917, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "590", - "timestamp": "2025-11-27T01:22:00.703779938Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:01:59.257062-08:00" }, { "operation": "add_edge", - "rtt_ns": 2415792, - "rtt_ms": 2.415792, + "rtt_ns": 1880625, + "rtt_ms": 1.880625, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.703810088Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.257133-08:00" }, { "operation": "add_edge", - "rtt_ns": 2814311, - "rtt_ms": 2.814311, + "rtt_ns": 1701834, + "rtt_ms": 1.701834, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "454", - "timestamp": "2025-11-27T01:22:00.703893228Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:01:59.257302-08:00" }, { "operation": "add_edge", - "rtt_ns": 2314253, - "rtt_ms": 2.314253, + "rtt_ns": 1103750, + "rtt_ms": 1.10375, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.703893318Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.258127-08:00" }, { "operation": "add_edge", - "rtt_ns": 3118710, - "rtt_ms": 3.11871, + "rtt_ns": 1246125, + "rtt_ms": 1.246125, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.703901888Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:59.258266-08:00" }, { "operation": "add_edge", - "rtt_ns": 2076533, - "rtt_ms": 2.076533, + "rtt_ns": 1224541, + "rtt_ms": 1.224541, "checkpoint": 0, - "vertex_from": "388", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.703910278Z" + "vertex_from": "389", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:59.258359-08:00" }, { "operation": "add_edge", - "rtt_ns": 3029361, - "rtt_ms": 3.029361, + "rtt_ns": 1321291, + "rtt_ms": 1.321291, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.704633846Z" + "vertex_to": "390", + "timestamp": "2025-11-27T04:01:59.258363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777535, - "rtt_ms": 1.777535, + "rtt_ns": 1324208, + "rtt_ms": 1.324208, "checkpoint": 0, - "vertex_from": "388", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.704649926Z" + "vertex_from": "389", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.258387-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931743, - "rtt_ms": 1.931743, + "rtt_ns": 1970292, + "rtt_ms": 1.970292, "checkpoint": 0, "vertex_from": "388", - "vertex_to": "390", - "timestamp": "2025-11-27T01:22:00.704701995Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:01:59.258574-08:00" }, { "operation": "add_edge", - "rtt_ns": 1847294, - "rtt_ms": 1.847294, + "rtt_ns": 1532000, + "rtt_ms": 1.532, "checkpoint": 0, - "vertex_from": "389", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.705435433Z" + "vertex_from": "388", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.258577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1652235, - "rtt_ms": 1.652235, + "rtt_ns": 1289959, + "rtt_ms": 1.289959, "checkpoint": 0, "vertex_from": "389", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.705463073Z" + "timestamp": "2025-11-27T04:01:59.258593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1572125, - "rtt_ms": 1.572125, + "rtt_ns": 1911458, + "rtt_ms": 1.911458, "checkpoint": 0, - "vertex_from": "389", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.705475193Z" + "vertex_from": "388", + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.2588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1747534, - "rtt_ms": 1.747534, + "rtt_ns": 2203709, + "rtt_ms": 2.203709, "checkpoint": 0, - "vertex_from": "389", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.705642862Z" + "vertex_from": "388", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.258813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777404, - "rtt_ms": 1.777404, + "rtt_ns": 2331500, + "rtt_ms": 2.3315, "checkpoint": 0, "vertex_from": "389", "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.705688902Z" + "timestamp": "2025-11-27T04:01:59.260695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808164, - "rtt_ms": 1.808164, + "rtt_ns": 2355542, + "rtt_ms": 2.355542, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "525", - "timestamp": "2025-11-27T01:22:00.705702672Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:01:59.260715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116896, - "rtt_ms": 1.116896, + "rtt_ns": 1918458, + "rtt_ms": 1.918458, "checkpoint": 0, - "vertex_from": "389", - "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.705751922Z" + "vertex_from": "390", + "vertex_to": "820", + "timestamp": "2025-11-27T04:01:59.260732-08:00" }, { "operation": "add_edge", - "rtt_ns": 2026364, - "rtt_ms": 2.026364, + "rtt_ns": 2466584, + "rtt_ms": 2.466584, "checkpoint": 0, "vertex_from": "389", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.705807532Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.260734-08:00" }, { "operation": "add_edge", - "rtt_ns": 1283306, - "rtt_ms": 1.283306, + "rtt_ns": 2167583, + "rtt_ms": 2.167583, "checkpoint": 0, "vertex_from": "390", "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.705934222Z" + "timestamp": "2025-11-27T04:01:59.260743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250966, - "rtt_ms": 1.250966, + "rtt_ns": 1947000, + "rtt_ms": 1.947, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.705954731Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.260748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397056, - "rtt_ms": 1.397056, + "rtt_ns": 2172875, + "rtt_ms": 2.172875, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "809", - "timestamp": "2025-11-27T01:22:00.706834239Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:01:59.260751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863174, - "rtt_ms": 1.863174, + "rtt_ns": 2376542, + "rtt_ms": 2.376542, "checkpoint": 0, - "vertex_from": "390", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.707553016Z" + "vertex_from": "389", + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:59.260764-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131423, - "rtt_ms": 2.131423, + "rtt_ns": 2637333, + "rtt_ms": 2.637333, "checkpoint": 0, - "vertex_from": "390", - "vertex_to": "820", - "timestamp": "2025-11-27T01:22:00.707609016Z" + "vertex_from": "389", + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:59.260766-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862474, - "rtt_ms": 1.862474, + "rtt_ns": 2206084, + "rtt_ms": 2.206084, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.707615156Z" + "vertex_to": "809", + "timestamp": "2025-11-27T04:01:59.2608-08:00" }, { "operation": "add_edge", - "rtt_ns": 2178493, - "rtt_ms": 2.178493, + "rtt_ns": 1713250, + "rtt_ms": 1.71325, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.707642466Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:59.262479-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134894, - "rtt_ms": 2.134894, + "rtt_ns": 1744333, + "rtt_ms": 1.744333, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "496", - "timestamp": "2025-11-27T01:22:00.708091925Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.262491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356125, - "rtt_ms": 1.356125, + "rtt_ns": 1731875, + "rtt_ms": 1.731875, "checkpoint": 0, "vertex_from": "390", "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.708191524Z" + "timestamp": "2025-11-27T04:01:59.262497-08:00" }, { "operation": "add_edge", - "rtt_ns": 2488182, - "rtt_ms": 2.488182, + "rtt_ns": 1775750, + "rtt_ms": 1.77575, "checkpoint": 0, "vertex_from": "390", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.708192104Z" + "timestamp": "2025-11-27T04:01:59.262509-08:00" }, { "operation": "add_edge", - "rtt_ns": 2560752, - "rtt_ms": 2.560752, + "rtt_ns": 1764083, + "rtt_ms": 1.764083, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.708204594Z" + "vertex_to": "496", + "timestamp": "2025-11-27T04:01:59.262516-08:00" }, { "operation": "add_edge", - "rtt_ns": 2402412, - "rtt_ms": 2.402412, + "rtt_ns": 1836250, + "rtt_ms": 1.83625, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.708213744Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.26257-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471662, - "rtt_ms": 2.471662, + "rtt_ns": 1934958, + "rtt_ms": 1.934958, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "539", - "timestamp": "2025-11-27T01:22:00.708410274Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.262651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1006286, - "rtt_ms": 1.006286, + "rtt_ns": 1856292, + "rtt_ms": 1.856292, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.709099231Z" + "vertex_from": "390", + "vertex_to": "977", + "timestamp": "2025-11-27T04:01:59.262658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525925, - "rtt_ms": 1.525925, + "rtt_ns": 2049500, + "rtt_ms": 2.0495, "checkpoint": 0, "vertex_from": "390", - "vertex_to": "977", - "timestamp": "2025-11-27T01:22:00.709136431Z" + "vertex_to": "539", + "timestamp": "2025-11-27T04:01:59.262799-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554525, - "rtt_ms": 1.554525, + "rtt_ns": 2127584, + "rtt_ms": 2.127584, "checkpoint": 0, - "vertex_from": "391", - "vertex_to": "654", - "timestamp": "2025-11-27T01:22:00.709170981Z" + "vertex_from": "390", + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.262824-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685835, - "rtt_ms": 1.685835, + "rtt_ns": 1158958, + "rtt_ms": 1.158958, "checkpoint": 0, - "vertex_from": "390", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.709240011Z" + "vertex_from": "392", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.263811-08:00" }, { "operation": "add_edge", - "rtt_ns": 1149087, - "rtt_ms": 1.149087, + "rtt_ns": 1258958, + "rtt_ms": 1.258958, "checkpoint": 0, "vertex_from": "392", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.709355271Z" + "timestamp": "2025-11-27T04:01:59.26383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1507435, - "rtt_ms": 1.507435, + "rtt_ns": 1353375, + "rtt_ms": 1.353375, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.709918539Z" + "vertex_to": "400", + "timestamp": "2025-11-27T04:01:59.263863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725785, - "rtt_ms": 1.725785, + "rtt_ns": 1519625, + "rtt_ms": 1.519625, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.709940819Z" + "vertex_from": "391", + "vertex_to": "654", + "timestamp": "2025-11-27T04:01:59.264-08:00" }, { "operation": "add_edge", - "rtt_ns": 855908, - "rtt_ms": 0.855908, + "rtt_ns": 1527417, + "rtt_ms": 1.527417, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "408", - "timestamp": "2025-11-27T01:22:00.709956379Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:01:59.264025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1832825, - "rtt_ms": 1.832825, + "rtt_ns": 1585917, + "rtt_ms": 1.585917, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.710025539Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.264078-08:00" }, { "operation": "add_edge", - "rtt_ns": 917957, - "rtt_ms": 0.917957, + "rtt_ns": 1537875, + "rtt_ms": 1.537875, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "622", - "timestamp": "2025-11-27T01:22:00.710055608Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.264197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1947854, - "rtt_ms": 1.947854, + "rtt_ns": 1775833, + "rtt_ms": 1.775833, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "400", - "timestamp": "2025-11-27T01:22:00.710140718Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.264292-08:00" }, { "operation": "add_edge", - "rtt_ns": 2496402, - "rtt_ms": 2.496402, + "rtt_ns": 1479583, + "rtt_ms": 1.479583, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.710140848Z" + "vertex_to": "622", + "timestamp": "2025-11-27T04:01:59.264304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460905, - "rtt_ms": 1.460905, + "rtt_ns": 1535416, + "rtt_ms": 1.535416, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.710702256Z" + "vertex_to": "408", + "timestamp": "2025-11-27T04:01:59.264335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629455, - "rtt_ms": 1.629455, + "rtt_ns": 1154541, + "rtt_ms": 1.154541, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.710804876Z" + "vertex_to": "402", + "timestamp": "2025-11-27T04:01:59.265018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307946, - "rtt_ms": 1.307946, + "rtt_ns": 1276709, + "rtt_ms": 1.276709, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.711265605Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.265108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404825, - "rtt_ms": 1.404825, + "rtt_ns": 1323000, + "rtt_ms": 1.323, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.711324454Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.265135-08:00" }, { "operation": "add_edge", - "rtt_ns": 2000623, - "rtt_ms": 2.000623, + "rtt_ns": 1145959, + "rtt_ms": 1.145959, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "402", - "timestamp": "2025-11-27T01:22:00.711357044Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:01:59.265224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497395, - "rtt_ms": 1.497395, + "rtt_ns": 1216500, + "rtt_ms": 1.2165, "checkpoint": 0, "vertex_from": "392", "vertex_to": "497", - "timestamp": "2025-11-27T01:22:00.711439574Z" + "timestamp": "2025-11-27T04:01:59.265242-08:00" }, { "operation": "add_edge", - "rtt_ns": 1439985, - "rtt_ms": 1.439985, + "rtt_ns": 1320792, + "rtt_ms": 1.320792, "checkpoint": 0, "vertex_from": "392", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.711466284Z" + "timestamp": "2025-11-27T04:01:59.265519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1386306, - "rtt_ms": 1.386306, + "rtt_ns": 1549875, + "rtt_ms": 1.549875, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.711529214Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.265551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483405, - "rtt_ms": 1.483405, + "rtt_ns": 1550875, + "rtt_ms": 1.550875, "checkpoint": 0, "vertex_from": "392", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.711625733Z" + "timestamp": "2025-11-27T04:01:59.265856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1409036, - "rtt_ms": 1.409036, + "rtt_ns": 1786917, + "rtt_ms": 1.786917, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.712215022Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.266082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1036086, - "rtt_ms": 1.036086, + "rtt_ns": 1967000, + "rtt_ms": 1.967, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "729", - "timestamp": "2025-11-27T01:22:00.712302781Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.266304-08:00" }, { "operation": "add_edge", - "rtt_ns": 993987, - "rtt_ms": 0.993987, + "rtt_ns": 1404917, + "rtt_ms": 1.404917, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.712319981Z" + "vertex_to": "432", + "timestamp": "2025-11-27T04:01:59.266424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631385, - "rtt_ms": 1.631385, + "rtt_ns": 1531292, + "rtt_ms": 1.531292, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "432", - "timestamp": "2025-11-27T01:22:00.712335031Z" + "vertex_to": "729", + "timestamp": "2025-11-27T04:01:59.266667-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041487, - "rtt_ms": 1.041487, + "rtt_ns": 1483334, + "rtt_ms": 1.483334, "checkpoint": 0, "vertex_from": "392", "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.712399121Z" + "timestamp": "2025-11-27T04:01:59.266726-08:00" }, { "operation": "add_edge", - "rtt_ns": 2495802, - "rtt_ms": 2.495802, + "rtt_ns": 1632250, + "rtt_ms": 1.63225, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.71255236Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:59.266743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192326, - "rtt_ms": 1.192326, + "rtt_ns": 1222250, + "rtt_ms": 1.22225, "checkpoint": 0, "vertex_from": "392", "vertex_to": "394", - "timestamp": "2025-11-27T01:22:00.71266001Z" + "timestamp": "2025-11-27T04:01:59.266774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623735, - "rtt_ms": 1.623735, + "rtt_ns": 1341333, + "rtt_ms": 1.341333, "checkpoint": 0, "vertex_from": "392", "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.713064139Z" + "timestamp": "2025-11-27T04:01:59.266862-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719694, - "rtt_ms": 1.719694, + "rtt_ns": 1958959, + "rtt_ms": 1.958959, "checkpoint": 0, "vertex_from": "392", - "vertex_to": "724", - "timestamp": "2025-11-27T01:22:00.713250168Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.267184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659145, - "rtt_ms": 1.659145, + "rtt_ns": 1113625, + "rtt_ms": 1.113625, "checkpoint": 0, "vertex_from": "392", "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.713285688Z" + "timestamp": "2025-11-27T04:01:59.267197-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235756, - "rtt_ms": 1.235756, + "rtt_ns": 1008667, + "rtt_ms": 1.008667, "checkpoint": 0, - "vertex_from": "393", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.713571777Z" + "vertex_from": "392", + "vertex_to": "525", + "timestamp": "2025-11-27T04:01:59.267315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307216, - "rtt_ms": 1.307216, + "rtt_ns": 840583, + "rtt_ms": 0.840583, + "checkpoint": 0, + "vertex_from": "392", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.267509-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1331500, + "rtt_ms": 1.3315, "checkpoint": 0, "vertex_from": "392", "vertex_to": "869", - "timestamp": "2025-11-27T01:22:00.713611057Z" + "timestamp": "2025-11-27T04:01:59.267757-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281366, - "rtt_ms": 1.281366, + "rtt_ns": 1668959, + "rtt_ms": 1.668959, "checkpoint": 0, "vertex_from": "393", "vertex_to": "664", - "timestamp": "2025-11-27T01:22:00.713681407Z" + "timestamp": "2025-11-27T04:01:59.268412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160256, - "rtt_ms": 1.160256, + "rtt_ns": 2572917, + "rtt_ms": 2.572917, "checkpoint": 0, - "vertex_from": "393", - "vertex_to": "936", - "timestamp": "2025-11-27T01:22:00.713713726Z" + "vertex_from": "392", + "vertex_to": "724", + "timestamp": "2025-11-27T04:01:59.268431-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924584, - "rtt_ms": 1.924584, + "rtt_ns": 1722334, + "rtt_ms": 1.722334, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.714245795Z" + "vertex_from": "393", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.268449-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074846, - "rtt_ms": 1.074846, + "rtt_ns": 1688250, + "rtt_ms": 1.68825, "checkpoint": 0, "vertex_from": "393", - "vertex_to": "709", - "timestamp": "2025-11-27T01:22:00.714326014Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.268873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1204686, - "rtt_ms": 1.204686, + "rtt_ns": 1570959, + "rtt_ms": 1.570959, "checkpoint": 0, "vertex_from": "393", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.714490964Z" + "timestamp": "2025-11-27T04:01:59.268888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1462145, - "rtt_ms": 1.462145, + "rtt_ns": 2042917, + "rtt_ms": 2.042917, "checkpoint": 0, "vertex_from": "393", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.714527044Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.268906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1868234, - "rtt_ms": 1.868234, + "rtt_ns": 2146167, + "rtt_ms": 2.146167, "checkpoint": 0, "vertex_from": "393", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.714529214Z" + "vertex_to": "936", + "timestamp": "2025-11-27T04:01:59.268921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2882761, - "rtt_ms": 2.882761, + "rtt_ns": 1832959, + "rtt_ms": 1.832959, "checkpoint": 0, - "vertex_from": "392", - "vertex_to": "525", - "timestamp": "2025-11-27T01:22:00.715100152Z" + "vertex_from": "393", + "vertex_to": "709", + "timestamp": "2025-11-27T04:01:59.269031-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538575, - "rtt_ms": 1.538575, + "rtt_ns": 1535333, + "rtt_ms": 1.535333, "checkpoint": 0, "vertex_from": "393", "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.715112672Z" + "timestamp": "2025-11-27T04:01:59.269045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632664, - "rtt_ms": 1.632664, + "rtt_ns": 1758042, + "rtt_ms": 1.758042, "checkpoint": 0, "vertex_from": "394", "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.715244871Z" + "timestamp": "2025-11-27T04:01:59.269516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600434, - "rtt_ms": 1.600434, + "rtt_ns": 1383709, + "rtt_ms": 1.383709, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.715282761Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.270273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250966, - "rtt_ms": 1.250966, + "rtt_ns": 1249709, + "rtt_ms": 1.249709, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.71557833Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.270296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522715, - "rtt_ms": 1.522715, + "rtt_ns": 1187875, + "rtt_ms": 1.187875, "checkpoint": 0, - "vertex_from": "394", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.71577018Z" + "vertex_from": "395", + "vertex_to": "534", + "timestamp": "2025-11-27T04:01:59.270707-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096613, - "rtt_ms": 2.096613, + "rtt_ns": 2306417, + "rtt_ms": 2.306417, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.715811959Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.27072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348235, - "rtt_ms": 1.348235, + "rtt_ns": 1848625, + "rtt_ms": 1.848625, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "730", - "timestamp": "2025-11-27T01:22:00.715877529Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:01:59.270723-08:00" }, { "operation": "add_edge", - "rtt_ns": 1860454, - "rtt_ms": 1.860454, + "rtt_ns": 1843375, + "rtt_ms": 1.843375, "checkpoint": 0, "vertex_from": "394", "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.716396808Z" + "timestamp": "2025-11-27T04:01:59.270765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350565, - "rtt_ms": 1.350565, + "rtt_ns": 1889916, + "rtt_ms": 1.889916, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.716452317Z" + "vertex_to": "730", + "timestamp": "2025-11-27T04:01:59.270796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1987513, - "rtt_ms": 1.987513, + "rtt_ns": 2451875, + "rtt_ms": 2.451875, "checkpoint": 0, "vertex_from": "394", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.716479397Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.270884-08:00" }, { "operation": "add_edge", - "rtt_ns": 900157, - "rtt_ms": 0.900157, + "rtt_ns": 2443708, + "rtt_ms": 2.443708, "checkpoint": 0, - "vertex_from": "395", - "vertex_to": "450", - "timestamp": "2025-11-27T01:22:00.716480327Z" + "vertex_from": "394", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.270893-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261796, - "rtt_ms": 1.261796, + "rtt_ns": 1937917, + "rtt_ms": 1.937917, "checkpoint": 0, - "vertex_from": "395", - "vertex_to": "676", - "timestamp": "2025-11-27T01:22:00.716546247Z" + "vertex_from": "394", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.270969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604525, - "rtt_ms": 1.604525, + "rtt_ns": 1647625, + "rtt_ms": 1.647625, "checkpoint": 0, "vertex_from": "395", - "vertex_to": "534", - "timestamp": "2025-11-27T01:22:00.716850466Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:59.271921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1754384, - "rtt_ms": 1.754384, + "rtt_ns": 2676583, + "rtt_ms": 2.676583, "checkpoint": 0, - "vertex_from": "394", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.716868006Z" + "vertex_from": "396", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.273442-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782715, - "rtt_ms": 1.782715, + "rtt_ns": 2738333, + "rtt_ms": 2.738333, "checkpoint": 0, - "vertex_from": "395", - "vertex_to": "416", - "timestamp": "2025-11-27T01:22:00.717596364Z" + "vertex_from": "396", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.273463-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740495, - "rtt_ms": 1.740495, + "rtt_ns": 2593875, + "rtt_ms": 2.593875, "checkpoint": 0, "vertex_from": "396", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.717619204Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.27348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809934, - "rtt_ms": 1.809934, + "rtt_ns": 2600333, + "rtt_ms": 2.600333, "checkpoint": 0, - "vertex_from": "397", - "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.71867922Z" + "vertex_from": "396", + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:59.27357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1910484, - "rtt_ms": 1.910484, + "rtt_ns": 2885208, + "rtt_ms": 2.885208, "checkpoint": 0, - "vertex_from": "396", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.71876167Z" + "vertex_from": "395", + "vertex_to": "416", + "timestamp": "2025-11-27T04:01:59.273606-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372462, - "rtt_ms": 2.372462, + "rtt_ns": 1687083, + "rtt_ms": 1.687083, "checkpoint": 0, "vertex_from": "396", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.71877047Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.27361-08:00" }, { "operation": "add_edge", - "rtt_ns": 2334023, - "rtt_ms": 2.334023, + "rtt_ns": 3324292, + "rtt_ms": 3.324292, "checkpoint": 0, - "vertex_from": "396", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.71881546Z" + "vertex_from": "395", + "vertex_to": "450", + "timestamp": "2025-11-27T04:01:59.273622-08:00" }, { "operation": "add_edge", - "rtt_ns": 2343503, - "rtt_ms": 2.343503, + "rtt_ns": 3183667, + "rtt_ms": 3.183667, "checkpoint": 0, - "vertex_from": "396", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.71882383Z" + "vertex_from": "395", + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:59.273892-08:00" }, { "operation": "add_edge", - "rtt_ns": 2377983, - "rtt_ms": 2.377983, + "rtt_ns": 3275625, + "rtt_ms": 3.275625, "checkpoint": 0, "vertex_from": "396", "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.71883147Z" + "timestamp": "2025-11-27T04:01:59.274073-08:00" }, { "operation": "add_edge", - "rtt_ns": 3068660, - "rtt_ms": 3.06866, + "rtt_ns": 3197375, + "rtt_ms": 3.197375, "checkpoint": 0, - "vertex_from": "395", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.7188398Z" + "vertex_from": "396", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.274092-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294883, - "rtt_ms": 2.294883, + "rtt_ns": 1312417, + "rtt_ms": 1.312417, "checkpoint": 0, - "vertex_from": "396", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.71884215Z" + "vertex_from": "400", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.275386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271746, - "rtt_ms": 1.271746, + "rtt_ns": 1830417, + "rtt_ms": 1.830417, "checkpoint": 0, "vertex_from": "397", - "vertex_to": "424", - "timestamp": "2025-11-27T01:22:00.71889261Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.275403-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392545, - "rtt_ms": 1.392545, + "rtt_ns": 1798000, + "rtt_ms": 1.798, "checkpoint": 0, - "vertex_from": "397", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.718989699Z" + "vertex_from": "400", + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:59.275422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045727, - "rtt_ms": 1.045727, + "rtt_ns": 1903875, + "rtt_ms": 1.903875, "checkpoint": 0, "vertex_from": "399", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.719817917Z" + "timestamp": "2025-11-27T04:01:59.275516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538535, - "rtt_ms": 1.538535, + "rtt_ns": 1915625, + "rtt_ms": 1.915625, "checkpoint": 0, "vertex_from": "398", "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.720301775Z" + "timestamp": "2025-11-27T04:01:59.275525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546075, - "rtt_ms": 1.546075, + "rtt_ns": 1474042, + "rtt_ms": 1.474042, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.720380965Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.275567-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486895, - "rtt_ms": 1.486895, + "rtt_ns": 1719833, + "rtt_ms": 1.719833, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.720382945Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.275612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539765, - "rtt_ms": 1.539765, + "rtt_ns": 2195875, + "rtt_ms": 2.195875, "checkpoint": 0, - "vertex_from": "400", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.720383115Z" + "vertex_from": "397", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.27566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415786, - "rtt_ms": 1.415786, + "rtt_ns": 2230833, + "rtt_ms": 2.230833, "checkpoint": 0, - "vertex_from": "400", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.720407015Z" + "vertex_from": "397", + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:59.275675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731245, - "rtt_ms": 1.731245, + "rtt_ns": 2316959, + "rtt_ms": 2.316959, "checkpoint": 0, "vertex_from": "397", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.720411645Z" + "vertex_to": "424", + "timestamp": "2025-11-27T04:01:59.275798-08:00" }, { "operation": "add_edge", - "rtt_ns": 1593425, - "rtt_ms": 1.593425, + "rtt_ns": 1378167, + "rtt_ms": 1.378167, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.720418405Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.276801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606165, - "rtt_ms": 1.606165, + "rtt_ns": 1378000, + "rtt_ms": 1.378, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "675", - "timestamp": "2025-11-27T01:22:00.720423085Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:01:59.276897-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607195, - "rtt_ms": 1.607195, + "rtt_ns": 1586625, + "rtt_ms": 1.586625, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.720450615Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.276973-08:00" }, { "operation": "add_edge", - "rtt_ns": 677838, - "rtt_ms": 0.677838, + "rtt_ns": 1602542, + "rtt_ms": 1.602542, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "796", - "timestamp": "2025-11-27T01:22:00.720497535Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.277006-08:00" }, { "operation": "add_edge", - "rtt_ns": 842748, - "rtt_ms": 0.842748, + "rtt_ns": 1470500, + "rtt_ms": 1.4705, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "716", - "timestamp": "2025-11-27T01:22:00.721146003Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:59.277039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362656, - "rtt_ms": 1.362656, + "rtt_ns": 1366958, + "rtt_ms": 1.366958, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "962", - "timestamp": "2025-11-27T01:22:00.721787091Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.277043-08:00" }, { "operation": "add_edge", - "rtt_ns": 1541475, - "rtt_ms": 1.541475, + "rtt_ns": 1554166, + "rtt_ms": 1.554166, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "557", - "timestamp": "2025-11-27T01:22:00.72192632Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:01:59.277081-08:00" }, { "operation": "add_edge", - "rtt_ns": 1481735, - "rtt_ms": 1.481735, + "rtt_ns": 1480917, + "rtt_ms": 1.480917, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.72193417Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.277094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1459565, - "rtt_ms": 1.459565, + "rtt_ns": 1512167, + "rtt_ms": 1.512167, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "616", - "timestamp": "2025-11-27T01:22:00.72195907Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.277311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1548765, - "rtt_ms": 1.548765, + "rtt_ns": 1674083, + "rtt_ms": 1.674083, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.72196809Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:01:59.277335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575995, - "rtt_ms": 1.575995, + "rtt_ns": 1390041, + "rtt_ms": 1.390041, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.72198972Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.278192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608315, - "rtt_ms": 1.608315, + "rtt_ns": 1287625, + "rtt_ms": 1.287625, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.72199059Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.27837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1588905, - "rtt_ms": 1.588905, + "rtt_ns": 1529792, + "rtt_ms": 1.529792, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.72199859Z" + "vertex_to": "962", + "timestamp": "2025-11-27T04:01:59.278429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629605, - "rtt_ms": 1.629605, + "rtt_ns": 1502375, + "rtt_ms": 1.502375, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.72201383Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:59.278511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592184, - "rtt_ms": 1.592184, + "rtt_ns": 1684084, + "rtt_ms": 1.684084, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.722739867Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.278659-08:00" }, { "operation": "add_edge", - "rtt_ns": 962626, - "rtt_ms": 0.962626, + "rtt_ns": 1688209, + "rtt_ms": 1.688209, "checkpoint": 0, "vertex_from": "400", "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.722751277Z" + "timestamp": "2025-11-27T04:01:59.278732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544965, - "rtt_ms": 1.544965, + "rtt_ns": 1727417, + "rtt_ms": 1.727417, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.723472295Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:59.278767-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489595, - "rtt_ms": 1.489595, + "rtt_ns": 1558000, + "rtt_ms": 1.558, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.723489155Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:01:59.27887-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617155, - "rtt_ms": 1.617155, + "rtt_ns": 1852833, + "rtt_ms": 1.852833, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.723607685Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.278948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1651555, - "rtt_ms": 1.651555, + "rtt_ns": 1651625, + "rtt_ms": 1.651625, "checkpoint": 0, "vertex_from": "400", "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.723620685Z" + "timestamp": "2025-11-27T04:01:59.278988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691735, - "rtt_ms": 1.691735, + "rtt_ns": 1765916, + "rtt_ms": 1.765916, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "625", - "timestamp": "2025-11-27T01:22:00.723652225Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.279958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1639125, - "rtt_ms": 1.639125, + "rtt_ns": 1547916, + "rtt_ms": 1.547916, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.723654095Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.279979-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673785, - "rtt_ms": 1.673785, + "rtt_ns": 1430208, + "rtt_ms": 1.430208, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "685", - "timestamp": "2025-11-27T01:22:00.723666205Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.280198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1732755, - "rtt_ms": 1.732755, + "rtt_ns": 1702875, + "rtt_ms": 1.702875, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.723668495Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:59.280215-08:00" }, { "operation": "add_edge", - "rtt_ns": 1664825, - "rtt_ms": 1.664825, + "rtt_ns": 1704459, + "rtt_ms": 1.704459, "checkpoint": 0, "vertex_from": "400", "vertex_to": "626", - "timestamp": "2025-11-27T01:22:00.724405852Z" + "timestamp": "2025-11-27T04:01:59.280364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1690185, - "rtt_ms": 1.690185, + "rtt_ns": 1648667, + "rtt_ms": 1.648667, "checkpoint": 0, "vertex_from": "400", "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.724443122Z" - }, - { - "operation": "add_edge", - "rtt_ns": 983167, - "rtt_ms": 0.983167, - "checkpoint": 0, - "vertex_from": "401", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.724473972Z" + "timestamp": "2025-11-27T04:01:59.280381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125587, - "rtt_ms": 1.125587, + "rtt_ns": 2025542, + "rtt_ms": 2.025542, "checkpoint": 0, "vertex_from": "400", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.724599432Z" + "vertex_to": "685", + "timestamp": "2025-11-27T04:01:59.280397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1888594, - "rtt_ms": 1.888594, + "rtt_ns": 1492084, + "rtt_ms": 1.492084, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.725497049Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.28048-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012833, - "rtt_ms": 2.012833, + "rtt_ns": 1540250, + "rtt_ms": 1.54025, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.725634468Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.280494-08:00" }, { "operation": "add_edge", - "rtt_ns": 2579411, - "rtt_ms": 2.579411, + "rtt_ns": 1624000, + "rtt_ms": 1.624, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.726234316Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.280496-08:00" }, { "operation": "add_edge", - "rtt_ns": 2636731, - "rtt_ms": 2.636731, + "rtt_ns": 1811292, + "rtt_ms": 1.811292, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.726304676Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.281772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896154, - "rtt_ms": 1.896154, + "rtt_ns": 1395292, + "rtt_ms": 1.395292, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.726372356Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.281778-08:00" }, { "operation": "add_edge", - "rtt_ns": 2737731, - "rtt_ms": 2.737731, + "rtt_ns": 1296458, + "rtt_ms": 1.296458, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.726391146Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:01:59.281778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983824, - "rtt_ms": 1.983824, + "rtt_ns": 1412292, + "rtt_ms": 1.412292, "checkpoint": 0, "vertex_from": "401", "vertex_to": "873", - "timestamp": "2025-11-27T01:22:00.726391606Z" + "timestamp": "2025-11-27T04:01:59.281778-08:00" }, { "operation": "add_edge", - "rtt_ns": 2441162, - "rtt_ms": 2.441162, + "rtt_ns": 1810917, + "rtt_ms": 1.810917, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.726885304Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:01:59.281791-08:00" }, { "operation": "add_edge", - "rtt_ns": 3303709, - "rtt_ms": 3.303709, + "rtt_ns": 1588125, + "rtt_ms": 1.588125, "checkpoint": 0, "vertex_from": "401", "vertex_to": "457", - "timestamp": "2025-11-27T01:22:00.726973764Z" + "timestamp": "2025-11-27T04:01:59.281804-08:00" }, { "operation": "add_edge", - "rtt_ns": 2372992, - "rtt_ms": 2.372992, + "rtt_ns": 1609792, + "rtt_ms": 1.609792, "checkpoint": 0, "vertex_from": "401", - "vertex_to": "844", - "timestamp": "2025-11-27T01:22:00.726973854Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.281809-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514275, - "rtt_ms": 1.514275, + "rtt_ns": 1395166, + "rtt_ms": 1.395166, "checkpoint": 0, "vertex_from": "402", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.727012594Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.281892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382936, - "rtt_ms": 1.382936, + "rtt_ns": 1574667, + "rtt_ms": 1.574667, "checkpoint": 0, - "vertex_from": "402", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.727019384Z" + "vertex_from": "401", + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:59.281972-08:00" }, { "operation": "add_edge", - "rtt_ns": 735688, - "rtt_ms": 0.735688, + "rtt_ns": 1671042, + "rtt_ms": 1.671042, "checkpoint": 0, "vertex_from": "402", - "vertex_to": "793", - "timestamp": "2025-11-27T01:22:00.727041504Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.282167-08:00" }, { "operation": "add_edge", - "rtt_ns": 816848, - "rtt_ms": 0.816848, + "rtt_ns": 1119334, + "rtt_ms": 1.119334, "checkpoint": 0, - "vertex_from": "402", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.727052294Z" + "vertex_from": "404", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.283287-08:00" }, { "operation": "add_edge", - "rtt_ns": 838487, - "rtt_ms": 0.838487, + "rtt_ns": 1493708, + "rtt_ms": 1.493708, "checkpoint": 0, - "vertex_from": "402", - "vertex_to": "483", - "timestamp": "2025-11-27T01:22:00.727211923Z" + "vertex_from": "404", + "vertex_to": "707", + "timestamp": "2025-11-27T04:01:59.283303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1266636, - "rtt_ms": 1.266636, + "rtt_ns": 1526834, + "rtt_ms": 1.526834, "checkpoint": 0, "vertex_from": "403", "vertex_to": "789", - "timestamp": "2025-11-27T01:22:00.727659482Z" + "timestamp": "2025-11-27T04:01:59.283319-08:00" }, { "operation": "add_edge", - "rtt_ns": 1312956, - "rtt_ms": 1.312956, + "rtt_ns": 1430833, + "rtt_ms": 1.430833, "checkpoint": 0, - "vertex_from": "402", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.727705132Z" + "vertex_from": "404", + "vertex_to": "542", + "timestamp": "2025-11-27T04:01:59.283326-08:00" }, { "operation": "add_edge", - "rtt_ns": 889297, - "rtt_ms": 0.889297, + "rtt_ns": 1545583, + "rtt_ms": 1.545583, "checkpoint": 0, - "vertex_from": "403", - "vertex_to": "456", - "timestamp": "2025-11-27T01:22:00.727776831Z" + "vertex_from": "402", + "vertex_to": "793", + "timestamp": "2025-11-27T04:01:59.283326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1596255, - "rtt_ms": 1.596255, + "rtt_ns": 1670208, + "rtt_ms": 1.670208, "checkpoint": 0, - "vertex_from": "404", - "vertex_to": "707", - "timestamp": "2025-11-27T01:22:00.728571479Z" + "vertex_from": "402", + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:59.283451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1632185, - "rtt_ms": 1.632185, + "rtt_ns": 1692958, + "rtt_ms": 1.692958, "checkpoint": 0, - "vertex_from": "404", - "vertex_to": "542", - "timestamp": "2025-11-27T01:22:00.728608439Z" + "vertex_from": "402", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.283466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693544, - "rtt_ms": 1.693544, + "rtt_ns": 1498958, + "rtt_ms": 1.498958, "checkpoint": 0, "vertex_from": "404", "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.728706878Z" + "timestamp": "2025-11-27T04:01:59.283472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691224, - "rtt_ms": 1.691224, + "rtt_ns": 1672000, + "rtt_ms": 1.672, "checkpoint": 0, - "vertex_from": "405", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.728745208Z" + "vertex_from": "403", + "vertex_to": "456", + "timestamp": "2025-11-27T04:01:59.283477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724754, - "rtt_ms": 1.724754, + "rtt_ns": 1503583, + "rtt_ms": 1.503583, "checkpoint": 0, - "vertex_from": "404", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.728745238Z" + "vertex_from": "405", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.284808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047616, - "rtt_ms": 1.047616, + "rtt_ns": 1757875, + "rtt_ms": 1.757875, "checkpoint": 0, "vertex_from": "406", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.728753538Z" + "timestamp": "2025-11-27T04:01:59.285085-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560835, - "rtt_ms": 1.560835, + "rtt_ns": 1776167, + "rtt_ms": 1.776167, "checkpoint": 0, - "vertex_from": "405", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.728774108Z" + "vertex_from": "406", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:59.285103-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113956, - "rtt_ms": 1.113956, + "rtt_ns": 1674833, + "rtt_ms": 1.674833, "checkpoint": 0, - "vertex_from": "406", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.728774908Z" + "vertex_from": "408", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.285152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1745264, - "rtt_ms": 1.745264, + "rtt_ns": 1881000, + "rtt_ms": 1.881, "checkpoint": 0, "vertex_from": "404", "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.728788018Z" + "timestamp": "2025-11-27T04:01:59.285169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1017666, - "rtt_ms": 1.017666, + "rtt_ns": 1955958, + "rtt_ms": 1.955958, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "597", - "timestamp": "2025-11-27T01:22:00.729627265Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:59.285422-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940964, - "rtt_ms": 1.940964, + "rtt_ns": 2127625, + "rtt_ms": 2.127625, "checkpoint": 0, - "vertex_from": "408", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.729718655Z" + "vertex_from": "405", + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.285447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1212236, - "rtt_ms": 1.212236, + "rtt_ns": 2099416, + "rtt_ms": 2.099416, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "452", - "timestamp": "2025-11-27T01:22:00.729784645Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.285552-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742064, - "rtt_ms": 1.742064, + "rtt_ns": 2147750, + "rtt_ms": 2.14775, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.730517672Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:01:59.285621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1789474, - "rtt_ms": 1.789474, + "rtt_ns": 4027125, + "rtt_ms": 4.027125, "checkpoint": 0, - "vertex_from": "408", - "vertex_to": "744", - "timestamp": "2025-11-27T01:22:00.730535682Z" + "vertex_from": "402", + "vertex_to": "483", + "timestamp": "2025-11-27T04:01:59.285808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1829364, - "rtt_ms": 1.829364, + "rtt_ns": 1596709, + "rtt_ms": 1.596709, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.730537192Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:01:59.286406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1814524, - "rtt_ms": 1.814524, + "rtt_ns": 1258000, + "rtt_ms": 1.258, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.730568762Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:59.286428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825884, - "rtt_ms": 1.825884, + "rtt_ns": 1292375, + "rtt_ms": 1.292375, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "901", - "timestamp": "2025-11-27T01:22:00.730573342Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:59.286845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828624, - "rtt_ms": 1.828624, + "rtt_ns": 1782792, + "rtt_ms": 1.782792, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.730604482Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.286886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1816314, - "rtt_ms": 1.816314, + "rtt_ns": 1489125, + "rtt_ms": 1.489125, "checkpoint": 0, "vertex_from": "408", "vertex_to": "523", - "timestamp": "2025-11-27T01:22:00.730605562Z" + "timestamp": "2025-11-27T04:01:59.286913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773334, - "rtt_ms": 1.773334, + "rtt_ns": 1476750, + "rtt_ms": 1.47675, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.731492889Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.286924-08:00" }, { "operation": "add_edge", - "rtt_ns": 1898514, - "rtt_ms": 1.898514, + "rtt_ns": 1797458, + "rtt_ms": 1.797458, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.731526629Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:01:59.28695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779854, - "rtt_ms": 1.779854, + "rtt_ns": 1928291, + "rtt_ms": 1.928291, "checkpoint": 0, "vertex_from": "408", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.731565259Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:01:59.287014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1133116, - "rtt_ms": 1.133116, + "rtt_ns": 1263000, + "rtt_ms": 1.263, "checkpoint": 0, "vertex_from": "409", - "vertex_to": "850", - "timestamp": "2025-11-27T01:22:00.731669878Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.287072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653895, - "rtt_ms": 1.653895, + "rtt_ns": 1667375, + "rtt_ms": 1.667375, "checkpoint": 0, - "vertex_from": "410", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.732228217Z" + "vertex_from": "408", + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.287289-08:00" }, { "operation": "add_edge", - "rtt_ns": 1815774, - "rtt_ms": 1.815774, + "rtt_ns": 1634666, + "rtt_ms": 1.634666, "checkpoint": 0, "vertex_from": "409", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.732334496Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.288063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765144, - "rtt_ms": 1.765144, + "rtt_ns": 1815583, + "rtt_ms": 1.815583, "checkpoint": 0, "vertex_from": "409", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.732334976Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:01:59.288223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1839144, - "rtt_ms": 1.839144, + "rtt_ns": 1480833, + "rtt_ms": 1.480833, "checkpoint": 0, - "vertex_from": "409", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.732377066Z" + "vertex_from": "410", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.288368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793714, - "rtt_ms": 1.793714, + "rtt_ns": 1527500, + "rtt_ms": 1.5275, "checkpoint": 0, "vertex_from": "410", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.732400686Z" + "timestamp": "2025-11-27T04:01:59.288453-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810274, - "rtt_ms": 1.810274, + "rtt_ns": 1630166, + "rtt_ms": 1.630166, "checkpoint": 0, - "vertex_from": "410", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.732415776Z" + "vertex_from": "411", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.288582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674455, - "rtt_ms": 1.674455, + "rtt_ns": 1752667, + "rtt_ms": 1.752667, "checkpoint": 0, - "vertex_from": "411", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.733201644Z" + "vertex_from": "409", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.288598-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1309084, + "rtt_ms": 1.309084, + "checkpoint": 0, + "vertex_from": "412", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.288599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1876024, - "rtt_ms": 1.876024, + "rtt_ns": 1598208, + "rtt_ms": 1.598208, "checkpoint": 0, "vertex_from": "412", "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.733442313Z" + "timestamp": "2025-11-27T04:01:59.288671-08:00" }, { "operation": "add_edge", - "rtt_ns": 1975344, - "rtt_ms": 1.975344, + "rtt_ns": 1779875, + "rtt_ms": 1.779875, "checkpoint": 0, "vertex_from": "411", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.733469953Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.288794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806025, - "rtt_ms": 1.806025, + "rtt_ns": 2264000, + "rtt_ms": 2.264, "checkpoint": 0, - "vertex_from": "412", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.733477023Z" + "vertex_from": "410", + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.289178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628824, - "rtt_ms": 1.628824, + "rtt_ns": 1509500, + "rtt_ms": 1.5095, "checkpoint": 0, - "vertex_from": "413", - "vertex_to": "753", - "timestamp": "2025-11-27T01:22:00.733858081Z" + "vertex_from": "416", + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.290109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1577055, - "rtt_ms": 1.577055, + "rtt_ns": 1793916, + "rtt_ms": 1.793916, "checkpoint": 0, "vertex_from": "414", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.733954811Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:59.290172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658205, - "rtt_ms": 1.658205, + "rtt_ns": 1723541, + "rtt_ms": 1.723541, "checkpoint": 0, "vertex_from": "414", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.733994141Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.290177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1680605, - "rtt_ms": 1.680605, + "rtt_ns": 1967834, + "rtt_ms": 1.967834, "checkpoint": 0, "vertex_from": "413", "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.734016821Z" + "timestamp": "2025-11-27T04:01:59.290192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638705, - "rtt_ms": 1.638705, + "rtt_ns": 1599541, + "rtt_ms": 1.599541, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.734040451Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:59.290271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642065, - "rtt_ms": 1.642065, + "rtt_ns": 1504292, + "rtt_ms": 1.504292, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.734058621Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:59.290299-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335715, - "rtt_ms": 1.335715, + "rtt_ns": 1138750, + "rtt_ms": 1.13875, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.734539029Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.290318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243816, - "rtt_ms": 1.243816, + "rtt_ns": 1738416, + "rtt_ms": 1.738416, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "549", - "timestamp": "2025-11-27T01:22:00.734716039Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:59.290322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309786, - "rtt_ms": 1.309786, + "rtt_ns": 1837417, + "rtt_ms": 1.837417, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.734788699Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:59.290437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1369515, - "rtt_ms": 1.369515, + "rtt_ns": 2389375, + "rtt_ms": 2.389375, "checkpoint": 0, - "vertex_from": "416", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.734813718Z" + "vertex_from": "413", + "vertex_to": "753", + "timestamp": "2025-11-27T04:01:59.290454-08:00" }, { "operation": "add_edge", - "rtt_ns": 910987, - "rtt_ms": 0.910987, + "rtt_ns": 984792, + "rtt_ms": 0.984792, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.734866918Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.291256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067247, - "rtt_ms": 1.067247, + "rtt_ns": 1199959, + "rtt_ms": 1.199959, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.734926158Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.291393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500465, - "rtt_ms": 1.500465, + "rtt_ns": 1298209, + "rtt_ms": 1.298209, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.735541706Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:01:59.291472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525925, - "rtt_ms": 1.525925, + "rtt_ns": 1302750, + "rtt_ms": 1.30275, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.735543536Z" + "vertex_to": "854", + "timestamp": "2025-11-27T04:01:59.291482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520825, - "rtt_ms": 1.520825, + "rtt_ns": 1399375, + "rtt_ms": 1.399375, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.735581266Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.291511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1599895, - "rtt_ms": 1.599895, + "rtt_ns": 1219334, + "rtt_ms": 1.219334, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "854", - "timestamp": "2025-11-27T01:22:00.735595086Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.291519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498366, - "rtt_ms": 1.498366, + "rtt_ns": 1212375, + "rtt_ms": 1.212375, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "418", - "timestamp": "2025-11-27T01:22:00.736038755Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.291535-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391345, - "rtt_ms": 1.391345, + "rtt_ns": 1478167, + "rtt_ms": 1.478167, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.736108334Z" + "vertex_to": "418", + "timestamp": "2025-11-27T04:01:59.291797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677805, - "rtt_ms": 1.677805, + "rtt_ns": 1153208, + "rtt_ms": 1.153208, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.737222131Z" + "vertex_to": "464", + "timestamp": "2025-11-27T04:01:59.292411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724815, - "rtt_ms": 1.724815, + "rtt_ns": 1526917, + "rtt_ms": 1.526917, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "523", - "timestamp": "2025-11-27T01:22:00.737306941Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:59.292921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764275, - "rtt_ms": 1.764275, + "rtt_ns": 2481208, + "rtt_ms": 2.481208, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "519", - "timestamp": "2025-11-27T01:22:00.737307201Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:01:59.292935-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539132, - "rtt_ms": 2.539132, + "rtt_ns": 1138791, + "rtt_ms": 1.138791, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "464", - "timestamp": "2025-11-27T01:22:00.73740731Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.292936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1901284, - "rtt_ms": 1.901284, + "rtt_ns": 1517833, + "rtt_ms": 1.517833, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.73749713Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:59.292992-08:00" }, { "operation": "add_edge", - "rtt_ns": 2675502, - "rtt_ms": 2.675502, + "rtt_ns": 1477417, + "rtt_ms": 1.477417, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.73760258Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.292998-08:00" }, { "operation": "add_edge", - "rtt_ns": 2855020, - "rtt_ms": 2.85502, + "rtt_ns": 1541542, + "rtt_ms": 1.541542, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "718", - "timestamp": "2025-11-27T01:22:00.737644989Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.293024-08:00" }, { "operation": "add_edge", - "rtt_ns": 2871491, - "rtt_ms": 2.871491, + "rtt_ns": 1544458, + "rtt_ms": 1.544458, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.737686089Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:01:59.293058-08:00" }, { "operation": "add_edge", - "rtt_ns": 2206653, - "rtt_ms": 2.206653, + "rtt_ns": 1541666, + "rtt_ms": 1.541666, "checkpoint": 0, "vertex_from": "416", "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.738247648Z" + "timestamp": "2025-11-27T04:01:59.293078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1086516, - "rtt_ms": 1.086516, + "rtt_ns": 2666417, + "rtt_ms": 2.666417, "checkpoint": 0, "vertex_from": "416", - "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.738310127Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:01:59.293105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1037336, - "rtt_ms": 1.037336, + "rtt_ns": 1003792, + "rtt_ms": 1.003792, "checkpoint": 0, - "vertex_from": "417", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.738346277Z" + "vertex_from": "416", + "vertex_to": "833", + "timestamp": "2025-11-27T04:01:59.293417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051436, - "rtt_ms": 1.051436, + "rtt_ns": 1239000, + "rtt_ms": 1.239, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.738360557Z" - }, - { - "operation": "add_edge", - "rtt_ns": 2262583, - "rtt_ms": 2.262583, - "checkpoint": 0, - "vertex_from": "416", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.738372027Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.294344-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277296, - "rtt_ms": 1.277296, + "rtt_ns": 1631459, + "rtt_ms": 1.631459, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "664", - "timestamp": "2025-11-27T01:22:00.738686206Z" + "vertex_to": "749", + "timestamp": "2025-11-27T04:01:59.294631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066537, - "rtt_ms": 1.066537, + "rtt_ns": 1714750, + "rtt_ms": 1.71475, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "676", - "timestamp": "2025-11-27T01:22:00.738712576Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:59.294651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252936, - "rtt_ms": 1.252936, + "rtt_ns": 1726916, + "rtt_ms": 1.726916, "checkpoint": 0, "vertex_from": "417", "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.738751226Z" + "timestamp": "2025-11-27T04:01:59.29472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243326, - "rtt_ms": 1.243326, + "rtt_ns": 1809583, + "rtt_ms": 1.809583, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "749", - "timestamp": "2025-11-27T01:22:00.738847016Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.294733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175057, - "rtt_ms": 1.175057, + "rtt_ns": 1779208, + "rtt_ms": 1.779208, "checkpoint": 0, "vertex_from": "417", "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.738861956Z" + "timestamp": "2025-11-27T04:01:59.294838-08:00" }, { "operation": "add_edge", - "rtt_ns": 656627, - "rtt_ms": 0.656627, + "rtt_ns": 1848667, + "rtt_ms": 1.848667, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.738905315Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:01:59.294874-08:00" }, { "operation": "add_edge", - "rtt_ns": 977897, - "rtt_ms": 0.977897, + "rtt_ns": 1461750, + "rtt_ms": 1.46175, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.739288924Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:59.29488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083897, - "rtt_ms": 1.083897, + "rtt_ns": 1967958, + "rtt_ms": 1.967958, "checkpoint": 0, "vertex_from": "417", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.739431124Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:01:59.294905-08:00" }, { "operation": "add_edge", - "rtt_ns": 746108, - "rtt_ms": 0.746108, + "rtt_ns": 1856917, + "rtt_ms": 1.856917, "checkpoint": 0, - "vertex_from": "418", - "vertex_to": "841", - "timestamp": "2025-11-27T01:22:00.739433684Z" + "vertex_from": "417", + "vertex_to": "586", + "timestamp": "2025-11-27T04:01:59.294935-08:00" }, { "operation": "add_edge", - "rtt_ns": 1116257, - "rtt_ms": 1.116257, + "rtt_ns": 1061500, + "rtt_ms": 1.0615, "checkpoint": 0, "vertex_from": "417", "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.739477524Z" + "timestamp": "2025-11-27T04:01:59.295407-08:00" }, { "operation": "add_edge", - "rtt_ns": 830327, - "rtt_ms": 0.830327, + "rtt_ns": 1129000, + "rtt_ms": 1.129, "checkpoint": 0, "vertex_from": "418", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.739543953Z" + "vertex_to": "841", + "timestamp": "2025-11-27T04:01:59.295785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178176, - "rtt_ms": 1.178176, + "rtt_ns": 1224750, + "rtt_ms": 1.22475, "checkpoint": 0, "vertex_from": "418", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.739551483Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.295945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1025447, - "rtt_ms": 1.025447, + "rtt_ns": 1370917, + "rtt_ms": 1.370917, "checkpoint": 0, "vertex_from": "418", "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.739777433Z" + "timestamp": "2025-11-27T04:01:59.296104-08:00" }, { "operation": "add_edge", - "rtt_ns": 951997, - "rtt_ms": 0.951997, + "rtt_ns": 1615291, + "rtt_ms": 1.615291, "checkpoint": 0, - "vertex_from": "419", - "vertex_to": "448", - "timestamp": "2025-11-27T01:22:00.739858322Z" + "vertex_from": "420", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.296553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1009566, - "rtt_ms": 1.009566, + "rtt_ns": 1779375, + "rtt_ms": 1.779375, "checkpoint": 0, "vertex_from": "419", "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.739872612Z" + "timestamp": "2025-11-27T04:01:59.296654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1403135, - "rtt_ms": 1.403135, + "rtt_ns": 1823291, + "rtt_ms": 1.823291, "checkpoint": 0, "vertex_from": "419", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.740251071Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:59.296704-08:00" }, { "operation": "add_edge", - "rtt_ns": 807378, - "rtt_ms": 0.807378, + "rtt_ns": 1881625, + "rtt_ms": 1.881625, "checkpoint": 0, - "vertex_from": "420", - "vertex_to": "541", - "timestamp": "2025-11-27T01:22:00.740352341Z" + "vertex_from": "419", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.296721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1021866, - "rtt_ms": 1.021866, + "rtt_ns": 2128750, + "rtt_ms": 2.12875, "checkpoint": 0, - "vertex_from": "420", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.74045706Z" + "vertex_from": "418", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.296761-08:00" }, { - "operation": "add_edge", - "rtt_ns": 998326, - "rtt_ms": 0.998326, + "operation": "add_vertex", + "rtt_ns": 2117333, + "rtt_ms": 2.117333, "checkpoint": 0, - "vertex_from": "420", - "vertex_to": "588", - "timestamp": "2025-11-27T01:22:00.74047706Z" + "vertex_from": "734", + "timestamp": "2025-11-27T04:01:59.297026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104396, - "rtt_ms": 1.104396, + "rtt_ns": 1636250, + "rtt_ms": 1.63625, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.7405368Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1457095, - "rtt_ms": 1.457095, - "checkpoint": 0, - "vertex_from": "734", - "timestamp": "2025-11-27T01:22:00.740748779Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.297044-08:00" }, { "operation": "add_edge", - "rtt_ns": 658878, - "rtt_ms": 0.658878, + "rtt_ns": 1963250, + "rtt_ms": 1.96325, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.740911829Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:59.297749-08:00" }, { "operation": "add_edge", - "rtt_ns": 560518, - "rtt_ms": 0.560518, + "rtt_ns": 2251042, + "rtt_ms": 2.251042, "checkpoint": 0, - "vertex_from": "421", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.740913899Z" + "vertex_from": "420", + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.298356-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1158996, - "rtt_ms": 1.158996, + "operation": "add_vertex", + "rtt_ns": 1429833, + "rtt_ms": 1.429833, "checkpoint": 0, - "vertex_from": "420", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.740937399Z" + "vertex_from": "502", + "timestamp": "2025-11-27T04:01:59.298474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1342586, - "rtt_ms": 1.342586, + "rtt_ns": 1449000, + "rtt_ms": 1.449, "checkpoint": 0, - "vertex_from": "420", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.741202088Z" + "vertex_from": "419", + "vertex_to": "734", + "timestamp": "2025-11-27T04:01:59.298475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649305, - "rtt_ms": 1.649305, + "rtt_ns": 1865042, + "rtt_ms": 1.865042, "checkpoint": 0, "vertex_from": "420", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.741202268Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.29852-08:00" }, { "operation": "add_edge", - "rtt_ns": 736578, - "rtt_ms": 0.736578, + "rtt_ns": 1869625, + "rtt_ms": 1.869625, "checkpoint": 0, - "vertex_from": "421", + "vertex_from": "420", "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.741214388Z" + "timestamp": "2025-11-27T04:01:59.298592-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 787238, - "rtt_ms": 0.787238, + "operation": "add_edge", + "rtt_ns": 2708333, + "rtt_ms": 2.708333, "checkpoint": 0, - "vertex_from": "502", - "timestamp": "2025-11-27T01:22:00.741246688Z" + "vertex_from": "420", + "vertex_to": "541", + "timestamp": "2025-11-27T04:01:59.298655-08:00" }, { "operation": "add_edge", - "rtt_ns": 518069, - "rtt_ms": 0.518069, + "rtt_ns": 1895875, + "rtt_ms": 1.895875, "checkpoint": 0, - "vertex_from": "419", - "vertex_to": "734", - "timestamp": "2025-11-27T01:22:00.741267168Z" + "vertex_from": "421", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.298658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1394296, - "rtt_ms": 1.394296, + "rtt_ns": 2254125, + "rtt_ms": 2.254125, "checkpoint": 0, "vertex_from": "420", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.741267598Z" - }, - { - "operation": "add_edge", - "rtt_ns": 746108, - "rtt_ms": 0.746108, - "checkpoint": 0, - "vertex_from": "421", - "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.741283868Z" + "timestamp": "2025-11-27T04:01:59.298961-08:00" }, { "operation": "add_edge", - "rtt_ns": 625228, - "rtt_ms": 0.625228, + "rtt_ns": 1227292, + "rtt_ms": 1.227292, "checkpoint": 0, "vertex_from": "421", - "vertex_to": "448", - "timestamp": "2025-11-27T01:22:00.741537667Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.298977-08:00" }, { "operation": "add_edge", - "rtt_ns": 624188, - "rtt_ms": 0.624188, + "rtt_ns": 2520917, + "rtt_ms": 2.520917, "checkpoint": 0, - "vertex_from": "422", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.741562837Z" + "vertex_from": "420", + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:59.299075-08:00" }, { "operation": "add_edge", - "rtt_ns": 661368, - "rtt_ms": 0.661368, + "rtt_ns": 1041416, + "rtt_ms": 1.041416, "checkpoint": 0, "vertex_from": "421", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.741576247Z" + "vertex_to": "448", + "timestamp": "2025-11-27T04:01:59.299517-08:00" }, { "operation": "add_edge", - "rtt_ns": 545958, - "rtt_ms": 0.545958, + "rtt_ns": 1349084, + "rtt_ms": 1.349084, "checkpoint": 0, "vertex_from": "421", - "vertex_to": "502", - "timestamp": "2025-11-27T01:22:00.741792956Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:01:59.299706-08:00" }, { "operation": "add_edge", - "rtt_ns": 660728, - "rtt_ms": 0.660728, + "rtt_ns": 1811000, + "rtt_ms": 1.811, "checkpoint": 0, "vertex_from": "422", "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.741863736Z" + "timestamp": "2025-11-27T04:01:59.300468-08:00" }, { "operation": "add_edge", - "rtt_ns": 662728, - "rtt_ms": 0.662728, + "rtt_ns": 1983875, + "rtt_ms": 1.983875, "checkpoint": 0, "vertex_from": "422", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.741878136Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:59.300577-08:00" }, { "operation": "add_edge", - "rtt_ns": 736627, - "rtt_ms": 0.736627, + "rtt_ns": 1979625, + "rtt_ms": 1.979625, "checkpoint": 0, "vertex_from": "422", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.741940005Z" + "timestamp": "2025-11-27T04:01:59.300639-08:00" }, { "operation": "add_edge", - "rtt_ns": 707877, - "rtt_ms": 0.707877, + "rtt_ns": 2215458, + "rtt_ms": 2.215458, "checkpoint": 0, - "vertex_from": "424", - "vertex_to": "519", - "timestamp": "2025-11-27T01:22:00.741992705Z" + "vertex_from": "421", + "vertex_to": "502", + "timestamp": "2025-11-27T04:01:59.30069-08:00" }, { "operation": "add_edge", - "rtt_ns": 756507, - "rtt_ms": 0.756507, + "rtt_ns": 1783667, + "rtt_ms": 1.783667, "checkpoint": 0, "vertex_from": "424", "vertex_to": "480", - "timestamp": "2025-11-27T01:22:00.742025075Z" + "timestamp": "2025-11-27T04:01:59.300762-08:00" }, { "operation": "add_edge", - "rtt_ns": 822507, - "rtt_ms": 0.822507, + "rtt_ns": 1396959, + "rtt_ms": 1.396959, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.742687203Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:01:59.301104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428845, - "rtt_ms": 1.428845, + "rtt_ns": 2132333, + "rtt_ms": 2.132333, "checkpoint": 0, "vertex_from": "424", "vertex_to": "604", - "timestamp": "2025-11-27T01:22:00.742697543Z" + "timestamp": "2025-11-27T04:01:59.301208-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2386750, + "rtt_ms": 2.38675, + "checkpoint": 0, + "vertex_from": "422", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.301348-08:00" }, { "operation": "add_edge", - "rtt_ns": 914187, - "rtt_ms": 0.914187, + "rtt_ns": 2500125, + "rtt_ms": 2.500125, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.742708123Z" + "vertex_to": "519", + "timestamp": "2025-11-27T04:01:59.30202-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271336, - "rtt_ms": 1.271336, + "rtt_ns": 1458917, + "rtt_ms": 1.458917, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.742809773Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.302039-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1388500, + "rtt_ms": 1.3885, + "checkpoint": 0, + "vertex_from": "425", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.302152-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346105, - "rtt_ms": 1.346105, + "rtt_ns": 1562750, + "rtt_ms": 1.56275, "checkpoint": 0, "vertex_from": "424", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.302202-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 3705791, + "rtt_ms": 3.705791, + "checkpoint": 0, + "vertex_from": "421", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.742909902Z" + "timestamp": "2025-11-27T04:01:59.302229-08:00" }, { "operation": "add_edge", - "rtt_ns": 1344665, - "rtt_ms": 1.344665, + "rtt_ns": 1883083, + "rtt_ms": 1.883083, "checkpoint": 0, "vertex_from": "424", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.742922742Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.302352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1643365, - "rtt_ms": 1.643365, + "rtt_ns": 1418458, + "rtt_ms": 1.418458, "checkpoint": 0, "vertex_from": "425", "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.74358422Z" + "timestamp": "2025-11-27T04:01:59.302524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607235, - "rtt_ms": 1.607235, + "rtt_ns": 1458959, + "rtt_ms": 1.458959, "checkpoint": 0, "vertex_from": "426", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.74360125Z" + "timestamp": "2025-11-27T04:01:59.302668-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729874, - "rtt_ms": 1.729874, + "rtt_ns": 1988917, + "rtt_ms": 1.988917, "checkpoint": 0, - "vertex_from": "425", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.74360959Z" + "vertex_from": "424", + "vertex_to": "561", + "timestamp": "2025-11-27T04:01:59.30268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669354, - "rtt_ms": 1.669354, + "rtt_ns": 1471542, + "rtt_ms": 1.471542, "checkpoint": 0, "vertex_from": "426", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.744368217Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.302821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1667964, - "rtt_ms": 1.667964, + "rtt_ns": 941667, + "rtt_ms": 0.941667, "checkpoint": 0, - "vertex_from": "427", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.744479487Z" + "vertex_from": "426", + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:59.302963-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571435, - "rtt_ms": 1.571435, + "rtt_ns": 1137209, + "rtt_ms": 1.137209, "checkpoint": 0, - "vertex_from": "428", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.744482367Z" + "vertex_from": "427", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.303292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1581645, - "rtt_ms": 1.581645, + "rtt_ns": 1911166, + "rtt_ms": 1.911166, "checkpoint": 0, "vertex_from": "428", - "vertex_to": "614", - "timestamp": "2025-11-27T01:22:00.744505957Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.304142-08:00" }, { "operation": "add_edge", - "rtt_ns": 961567, - "rtt_ms": 0.961567, + "rtt_ns": 1804042, + "rtt_ms": 1.804042, "checkpoint": 0, "vertex_from": "428", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.744548047Z" + "vertex_to": "614", + "timestamp": "2025-11-27T04:01:59.304158-08:00" }, { "operation": "add_edge", - "rtt_ns": 1884234, - "rtt_ms": 1.884234, + "rtt_ns": 1297416, + "rtt_ms": 1.297416, "checkpoint": 0, - "vertex_from": "426", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.744577357Z" + "vertex_from": "430", + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:59.304262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1879984, - "rtt_ms": 1.879984, + "rtt_ns": 1605625, + "rtt_ms": 1.605625, "checkpoint": 0, - "vertex_from": "427", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.744589307Z" + "vertex_from": "428", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.304276-08:00" }, { "operation": "add_edge", - "rtt_ns": 2672101, - "rtt_ms": 2.672101, + "rtt_ns": 2262750, + "rtt_ms": 2.26275, "checkpoint": 0, "vertex_from": "426", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.744699686Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.304303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161706, - "rtt_ms": 1.161706, + "rtt_ns": 1642917, + "rtt_ms": 1.642917, "checkpoint": 0, "vertex_from": "429", "vertex_to": "540", - "timestamp": "2025-11-27T01:22:00.744773186Z" + "timestamp": "2025-11-27T04:01:59.304324-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638785, - "rtt_ms": 1.638785, + "rtt_ns": 1574750, + "rtt_ms": 1.57475, "checkpoint": 0, - "vertex_from": "428", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.745241535Z" + "vertex_from": "430", + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.304396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1318666, - "rtt_ms": 1.318666, + "rtt_ns": 1970541, + "rtt_ms": 1.970541, "checkpoint": 0, - "vertex_from": "430", - "vertex_to": "616", - "timestamp": "2025-11-27T01:22:00.745799473Z" + "vertex_from": "428", + "vertex_to": "673", + "timestamp": "2025-11-27T04:01:59.304496-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338746, - "rtt_ms": 1.338746, + "rtt_ns": 2329167, + "rtt_ms": 2.329167, "checkpoint": 0, - "vertex_from": "432", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.745846813Z" + "vertex_from": "427", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.304532-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327306, - "rtt_ms": 1.327306, + "rtt_ns": 1099417, + "rtt_ms": 1.099417, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "454", - "timestamp": "2025-11-27T01:22:00.745876703Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:59.305633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1316386, - "rtt_ms": 1.316386, + "rtt_ns": 1314666, + "rtt_ms": 1.314666, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.745906553Z" + "vertex_to": "825", + "timestamp": "2025-11-27T04:01:59.30564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566575, - "rtt_ms": 1.566575, + "rtt_ns": 2612791, + "rtt_ms": 2.612791, "checkpoint": 0, - "vertex_from": "430", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.745937082Z" + "vertex_from": "432", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.305906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501125, - "rtt_ms": 1.501125, + "rtt_ns": 1768792, + "rtt_ms": 1.768792, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.745984722Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.305912-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466235, - "rtt_ms": 1.466235, + "rtt_ns": 1677584, + "rtt_ms": 1.677584, "checkpoint": 0, "vertex_from": "432", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.746044482Z" + "timestamp": "2025-11-27T04:01:59.305942-08:00" }, { "operation": "add_edge", - "rtt_ns": 1291096, - "rtt_ms": 1.291096, + "rtt_ns": 1639083, + "rtt_ms": 1.639083, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "825", - "timestamp": "2025-11-27T01:22:00.746065772Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.305943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1401716, - "rtt_ms": 1.401716, + "rtt_ns": 1143292, + "rtt_ms": 1.143292, "checkpoint": 0, - "vertex_from": "432", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.746102252Z" + "vertex_from": "433", + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.307088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739874, - "rtt_ms": 1.739874, + "rtt_ns": 1202208, + "rtt_ms": 1.202208, "checkpoint": 0, - "vertex_from": "432", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.746982749Z" + "vertex_from": "433", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.307109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1371735, - "rtt_ms": 1.371735, + "rtt_ns": 3076292, + "rtt_ms": 3.076292, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.747219268Z" + "vertex_to": "454", + "timestamp": "2025-11-27T04:01:59.307235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434215, - "rtt_ms": 1.434215, + "rtt_ns": 1342083, + "rtt_ms": 1.342083, "checkpoint": 0, - "vertex_from": "432", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.747234958Z" + "vertex_from": "433", + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:59.307256-08:00" }, { "operation": "add_edge", - "rtt_ns": 2059403, - "rtt_ms": 2.059403, + "rtt_ns": 1317875, + "rtt_ms": 1.317875, "checkpoint": 0, - "vertex_from": "432", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.747937156Z" + "vertex_from": "433", + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.307261-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052793, - "rtt_ms": 2.052793, + "rtt_ns": 3199000, + "rtt_ms": 3.199, "checkpoint": 0, "vertex_from": "432", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.747960316Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.307476-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927334, - "rtt_ms": 1.927334, + "rtt_ns": 1858833, + "rtt_ms": 1.858833, "checkpoint": 0, - "vertex_from": "433", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.747972646Z" + "vertex_from": "432", + "vertex_to": "578", + "timestamp": "2025-11-27T04:01:59.307493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2101204, - "rtt_ms": 2.101204, + "rtt_ns": 3111542, + "rtt_ms": 3.111542, "checkpoint": 0, - "vertex_from": "433", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.748039536Z" + "vertex_from": "432", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.307508-08:00" }, { "operation": "add_edge", - "rtt_ns": 2100854, - "rtt_ms": 2.100854, + "rtt_ns": 2471083, + "rtt_ms": 2.471083, "checkpoint": 0, - "vertex_from": "433", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.748086346Z" + "vertex_from": "432", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.308112-08:00" }, { "operation": "add_edge", - "rtt_ns": 2188083, - "rtt_ms": 2.188083, + "rtt_ns": 3627750, + "rtt_ms": 3.62775, "checkpoint": 0, - "vertex_from": "433", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.748254615Z" + "vertex_from": "432", + "vertex_to": "832", + "timestamp": "2025-11-27T04:01:59.308126-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410226, - "rtt_ms": 1.410226, + "rtt_ns": 1124250, + "rtt_ms": 1.12425, "checkpoint": 0, - "vertex_from": "434", - "vertex_to": "621", - "timestamp": "2025-11-27T01:22:00.748394205Z" + "vertex_from": "438", + "vertex_to": "706", + "timestamp": "2025-11-27T04:01:59.308633-08:00" }, { "operation": "add_edge", - "rtt_ns": 2366982, - "rtt_ms": 2.366982, + "rtt_ns": 1414292, + "rtt_ms": 1.414292, "checkpoint": 0, "vertex_from": "434", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.748470514Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.308651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176876, - "rtt_ms": 1.176876, + "rtt_ns": 1653417, + "rtt_ms": 1.653417, "checkpoint": 0, - "vertex_from": "438", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.749150412Z" + "vertex_from": "434", + "vertex_to": "897", + "timestamp": "2025-11-27T04:01:59.308742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1129836, - "rtt_ms": 1.129836, + "rtt_ns": 1673333, + "rtt_ms": 1.673333, "checkpoint": 0, - "vertex_from": "438", - "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.749170662Z" + "vertex_from": "434", + "vertex_to": "621", + "timestamp": "2025-11-27T04:01:59.308783-08:00" }, { "operation": "add_edge", - "rtt_ns": 1302986, - "rtt_ms": 1.302986, + "rtt_ns": 1529709, + "rtt_ms": 1.529709, "checkpoint": 0, - "vertex_from": "437", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.749264622Z" + "vertex_from": "436", + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.308792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2106374, - "rtt_ms": 2.106374, + "rtt_ns": 1627375, + "rtt_ms": 1.627375, "checkpoint": 0, "vertex_from": "434", "vertex_to": "781", - "timestamp": "2025-11-27T01:22:00.749342372Z" + "timestamp": "2025-11-27T04:01:59.308884-08:00" }, { "operation": "add_edge", - "rtt_ns": 883848, - "rtt_ms": 0.883848, - "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.749355562Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 960967, - "rtt_ms": 0.960967, + "rtt_ns": 1446000, + "rtt_ms": 1.446, "checkpoint": 0, - "vertex_from": "446", - "timestamp": "2025-11-27T01:22:00.749357632Z" + "vertex_from": "437", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.308923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1325465, - "rtt_ms": 1.325465, + "rtt_ns": 1487291, + "rtt_ms": 1.487291, "checkpoint": 0, - "vertex_from": "440", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.749413111Z" + "vertex_from": "438", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.308981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1286686, - "rtt_ms": 1.286686, + "rtt_ns": 1496583, + "rtt_ms": 1.496583, "checkpoint": 0, "vertex_from": "442", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.749542831Z" + "timestamp": "2025-11-27T04:01:59.309626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2366543, - "rtt_ms": 2.366543, + "rtt_ns": 1423000, + "rtt_ms": 1.423, "checkpoint": 0, - "vertex_from": "434", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.749587021Z" + "vertex_from": "448", + "vertex_to": "668", + "timestamp": "2025-11-27T04:01:59.310209-08:00" }, { "operation": "add_edge", - "rtt_ns": 1727955, - "rtt_ms": 1.727955, + "rtt_ns": 1492875, + "rtt_ms": 1.492875, "checkpoint": 0, - "vertex_from": "436", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.749666521Z" + "vertex_from": "448", + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:59.310236-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1104777, - "rtt_ms": 1.104777, + "operation": "add_vertex", + "rtt_ns": 1620375, + "rtt_ms": 1.620375, "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.750256359Z" + "vertex_from": "446", + "timestamp": "2025-11-27T04:01:59.310257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1069677, - "rtt_ms": 1.069677, + "rtt_ns": 2263958, + "rtt_ms": 2.263958, "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.750335459Z" + "vertex_from": "440", + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.310377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177486, - "rtt_ms": 1.177486, + "rtt_ns": 1682292, + "rtt_ms": 1.682292, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "668", - "timestamp": "2025-11-27T01:22:00.750349608Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.310475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1457795, - "rtt_ms": 1.457795, + "rtt_ns": 1706958, + "rtt_ms": 1.706958, "checkpoint": 0, "vertex_from": "448", "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.750814067Z" + "timestamp": "2025-11-27T04:01:59.310631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515685, - "rtt_ms": 1.515685, + "rtt_ns": 1763417, + "rtt_ms": 1.763417, "checkpoint": 0, - "vertex_from": "446", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.750874097Z" + "vertex_from": "448", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.310649-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487656, - "rtt_ms": 1.487656, + "rtt_ns": 2014708, + "rtt_ms": 2.014708, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.750902147Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.310666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1841274, - "rtt_ms": 1.841274, + "rtt_ns": 1776917, + "rtt_ms": 1.776917, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.751429225Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.310758-08:00" }, { "operation": "add_edge", - "rtt_ns": 2288732, - "rtt_ms": 2.288732, + "rtt_ns": 1491375, + "rtt_ms": 1.491375, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.751632754Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.311118-08:00" }, { "operation": "add_edge", - "rtt_ns": 2105653, - "rtt_ms": 2.105653, + "rtt_ns": 1524333, + "rtt_ms": 1.524333, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.751649384Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:01:59.311736-08:00" }, { "operation": "add_edge", - "rtt_ns": 2057633, - "rtt_ms": 2.057633, + "rtt_ns": 1277959, + "rtt_ms": 1.277959, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.751725204Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.311755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1484635, - "rtt_ms": 1.484635, + "rtt_ns": 1771500, + "rtt_ms": 1.7715, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.751820864Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.312009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705824, - "rtt_ms": 1.705824, + "rtt_ns": 1651500, + "rtt_ms": 1.6515, "checkpoint": 0, "vertex_from": "448", "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.751963213Z" + "timestamp": "2025-11-27T04:01:59.31203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658695, - "rtt_ms": 1.658695, + "rtt_ns": 1388042, + "rtt_ms": 1.388042, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.752008983Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:01:59.312038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1181126, - "rtt_ms": 1.181126, + "rtt_ns": 1455084, + "rtt_ms": 1.455084, "checkpoint": 0, "vertex_from": "448", "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.752056743Z" + "timestamp": "2025-11-27T04:01:59.312122-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995984, - "rtt_ms": 1.995984, + "rtt_ns": 1509542, + "rtt_ms": 1.509542, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.752811141Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.312141-08:00" }, { "operation": "add_edge", - "rtt_ns": 1980173, - "rtt_ms": 1.980173, + "rtt_ns": 1257166, + "rtt_ms": 1.257166, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.75288345Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:01:59.312376-08:00" }, { "operation": "add_edge", - "rtt_ns": 2259383, - "rtt_ms": 2.259383, + "rtt_ns": 1802500, + "rtt_ms": 1.8025, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.753690028Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.312562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978994, - "rtt_ms": 1.978994, + "rtt_ns": 2354250, + "rtt_ms": 2.35425, "checkpoint": 0, - "vertex_from": "448", - "vertex_to": "568", - "timestamp": "2025-11-27T01:22:00.753705908Z" + "vertex_from": "446", + "vertex_to": "592", + "timestamp": "2025-11-27T04:01:59.312612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1894684, - "rtt_ms": 1.894684, + "rtt_ns": 1032042, + "rtt_ms": 1.032042, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.753716628Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:01:59.313042-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096894, - "rtt_ms": 2.096894, + "rtt_ns": 1463583, + "rtt_ms": 1.463583, "checkpoint": 0, "vertex_from": "448", "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.753730428Z" + "timestamp": "2025-11-27T04:01:59.313201-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767475, - "rtt_ms": 1.767475, + "rtt_ns": 1256125, + "rtt_ms": 1.256125, "checkpoint": 0, "vertex_from": "448", "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.753731658Z" + "timestamp": "2025-11-27T04:01:59.313296-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688805, - "rtt_ms": 1.688805, + "rtt_ns": 1595958, + "rtt_ms": 1.595958, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.753746568Z" + "vertex_to": "452", + "timestamp": "2025-11-27T04:01:59.313351-08:00" }, { "operation": "add_edge", - "rtt_ns": 2097064, - "rtt_ms": 2.097064, + "rtt_ns": 1213292, + "rtt_ms": 1.213292, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "452", - "timestamp": "2025-11-27T01:22:00.753748688Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.313355-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778065, - "rtt_ms": 1.778065, + "rtt_ns": 1412833, + "rtt_ms": 1.412833, "checkpoint": 0, "vertex_from": "448", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.753787698Z" + "timestamp": "2025-11-27T04:01:59.313536-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601495, - "rtt_ms": 1.601495, + "rtt_ns": 2264375, + "rtt_ms": 2.264375, "checkpoint": 0, "vertex_from": "448", - "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.754413806Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:01:59.314295-08:00" }, { "operation": "add_edge", - "rtt_ns": 1625085, - "rtt_ms": 1.625085, + "rtt_ns": 1749625, + "rtt_ms": 1.749625, "checkpoint": 0, "vertex_from": "448", "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.754509415Z" + "timestamp": "2025-11-27T04:01:59.314312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666995, - "rtt_ms": 1.666995, + "rtt_ns": 2044916, + "rtt_ms": 2.044916, "checkpoint": 0, "vertex_from": "449", "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.755358403Z" + "timestamp": "2025-11-27T04:01:59.314658-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2292625, + "rtt_ms": 2.292625, + "checkpoint": 0, + "vertex_from": "448", + "vertex_to": "708", + "timestamp": "2025-11-27T04:01:59.31467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700794, - "rtt_ms": 1.700794, + "rtt_ns": 1646292, + "rtt_ms": 1.646292, "checkpoint": 0, "vertex_from": "449", - "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.755447982Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:01:59.314692-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658964, - "rtt_ms": 1.658964, + "rtt_ns": 1497667, + "rtt_ms": 1.497667, "checkpoint": 0, "vertex_from": "449", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.755450672Z" + "vertex_to": "589", + "timestamp": "2025-11-27T04:01:59.314851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1740404, - "rtt_ms": 1.740404, + "rtt_ns": 1729625, + "rtt_ms": 1.729625, "checkpoint": 0, "vertex_from": "449", "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.755458382Z" + "timestamp": "2025-11-27T04:01:59.314932-08:00" }, { "operation": "add_edge", - "rtt_ns": 1731044, - "rtt_ms": 1.731044, + "rtt_ns": 1715542, + "rtt_ms": 1.715542, "checkpoint": 0, "vertex_from": "449", "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.755462032Z" + "timestamp": "2025-11-27T04:01:59.315014-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756204, - "rtt_ms": 1.756204, + "rtt_ns": 1700833, + "rtt_ms": 1.700833, "checkpoint": 0, "vertex_from": "449", - "vertex_to": "589", - "timestamp": "2025-11-27T01:22:00.755488692Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:59.315057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748344, - "rtt_ms": 1.748344, + "rtt_ns": 1540334, + "rtt_ms": 1.540334, "checkpoint": 0, "vertex_from": "449", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.755497672Z" + "timestamp": "2025-11-27T04:01:59.315077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096956, - "rtt_ms": 1.096956, + "rtt_ns": 1296916, + "rtt_ms": 1.296916, "checkpoint": 0, "vertex_from": "449", "vertex_to": "965", - "timestamp": "2025-11-27T01:22:00.755512502Z" + "timestamp": "2025-11-27T04:01:59.31561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1820274, - "rtt_ms": 1.820274, + "rtt_ns": 1514125, + "rtt_ms": 1.514125, "checkpoint": 0, "vertex_from": "449", - "vertex_to": "684", - "timestamp": "2025-11-27T01:22:00.755527162Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1814714, - "rtt_ms": 1.814714, - "checkpoint": 0, - "vertex_from": "450", - "vertex_to": "806", - "timestamp": "2025-11-27T01:22:00.756325699Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:01:59.31581-08:00" }, { "operation": "add_edge", - "rtt_ns": 982586, - "rtt_ms": 0.982586, + "rtt_ns": 1677167, + "rtt_ms": 1.677167, "checkpoint": 0, "vertex_from": "450", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.756342009Z" + "timestamp": "2025-11-27T04:01:59.316347-08:00" }, { "operation": "add_edge", - "rtt_ns": 903297, - "rtt_ms": 0.903297, + "rtt_ns": 1671041, + "rtt_ms": 1.671041, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "573", - "timestamp": "2025-11-27T01:22:00.756366619Z" + "vertex_to": "665", + "timestamp": "2025-11-27T04:01:59.316364-08:00" }, { "operation": "add_edge", - "rtt_ns": 972467, - "rtt_ms": 0.972467, + "rtt_ns": 1639458, + "rtt_ms": 1.639458, "checkpoint": 0, "vertex_from": "450", "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.756424139Z" + "timestamp": "2025-11-27T04:01:59.316491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613845, - "rtt_ms": 1.613845, + "rtt_ns": 1507875, + "rtt_ms": 1.507875, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "665", - "timestamp": "2025-11-27T01:22:00.757063177Z" + "vertex_to": "573", + "timestamp": "2025-11-27T04:01:59.316523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568465, - "rtt_ms": 1.568465, + "rtt_ns": 1555791, + "rtt_ms": 1.555791, "checkpoint": 0, "vertex_from": "450", "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.757066907Z" + "timestamp": "2025-11-27T04:01:59.316634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546485, - "rtt_ms": 1.546485, + "rtt_ns": 1720375, + "rtt_ms": 1.720375, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.757074827Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:01:59.316654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1678895, - "rtt_ms": 1.678895, + "rtt_ns": 2009833, + "rtt_ms": 2.009833, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.757138717Z" + "vertex_to": "806", + "timestamp": "2025-11-27T04:01:59.316669-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628925, - "rtt_ms": 1.628925, + "rtt_ns": 1626083, + "rtt_ms": 1.626083, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.757142357Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:59.316684-08:00" }, { "operation": "add_edge", - "rtt_ns": 818498, - "rtt_ms": 0.818498, + "rtt_ns": 1042625, + "rtt_ms": 1.042625, "checkpoint": 0, - "vertex_from": "451", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.757145017Z" + "vertex_from": "450", + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:59.316855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684265, - "rtt_ms": 1.684265, + "rtt_ns": 1263417, + "rtt_ms": 1.263417, "checkpoint": 0, "vertex_from": "450", - "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.757173987Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.316875-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012617, - "rtt_ms": 1.012617, + "rtt_ns": 1270459, + "rtt_ms": 1.270459, "checkpoint": 0, "vertex_from": "452", "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.757355586Z" + "timestamp": "2025-11-27T04:01:59.317635-08:00" }, { "operation": "add_edge", - "rtt_ns": 876967, - "rtt_ms": 0.876967, + "rtt_ns": 1555625, + "rtt_ms": 1.555625, "checkpoint": 0, - "vertex_from": "452", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.757941134Z" + "vertex_from": "453", + "vertex_to": "624", + "timestamp": "2025-11-27T04:01:59.318241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1598515, - "rtt_ms": 1.598515, + "rtt_ns": 1608500, + "rtt_ms": 1.6085, "checkpoint": 0, "vertex_from": "452", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.757965894Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1070866, - "rtt_ms": 1.070866, - "checkpoint": 0, - "vertex_from": "453", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.758211003Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:01:59.318264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1824714, - "rtt_ms": 1.824714, + "rtt_ns": 1738333, + "rtt_ms": 1.738333, "checkpoint": 0, "vertex_from": "452", "vertex_to": "753", - "timestamp": "2025-11-27T01:22:00.758250003Z" + "timestamp": "2025-11-27T04:01:59.318264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237896, - "rtt_ms": 1.237896, + "rtt_ns": 1613459, + "rtt_ms": 1.613459, "checkpoint": 0, "vertex_from": "453", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.758314203Z" + "timestamp": "2025-11-27T04:01:59.318283-08:00" }, { "operation": "add_edge", - "rtt_ns": 1034756, - "rtt_ms": 1.034756, + "rtt_ns": 1460167, + "rtt_ms": 1.460167, "checkpoint": 0, - "vertex_from": "454", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.75897717Z" + "vertex_from": "453", + "vertex_to": "972", + "timestamp": "2025-11-27T04:01:59.318336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837233, - "rtt_ms": 1.837233, + "rtt_ns": 1576459, + "rtt_ms": 1.576459, "checkpoint": 0, "vertex_from": "453", "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.7589811Z" + "timestamp": "2025-11-27T04:01:59.318433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817963, - "rtt_ms": 1.817963, + "rtt_ns": 2136375, + "rtt_ms": 2.136375, "checkpoint": 0, - "vertex_from": "453", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.75899289Z" + "vertex_from": "451", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.318485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1648414, - "rtt_ms": 1.648414, + "rtt_ns": 2010542, + "rtt_ms": 2.010542, "checkpoint": 0, - "vertex_from": "454", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.75900571Z" + "vertex_from": "452", + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.318502-08:00" }, { "operation": "add_edge", - "rtt_ns": 1039456, - "rtt_ms": 1.039456, + "rtt_ns": 1870041, + "rtt_ms": 1.870041, "checkpoint": 0, - "vertex_from": "454", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.75900641Z" + "vertex_from": "452", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.318505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1866523, - "rtt_ms": 1.866523, + "rtt_ns": 1300042, + "rtt_ms": 1.300042, "checkpoint": 0, "vertex_from": "453", - "vertex_to": "972", - "timestamp": "2025-11-27T01:22:00.7590128Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.318936-08:00" }, { "operation": "add_edge", - "rtt_ns": 1953553, - "rtt_ms": 1.953553, + "rtt_ns": 1061042, + "rtt_ms": 1.061042, "checkpoint": 0, - "vertex_from": "452", - "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.75902141Z" + "vertex_from": "454", + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.319495-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1320167, + "rtt_ms": 1.320167, + "checkpoint": 0, + "vertex_from": "454", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.319585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030407, - "rtt_ms": 1.030407, + "rtt_ns": 1399125, + "rtt_ms": 1.399125, "checkpoint": 0, "vertex_from": "454", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.75924561Z" + "timestamp": "2025-11-27T04:01:59.319683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1480565, - "rtt_ms": 1.480565, + "rtt_ns": 1488292, + "rtt_ms": 1.488292, "checkpoint": 0, "vertex_from": "454", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.759798028Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:01:59.31973-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559535, - "rtt_ms": 1.559535, + "rtt_ns": 1490500, + "rtt_ms": 1.4905, "checkpoint": 0, "vertex_from": "454", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.759811098Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.319755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1051397, - "rtt_ms": 1.051397, + "rtt_ns": 2424083, + "rtt_ms": 2.424083, "checkpoint": 0, "vertex_from": "456", "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.760034227Z" + "timestamp": "2025-11-27T04:01:59.320928-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436606, - "rtt_ms": 1.436606, + "rtt_ns": 1408750, + "rtt_ms": 1.40875, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.760443956Z" + "vertex_to": "549", + "timestamp": "2025-11-27T04:01:59.320994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463076, - "rtt_ms": 1.463076, + "rtt_ns": 1540542, + "rtt_ms": 1.540542, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "549", - "timestamp": "2025-11-27T01:22:00.760476916Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.321037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503655, - "rtt_ms": 1.503655, + "rtt_ns": 2563500, + "rtt_ms": 2.5635, "checkpoint": 0, - "vertex_from": "456", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.760510865Z" + "vertex_from": "455", + "vertex_to": "810", + "timestamp": "2025-11-27T04:01:59.32105-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495805, - "rtt_ms": 1.495805, + "rtt_ns": 1370250, + "rtt_ms": 1.37025, "checkpoint": 0, "vertex_from": "456", "vertex_to": "620", - "timestamp": "2025-11-27T01:22:00.760518405Z" + "timestamp": "2025-11-27T04:01:59.321054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528085, - "rtt_ms": 1.528085, + "rtt_ns": 1333209, + "rtt_ms": 1.333209, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.760522805Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.321065-08:00" }, { "operation": "add_edge", - "rtt_ns": 733647, - "rtt_ms": 0.733647, + "rtt_ns": 2832959, + "rtt_ms": 2.832959, "checkpoint": 0, - "vertex_from": "456", - "vertex_to": "567", - "timestamp": "2025-11-27T01:22:00.760532695Z" + "vertex_from": "454", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.321169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1555715, - "rtt_ms": 1.555715, + "rtt_ns": 1442375, + "rtt_ms": 1.442375, "checkpoint": 0, - "vertex_from": "455", - "vertex_to": "810", - "timestamp": "2025-11-27T01:22:00.760534525Z" + "vertex_from": "456", + "vertex_to": "567", + "timestamp": "2025-11-27T04:01:59.321198-08:00" }, { "operation": "add_edge", - "rtt_ns": 1338825, - "rtt_ms": 1.338825, + "rtt_ns": 2714166, + "rtt_ms": 2.714166, "checkpoint": 0, "vertex_from": "456", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.760585405Z" + "vertex_to": "538", + "timestamp": "2025-11-27T04:01:59.321222-08:00" }, { "operation": "add_edge", - "rtt_ns": 1416765, - "rtt_ms": 1.416765, + "rtt_ns": 2292791, + "rtt_ms": 2.292791, "checkpoint": 0, - "vertex_from": "457", - "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.761229833Z" + "vertex_from": "456", + "vertex_to": "712", + "timestamp": "2025-11-27T04:01:59.32123-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370876, - "rtt_ms": 1.370876, + "rtt_ns": 2188625, + "rtt_ms": 2.188625, "checkpoint": 0, "vertex_from": "458", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.761407423Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:01:59.323243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1365646, - "rtt_ms": 1.365646, + "rtt_ns": 2207042, + "rtt_ms": 2.207042, "checkpoint": 0, - "vertex_from": "460", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.761899831Z" + "vertex_from": "458", + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.323257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395546, - "rtt_ms": 1.395546, + "rtt_ns": 2053500, + "rtt_ms": 2.0535, "checkpoint": 0, - "vertex_from": "459", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.761920321Z" + "vertex_from": "461", + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.323276-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487025, - "rtt_ms": 1.487025, + "rtt_ns": 2315750, + "rtt_ms": 2.31575, "checkpoint": 0, "vertex_from": "458", - "vertex_to": "527", - "timestamp": "2025-11-27T01:22:00.761932601Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.323381-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426466, - "rtt_ms": 1.426466, + "rtt_ns": 2355917, + "rtt_ms": 2.355917, "checkpoint": 0, "vertex_from": "458", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.761938271Z" + "vertex_to": "527", + "timestamp": "2025-11-27T04:01:59.323394-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407946, - "rtt_ms": 1.407946, + "rtt_ns": 2163459, + "rtt_ms": 2.163459, "checkpoint": 0, "vertex_from": "461", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.761944111Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.323396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1442506, - "rtt_ms": 1.442506, + "rtt_ns": 2469459, + "rtt_ms": 2.469459, "checkpoint": 0, - "vertex_from": "458", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.761962491Z" + "vertex_from": "457", + "vertex_to": "585", + "timestamp": "2025-11-27T04:01:59.323398-08:00" }, { "operation": "add_edge", - "rtt_ns": 1488065, - "rtt_ms": 1.488065, + "rtt_ns": 2346625, + "rtt_ms": 2.346625, "checkpoint": 0, - "vertex_from": "458", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.761966051Z" + "vertex_from": "459", + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.323517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1823264, - "rtt_ms": 1.823264, + "rtt_ns": 2321292, + "rtt_ms": 2.321292, "checkpoint": 0, - "vertex_from": "461", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.762409879Z" + "vertex_from": "460", + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:59.323521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1258786, - "rtt_ms": 1.258786, + "rtt_ns": 2563542, + "rtt_ms": 2.563542, "checkpoint": 0, - "vertex_from": "462", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.762490249Z" + "vertex_from": "458", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.323559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311705, - "rtt_ms": 1.311705, + "rtt_ns": 1361292, + "rtt_ms": 1.361292, "checkpoint": 0, - "vertex_from": "462", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.762729688Z" + "vertex_from": "464", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.324758-08:00" }, { "operation": "add_edge", - "rtt_ns": 927287, - "rtt_ms": 0.927287, + "rtt_ns": 1537834, + "rtt_ms": 1.537834, "checkpoint": 0, "vertex_from": "463", "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.762828848Z" + "timestamp": "2025-11-27T04:01:59.324815-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566755, - "rtt_ms": 1.566755, + "rtt_ns": 1781750, + "rtt_ms": 1.78175, "checkpoint": 0, - "vertex_from": "464", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.763507056Z" + "vertex_from": "462", + "vertex_to": "928", + "timestamp": "2025-11-27T04:01:59.325026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570145, - "rtt_ms": 1.570145, + "rtt_ns": 1694875, + "rtt_ms": 1.694875, "checkpoint": 0, "vertex_from": "464", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.763515996Z" + "vertex_to": "570", + "timestamp": "2025-11-27T04:01:59.325077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558295, - "rtt_ms": 1.558295, + "rtt_ns": 1828834, + "rtt_ms": 1.828834, "checkpoint": 0, "vertex_from": "464", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.763525666Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.325223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563395, - "rtt_ms": 1.563395, + "rtt_ns": 1720958, + "rtt_ms": 1.720958, "checkpoint": 0, "vertex_from": "464", "vertex_to": "541", - "timestamp": "2025-11-27T01:22:00.763526886Z" + "timestamp": "2025-11-27T04:01:59.325238-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608115, - "rtt_ms": 1.608115, + "rtt_ns": 1736125, + "rtt_ms": 1.736125, "checkpoint": 0, "vertex_from": "464", - "vertex_to": "570", - "timestamp": "2025-11-27T01:22:00.763530336Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.325257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614165, - "rtt_ms": 1.614165, + "rtt_ns": 2045500, + "rtt_ms": 2.0455, "checkpoint": 0, - "vertex_from": "464", + "vertex_from": "462", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.763558116Z" + "timestamp": "2025-11-27T04:01:59.325304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1071157, - "rtt_ms": 1.071157, + "rtt_ns": 1788250, + "rtt_ms": 1.78825, "checkpoint": 0, "vertex_from": "465", - "vertex_to": "620", - "timestamp": "2025-11-27T01:22:00.763563056Z" + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.325348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1406746, - "rtt_ms": 1.406746, + "rtt_ns": 2134833, + "rtt_ms": 2.134833, "checkpoint": 0, - "vertex_from": "466", - "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.764237444Z" + "vertex_from": "464", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.325534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1825035, - "rtt_ms": 1.825035, + "rtt_ns": 1307292, + "rtt_ms": 1.307292, "checkpoint": 0, "vertex_from": "465", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.764243844Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:01:59.326067-08:00" }, { - "operation": "add_edge", - "rtt_ns": 835287, - "rtt_ms": 0.835287, + "operation": "add_vertex", + "rtt_ns": 1587250, + "rtt_ms": 1.58725, "checkpoint": 0, - "vertex_from": "467", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.764363493Z" + "vertex_from": "469", + "timestamp": "2025-11-27T04:01:59.326846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669135, - "rtt_ms": 1.669135, + "rtt_ns": 1712875, + "rtt_ms": 1.712875, "checkpoint": 0, - "vertex_from": "466", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.764401733Z" + "vertex_from": "467", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.326952-08:00" }, { "operation": "add_vertex", - "rtt_ns": 882467, - "rtt_ms": 0.882467, + "rtt_ns": 1881459, + "rtt_ms": 1.881459, "checkpoint": 0, "vertex_from": "469", - "timestamp": "2025-11-27T01:22:00.764415693Z" + "timestamp": "2025-11-27T04:01:59.327233-08:00" }, { "operation": "add_edge", - "rtt_ns": 990147, - "rtt_ms": 0.990147, + "rtt_ns": 2436750, + "rtt_ms": 2.43675, "checkpoint": 0, "vertex_from": "466", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.764499863Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.327253-08:00" }, { "operation": "add_edge", - "rtt_ns": 994197, - "rtt_ms": 0.994197, + "rtt_ns": 2323500, + "rtt_ms": 2.3235, "checkpoint": 0, "vertex_from": "466", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.764512863Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:59.327351-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1597855, - "rtt_ms": 1.597855, + "operation": "add_edge", + "rtt_ns": 2411000, + "rtt_ms": 2.411, "checkpoint": 0, - "vertex_from": "469", - "timestamp": "2025-11-27T01:22:00.765126511Z" + "vertex_from": "466", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.327635-08:00" }, { "operation": "add_edge", - "rtt_ns": 742558, - "rtt_ms": 0.742558, + "rtt_ns": 1662583, + "rtt_ms": 1.662583, "checkpoint": 0, - "vertex_from": "472", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.765148901Z" + "vertex_from": "470", + "vertex_to": "916", + "timestamp": "2025-11-27T04:01:59.32773-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1625315, - "rtt_ms": 1.625315, + "rtt_ns": 2469000, + "rtt_ms": 2.469, "checkpoint": 0, "vertex_from": "469", - "timestamp": "2025-11-27T01:22:00.765185381Z" + "timestamp": "2025-11-27T04:01:59.327773-08:00" }, { "operation": "add_edge", - "rtt_ns": 1653635, - "rtt_ms": 1.653635, + "rtt_ns": 2285875, + "rtt_ms": 2.285875, "checkpoint": 0, "vertex_from": "470", "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.765218321Z" + "timestamp": "2025-11-27T04:01:59.327821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1175176, - "rtt_ms": 1.175176, + "rtt_ns": 1225250, + "rtt_ms": 1.22525, "checkpoint": 0, "vertex_from": "470", - "vertex_to": "916", - "timestamp": "2025-11-27T01:22:00.76541445Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:01:59.328178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065537, - "rtt_ms": 1.065537, + "rtt_ns": 3274541, + "rtt_ms": 3.274541, "checkpoint": 0, - "vertex_from": "472", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.76543074Z" + "vertex_from": "466", + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:59.328352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044177, - "rtt_ms": 1.044177, + "rtt_ns": 2179584, + "rtt_ms": 2.179584, "checkpoint": 0, "vertex_from": "469", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.76546097Z" + "vertex_to": "621", + "timestamp": "2025-11-27T04:01:59.329026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219826, - "rtt_ms": 1.219826, + "rtt_ns": 1804625, + "rtt_ms": 1.804625, "checkpoint": 0, - "vertex_from": "470", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.7654654Z" + "vertex_from": "469", + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.329038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077386, - "rtt_ms": 1.077386, + "rtt_ns": 1507708, + "rtt_ms": 1.507708, "checkpoint": 0, "vertex_from": "472", "vertex_to": "866", - "timestamp": "2025-11-27T01:22:00.765578639Z" + "timestamp": "2025-11-27T04:01:59.329144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1079196, - "rtt_ms": 1.079196, + "rtt_ns": 1473083, + "rtt_ms": 1.473083, "checkpoint": 0, "vertex_from": "473", "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.765593579Z" + "timestamp": "2025-11-27T04:01:59.329204-08:00" }, { "operation": "add_edge", - "rtt_ns": 527068, - "rtt_ms": 0.527068, + "rtt_ns": 1860209, + "rtt_ms": 1.860209, "checkpoint": 0, - "vertex_from": "477", + "vertex_from": "472", "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.765746889Z" + "timestamp": "2025-11-27T04:01:59.329211-08:00" }, { "operation": "add_edge", - "rtt_ns": 597338, - "rtt_ms": 0.597338, + "rtt_ns": 1471875, + "rtt_ms": 1.471875, "checkpoint": 0, - "vertex_from": "474", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.765748129Z" + "vertex_from": "469", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.329245-08:00" }, { "operation": "add_edge", - "rtt_ns": 640688, - "rtt_ms": 0.640688, + "rtt_ns": 2152666, + "rtt_ms": 2.152666, "checkpoint": 0, - "vertex_from": "469", - "vertex_to": "621", - "timestamp": "2025-11-27T01:22:00.765768059Z" + "vertex_from": "472", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.329406-08:00" }, { "operation": "add_edge", - "rtt_ns": 603538, - "rtt_ms": 0.603538, + "rtt_ns": 1672167, + "rtt_ms": 1.672167, "checkpoint": 0, - "vertex_from": "469", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.765789369Z" + "vertex_from": "474", + "vertex_to": "518", + "timestamp": "2025-11-27T04:01:59.329494-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287816, - "rtt_ms": 1.287816, + "rtt_ns": 2404584, + "rtt_ms": 2.404584, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.766719766Z" + "vertex_to": "513", + "timestamp": "2025-11-27T04:01:59.330758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352806, - "rtt_ms": 1.352806, + "rtt_ns": 1742667, + "rtt_ms": 1.742667, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.766769016Z" + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.33077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1391395, - "rtt_ms": 1.391395, + "rtt_ns": 2599416, + "rtt_ms": 2.599416, "checkpoint": 0, - "vertex_from": "480", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.766854315Z" + "vertex_from": "477", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.330779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1487785, - "rtt_ms": 1.487785, + "rtt_ns": 1635416, + "rtt_ms": 1.635416, "checkpoint": 0, "vertex_from": "480", "vertex_to": "669", - "timestamp": "2025-11-27T01:22:00.766955455Z" + "timestamp": "2025-11-27T04:01:59.330781-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663025, - "rtt_ms": 1.663025, + "rtt_ns": 1638375, + "rtt_ms": 1.638375, "checkpoint": 0, "vertex_from": "480", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.767242874Z" + "timestamp": "2025-11-27T04:01:59.330845-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663785, - "rtt_ms": 1.663785, + "rtt_ns": 1451375, + "rtt_ms": 1.451375, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.767258864Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:01:59.330946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579505, - "rtt_ms": 1.579505, + "rtt_ns": 1549541, + "rtt_ms": 1.549541, "checkpoint": 0, "vertex_from": "480", "vertex_to": "531", - "timestamp": "2025-11-27T01:22:00.767329084Z" + "timestamp": "2025-11-27T04:01:59.330957-08:00" }, { "operation": "add_edge", - "rtt_ns": 2074383, - "rtt_ms": 2.074383, + "rtt_ns": 1923792, + "rtt_ms": 1.923792, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.767822292Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:59.330963-08:00" }, { "operation": "add_edge", - "rtt_ns": 850797, - "rtt_ms": 0.850797, + "rtt_ns": 1769500, + "rtt_ms": 1.7695, "checkpoint": 0, - "vertex_from": "484", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.768095491Z" + "vertex_from": "480", + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.330982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2411452, - "rtt_ms": 2.411452, + "rtt_ns": 1738166, + "rtt_ms": 1.738166, "checkpoint": 0, "vertex_from": "480", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.768201971Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:59.330984-08:00" }, { "operation": "add_edge", - "rtt_ns": 995347, - "rtt_ms": 0.995347, + "rtt_ns": 1007958, + "rtt_ms": 1.007958, "checkpoint": 0, "vertex_from": "484", "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.768255551Z" + "timestamp": "2025-11-27T04:01:59.331966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370356, - "rtt_ms": 1.370356, + "rtt_ns": 1617292, + "rtt_ms": 1.617292, "checkpoint": 0, - "vertex_from": "484", - "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.76870069Z" + "vertex_from": "482", + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.332464-08:00" }, { "operation": "add_edge", - "rtt_ns": 2965410, - "rtt_ms": 2.96541, + "rtt_ns": 1499375, + "rtt_ms": 1.499375, "checkpoint": 0, - "vertex_from": "480", - "vertex_to": "588", - "timestamp": "2025-11-27T01:22:00.768734689Z" + "vertex_from": "486", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.332485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2113993, - "rtt_ms": 2.113993, + "rtt_ns": 1567958, + "rtt_ms": 1.567958, "checkpoint": 0, - "vertex_from": "481", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.768883829Z" + "vertex_from": "484", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.332515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2265463, - "rtt_ms": 2.265463, + "rtt_ns": 1778542, + "rtt_ms": 1.778542, "checkpoint": 0, "vertex_from": "481", "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.768987299Z" + "timestamp": "2025-11-27T04:01:59.332559-08:00" }, { "operation": "add_edge", - "rtt_ns": 2141024, - "rtt_ms": 2.141024, + "rtt_ns": 1792333, + "rtt_ms": 1.792333, "checkpoint": 0, - "vertex_from": "482", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.768996919Z" + "vertex_from": "484", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.332775-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2134625, + "rtt_ms": 2.134625, + "checkpoint": 0, + "vertex_from": "480", + "vertex_to": "520", + "timestamp": "2025-11-27T04:01:59.332893-08:00" }, { "operation": "add_edge", - "rtt_ns": 2051474, - "rtt_ms": 2.051474, + "rtt_ns": 2228125, + "rtt_ms": 2.228125, "checkpoint": 0, "vertex_from": "482", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.769012439Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:01:59.333011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194907, - "rtt_ms": 1.194907, + "rtt_ns": 2053833, + "rtt_ms": 2.053833, "checkpoint": 0, "vertex_from": "484", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.769018659Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:59.333018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778265, - "rtt_ms": 1.778265, + "rtt_ns": 2269250, + "rtt_ms": 2.26925, "checkpoint": 0, - "vertex_from": "486", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.769876366Z" + "vertex_from": "481", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.333051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712025, - "rtt_ms": 1.712025, + "rtt_ns": 1106750, + "rtt_ms": 1.10675, "checkpoint": 0, "vertex_from": "486", "vertex_to": "539", - "timestamp": "2025-11-27T01:22:00.769915456Z" + "timestamp": "2025-11-27T04:01:59.333074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668865, - "rtt_ms": 1.668865, + "rtt_ns": 1354958, + "rtt_ms": 1.354958, "checkpoint": 0, "vertex_from": "486", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.769925466Z" + "timestamp": "2025-11-27T04:01:59.333819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1211877, - "rtt_ms": 1.211877, + "rtt_ns": 1423125, + "rtt_ms": 1.423125, "checkpoint": 0, "vertex_from": "492", "vertex_to": "918", - "timestamp": "2025-11-27T01:22:00.769948146Z" + "timestamp": "2025-11-27T04:01:59.333939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249936, - "rtt_ms": 1.249936, + "rtt_ns": 1820000, + "rtt_ms": 1.82, "checkpoint": 0, "vertex_from": "492", - "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.769953126Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:01:59.33438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1805044, - "rtt_ms": 1.805044, + "rtt_ns": 1618917, + "rtt_ms": 1.618917, "checkpoint": 0, - "vertex_from": "492", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.770690423Z" + "vertex_from": "498", + "vertex_to": "514", + "timestamp": "2025-11-27T04:01:59.334514-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1724174, - "rtt_ms": 1.724174, + "operation": "add_edge", + "rtt_ns": 1470292, + "rtt_ms": 1.470292, "checkpoint": 0, - "vertex_from": "499", - "timestamp": "2025-11-27T01:22:00.770745023Z" + "vertex_from": "500", + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.334524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1760944, - "rtt_ms": 1.760944, + "rtt_ns": 2042209, + "rtt_ms": 2.042209, "checkpoint": 0, - "vertex_from": "498", - "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.770760143Z" + "vertex_from": "492", + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:59.334528-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1900144, - "rtt_ms": 1.900144, + "operation": "add_vertex", + "rtt_ns": 1583041, + "rtt_ms": 1.583041, "checkpoint": 0, - "vertex_from": "498", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.770915533Z" + "vertex_from": "499", + "timestamp": "2025-11-27T04:01:59.334602-08:00" }, { "operation": "add_edge", - "rtt_ns": 1988093, - "rtt_ms": 1.988093, + "rtt_ns": 1838875, + "rtt_ms": 1.838875, "checkpoint": 0, "vertex_from": "496", "vertex_to": "966", - "timestamp": "2025-11-27T01:22:00.770977202Z" + "timestamp": "2025-11-27T04:01:59.334617-08:00" }, { "operation": "add_edge", - "rtt_ns": 795538, - "rtt_ms": 0.795538, + "rtt_ns": 1608209, + "rtt_ms": 1.608209, "checkpoint": 0, - "vertex_from": "499", - "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.771541251Z" + "vertex_from": "498", + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.33462-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634144, - "rtt_ms": 1.634144, + "rtt_ns": 1652375, + "rtt_ms": 1.652375, "checkpoint": 0, - "vertex_from": "505", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.77156152Z" + "vertex_from": "500", + "vertex_to": "512", + "timestamp": "2025-11-27T04:01:59.334729-08:00" }, { "operation": "add_edge", - "rtt_ns": 941107, - "rtt_ms": 0.941107, + "rtt_ns": 1758666, + "rtt_ms": 1.758666, "checkpoint": 0, - "vertex_from": "512", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.77163322Z" + "vertex_from": "505", + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.335579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1701054, - "rtt_ms": 1.701054, + "rtt_ns": 1218291, + "rtt_ms": 1.218291, "checkpoint": 0, "vertex_from": "512", "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.77165535Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1828754, - "rtt_ms": 1.828754, - "checkpoint": 0, - "vertex_from": "500", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.77171096Z" + "timestamp": "2025-11-27T04:01:59.335599-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1804224, - "rtt_ms": 1.804224, + "rtt_ns": 2028584, + "rtt_ms": 2.028584, "checkpoint": 0, "vertex_from": "510", - "timestamp": "2025-11-27T01:22:00.77175786Z" + "timestamp": "2025-11-27T04:01:59.335969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1877944, - "rtt_ms": 1.877944, + "rtt_ns": 1500334, + "rtt_ms": 1.500334, "checkpoint": 0, - "vertex_from": "500", - "vertex_to": "512", - "timestamp": "2025-11-27T01:22:00.77179632Z" + "vertex_from": "512", + "vertex_to": "529", + "timestamp": "2025-11-27T04:01:59.336029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1106606, - "rtt_ms": 1.106606, + "rtt_ns": 1557291, + "rtt_ms": 1.557291, "checkpoint": 0, "vertex_from": "512", "vertex_to": "513", - "timestamp": "2025-11-27T01:22:00.771868629Z" + "timestamp": "2025-11-27T04:01:59.336082-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721064, - "rtt_ms": 1.721064, + "rtt_ns": 1671167, + "rtt_ms": 1.671167, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.772637577Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:01:59.33629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699485, - "rtt_ms": 1.699485, + "rtt_ns": 1887833, + "rtt_ms": 1.887833, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "562", - "timestamp": "2025-11-27T01:22:00.772678177Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:01:59.336404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354645, - "rtt_ms": 1.354645, - "checkpoint": 0, - "vertex_from": "510", - "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.773113685Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1641064, - "rtt_ms": 1.641064, + "rtt_ns": 1901666, + "rtt_ms": 1.901666, "checkpoint": 0, - "vertex_from": "863", - "timestamp": "2025-11-27T01:22:00.773186635Z" + "vertex_from": "512", + "vertex_to": "598", + "timestamp": "2025-11-27T04:01:59.336631-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082603, - "rtt_ms": 2.082603, + "rtt_ns": 1385167, + "rtt_ms": 1.385167, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.773880903Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:01:59.336965-08:00" }, { "operation": "add_edge", - "rtt_ns": 2350292, - "rtt_ms": 2.350292, + "rtt_ns": 1261625, + "rtt_ms": 1.261625, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.773984912Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:01:59.337344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2291232, - "rtt_ms": 2.291232, + "rtt_ns": 1670833, + "rtt_ms": 1.670833, "checkpoint": 0, "vertex_from": "512", "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.774004782Z" + "timestamp": "2025-11-27T04:01:59.3377-08:00" }, { "operation": "add_edge", - "rtt_ns": 2471332, - "rtt_ms": 2.471332, + "rtt_ns": 1586625, + "rtt_ms": 1.586625, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.774129312Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:01:59.337877-08:00" }, { "operation": "add_edge", - "rtt_ns": 2336823, - "rtt_ms": 2.336823, + "rtt_ns": 1492459, + "rtt_ms": 1.492459, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.774208672Z" + "vertex_to": "616", + "timestamp": "2025-11-27T04:01:59.337898-08:00" }, { "operation": "add_edge", - "rtt_ns": 2684781, - "rtt_ms": 2.684781, + "rtt_ns": 1606334, + "rtt_ms": 1.606334, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "598", - "timestamp": "2025-11-27T01:22:00.774248361Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:01:59.338241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1161026, - "rtt_ms": 1.161026, + "rtt_ns": 1384209, + "rtt_ms": 1.384209, "checkpoint": 0, "vertex_from": "512", "vertex_to": "538", - "timestamp": "2025-11-27T01:22:00.774276151Z" + "timestamp": "2025-11-27T04:01:59.338351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633214, - "rtt_ms": 1.633214, + "rtt_ns": 1131250, + "rtt_ms": 1.13125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.774312771Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:01:59.338477-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739744, - "rtt_ms": 1.739744, + "rtt_ns": 846666, + "rtt_ms": 0.846666, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "616", - "timestamp": "2025-11-27T01:22:00.774380441Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:01:59.338725-08:00" }, { "operation": "add_edge", - "rtt_ns": 1710694, - "rtt_ms": 1.710694, + "rtt_ns": 1035208, + "rtt_ms": 1.035208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "863", - "timestamp": "2025-11-27T01:22:00.774897549Z" + "vertex_to": "918", + "timestamp": "2025-11-27T04:01:59.338933-08:00" }, { "operation": "add_edge", - "rtt_ns": 1112527, - "rtt_ms": 1.112527, + "rtt_ns": 1433500, + "rtt_ms": 1.4335, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.775119099Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:01:59.339134-08:00" }, { "operation": "add_edge", - "rtt_ns": 1240566, - "rtt_ms": 1.240566, + "rtt_ns": 857875, + "rtt_ms": 0.857875, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "964", - "timestamp": "2025-11-27T01:22:00.775123569Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:01:59.339336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1138347, - "rtt_ms": 1.138347, + "rtt_ns": 1028500, + "rtt_ms": 1.0285, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.775124959Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:01:59.339382-08:00" }, { "operation": "add_edge", - "rtt_ns": 1235426, - "rtt_ms": 1.235426, + "rtt_ns": 4192125, + "rtt_ms": 4.192125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "918", - "timestamp": "2025-11-27T01:22:00.775366648Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:01:59.339792-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 5185833, + "rtt_ms": 5.185833, + "checkpoint": 0, + "vertex_from": "863", + "timestamp": "2025-11-27T04:01:59.339807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1194756, - "rtt_ms": 1.194756, + "rtt_ns": 1567917, + "rtt_ms": 1.567917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.775444457Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:01:59.33981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287966, - "rtt_ms": 1.287966, + "rtt_ns": 3877334, + "rtt_ms": 3.877334, "checkpoint": 0, - "vertex_from": "512", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.775566087Z" + "vertex_from": "510", + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:59.339846-08:00" }, { "operation": "add_edge", - "rtt_ns": 1446835, - "rtt_ms": 1.446835, + "rtt_ns": 5249375, + "rtt_ms": 5.249375, "checkpoint": 0, - "vertex_from": "512", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.775656547Z" + "vertex_from": "499", + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:59.339852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1359345, - "rtt_ms": 1.359345, + "rtt_ns": 1253334, + "rtt_ms": 1.253334, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.775741026Z" + "vertex_to": "517", + "timestamp": "2025-11-27T04:01:59.33998-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466255, - "rtt_ms": 1.466255, + "rtt_ns": 991917, + "rtt_ms": 0.991917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "517", - "timestamp": "2025-11-27T01:22:00.775780466Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:01:59.340328-08:00" }, { "operation": "add_edge", - "rtt_ns": 917577, - "rtt_ms": 0.917577, + "rtt_ns": 1543792, + "rtt_ms": 1.543792, "checkpoint": 0, "vertex_from": "512", "vertex_to": "514", - "timestamp": "2025-11-27T01:22:00.775816136Z" + "timestamp": "2025-11-27T04:01:59.340679-08:00" }, { "operation": "add_edge", - "rtt_ns": 798987, - "rtt_ms": 0.798987, + "rtt_ns": 1770250, + "rtt_ms": 1.77025, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "651", - "timestamp": "2025-11-27T01:22:00.775919456Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:01:59.340705-08:00" }, { "operation": "add_edge", - "rtt_ns": 849447, - "rtt_ms": 0.849447, + "rtt_ns": 1656208, + "rtt_ms": 1.656208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.775975756Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:01:59.341039-08:00" }, { "operation": "add_edge", - "rtt_ns": 911867, - "rtt_ms": 0.911867, + "rtt_ns": 1319708, + "rtt_ms": 1.319708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.776037036Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:01:59.341114-08:00" }, { "operation": "add_edge", - "rtt_ns": 742638, - "rtt_ms": 0.742638, + "rtt_ns": 1477458, + "rtt_ms": 1.477458, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.776560114Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:01:59.341288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1308426, - "rtt_ms": 1.308426, + "rtt_ns": 1483167, + "rtt_ms": 1.483167, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.776753883Z" + "vertex_to": "863", + "timestamp": "2025-11-27T04:01:59.341291-08:00" }, { "operation": "add_edge", - "rtt_ns": 974687, - "rtt_ms": 0.974687, + "rtt_ns": 1468250, + "rtt_ms": 1.46825, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.776756283Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:01:59.341322-08:00" }, { "operation": "add_edge", - "rtt_ns": 1053977, - "rtt_ms": 1.053977, + "rtt_ns": 1499500, + "rtt_ms": 1.4995, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "722", - "timestamp": "2025-11-27T01:22:00.776796403Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:01:59.341347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1324326, - "rtt_ms": 1.324326, + "rtt_ns": 2197208, + "rtt_ms": 2.197208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.776891813Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:01:59.342179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558905, - "rtt_ms": 1.558905, + "rtt_ns": 1921750, + "rtt_ms": 1.92175, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "738", - "timestamp": "2025-11-27T01:22:00.776926783Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:01:59.342251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1297396, - "rtt_ms": 1.297396, + "rtt_ns": 1296166, + "rtt_ms": 1.296166, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.776955283Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:01:59.342588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767514, - "rtt_ms": 1.767514, + "rtt_ns": 1485625, + "rtt_ms": 1.485625, "checkpoint": 0, "vertex_from": "512", "vertex_to": "534", - "timestamp": "2025-11-27T01:22:00.77774425Z" + "timestamp": "2025-11-27T04:01:59.342601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200456, - "rtt_ms": 1.200456, + "rtt_ns": 1910459, + "rtt_ms": 1.910459, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.7777617Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:01:59.342619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1861134, - "rtt_ms": 1.861134, + "rtt_ns": 1579583, + "rtt_ms": 1.579583, "checkpoint": 0, "vertex_from": "512", "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.77778196Z" + "timestamp": "2025-11-27T04:01:59.34262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795234, - "rtt_ms": 1.795234, + "rtt_ns": 1446917, + "rtt_ms": 1.446917, "checkpoint": 0, "vertex_from": "512", "vertex_to": "809", - "timestamp": "2025-11-27T01:22:00.77783338Z" + "timestamp": "2025-11-27T04:01:59.342736-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143156, - "rtt_ms": 1.143156, + "rtt_ns": 1429250, + "rtt_ms": 1.42925, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.777941049Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:01:59.342752-08:00" }, { "operation": "add_edge", - "rtt_ns": 1419296, - "rtt_ms": 1.419296, + "rtt_ns": 1410208, + "rtt_ms": 1.410208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "752", - "timestamp": "2025-11-27T01:22:00.778175049Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:01:59.342758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1453696, - "rtt_ms": 1.453696, + "rtt_ns": 2149666, + "rtt_ms": 2.149666, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.778211799Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:01:59.342829-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352306, - "rtt_ms": 1.352306, + "rtt_ns": 1020792, + "rtt_ms": 1.020792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.778245429Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:01:59.34364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1347035, - "rtt_ms": 1.347035, + "rtt_ns": 1124667, + "rtt_ms": 1.124667, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.778303578Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:01:59.343713-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460865, - "rtt_ms": 1.460865, + "rtt_ns": 1564334, + "rtt_ms": 1.564334, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "617", - "timestamp": "2025-11-27T01:22:00.778389008Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:01:59.343744-08:00" }, { "operation": "add_edge", - "rtt_ns": 620708, - "rtt_ms": 0.620708, + "rtt_ns": 1673292, + "rtt_ms": 1.673292, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.778405068Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:01:59.343925-08:00" }, { "operation": "add_edge", - "rtt_ns": 709128, - "rtt_ms": 0.709128, + "rtt_ns": 1342292, + "rtt_ms": 1.342292, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.778454718Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:01:59.343944-08:00" }, { "operation": "add_edge", - "rtt_ns": 766648, - "rtt_ms": 0.766648, + "rtt_ns": 1453917, + "rtt_ms": 1.453917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.778529908Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:01:59.344212-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1577709, + "rtt_ms": 1.577709, + "checkpoint": 0, + "vertex_from": "512", + "vertex_to": "646", + "timestamp": "2025-11-27T04:01:59.344314-08:00" }, { "operation": "add_edge", - "rtt_ns": 716188, - "rtt_ms": 0.716188, + "rtt_ns": 1562708, + "rtt_ms": 1.562708, "checkpoint": 0, "vertex_from": "512", "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.778551328Z" + "timestamp": "2025-11-27T04:01:59.344315-08:00" }, { "operation": "add_edge", - "rtt_ns": 620589, - "rtt_ms": 0.620589, + "rtt_ns": 1780541, + "rtt_ms": 1.780541, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.778562898Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:01:59.344401-08:00" }, { "operation": "add_edge", - "rtt_ns": 750127, - "rtt_ms": 0.750127, + "rtt_ns": 2194708, + "rtt_ms": 2.194708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.778996686Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:01:59.345027-08:00" }, { "operation": "add_edge", - "rtt_ns": 705168, - "rtt_ms": 0.705168, + "rtt_ns": 1292750, + "rtt_ms": 1.29275, "checkpoint": 0, "vertex_from": "512", "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.779111266Z" + "timestamp": "2025-11-27T04:01:59.345237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1004667, - "rtt_ms": 1.004667, + "rtt_ns": 1613708, + "rtt_ms": 1.613708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.779180756Z" + "vertex_to": "602", + "timestamp": "2025-11-27T04:01:59.345255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1083397, - "rtt_ms": 1.083397, + "rtt_ns": 1684208, + "rtt_ms": 1.684208, "checkpoint": 0, "vertex_from": "512", "vertex_to": "633", - "timestamp": "2025-11-27T01:22:00.779388545Z" + "timestamp": "2025-11-27T04:01:59.345429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239676, - "rtt_ms": 1.239676, + "rtt_ns": 1506791, + "rtt_ms": 1.506791, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "602", - "timestamp": "2025-11-27T01:22:00.779452865Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:01:59.345433-08:00" }, { "operation": "add_edge", - "rtt_ns": 988436, - "rtt_ms": 0.988436, + "rtt_ns": 1233583, + "rtt_ms": 1.233583, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "913", - "timestamp": "2025-11-27T01:22:00.779541054Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:01:59.345447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010856, - "rtt_ms": 1.010856, + "rtt_ns": 1277250, + "rtt_ms": 1.27725, "checkpoint": 0, "vertex_from": "512", "vertex_to": "525", - "timestamp": "2025-11-27T01:22:00.779541844Z" + "timestamp": "2025-11-27T04:01:59.345593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096566, - "rtt_ms": 1.096566, + "rtt_ns": 2270000, + "rtt_ms": 2.27, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.779552474Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:01:59.345985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1676465, - "rtt_ms": 1.676465, + "rtt_ns": 2068291, + "rtt_ms": 2.068291, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.780066603Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:01:59.34647-08:00" }, { "operation": "add_edge", - "rtt_ns": 1275596, - "rtt_ms": 1.275596, + "rtt_ns": 2499833, + "rtt_ms": 2.499833, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "868", - "timestamp": "2025-11-27T01:22:00.780273522Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:01:59.346816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1206846, - "rtt_ms": 1.206846, + "rtt_ns": 1640834, + "rtt_ms": 1.640834, "checkpoint": 0, "vertex_from": "512", "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.780319492Z" + "timestamp": "2025-11-27T04:01:59.346879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144536, - "rtt_ms": 1.144536, + "rtt_ns": 1505334, + "rtt_ms": 1.505334, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.780326472Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:01:59.346939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765854, - "rtt_ms": 1.765854, + "rtt_ns": 1640625, + "rtt_ms": 1.640625, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.780329702Z" + "vertex_to": "789", + "timestamp": "2025-11-27T04:01:59.347088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1504776, - "rtt_ms": 1.504776, + "rtt_ns": 2071792, + "rtt_ms": 2.071792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "723", - "timestamp": "2025-11-27T01:22:00.78105911Z" + "vertex_to": "868", + "timestamp": "2025-11-27T04:01:59.3471-08:00" }, { "operation": "add_edge", - "rtt_ns": 1533806, - "rtt_ms": 1.533806, + "rtt_ns": 1686292, + "rtt_ms": 1.686292, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.78107666Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:01:59.347116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739144, - "rtt_ms": 1.739144, + "rtt_ns": 1966000, + "rtt_ms": 1.966, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.781129179Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:01:59.347566-08:00" }, { "operation": "add_edge", - "rtt_ns": 1699924, - "rtt_ms": 1.699924, + "rtt_ns": 1719709, + "rtt_ms": 1.719709, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.781153909Z" + "vertex_to": "723", + "timestamp": "2025-11-27T04:01:59.347706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117026, - "rtt_ms": 1.117026, + "rtt_ns": 1335208, + "rtt_ms": 1.335208, "checkpoint": 0, "vertex_from": "512", "vertex_to": "663", - "timestamp": "2025-11-27T01:22:00.781186139Z" + "timestamp": "2025-11-27T04:01:59.347806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757205, - "rtt_ms": 1.757205, + "rtt_ns": 2730583, + "rtt_ms": 2.730583, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "789", - "timestamp": "2025-11-27T01:22:00.781299639Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:01:59.347986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713304, - "rtt_ms": 1.713304, + "rtt_ns": 1490542, + "rtt_ms": 1.490542, "checkpoint": 0, "vertex_from": "512", "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.782041096Z" + "timestamp": "2025-11-27T04:01:59.348431-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1622750, + "rtt_ms": 1.62275, + "checkpoint": 0, + "vertex_from": "512", + "vertex_to": "531", + "timestamp": "2025-11-27T04:01:59.348441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1711544, - "rtt_ms": 1.711544, + "rtt_ns": 1382833, + "rtt_ms": 1.382833, "checkpoint": 0, "vertex_from": "512", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.782043246Z" + "timestamp": "2025-11-27T04:01:59.348472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770014, - "rtt_ms": 1.770014, + "rtt_ns": 1404917, + "rtt_ms": 1.404917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "531", - "timestamp": "2025-11-27T01:22:00.782045436Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:01:59.348505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753274, - "rtt_ms": 1.753274, + "rtt_ns": 1508334, + "rtt_ms": 1.508334, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "613", - "timestamp": "2025-11-27T01:22:00.782073966Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:01:59.348626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1145167, - "rtt_ms": 1.145167, + "rtt_ns": 1755125, + "rtt_ms": 1.755125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "657", - "timestamp": "2025-11-27T01:22:00.782300416Z" + "vertex_to": "613", + "timestamp": "2025-11-27T04:01:59.348636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184196, - "rtt_ms": 1.184196, + "rtt_ns": 1367334, + "rtt_ms": 1.367334, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.782372085Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:01:59.34981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345565, - "rtt_ms": 1.345565, + "rtt_ns": 1331458, + "rtt_ms": 1.331458, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.782407055Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:01:59.349838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1421485, - "rtt_ms": 1.421485, + "rtt_ns": 2244833, + "rtt_ms": 2.244833, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.782499485Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:01:59.350052-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248466, - "rtt_ms": 1.248466, + "rtt_ns": 2090875, + "rtt_ms": 2.090875, "checkpoint": 0, "vertex_from": "512", "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.782549685Z" + "timestamp": "2025-11-27T04:01:59.350077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455896, - "rtt_ms": 1.455896, + "rtt_ns": 2527209, + "rtt_ms": 2.527209, "checkpoint": 0, "vertex_from": "512", "vertex_to": "920", - "timestamp": "2025-11-27T01:22:00.782586315Z" + "timestamp": "2025-11-27T04:01:59.350094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1376576, - "rtt_ms": 1.376576, + "rtt_ns": 2055375, + "rtt_ms": 2.055375, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.783421392Z" + "vertex_to": "611", + "timestamp": "2025-11-27T04:01:59.350529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1425706, - "rtt_ms": 1.425706, + "rtt_ns": 2117042, + "rtt_ms": 2.117042, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "611", - "timestamp": "2025-11-27T01:22:00.783472242Z" + "vertex_to": "934", + "timestamp": "2025-11-27T04:01:59.350549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1402336, - "rtt_ms": 1.402336, + "rtt_ns": 1941167, + "rtt_ms": 1.941167, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "675", - "timestamp": "2025-11-27T01:22:00.783482872Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:01:59.350578-08:00" }, { "operation": "add_edge", - "rtt_ns": 1777974, - "rtt_ms": 1.777974, + "rtt_ns": 2021625, + "rtt_ms": 2.021625, "checkpoint": 0, "vertex_from": "512", "vertex_to": "519", - "timestamp": "2025-11-27T01:22:00.78407995Z" + "timestamp": "2025-11-27T04:01:59.35065-08:00" }, { "operation": "add_edge", - "rtt_ns": 2084094, - "rtt_ms": 2.084094, + "rtt_ns": 3014459, + "rtt_ms": 3.014459, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "934", - "timestamp": "2025-11-27T01:22:00.7841275Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:01:59.350722-08:00" }, { "operation": "add_edge", - "rtt_ns": 1882894, - "rtt_ms": 1.882894, + "rtt_ns": 2096125, + "rtt_ms": 2.096125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "753", - "timestamp": "2025-11-27T01:22:00.784291799Z" + "vertex_to": "713", + "timestamp": "2025-11-27T04:01:59.352149-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921374, - "rtt_ms": 1.921374, + "rtt_ns": 1666917, + "rtt_ms": 1.666917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.784294179Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:01:59.352318-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721894, - "rtt_ms": 1.721894, + "rtt_ns": 2304250, + "rtt_ms": 2.30425, "checkpoint": 0, "vertex_from": "512", "vertex_to": "798", - "timestamp": "2025-11-27T01:22:00.784310949Z" + "timestamp": "2025-11-27T04:01:59.352383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1973204, - "rtt_ms": 1.973204, + "rtt_ns": 1903792, + "rtt_ms": 1.903792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "583", - "timestamp": "2025-11-27T01:22:00.784474799Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:01:59.352453-08:00" }, { "operation": "add_edge", - "rtt_ns": 2621931, - "rtt_ms": 2.621931, + "rtt_ns": 2374792, + "rtt_ms": 2.374792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "713", - "timestamp": "2025-11-27T01:22:00.785172916Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:01:59.35247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875534, - "rtt_ms": 1.875534, + "rtt_ns": 1944542, + "rtt_ms": 1.944542, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.785360066Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:01:59.352475-08:00" }, { "operation": "add_edge", - "rtt_ns": 1936903, - "rtt_ms": 1.936903, + "rtt_ns": 2080875, + "rtt_ms": 2.080875, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "610", - "timestamp": "2025-11-27T01:22:00.785410695Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:01:59.352659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998593, - "rtt_ms": 1.998593, + "rtt_ns": 1943625, + "rtt_ms": 1.943625, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.785423605Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:01:59.352666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1408205, - "rtt_ms": 1.408205, + "rtt_ns": 2863250, + "rtt_ms": 2.86325, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.785539475Z" + "vertex_to": "753", + "timestamp": "2025-11-27T04:01:59.352675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1281376, - "rtt_ms": 1.281376, + "rtt_ns": 2833084, + "rtt_ms": 2.833084, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "782", - "timestamp": "2025-11-27T01:22:00.785574955Z" + "vertex_to": "583", + "timestamp": "2025-11-27T04:01:59.35268-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515725, - "rtt_ms": 1.515725, + "rtt_ns": 10564958, + "rtt_ms": 10.564958, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.785601835Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:01:59.363036-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366796, - "rtt_ms": 1.366796, + "rtt_ns": 1060228917, + "rtt_ms": 1060.228917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.785662265Z" + "vertex_to": "775", + "timestamp": "2025-11-27T04:02:00.423262-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407745, - "rtt_ms": 1.407745, + "rtt_ns": 9548616708, + "rtt_ms": 9548.616708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.785720684Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:02:08.901036-08:00" }, { "operation": "add_edge", - "rtt_ns": 562848, - "rtt_ms": 0.562848, + "rtt_ns": 18000594708, + "rtt_ms": 18000.594708, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.785737474Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:02:17.352679-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282745, - "rtt_ms": 1.282745, + "rtt_ns": 16929548791, + "rtt_ms": 16929.548791, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.785759414Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:02:17.352751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1115397, - "rtt_ms": 1.115397, + "rtt_ns": 18000392917, + "rtt_ms": 18000.392917, "checkpoint": 0, "vertex_from": "512", "vertex_to": "850", - "timestamp": "2025-11-27T01:22:00.786527772Z" + "timestamp": "2025-11-27T04:02:17.352802-08:00" }, { "operation": "add_edge", - "rtt_ns": 986917, - "rtt_ms": 0.986917, + "rtt_ns": 18000220917, + "rtt_ms": 18000.220917, "checkpoint": 0, "vertex_from": "512", "vertex_to": "692", - "timestamp": "2025-11-27T01:22:00.786528572Z" + "timestamp": "2025-11-27T04:02:17.352822-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119767, - "rtt_ms": 1.119767, + "rtt_ns": 18000524542, + "rtt_ms": 18000.524542, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.786545872Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:02:17.352842-08:00" }, { "operation": "add_edge", - "rtt_ns": 922817, - "rtt_ms": 0.922817, + "rtt_ns": 18000590584, + "rtt_ms": 18000.590584, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "775", - "timestamp": "2025-11-27T01:22:00.786586592Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.352845-08:00" }, { "operation": "add_edge", - "rtt_ns": 895127, - "rtt_ms": 0.895127, + "rtt_ns": 18000267917, + "rtt_ms": 18000.267917, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "946", - "timestamp": "2025-11-27T01:22:00.786617351Z" + "vertex_to": "773", + "timestamp": "2025-11-27T04:02:17.352883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047946, - "rtt_ms": 1.047946, + "rtt_ns": 18000302375, + "rtt_ms": 18000.302375, "checkpoint": 0, "vertex_from": "512", "vertex_to": "963", - "timestamp": "2025-11-27T01:22:00.786624611Z" + "timestamp": "2025-11-27T04:02:17.352913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1264635, - "rtt_ms": 1.264635, + "rtt_ns": 8451956458, + "rtt_ms": 8451.956458, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.786626361Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:02:17.352965-08:00" }, { "operation": "add_edge", - "rtt_ns": 948627, - "rtt_ms": 0.948627, + "rtt_ns": 18000387125, + "rtt_ms": 18000.387125, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.786710241Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.352981-08:00" }, { "operation": "add_edge", - "rtt_ns": 1233326, - "rtt_ms": 1.233326, + "rtt_ns": 3441333, + "rtt_ms": 3.441333, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "773", - "timestamp": "2025-11-27T01:22:00.786839321Z" + "vertex_to": "590", + "timestamp": "2025-11-27T04:02:17.356267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1689315, - "rtt_ms": 1.689315, + "rtt_ns": 3673417, + "rtt_ms": 3.673417, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.787428609Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:02:17.356428-08:00" }, { "operation": "add_edge", - "rtt_ns": 994336, - "rtt_ms": 0.994336, + "rtt_ns": 3765208, + "rtt_ms": 3.765208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "590", - "timestamp": "2025-11-27T01:22:00.787542528Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.356612-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108246, - "rtt_ms": 1.108246, + "rtt_ns": 3967333, + "rtt_ms": 3.967333, "checkpoint": 0, "vertex_from": "512", "vertex_to": "699", - "timestamp": "2025-11-27T01:22:00.787639348Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1356835, - "rtt_ms": 1.356835, - "checkpoint": 0, - "vertex_from": "512", - "vertex_to": "779", - "timestamp": "2025-11-27T01:22:00.787945127Z" + "timestamp": "2025-11-27T04:02:17.356772-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349766, - "rtt_ms": 1.349766, + "rtt_ns": 3999083, + "rtt_ms": 3.999083, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.787976097Z" + "vertex_to": "917", + "timestamp": "2025-11-27T04:02:17.356982-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431576, - "rtt_ms": 1.431576, + "rtt_ns": 4224875, + "rtt_ms": 4.224875, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "523", - "timestamp": "2025-11-27T01:22:00.788059607Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:02:17.357192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1537545, - "rtt_ms": 1.537545, + "rtt_ns": 4660250, + "rtt_ms": 4.66025, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.788067157Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.357347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398136, - "rtt_ms": 1.398136, + "rtt_ns": 4527500, + "rtt_ms": 4.5275, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "838", - "timestamp": "2025-11-27T01:22:00.788109917Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:02:17.357373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356375, - "rtt_ms": 1.356375, + "rtt_ns": 4553750, + "rtt_ms": 4.55375, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "917", - "timestamp": "2025-11-27T01:22:00.788197046Z" + "vertex_to": "523", + "timestamp": "2025-11-27T04:02:17.357469-08:00" }, { "operation": "add_edge", - "rtt_ns": 829347, - "rtt_ms": 0.829347, + "rtt_ns": 4809208, + "rtt_ms": 4.809208, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "739", - "timestamp": "2025-11-27T01:22:00.788259846Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.357694-08:00" }, { "operation": "add_edge", - "rtt_ns": 737498, - "rtt_ms": 0.737498, + "rtt_ns": 4311750, + "rtt_ms": 4.31175, "checkpoint": 0, "vertex_from": "512", "vertex_to": "948", - "timestamp": "2025-11-27T01:22:00.788281846Z" + "timestamp": "2025-11-27T04:02:17.360742-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669085, - "rtt_ms": 1.669085, + "rtt_ns": 4518792, + "rtt_ms": 4.518792, "checkpoint": 0, "vertex_from": "512", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.788288576Z" + "vertex_to": "739", + "timestamp": "2025-11-27T04:02:17.36079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1067887, - "rtt_ms": 1.067887, + "rtt_ns": 4261041, + "rtt_ms": 4.261041, "checkpoint": 0, "vertex_from": "512", "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.788708485Z" + "timestamp": "2025-11-27T04:02:17.360878-08:00" }, { "operation": "add_edge", - "rtt_ns": 881287, - "rtt_ms": 0.881287, + "rtt_ns": 4346500, + "rtt_ms": 4.3465, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.788858624Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.361121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128396, - "rtt_ms": 1.128396, + "rtt_ns": 4297667, + "rtt_ms": 4.297667, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.789196803Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.361282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1142046, - "rtt_ms": 1.142046, + "rtt_ns": 4407167, + "rtt_ms": 4.407167, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.789204223Z" + "vertex_to": "515", + "timestamp": "2025-11-27T04:02:17.361782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1642375, - "rtt_ms": 1.642375, + "rtt_ns": 4503083, + "rtt_ms": 4.503083, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.789589632Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.361852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591225, - "rtt_ms": 1.591225, + "rtt_ns": 4865708, + "rtt_ms": 4.865708, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "598", - "timestamp": "2025-11-27T01:22:00.789789811Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.362061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551135, - "rtt_ms": 1.551135, + "rtt_ns": 4575291, + "rtt_ms": 4.575291, "checkpoint": 0, "vertex_from": "513", "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.789812031Z" + "timestamp": "2025-11-27T04:02:17.362271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104456, - "rtt_ms": 1.104456, + "rtt_ns": 4854292, + "rtt_ms": 4.854292, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.789814621Z" + "vertex_to": "598", + "timestamp": "2025-11-27T04:02:17.362325-08:00" }, { "operation": "add_edge", - "rtt_ns": 1717184, - "rtt_ms": 1.717184, + "rtt_ns": 4008708, + "rtt_ms": 4.008708, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "515", - "timestamp": "2025-11-27T01:22:00.789828641Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:02:17.364888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545415, - "rtt_ms": 1.545415, + "rtt_ns": 4272417, + "rtt_ms": 4.272417, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.789835341Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:02:17.365017-08:00" }, { "operation": "add_edge", - "rtt_ns": 1590045, - "rtt_ms": 1.590045, + "rtt_ns": 4302625, + "rtt_ms": 4.302625, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.789873621Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:02:17.365587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489475, - "rtt_ms": 1.489475, + "rtt_ns": 4838375, + "rtt_ms": 4.838375, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.790687088Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:02:17.365634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1173086, - "rtt_ms": 1.173086, + "rtt_ns": 4628417, + "rtt_ms": 4.628417, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.790763448Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.365751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930394, - "rtt_ms": 1.930394, + "rtt_ns": 3936041, + "rtt_ms": 3.936041, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.790789738Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.36579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016907, - "rtt_ms": 1.016907, + "rtt_ns": 4520125, + "rtt_ms": 4.520125, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.790807308Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:02:17.366304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1623375, - "rtt_ms": 1.623375, + "rtt_ns": 4130334, + "rtt_ms": 4.130334, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.790829408Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:02:17.366458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530445, - "rtt_ms": 1.530445, + "rtt_ns": 4543375, + "rtt_ms": 4.543375, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.791404936Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.366606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604555, - "rtt_ms": 1.604555, + "rtt_ns": 4352625, + "rtt_ms": 4.352625, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.791420246Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.366626-08:00" }, { "operation": "add_edge", - "rtt_ns": 1594175, - "rtt_ms": 1.594175, + "rtt_ns": 4170125, + "rtt_ms": 4.170125, "checkpoint": 0, "vertex_from": "513", "vertex_to": "525", - "timestamp": "2025-11-27T01:22:00.791430376Z" + "timestamp": "2025-11-27T04:02:17.36919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1633975, - "rtt_ms": 1.633975, + "rtt_ns": 4420500, + "rtt_ms": 4.4205, "checkpoint": 0, "vertex_from": "513", "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.791464156Z" + "timestamp": "2025-11-27T04:02:17.369312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694245, - "rtt_ms": 1.694245, + "rtt_ns": 4168625, + "rtt_ms": 4.168625, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.791507776Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:02:17.369804-08:00" }, { "operation": "add_edge", - "rtt_ns": 927947, - "rtt_ms": 0.927947, + "rtt_ns": 4325375, + "rtt_ms": 4.325375, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.791616045Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:02:17.369915-08:00" }, { "operation": "add_edge", - "rtt_ns": 896527, - "rtt_ms": 0.896527, + "rtt_ns": 4255792, + "rtt_ms": 4.255792, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.791706025Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:02:17.370009-08:00" }, { "operation": "add_edge", - "rtt_ns": 1064777, - "rtt_ms": 1.064777, + "rtt_ns": 4297209, + "rtt_ms": 4.297209, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.791829275Z" + "vertex_to": "903", + "timestamp": "2025-11-27T04:02:17.370089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077437, - "rtt_ms": 1.077437, + "rtt_ns": 4494750, + "rtt_ms": 4.49475, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.792483643Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:02:17.370801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659815, - "rtt_ms": 1.659815, + "rtt_ns": 4478375, + "rtt_ms": 4.478375, "checkpoint": 0, "vertex_from": "513", "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.792490643Z" + "timestamp": "2025-11-27T04:02:17.370939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108316, - "rtt_ms": 1.108316, + "rtt_ns": 4340708, + "rtt_ms": 4.340708, "checkpoint": 0, "vertex_from": "513", "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.792529802Z" + "timestamp": "2025-11-27T04:02:17.370968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1101646, - "rtt_ms": 1.101646, + "rtt_ns": 4470333, + "rtt_ms": 4.470333, + "checkpoint": 0, + "vertex_from": "513", + "vertex_to": "564", + "timestamp": "2025-11-27T04:02:17.371079-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 4290834, + "rtt_ms": 4.290834, "checkpoint": 0, "vertex_from": "513", "vertex_to": "992", - "timestamp": "2025-11-27T01:22:00.792566962Z" + "timestamp": "2025-11-27T04:02:17.373605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1065556, - "rtt_ms": 1.065556, + "rtt_ns": 4505625, + "rtt_ms": 4.505625, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.792574562Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:02:17.373697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1872334, - "rtt_ms": 1.872334, + "rtt_ns": 4500834, + "rtt_ms": 4.500834, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "903", - "timestamp": "2025-11-27T01:22:00.792663772Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.374308-08:00" }, { "operation": "add_edge", - "rtt_ns": 980067, - "rtt_ms": 0.980067, + "rtt_ns": 4382542, + "rtt_ms": 4.382542, "checkpoint": 0, "vertex_from": "513", "vertex_to": "562", - "timestamp": "2025-11-27T01:22:00.792687472Z" + "timestamp": "2025-11-27T04:02:17.374393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1073477, - "rtt_ms": 1.073477, + "rtt_ns": 4543834, + "rtt_ms": 4.543834, "checkpoint": 0, "vertex_from": "513", "vertex_to": "806", - "timestamp": "2025-11-27T01:22:00.792690772Z" + "timestamp": "2025-11-27T04:02:17.37446-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282796, - "rtt_ms": 1.282796, + "rtt_ns": 4464375, + "rtt_ms": 4.464375, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.792715052Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:02:17.374556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485395, - "rtt_ms": 1.485395, + "rtt_ns": 3783625, + "rtt_ms": 3.783625, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.79331571Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.374586-08:00" }, { "operation": "add_edge", - "rtt_ns": 1378026, - "rtt_ms": 1.378026, + "rtt_ns": 4359583, + "rtt_ms": 4.359583, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.793945698Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:02:17.37533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1498116, - "rtt_ms": 1.498116, + "rtt_ns": 4287125, + "rtt_ms": 4.287125, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.794029168Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:02:17.375368-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792804, - "rtt_ms": 1.792804, + "rtt_ns": 4461042, + "rtt_ms": 4.461042, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.794457276Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:02:17.375402-08:00" }, { "operation": "add_edge", - "rtt_ns": 1806744, - "rtt_ms": 1.806744, + "rtt_ns": 4075542, + "rtt_ms": 4.075542, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.794523606Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:02:17.377778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1958304, - "rtt_ms": 1.958304, + "rtt_ns": 4384208, + "rtt_ms": 4.384208, "checkpoint": 0, "vertex_from": "513", "vertex_to": "690", - "timestamp": "2025-11-27T01:22:00.794534546Z" + "timestamp": "2025-11-27T04:02:17.377993-08:00" }, { "operation": "add_edge", - "rtt_ns": 2071463, - "rtt_ms": 2.071463, + "rtt_ns": 4243709, + "rtt_ms": 4.243709, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.794565436Z" + "vertex_to": "566", + "timestamp": "2025-11-27T04:02:17.378554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423855, - "rtt_ms": 1.423855, + "rtt_ns": 4104542, + "rtt_ms": 4.104542, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "568", - "timestamp": "2025-11-27T01:22:00.794740895Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:02:17.378567-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089083, - "rtt_ms": 2.089083, + "rtt_ns": 4254500, + "rtt_ms": 4.2545, "checkpoint": 0, "vertex_from": "513", "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.794781035Z" + "timestamp": "2025-11-27T04:02:17.37865-08:00" }, { "operation": "add_edge", - "rtt_ns": 2096093, - "rtt_ms": 2.096093, + "rtt_ns": 4156041, + "rtt_ms": 4.156041, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "566", - "timestamp": "2025-11-27T01:22:00.794784655Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:02:17.378744-08:00" }, { "operation": "add_edge", - "rtt_ns": 2326732, - "rtt_ms": 2.326732, + "rtt_ns": 4314500, + "rtt_ms": 4.3145, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.794811585Z" + "vertex_to": "568", + "timestamp": "2025-11-27T04:02:17.378872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1482745, - "rtt_ms": 1.482745, + "rtt_ns": 4025875, + "rtt_ms": 4.025875, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.795512773Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.379429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627145, - "rtt_ms": 1.627145, + "rtt_ns": 4134583, + "rtt_ms": 4.134583, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.795573853Z" + "vertex_to": "779", + "timestamp": "2025-11-27T04:02:17.379504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522156, - "rtt_ms": 1.522156, + "rtt_ns": 4193250, + "rtt_ms": 4.19325, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "779", - "timestamp": "2025-11-27T01:22:00.795981662Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.379525-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493605, - "rtt_ms": 1.493605, + "rtt_ns": 3390208, + "rtt_ms": 3.390208, "checkpoint": 0, "vertex_from": "513", "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.796060451Z" + "timestamp": "2025-11-27T04:02:17.381386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366536, - "rtt_ms": 1.366536, + "rtt_ns": 3655167, + "rtt_ms": 3.655167, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.796148631Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:02:17.381434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613045, - "rtt_ms": 1.613045, + "rtt_ns": 3115916, + "rtt_ms": 3.115916, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.796149111Z" + "vertex_to": "682", + "timestamp": "2025-11-27T04:02:17.381768-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741355, - "rtt_ms": 1.741355, + "rtt_ns": 3220583, + "rtt_ms": 3.220583, "checkpoint": 0, "vertex_from": "513", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.796267821Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:02:17.381776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1493666, - "rtt_ms": 1.493666, + "rtt_ns": 3411875, + "rtt_ms": 3.411875, "checkpoint": 0, - "vertex_from": "514", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.796306651Z" + "vertex_from": "513", + "vertex_to": "532", + "timestamp": "2025-11-27T04:02:17.38198-08:00" }, { "operation": "add_edge", - "rtt_ns": 832017, - "rtt_ms": 0.832017, + "rtt_ns": 3163667, + "rtt_ms": 3.163667, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "806", - "timestamp": "2025-11-27T01:22:00.796814679Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:02:17.382037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1262966, - "rtt_ms": 1.262966, + "rtt_ns": 3334000, + "rtt_ms": 3.334, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.796839089Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.382079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1335896, - "rtt_ms": 1.335896, + "rtt_ns": 2668125, + "rtt_ms": 2.668125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.796849739Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:02:17.382195-08:00" }, { "operation": "add_edge", - "rtt_ns": 2093944, - "rtt_ms": 2.093944, + "rtt_ns": 3132125, + "rtt_ms": 3.132125, "checkpoint": 0, - "vertex_from": "513", - "vertex_to": "682", - "timestamp": "2025-11-27T01:22:00.796880619Z" + "vertex_from": "514", + "vertex_to": "705", + "timestamp": "2025-11-27T04:02:17.382564-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241273, - "rtt_ms": 2.241273, + "rtt_ns": 3461209, + "rtt_ms": 3.461209, "checkpoint": 0, - "vertex_from": "513", - "vertex_to": "812", - "timestamp": "2025-11-27T01:22:00.796984348Z" + "vertex_from": "514", + "vertex_to": "806", + "timestamp": "2025-11-27T04:02:17.382967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578385, - "rtt_ms": 1.578385, + "rtt_ns": 3150458, + "rtt_ms": 3.150458, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.797728396Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.384539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486865, - "rtt_ms": 1.486865, + "rtt_ns": 2798167, + "rtt_ms": 2.798167, "checkpoint": 0, "vertex_from": "514", "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.797756236Z" + "timestamp": "2025-11-27T04:02:17.384568-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455835, - "rtt_ms": 1.455835, + "rtt_ns": 3156375, + "rtt_ms": 3.156375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "595", - "timestamp": "2025-11-27T01:22:00.797763426Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.384592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1719785, - "rtt_ms": 1.719785, + "rtt_ns": 2845500, + "rtt_ms": 2.8455, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.797781226Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:02:17.384624-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657045, - "rtt_ms": 1.657045, + "rtt_ns": 2448500, + "rtt_ms": 2.4485, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.797806576Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:02:17.384645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1141916, - "rtt_ms": 1.141916, + "rtt_ns": 2169167, + "rtt_ms": 2.169167, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.797960065Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:02:17.384735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1891454, - "rtt_ms": 1.891454, + "rtt_ns": 2801542, + "rtt_ms": 2.801542, "checkpoint": 0, "vertex_from": "514", "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.798732463Z" + "timestamp": "2025-11-27T04:02:17.38484-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074956, - "rtt_ms": 1.074956, + "rtt_ns": 2941042, + "rtt_ms": 2.941042, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.798857472Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.385022-08:00" }, { "operation": "add_edge", - "rtt_ns": 2012973, - "rtt_ms": 2.012973, + "rtt_ns": 3074916, + "rtt_ms": 3.074916, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.798894242Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:02:17.385057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165586, - "rtt_ms": 1.165586, + "rtt_ns": 3346958, + "rtt_ms": 3.346958, "checkpoint": 0, "vertex_from": "514", "vertex_to": "618", - "timestamp": "2025-11-27T01:22:00.798896062Z" + "timestamp": "2025-11-27T04:02:17.386319-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098163, - "rtt_ms": 2.098163, + "rtt_ns": 2108250, + "rtt_ms": 2.10825, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.798948732Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:02:17.386755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1202126, - "rtt_ms": 1.202126, + "rtt_ns": 2129917, + "rtt_ms": 2.129917, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.798966682Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:02:17.386755-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207216, - "rtt_ms": 1.207216, + "rtt_ns": 2717125, + "rtt_ms": 2.717125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.798966952Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.387286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1989464, - "rtt_ms": 1.989464, + "rtt_ns": 2255834, + "rtt_ms": 2.255834, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.798975202Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:02:17.387314-08:00" }, { "operation": "add_edge", - "rtt_ns": 1197876, - "rtt_ms": 1.197876, + "rtt_ns": 2795667, + "rtt_ms": 2.795667, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "961", - "timestamp": "2025-11-27T01:22:00.799005832Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:02:17.387337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1209956, - "rtt_ms": 1.209956, + "rtt_ns": 2794625, + "rtt_ms": 2.794625, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "850", - "timestamp": "2025-11-27T01:22:00.799171251Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.387533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1351546, - "rtt_ms": 1.351546, + "rtt_ns": 2692125, + "rtt_ms": 2.692125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "562", - "timestamp": "2025-11-27T01:22:00.800248418Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:02:17.387534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422906, - "rtt_ms": 1.422906, + "rtt_ns": 2967125, + "rtt_ms": 2.967125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.800318358Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.38756-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370706, - "rtt_ms": 1.370706, + "rtt_ns": 2680917, + "rtt_ms": 2.680917, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.800320138Z" + "vertex_to": "521", + "timestamp": "2025-11-27T04:02:17.387705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354676, - "rtt_ms": 1.354676, + "rtt_ns": 2485333, + "rtt_ms": 2.485333, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "668", - "timestamp": "2025-11-27T01:22:00.800322348Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:02:17.388806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389326, - "rtt_ms": 1.389326, + "rtt_ns": 2733458, + "rtt_ms": 2.733458, "checkpoint": 0, "vertex_from": "514", "vertex_to": "888", - "timestamp": "2025-11-27T01:22:00.800357468Z" + "timestamp": "2025-11-27T04:02:17.389491-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472375, - "rtt_ms": 1.472375, + "rtt_ns": 2177458, + "rtt_ms": 2.177458, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.800450157Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.389516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1455345, - "rtt_ms": 1.455345, + "rtt_ns": 2361208, + "rtt_ms": 2.361208, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.800462287Z" + "vertex_to": "923", + "timestamp": "2025-11-27T04:02:17.389896-08:00" }, { "operation": "add_edge", - "rtt_ns": 3245639, - "rtt_ms": 3.245639, + "rtt_ns": 2211458, + "rtt_ms": 2.211458, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.801978902Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:02:17.389918-08:00" }, { "operation": "add_edge", - "rtt_ns": 2816651, - "rtt_ms": 2.816651, + "rtt_ns": 2606750, + "rtt_ms": 2.60675, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.801988572Z" + "vertex_to": "537", + "timestamp": "2025-11-27T04:02:17.389922-08:00" }, { "operation": "add_edge", - "rtt_ns": 3140390, - "rtt_ms": 3.14039, + "rtt_ns": 2375625, + "rtt_ms": 2.375625, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.801999732Z" + "vertex_to": "547", + "timestamp": "2025-11-27T04:02:17.389937-08:00" }, { "operation": "add_edge", - "rtt_ns": 2258792, - "rtt_ms": 2.258792, + "rtt_ns": 2424167, + "rtt_ms": 2.424167, "checkpoint": 0, "vertex_from": "514", "vertex_to": "872", - "timestamp": "2025-11-27T01:22:00.80250862Z" + "timestamp": "2025-11-27T04:02:17.389959-08:00" }, { "operation": "add_edge", - "rtt_ns": 2144803, - "rtt_ms": 2.144803, + "rtt_ns": 2691542, + "rtt_ms": 2.691542, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.80259608Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.389979-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164123, - "rtt_ms": 2.164123, + "rtt_ns": 3225708, + "rtt_ms": 3.225708, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.80262724Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:02:17.389984-08:00" }, { "operation": "add_edge", - "rtt_ns": 2903230, - "rtt_ms": 2.90323, + "rtt_ns": 2684833, + "rtt_ms": 2.684833, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "923", - "timestamp": "2025-11-27T01:22:00.803223128Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:02:17.391493-08:00" }, { "operation": "add_edge", - "rtt_ns": 2985660, - "rtt_ms": 2.98566, + "rtt_ns": 1659458, + "rtt_ms": 1.659458, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.803309098Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:02:17.391584-08:00" }, { "operation": "add_edge", - "rtt_ns": 2996030, - "rtt_ms": 2.99603, + "rtt_ns": 2210125, + "rtt_ms": 2.210125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.803317588Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.391727-08:00" }, { "operation": "add_edge", - "rtt_ns": 2971790, - "rtt_ms": 2.97179, + "rtt_ns": 1891750, + "rtt_ms": 1.89175, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.803330328Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:02:17.39181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1629545, - "rtt_ms": 1.629545, + "rtt_ns": 2341875, + "rtt_ms": 2.341875, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.803636347Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:02:17.391835-08:00" }, { "operation": "add_edge", - "rtt_ns": 1763984, - "rtt_ms": 1.763984, + "rtt_ns": 2194792, + "rtt_ms": 2.194792, "checkpoint": 0, "vertex_from": "514", "vertex_to": "526", - "timestamp": "2025-11-27T01:22:00.803750216Z" + "timestamp": "2025-11-27T04:02:17.392092-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785284, - "rtt_ms": 1.785284, + "rtt_ns": 2326125, + "rtt_ms": 2.326125, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "626", - "timestamp": "2025-11-27T01:22:00.803776496Z" + "vertex_to": "690", + "timestamp": "2025-11-27T04:02:17.392312-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155236, - "rtt_ms": 1.155236, + "rtt_ns": 2653209, + "rtt_ms": 2.653209, "checkpoint": 0, "vertex_from": "514", "vertex_to": "600", - "timestamp": "2025-11-27T01:22:00.803787506Z" + "timestamp": "2025-11-27T04:02:17.392633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1278896, - "rtt_ms": 1.278896, + "rtt_ns": 2790083, + "rtt_ms": 2.790083, "checkpoint": 0, "vertex_from": "514", "vertex_to": "609", - "timestamp": "2025-11-27T01:22:00.803790036Z" + "timestamp": "2025-11-27T04:02:17.392728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1226826, - "rtt_ms": 1.226826, + "rtt_ns": 2780750, + "rtt_ms": 2.78075, "checkpoint": 0, "vertex_from": "514", "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.803824536Z" + "timestamp": "2025-11-27T04:02:17.392741-08:00" }, { "operation": "add_edge", - "rtt_ns": 764637, - "rtt_ms": 0.764637, + "rtt_ns": 2709708, + "rtt_ms": 2.709708, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "690", - "timestamp": "2025-11-27T01:22:00.803990345Z" - }, - { - "operation": "add_edge", - "rtt_ns": 834007, - "rtt_ms": 0.834007, - "checkpoint": 0, - "vertex_from": "514", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.804154165Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:02:17.394546-08:00" }, { "operation": "add_edge", - "rtt_ns": 891197, - "rtt_ms": 0.891197, + "rtt_ns": 2842042, + "rtt_ms": 2.842042, "checkpoint": 0, "vertex_from": "514", "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.804224305Z" + "timestamp": "2025-11-27T04:02:17.39457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1552895, - "rtt_ms": 1.552895, + "rtt_ns": 3354625, + "rtt_ms": 3.354625, "checkpoint": 0, "vertex_from": "514", "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.804863463Z" + "timestamp": "2025-11-27T04:02:17.394849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1114677, - "rtt_ms": 1.114677, + "rtt_ns": 3265375, + "rtt_ms": 3.265375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.804867053Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.394852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1107417, - "rtt_ms": 1.107417, + "rtt_ns": 3060750, + "rtt_ms": 3.06075, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "698", - "timestamp": "2025-11-27T01:22:00.804903053Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:02:17.394872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128307, - "rtt_ms": 1.128307, + "rtt_ns": 3042584, + "rtt_ms": 3.042584, "checkpoint": 0, "vertex_from": "514", "vertex_to": "906", - "timestamp": "2025-11-27T01:22:00.804907043Z" + "timestamp": "2025-11-27T04:02:17.395137-08:00" }, { "operation": "add_edge", - "rtt_ns": 1247226, - "rtt_ms": 1.247226, + "rtt_ns": 2432875, + "rtt_ms": 2.432875, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.805036072Z" + "vertex_to": "728", + "timestamp": "2025-11-27T04:02:17.395162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1743474, - "rtt_ms": 1.743474, + "rtt_ns": 2887375, + "rtt_ms": 2.887375, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "728", - "timestamp": "2025-11-27T01:22:00.80557002Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:02:17.395204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1933933, - "rtt_ms": 1.933933, + "rtt_ns": 2585083, + "rtt_ms": 2.585083, "checkpoint": 0, "vertex_from": "514", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.80557241Z" + "vertex_to": "698", + "timestamp": "2025-11-27T04:02:17.39522-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610715, - "rtt_ms": 1.610715, + "rtt_ns": 2503042, + "rtt_ms": 2.503042, "checkpoint": 0, "vertex_from": "515", "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.80560309Z" + "timestamp": "2025-11-27T04:02:17.395247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565135, - "rtt_ms": 1.565135, + "rtt_ns": 2088667, + "rtt_ms": 2.088667, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.80579235Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:02:17.39694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659455, - "rtt_ms": 1.659455, + "rtt_ns": 2474500, + "rtt_ms": 2.4745, "checkpoint": 0, "vertex_from": "515", "vertex_to": "931", - "timestamp": "2025-11-27T01:22:00.80581547Z" + "timestamp": "2025-11-27T04:02:17.397022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826044, - "rtt_ms": 1.826044, + "rtt_ns": 2202208, + "rtt_ms": 2.202208, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.806692717Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.397055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1812215, - "rtt_ms": 1.812215, + "rtt_ns": 2278917, + "rtt_ms": 2.278917, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "568", - "timestamp": "2025-11-27T01:22:00.806721887Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:02:17.397152-08:00" }, { "operation": "add_edge", - "rtt_ns": 943787, - "rtt_ms": 0.943787, + "rtt_ns": 2646292, + "rtt_ms": 2.646292, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.806760857Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.397218-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897524, - "rtt_ms": 1.897524, + "rtt_ns": 2192833, + "rtt_ms": 2.192833, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.806766907Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:02:17.397414-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2311084, + "rtt_ms": 2.311084, + "checkpoint": 0, + "vertex_from": "515", + "vertex_to": "568", + "timestamp": "2025-11-27T04:02:17.397451-08:00" }, { "operation": "add_edge", - "rtt_ns": 1210607, - "rtt_ms": 1.210607, + "rtt_ns": 2327584, + "rtt_ms": 2.327584, "checkpoint": 0, "vertex_from": "515", "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.806783867Z" + "timestamp": "2025-11-27T04:02:17.397533-08:00" }, { "operation": "add_edge", - "rtt_ns": 1184187, - "rtt_ms": 1.184187, + "rtt_ns": 2416167, + "rtt_ms": 2.416167, "checkpoint": 0, "vertex_from": "515", "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.806789017Z" + "timestamp": "2025-11-27T04:02:17.397666-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753805, - "rtt_ms": 1.753805, + "rtt_ns": 2766625, + "rtt_ms": 2.766625, "checkpoint": 0, "vertex_from": "515", "vertex_to": "556", - "timestamp": "2025-11-27T01:22:00.806791667Z" + "timestamp": "2025-11-27T04:02:17.397931-08:00" }, { "operation": "add_edge", - "rtt_ns": 1978533, - "rtt_ms": 1.978533, + "rtt_ns": 2156875, + "rtt_ms": 2.156875, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "835", - "timestamp": "2025-11-27T01:22:00.806884216Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.39922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352466, - "rtt_ms": 1.352466, + "rtt_ns": 1850709, + "rtt_ms": 1.850709, "checkpoint": 0, - "vertex_from": "515", - "vertex_to": "595", - "timestamp": "2025-11-27T01:22:00.806927066Z" + "vertex_from": "516", + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.399303-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808654, - "rtt_ms": 1.808654, + "rtt_ns": 2207042, + "rtt_ms": 2.207042, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "664", - "timestamp": "2025-11-27T01:22:00.807602794Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.399361-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253086, - "rtt_ms": 1.253086, + "rtt_ns": 2443375, + "rtt_ms": 2.443375, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.807976663Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:02:17.399386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1452075, - "rtt_ms": 1.452075, + "rtt_ns": 1981042, + "rtt_ms": 1.981042, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.808147992Z" + "vertex_to": "516", + "timestamp": "2025-11-27T04:02:17.399397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458095, - "rtt_ms": 1.458095, + "rtt_ns": 2446000, + "rtt_ms": 2.446, "checkpoint": 0, "vertex_from": "515", - "vertex_to": "516", - "timestamp": "2025-11-27T01:22:00.808226472Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.39947-08:00" }, { "operation": "add_edge", - "rtt_ns": 1456135, - "rtt_ms": 1.456135, + "rtt_ns": 1947917, + "rtt_ms": 1.947917, "checkpoint": 0, "vertex_from": "516", "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.808246952Z" + "timestamp": "2025-11-27T04:02:17.399482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1526485, - "rtt_ms": 1.526485, + "rtt_ns": 2330000, + "rtt_ms": 2.33, "checkpoint": 0, - "vertex_from": "516", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.808311962Z" + "vertex_from": "515", + "vertex_to": "522", + "timestamp": "2025-11-27T04:02:17.39955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1405546, - "rtt_ms": 1.405546, + "rtt_ns": 1947500, + "rtt_ms": 1.9475, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.808333602Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1600215, - "rtt_ms": 1.600215, - "checkpoint": 0, - "vertex_from": "515", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.808362692Z" + "vertex_to": "534", + "timestamp": "2025-11-27T04:02:17.399879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619934, - "rtt_ms": 1.619934, + "rtt_ns": 2187333, + "rtt_ms": 2.187333, "checkpoint": 0, "vertex_from": "516", "vertex_to": "521", - "timestamp": "2025-11-27T01:22:00.808412841Z" + "timestamp": "2025-11-27T04:02:17.399891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560345, - "rtt_ms": 1.560345, + "rtt_ns": 1976583, + "rtt_ms": 1.976583, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "534", - "timestamp": "2025-11-27T01:22:00.808446741Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.401199-08:00" }, { "operation": "add_edge", - "rtt_ns": 864457, - "rtt_ms": 0.864457, + "rtt_ns": 1911958, + "rtt_ms": 1.911958, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.808468981Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:02:17.401275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974154, - "rtt_ms": 1.974154, + "rtt_ns": 2101750, + "rtt_ms": 2.10175, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.809952137Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.401407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998984, - "rtt_ms": 1.998984, + "rtt_ns": 2240625, + "rtt_ms": 2.240625, "checkpoint": 0, "vertex_from": "516", "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.810148276Z" + "timestamp": "2025-11-27T04:02:17.401628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1981724, - "rtt_ms": 1.981724, + "rtt_ns": 2078834, + "rtt_ms": 2.078834, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "920", - "timestamp": "2025-11-27T01:22:00.810209356Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.40163-08:00" }, { "operation": "add_edge", - "rtt_ns": 2619721, - "rtt_ms": 2.619721, + "rtt_ns": 2180917, + "rtt_ms": 2.180917, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "518", - "timestamp": "2025-11-27T01:22:00.810932503Z" + "vertex_to": "647", + "timestamp": "2025-11-27T04:02:17.401652-08:00" }, { "operation": "add_edge", - "rtt_ns": 2635101, - "rtt_ms": 2.635101, + "rtt_ns": 2305375, + "rtt_ms": 2.305375, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.810970073Z" + "vertex_to": "920", + "timestamp": "2025-11-27T04:02:17.401705-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018406, - "rtt_ms": 1.018406, + "rtt_ns": 1941375, + "rtt_ms": 1.941375, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "740", - "timestamp": "2025-11-27T01:22:00.810972163Z" + "vertex_to": "906", + "timestamp": "2025-11-27T04:02:17.401833-08:00" }, { "operation": "add_edge", - "rtt_ns": 2736911, - "rtt_ms": 2.736911, + "rtt_ns": 2015125, + "rtt_ms": 2.015125, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "647", - "timestamp": "2025-11-27T01:22:00.810986773Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.401896-08:00" }, { "operation": "add_edge", - "rtt_ns": 2545032, - "rtt_ms": 2.545032, + "rtt_ns": 2432417, + "rtt_ms": 2.432417, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.810992553Z" + "vertex_to": "518", + "timestamp": "2025-11-27T04:02:17.401915-08:00" }, { "operation": "add_edge", - "rtt_ns": 2630881, - "rtt_ms": 2.630881, + "rtt_ns": 1785250, + "rtt_ms": 1.78525, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.810995133Z" + "vertex_to": "740", + "timestamp": "2025-11-27T04:02:17.403194-08:00" }, { "operation": "add_edge", - "rtt_ns": 2539392, - "rtt_ms": 2.539392, + "rtt_ns": 2109875, + "rtt_ms": 2.109875, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "661", - "timestamp": "2025-11-27T01:22:00.811009363Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.40331-08:00" }, { "operation": "add_edge", - "rtt_ns": 2628902, - "rtt_ms": 2.628902, + "rtt_ns": 1818792, + "rtt_ms": 1.818792, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "906", - "timestamp": "2025-11-27T01:22:00.811042533Z" + "vertex_to": "882", + "timestamp": "2025-11-27T04:02:17.403472-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752994, - "rtt_ms": 1.752994, + "rtt_ns": 1866333, + "rtt_ms": 1.866333, "checkpoint": 0, "vertex_from": "516", "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.81196307Z" + "timestamp": "2025-11-27T04:02:17.403498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1837624, - "rtt_ms": 1.837624, + "rtt_ns": 2231875, + "rtt_ms": 2.231875, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.81198752Z" + "vertex_to": "661", + "timestamp": "2025-11-27T04:02:17.40351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119597, - "rtt_ms": 1.119597, + "rtt_ns": 2141292, + "rtt_ms": 2.141292, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "882", - "timestamp": "2025-11-27T01:22:00.81205357Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.403771-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512725, - "rtt_ms": 1.512725, + "rtt_ns": 1927125, + "rtt_ms": 1.927125, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.812555988Z" + "vertex_to": "585", + "timestamp": "2025-11-27T04:02:17.403844-08:00" }, { "operation": "add_edge", - "rtt_ns": 1637405, - "rtt_ms": 1.637405, + "rtt_ns": 2187750, + "rtt_ms": 2.18775, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.812630758Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:02:17.403894-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770505, - "rtt_ms": 1.770505, + "rtt_ns": 2020000, + "rtt_ms": 2.02, "checkpoint": 0, "vertex_from": "516", "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.812759738Z" + "timestamp": "2025-11-27T04:02:17.403917-08:00" }, { "operation": "add_edge", - "rtt_ns": 1755985, - "rtt_ms": 1.755985, + "rtt_ns": 2130542, + "rtt_ms": 2.130542, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "678", - "timestamp": "2025-11-27T01:22:00.812766558Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.403965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793365, - "rtt_ms": 1.793365, + "rtt_ns": 1771708, + "rtt_ms": 1.771708, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.812766578Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:02:17.405245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1799995, - "rtt_ms": 1.799995, + "rtt_ns": 1959125, + "rtt_ms": 1.959125, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "930", - "timestamp": "2025-11-27T01:22:00.812771398Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:02:17.405271-08:00" }, { "operation": "add_edge", - "rtt_ns": 1781655, - "rtt_ms": 1.781655, + "rtt_ns": 2221625, + "rtt_ms": 2.221625, "checkpoint": 0, "vertex_from": "516", "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.812778118Z" + "timestamp": "2025-11-27T04:02:17.405417-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190776, - "rtt_ms": 1.190776, + "rtt_ns": 1686708, + "rtt_ms": 1.686708, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.813155356Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:02:17.405459-08:00" }, { "operation": "add_edge", - "rtt_ns": 860027, - "rtt_ms": 0.860027, + "rtt_ns": 2087334, + "rtt_ms": 2.087334, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.813629315Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:02:17.405586-08:00" }, { "operation": "add_edge", - "rtt_ns": 917857, - "rtt_ms": 0.917857, + "rtt_ns": 2105208, + "rtt_ms": 2.105208, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "626", - "timestamp": "2025-11-27T01:22:00.813697475Z" + "vertex_to": "838", + "timestamp": "2025-11-27T04:02:17.405618-08:00" }, { "operation": "add_edge", - "rtt_ns": 955727, - "rtt_ms": 0.955727, + "rtt_ns": 1954166, + "rtt_ms": 1.954166, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.813728535Z" + "vertex_to": "535", + "timestamp": "2025-11-27T04:02:17.40585-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692584, - "rtt_ms": 1.692584, + "rtt_ns": 1907584, + "rtt_ms": 1.907584, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.813747604Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:02:17.405873-08:00" }, { "operation": "add_edge", - "rtt_ns": 1821334, - "rtt_ms": 1.821334, + "rtt_ns": 2626375, + "rtt_ms": 2.626375, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "838", - "timestamp": "2025-11-27T01:22:00.813809894Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:02:17.406546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1269206, - "rtt_ms": 1.269206, + "rtt_ns": 2805791, + "rtt_ms": 2.805791, "checkpoint": 0, "vertex_from": "516", "vertex_to": "818", - "timestamp": "2025-11-27T01:22:00.813826424Z" + "timestamp": "2025-11-27T04:02:17.406651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1121006, - "rtt_ms": 1.121006, + "rtt_ns": 1726417, + "rtt_ms": 1.726417, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.813889284Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:02:17.407187-08:00" }, { "operation": "add_edge", - "rtt_ns": 1257716, - "rtt_ms": 1.257716, + "rtt_ns": 2553958, + "rtt_ms": 2.553958, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "535", - "timestamp": "2025-11-27T01:22:00.813889554Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:02:17.407826-08:00" }, { "operation": "add_edge", - "rtt_ns": 1222816, - "rtt_ms": 1.222816, + "rtt_ns": 2263583, + "rtt_ms": 2.263583, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.813983544Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.407851-08:00" }, { "operation": "add_edge", - "rtt_ns": 1077136, - "rtt_ms": 1.077136, + "rtt_ns": 2243625, + "rtt_ms": 2.243625, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.814807871Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.407863-08:00" }, { "operation": "add_edge", - "rtt_ns": 1655585, - "rtt_ms": 1.655585, + "rtt_ns": 2922542, + "rtt_ms": 2.922542, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.814817001Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.408169-08:00" }, { "operation": "add_edge", - "rtt_ns": 1229146, - "rtt_ms": 1.229146, + "rtt_ns": 2770458, + "rtt_ms": 2.770458, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.814859841Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:02:17.408189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074937, - "rtt_ms": 1.074937, + "rtt_ns": 2338125, + "rtt_ms": 2.338125, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.814902931Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:02:17.408189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268316, - "rtt_ms": 1.268316, + "rtt_ns": 1717750, + "rtt_ms": 1.71775, "checkpoint": 0, - "vertex_from": "517", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.81515968Z" + "vertex_from": "516", + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.408267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320126, - "rtt_ms": 1.320126, + "rtt_ns": 1635708, + "rtt_ms": 1.635708, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.81521069Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:02:17.408288-08:00" }, { "operation": "add_edge", - "rtt_ns": 1574655, - "rtt_ms": 1.574655, + "rtt_ns": 2660250, + "rtt_ms": 2.66025, "checkpoint": 0, "vertex_from": "516", "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.815322719Z" + "timestamp": "2025-11-27T04:02:17.408534-08:00" }, { "operation": "add_edge", - "rtt_ns": 1691734, - "rtt_ms": 1.691734, + "rtt_ns": 1570042, + "rtt_ms": 1.570042, "checkpoint": 0, "vertex_from": "516", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.815390189Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:02:17.408758-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649475, - "rtt_ms": 1.649475, + "rtt_ns": 1767208, + "rtt_ms": 1.767208, "checkpoint": 0, - "vertex_from": "516", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.815460779Z" + "vertex_from": "517", + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.409633-08:00" }, { "operation": "add_edge", - "rtt_ns": 1570415, - "rtt_ms": 1.570415, + "rtt_ns": 1832167, + "rtt_ms": 1.832167, "checkpoint": 0, "vertex_from": "517", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.815555699Z" + "timestamp": "2025-11-27T04:02:17.409684-08:00" }, { "operation": "add_edge", - "rtt_ns": 848727, - "rtt_ms": 0.848727, + "rtt_ns": 1729833, + "rtt_ms": 1.729833, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.815657378Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:02:17.410019-08:00" }, { "operation": "add_edge", - "rtt_ns": 805087, - "rtt_ms": 0.805087, + "rtt_ns": 2206417, + "rtt_ms": 2.206417, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.815666718Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.410034-08:00" }, { "operation": "add_edge", - "rtt_ns": 870897, - "rtt_ms": 0.870897, + "rtt_ns": 1878458, + "rtt_ms": 1.878458, "checkpoint": 0, "vertex_from": "517", "vertex_to": "676", - "timestamp": "2025-11-27T01:22:00.815689368Z" + "timestamp": "2025-11-27T04:02:17.410049-08:00" }, { "operation": "add_edge", - "rtt_ns": 807547, - "rtt_ms": 0.807547, + "rtt_ns": 1869833, + "rtt_ms": 1.869833, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.815711818Z" + "vertex_to": "520", + "timestamp": "2025-11-27T04:02:17.410406-08:00" }, { "operation": "add_edge", - "rtt_ns": 645308, - "rtt_ms": 0.645308, + "rtt_ns": 2153416, + "rtt_ms": 2.153416, "checkpoint": 0, "vertex_from": "517", "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.815805498Z" + "timestamp": "2025-11-27T04:02:17.410421-08:00" }, { "operation": "add_edge", - "rtt_ns": 675838, - "rtt_ms": 0.675838, + "rtt_ns": 2242125, + "rtt_ms": 2.242125, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.815888328Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.410433-08:00" }, { "operation": "add_edge", - "rtt_ns": 661278, - "rtt_ms": 0.661278, + "rtt_ns": 2258583, + "rtt_ms": 2.258583, "checkpoint": 0, "vertex_from": "517", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.815984747Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.41045-08:00" }, { "operation": "add_edge", - "rtt_ns": 648848, - "rtt_ms": 0.648848, + "rtt_ns": 1694542, + "rtt_ms": 1.694542, "checkpoint": 0, "vertex_from": "517", "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.816039937Z" + "timestamp": "2025-11-27T04:02:17.410454-08:00" }, { "operation": "add_edge", - "rtt_ns": 700938, - "rtt_ms": 0.700938, + "rtt_ns": 1643584, + "rtt_ms": 1.643584, "checkpoint": 0, - "vertex_from": "517", - "vertex_to": "903", - "timestamp": "2025-11-27T01:22:00.816163187Z" + "vertex_from": "518", + "vertex_to": "778", + "timestamp": "2025-11-27T04:02:17.411331-08:00" }, { "operation": "add_edge", - "rtt_ns": 629488, - "rtt_ms": 0.629488, + "rtt_ns": 1755458, + "rtt_ms": 1.755458, "checkpoint": 0, - "vertex_from": "518", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.816186207Z" + "vertex_from": "517", + "vertex_to": "903", + "timestamp": "2025-11-27T04:02:17.41139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045237, - "rtt_ms": 1.045237, + "rtt_ns": 1733083, + "rtt_ms": 1.733083, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "937", - "timestamp": "2025-11-27T01:22:00.816735625Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.411769-08:00" }, { "operation": "add_edge", - "rtt_ns": 1119066, - "rtt_ms": 1.119066, + "rtt_ns": 1749834, + "rtt_ms": 1.749834, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.816831474Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:02:17.41177-08:00" }, { "operation": "add_edge", - "rtt_ns": 847807, - "rtt_ms": 0.847807, + "rtt_ns": 1914500, + "rtt_ms": 1.9145, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.816833424Z" + "vertex_to": "937", + "timestamp": "2025-11-27T04:02:17.411966-08:00" }, { "operation": "add_edge", - "rtt_ns": 1187226, - "rtt_ms": 1.187226, + "rtt_ns": 1891750, + "rtt_ms": 1.89175, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.816855194Z" + "vertex_to": "556", + "timestamp": "2025-11-27T04:02:17.412347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1239306, - "rtt_ms": 1.239306, + "rtt_ns": 1928042, + "rtt_ms": 1.928042, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.816897754Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.412351-08:00" }, { "operation": "add_edge", - "rtt_ns": 1059276, - "rtt_ms": 1.059276, + "rtt_ns": 1971416, + "rtt_ms": 1.971416, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.816948224Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.412378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248346, - "rtt_ms": 1.248346, + "rtt_ns": 1973125, + "rtt_ms": 1.973125, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.817054654Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:02:17.412424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483355, - "rtt_ms": 1.483355, + "rtt_ns": 2060375, + "rtt_ms": 2.060375, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.817647432Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.412495-08:00" }, { "operation": "add_edge", - "rtt_ns": 1019276, - "rtt_ms": 1.019276, + "rtt_ns": 1603208, + "rtt_ms": 1.603208, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "522", - "timestamp": "2025-11-27T01:22:00.817755821Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:02:17.41357-08:00" }, { "operation": "add_edge", - "rtt_ns": 2089763, - "rtt_ms": 2.089763, + "rtt_ns": 1822916, + "rtt_ms": 1.822916, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "556", - "timestamp": "2025-11-27T01:22:00.81813074Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:02:17.413594-08:00" }, { "operation": "add_edge", - "rtt_ns": 2065933, - "rtt_ms": 2.065933, + "rtt_ns": 2269375, + "rtt_ms": 2.269375, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.81825322Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.413603-08:00" }, { "operation": "add_edge", - "rtt_ns": 1332325, - "rtt_ms": 1.332325, + "rtt_ns": 1850584, + "rtt_ms": 1.850584, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.818390549Z" + "vertex_to": "522", + "timestamp": "2025-11-27T04:02:17.413621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1567215, - "rtt_ms": 1.567215, + "rtt_ns": 2251583, + "rtt_ms": 2.251583, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.818399549Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.413644-08:00" }, { "operation": "add_edge", - "rtt_ns": 2325312, - "rtt_ms": 2.325312, + "rtt_ns": 1767417, + "rtt_ms": 1.767417, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "557", - "timestamp": "2025-11-27T01:22:00.819274386Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.414193-08:00" }, { "operation": "add_edge", - "rtt_ns": 2569422, - "rtt_ms": 2.569422, + "rtt_ns": 1899750, + "rtt_ms": 1.89975, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.819404006Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.414251-08:00" }, { "operation": "add_edge", - "rtt_ns": 2607032, - "rtt_ms": 2.607032, + "rtt_ns": 1923959, + "rtt_ms": 1.923959, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.819465776Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:02:17.414303-08:00" }, { "operation": "add_edge", - "rtt_ns": 3298289, - "rtt_ms": 3.298289, + "rtt_ns": 1982416, + "rtt_ms": 1.982416, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.820196563Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.414331-08:00" }, { "operation": "add_edge", - "rtt_ns": 2605351, - "rtt_ms": 2.605351, + "rtt_ns": 1726000, + "rtt_ms": 1.726, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.820253783Z" + "vertex_to": "679", + "timestamp": "2025-11-27T04:02:17.416178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530135, - "rtt_ms": 1.530135, + "rtt_ns": 1713000, + "rtt_ms": 1.713, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "626", - "timestamp": "2025-11-27T01:22:00.82112356Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:02:17.416178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1542905, - "rtt_ms": 1.542905, + "rtt_ns": 1756917, + "rtt_ms": 1.756917, "checkpoint": 0, "vertex_from": "518", "vertex_to": "523", - "timestamp": "2025-11-27T01:22:00.8211559Z" + "timestamp": "2025-11-27T04:02:17.416204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666274, - "rtt_ms": 1.666274, + "rtt_ns": 1825209, + "rtt_ms": 1.825209, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.82115613Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:02:17.416207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631815, - "rtt_ms": 1.631815, + "rtt_ns": 1792667, + "rtt_ms": 1.792667, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.82116296Z" + "vertex_to": "626", + "timestamp": "2025-11-27T04:02:17.416226-08:00" }, { "operation": "add_edge", - "rtt_ns": 1686564, - "rtt_ms": 1.686564, + "rtt_ns": 1836375, + "rtt_ms": 1.836375, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "844", - "timestamp": "2025-11-27T01:22:00.82117297Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:02:17.416239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1511075, - "rtt_ms": 1.511075, + "rtt_ns": 1757292, + "rtt_ms": 1.757292, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.821766468Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:02:17.416245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1568175, - "rtt_ms": 1.568175, + "rtt_ns": 1870833, + "rtt_ms": 1.870833, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.821767728Z" + "vertex_to": "844", + "timestamp": "2025-11-27T04:02:17.41626-08:00" }, { "operation": "add_edge", - "rtt_ns": 2230413, - "rtt_ms": 2.230413, + "rtt_ns": 1842666, + "rtt_ms": 1.842666, "checkpoint": 0, "vertex_from": "518", "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.821768358Z" + "timestamp": "2025-11-27T04:02:17.416271-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143993, - "rtt_ms": 2.143993, + "rtt_ns": 1870042, + "rtt_ms": 1.870042, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.821775598Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:02:17.416275-08:00" }, { "operation": "add_edge", - "rtt_ns": 2149193, - "rtt_ms": 2.149193, + "rtt_ns": 2121583, + "rtt_ms": 2.121583, "checkpoint": 0, - "vertex_from": "518", - "vertex_to": "679", - "timestamp": "2025-11-27T01:22:00.821778268Z" + "vertex_from": "519", + "vertex_to": "520", + "timestamp": "2025-11-27T04:02:17.418327-08:00" }, { "operation": "add_edge", - "rtt_ns": 718078, - "rtt_ms": 0.718078, + "rtt_ns": 2111417, + "rtt_ms": 2.111417, "checkpoint": 0, "vertex_from": "520", "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.821893768Z" + "timestamp": "2025-11-27T04:02:17.418351-08:00" }, { "operation": "add_edge", - "rtt_ns": 882108, - "rtt_ms": 0.882108, + "rtt_ns": 2192208, + "rtt_ms": 2.192208, "checkpoint": 0, "vertex_from": "518", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.822007588Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.418373-08:00" }, { "operation": "add_edge", - "rtt_ns": 946857, - "rtt_ms": 0.946857, + "rtt_ns": 2211250, + "rtt_ms": 2.21125, "checkpoint": 0, - "vertex_from": "519", - "vertex_to": "520", - "timestamp": "2025-11-27T01:22:00.822105697Z" + "vertex_from": "518", + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.418391-08:00" }, { "operation": "add_edge", - "rtt_ns": 1508755, - "rtt_ms": 1.508755, + "rtt_ns": 2203000, + "rtt_ms": 2.203, "checkpoint": 0, "vertex_from": "519", "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.822667985Z" + "timestamp": "2025-11-27T04:02:17.41841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1534055, - "rtt_ms": 1.534055, + "rtt_ns": 2169750, + "rtt_ms": 2.16975, "checkpoint": 0, - "vertex_from": "519", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.822698195Z" + "vertex_from": "520", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.41843-08:00" }, { "operation": "add_edge", - "rtt_ns": 925687, - "rtt_ms": 0.925687, + "rtt_ns": 2175791, + "rtt_ms": 2.175791, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.822704085Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:02:17.418448-08:00" }, { "operation": "add_edge", - "rtt_ns": 964727, - "rtt_ms": 0.964727, + "rtt_ns": 2244458, + "rtt_ms": 2.244458, "checkpoint": 0, - "vertex_from": "520", - "vertex_to": "530", - "timestamp": "2025-11-27T01:22:00.822733115Z" + "vertex_from": "519", + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.418471-08:00" }, { "operation": "add_edge", - "rtt_ns": 965057, - "rtt_ms": 0.965057, + "rtt_ns": 2244500, + "rtt_ms": 2.2445, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.822735245Z" + "vertex_to": "530", + "timestamp": "2025-11-27T04:02:17.41849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1890694, - "rtt_ms": 1.890694, + "rtt_ns": 2233041, + "rtt_ms": 2.233041, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "524", - "timestamp": "2025-11-27T01:22:00.823997681Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.418511-08:00" }, { "operation": "add_edge", - "rtt_ns": 2222493, - "rtt_ms": 2.222493, + "rtt_ns": 1670792, + "rtt_ms": 1.670792, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.824003051Z" + "vertex_to": "717", + "timestamp": "2025-11-27T04:02:17.420045-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249023, - "rtt_ms": 2.249023, + "rtt_ns": 1628875, + "rtt_ms": 1.628875, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.824018221Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:02:17.42006-08:00" }, { "operation": "add_edge", - "rtt_ns": 2249152, - "rtt_ms": 2.249152, + "rtt_ns": 1815709, + "rtt_ms": 1.815709, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "717", - "timestamp": "2025-11-27T01:22:00.82425912Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.420327-08:00" }, { "operation": "add_edge", - "rtt_ns": 2381832, - "rtt_ms": 2.381832, + "rtt_ns": 1861583, + "rtt_ms": 1.861583, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "794", - "timestamp": "2025-11-27T01:22:00.82427771Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:02:17.420352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1679375, - "rtt_ms": 1.679375, + "rtt_ns": 2025750, + "rtt_ms": 2.02575, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "595", - "timestamp": "2025-11-27T01:22:00.82434904Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.420354-08:00" }, { "operation": "add_edge", - "rtt_ns": 2033004, - "rtt_ms": 2.033004, + "rtt_ns": 2084250, + "rtt_ms": 2.08425, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.824738649Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.420556-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209093, - "rtt_ms": 2.209093, + "rtt_ns": 2171167, + "rtt_ms": 2.171167, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "669", - "timestamp": "2025-11-27T01:22:00.824948848Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:02:17.420582-08:00" }, { "operation": "add_edge", - "rtt_ns": 2268633, - "rtt_ms": 2.268633, + "rtt_ns": 2148167, + "rtt_ms": 2.148167, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "722", - "timestamp": "2025-11-27T01:22:00.824968838Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:02:17.420597-08:00" }, { "operation": "add_edge", - "rtt_ns": 2275923, - "rtt_ms": 2.275923, + "rtt_ns": 2300667, + "rtt_ms": 2.300667, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.825010938Z" + "vertex_to": "794", + "timestamp": "2025-11-27T04:02:17.420653-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118697, - "rtt_ms": 1.118697, + "rtt_ns": 2295125, + "rtt_ms": 2.295125, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.825139468Z" + "vertex_to": "524", + "timestamp": "2025-11-27T04:02:17.420688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519716, - "rtt_ms": 1.519716, + "rtt_ns": 1407292, + "rtt_ms": 1.407292, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.825798766Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.42147-08:00" }, { "operation": "add_edge", - "rtt_ns": 1899184, - "rtt_ms": 1.899184, + "rtt_ns": 1507666, + "rtt_ms": 1.507666, "checkpoint": 0, "vertex_from": "520", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.825904995Z" + "timestamp": "2025-11-27T04:02:17.421554-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657405, - "rtt_ms": 1.657405, + "rtt_ns": 1582125, + "rtt_ms": 1.582125, "checkpoint": 0, "vertex_from": "520", "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.825920565Z" + "timestamp": "2025-11-27T04:02:17.421911-08:00" }, { "operation": "add_edge", - "rtt_ns": 1995324, - "rtt_ms": 1.995324, + "rtt_ns": 1837750, + "rtt_ms": 1.83775, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.825994725Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.422191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1353836, - "rtt_ms": 1.353836, + "rtt_ns": 1586041, + "rtt_ms": 1.586041, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.826098045Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:02:17.42224-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769964, - "rtt_ms": 1.769964, + "rtt_ns": 1785625, + "rtt_ms": 1.785625, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.826122004Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.422383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223856, - "rtt_ms": 1.223856, + "rtt_ns": 1909084, + "rtt_ms": 1.909084, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.826194404Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.422466-08:00" }, { "operation": "add_edge", - "rtt_ns": 1261016, - "rtt_ms": 1.261016, + "rtt_ns": 1902459, + "rtt_ms": 1.902459, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.826273724Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.422486-08:00" }, { "operation": "add_edge", - "rtt_ns": 1337106, - "rtt_ms": 1.337106, + "rtt_ns": 2237917, + "rtt_ms": 2.237917, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.826287814Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:02:17.42261-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165646, - "rtt_ms": 1.165646, + "rtt_ns": 1940875, + "rtt_ms": 1.940875, "checkpoint": 0, "vertex_from": "520", "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.826307194Z" + "timestamp": "2025-11-27T04:02:17.422629-08:00" }, { "operation": "add_edge", - "rtt_ns": 789937, - "rtt_ms": 0.789937, + "rtt_ns": 1638500, + "rtt_ms": 1.6385, "checkpoint": 0, "vertex_from": "520", "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.826590083Z" + "timestamp": "2025-11-27T04:02:17.42311-08:00" }, { "operation": "add_edge", - "rtt_ns": 763178, - "rtt_ms": 0.763178, + "rtt_ns": 1578208, + "rtt_ms": 1.578208, "checkpoint": 0, "vertex_from": "520", "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.826669453Z" + "timestamp": "2025-11-27T04:02:17.423133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1349026, - "rtt_ms": 1.349026, + "rtt_ns": 1822958, + "rtt_ms": 1.822958, "checkpoint": 0, "vertex_from": "520", "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.827271541Z" + "timestamp": "2025-11-27T04:02:17.423735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1326076, - "rtt_ms": 1.326076, + "rtt_ns": 1589792, + "rtt_ms": 1.589792, "checkpoint": 0, "vertex_from": "520", "vertex_to": "554", - "timestamp": "2025-11-27T01:22:00.827322321Z" + "timestamp": "2025-11-27T04:02:17.423784-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219937, - "rtt_ms": 1.219937, + "rtt_ns": 1561292, + "rtt_ms": 1.561292, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "610", - "timestamp": "2025-11-27T01:22:00.827344131Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:02:17.423803-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254496, - "rtt_ms": 1.254496, + "rtt_ns": 1588875, + "rtt_ms": 1.588875, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.827353901Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.424057-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207856, - "rtt_ms": 1.207856, + "rtt_ns": 1684709, + "rtt_ms": 1.684709, "checkpoint": 0, "vertex_from": "520", "vertex_to": "795", - "timestamp": "2025-11-27T01:22:00.82748382Z" + "timestamp": "2025-11-27T04:02:17.424172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1200886, - "rtt_ms": 1.200886, + "rtt_ns": 1715584, + "rtt_ms": 1.715584, "checkpoint": 0, "vertex_from": "520", "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.82749085Z" + "timestamp": "2025-11-27T04:02:17.424327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1330246, - "rtt_ms": 1.330246, + "rtt_ns": 1980042, + "rtt_ms": 1.980042, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.8275265Z" + "vertex_to": "610", + "timestamp": "2025-11-27T04:02:17.424364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223936, - "rtt_ms": 1.223936, + "rtt_ns": 1755667, + "rtt_ms": 1.755667, "checkpoint": 0, "vertex_from": "520", "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.82753262Z" + "timestamp": "2025-11-27T04:02:17.424386-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715394, - "rtt_ms": 1.715394, + "rtt_ns": 1438500, + "rtt_ms": 1.4385, "checkpoint": 0, "vertex_from": "520", "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.828386647Z" + "timestamp": "2025-11-27T04:02:17.424573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802424, - "rtt_ms": 1.802424, + "rtt_ns": 1515917, + "rtt_ms": 1.515917, "checkpoint": 0, "vertex_from": "520", "vertex_to": "708", - "timestamp": "2025-11-27T01:22:00.828394267Z" + "timestamp": "2025-11-27T04:02:17.424629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1277196, - "rtt_ms": 1.277196, + "rtt_ns": 1554041, + "rtt_ms": 1.554041, "checkpoint": 0, "vertex_from": "520", "vertex_to": "537", - "timestamp": "2025-11-27T01:22:00.828550797Z" + "timestamp": "2025-11-27T04:02:17.42529-08:00" }, { "operation": "add_edge", - "rtt_ns": 1522655, - "rtt_ms": 1.522655, + "rtt_ns": 1517875, + "rtt_ms": 1.517875, "checkpoint": 0, "vertex_from": "520", "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.828846486Z" + "timestamp": "2025-11-27T04:02:17.425304-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390536, - "rtt_ms": 1.390536, + "rtt_ns": 1792708, + "rtt_ms": 1.792708, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.828883106Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:02:17.425596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1074987, - "rtt_ms": 1.074987, + "rtt_ns": 1720125, + "rtt_ms": 1.720125, "checkpoint": 0, - "vertex_from": "521", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.829463654Z" + "vertex_from": "520", + "vertex_to": "833", + "timestamp": "2025-11-27T04:02:17.425778-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143623, - "rtt_ms": 2.143623, + "rtt_ns": 1748500, + "rtt_ms": 1.7485, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.829498944Z" + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.425921-08:00" }, { "operation": "add_edge", - "rtt_ns": 2066903, - "rtt_ms": 2.066903, + "rtt_ns": 1646416, + "rtt_ms": 1.646416, "checkpoint": 0, "vertex_from": "520", "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.829595173Z" + "timestamp": "2025-11-27T04:02:17.426012-08:00" }, { "operation": "add_edge", - "rtt_ns": 2137963, - "rtt_ms": 2.137963, + "rtt_ns": 1703291, + "rtt_ms": 1.703291, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.829671943Z" + "vertex_to": "834", + "timestamp": "2025-11-27T04:02:17.426031-08:00" }, { "operation": "add_edge", - "rtt_ns": 2329042, - "rtt_ms": 2.329042, + "rtt_ns": 1939375, + "rtt_ms": 1.939375, "checkpoint": 0, "vertex_from": "520", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.829674703Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:02:17.426326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1296266, - "rtt_ms": 1.296266, + "rtt_ns": 1708792, + "rtt_ms": 1.708792, "checkpoint": 0, "vertex_from": "521", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.829692683Z" + "timestamp": "2025-11-27T04:02:17.42634-08:00" }, { "operation": "add_edge", - "rtt_ns": 2287853, - "rtt_ms": 2.287853, + "rtt_ns": 1790458, + "rtt_ms": 1.790458, "checkpoint": 0, - "vertex_from": "520", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.829774413Z" + "vertex_from": "521", + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.426364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1254556, - "rtt_ms": 1.254556, + "rtt_ns": 1438375, + "rtt_ms": 1.438375, "checkpoint": 0, "vertex_from": "521", "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.829807413Z" + "timestamp": "2025-11-27T04:02:17.426729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1631825, - "rtt_ms": 1.631825, + "rtt_ns": 1446708, + "rtt_ms": 1.446708, "checkpoint": 0, "vertex_from": "521", "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.830479981Z" + "timestamp": "2025-11-27T04:02:17.426751-08:00" }, { "operation": "add_edge", - "rtt_ns": 1619765, - "rtt_ms": 1.619765, + "rtt_ns": 1260375, + "rtt_ms": 1.260375, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "587", - "timestamp": "2025-11-27T01:22:00.830504341Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:02:17.42704-08:00" }, { "operation": "add_edge", - "rtt_ns": 1331446, - "rtt_ms": 1.331446, + "rtt_ns": 1575167, + "rtt_ms": 1.575167, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.83079721Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:02:17.427173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434946, - "rtt_ms": 1.434946, + "rtt_ns": 1752709, + "rtt_ms": 1.752709, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "550", - "timestamp": "2025-11-27T01:22:00.831031709Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:02:17.427675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1554905, - "rtt_ms": 1.554905, + "rtt_ns": 1703000, + "rtt_ms": 1.703, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "796", - "timestamp": "2025-11-27T01:22:00.831055379Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.427735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1282956, - "rtt_ms": 1.282956, + "rtt_ns": 2036334, + "rtt_ms": 2.036334, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.831058859Z" + "vertex_to": "550", + "timestamp": "2025-11-27T04:02:17.428049-08:00" }, { "operation": "add_edge", - "rtt_ns": 1252576, - "rtt_ms": 1.252576, + "rtt_ns": 1741625, + "rtt_ms": 1.741625, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.831061619Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:02:17.428071-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930454, - "rtt_ms": 1.930454, + "rtt_ns": 1747209, + "rtt_ms": 1.747209, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.831604467Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.428088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1131456, - "rtt_ms": 1.131456, + "rtt_ns": 1365708, + "rtt_ms": 1.365708, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.831613047Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:02:17.428096-08:00" }, { "operation": "add_edge", - "rtt_ns": 1974244, - "rtt_ms": 1.974244, + "rtt_ns": 1733875, + "rtt_ms": 1.733875, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.831668597Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.428099-08:00" }, { "operation": "add_edge", - "rtt_ns": 2279863, - "rtt_ms": 2.279863, + "rtt_ns": 1188833, + "rtt_ms": 1.188833, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.831956746Z" + "vertex_to": "662", + "timestamp": "2025-11-27T04:02:17.428362-08:00" }, { "operation": "add_edge", - "rtt_ns": 1467855, - "rtt_ms": 1.467855, + "rtt_ns": 1618542, + "rtt_ms": 1.618542, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.831974236Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.428371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1617125, - "rtt_ms": 1.617125, + "rtt_ns": 1734750, + "rtt_ms": 1.73475, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.832681964Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.428775-08:00" }, { "operation": "add_edge", - "rtt_ns": 1159926, - "rtt_ms": 1.159926, + "rtt_ns": 1656292, + "rtt_ms": 1.656292, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.832774973Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.429393-08:00" }, { "operation": "add_edge", - "rtt_ns": 1123286, - "rtt_ms": 1.123286, + "rtt_ns": 1726500, + "rtt_ms": 1.7265, "checkpoint": 0, - "vertex_from": "522", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.832793343Z" + "vertex_from": "521", + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.429404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739344, - "rtt_ms": 1.739344, + "rtt_ns": 1373916, + "rtt_ms": 1.373916, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.832796413Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.429424-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746874, - "rtt_ms": 1.746874, + "rtt_ns": 1590458, + "rtt_ms": 1.590458, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.832807663Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.429662-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779644, - "rtt_ms": 1.779644, + "rtt_ns": 1583458, + "rtt_ms": 1.583458, "checkpoint": 0, "vertex_from": "521", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.832815673Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:02:17.42968-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021663, - "rtt_ms": 2.021663, + "rtt_ns": 1620583, + "rtt_ms": 1.620583, "checkpoint": 0, - "vertex_from": "521", - "vertex_to": "662", - "timestamp": "2025-11-27T01:22:00.832820313Z" + "vertex_from": "522", + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.429721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597515, - "rtt_ms": 1.597515, + "rtt_ns": 1375917, + "rtt_ms": 1.375917, "checkpoint": 0, "vertex_from": "522", "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.833557581Z" + "timestamp": "2025-11-27T04:02:17.429739-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082793, - "rtt_ms": 2.082793, + "rtt_ns": 1690625, + "rtt_ms": 1.690625, "checkpoint": 0, "vertex_from": "521", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.83368968Z" + "timestamp": "2025-11-27T04:02:17.42978-08:00" }, { "operation": "add_edge", - "rtt_ns": 1801934, - "rtt_ms": 1.801934, + "rtt_ns": 1634125, + "rtt_ms": 1.634125, "checkpoint": 0, "vertex_from": "522", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.83377832Z" + "timestamp": "2025-11-27T04:02:17.430008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545565, - "rtt_ms": 1.545565, + "rtt_ns": 1627125, + "rtt_ms": 1.627125, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.834343078Z" + "vertex_to": "836", + "timestamp": "2025-11-27T04:02:17.430404-08:00" }, { "operation": "add_edge", - "rtt_ns": 1583965, - "rtt_ms": 1.583965, + "rtt_ns": 1623583, + "rtt_ms": 1.623583, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.834360518Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:02:17.431029-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626365, - "rtt_ms": 1.626365, + "rtt_ns": 1637708, + "rtt_ms": 1.637708, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.834443358Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.431063-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788144, - "rtt_ms": 1.788144, + "rtt_ns": 1826417, + "rtt_ms": 1.826417, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.834472067Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.431221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721004, - "rtt_ms": 1.721004, + "rtt_ns": 1518208, + "rtt_ms": 1.518208, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.834529967Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.431241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1714364, - "rtt_ms": 1.714364, + "rtt_ns": 1519375, + "rtt_ms": 1.519375, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.834535827Z" + "vertex_to": "668", + "timestamp": "2025-11-27T04:02:17.431301-08:00" }, { "operation": "add_edge", - "rtt_ns": 1761334, - "rtt_ms": 1.761334, + "rtt_ns": 1683584, + "rtt_ms": 1.683584, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.834556137Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.431365-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013396, - "rtt_ms": 1.013396, + "rtt_ns": 1637541, + "rtt_ms": 1.637541, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.835375644Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.431378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1032906, - "rtt_ms": 1.032906, + "rtt_ns": 1764625, + "rtt_ms": 1.764625, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "852", - "timestamp": "2025-11-27T01:22:00.835377714Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.431428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1614764, - "rtt_ms": 1.614764, + "rtt_ns": 1420083, + "rtt_ms": 1.420083, "checkpoint": 0, "vertex_from": "522", "vertex_to": "610", - "timestamp": "2025-11-27T01:22:00.835394744Z" - }, - { - "operation": "add_edge", - "rtt_ns": 973916, - "rtt_ms": 0.973916, - "checkpoint": 0, - "vertex_from": "523", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.835418384Z" + "timestamp": "2025-11-27T04:02:17.431429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1904083, - "rtt_ms": 1.904083, + "rtt_ns": 1305750, + "rtt_ms": 1.30575, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.835463494Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:02:17.431711-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778034, - "rtt_ms": 1.778034, + "rtt_ns": 1833625, + "rtt_ms": 1.833625, "checkpoint": 0, "vertex_from": "522", - "vertex_to": "668", - "timestamp": "2025-11-27T01:22:00.835469784Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.432865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1018817, - "rtt_ms": 1.018817, + "rtt_ns": 1453417, + "rtt_ms": 1.453417, "checkpoint": 0, - "vertex_from": "523", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.835492734Z" + "vertex_from": "524", + "vertex_to": "585", + "timestamp": "2025-11-27T04:02:17.432883-08:00" }, { "operation": "add_edge", - "rtt_ns": 1668475, - "rtt_ms": 1.668475, + "rtt_ns": 1597167, + "rtt_ms": 1.597167, "checkpoint": 0, "vertex_from": "524", "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.836207022Z" + "timestamp": "2025-11-27T04:02:17.4329-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767784, - "rtt_ms": 1.767784, + "rtt_ns": 1742917, + "rtt_ms": 1.742917, "checkpoint": 0, "vertex_from": "523", "vertex_to": "540", - "timestamp": "2025-11-27T01:22:00.836298951Z" + "timestamp": "2025-11-27T04:02:17.432985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797904, - "rtt_ms": 1.797904, + "rtt_ns": 1638959, + "rtt_ms": 1.638959, "checkpoint": 0, "vertex_from": "524", "vertex_to": "568", - "timestamp": "2025-11-27T01:22:00.836355681Z" + "timestamp": "2025-11-27T04:02:17.433005-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650945, - "rtt_ms": 1.650945, + "rtt_ns": 1595666, + "rtt_ms": 1.595666, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.837116249Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:02:17.433026-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742655, - "rtt_ms": 1.742655, + "rtt_ns": 1343083, + "rtt_ms": 1.343083, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.837139789Z" + "vertex_to": "675", + "timestamp": "2025-11-27T04:02:17.433055-08:00" }, { "operation": "add_edge", - "rtt_ns": 1786875, - "rtt_ms": 1.786875, + "rtt_ns": 1845500, + "rtt_ms": 1.8455, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.837168189Z" + "vertex_from": "523", + "vertex_to": "577", + "timestamp": "2025-11-27T04:02:17.433068-08:00" }, { "operation": "add_edge", - "rtt_ns": 1750865, - "rtt_ms": 1.750865, + "rtt_ns": 2043500, + "rtt_ms": 2.0435, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "675", - "timestamp": "2025-11-27T01:22:00.837170719Z" + "vertex_from": "523", + "vertex_to": "836", + "timestamp": "2025-11-27T04:02:17.43311-08:00" }, { "operation": "add_edge", - "rtt_ns": 985037, - "rtt_ms": 0.985037, + "rtt_ns": 1749916, + "rtt_ms": 1.749916, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "796", - "timestamp": "2025-11-27T01:22:00.837193709Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.433129-08:00" + }, + { + "operation": "add_vertex", + "rtt_ns": 1283167, + "rtt_ms": 1.283167, + "checkpoint": 0, + "vertex_from": "1012", + "timestamp": "2025-11-27T04:02:17.434311-08:00" }, { "operation": "add_edge", - "rtt_ns": 1751144, - "rtt_ms": 1.751144, + "rtt_ns": 1413292, + "rtt_ms": 1.413292, "checkpoint": 0, "vertex_from": "524", "vertex_to": "669", - "timestamp": "2025-11-27T01:22:00.837247558Z" + "timestamp": "2025-11-27T04:02:17.434314-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1449167, + "rtt_ms": 1.449167, + "checkpoint": 0, + "vertex_from": "524", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.434315-08:00" }, { "operation": "add_edge", - "rtt_ns": 1810154, - "rtt_ms": 1.810154, + "rtt_ns": 1445500, + "rtt_ms": 1.4455, "checkpoint": 0, "vertex_from": "524", "vertex_to": "929", - "timestamp": "2025-11-27T01:22:00.837281718Z" + "timestamp": "2025-11-27T04:02:17.434329-08:00" }, { "operation": "add_edge", - "rtt_ns": 987947, - "rtt_ms": 0.987947, + "rtt_ns": 1697208, + "rtt_ms": 1.697208, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "526", - "timestamp": "2025-11-27T01:22:00.837289218Z" + "vertex_to": "860", + "timestamp": "2025-11-27T04:02:17.434766-08:00" }, { "operation": "add_edge", - "rtt_ns": 2034004, - "rtt_ms": 2.034004, + "rtt_ns": 1721750, + "rtt_ms": 1.72175, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.837412248Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.434832-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1898024, - "rtt_ms": 1.898024, + "operation": "add_edge", + "rtt_ns": 1842542, + "rtt_ms": 1.842542, "checkpoint": 0, - "vertex_from": "1012", - "timestamp": "2025-11-27T01:22:00.838256935Z" + "vertex_from": "524", + "vertex_to": "526", + "timestamp": "2025-11-27T04:02:17.434848-08:00" }, { "operation": "add_edge", - "rtt_ns": 1654375, - "rtt_ms": 1.654375, + "rtt_ns": 2187708, + "rtt_ms": 2.187708, "checkpoint": 0, "vertex_from": "524", - "vertex_to": "860", - "timestamp": "2025-11-27T01:22:00.838796684Z" + "vertex_to": "796", + "timestamp": "2025-11-27T04:02:17.435173-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673784, - "rtt_ms": 1.673784, + "rtt_ns": 2235041, + "rtt_ms": 2.235041, "checkpoint": 0, - "vertex_from": "525", - "vertex_to": "564", - "timestamp": "2025-11-27T01:22:00.838868683Z" + "vertex_from": "524", + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.435292-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725294, - "rtt_ms": 1.725294, + "rtt_ns": 2221667, + "rtt_ms": 2.221667, "checkpoint": 0, "vertex_from": "524", "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.838897283Z" + "timestamp": "2025-11-27T04:02:17.435352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853074, - "rtt_ms": 1.853074, + "rtt_ns": 1722250, + "rtt_ms": 1.72225, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.838971313Z" + "vertex_from": "526", + "vertex_to": "585", + "timestamp": "2025-11-27T04:02:17.436571-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739715, - "rtt_ms": 1.739715, + "rtt_ns": 2283792, + "rtt_ms": 2.283792, "checkpoint": 0, - "vertex_from": "525", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.838988903Z" + "vertex_from": "524", + "vertex_to": "1012", + "timestamp": "2025-11-27T04:02:17.436595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1862294, - "rtt_ms": 1.862294, + "rtt_ns": 1846584, + "rtt_ms": 1.846584, "checkpoint": 0, "vertex_from": "525", "vertex_to": "616", - "timestamp": "2025-11-27T01:22:00.839152932Z" + "timestamp": "2025-11-27T04:02:17.436613-08:00" }, { "operation": "add_edge", - "rtt_ns": 1794454, - "rtt_ms": 1.794454, + "rtt_ns": 1794833, + "rtt_ms": 1.794833, "checkpoint": 0, "vertex_from": "526", "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.839208412Z" + "timestamp": "2025-11-27T04:02:17.436628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931424, - "rtt_ms": 1.931424, + "rtt_ns": 2332666, + "rtt_ms": 2.332666, "checkpoint": 0, "vertex_from": "525", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.839215322Z" + "vertex_to": "564", + "timestamp": "2025-11-27T04:02:17.436648-08:00" }, { "operation": "add_edge", - "rtt_ns": 979727, - "rtt_ms": 0.979727, + "rtt_ns": 2347084, + "rtt_ms": 2.347084, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "1012", - "timestamp": "2025-11-27T01:22:00.839237582Z" + "vertex_from": "525", + "vertex_to": "560", + "timestamp": "2025-11-27T04:02:17.436665-08:00" }, { "operation": "add_edge", - "rtt_ns": 2119483, - "rtt_ms": 2.119483, + "rtt_ns": 2554375, + "rtt_ms": 2.554375, "checkpoint": 0, - "vertex_from": "524", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.839290042Z" + "vertex_from": "525", + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.436884-08:00" }, { "operation": "add_edge", - "rtt_ns": 868437, - "rtt_ms": 0.868437, + "rtt_ns": 1692000, + "rtt_ms": 1.692, "checkpoint": 0, "vertex_from": "526", "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.83976688Z" + "timestamp": "2025-11-27T04:02:17.436987-08:00" }, { "operation": "add_edge", - "rtt_ns": 1012817, - "rtt_ms": 1.012817, + "rtt_ns": 1664542, + "rtt_ms": 1.664542, "checkpoint": 0, "vertex_from": "526", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.83988291Z" + "vertex_to": "528", + "timestamp": "2025-11-27T04:02:17.437017-08:00" }, { "operation": "add_edge", - "rtt_ns": 979997, - "rtt_ms": 0.979997, + "rtt_ns": 1887125, + "rtt_ms": 1.887125, "checkpoint": 0, "vertex_from": "526", - "vertex_to": "528", - "timestamp": "2025-11-27T01:22:00.83995257Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.437061-08:00" }, { "operation": "add_edge", - "rtt_ns": 1253686, - "rtt_ms": 1.253686, + "rtt_ns": 1537708, + "rtt_ms": 1.537708, "checkpoint": 0, - "vertex_from": "526", - "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.84005232Z" + "vertex_from": "527", + "vertex_to": "610", + "timestamp": "2025-11-27T04:02:17.438111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1692355, - "rtt_ms": 1.692355, + "rtt_ns": 1306292, + "rtt_ms": 1.306292, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.840846447Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.438192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1666545, - "rtt_ms": 1.666545, + "rtt_ns": 1697209, + "rtt_ms": 1.697209, "checkpoint": 0, "vertex_from": "528", "vertex_to": "549", - "timestamp": "2025-11-27T01:22:00.840876167Z" + "timestamp": "2025-11-27T04:02:17.438311-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1890584, - "rtt_ms": 1.890584, + "operation": "add_vertex", + "rtt_ns": 1321875, + "rtt_ms": 1.321875, "checkpoint": 0, - "vertex_from": "527", - "vertex_to": "610", - "timestamp": "2025-11-27T01:22:00.840880687Z" + "vertex_from": "693", + "timestamp": "2025-11-27T04:02:17.438313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702275, - "rtt_ms": 1.702275, + "rtt_ns": 1669625, + "rtt_ms": 1.669625, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.840919697Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.438335-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954074, - "rtt_ms": 1.954074, + "rtt_ns": 1887000, + "rtt_ms": 1.887, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.841245396Z" + "vertex_to": "560", + "timestamp": "2025-11-27T04:02:17.438482-08:00" }, { "operation": "add_edge", - "rtt_ns": 2023603, - "rtt_ms": 2.023603, + "rtt_ns": 1894959, + "rtt_ms": 1.894959, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.841978933Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 2116173, - "rtt_ms": 2.116173, - "checkpoint": 0, - "vertex_from": "693", - "timestamp": "2025-11-27T01:22:00.842001923Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:02:17.438523-08:00" }, { "operation": "add_edge", - "rtt_ns": 2787781, - "rtt_ms": 2.787781, + "rtt_ns": 1892750, + "rtt_ms": 1.89275, "checkpoint": 0, "vertex_from": "528", "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.842027723Z" + "timestamp": "2025-11-27T04:02:17.438542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2007153, - "rtt_ms": 2.007153, + "rtt_ns": 1646541, + "rtt_ms": 1.646541, "checkpoint": 0, "vertex_from": "528", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.842061293Z" + "timestamp": "2025-11-27T04:02:17.43871-08:00" }, { "operation": "add_edge", - "rtt_ns": 2294533, - "rtt_ms": 2.294533, + "rtt_ns": 1755166, + "rtt_ms": 1.755166, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.842065513Z" + "vertex_to": "578", + "timestamp": "2025-11-27T04:02:17.438774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309216, - "rtt_ms": 1.309216, + "rtt_ns": 1254625, + "rtt_ms": 1.254625, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.842156943Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.439447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397146, - "rtt_ms": 1.397146, + "rtt_ns": 1364708, + "rtt_ms": 1.364708, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.842275923Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:02:17.43948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397786, - "rtt_ms": 1.397786, + "rtt_ns": 1437125, + "rtt_ms": 1.437125, "checkpoint": 0, "vertex_from": "528", "vertex_to": "818", - "timestamp": "2025-11-27T01:22:00.842280773Z" + "timestamp": "2025-11-27T04:02:17.439749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765334, - "rtt_ms": 1.765334, + "rtt_ns": 1456792, + "rtt_ms": 1.456792, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.842687061Z" + "vertex_to": "693", + "timestamp": "2025-11-27T04:02:17.43977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1621555, - "rtt_ms": 1.621555, + "rtt_ns": 1352709, + "rtt_ms": 1.352709, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "532", - "timestamp": "2025-11-27T01:22:00.842869411Z" + "vertex_to": "734", + "timestamp": "2025-11-27T04:02:17.439877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370596, - "rtt_ms": 1.370596, + "rtt_ns": 1734083, + "rtt_ms": 1.734083, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "734", - "timestamp": "2025-11-27T01:22:00.843351889Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:02:17.44007-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501716, - "rtt_ms": 1.501716, + "rtt_ns": 1474375, + "rtt_ms": 1.474375, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.843531949Z" + "vertex_to": "653", + "timestamp": "2025-11-27T04:02:17.440186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1551135, - "rtt_ms": 1.551135, + "rtt_ns": 1440750, + "rtt_ms": 1.44075, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "693", - "timestamp": "2025-11-27T01:22:00.843553788Z" + "vertex_to": "651", + "timestamp": "2025-11-27T04:02:17.440216-08:00" }, { "operation": "add_edge", - "rtt_ns": 2052304, - "rtt_ms": 2.052304, + "rtt_ns": 1694458, + "rtt_ms": 1.694458, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "653", - "timestamp": "2025-11-27T01:22:00.844115557Z" + "vertex_to": "848", + "timestamp": "2025-11-27T04:02:17.440237-08:00" }, { "operation": "add_edge", - "rtt_ns": 1838524, - "rtt_ms": 1.838524, + "rtt_ns": 1781250, + "rtt_ms": 1.78125, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.844115817Z" + "vertex_to": "532", + "timestamp": "2025-11-27T04:02:17.440265-08:00" }, { "operation": "add_edge", - "rtt_ns": 2018923, - "rtt_ms": 2.018923, + "rtt_ns": 1215500, + "rtt_ms": 1.2155, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.844177336Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.440696-08:00" }, { "operation": "add_edge", - "rtt_ns": 1557825, - "rtt_ms": 1.557825, + "rtt_ns": 1429708, + "rtt_ms": 1.429708, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.844245956Z" + "vertex_to": "680", + "timestamp": "2025-11-27T04:02:17.440879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569735, - "rtt_ms": 1.569735, + "rtt_ns": 1395292, + "rtt_ms": 1.395292, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "805", - "timestamp": "2025-11-27T01:22:00.844440476Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:02:17.441147-08:00" }, { "operation": "add_edge", - "rtt_ns": 2376013, - "rtt_ms": 2.376013, + "rtt_ns": 1383583, + "rtt_ms": 1.383583, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "651", - "timestamp": "2025-11-27T01:22:00.844443766Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.441155-08:00" }, { "operation": "add_edge", - "rtt_ns": 2240062, - "rtt_ms": 2.240062, + "rtt_ns": 1238916, + "rtt_ms": 1.238916, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.844522295Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.44131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530034, - "rtt_ms": 1.530034, + "rtt_ns": 1448292, + "rtt_ms": 1.448292, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.845063523Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:02:17.441326-08:00" }, { "operation": "add_edge", - "rtt_ns": 1712264, - "rtt_ms": 1.712264, + "rtt_ns": 1120542, + "rtt_ms": 1.120542, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.845065143Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.441337-08:00" }, { "operation": "add_edge", - "rtt_ns": 1104656, - "rtt_ms": 1.104656, + "rtt_ns": 1420541, + "rtt_ms": 1.420541, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "533", - "timestamp": "2025-11-27T01:22:00.845223693Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:02:17.441658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124226, - "rtt_ms": 1.124226, + "rtt_ns": 1410666, + "rtt_ms": 1.410666, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.845241763Z" + "vertex_to": "533", + "timestamp": "2025-11-27T04:02:17.441676-08:00" }, { "operation": "add_edge", - "rtt_ns": 1707235, - "rtt_ms": 1.707235, + "rtt_ns": 1749875, + "rtt_ms": 1.749875, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.845262383Z" + "vertex_to": "771", + "timestamp": "2025-11-27T04:02:17.441937-08:00" }, { "operation": "add_edge", - "rtt_ns": 903527, - "rtt_ms": 0.903527, + "rtt_ns": 1467625, + "rtt_ms": 1.467625, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "557", - "timestamp": "2025-11-27T01:22:00.84596949Z" + "vertex_to": "561", + "timestamp": "2025-11-27T04:02:17.442348-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748265, - "rtt_ms": 1.748265, + "rtt_ns": 1672667, + "rtt_ms": 1.672667, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "812", - "timestamp": "2025-11-27T01:22:00.846816118Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:02:17.442369-08:00" }, { "operation": "add_edge", - "rtt_ns": 2370032, - "rtt_ms": 2.370032, + "rtt_ns": 1391375, + "rtt_ms": 1.391375, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.846816518Z" + "vertex_to": "529", + "timestamp": "2025-11-27T04:02:17.442702-08:00" }, { "operation": "add_edge", - "rtt_ns": 1573075, - "rtt_ms": 1.573075, + "rtt_ns": 1574250, + "rtt_ms": 1.57425, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.846816648Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:02:17.442724-08:00" }, { "operation": "add_edge", - "rtt_ns": 2640002, - "rtt_ms": 2.640002, + "rtt_ns": 1403959, + "rtt_ms": 1.403959, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "961", - "timestamp": "2025-11-27T01:22:00.846819018Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:02:17.442731-08:00" }, { "operation": "add_edge", - "rtt_ns": 2297443, - "rtt_ms": 2.297443, + "rtt_ns": 1636750, + "rtt_ms": 1.63675, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "529", - "timestamp": "2025-11-27T01:22:00.846821838Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.442792-08:00" }, { "operation": "add_edge", - "rtt_ns": 2379152, - "rtt_ms": 2.379152, + "rtt_ns": 1402291, + "rtt_ms": 1.402291, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.846821828Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:02:17.443079-08:00" }, { "operation": "add_edge", - "rtt_ns": 2578652, - "rtt_ms": 2.578652, + "rtt_ns": 1768250, + "rtt_ms": 1.76825, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "561", - "timestamp": "2025-11-27T01:22:00.846827168Z" + "vertex_to": "812", + "timestamp": "2025-11-27T04:02:17.443106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1638754, - "rtt_ms": 1.638754, + "rtt_ns": 1498833, + "rtt_ms": 1.498833, "checkpoint": 0, "vertex_from": "528", "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.846864977Z" + "timestamp": "2025-11-27T04:02:17.443159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601644, - "rtt_ms": 1.601644, + "rtt_ns": 1315791, + "rtt_ms": 1.315791, "checkpoint": 0, "vertex_from": "528", "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.846866237Z" + "timestamp": "2025-11-27T04:02:17.443254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360656, - "rtt_ms": 1.360656, + "rtt_ns": 1264250, + "rtt_ms": 1.26425, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "736", - "timestamp": "2025-11-27T01:22:00.847332576Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:02:17.443635-08:00" }, { "operation": "add_edge", - "rtt_ns": 1601254, - "rtt_ms": 1.601254, + "rtt_ns": 1365541, + "rtt_ms": 1.365541, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.848431772Z" + "vertex_to": "852", + "timestamp": "2025-11-27T04:02:17.444159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1735404, - "rtt_ms": 1.735404, + "rtt_ns": 1829459, + "rtt_ms": 1.829459, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "933", - "timestamp": "2025-11-27T01:22:00.848556612Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:02:17.444179-08:00" }, { "operation": "add_edge", - "rtt_ns": 1762344, - "rtt_ms": 1.762344, + "rtt_ns": 1475208, + "rtt_ms": 1.475208, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "852", - "timestamp": "2025-11-27T01:22:00.848586392Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:02:17.44418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1716645, - "rtt_ms": 1.716645, + "rtt_ns": 1447250, + "rtt_ms": 1.44725, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.848586402Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:02:17.444181-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265166, - "rtt_ms": 1.265166, + "rtt_ns": 1504792, + "rtt_ms": 1.504792, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.848599592Z" + "vertex_to": "933", + "timestamp": "2025-11-27T04:02:17.44423-08:00" }, { "operation": "add_edge", - "rtt_ns": 1733325, - "rtt_ms": 1.733325, + "rtt_ns": 1257458, + "rtt_ms": 1.257458, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "752", - "timestamp": "2025-11-27T01:22:00.848602692Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:02:17.444418-08:00" }, { "operation": "add_edge", - "rtt_ns": 1942363, - "rtt_ms": 1.942363, + "rtt_ns": 1357958, + "rtt_ms": 1.357958, "checkpoint": 0, "vertex_from": "528", "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.848766881Z" + "timestamp": "2025-11-27T04:02:17.444437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972993, - "rtt_ms": 1.972993, + "rtt_ns": 1702459, + "rtt_ms": 1.702459, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.848792121Z" + "vertex_to": "752", + "timestamp": "2025-11-27T04:02:17.444958-08:00" }, { "operation": "add_edge", - "rtt_ns": 1979403, - "rtt_ms": 1.979403, + "rtt_ns": 1345084, + "rtt_ms": 1.345084, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "912", - "timestamp": "2025-11-27T01:22:00.848801071Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:02:17.444982-08:00" }, { "operation": "add_edge", - "rtt_ns": 2036503, - "rtt_ms": 2.036503, + "rtt_ns": 1877000, + "rtt_ms": 1.877, "checkpoint": 0, "vertex_from": "528", - "vertex_to": "565", - "timestamp": "2025-11-27T01:22:00.848855161Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:02:17.444985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1085296, - "rtt_ms": 1.085296, + "rtt_ns": 1452417, + "rtt_ms": 1.452417, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "742", - "timestamp": "2025-11-27T01:22:00.849645108Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:02:17.445634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231866, - "rtt_ms": 1.231866, + "rtt_ns": 1511000, + "rtt_ms": 1.511, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.849665008Z" + "vertex_to": "742", + "timestamp": "2025-11-27T04:02:17.445693-08:00" }, { "operation": "add_edge", - "rtt_ns": 1399105, - "rtt_ms": 1.399105, + "rtt_ns": 1383208, + "rtt_ms": 1.383208, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "964", - "timestamp": "2025-11-27T01:22:00.849988337Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:02:17.445821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477755, - "rtt_ms": 1.477755, + "rtt_ns": 1419250, + "rtt_ms": 1.41925, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.850067057Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.445838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1362026, - "rtt_ms": 1.362026, + "rtt_ns": 1670083, + "rtt_ms": 1.670083, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.850167787Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:02:17.445853-08:00" }, { "operation": "add_edge", - "rtt_ns": 1650094, - "rtt_ms": 1.650094, + "rtt_ns": 1638708, + "rtt_ms": 1.638708, "checkpoint": 0, "vertex_from": "529", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.850251536Z" + "timestamp": "2025-11-27T04:02:17.44587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1767814, - "rtt_ms": 1.767814, + "rtt_ns": 1731959, + "rtt_ms": 1.731959, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.850372236Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:02:17.445892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1544215, - "rtt_ms": 1.544215, + "rtt_ns": 1545416, + "rtt_ms": 1.545416, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "679", - "timestamp": "2025-11-27T01:22:00.850401396Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.446505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663195, - "rtt_ms": 1.663195, + "rtt_ns": 1613333, + "rtt_ms": 1.613333, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.850432726Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.446598-08:00" }, { "operation": "add_edge", - "rtt_ns": 841888, - "rtt_ms": 0.841888, + "rtt_ns": 1628708, + "rtt_ms": 1.628708, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.850508476Z" + "vertex_to": "679", + "timestamp": "2025-11-27T04:02:17.446615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1723285, - "rtt_ms": 1.723285, + "rtt_ns": 1127084, + "rtt_ms": 1.127084, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.850516866Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.446822-08:00" }, { "operation": "add_edge", - "rtt_ns": 890278, - "rtt_ms": 0.890278, + "rtt_ns": 1529459, + "rtt_ms": 1.529459, "checkpoint": 0, "vertex_from": "529", "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.850537386Z" + "timestamp": "2025-11-27T04:02:17.447165-08:00" }, { "operation": "add_edge", - "rtt_ns": 758588, - "rtt_ms": 0.758588, + "rtt_ns": 1514000, + "rtt_ms": 1.514, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.850749045Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:02:17.447367-08:00" }, { "operation": "add_edge", - "rtt_ns": 710178, - "rtt_ms": 0.710178, + "rtt_ns": 1556208, + "rtt_ms": 1.556208, "checkpoint": 0, "vertex_from": "529", "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.850779485Z" + "timestamp": "2025-11-27T04:02:17.447395-08:00" }, { "operation": "add_edge", - "rtt_ns": 679038, - "rtt_ms": 0.679038, + "rtt_ns": 1697208, + "rtt_ms": 1.697208, "checkpoint": 0, "vertex_from": "529", - "vertex_to": "736", - "timestamp": "2025-11-27T01:22:00.850848665Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:02:17.447568-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1776333, + "rtt_ms": 1.776333, + "checkpoint": 0, + "vertex_from": "529", + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.447599-08:00" }, { "operation": "add_edge", - "rtt_ns": 983317, - "rtt_ms": 0.983317, + "rtt_ns": 1791541, + "rtt_ms": 1.791541, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.851493273Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.447686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1327006, - "rtt_ms": 1.327006, + "rtt_ns": 1367500, + "rtt_ms": 1.3675, "checkpoint": 0, - "vertex_from": "529", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.851579872Z" + "vertex_from": "530", + "vertex_to": "581", + "timestamp": "2025-11-27T04:02:17.447984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1238986, - "rtt_ms": 1.238986, + "rtt_ns": 1486209, + "rtt_ms": 1.486209, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.851612402Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.448086-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108366, - "rtt_ms": 1.108366, + "rtt_ns": 1870833, + "rtt_ms": 1.870833, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "552", - "timestamp": "2025-11-27T01:22:00.851647032Z" + "vertex_to": "597", + "timestamp": "2025-11-27T04:02:17.448377-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223496, - "rtt_ms": 1.223496, + "rtt_ns": 1610500, + "rtt_ms": 1.6105, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.851658432Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:02:17.448435-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310976, - "rtt_ms": 1.310976, + "rtt_ns": 1366833, + "rtt_ms": 1.366833, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "597", - "timestamp": "2025-11-27T01:22:00.851719702Z" + "vertex_to": "972", + "timestamp": "2025-11-27T04:02:17.448735-08:00" }, { "operation": "add_edge", - "rtt_ns": 983417, - "rtt_ms": 0.983417, + "rtt_ns": 1178208, + "rtt_ms": 1.178208, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "536", - "timestamp": "2025-11-27T01:22:00.851764342Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:02:17.448778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1250426, - "rtt_ms": 1.250426, + "rtt_ns": 1371875, + "rtt_ms": 1.371875, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.851769842Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.44906-08:00" }, { "operation": "add_edge", - "rtt_ns": 1092986, - "rtt_ms": 1.092986, + "rtt_ns": 1954750, + "rtt_ms": 1.95475, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "972", - "timestamp": "2025-11-27T01:22:00.851843851Z" + "vertex_to": "552", + "timestamp": "2025-11-27T04:02:17.449121-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607215, - "rtt_ms": 1.607215, + "rtt_ns": 1203708, + "rtt_ms": 1.203708, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.85245702Z" + "vertex_to": "963", + "timestamp": "2025-11-27T04:02:17.449188-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063596, - "rtt_ms": 1.063596, + "rtt_ns": 1815875, + "rtt_ms": 1.815875, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.852558439Z" + "vertex_to": "536", + "timestamp": "2025-11-27T04:02:17.449214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1075107, - "rtt_ms": 1.075107, + "rtt_ns": 1674250, + "rtt_ms": 1.67425, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.852656189Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:02:17.449244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1438076, - "rtt_ms": 1.438076, + "rtt_ns": 1607416, + "rtt_ms": 1.607416, "checkpoint": 0, "vertex_from": "530", - "vertex_to": "963", - "timestamp": "2025-11-27T01:22:00.853052108Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.449694-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428615, - "rtt_ms": 1.428615, + "rtt_ns": 1894750, + "rtt_ms": 1.89475, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.853195737Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:02:17.45111-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566305, - "rtt_ms": 1.566305, + "rtt_ns": 2694000, + "rtt_ms": 2.694, "checkpoint": 0, "vertex_from": "531", "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.853287617Z" + "timestamp": "2025-11-27T04:02:17.451132-08:00" }, { "operation": "add_edge", - "rtt_ns": 1649255, - "rtt_ms": 1.649255, + "rtt_ns": 2412916, + "rtt_ms": 2.412916, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.853310327Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.451191-08:00" }, { "operation": "add_edge", - "rtt_ns": 1587155, - "rtt_ms": 1.587155, + "rtt_ns": 2254500, + "rtt_ms": 2.2545, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.853360077Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:02:17.451317-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742075, - "rtt_ms": 1.742075, + "rtt_ns": 3344542, + "rtt_ms": 3.344542, "checkpoint": 0, - "vertex_from": "530", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.853390007Z" + "vertex_from": "531", + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.451722-08:00" }, { "operation": "add_edge", - "rtt_ns": 786067, - "rtt_ms": 0.786067, + "rtt_ns": 2044292, + "rtt_ms": 2.044292, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.853443476Z" + "vertex_to": "646", + "timestamp": "2025-11-27T04:02:17.451739-08:00" }, { "operation": "add_edge", - "rtt_ns": 999296, - "rtt_ms": 0.999296, + "rtt_ns": 2841792, + "rtt_ms": 2.841792, "checkpoint": 0, "vertex_from": "531", "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.853457586Z" + "timestamp": "2025-11-27T04:02:17.451964-08:00" }, { "operation": "add_edge", - "rtt_ns": 1636175, - "rtt_ms": 1.636175, + "rtt_ns": 2986459, + "rtt_ms": 2.986459, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.853481986Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.452232-08:00" }, { "operation": "add_edge", - "rtt_ns": 940587, - "rtt_ms": 0.940587, + "rtt_ns": 3060542, + "rtt_ms": 3.060542, "checkpoint": 0, "vertex_from": "531", "vertex_to": "803", - "timestamp": "2025-11-27T01:22:00.853500756Z" + "timestamp": "2025-11-27T04:02:17.45225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1177296, - "rtt_ms": 1.177296, + "rtt_ns": 3541292, + "rtt_ms": 3.541292, "checkpoint": 0, "vertex_from": "531", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.854230864Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.452278-08:00" }, { "operation": "add_edge", - "rtt_ns": 1041437, - "rtt_ms": 1.041437, + "rtt_ns": 1565250, + "rtt_ms": 1.56525, "checkpoint": 0, - "vertex_from": "531", - "vertex_to": "646", - "timestamp": "2025-11-27T01:22:00.854239624Z" + "vertex_from": "532", + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.452698-08:00" }, { "operation": "add_edge", - "rtt_ns": 1031387, - "rtt_ms": 1.031387, + "rtt_ns": 1421791, + "rtt_ms": 1.421791, + "checkpoint": 0, + "vertex_from": "532", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.45274-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1566834, + "rtt_ms": 1.566834, + "checkpoint": 0, + "vertex_from": "532", + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.452759-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1664833, + "rtt_ms": 1.664833, "checkpoint": 0, "vertex_from": "531", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.854320184Z" + "timestamp": "2025-11-27T04:02:17.452777-08:00" }, { "operation": "add_edge", - "rtt_ns": 963867, - "rtt_ms": 0.963867, + "rtt_ns": 1109667, + "rtt_ms": 1.109667, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.854325394Z" + "vertex_to": "678", + "timestamp": "2025-11-27T04:02:17.453075-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055226, - "rtt_ms": 1.055226, + "rtt_ns": 1509584, + "rtt_ms": 1.509584, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.854367493Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:02:17.453233-08:00" }, { "operation": "add_edge", - "rtt_ns": 1776495, - "rtt_ms": 1.776495, + "rtt_ns": 1828750, + "rtt_ms": 1.82875, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "695", - "timestamp": "2025-11-27T01:22:00.855279441Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.453569-08:00" }, { "operation": "add_edge", - "rtt_ns": 2072113, - "rtt_ms": 2.072113, + "rtt_ns": 1064416, + "rtt_ms": 1.064416, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.85546323Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.453805-08:00" }, { "operation": "add_edge", - "rtt_ns": 2184223, - "rtt_ms": 2.184223, + "rtt_ns": 1691959, + "rtt_ms": 1.691959, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.855644539Z" + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.453943-08:00" }, { "operation": "add_edge", - "rtt_ns": 2340103, - "rtt_ms": 2.340103, + "rtt_ns": 1724750, + "rtt_ms": 1.72475, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.855785619Z" + "vertex_to": "695", + "timestamp": "2025-11-27T04:02:17.453958-08:00" }, { "operation": "add_edge", - "rtt_ns": 2406433, - "rtt_ms": 2.406433, + "rtt_ns": 1691084, + "rtt_ms": 1.691084, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "678", - "timestamp": "2025-11-27T01:22:00.855890019Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.453972-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923764, - "rtt_ms": 1.923764, + "rtt_ns": 1287084, + "rtt_ms": 1.287084, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.856157008Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:02:17.453986-08:00" }, { "operation": "add_edge", - "rtt_ns": 1849294, - "rtt_ms": 1.849294, + "rtt_ns": 1355625, + "rtt_ms": 1.355625, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.856176568Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.454133-08:00" }, { "operation": "add_edge", - "rtt_ns": 1819005, - "rtt_ms": 1.819005, + "rtt_ns": 1507459, + "rtt_ms": 1.507459, "checkpoint": 0, "vertex_from": "532", "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.856188558Z" + "timestamp": "2025-11-27T04:02:17.454267-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925143, - "rtt_ms": 1.925143, + "rtt_ns": 1264875, + "rtt_ms": 1.264875, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.856246907Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:02:17.454341-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054313, - "rtt_ms": 2.054313, + "rtt_ns": 1272084, + "rtt_ms": 1.272084, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.856296767Z" + "vertex_to": "676", + "timestamp": "2025-11-27T04:02:17.454505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1307825, - "rtt_ms": 1.307825, + "rtt_ns": 1569209, + "rtt_ms": 1.569209, "checkpoint": 0, "vertex_from": "532", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.856589046Z" + "vertex_to": "553", + "timestamp": "2025-11-27T04:02:17.455139-08:00" }, { "operation": "add_edge", - "rtt_ns": 739397, - "rtt_ms": 0.739397, + "rtt_ns": 1738917, + "rtt_ms": 1.738917, "checkpoint": 0, "vertex_from": "533", "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.856630416Z" + "timestamp": "2025-11-27T04:02:17.455545-08:00" }, { "operation": "add_edge", - "rtt_ns": 555518, - "rtt_ms": 0.555518, + "rtt_ns": 1614542, + "rtt_ms": 1.614542, "checkpoint": 0, "vertex_from": "534", "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.856733286Z" + "timestamp": "2025-11-27T04:02:17.455573-08:00" }, { "operation": "add_edge", - "rtt_ns": 781387, - "rtt_ms": 0.781387, + "rtt_ns": 1657667, + "rtt_ms": 1.657667, "checkpoint": 0, "vertex_from": "533", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.856940225Z" - }, - { - "operation": "add_edge", - "rtt_ns": 757688, - "rtt_ms": 0.757688, - "checkpoint": 0, - "vertex_from": "536", - "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.857005495Z" + "timestamp": "2025-11-27T04:02:17.455601-08:00" }, { "operation": "add_edge", - "rtt_ns": 850657, - "rtt_ms": 0.850657, + "rtt_ns": 1645416, + "rtt_ms": 1.645416, "checkpoint": 0, "vertex_from": "535", "vertex_to": "594", - "timestamp": "2025-11-27T01:22:00.857040885Z" + "timestamp": "2025-11-27T04:02:17.455618-08:00" }, { "operation": "add_edge", - "rtt_ns": 757678, - "rtt_ms": 0.757678, + "rtt_ns": 1870083, + "rtt_ms": 1.870083, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.857055535Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:02:17.455857-08:00" }, { "operation": "add_edge", - "rtt_ns": 617358, - "rtt_ms": 0.617358, + "rtt_ns": 1608542, + "rtt_ms": 1.608542, "checkpoint": 0, "vertex_from": "536", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.857208794Z" + "timestamp": "2025-11-27T04:02:17.455876-08:00" }, { "operation": "add_edge", - "rtt_ns": 620868, - "rtt_ms": 0.620868, + "rtt_ns": 1868708, + "rtt_ms": 1.868708, "checkpoint": 0, "vertex_from": "536", "vertex_to": "553", - "timestamp": "2025-11-27T01:22:00.857252854Z" + "timestamp": "2025-11-27T04:02:17.45621-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525125, - "rtt_ms": 1.525125, + "rtt_ns": 2124792, + "rtt_ms": 2.124792, "checkpoint": 0, - "vertex_from": "532", - "vertex_to": "553", - "timestamp": "2025-11-27T01:22:00.857312634Z" + "vertex_from": "536", + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.456259-08:00" }, { "operation": "add_edge", - "rtt_ns": 610178, - "rtt_ms": 0.610178, + "rtt_ns": 2112709, + "rtt_ms": 2.112709, "checkpoint": 0, "vertex_from": "536", "vertex_to": "550", - "timestamp": "2025-11-27T01:22:00.857344994Z" + "timestamp": "2025-11-27T04:02:17.456619-08:00" }, { "operation": "add_edge", - "rtt_ns": 1911984, - "rtt_ms": 1.911984, + "rtt_ns": 1882250, + "rtt_ms": 1.88225, "checkpoint": 0, - "vertex_from": "532", - "vertex_to": "618", - "timestamp": "2025-11-27T01:22:00.857376784Z" + "vertex_from": "536", + "vertex_to": "786", + "timestamp": "2025-11-27T04:02:17.457022-08:00" }, { "operation": "add_edge", - "rtt_ns": 1798645, - "rtt_ms": 1.798645, + "rtt_ns": 1435375, + "rtt_ms": 1.435375, "checkpoint": 0, - "vertex_from": "532", - "vertex_to": "676", - "timestamp": "2025-11-27T01:22:00.857446244Z" + "vertex_from": "536", + "vertex_to": "578", + "timestamp": "2025-11-27T04:02:17.457037-08:00" }, { "operation": "add_edge", - "rtt_ns": 589728, - "rtt_ms": 0.589728, + "rtt_ns": 1588959, + "rtt_ms": 1.588959, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.857531573Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.457208-08:00" }, { "operation": "add_edge", - "rtt_ns": 615028, - "rtt_ms": 0.615028, + "rtt_ns": 1347042, + "rtt_ms": 1.347042, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "929", - "timestamp": "2025-11-27T01:22:00.857657373Z" + "vertex_to": "546", + "timestamp": "2025-11-27T04:02:17.457224-08:00" }, { "operation": "add_edge", - "rtt_ns": 685218, - "rtt_ms": 0.685218, + "rtt_ns": 1695875, + "rtt_ms": 1.695875, "checkpoint": 0, "vertex_from": "536", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.857691593Z" + "timestamp": "2025-11-27T04:02:17.457244-08:00" }, { "operation": "add_edge", - "rtt_ns": 677978, - "rtt_ms": 0.677978, + "rtt_ns": 1684584, + "rtt_ms": 1.684584, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.857734603Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:02:17.457259-08:00" }, { "operation": "add_edge", - "rtt_ns": 559409, - "rtt_ms": 0.559409, + "rtt_ns": 1297334, + "rtt_ms": 1.297334, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "601", - "timestamp": "2025-11-27T01:22:00.857813543Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:02:17.457508-08:00" }, { "operation": "add_edge", - "rtt_ns": 673188, - "rtt_ms": 0.673188, + "rtt_ns": 1668958, + "rtt_ms": 1.668958, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.857883802Z" + "vertex_to": "601", + "timestamp": "2025-11-27T04:02:17.457526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099267, - "rtt_ms": 1.099267, + "rtt_ns": 1471584, + "rtt_ms": 1.471584, "checkpoint": 0, "vertex_from": "536", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.858446021Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.457732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1346866, - "rtt_ms": 1.346866, + "rtt_ns": 1397459, + "rtt_ms": 1.397459, "checkpoint": 0, - "vertex_from": "536", - "vertex_to": "546", - "timestamp": "2025-11-27T01:22:00.85866033Z" + "vertex_from": "537", + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.458018-08:00" }, { "operation": "add_edge", - "rtt_ns": 1243816, - "rtt_ms": 1.243816, + "rtt_ns": 1263375, + "rtt_ms": 1.263375, "checkpoint": 0, - "vertex_from": "537", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.85869148Z" + "vertex_from": "538", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.458488-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060837, - "rtt_ms": 1.060837, + "rtt_ns": 1485083, + "rtt_ms": 1.485083, "checkpoint": 0, "vertex_from": "538", "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.85871948Z" + "timestamp": "2025-11-27T04:02:17.458523-08:00" }, { "operation": "add_edge", - "rtt_ns": 1063466, - "rtt_ms": 1.063466, + "rtt_ns": 1268417, + "rtt_ms": 1.268417, "checkpoint": 0, - "vertex_from": "538", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.858799099Z" + "vertex_from": "540", + "vertex_to": "688", + "timestamp": "2025-11-27T04:02:17.458528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1418655, - "rtt_ms": 1.418655, + "rtt_ns": 1211834, + "rtt_ms": 1.211834, "checkpoint": 0, - "vertex_from": "536", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.858801509Z" + "vertex_from": "541", + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.458721-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560385, - "rtt_ms": 1.560385, + "rtt_ns": 1522750, + "rtt_ms": 1.52275, "checkpoint": 0, "vertex_from": "538", "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.859253208Z" + "timestamp": "2025-11-27T04:02:17.458732-08:00" }, { "operation": "add_edge", - "rtt_ns": 1746645, - "rtt_ms": 1.746645, + "rtt_ns": 1712125, + "rtt_ms": 1.712125, "checkpoint": 0, "vertex_from": "538", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.859279498Z" + "timestamp": "2025-11-27T04:02:17.458735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1697424, - "rtt_ms": 1.697424, + "rtt_ns": 1503333, + "rtt_ms": 1.503333, "checkpoint": 0, "vertex_from": "540", "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.859512157Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1649685, - "rtt_ms": 1.649685, - "checkpoint": 0, - "vertex_from": "540", - "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.859535617Z" + "timestamp": "2025-11-27T04:02:17.458748-08:00" }, { "operation": "add_edge", - "rtt_ns": 1002757, - "rtt_ms": 1.002757, + "rtt_ns": 1689708, + "rtt_ms": 1.689708, "checkpoint": 0, - "vertex_from": "544", - "vertex_to": "781", - "timestamp": "2025-11-27T01:22:00.860283745Z" + "vertex_from": "541", + "vertex_to": "835", + "timestamp": "2025-11-27T04:02:17.459217-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525765, - "rtt_ms": 1.525765, + "rtt_ns": 1538583, + "rtt_ms": 1.538583, "checkpoint": 0, - "vertex_from": "544", - "vertex_to": "912", - "timestamp": "2025-11-27T01:22:00.860328574Z" + "vertex_from": "542", + "vertex_to": "544", + "timestamp": "2025-11-27T04:02:17.459272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674844, - "rtt_ms": 1.674844, + "rtt_ns": 1633500, + "rtt_ms": 1.6335, "checkpoint": 0, "vertex_from": "542", - "vertex_to": "544", - "timestamp": "2025-11-27T01:22:00.860369894Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.459654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1124506, - "rtt_ms": 1.124506, + "rtt_ns": 1282709, + "rtt_ms": 1.282709, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "906", - "timestamp": "2025-11-27T01:22:00.860379694Z" + "vertex_to": "912", + "timestamp": "2025-11-27T04:02:17.459807-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782194, - "rtt_ms": 1.782194, + "rtt_ns": 1334209, + "rtt_ms": 1.334209, "checkpoint": 0, - "vertex_from": "542", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.860503574Z" + "vertex_from": "544", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.459825-08:00" }, { "operation": "add_edge", - "rtt_ns": 1858304, - "rtt_ms": 1.858304, + "rtt_ns": 1311208, + "rtt_ms": 1.311208, "checkpoint": 0, - "vertex_from": "541", - "vertex_to": "835", - "timestamp": "2025-11-27T01:22:00.860520844Z" + "vertex_from": "544", + "vertex_to": "906", + "timestamp": "2025-11-27T04:02:17.459841-08:00" }, { "operation": "add_edge", - "rtt_ns": 2094664, - "rtt_ms": 2.094664, + "rtt_ns": 1345292, + "rtt_ms": 1.345292, "checkpoint": 0, - "vertex_from": "541", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.860545674Z" + "vertex_from": "544", + "vertex_to": "781", + "timestamp": "2025-11-27T04:02:17.460067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869134, - "rtt_ms": 1.869134, + "rtt_ns": 1439666, + "rtt_ms": 1.439666, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.860670963Z" + "vertex_to": "545", + "timestamp": "2025-11-27T04:02:17.460177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1193026, - "rtt_ms": 1.193026, + "rtt_ns": 1494792, + "rtt_ms": 1.494792, "checkpoint": 0, "vertex_from": "544", "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.860706513Z" + "timestamp": "2025-11-27T04:02:17.460227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1848404, - "rtt_ms": 1.848404, + "rtt_ns": 1514500, + "rtt_ms": 1.5145, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "545", - "timestamp": "2025-11-27T01:22:00.861385721Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:02:17.460264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1263855, - "rtt_ms": 1.263855, + "rtt_ns": 1642625, + "rtt_ms": 1.642625, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.8615498Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.460861-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165856, - "rtt_ms": 1.165856, + "rtt_ns": 1605166, + "rtt_ms": 1.605166, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.861838749Z" + "vertex_to": "659", + "timestamp": "2025-11-27T04:02:17.460879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1473055, - "rtt_ms": 1.473055, + "rtt_ns": 1353417, + "rtt_ms": 1.353417, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.861854679Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.461161-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604085, - "rtt_ms": 1.604085, + "rtt_ns": 1523333, + "rtt_ms": 1.523333, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.861933919Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.461178-08:00" }, { "operation": "add_edge", - "rtt_ns": 1451225, - "rtt_ms": 1.451225, + "rtt_ns": 1731542, + "rtt_ms": 1.731542, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.861998309Z" + "vertex_to": "914", + "timestamp": "2025-11-27T04:02:17.461557-08:00" }, { "operation": "add_edge", - "rtt_ns": 1525285, - "rtt_ms": 1.525285, + "rtt_ns": 1505542, + "rtt_ms": 1.505542, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.862047849Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.461573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1560085, - "rtt_ms": 1.560085, + "rtt_ns": 1747209, + "rtt_ms": 1.747209, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.862065079Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.461589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426295, - "rtt_ms": 1.426295, + "rtt_ns": 1530625, + "rtt_ms": 1.530625, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.862135868Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:02:17.461759-08:00" }, { "operation": "add_edge", - "rtt_ns": 1765394, - "rtt_ms": 1.765394, + "rtt_ns": 1638583, + "rtt_ms": 1.638583, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "659", - "timestamp": "2025-11-27T01:22:00.862136618Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.461818-08:00" }, { "operation": "add_edge", - "rtt_ns": 998417, - "rtt_ms": 0.998417, + "rtt_ns": 1644625, + "rtt_ms": 1.644625, "checkpoint": 0, "vertex_from": "544", "vertex_to": "585", - "timestamp": "2025-11-27T01:22:00.862549247Z" + "timestamp": "2025-11-27T04:02:17.461909-08:00" }, { "operation": "add_edge", - "rtt_ns": 819318, - "rtt_ms": 0.819318, + "rtt_ns": 1433334, + "rtt_ms": 1.433334, "checkpoint": 0, "vertex_from": "544", "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.862675417Z" + "timestamp": "2025-11-27T04:02:17.462313-08:00" }, { "operation": "add_edge", - "rtt_ns": 868367, - "rtt_ms": 0.868367, + "rtt_ns": 1593959, + "rtt_ms": 1.593959, "checkpoint": 0, "vertex_from": "544", "vertex_to": "588", - "timestamp": "2025-11-27T01:22:00.862708396Z" + "timestamp": "2025-11-27T04:02:17.462457-08:00" }, { "operation": "add_edge", - "rtt_ns": 1538355, - "rtt_ms": 1.538355, + "rtt_ns": 1382584, + "rtt_ms": 1.382584, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.862925896Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.462561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1007526, - "rtt_ms": 1.007526, + "rtt_ns": 1199250, + "rtt_ms": 1.19925, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.863007135Z" + "vertex_to": "807", + "timestamp": "2025-11-27T04:02:17.462774-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562575, - "rtt_ms": 1.562575, + "rtt_ns": 1658750, + "rtt_ms": 1.65875, "checkpoint": 0, "vertex_from": "544", "vertex_to": "583", - "timestamp": "2025-11-27T01:22:00.863497754Z" + "timestamp": "2025-11-27T04:02:17.46282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521655, - "rtt_ms": 1.521655, + "rtt_ns": 1456333, + "rtt_ms": 1.456333, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.863659953Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.463046-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128336, - "rtt_ms": 1.128336, + "rtt_ns": 1270416, + "rtt_ms": 1.270416, "checkpoint": 0, "vertex_from": "544", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.863679373Z" + "timestamp": "2025-11-27T04:02:17.463089-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657184, - "rtt_ms": 1.657184, + "rtt_ns": 1543375, + "rtt_ms": 1.543375, "checkpoint": 0, "vertex_from": "544", "vertex_to": "852", - "timestamp": "2025-11-27T01:22:00.863706613Z" + "timestamp": "2025-11-27T04:02:17.463101-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575535, - "rtt_ms": 1.575535, + "rtt_ns": 1639625, + "rtt_ms": 1.639625, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.863712613Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:02:17.4634-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055506, - "rtt_ms": 1.055506, + "rtt_ns": 1516625, + "rtt_ms": 1.516625, "checkpoint": 0, "vertex_from": "544", "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.863732123Z" + "timestamp": "2025-11-27T04:02:17.463429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1026827, - "rtt_ms": 1.026827, + "rtt_ns": 1002709, + "rtt_ms": 1.002709, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.863736203Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:02:17.46346-08:00" }, { "operation": "add_edge", - "rtt_ns": 1753754, - "rtt_ms": 1.753754, + "rtt_ns": 1461667, + "rtt_ms": 1.461667, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "807", - "timestamp": "2025-11-27T01:22:00.863821083Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.463776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1422436, - "rtt_ms": 1.422436, + "rtt_ns": 1299708, + "rtt_ms": 1.299708, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "548", - "timestamp": "2025-11-27T01:22:00.864431091Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:02:17.464076-08:00" }, { "operation": "add_edge", - "rtt_ns": 832138, - "rtt_ms": 0.832138, + "rtt_ns": 1268875, + "rtt_ms": 1.268875, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "899", - "timestamp": "2025-11-27T01:22:00.864513011Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:02:17.464091-08:00" }, { "operation": "add_edge", - "rtt_ns": 865517, - "rtt_ms": 0.865517, + "rtt_ns": 1549791, + "rtt_ms": 1.549791, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.86452685Z" + "vertex_to": "548", + "timestamp": "2025-11-27T04:02:17.464113-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659784, - "rtt_ms": 1.659784, + "rtt_ns": 1374250, + "rtt_ms": 1.37425, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.86458721Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.464465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1345685, - "rtt_ms": 1.345685, + "rtt_ns": 1457500, + "rtt_ms": 1.4575, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.864845259Z" + "vertex_to": "899", + "timestamp": "2025-11-27T04:02:17.464506-08:00" }, { "operation": "add_edge", - "rtt_ns": 1605405, - "rtt_ms": 1.605405, + "rtt_ns": 1462083, + "rtt_ms": 1.462083, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "929", - "timestamp": "2025-11-27T01:22:00.865338538Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.464565-08:00" }, { "operation": "add_edge", - "rtt_ns": 1600355, - "rtt_ms": 1.600355, + "rtt_ns": 1588917, + "rtt_ms": 1.588917, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "547", - "timestamp": "2025-11-27T01:22:00.865422798Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.465019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1715845, - "rtt_ms": 1.715845, + "rtt_ns": 1574917, + "rtt_ms": 1.574917, "checkpoint": 0, - "vertex_from": "544", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.865429688Z" + "vertex_from": "545", + "vertex_to": "547", + "timestamp": "2025-11-27T04:02:17.465037-08:00" }, { "operation": "add_edge", - "rtt_ns": 1721725, - "rtt_ms": 1.721725, + "rtt_ns": 1653084, + "rtt_ms": 1.653084, "checkpoint": 0, "vertex_from": "544", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.865429968Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:02:17.465054-08:00" }, { "operation": "add_edge", - "rtt_ns": 1934624, - "rtt_ms": 1.934624, + "rtt_ns": 1426875, + "rtt_ms": 1.426875, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.865672027Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.465203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1500335, - "rtt_ms": 1.500335, + "rtt_ns": 1262625, + "rtt_ms": 1.262625, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.866014676Z" + "vertex_to": "557", + "timestamp": "2025-11-27T04:02:17.465378-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582505, - "rtt_ms": 1.582505, + "rtt_ns": 1364416, + "rtt_ms": 1.364416, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.866015606Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.465441-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784815, - "rtt_ms": 1.784815, + "rtt_ns": 1472625, + "rtt_ms": 1.472625, "checkpoint": 0, "vertex_from": "545", "vertex_to": "676", - "timestamp": "2025-11-27T01:22:00.866314805Z" + "timestamp": "2025-11-27T04:02:17.465564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909134, - "rtt_ms": 1.909134, + "rtt_ns": 1484958, + "rtt_ms": 1.484958, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "557", - "timestamp": "2025-11-27T01:22:00.866497604Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1269906, - "rtt_ms": 1.269906, - "checkpoint": 0, - "vertex_from": "545", - "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.866700954Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.465951-08:00" }, { "operation": "add_edge", - "rtt_ns": 1931474, - "rtt_ms": 1.931474, + "rtt_ns": 1401125, + "rtt_ms": 1.401125, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.866777423Z" + "vertex_to": "721", + "timestamp": "2025-11-27T04:02:17.465967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2092353, - "rtt_ms": 2.092353, + "rtt_ns": 1739292, + "rtt_ms": 1.739292, "checkpoint": 0, "vertex_from": "545", "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.867433961Z" + "timestamp": "2025-11-27T04:02:17.466247-08:00" }, { "operation": "add_edge", - "rtt_ns": 2095313, - "rtt_ms": 2.095313, + "rtt_ns": 1504291, + "rtt_ms": 1.504291, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.867526301Z" + "vertex_to": "596", + "timestamp": "2025-11-27T04:02:17.466542-08:00" }, { "operation": "add_edge", - "rtt_ns": 2131903, - "rtt_ms": 2.131903, + "rtt_ns": 1540542, + "rtt_ms": 1.540542, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "721", - "timestamp": "2025-11-27T01:22:00.867556311Z" + "vertex_to": "792", + "timestamp": "2025-11-27T04:02:17.466561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940554, - "rtt_ms": 1.940554, + "rtt_ns": 1523834, + "rtt_ms": 1.523834, "checkpoint": 0, "vertex_from": "545", "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.867613821Z" + "timestamp": "2025-11-27T04:02:17.466579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1620735, - "rtt_ms": 1.620735, + "rtt_ns": 1440666, + "rtt_ms": 1.440666, "checkpoint": 0, "vertex_from": "545", "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.867637251Z" + "timestamp": "2025-11-27T04:02:17.466645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694284, - "rtt_ms": 1.694284, + "rtt_ns": 1362125, + "rtt_ms": 1.362125, "checkpoint": 0, "vertex_from": "545", "vertex_to": "560", - "timestamp": "2025-11-27T01:22:00.86771144Z" + "timestamp": "2025-11-27T04:02:17.466743-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411215, - "rtt_ms": 1.411215, + "rtt_ns": 1352916, + "rtt_ms": 1.352916, "checkpoint": 0, "vertex_from": "545", "vertex_to": "692", - "timestamp": "2025-11-27T01:22:00.86772805Z" + "timestamp": "2025-11-27T04:02:17.466796-08:00" }, { "operation": "add_edge", - "rtt_ns": 1087646, - "rtt_ms": 1.087646, + "rtt_ns": 1419333, + "rtt_ms": 1.419333, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.86778927Z" + "vertex_to": "928", + "timestamp": "2025-11-27T04:02:17.466985-08:00" }, { "operation": "add_edge", - "rtt_ns": 1314786, - "rtt_ms": 1.314786, + "rtt_ns": 1335958, + "rtt_ms": 1.335958, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.86781322Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:02:17.467584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060767, - "rtt_ms": 1.060767, + "rtt_ns": 1665667, + "rtt_ms": 1.665667, "checkpoint": 0, "vertex_from": "545", - "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.86783888Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.467617-08:00" }, { "operation": "add_edge", - "rtt_ns": 894908, - "rtt_ms": 0.894908, + "rtt_ns": 1853125, + "rtt_ms": 1.853125, "checkpoint": 0, - "vertex_from": "546", - "vertex_to": "600", - "timestamp": "2025-11-27T01:22:00.868609808Z" + "vertex_from": "545", + "vertex_to": "674", + "timestamp": "2025-11-27T04:02:17.467821-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062337, - "rtt_ms": 1.062337, + "rtt_ns": 1298500, + "rtt_ms": 1.2985, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "562", - "timestamp": "2025-11-27T01:22:00.868620988Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:02:17.467879-08:00" }, { "operation": "add_edge", - "rtt_ns": 985846, - "rtt_ms": 0.985846, + "rtt_ns": 1317084, + "rtt_ms": 1.317084, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "555", - "timestamp": "2025-11-27T01:22:00.868625037Z" + "vertex_to": "562", + "timestamp": "2025-11-27T04:02:17.467879-08:00" }, { "operation": "add_edge", - "rtt_ns": 860727, - "rtt_ms": 0.860727, + "rtt_ns": 1508250, + "rtt_ms": 1.50825, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.868651487Z" + "vertex_to": "555", + "timestamp": "2025-11-27T04:02:17.468154-08:00" }, { "operation": "add_edge", - "rtt_ns": 959667, - "rtt_ms": 0.959667, + "rtt_ns": 1809167, + "rtt_ms": 1.809167, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.868688807Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1285756, - "rtt_ms": 1.285756, - "checkpoint": 0, - "vertex_from": "545", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.868722177Z" + "vertex_to": "645", + "timestamp": "2025-11-27T04:02:17.468352-08:00" }, { "operation": "add_edge", - "rtt_ns": 1166726, - "rtt_ms": 1.166726, + "rtt_ns": 1626750, + "rtt_ms": 1.62675, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "736", - "timestamp": "2025-11-27T01:22:00.868781537Z" + "vertex_to": "600", + "timestamp": "2025-11-27T04:02:17.46837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1348096, - "rtt_ms": 1.348096, + "rtt_ns": 1451541, + "rtt_ms": 1.451541, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "645", - "timestamp": "2025-11-27T01:22:00.868875547Z" + "vertex_to": "833", + "timestamp": "2025-11-27T04:02:17.468439-08:00" }, { "operation": "add_edge", - "rtt_ns": 1285846, - "rtt_ms": 1.285846, + "rtt_ns": 1742125, + "rtt_ms": 1.742125, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "791", - "timestamp": "2025-11-27T01:22:00.869100226Z" + "vertex_to": "960", + "timestamp": "2025-11-27T04:02:17.468538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1093427, - "rtt_ms": 1.093427, + "rtt_ns": 957375, + "rtt_ms": 0.957375, "checkpoint": 0, "vertex_from": "546", "vertex_to": "913", - "timestamp": "2025-11-27T01:22:00.869720624Z" + "timestamp": "2025-11-27T04:02:17.468838-08:00" }, { "operation": "add_edge", - "rtt_ns": 1907694, - "rtt_ms": 1.907694, + "rtt_ns": 1218875, + "rtt_ms": 1.218875, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.869747444Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.469042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352486, - "rtt_ms": 1.352486, + "rtt_ns": 1480291, + "rtt_ms": 1.480291, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.870004913Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.4691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1415065, - "rtt_ms": 1.415065, + "rtt_ns": 1580375, + "rtt_ms": 1.580375, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.870028533Z" + "vertex_to": "791", + "timestamp": "2025-11-27T04:02:17.469165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1436935, - "rtt_ms": 1.436935, + "rtt_ns": 1294417, + "rtt_ms": 1.294417, "checkpoint": 0, "vertex_from": "546", "vertex_to": "852", - "timestamp": "2025-11-27T01:22:00.870059683Z" + "timestamp": "2025-11-27T04:02:17.469175-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441156, - "rtt_ms": 1.441156, + "rtt_ns": 1348916, + "rtt_ms": 1.348916, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.870132843Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.469504-08:00" }, { "operation": "add_edge", - "rtt_ns": 1360116, - "rtt_ms": 1.360116, + "rtt_ns": 1143833, + "rtt_ms": 1.143833, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.870142523Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:02:17.469683-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441646, - "rtt_ms": 1.441646, + "rtt_ns": 1486459, + "rtt_ms": 1.486459, "checkpoint": 0, "vertex_from": "546", "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.870164633Z" + "timestamp": "2025-11-27T04:02:17.469858-08:00" }, { "operation": "add_edge", - "rtt_ns": 1144016, - "rtt_ms": 1.144016, + "rtt_ns": 1622583, + "rtt_ms": 1.622583, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.870245982Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.469975-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382975, - "rtt_ms": 1.382975, + "rtt_ns": 1682667, + "rtt_ms": 1.682667, "checkpoint": 0, "vertex_from": "546", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.870260172Z" + "vertex_to": "904", + "timestamp": "2025-11-27T04:02:17.470124-08:00" }, { "operation": "add_edge", - "rtt_ns": 832037, - "rtt_ms": 0.832037, + "rtt_ns": 1191166, + "rtt_ms": 1.191166, "checkpoint": 0, "vertex_from": "547", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.87086105Z" + "timestamp": "2025-11-27T04:02:17.470367-08:00" }, { "operation": "add_edge", - "rtt_ns": 886657, - "rtt_ms": 0.886657, + "rtt_ns": 1506542, + "rtt_ms": 1.506542, "checkpoint": 0, - "vertex_from": "547", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.87094722Z" + "vertex_from": "546", + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.470549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1267816, - "rtt_ms": 1.267816, + "rtt_ns": 1460667, + "rtt_ms": 1.460667, "checkpoint": 0, - "vertex_from": "546", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.87101811Z" + "vertex_from": "547", + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.470628-08:00" }, { "operation": "add_edge", - "rtt_ns": 878947, - "rtt_ms": 0.878947, + "rtt_ns": 1533375, + "rtt_ms": 1.533375, "checkpoint": 0, - "vertex_from": "548", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.8710455Z" + "vertex_from": "546", + "vertex_to": "660", + "timestamp": "2025-11-27T04:02:17.470636-08:00" }, { "operation": "add_edge", - "rtt_ns": 1043227, - "rtt_ms": 1.043227, + "rtt_ns": 1820542, + "rtt_ms": 1.820542, "checkpoint": 0, - "vertex_from": "547", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.87104946Z" + "vertex_from": "546", + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.470659-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033406, - "rtt_ms": 1.033406, + "rtt_ns": 1329000, + "rtt_ms": 1.329, "checkpoint": 0, "vertex_from": "547", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.871166909Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.470834-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044136, - "rtt_ms": 1.044136, + "rtt_ns": 1216417, + "rtt_ms": 1.216417, "checkpoint": 0, "vertex_from": "548", "vertex_to": "600", - "timestamp": "2025-11-27T01:22:00.871187469Z" + "timestamp": "2025-11-27T04:02:17.471077-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477075, - "rtt_ms": 1.477075, + "rtt_ns": 983333, + "rtt_ms": 0.983333, "checkpoint": 0, - "vertex_from": "546", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.871198749Z" + "vertex_from": "548", + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.471108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1677155, - "rtt_ms": 1.677155, + "rtt_ns": 1475042, + "rtt_ms": 1.475042, "checkpoint": 0, - "vertex_from": "548", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.871924197Z" + "vertex_from": "547", + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.471159-08:00" }, { "operation": "add_edge", - "rtt_ns": 1769285, - "rtt_ms": 1.769285, + "rtt_ns": 1573958, + "rtt_ms": 1.573958, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.872033077Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.471551-08:00" }, { "operation": "add_edge", - "rtt_ns": 1205587, - "rtt_ms": 1.205587, + "rtt_ns": 1015500, + "rtt_ms": 1.0155, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "901", - "timestamp": "2025-11-27T01:22:00.872068367Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.472176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1102556, - "rtt_ms": 1.102556, + "rtt_ns": 1856084, + "rtt_ms": 1.856084, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.872121606Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.472516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1274626, - "rtt_ms": 1.274626, + "rtt_ns": 2037375, + "rtt_ms": 2.037375, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.872322856Z" + "vertex_to": "901", + "timestamp": "2025-11-27T04:02:17.472588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1469815, - "rtt_ms": 1.469815, + "rtt_ns": 1523666, + "rtt_ms": 1.523666, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "854", - "timestamp": "2025-11-27T01:22:00.872520375Z" + "vertex_to": "620", + "timestamp": "2025-11-27T04:02:17.472601-08:00" }, { "operation": "add_edge", - "rtt_ns": 1407376, - "rtt_ms": 1.407376, + "rtt_ns": 1968000, + "rtt_ms": 1.968, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "620", - "timestamp": "2025-11-27T01:22:00.872575465Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.472607-08:00" }, { "operation": "add_edge", - "rtt_ns": 1385756, - "rtt_ms": 1.385756, + "rtt_ns": 2017500, + "rtt_ms": 2.0175, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.872587135Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:02:17.472646-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458326, - "rtt_ms": 1.458326, + "rtt_ns": 1560416, + "rtt_ms": 1.560416, "checkpoint": 0, "vertex_from": "548", "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.872647195Z" + "timestamp": "2025-11-27T04:02:17.472669-08:00" }, { "operation": "add_edge", - "rtt_ns": 789028, - "rtt_ms": 0.789028, + "rtt_ns": 1125125, + "rtt_ms": 1.125125, "checkpoint": 0, "vertex_from": "548", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.872714735Z" + "timestamp": "2025-11-27T04:02:17.472677-08:00" }, { "operation": "add_edge", - "rtt_ns": 1827644, - "rtt_ms": 1.827644, + "rtt_ns": 2325750, + "rtt_ms": 2.32575, "checkpoint": 0, "vertex_from": "548", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.872776214Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.472693-08:00" }, { "operation": "add_edge", - "rtt_ns": 744297, - "rtt_ms": 0.744297, + "rtt_ns": 1905542, + "rtt_ms": 1.905542, "checkpoint": 0, - "vertex_from": "549", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.872813734Z" + "vertex_from": "548", + "vertex_to": "854", + "timestamp": "2025-11-27T04:02:17.47274-08:00" }, { "operation": "add_edge", - "rtt_ns": 705458, - "rtt_ms": 0.705458, + "rtt_ns": 1553375, + "rtt_ms": 1.553375, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "586", - "timestamp": "2025-11-27T01:22:00.872828884Z" + "vertex_to": "588", + "timestamp": "2025-11-27T04:02:17.47373-08:00" }, { "operation": "add_edge", - "rtt_ns": 611318, - "rtt_ms": 0.611318, + "rtt_ns": 1182208, + "rtt_ms": 1.182208, "checkpoint": 0, "vertex_from": "549", "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.872935594Z" + "timestamp": "2025-11-27T04:02:17.473786-08:00" }, { "operation": "add_edge", - "rtt_ns": 1320876, - "rtt_ms": 1.320876, + "rtt_ns": 1531833, + "rtt_ms": 1.531833, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.873897861Z" + "vertex_to": "582", + "timestamp": "2025-11-27T04:02:17.474139-08:00" }, { "operation": "add_edge", - "rtt_ns": 1310756, - "rtt_ms": 1.310756, + "rtt_ns": 1668375, + "rtt_ms": 1.668375, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.873899981Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.474185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1389186, - "rtt_ms": 1.389186, + "rtt_ns": 1502166, + "rtt_ms": 1.502166, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.873911401Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:02:17.474196-08:00" }, { "operation": "add_edge", - "rtt_ns": 1270926, - "rtt_ms": 1.270926, + "rtt_ns": 1532875, + "rtt_ms": 1.532875, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.873920421Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.474203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1909924, - "rtt_ms": 1.909924, + "rtt_ns": 1555125, + "rtt_ms": 1.555125, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "588", - "timestamp": "2025-11-27T01:22:00.873944931Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.474203-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192617, - "rtt_ms": 1.192617, + "rtt_ns": 1665542, + "rtt_ms": 1.665542, "checkpoint": 0, "vertex_from": "550", "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.873970821Z" + "timestamp": "2025-11-27T04:02:17.474406-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420975, - "rtt_ms": 1.420975, + "rtt_ns": 1819459, + "rtt_ms": 1.819459, "checkpoint": 0, "vertex_from": "549", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.87413727Z" + "vertex_to": "586", + "timestamp": "2025-11-27T04:02:17.474408-08:00" }, { "operation": "add_edge", - "rtt_ns": 1924304, - "rtt_ms": 1.924304, + "rtt_ns": 1804583, + "rtt_ms": 1.804583, "checkpoint": 0, - "vertex_from": "552", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.874739158Z" + "vertex_from": "549", + "vertex_to": "778", + "timestamp": "2025-11-27T04:02:17.474482-08:00" }, { "operation": "add_edge", - "rtt_ns": 1927214, - "rtt_ms": 1.927214, + "rtt_ns": 1452917, + "rtt_ms": 1.452917, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "609", - "timestamp": "2025-11-27T01:22:00.874758718Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.475184-08:00" }, { "operation": "add_edge", - "rtt_ns": 1867204, - "rtt_ms": 1.867204, + "rtt_ns": 1270000, + "rtt_ms": 1.27, "checkpoint": 0, "vertex_from": "552", "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.874803718Z" + "timestamp": "2025-11-27T04:02:17.475412-08:00" }, { "operation": "add_edge", - "rtt_ns": 1808454, - "rtt_ms": 1.808454, + "rtt_ns": 1898000, + "rtt_ms": 1.898, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.875723605Z" + "vertex_to": "609", + "timestamp": "2025-11-27T04:02:17.475685-08:00" }, { "operation": "add_edge", - "rtt_ns": 1788484, - "rtt_ms": 1.788484, + "rtt_ns": 1683417, + "rtt_ms": 1.683417, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.875761715Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1049167, - "rtt_ms": 1.049167, - "checkpoint": 0, - "vertex_from": "553", - "vertex_to": "722", - "timestamp": "2025-11-27T01:22:00.875809865Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:02:17.475888-08:00" }, { "operation": "add_edge", - "rtt_ns": 1908574, - "rtt_ms": 1.908574, + "rtt_ns": 1831584, + "rtt_ms": 1.831584, "checkpoint": 0, "vertex_from": "552", "vertex_to": "596", - "timestamp": "2025-11-27T01:22:00.875810755Z" + "timestamp": "2025-11-27T04:02:17.476028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1875444, - "rtt_ms": 1.875444, + "rtt_ns": 1845750, + "rtt_ms": 1.84575, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.875824535Z" + "vertex_to": "565", + "timestamp": "2025-11-27T04:02:17.476051-08:00" }, { "operation": "add_edge", - "rtt_ns": 1998963, - "rtt_ms": 1.998963, + "rtt_ns": 1666333, + "rtt_ms": 1.666333, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "565", - "timestamp": "2025-11-27T01:22:00.875921804Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.47615-08:00" }, { "operation": "add_edge", - "rtt_ns": 1828524, - "rtt_ms": 1.828524, + "rtt_ns": 1983667, + "rtt_ms": 1.983667, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.875968894Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.47617-08:00" }, { "operation": "add_edge", - "rtt_ns": 2098583, - "rtt_ms": 2.098583, + "rtt_ns": 1861083, + "rtt_ms": 1.861083, "checkpoint": 0, "vertex_from": "552", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.875998174Z" + "vertex_to": "898", + "timestamp": "2025-11-27T04:02:17.47627-08:00" }, { "operation": "add_edge", - "rtt_ns": 1702584, - "rtt_ms": 1.702584, + "rtt_ns": 1973416, + "rtt_ms": 1.973416, "checkpoint": 0, - "vertex_from": "553", - "vertex_to": "736", - "timestamp": "2025-11-27T01:22:00.876509002Z" + "vertex_from": "552", + "vertex_to": "816", + "timestamp": "2025-11-27T04:02:17.47638-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887134, - "rtt_ms": 1.887134, + "rtt_ns": 1412250, + "rtt_ms": 1.41225, "checkpoint": 0, "vertex_from": "553", "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.876628182Z" + "timestamp": "2025-11-27T04:02:17.476597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379205, - "rtt_ms": 1.379205, + "rtt_ns": 1701167, + "rtt_ms": 1.701167, "checkpoint": 0, "vertex_from": "553", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.87714224Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:02:17.477114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1571275, - "rtt_ms": 1.571275, + "rtt_ns": 879083, + "rtt_ms": 0.879083, "checkpoint": 0, - "vertex_from": "555", - "vertex_to": "872", - "timestamp": "2025-11-27T01:22:00.877541849Z" + "vertex_from": "554", + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.47715-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188926, - "rtt_ms": 1.188926, + "rtt_ns": 1378542, + "rtt_ms": 1.378542, "checkpoint": 0, - "vertex_from": "555", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.877702698Z" + "vertex_from": "554", + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.477549-08:00" }, { "operation": "add_edge", - "rtt_ns": 1803874, - "rtt_ms": 1.803874, + "rtt_ns": 1552125, + "rtt_ms": 1.552125, "checkpoint": 0, "vertex_from": "554", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.877729278Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.477606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1930233, - "rtt_ms": 1.930233, + "rtt_ns": 2159708, + "rtt_ms": 2.159708, "checkpoint": 0, - "vertex_from": "554", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.877741518Z" + "vertex_from": "553", + "vertex_to": "736", + "timestamp": "2025-11-27T04:02:17.477846-08:00" }, { "operation": "add_edge", - "rtt_ns": 2058913, - "rtt_ms": 2.058913, + "rtt_ns": 1896083, + "rtt_ms": 1.896083, "checkpoint": 0, - "vertex_from": "554", - "vertex_to": "582", - "timestamp": "2025-11-27T01:22:00.877872298Z" + "vertex_from": "553", + "vertex_to": "777", + "timestamp": "2025-11-27T04:02:17.477925-08:00" }, { "operation": "add_edge", - "rtt_ns": 2118833, - "rtt_ms": 2.118833, + "rtt_ns": 2057625, + "rtt_ms": 2.057625, "checkpoint": 0, - "vertex_from": "554", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.877945978Z" + "vertex_from": "553", + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.477946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1354955, - "rtt_ms": 1.354955, + "rtt_ns": 2378917, + "rtt_ms": 2.378917, "checkpoint": 0, - "vertex_from": "556", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.877985267Z" + "vertex_from": "554", + "vertex_to": "582", + "timestamp": "2025-11-27T04:02:17.47853-08:00" }, { "operation": "add_edge", - "rtt_ns": 2022793, - "rtt_ms": 2.022793, + "rtt_ns": 2948583, + "rtt_ms": 2.948583, "checkpoint": 0, "vertex_from": "555", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.878021657Z" + "vertex_to": "872", + "timestamp": "2025-11-27T04:02:17.47933-08:00" }, { "operation": "add_edge", - "rtt_ns": 2361842, - "rtt_ms": 2.361842, + "rtt_ns": 1782458, + "rtt_ms": 1.782458, "checkpoint": 0, - "vertex_from": "553", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.878093567Z" + "vertex_from": "558", + "vertex_to": "643", + "timestamp": "2025-11-27T04:02:17.47939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1160386, - "rtt_ms": 1.160386, + "rtt_ns": 1878958, + "rtt_ms": 1.878958, "checkpoint": 0, "vertex_from": "556", "vertex_to": "813", - "timestamp": "2025-11-27T01:22:00.878306036Z" + "timestamp": "2025-11-27T04:02:17.47943-08:00" }, { "operation": "add_edge", - "rtt_ns": 1190786, - "rtt_ms": 1.190786, + "rtt_ns": 2303333, + "rtt_ms": 2.303333, "checkpoint": 0, - "vertex_from": "558", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.878734575Z" + "vertex_from": "556", + "vertex_to": "624", + "timestamp": "2025-11-27T04:02:17.479456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016907, - "rtt_ms": 1.016907, + "rtt_ns": 1515375, + "rtt_ms": 1.515375, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "902", - "timestamp": "2025-11-27T01:22:00.878750605Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:02:17.479462-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2401375, + "rtt_ms": 2.401375, + "checkpoint": 0, + "vertex_from": "555", + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.479517-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219396, - "rtt_ms": 1.219396, + "rtt_ns": 1691209, + "rtt_ms": 1.691209, "checkpoint": 0, "vertex_from": "560", "vertex_to": "680", - "timestamp": "2025-11-27T01:22:00.878924564Z" + "timestamp": "2025-11-27T04:02:17.479538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1241336, - "rtt_ms": 1.241336, + "rtt_ns": 1614916, + "rtt_ms": 1.614916, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.878985034Z" + "vertex_to": "902", + "timestamp": "2025-11-27T04:02:17.479541-08:00" }, { "operation": "add_edge", - "rtt_ns": 1176716, - "rtt_ms": 1.176716, + "rtt_ns": 1015042, + "rtt_ms": 1.015042, "checkpoint": 0, "vertex_from": "560", "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.879050864Z" + "timestamp": "2025-11-27T04:02:17.479546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374955, - "rtt_ms": 1.374955, + "rtt_ns": 4218125, + "rtt_ms": 4.218125, "checkpoint": 0, - "vertex_from": "560", - "vertex_to": "595", - "timestamp": "2025-11-27T01:22:00.879323253Z" + "vertex_from": "555", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.480816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1024347, - "rtt_ms": 1.024347, + "rtt_ns": 2214417, + "rtt_ms": 2.214417, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.879331953Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.481753-08:00" }, { "operation": "add_edge", - "rtt_ns": 1295236, - "rtt_ms": 1.295236, + "rtt_ns": 2227167, + "rtt_ms": 2.227167, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "805", - "timestamp": "2025-11-27T01:22:00.879390303Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:02:17.48177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1379336, - "rtt_ms": 1.379336, + "rtt_ns": 2328000, + "rtt_ms": 2.328, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.879402643Z" + "vertex_to": "805", + "timestamp": "2025-11-27T04:02:17.481785-08:00" }, { "operation": "add_edge", - "rtt_ns": 1423106, - "rtt_ms": 1.423106, + "rtt_ns": 2283333, + "rtt_ms": 2.283333, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.879410043Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.481802-08:00" }, { "operation": "add_edge", - "rtt_ns": 684438, - "rtt_ms": 0.684438, + "rtt_ns": 2388708, + "rtt_ms": 2.388708, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.879436933Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.481821-08:00" }, { "operation": "add_edge", - "rtt_ns": 739717, - "rtt_ms": 0.739717, + "rtt_ns": 2369542, + "rtt_ms": 2.369542, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.879476542Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:02:17.481832-08:00" }, { "operation": "add_edge", - "rtt_ns": 645688, - "rtt_ms": 0.645688, + "rtt_ns": 2517333, + "rtt_ms": 2.517333, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "820", - "timestamp": "2025-11-27T01:22:00.879571992Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.481909-08:00" }, { "operation": "add_edge", - "rtt_ns": 1117286, - "rtt_ms": 1.117286, + "rtt_ns": 3124750, + "rtt_ms": 3.12475, "checkpoint": 0, "vertex_from": "560", - "vertex_to": "797", - "timestamp": "2025-11-27T01:22:00.88016958Z" + "vertex_to": "595", + "timestamp": "2025-11-27T04:02:17.482458-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458425, - "rtt_ms": 1.458425, + "rtt_ns": 2913292, + "rtt_ms": 2.913292, "checkpoint": 0, "vertex_from": "560", "vertex_to": "587", - "timestamp": "2025-11-27T01:22:00.880444669Z" + "timestamp": "2025-11-27T04:02:17.48246-08:00" }, { "operation": "add_edge", - "rtt_ns": 1550595, - "rtt_ms": 1.550595, + "rtt_ns": 1272417, + "rtt_ms": 1.272417, "checkpoint": 0, "vertex_from": "560", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.880875018Z" + "timestamp": "2025-11-27T04:02:17.483027-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634914, - "rtt_ms": 1.634914, + "rtt_ns": 1210542, + "rtt_ms": 1.210542, "checkpoint": 0, "vertex_from": "561", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.881046507Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1728164, - "rtt_ms": 1.728164, - "checkpoint": 0, - "vertex_from": "561", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.881061797Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:02:17.483044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586785, - "rtt_ms": 1.586785, + "rtt_ns": 1262292, + "rtt_ms": 1.262292, "checkpoint": 0, "vertex_from": "561", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.881064657Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.483048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1675704, - "rtt_ms": 1.675704, + "rtt_ns": 2297000, + "rtt_ms": 2.297, "checkpoint": 0, - "vertex_from": "561", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.881080277Z" + "vertex_from": "560", + "vertex_to": "797", + "timestamp": "2025-11-27T04:02:17.483114-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695664, - "rtt_ms": 1.695664, + "rtt_ns": 1732292, + "rtt_ms": 1.732292, "checkpoint": 0, "vertex_from": "561", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.881087767Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.483503-08:00" }, { "operation": "add_edge", - "rtt_ns": 1519035, - "rtt_ms": 1.519035, + "rtt_ns": 1729041, + "rtt_ms": 1.729041, "checkpoint": 0, "vertex_from": "561", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.881092997Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.483642-08:00" }, { "operation": "add_edge", - "rtt_ns": 1663074, - "rtt_ms": 1.663074, + "rtt_ns": 2044167, + "rtt_ms": 2.044167, "checkpoint": 0, "vertex_from": "561", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.881101597Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.483865-08:00" }, { "operation": "add_edge", - "rtt_ns": 1953004, - "rtt_ms": 1.953004, + "rtt_ns": 1027875, + "rtt_ms": 1.027875, "checkpoint": 0, - "vertex_from": "562", - "vertex_to": "578", - "timestamp": "2025-11-27T01:22:00.882123814Z" + "vertex_from": "564", + "vertex_to": "929", + "timestamp": "2025-11-27T04:02:17.484078-08:00" }, { "operation": "add_edge", - "rtt_ns": 1741295, - "rtt_ms": 1.741295, + "rtt_ns": 1218834, + "rtt_ms": 1.218834, "checkpoint": 0, "vertex_from": "563", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.882186984Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:02:17.484264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1390106, - "rtt_ms": 1.390106, + "rtt_ns": 2479708, + "rtt_ms": 2.479708, "checkpoint": 0, - "vertex_from": "563", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.882266044Z" + "vertex_from": "561", + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.484282-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301276, - "rtt_ms": 1.301276, + "rtt_ns": 1182000, + "rtt_ms": 1.182, "checkpoint": 0, "vertex_from": "564", - "vertex_to": "929", - "timestamp": "2025-11-27T01:22:00.882350113Z" + "vertex_to": "576", + "timestamp": "2025-11-27T04:02:17.484297-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309716, - "rtt_ms": 1.309716, + "rtt_ns": 2024125, + "rtt_ms": 2.024125, "checkpoint": 0, - "vertex_from": "564", - "vertex_to": "838", - "timestamp": "2025-11-27T01:22:00.882392343Z" + "vertex_from": "562", + "vertex_to": "578", + "timestamp": "2025-11-27T04:02:17.484485-08:00" }, { "operation": "add_edge", - "rtt_ns": 1395046, - "rtt_ms": 1.395046, + "rtt_ns": 2129667, + "rtt_ms": 2.129667, "checkpoint": 0, - "vertex_from": "566", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.882499453Z" + "vertex_from": "561", + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.484589-08:00" }, { "operation": "add_edge", - "rtt_ns": 1585235, - "rtt_ms": 1.585235, + "rtt_ns": 1892208, + "rtt_ms": 1.892208, "checkpoint": 0, - "vertex_from": "564", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.882651132Z" + "vertex_from": "563", + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.48492-08:00" }, { "operation": "add_edge", - "rtt_ns": 1606345, - "rtt_ms": 1.606345, + "rtt_ns": 1808958, + "rtt_ms": 1.808958, "checkpoint": 0, "vertex_from": "564", - "vertex_to": "576", - "timestamp": "2025-11-27T01:22:00.882668902Z" + "vertex_to": "577", + "timestamp": "2025-11-27T04:02:17.485313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1595185, - "rtt_ms": 1.595185, + "rtt_ns": 1408541, + "rtt_ms": 1.408541, "checkpoint": 0, "vertex_from": "565", "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.882691292Z" + "timestamp": "2025-11-27T04:02:17.485489-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618715, - "rtt_ms": 1.618715, + "rtt_ns": 1689167, + "rtt_ms": 1.689167, "checkpoint": 0, "vertex_from": "564", "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.882707512Z" + "timestamp": "2025-11-27T04:02:17.485556-08:00" }, { "operation": "add_edge", - "rtt_ns": 1219346, - "rtt_ms": 1.219346, + "rtt_ns": 1961625, + "rtt_ms": 1.961625, "checkpoint": 0, - "vertex_from": "566", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.88340717Z" + "vertex_from": "564", + "vertex_to": "838", + "timestamp": "2025-11-27T04:02:17.485606-08:00" }, { "operation": "add_edge", - "rtt_ns": 1374746, - "rtt_ms": 1.374746, + "rtt_ns": 1347916, + "rtt_ms": 1.347916, "checkpoint": 0, "vertex_from": "566", "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.88350159Z" + "timestamp": "2025-11-27T04:02:17.48563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1363396, - "rtt_ms": 1.363396, + "rtt_ns": 1143375, + "rtt_ms": 1.143375, "checkpoint": 0, - "vertex_from": "566", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.883632229Z" + "vertex_from": "568", + "vertex_to": "744", + "timestamp": "2025-11-27T04:02:17.485735-08:00" }, { "operation": "add_edge", - "rtt_ns": 1301936, - "rtt_ms": 1.301936, + "rtt_ns": 1456291, + "rtt_ms": 1.456291, "checkpoint": 0, - "vertex_from": "568", - "vertex_to": "579", - "timestamp": "2025-11-27T01:22:00.883956558Z" + "vertex_from": "566", + "vertex_to": "584", + "timestamp": "2025-11-27T04:02:17.485754-08:00" }, { "operation": "add_edge", - "rtt_ns": 1279396, - "rtt_ms": 1.279396, + "rtt_ns": 1412750, + "rtt_ms": 1.41275, "checkpoint": 0, - "vertex_from": "574", - "vertex_to": "709", - "timestamp": "2025-11-27T01:22:00.883989378Z" + "vertex_from": "566", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.485899-08:00" }, { "operation": "add_edge", - "rtt_ns": 1311236, - "rtt_ms": 1.311236, + "rtt_ns": 1293500, + "rtt_ms": 1.2935, "checkpoint": 0, - "vertex_from": "574", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.884003798Z" + "vertex_from": "568", + "vertex_to": "577", + "timestamp": "2025-11-27T04:02:17.486214-08:00" }, { "operation": "add_edge", - "rtt_ns": 1729405, - "rtt_ms": 1.729405, + "rtt_ns": 2409250, + "rtt_ms": 2.40925, "checkpoint": 0, - "vertex_from": "568", - "vertex_to": "744", - "timestamp": "2025-11-27T01:22:00.884081978Z" + "vertex_from": "566", + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.486674-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495685, - "rtt_ms": 1.495685, + "rtt_ns": 1098791, + "rtt_ms": 1.098791, "checkpoint": 0, - "vertex_from": "568", - "vertex_to": "775", - "timestamp": "2025-11-27T01:22:00.884167317Z" + "vertex_from": "574", + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.486707-08:00" }, { "operation": "add_edge", - "rtt_ns": 1800124, - "rtt_ms": 1.800124, + "rtt_ns": 1342834, + "rtt_ms": 1.342834, "checkpoint": 0, "vertex_from": "568", - "vertex_to": "577", - "timestamp": "2025-11-27T01:22:00.884195287Z" + "vertex_to": "579", + "timestamp": "2025-11-27T04:02:17.486835-08:00" }, { "operation": "add_edge", - "rtt_ns": 700177, - "rtt_ms": 0.700177, + "rtt_ns": 1209417, + "rtt_ms": 1.209417, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.884202547Z" + "vertex_to": "618", + "timestamp": "2025-11-27T04:02:17.486946-08:00" }, { "operation": "add_edge", - "rtt_ns": 1237276, - "rtt_ms": 1.237276, + "rtt_ns": 1410167, + "rtt_ms": 1.410167, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "618", - "timestamp": "2025-11-27T01:22:00.884646316Z" + "vertex_from": "568", + "vertex_to": "775", + "timestamp": "2025-11-27T04:02:17.486967-08:00" }, { "operation": "add_edge", - "rtt_ns": 2176013, - "rtt_ms": 2.176013, + "rtt_ns": 1353250, + "rtt_ms": 1.35325, "checkpoint": 0, - "vertex_from": "568", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.884679346Z" + "vertex_from": "576", + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.487108-08:00" }, { "operation": "add_edge", - "rtt_ns": 1228326, - "rtt_ms": 1.228326, + "rtt_ns": 1243417, + "rtt_ms": 1.243417, "checkpoint": 0, "vertex_from": "576", "vertex_to": "651", - "timestamp": "2025-11-27T01:22:00.884862235Z" + "timestamp": "2025-11-27T04:02:17.487144-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673464, - "rtt_ms": 1.673464, + "rtt_ns": 1960375, + "rtt_ms": 1.960375, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.885757272Z" + "vertex_from": "574", + "vertex_to": "709", + "timestamp": "2025-11-27T04:02:17.487592-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791014, - "rtt_ms": 1.791014, + "rtt_ns": 1831000, + "rtt_ms": 1.831, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "664", - "timestamp": "2025-11-27T01:22:00.885786512Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:02:17.488045-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784504, - "rtt_ms": 1.784504, + "rtt_ns": 1357083, + "rtt_ms": 1.357083, "checkpoint": 0, "vertex_from": "576", "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.885789402Z" + "timestamp": "2025-11-27T04:02:17.488067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591155, - "rtt_ms": 1.591155, + "rtt_ns": 1424459, + "rtt_ms": 1.424459, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.885794652Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:02:17.488099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1846654, - "rtt_ms": 1.846654, + "rtt_ns": 1223917, + "rtt_ms": 1.223917, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.885804122Z" + "vertex_to": "782", + "timestamp": "2025-11-27T04:02:17.488171-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871154, - "rtt_ms": 1.871154, + "rtt_ns": 1448916, + "rtt_ms": 1.448916, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.886068711Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.488284-08:00" }, { "operation": "add_edge", - "rtt_ns": 968237, - "rtt_ms": 0.968237, + "rtt_ns": 3030084, + "rtt_ms": 3.030084, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.886727629Z" + "vertex_from": "568", + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.488344-08:00" }, { "operation": "add_edge", - "rtt_ns": 2134743, - "rtt_ms": 2.134743, + "rtt_ns": 1580542, + "rtt_ms": 1.580542, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "666", - "timestamp": "2025-11-27T01:22:00.886815359Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:02:17.488691-08:00" }, { "operation": "add_edge", - "rtt_ns": 1125397, - "rtt_ms": 1.125397, + "rtt_ns": 1753250, + "rtt_ms": 1.75325, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.886916129Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.488721-08:00" }, { "operation": "add_edge", - "rtt_ns": 2277883, - "rtt_ms": 2.277883, + "rtt_ns": 2110833, + "rtt_ms": 2.110833, "checkpoint": 0, "vertex_from": "576", "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.886924809Z" + "timestamp": "2025-11-27T04:02:17.489255-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087624, - "rtt_ms": 2.087624, + "rtt_ns": 1665584, + "rtt_ms": 1.665584, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.886951679Z" + "vertex_to": "666", + "timestamp": "2025-11-27T04:02:17.489258-08:00" }, { "operation": "add_edge", - "rtt_ns": 1198567, - "rtt_ms": 1.198567, + "rtt_ns": 1351042, + "rtt_ms": 1.351042, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.886995399Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.489397-08:00" }, { "operation": "add_edge", - "rtt_ns": 2827922, - "rtt_ms": 2.827922, + "rtt_ns": 1166292, + "rtt_ms": 1.166292, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "782", - "timestamp": "2025-11-27T01:22:00.886996699Z" + "vertex_to": "964", + "timestamp": "2025-11-27T04:02:17.489511-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276206, - "rtt_ms": 1.276206, + "rtt_ns": 1423375, + "rtt_ms": 1.423375, "checkpoint": 0, "vertex_from": "576", "vertex_to": "824", - "timestamp": "2025-11-27T01:22:00.887063738Z" + "timestamp": "2025-11-27T04:02:17.489524-08:00" }, { "operation": "add_edge", - "rtt_ns": 1366806, - "rtt_ms": 1.366806, + "rtt_ns": 1396500, + "rtt_ms": 1.3965, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "964", - "timestamp": "2025-11-27T01:22:00.887173018Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.489681-08:00" }, { "operation": "add_edge", - "rtt_ns": 1724645, - "rtt_ms": 1.724645, + "rtt_ns": 1650541, + "rtt_ms": 1.650541, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "632", - "timestamp": "2025-11-27T01:22:00.887794616Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.489719-08:00" }, { "operation": "add_edge", - "rtt_ns": 986177, - "rtt_ms": 0.986177, + "rtt_ns": 1450250, + "rtt_ms": 1.45025, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "657", - "timestamp": "2025-11-27T01:22:00.887984355Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.490172-08:00" }, { "operation": "add_edge", - "rtt_ns": 1284566, - "rtt_ms": 1.284566, + "rtt_ns": 2295000, + "rtt_ms": 2.295, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.888013415Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1016296, - "rtt_ms": 1.016296, - "checkpoint": 0, - "vertex_from": "762", - "timestamp": "2025-11-27T01:22:00.888014705Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.490467-08:00" }, { "operation": "add_edge", - "rtt_ns": 1105736, - "rtt_ms": 1.105736, + "rtt_ns": 1218375, + "rtt_ms": 1.218375, "checkpoint": 0, "vertex_from": "576", "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.888024685Z" + "timestamp": "2025-11-27T04:02:17.490478-08:00" }, { "operation": "add_edge", - "rtt_ns": 1099106, - "rtt_ms": 1.099106, + "rtt_ns": 1082041, + "rtt_ms": 1.082041, "checkpoint": 0, "vertex_from": "576", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.888026175Z" + "timestamp": "2025-11-27T04:02:17.49048-08:00" }, { "operation": "add_edge", - "rtt_ns": 1216776, - "rtt_ms": 1.216776, + "rtt_ns": 1269875, + "rtt_ms": 1.269875, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.888033305Z" + "vertex_to": "657", + "timestamp": "2025-11-27T04:02:17.490952-08:00" }, { "operation": "add_edge", - "rtt_ns": 1764744, - "rtt_ms": 1.764744, + "rtt_ns": 1318500, + "rtt_ms": 1.3185, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.888938752Z" + "vertex_to": "592", + "timestamp": "2025-11-27T04:02:17.49104-08:00" }, { "operation": "add_edge", - "rtt_ns": 1165886, - "rtt_ms": 1.165886, + "rtt_ns": 1595584, + "rtt_ms": 1.595584, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "961", - "timestamp": "2025-11-27T01:22:00.888961542Z" + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.491107-08:00" }, { "operation": "add_edge", - "rtt_ns": 961937, - "rtt_ms": 0.961937, + "rtt_ns": 2448291, + "rtt_ms": 2.448291, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "681", - "timestamp": "2025-11-27T01:22:00.888977012Z" + "vertex_to": "632", + "timestamp": "2025-11-27T04:02:17.491142-08:00" }, { "operation": "add_edge", - "rtt_ns": 956737, - "rtt_ms": 0.956737, + "rtt_ns": 1936167, + "rtt_ms": 1.936167, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "744", - "timestamp": "2025-11-27T01:22:00.888992682Z" + "vertex_to": "706", + "timestamp": "2025-11-27T04:02:17.491192-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1959664, - "rtt_ms": 1.959664, + "operation": "add_vertex", + "rtt_ns": 1936042, + "rtt_ms": 1.936042, "checkpoint": 0, - "vertex_from": "576", - "vertex_to": "592", - "timestamp": "2025-11-27T01:22:00.889024362Z" + "vertex_from": "762", + "timestamp": "2025-11-27T04:02:17.491465-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156277, - "rtt_ms": 1.156277, + "rtt_ns": 1661041, + "rtt_ms": 1.661041, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "762", - "timestamp": "2025-11-27T01:22:00.889171352Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.49214-08:00" }, { "operation": "add_edge", - "rtt_ns": 2251743, - "rtt_ms": 2.251743, + "rtt_ns": 1716542, + "rtt_ms": 1.716542, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.889204702Z" + "vertex_to": "961", + "timestamp": "2025-11-27T04:02:17.492186-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178556, - "rtt_ms": 1.178556, + "rtt_ns": 2162541, + "rtt_ms": 2.162541, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "913", - "timestamp": "2025-11-27T01:22:00.889205721Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.492336-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178846, - "rtt_ms": 1.178846, + "rtt_ns": 1455500, + "rtt_ms": 1.4555, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.889208671Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:02:17.492409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1248156, - "rtt_ms": 1.248156, + "rtt_ns": 1215541, + "rtt_ms": 1.215541, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.889233191Z" + "vertex_to": "688", + "timestamp": "2025-11-27T04:02:17.492409-08:00" }, { "operation": "add_edge", - "rtt_ns": 1135216, - "rtt_ms": 1.135216, + "rtt_ns": 1287333, + "rtt_ms": 1.287333, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.890160878Z" + "vertex_to": "738", + "timestamp": "2025-11-27T04:02:17.49243-08:00" }, { "operation": "add_edge", - "rtt_ns": 1192786, - "rtt_ms": 1.192786, + "rtt_ns": 1953500, + "rtt_ms": 1.9535, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.890188618Z" + "vertex_to": "681", + "timestamp": "2025-11-27T04:02:17.492434-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377266, - "rtt_ms": 1.377266, + "rtt_ns": 1418042, + "rtt_ms": 1.418042, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.890355588Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:02:17.492459-08:00" }, { "operation": "add_edge", - "rtt_ns": 1276426, - "rtt_ms": 1.276426, + "rtt_ns": 1578875, + "rtt_ms": 1.578875, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "676", - "timestamp": "2025-11-27T01:22:00.890449928Z" + "vertex_to": "744", + "timestamp": "2025-11-27T04:02:17.492687-08:00" }, { "operation": "add_edge", - "rtt_ns": 1527745, - "rtt_ms": 1.527745, + "rtt_ns": 1511416, + "rtt_ms": 1.511416, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.890490537Z" + "vertex_to": "762", + "timestamp": "2025-11-27T04:02:17.492977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1565945, - "rtt_ms": 1.565945, + "rtt_ns": 936375, + "rtt_ms": 0.936375, "checkpoint": 0, "vertex_from": "576", - "vertex_to": "738", - "timestamp": "2025-11-27T01:22:00.890506957Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:02:17.493273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1350366, - "rtt_ms": 1.350366, + "rtt_ns": 1519791, + "rtt_ms": 1.519791, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "581", - "timestamp": "2025-11-27T01:22:00.890561157Z" + "vertex_to": "587", + "timestamp": "2025-11-27T04:02:17.494208-08:00" }, { "operation": "add_edge", - "rtt_ns": 1420076, - "rtt_ms": 1.420076, + "rtt_ns": 1813917, + "rtt_ms": 1.813917, "checkpoint": 0, "vertex_from": "577", "vertex_to": "944", - "timestamp": "2025-11-27T01:22:00.890628427Z" + "timestamp": "2025-11-27T04:02:17.494245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1472386, - "rtt_ms": 1.472386, + "rtt_ns": 1827959, + "rtt_ms": 1.827959, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "716", - "timestamp": "2025-11-27T01:22:00.890678887Z" + "vertex_to": "581", + "timestamp": "2025-11-27T04:02:17.494264-08:00" }, { "operation": "add_edge", - "rtt_ns": 1458126, - "rtt_ms": 1.458126, + "rtt_ns": 1823500, + "rtt_ms": 1.8235, "checkpoint": 0, "vertex_from": "577", "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.890694337Z" + "timestamp": "2025-11-27T04:02:17.494283-08:00" }, { "operation": "add_edge", - "rtt_ns": 707898, - "rtt_ms": 0.707898, + "rtt_ns": 2270625, + "rtt_ms": 2.270625, "checkpoint": 0, - "vertex_from": "577", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.891215255Z" + "vertex_from": "576", + "vertex_to": "914", + "timestamp": "2025-11-27T04:02:17.494413-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2240833, + "rtt_ms": 2.240833, + "checkpoint": 0, + "vertex_from": "576", + "vertex_to": "650", + "timestamp": "2025-11-27T04:02:17.494428-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2028291, + "rtt_ms": 2.028291, + "checkpoint": 0, + "vertex_from": "576", + "vertex_to": "676", + "timestamp": "2025-11-27T04:02:17.494438-08:00" }, { "operation": "add_edge", - "rtt_ns": 1168607, - "rtt_ms": 1.168607, + "rtt_ns": 2033666, + "rtt_ms": 2.033666, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "587", - "timestamp": "2025-11-27T01:22:00.891331765Z" + "vertex_to": "716", + "timestamp": "2025-11-27T04:02:17.494445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1382506, - "rtt_ms": 1.382506, + "rtt_ns": 2442750, + "rtt_ms": 2.44275, "checkpoint": 0, "vertex_from": "577", "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.891572094Z" + "timestamp": "2025-11-27T04:02:17.49542-08:00" }, { "operation": "add_edge", - "rtt_ns": 1695464, - "rtt_ms": 1.695464, + "rtt_ns": 1207375, + "rtt_ms": 1.207375, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.892052452Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.495454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545265, - "rtt_ms": 1.545265, + "rtt_ns": 1282875, + "rtt_ms": 1.282875, "checkpoint": 0, "vertex_from": "577", "vertex_to": "740", - "timestamp": "2025-11-27T01:22:00.892107722Z" + "timestamp": "2025-11-27T04:02:17.495572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564345, - "rtt_ms": 1.564345, + "rtt_ns": 1323125, + "rtt_ms": 1.323125, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.892193842Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.495588-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834554, - "rtt_ms": 1.834554, + "rtt_ns": 2330041, + "rtt_ms": 2.330041, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.892285772Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.495604-08:00" }, { "operation": "add_edge", - "rtt_ns": 1607315, - "rtt_ms": 1.607315, + "rtt_ns": 1435083, + "rtt_ms": 1.435083, "checkpoint": 0, "vertex_from": "578", "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.892303342Z" + "timestamp": "2025-11-27T04:02:17.495874-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622855, - "rtt_ms": 1.622855, + "rtt_ns": 1557333, + "rtt_ms": 1.557333, "checkpoint": 0, "vertex_from": "578", "vertex_to": "638", - "timestamp": "2025-11-27T01:22:00.892304642Z" + "timestamp": "2025-11-27T04:02:17.49599-08:00" }, { "operation": "add_edge", - "rtt_ns": 1896484, - "rtt_ms": 1.896484, + "rtt_ns": 1813667, + "rtt_ms": 1.813667, "checkpoint": 0, "vertex_from": "577", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.892387791Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.496023-08:00" }, { "operation": "add_edge", - "rtt_ns": 1208216, - "rtt_ms": 1.208216, + "rtt_ns": 1620959, + "rtt_ms": 1.620959, "checkpoint": 0, - "vertex_from": "578", - "vertex_to": "905", - "timestamp": "2025-11-27T01:22:00.892425941Z" + "vertex_from": "577", + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.496035-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694854, - "rtt_ms": 1.694854, + "rtt_ns": 1626917, + "rtt_ms": 1.626917, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "929", - "timestamp": "2025-11-27T01:22:00.893268298Z" + "vertex_to": "905", + "timestamp": "2025-11-27T04:02:17.496074-08:00" }, { "operation": "add_edge", - "rtt_ns": 1954323, - "rtt_ms": 1.954323, + "rtt_ns": 1427042, + "rtt_ms": 1.427042, "checkpoint": 0, "vertex_from": "578", "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.893292488Z" + "timestamp": "2025-11-27T04:02:17.496849-08:00" }, { "operation": "add_edge", - "rtt_ns": 1725824, - "rtt_ms": 1.725824, + "rtt_ns": 1317667, + "rtt_ms": 1.317667, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.894031806Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.496891-08:00" }, { "operation": "add_edge", - "rtt_ns": 1975714, - "rtt_ms": 1.975714, + "rtt_ns": 1555083, + "rtt_ms": 1.555083, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.894083886Z" + "vertex_to": "929", + "timestamp": "2025-11-27T04:02:17.497011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1739764, - "rtt_ms": 1.739764, + "rtt_ns": 1418041, + "rtt_ms": 1.418041, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "745", - "timestamp": "2025-11-27T01:22:00.894128725Z" + "vertex_to": "652", + "timestamp": "2025-11-27T04:02:17.497023-08:00" }, { "operation": "add_edge", - "rtt_ns": 2082733, - "rtt_ms": 2.082733, + "rtt_ns": 1335417, + "rtt_ms": 1.335417, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.894135935Z" + "vertex_to": "650", + "timestamp": "2025-11-27T04:02:17.497211-08:00" }, { "operation": "add_edge", - "rtt_ns": 1952313, - "rtt_ms": 1.952313, + "rtt_ns": 1221042, + "rtt_ms": 1.221042, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.894146585Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:02:17.497245-08:00" }, { "operation": "add_edge", - "rtt_ns": 1843803, - "rtt_ms": 1.843803, + "rtt_ns": 1272875, + "rtt_ms": 1.272875, "checkpoint": 0, "vertex_from": "578", "vertex_to": "669", - "timestamp": "2025-11-27T01:22:00.894148305Z" + "timestamp": "2025-11-27T04:02:17.497263-08:00" }, { "operation": "add_edge", - "rtt_ns": 1887533, - "rtt_ms": 1.887533, + "rtt_ns": 1259375, + "rtt_ms": 1.259375, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.894174195Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.497334-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778254, - "rtt_ms": 1.778254, + "rtt_ns": 1941500, + "rtt_ms": 1.9415, "checkpoint": 0, "vertex_from": "578", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.894209645Z" + "vertex_to": "658", + "timestamp": "2025-11-27T04:02:17.497531-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398766, - "rtt_ms": 1.398766, + "rtt_ns": 1180041, + "rtt_ms": 1.180041, "checkpoint": 0, - "vertex_from": "578", - "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.894698054Z" + "vertex_from": "579", + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.498192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1737554, - "rtt_ms": 1.737554, + "rtt_ns": 1221000, + "rtt_ms": 1.221, "checkpoint": 0, - "vertex_from": "578", - "vertex_to": "856", - "timestamp": "2025-11-27T01:22:00.895006792Z" + "vertex_from": "579", + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.498244-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1114833, + "rtt_ms": 1.114833, + "checkpoint": 0, + "vertex_from": "579", + "vertex_to": "652", + "timestamp": "2025-11-27T04:02:17.498361-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1140166, + "rtt_ms": 1.140166, + "checkpoint": 0, + "vertex_from": "579", + "vertex_to": "808", + "timestamp": "2025-11-27T04:02:17.498373-08:00" }, { "operation": "add_edge", - "rtt_ns": 1013936, - "rtt_ms": 1.013936, + "rtt_ns": 1115541, + "rtt_ms": 1.115541, "checkpoint": 0, "vertex_from": "579", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.895098662Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.498379-08:00" }, { "operation": "add_edge", - "rtt_ns": 1431305, - "rtt_ms": 1.431305, + "rtt_ns": 1282709, + "rtt_ms": 1.282709, "checkpoint": 0, "vertex_from": "580", "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.89560622Z" + "timestamp": "2025-11-27T04:02:17.498816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1592114, - "rtt_ms": 1.592114, + "rtt_ns": 2027500, + "rtt_ms": 2.0275, "checkpoint": 0, - "vertex_from": "579", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.89562566Z" + "vertex_from": "578", + "vertex_to": "856", + "timestamp": "2025-11-27T04:02:17.498879-08:00" }, { "operation": "add_edge", - "rtt_ns": 1566425, - "rtt_ms": 1.566425, + "rtt_ns": 2992541, + "rtt_ms": 2.992541, "checkpoint": 0, - "vertex_from": "579", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.8956973Z" + "vertex_from": "578", + "vertex_to": "745", + "timestamp": "2025-11-27T04:02:17.499028-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564635, - "rtt_ms": 1.564635, + "rtt_ns": 2202000, + "rtt_ms": 2.202, "checkpoint": 0, - "vertex_from": "580", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.89577525Z" + "vertex_from": "578", + "vertex_to": "904", + "timestamp": "2025-11-27T04:02:17.499094-08:00" }, { "operation": "add_edge", - "rtt_ns": 1088596, - "rtt_ms": 1.088596, + "rtt_ns": 1245959, + "rtt_ms": 1.245959, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.89578733Z" + "vertex_to": "785", + "timestamp": "2025-11-27T04:02:17.499628-08:00" }, { "operation": "add_edge", - "rtt_ns": 1657115, - "rtt_ms": 1.657115, + "rtt_ns": 2370125, + "rtt_ms": 2.370125, "checkpoint": 0, "vertex_from": "579", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.89580453Z" + "vertex_to": "580", + "timestamp": "2025-11-27T04:02:17.499706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1684455, - "rtt_ms": 1.684455, + "rtt_ns": 1603125, + "rtt_ms": 1.603125, "checkpoint": 0, - "vertex_from": "579", - "vertex_to": "652", - "timestamp": "2025-11-27T01:22:00.89582267Z" + "vertex_from": "580", + "vertex_to": "673", + "timestamp": "2025-11-27T04:02:17.499797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1688835, - "rtt_ms": 1.688835, + "rtt_ns": 1723875, + "rtt_ms": 1.723875, "checkpoint": 0, - "vertex_from": "579", - "vertex_to": "580", - "timestamp": "2025-11-27T01:22:00.89583767Z" + "vertex_from": "580", + "vertex_to": "688", + "timestamp": "2025-11-27T04:02:17.499969-08:00" }, { "operation": "add_edge", - "rtt_ns": 2744532, - "rtt_ms": 2.744532, + "rtt_ns": 1721709, + "rtt_ms": 1.721709, "checkpoint": 0, "vertex_from": "580", "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.897752074Z" + "timestamp": "2025-11-27T04:02:17.500083-08:00" }, { "operation": "add_edge", - "rtt_ns": 2672362, - "rtt_ms": 2.672362, + "rtt_ns": 1398917, + "rtt_ms": 1.398917, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "785", - "timestamp": "2025-11-27T01:22:00.898279712Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.500494-08:00" }, { "operation": "add_edge", - "rtt_ns": 3217730, - "rtt_ms": 3.21773, + "rtt_ns": 2141458, + "rtt_ms": 2.141458, "checkpoint": 0, "vertex_from": "580", "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.898317072Z" + "timestamp": "2025-11-27T04:02:17.500515-08:00" }, { "operation": "add_edge", - "rtt_ns": 2793762, - "rtt_ms": 2.793762, + "rtt_ns": 2118709, + "rtt_ms": 2.118709, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.898420012Z" - }, - { - "operation": "add_edge", - "rtt_ns": 685317, - "rtt_ms": 0.685317, - "checkpoint": 0, - "vertex_from": "581", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.898438201Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.500999-08:00" }, { "operation": "add_edge", - "rtt_ns": 2743191, - "rtt_ms": 2.743191, + "rtt_ns": 2065250, + "rtt_ms": 2.06525, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.898441111Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.501095-08:00" }, { "operation": "add_edge", - "rtt_ns": 2745801, - "rtt_ms": 2.745801, + "rtt_ns": 2310792, + "rtt_ms": 2.310792, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.898533791Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.501129-08:00" }, { "operation": "add_edge", - "rtt_ns": 2732911, - "rtt_ms": 2.732911, + "rtt_ns": 1518667, + "rtt_ms": 1.518667, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.898556161Z" + "vertex_to": "593", + "timestamp": "2025-11-27T04:02:17.501148-08:00" }, { "operation": "add_edge", - "rtt_ns": 2728011, - "rtt_ms": 2.728011, + "rtt_ns": 1486709, + "rtt_ms": 1.486709, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "584", - "timestamp": "2025-11-27T01:22:00.898566131Z" + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.501193-08:00" }, { "operation": "add_edge", - "rtt_ns": 2822511, - "rtt_ms": 2.822511, + "rtt_ns": 1319375, + "rtt_ms": 1.319375, "checkpoint": 0, - "vertex_from": "580", - "vertex_to": "593", - "timestamp": "2025-11-27T01:22:00.898627821Z" + "vertex_from": "581", + "vertex_to": "840", + "timestamp": "2025-11-27T04:02:17.50129-08:00" }, { "operation": "add_edge", - "rtt_ns": 3413869, - "rtt_ms": 3.413869, + "rtt_ns": 1508042, + "rtt_ms": 1.508042, "checkpoint": 0, "vertex_from": "580", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.899189969Z" + "vertex_to": "584", + "timestamp": "2025-11-27T04:02:17.501307-08:00" }, { "operation": "add_edge", - "rtt_ns": 1048307, - "rtt_ms": 1.048307, + "rtt_ns": 1416792, + "rtt_ms": 1.416792, "checkpoint": 0, "vertex_from": "582", "vertex_to": "609", - "timestamp": "2025-11-27T01:22:00.899366009Z" + "timestamp": "2025-11-27T04:02:17.501913-08:00" }, { "operation": "add_edge", - "rtt_ns": 1155306, - "rtt_ms": 1.155306, + "rtt_ns": 1366750, + "rtt_ms": 1.36675, "checkpoint": 0, - "vertex_from": "581", - "vertex_to": "657", - "timestamp": "2025-11-27T01:22:00.899436008Z" + "vertex_from": "584", + "vertex_to": "848", + "timestamp": "2025-11-27T04:02:17.502561-08:00" }, { "operation": "add_edge", - "rtt_ns": 1475605, - "rtt_ms": 1.475605, + "rtt_ns": 1466417, + "rtt_ms": 1.466417, "checkpoint": 0, - "vertex_from": "583", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.899896387Z" + "vertex_from": "584", + "vertex_to": "897", + "timestamp": "2025-11-27T04:02:17.502596-08:00" }, { "operation": "add_edge", - "rtt_ns": 1582245, - "rtt_ms": 1.582245, + "rtt_ns": 1330583, + "rtt_ms": 1.330583, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "617", - "timestamp": "2025-11-27T01:22:00.900021286Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.502622-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515085, - "rtt_ms": 1.515085, + "rtt_ns": 1556583, + "rtt_ms": 1.556583, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.900071916Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.502652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532865, - "rtt_ms": 1.532865, + "rtt_ns": 1654750, + "rtt_ms": 1.65475, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.900099576Z" + "vertex_to": "617", + "timestamp": "2025-11-27T04:02:17.502658-08:00" }, { "operation": "add_edge", - "rtt_ns": 1658205, - "rtt_ms": 1.658205, + "rtt_ns": 1580666, + "rtt_ms": 1.580666, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.900099786Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:02:17.502729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1611245, - "rtt_ms": 1.611245, + "rtt_ns": 2652666, + "rtt_ms": 2.652666, "checkpoint": 0, - "vertex_from": "584", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.900145456Z" + "vertex_from": "581", + "vertex_to": "657", + "timestamp": "2025-11-27T04:02:17.502737-08:00" }, { "operation": "add_edge", - "rtt_ns": 2021453, - "rtt_ms": 2.021453, + "rtt_ns": 1570792, + "rtt_ms": 1.570792, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.900649684Z" + "vertex_to": "827", + "timestamp": "2025-11-27T04:02:17.502879-08:00" }, { "operation": "add_edge", - "rtt_ns": 894497, - "rtt_ms": 0.894497, + "rtt_ns": 2381875, + "rtt_ms": 2.381875, "checkpoint": 0, - "vertex_from": "584", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.900792594Z" + "vertex_from": "583", + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.502898-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584535, - "rtt_ms": 1.584535, + "rtt_ns": 1124125, + "rtt_ms": 1.124125, "checkpoint": 0, "vertex_from": "584", "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.900951534Z" + "timestamp": "2025-11-27T04:02:17.503039-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783904, - "rtt_ms": 1.783904, + "rtt_ns": 1236083, + "rtt_ms": 1.236083, "checkpoint": 0, "vertex_from": "584", - "vertex_to": "827", - "timestamp": "2025-11-27T01:22:00.900974913Z" + "vertex_to": "849", + "timestamp": "2025-11-27T04:02:17.5038-08:00" }, { "operation": "add_edge", - "rtt_ns": 1644075, - "rtt_ms": 1.644075, + "rtt_ns": 1330792, + "rtt_ms": 1.330792, "checkpoint": 0, - "vertex_from": "584", - "vertex_to": "849", - "timestamp": "2025-11-27T01:22:00.901081403Z" + "vertex_from": "587", + "vertex_to": "881", + "timestamp": "2025-11-27T04:02:17.504371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1169367, - "rtt_ms": 1.169367, + "rtt_ns": 1804208, + "rtt_ms": 1.804208, "checkpoint": 0, "vertex_from": "584", "vertex_to": "637", - "timestamp": "2025-11-27T01:22:00.901191753Z" + "timestamp": "2025-11-27T04:02:17.504428-08:00" }, { "operation": "add_edge", - "rtt_ns": 1705795, - "rtt_ms": 1.705795, + "rtt_ns": 1779041, + "rtt_ms": 1.779041, "checkpoint": 0, "vertex_from": "585", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.901806351Z" + "vertex_to": "612", + "timestamp": "2025-11-27T04:02:17.504433-08:00" }, { "operation": "add_edge", - "rtt_ns": 1756205, - "rtt_ms": 1.756205, + "rtt_ns": 1796750, + "rtt_ms": 1.79675, "checkpoint": 0, "vertex_from": "585", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.901828701Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.504456-08:00" }, { "operation": "add_edge", - "rtt_ns": 1700535, - "rtt_ms": 1.700535, + "rtt_ns": 1640292, + "rtt_ms": 1.640292, "checkpoint": 0, - "vertex_from": "585", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.901847251Z" + "vertex_from": "587", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.504539-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783615, - "rtt_ms": 1.783615, + "rtt_ns": 1681333, + "rtt_ms": 1.681333, "checkpoint": 0, - "vertex_from": "585", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.901883941Z" + "vertex_from": "586", + "vertex_to": "612", + "timestamp": "2025-11-27T04:02:17.504562-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340256, - "rtt_ms": 1.340256, + "rtt_ns": 1965959, + "rtt_ms": 1.965959, "checkpoint": 0, - "vertex_from": "587", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.90213365Z" + "vertex_from": "584", + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.504564-08:00" }, { "operation": "add_edge", - "rtt_ns": 1553026, - "rtt_ms": 1.553026, + "rtt_ns": 1845625, + "rtt_ms": 1.845625, "checkpoint": 0, - "vertex_from": "586", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.9022034Z" + "vertex_from": "585", + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.504584-08:00" }, { "operation": "add_edge", - "rtt_ns": 1091656, - "rtt_ms": 1.091656, + "rtt_ns": 1932917, + "rtt_ms": 1.932917, + "checkpoint": 0, + "vertex_from": "585", + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.504663-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1778167, + "rtt_ms": 1.778167, "checkpoint": 0, "vertex_from": "588", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.902284119Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:02:17.505579-08:00" }, { "operation": "add_edge", - "rtt_ns": 1044976, - "rtt_ms": 1.044976, + "rtt_ns": 1295750, + "rtt_ms": 1.29575, "checkpoint": 0, "vertex_from": "589", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.902852357Z" + "timestamp": "2025-11-27T04:02:17.50573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1916253, - "rtt_ms": 1.916253, + "rtt_ns": 1435792, + "rtt_ms": 1.435792, "checkpoint": 0, - "vertex_from": "587", - "vertex_to": "881", - "timestamp": "2025-11-27T01:22:00.902868727Z" + "vertex_from": "592", + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.506099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1096616, - "rtt_ms": 1.096616, + "rtt_ns": 1659500, + "rtt_ms": 1.6595, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.902980977Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:02:17.506116-08:00" }, { "operation": "add_edge", - "rtt_ns": 1938384, - "rtt_ms": 1.938384, + "rtt_ns": 1758750, + "rtt_ms": 1.75875, "checkpoint": 0, "vertex_from": "588", "vertex_to": "650", - "timestamp": "2025-11-27T01:22:00.903020317Z" + "timestamp": "2025-11-27T04:02:17.506131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1298296, - "rtt_ms": 1.298296, + "rtt_ns": 1582417, + "rtt_ms": 1.582417, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.903146047Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:02:17.506145-08:00" }, { "operation": "add_edge", - "rtt_ns": 2353523, - "rtt_ms": 2.353523, + "rtt_ns": 1734833, + "rtt_ms": 1.734833, "checkpoint": 0, - "vertex_from": "588", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.903329076Z" + "vertex_from": "592", + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.506275-08:00" }, { "operation": "add_edge", - "rtt_ns": 1923814, - "rtt_ms": 1.923814, + "rtt_ns": 1729292, + "rtt_ms": 1.729292, "checkpoint": 0, "vertex_from": "592", "vertex_to": "977", - "timestamp": "2025-11-27T01:22:00.904058584Z" + "timestamp": "2025-11-27T04:02:17.506294-08:00" }, { "operation": "add_edge", - "rtt_ns": 2241153, - "rtt_ms": 2.241153, + "rtt_ns": 1725334, + "rtt_ms": 1.725334, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.904071174Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.50631-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470276, - "rtt_ms": 1.470276, + "rtt_ns": 1037042, + "rtt_ms": 1.037042, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.904339433Z" + "vertex_to": "669", + "timestamp": "2025-11-27T04:02:17.506617-08:00" }, { "operation": "add_edge", - "rtt_ns": 1530326, - "rtt_ms": 1.530326, + "rtt_ns": 2372125, + "rtt_ms": 2.372125, "checkpoint": 0, - "vertex_from": "592", - "vertex_to": "669", - "timestamp": "2025-11-27T01:22:00.904383372Z" + "vertex_from": "588", + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.506802-08:00" }, { "operation": "add_edge", - "rtt_ns": 2209962, - "rtt_ms": 2.209962, + "rtt_ns": 1125542, + "rtt_ms": 1.125542, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.904416492Z" + "vertex_to": "913", + "timestamp": "2025-11-27T04:02:17.507271-08:00" }, { "operation": "add_edge", - "rtt_ns": 2164813, - "rtt_ms": 2.164813, + "rtt_ns": 1631875, + "rtt_ms": 1.631875, "checkpoint": 0, - "vertex_from": "592", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.904449702Z" + "vertex_from": "593", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.507907-08:00" }, { "operation": "add_edge", - "rtt_ns": 1773094, - "rtt_ms": 1.773094, + "rtt_ns": 1998250, + "rtt_ms": 1.99825, "checkpoint": 0, "vertex_from": "592", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.904794131Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.50813-08:00" }, { "operation": "add_edge", - "rtt_ns": 1683044, - "rtt_ms": 1.683044, + "rtt_ns": 1606917, + "rtt_ms": 1.606917, "checkpoint": 0, - "vertex_from": "592", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.904830991Z" + "vertex_from": "593", + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.508225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1889114, - "rtt_ms": 1.889114, + "rtt_ns": 1886333, + "rtt_ms": 1.886333, "checkpoint": 0, - "vertex_from": "592", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.904871211Z" + "vertex_from": "593", + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.50869-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569845, - "rtt_ms": 1.569845, + "rtt_ns": 2417500, + "rtt_ms": 2.4175, "checkpoint": 0, - "vertex_from": "592", - "vertex_to": "913", - "timestamp": "2025-11-27T01:22:00.904900321Z" + "vertex_from": "593", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.508713-08:00" }, { "operation": "add_edge", - "rtt_ns": 915187, - "rtt_ms": 0.915187, + "rtt_ns": 2664958, + "rtt_ms": 2.664958, "checkpoint": 0, - "vertex_from": "593", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.904978401Z" + "vertex_from": "592", + "vertex_to": "612", + "timestamp": "2025-11-27T04:02:17.508782-08:00" }, { "operation": "add_edge", - "rtt_ns": 929176, - "rtt_ms": 0.929176, + "rtt_ns": 3087834, + "rtt_ms": 3.087834, "checkpoint": 0, - "vertex_from": "593", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.90500289Z" + "vertex_from": "592", + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.508818-08:00" }, { "operation": "add_edge", - "rtt_ns": 808617, - "rtt_ms": 0.808617, + "rtt_ns": 2550000, + "rtt_ms": 2.55, "checkpoint": 0, "vertex_from": "593", "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.90515093Z" + "timestamp": "2025-11-27T04:02:17.508861-08:00" }, { "operation": "add_edge", - "rtt_ns": 836328, - "rtt_ms": 0.836328, + "rtt_ns": 2781125, + "rtt_ms": 2.781125, "checkpoint": 0, - "vertex_from": "593", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.90522119Z" + "vertex_from": "592", + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.508881-08:00" }, { "operation": "add_edge", - "rtt_ns": 834108, - "rtt_ms": 0.834108, + "rtt_ns": 1166041, + "rtt_ms": 1.166041, "checkpoint": 0, - "vertex_from": "593", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.90525205Z" + "vertex_from": "596", + "vertex_to": "737", + "timestamp": "2025-11-27T04:02:17.510048-08:00" }, { "operation": "add_edge", - "rtt_ns": 824567, - "rtt_ms": 0.824567, + "rtt_ns": 2249500, + "rtt_ms": 2.2495, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "1009", - "timestamp": "2025-11-27T01:22:00.905278849Z" + "vertex_to": "673", + "timestamp": "2025-11-27T04:02:17.510158-08:00" }, { "operation": "add_edge", - "rtt_ns": 667108, - "rtt_ms": 0.667108, + "rtt_ns": 1441708, + "rtt_ms": 1.441708, "checkpoint": 0, - "vertex_from": "594", - "vertex_to": "705", - "timestamp": "2025-11-27T01:22:00.905498899Z" + "vertex_from": "596", + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.510303-08:00" }, { "operation": "add_edge", - "rtt_ns": 708648, - "rtt_ms": 0.708648, + "rtt_ns": 3331416, + "rtt_ms": 3.331416, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "673", - "timestamp": "2025-11-27T01:22:00.905505639Z" + "vertex_to": "1009", + "timestamp": "2025-11-27T04:02:17.510603-08:00" }, { "operation": "add_edge", - "rtt_ns": 690228, - "rtt_ms": 0.690228, + "rtt_ns": 1798916, + "rtt_ms": 1.798916, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.905562369Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.510618-08:00" }, { "operation": "add_edge", - "rtt_ns": 688057, - "rtt_ms": 0.688057, + "rtt_ns": 2437208, + "rtt_ms": 2.437208, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.905592748Z" + "vertex_to": "897", + "timestamp": "2025-11-27T04:02:17.510663-08:00" }, { "operation": "add_edge", - "rtt_ns": 639678, - "rtt_ms": 0.639678, + "rtt_ns": 2731750, + "rtt_ms": 2.73175, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "608", - "timestamp": "2025-11-27T01:22:00.905619838Z" + "vertex_to": "705", + "timestamp": "2025-11-27T04:02:17.510862-08:00" }, { "operation": "add_edge", - "rtt_ns": 644938, - "rtt_ms": 0.644938, + "rtt_ns": 2333125, + "rtt_ms": 2.333125, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.905650488Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:02:17.511024-08:00" }, { "operation": "add_edge", - "rtt_ns": 1020817, - "rtt_ms": 1.020817, + "rtt_ns": 2259334, + "rtt_ms": 2.259334, "checkpoint": 0, - "vertex_from": "596", + "vertex_from": "594", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.906300516Z" + "timestamp": "2025-11-27T04:02:17.511042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1309166, - "rtt_ms": 1.309166, + "rtt_ns": 2599542, + "rtt_ms": 2.599542, "checkpoint": 0, "vertex_from": "594", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.906462136Z" + "vertex_to": "608", + "timestamp": "2025-11-27T04:02:17.511313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1000426, - "rtt_ms": 1.000426, + "rtt_ns": 1429792, + "rtt_ms": 1.429792, "checkpoint": 0, "vertex_from": "596", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.906509235Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:02:17.512034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1265335, - "rtt_ms": 1.265335, + "rtt_ns": 1935875, + "rtt_ms": 1.935875, "checkpoint": 0, "vertex_from": "596", - "vertex_to": "737", - "timestamp": "2025-11-27T01:22:00.906518375Z" + "vertex_to": "934", + "timestamp": "2025-11-27T04:02:17.512095-08:00" }, { "operation": "add_edge", - "rtt_ns": 1434525, - "rtt_ms": 1.434525, + "rtt_ns": 1968334, + "rtt_ms": 1.968334, "checkpoint": 0, "vertex_from": "596", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.906656705Z" + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.512273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1213956, - "rtt_ms": 1.213956, + "rtt_ns": 2253791, + "rtt_ms": 2.253791, "checkpoint": 0, "vertex_from": "596", - "vertex_to": "934", - "timestamp": "2025-11-27T01:22:00.906714785Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1961514, - "rtt_ms": 1.961514, - "checkpoint": 0, - "vertex_from": "597", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.907555602Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.512303-08:00" }, { "operation": "add_edge", - "rtt_ns": 2053043, - "rtt_ms": 2.053043, + "rtt_ns": 970000, + "rtt_ms": 0.97, "checkpoint": 0, - "vertex_from": "596", - "vertex_to": "930", - "timestamp": "2025-11-27T01:22:00.907617952Z" + "vertex_from": "601", + "vertex_to": "612", + "timestamp": "2025-11-27T04:02:17.513244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1983044, - "rtt_ms": 1.983044, + "rtt_ns": 2988667, + "rtt_ms": 2.988667, "checkpoint": 0, "vertex_from": "598", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.907635102Z" + "vertex_to": "736", + "timestamp": "2025-11-27T04:02:17.513652-08:00" }, { "operation": "add_edge", - "rtt_ns": 1185976, - "rtt_ms": 1.185976, + "rtt_ns": 2722875, + "rtt_ms": 2.722875, "checkpoint": 0, - "vertex_from": "600", - "vertex_to": "664", - "timestamp": "2025-11-27T01:22:00.907651142Z" + "vertex_from": "599", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.513747-08:00" }, { "operation": "add_edge", - "rtt_ns": 2032564, - "rtt_ms": 2.032564, + "rtt_ns": 2901125, + "rtt_ms": 2.901125, "checkpoint": 0, "vertex_from": "598", - "vertex_to": "736", - "timestamp": "2025-11-27T01:22:00.907653742Z" + "vertex_to": "808", + "timestamp": "2025-11-27T04:02:17.513764-08:00" }, { "operation": "add_edge", - "rtt_ns": 1143437, - "rtt_ms": 1.143437, + "rtt_ns": 1809417, + "rtt_ms": 1.809417, "checkpoint": 0, "vertex_from": "600", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.907654072Z" + "vertex_to": "643", + "timestamp": "2025-11-27T04:02:17.513905-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1522825, - "rtt_ms": 1.522825, + "operation": "add_vertex", + "rtt_ns": 1617750, + "rtt_ms": 1.61775, "checkpoint": 0, - "vertex_from": "599", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.907825691Z" + "vertex_from": "978", + "timestamp": "2025-11-27T04:02:17.513922-08:00" }, { "operation": "add_edge", - "rtt_ns": 1368596, - "rtt_ms": 1.368596, + "rtt_ns": 2940791, + "rtt_ms": 2.940791, "checkpoint": 0, "vertex_from": "600", - "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.907888401Z" + "vertex_to": "664", + "timestamp": "2025-11-27T04:02:17.513984-08:00" }, { "operation": "add_edge", - "rtt_ns": 1319085, - "rtt_ms": 1.319085, + "rtt_ns": 2156166, + "rtt_ms": 2.156166, "checkpoint": 0, "vertex_from": "600", - "vertex_to": "643", - "timestamp": "2025-11-27T01:22:00.90797848Z" + "vertex_to": "672", + "timestamp": "2025-11-27T04:02:17.514192-08:00" }, { "operation": "add_edge", - "rtt_ns": 1496695, - "rtt_ms": 1.496695, + "rtt_ns": 2890959, + "rtt_ms": 2.890959, "checkpoint": 0, - "vertex_from": "601", - "vertex_to": "612", - "timestamp": "2025-11-27T01:22:00.90821317Z" + "vertex_from": "600", + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.514205-08:00" }, { "operation": "add_edge", - "rtt_ns": 665168, - "rtt_ms": 0.665168, + "rtt_ns": 967750, + "rtt_ms": 0.96775, "checkpoint": 0, "vertex_from": "602", "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.908285Z" + "timestamp": "2025-11-27T04:02:17.514213-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 758947, - "rtt_ms": 0.758947, + "operation": "add_edge", + "rtt_ns": 3609166, + "rtt_ms": 3.609166, "checkpoint": 0, - "vertex_from": "978", - "timestamp": "2025-11-27T01:22:00.908321009Z" + "vertex_from": "597", + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.514228-08:00" }, { "operation": "add_edge", - "rtt_ns": 708077, - "rtt_ms": 0.708077, + "rtt_ns": 953458, + "rtt_ms": 0.953458, "checkpoint": 0, "vertex_from": "602", - "vertex_to": "810", - "timestamp": "2025-11-27T01:22:00.908344789Z" + "vertex_to": "978", + "timestamp": "2025-11-27T04:02:17.514877-08:00" }, { "operation": "add_edge", - "rtt_ns": 1268375, - "rtt_ms": 1.268375, + "rtt_ns": 1264125, + "rtt_ms": 1.264125, "checkpoint": 0, "vertex_from": "604", "vertex_to": "929", - "timestamp": "2025-11-27T01:22:00.908922347Z" + "timestamp": "2025-11-27T04:02:17.515012-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1603459, + "rtt_ms": 1.603459, + "checkpoint": 0, + "vertex_from": "602", + "vertex_to": "810", + "timestamp": "2025-11-27T04:02:17.515257-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128796, - "rtt_ms": 1.128796, + "rtt_ns": 2194041, + "rtt_ms": 2.194041, "checkpoint": 0, "vertex_from": "608", "vertex_to": "620", - "timestamp": "2025-11-27T01:22:00.908956827Z" + "timestamp": "2025-11-27T04:02:17.51618-08:00" }, { "operation": "add_edge", - "rtt_ns": 1057937, - "rtt_ms": 1.057937, + "rtt_ns": 1986167, + "rtt_ms": 1.986167, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "734", - "timestamp": "2025-11-27T01:22:00.909038297Z" + "vertex_to": "644", + "timestamp": "2025-11-27T04:02:17.5162-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515975, - "rtt_ms": 1.515975, + "rtt_ns": 2463000, + "rtt_ms": 2.463, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "722", - "timestamp": "2025-11-27T01:22:00.909172907Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.516371-08:00" }, { "operation": "add_edge", - "rtt_ns": 1524855, - "rtt_ms": 1.524855, + "rtt_ns": 2671917, + "rtt_ms": 2.671917, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.909415006Z" + "vertex_to": "722", + "timestamp": "2025-11-27T04:02:17.516437-08:00" }, { "operation": "add_edge", - "rtt_ns": 1779894, - "rtt_ms": 1.779894, + "rtt_ns": 2225375, + "rtt_ms": 2.225375, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.909436936Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:02:17.516454-08:00" }, { "operation": "add_edge", - "rtt_ns": 1559215, - "rtt_ms": 1.559215, + "rtt_ns": 2293084, + "rtt_ms": 2.293084, "checkpoint": 0, - "vertex_from": "602", - "vertex_to": "978", - "timestamp": "2025-11-27T01:22:00.909880554Z" + "vertex_from": "608", + "vertex_to": "734", + "timestamp": "2025-11-27T04:02:17.516499-08:00" }, { "operation": "add_edge", - "rtt_ns": 1669315, - "rtt_ms": 1.669315, + "rtt_ns": 2384583, + "rtt_ms": 2.384583, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.910016244Z" + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.516577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1845404, - "rtt_ms": 1.845404, + "rtt_ns": 1747291, + "rtt_ms": 1.747291, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "644", - "timestamp": "2025-11-27T01:22:00.910059724Z" + "vertex_to": "625", + "timestamp": "2025-11-27T04:02:17.516761-08:00" }, { "operation": "add_edge", - "rtt_ns": 1120377, - "rtt_ms": 1.120377, + "rtt_ns": 1989875, + "rtt_ms": 1.989875, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.910078174Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.516868-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796584, - "rtt_ms": 1.796584, + "rtt_ns": 1423792, + "rtt_ms": 1.423792, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.910083064Z" + "vertex_to": "637", + "timestamp": "2025-11-27T04:02:17.517605-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377136, - "rtt_ms": 1.377136, + "rtt_ns": 2430084, + "rtt_ms": 2.430084, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "625", - "timestamp": "2025-11-27T01:22:00.910301713Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.517688-08:00" }, { "operation": "add_edge", - "rtt_ns": 1214396, - "rtt_ms": 1.214396, + "rtt_ns": 1211083, + "rtt_ms": 1.211083, "checkpoint": 0, - "vertex_from": "608", - "vertex_to": "660", - "timestamp": "2025-11-27T01:22:00.910630532Z" + "vertex_from": "610", + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.518079-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618975, - "rtt_ms": 1.618975, + "rtt_ns": 2011709, + "rtt_ms": 2.011709, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "637", - "timestamp": "2025-11-27T01:22:00.910658562Z" + "vertex_to": "684", + "timestamp": "2025-11-27T04:02:17.518212-08:00" }, { "operation": "add_edge", - "rtt_ns": 1501335, - "rtt_ms": 1.501335, + "rtt_ns": 1942167, + "rtt_ms": 1.942167, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "684", - "timestamp": "2025-11-27T01:22:00.910675672Z" + "vertex_to": "640", + "timestamp": "2025-11-27T04:02:17.51838-08:00" }, { "operation": "add_edge", - "rtt_ns": 798678, - "rtt_ms": 0.798678, + "rtt_ns": 1942041, + "rtt_ms": 1.942041, "checkpoint": 0, "vertex_from": "608", "vertex_to": "872", - "timestamp": "2025-11-27T01:22:00.910680582Z" + "timestamp": "2025-11-27T04:02:17.518397-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287696, - "rtt_ms": 1.287696, + "rtt_ns": 2071959, + "rtt_ms": 2.071959, "checkpoint": 0, "vertex_from": "608", - "vertex_to": "640", - "timestamp": "2025-11-27T01:22:00.910725762Z" + "vertex_to": "660", + "timestamp": "2025-11-27T04:02:17.518445-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742024, - "rtt_ms": 1.742024, + "rtt_ns": 1828416, + "rtt_ms": 1.828416, "checkpoint": 0, "vertex_from": "609", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.911821348Z" + "timestamp": "2025-11-27T04:02:17.51859-08:00" }, { "operation": "add_edge", - "rtt_ns": 1774184, - "rtt_ms": 1.774184, + "rtt_ns": 2175042, + "rtt_ms": 2.175042, "checkpoint": 0, - "vertex_from": "610", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.911858318Z" + "vertex_from": "609", + "vertex_to": "808", + "timestamp": "2025-11-27T04:02:17.518675-08:00" }, { "operation": "add_edge", - "rtt_ns": 1853194, - "rtt_ms": 1.853194, + "rtt_ns": 2107750, + "rtt_ms": 2.10775, "checkpoint": 0, "vertex_from": "609", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.911870518Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.518686-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869754, - "rtt_ms": 1.869754, + "rtt_ns": 1118959, + "rtt_ms": 1.118959, "checkpoint": 0, - "vertex_from": "609", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.911937328Z" + "vertex_from": "610", + "vertex_to": "803", + "timestamp": "2025-11-27T04:02:17.518808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797394, - "rtt_ms": 1.797394, + "rtt_ns": 1307167, + "rtt_ms": 1.307167, "checkpoint": 0, "vertex_from": "610", "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.912100297Z" + "timestamp": "2025-11-27T04:02:17.518912-08:00" }, { "operation": "add_edge", - "rtt_ns": 2062593, - "rtt_ms": 2.062593, + "rtt_ns": 1689625, + "rtt_ms": 1.689625, "checkpoint": 0, "vertex_from": "610", "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.912721955Z" + "timestamp": "2025-11-27T04:02:17.51977-08:00" }, { "operation": "add_edge", - "rtt_ns": 1150067, - "rtt_ms": 1.150067, + "rtt_ns": 1593000, + "rtt_ms": 1.593, "checkpoint": 0, - "vertex_from": "611", - "vertex_to": "626", - "timestamp": "2025-11-27T01:22:00.913009685Z" + "vertex_from": "610", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.519806-08:00" }, { "operation": "add_edge", - "rtt_ns": 2521552, - "rtt_ms": 2.521552, + "rtt_ns": 1468875, + "rtt_ms": 1.468875, "checkpoint": 0, "vertex_from": "610", - "vertex_to": "803", - "timestamp": "2025-11-27T01:22:00.913152964Z" + "vertex_to": "624", + "timestamp": "2025-11-27T04:02:17.519867-08:00" }, { "operation": "add_edge", - "rtt_ns": 1280506, - "rtt_ms": 1.280506, + "rtt_ns": 1208000, + "rtt_ms": 1.208, "checkpoint": 0, "vertex_from": "611", "vertex_to": "628", - "timestamp": "2025-11-27T01:22:00.913154954Z" + "timestamp": "2025-11-27T04:02:17.519885-08:00" }, { "operation": "add_edge", - "rtt_ns": 2536382, - "rtt_ms": 2.536382, + "rtt_ns": 1523167, + "rtt_ms": 1.523167, "checkpoint": 0, "vertex_from": "610", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.913214204Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1297656, - "rtt_ms": 1.297656, - "checkpoint": 0, - "vertex_from": "612", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.913236444Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1148217, - "rtt_ms": 1.148217, - "checkpoint": 0, - "vertex_from": "612", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.913249484Z" + "timestamp": "2025-11-27T04:02:17.519969-08:00" }, { "operation": "add_edge", - "rtt_ns": 1428206, - "rtt_ms": 1.428206, + "rtt_ns": 1816250, + "rtt_ms": 1.81625, "checkpoint": 0, - "vertex_from": "610", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.913250564Z" + "vertex_from": "611", + "vertex_to": "626", + "timestamp": "2025-11-27T04:02:17.52041-08:00" }, { "operation": "add_edge", - "rtt_ns": 2570822, - "rtt_ms": 2.570822, + "rtt_ns": 2104792, + "rtt_ms": 2.104792, "checkpoint": 0, "vertex_from": "610", "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.913252524Z" + "timestamp": "2025-11-27T04:02:17.520485-08:00" }, { "operation": "add_edge", - "rtt_ns": 2583182, - "rtt_ms": 2.583182, + "rtt_ns": 1192125, + "rtt_ms": 1.192125, "checkpoint": 0, - "vertex_from": "610", - "vertex_to": "624", - "timestamp": "2025-11-27T01:22:00.913310234Z" + "vertex_from": "612", + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.520963-08:00" }, { "operation": "add_edge", - "rtt_ns": 869117, - "rtt_ms": 0.869117, + "rtt_ns": 2533000, + "rtt_ms": 2.533, "checkpoint": 0, - "vertex_from": "613", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.914025681Z" + "vertex_from": "612", + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.521221-08:00" }, { "operation": "add_edge", - "rtt_ns": 1518316, - "rtt_ms": 1.518316, + "rtt_ns": 1303375, + "rtt_ms": 1.303375, "checkpoint": 0, - "vertex_from": "612", - "vertex_to": "616", - "timestamp": "2025-11-27T01:22:00.914244401Z" + "vertex_from": "614", + "vertex_to": "642", + "timestamp": "2025-11-27T04:02:17.521273-08:00" }, { "operation": "add_edge", - "rtt_ns": 1352175, - "rtt_ms": 1.352175, + "rtt_ns": 1579666, + "rtt_ms": 1.579666, "checkpoint": 0, - "vertex_from": "612", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.91436345Z" + "vertex_from": "613", + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.521448-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580285, - "rtt_ms": 1.580285, + "rtt_ns": 1575500, + "rtt_ms": 1.5755, "checkpoint": 0, - "vertex_from": "613", - "vertex_to": "641", - "timestamp": "2025-11-27T01:22:00.914734929Z" + "vertex_from": "614", + "vertex_to": "792", + "timestamp": "2025-11-27T04:02:17.521461-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584225, - "rtt_ms": 1.584225, + "rtt_ns": 2688334, + "rtt_ms": 2.688334, "checkpoint": 0, - "vertex_from": "614", - "vertex_to": "642", - "timestamp": "2025-11-27T01:22:00.914822829Z" + "vertex_from": "612", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.521497-08:00" }, { "operation": "add_edge", - "rtt_ns": 1742564, - "rtt_ms": 1.742564, + "rtt_ns": 2743542, + "rtt_ms": 2.743542, "checkpoint": 0, - "vertex_from": "617", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.915000418Z" + "vertex_from": "612", + "vertex_to": "616", + "timestamp": "2025-11-27T04:02:17.521657-08:00" }, { "operation": "add_edge", - "rtt_ns": 1748764, - "rtt_ms": 1.748764, + "rtt_ns": 1860209, + "rtt_ms": 1.860209, "checkpoint": 0, "vertex_from": "616", "vertex_to": "996", - "timestamp": "2025-11-27T01:22:00.915000898Z" + "timestamp": "2025-11-27T04:02:17.522347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785804, - "rtt_ms": 1.785804, + "rtt_ns": 2728917, + "rtt_ms": 2.728917, "checkpoint": 0, - "vertex_from": "614", - "vertex_to": "792", - "timestamp": "2025-11-27T01:22:00.915003508Z" + "vertex_from": "613", + "vertex_to": "641", + "timestamp": "2025-11-27T04:02:17.522538-08:00" }, { "operation": "add_edge", - "rtt_ns": 1713134, - "rtt_ms": 1.713134, + "rtt_ns": 1608750, + "rtt_ms": 1.60875, "checkpoint": 0, - "vertex_from": "624", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.915025448Z" + "vertex_from": "617", + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.522573-08:00" }, { "operation": "add_edge", - "rtt_ns": 1791294, - "rtt_ms": 1.791294, + "rtt_ns": 2175750, + "rtt_ms": 2.17575, "checkpoint": 0, "vertex_from": "616", "vertex_to": "655", - "timestamp": "2025-11-27T01:22:00.915043338Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1137206, - "rtt_ms": 1.137206, - "checkpoint": 0, - "vertex_from": "625", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.915960815Z" - }, - { - "operation": "add_edge", - "rtt_ns": 955027, - "rtt_ms": 0.955027, - "checkpoint": 0, - "vertex_from": "640", - "vertex_to": "718", - "timestamp": "2025-11-27T01:22:00.916000355Z" + "timestamp": "2025-11-27T04:02:17.522587-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782044, - "rtt_ms": 1.782044, + "rtt_ns": 1697625, + "rtt_ms": 1.697625, "checkpoint": 0, "vertex_from": "624", "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.916027885Z" + "timestamp": "2025-11-27T04:02:17.523146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1033637, - "rtt_ms": 1.033637, + "rtt_ns": 1683000, + "rtt_ms": 1.683, "checkpoint": 0, - "vertex_from": "628", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.916039515Z" + "vertex_from": "625", + "vertex_to": "753", + "timestamp": "2025-11-27T04:02:17.523181-08:00" }, { "operation": "add_edge", - "rtt_ns": 2028384, - "rtt_ms": 2.028384, + "rtt_ns": 1933667, + "rtt_ms": 1.933667, "checkpoint": 0, "vertex_from": "624", "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.916054915Z" + "timestamp": "2025-11-27T04:02:17.523207-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1055437, - "rtt_ms": 1.055437, + "operation": "add_edge", + "rtt_ns": 2055583, + "rtt_ms": 2.055583, "checkpoint": 0, - "vertex_from": "631", - "timestamp": "2025-11-27T01:22:00.916084485Z" + "vertex_from": "624", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.523277-08:00" }, { "operation": "add_edge", - "rtt_ns": 1108827, - "rtt_ms": 1.108827, + "rtt_ns": 1901333, + "rtt_ms": 1.901333, "checkpoint": 0, - "vertex_from": "628", - "vertex_to": "992", - "timestamp": "2025-11-27T01:22:00.916111485Z" + "vertex_from": "624", + "vertex_to": "753", + "timestamp": "2025-11-27T04:02:17.523364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1460635, - "rtt_ms": 1.460635, + "rtt_ns": 1718042, + "rtt_ms": 1.718042, "checkpoint": 0, "vertex_from": "625", - "vertex_to": "753", - "timestamp": "2025-11-27T01:22:00.916196494Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.523376-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871584, - "rtt_ms": 1.871584, + "rtt_ns": 1377750, + "rtt_ms": 1.37775, "checkpoint": 0, - "vertex_from": "624", - "vertex_to": "753", - "timestamp": "2025-11-27T01:22:00.916236514Z" + "vertex_from": "628", + "vertex_to": "992", + "timestamp": "2025-11-27T04:02:17.523919-08:00" }, { "operation": "add_edge", - "rtt_ns": 1826194, - "rtt_ms": 1.826194, + "rtt_ns": 1591333, + "rtt_ms": 1.591333, "checkpoint": 0, "vertex_from": "626", "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.916827532Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1344346, - "rtt_ms": 1.344346, - "checkpoint": 0, - "vertex_from": "631", - "vertex_to": "898", - "timestamp": "2025-11-27T01:22:00.917429931Z" + "timestamp": "2025-11-27T04:02:17.523939-08:00" }, { "operation": "add_edge", - "rtt_ns": 1470395, - "rtt_ms": 1.470395, + "rtt_ns": 1526250, + "rtt_ms": 1.52625, "checkpoint": 0, - "vertex_from": "640", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.91749983Z" + "vertex_from": "628", + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.5241-08:00" }, { "operation": "add_edge", - "rtt_ns": 1546505, - "rtt_ms": 1.546505, + "rtt_ns": 1655000, + "rtt_ms": 1.655, "checkpoint": 0, "vertex_from": "640", "vertex_to": "697", - "timestamp": "2025-11-27T01:22:00.91750982Z" + "timestamp": "2025-11-27T04:02:17.524837-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293166, - "rtt_ms": 1.293166, + "rtt_ns": 1527375, + "rtt_ms": 1.527375, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.91753053Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.524904-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1542605, - "rtt_ms": 1.542605, + "operation": "add_vertex", + "rtt_ns": 2405791, + "rtt_ms": 2.405791, "checkpoint": 0, - "vertex_from": "640", - "vertex_to": "777", - "timestamp": "2025-11-27T01:22:00.91758468Z" + "vertex_from": "631", + "timestamp": "2025-11-27T04:02:17.524994-08:00" }, { "operation": "add_edge", - "rtt_ns": 1489545, - "rtt_ms": 1.489545, + "rtt_ns": 1941458, + "rtt_ms": 1.941458, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.91760263Z" + "vertex_to": "718", + "timestamp": "2025-11-27T04:02:17.525089-08:00" }, { "operation": "add_edge", - "rtt_ns": 2054933, - "rtt_ms": 2.054933, + "rtt_ns": 1074000, + "rtt_ms": 1.074, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.918111398Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.525177-08:00" }, { "operation": "add_edge", - "rtt_ns": 1495956, - "rtt_ms": 1.495956, + "rtt_ns": 1947917, + "rtt_ms": 1.947917, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.918324298Z" + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.525225-08:00" }, { "operation": "add_edge", - "rtt_ns": 2143924, - "rtt_ms": 2.143924, + "rtt_ns": 1428625, + "rtt_ms": 1.428625, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "865", - "timestamp": "2025-11-27T01:22:00.918342388Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.525349-08:00" }, { "operation": "add_edge", - "rtt_ns": 2498042, - "rtt_ms": 2.498042, + "rtt_ns": 2016167, + "rtt_ms": 2.016167, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "772", - "timestamp": "2025-11-27T01:22:00.918499707Z" + "vertex_to": "777", + "timestamp": "2025-11-27T04:02:17.525383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1207776, - "rtt_ms": 1.207776, + "rtt_ns": 2175792, + "rtt_ms": 2.175792, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "803", - "timestamp": "2025-11-27T01:22:00.918639837Z" + "vertex_to": "772", + "timestamp": "2025-11-27T04:02:17.525384-08:00" }, { "operation": "add_edge", - "rtt_ns": 1674805, - "rtt_ms": 1.674805, + "rtt_ns": 1964167, + "rtt_ms": 1.964167, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "739", - "timestamp": "2025-11-27T01:22:00.919206945Z" + "vertex_to": "865", + "timestamp": "2025-11-27T04:02:17.525905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627095, - "rtt_ms": 1.627095, + "rtt_ns": 1277917, + "rtt_ms": 1.277917, "checkpoint": 0, "vertex_from": "640", "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.919212835Z" + "timestamp": "2025-11-27T04:02:17.526629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1010716, - "rtt_ms": 1.010716, + "rtt_ns": 1466584, + "rtt_ms": 1.466584, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "649", - "timestamp": "2025-11-27T01:22:00.919354784Z" + "vertex_to": "648", + "timestamp": "2025-11-27T04:02:17.526651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784474, - "rtt_ms": 1.784474, + "rtt_ns": 2277917, + "rtt_ms": 2.277917, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.919389774Z" + "vertex_to": "739", + "timestamp": "2025-11-27T04:02:17.527505-08:00" }, { "operation": "add_edge", - "rtt_ns": 1066126, - "rtt_ms": 1.066126, + "rtt_ns": 2608500, + "rtt_ms": 2.6085, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "916", - "timestamp": "2025-11-27T01:22:00.919391554Z" + "vertex_to": "803", + "timestamp": "2025-11-27T04:02:17.527513-08:00" }, { "operation": "add_edge", - "rtt_ns": 1926424, - "rtt_ms": 1.926424, + "rtt_ns": 2135667, + "rtt_ms": 2.135667, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "648", - "timestamp": "2025-11-27T01:22:00.919437404Z" + "vertex_to": "840", + "timestamp": "2025-11-27T04:02:17.527519-08:00" }, { "operation": "add_edge", - "rtt_ns": 1962914, - "rtt_ms": 1.962914, + "rtt_ns": 2688166, + "rtt_ms": 2.688166, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "674", - "timestamp": "2025-11-27T01:22:00.919464014Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.527526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1665895, - "rtt_ms": 1.665895, + "rtt_ns": 2456625, + "rtt_ms": 2.456625, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "930", - "timestamp": "2025-11-27T01:22:00.919779413Z" + "vertex_to": "674", + "timestamp": "2025-11-27T04:02:17.527546-08:00" }, { "operation": "add_edge", - "rtt_ns": 1844234, - "rtt_ms": 1.844234, + "rtt_ns": 1743708, + "rtt_ms": 1.743708, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "903", - "timestamp": "2025-11-27T01:22:00.920346871Z" + "vertex_to": "916", + "timestamp": "2025-11-27T04:02:17.52765-08:00" }, { "operation": "add_edge", - "rtt_ns": 1856354, - "rtt_ms": 1.856354, + "rtt_ns": 1275583, + "rtt_ms": 1.275583, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.920497991Z" + "vertex_to": "649", + "timestamp": "2025-11-27T04:02:17.527905-08:00" }, { "operation": "add_edge", - "rtt_ns": 1897354, - "rtt_ms": 1.897354, + "rtt_ns": 1270958, + "rtt_ms": 1.270958, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.921111949Z" + "vertex_to": "903", + "timestamp": "2025-11-27T04:02:17.527923-08:00" }, { "operation": "add_edge", - "rtt_ns": 1940243, - "rtt_ms": 1.940243, + "rtt_ns": 2554875, + "rtt_ms": 2.554875, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.921149178Z" + "vertex_to": "930", + "timestamp": "2025-11-27T04:02:17.527941-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863224, - "rtt_ms": 1.863224, + "rtt_ns": 3585417, + "rtt_ms": 3.585417, "checkpoint": 0, - "vertex_from": "640", - "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.921219758Z" + "vertex_from": "631", + "vertex_to": "898", + "timestamp": "2025-11-27T04:02:17.528581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1917434, - "rtt_ms": 1.917434, + "rtt_ns": 1307000, + "rtt_ms": 1.307, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "821", - "timestamp": "2025-11-27T01:22:00.921310148Z" + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.528856-08:00" }, { "operation": "add_edge", - "rtt_ns": 1855764, - "rtt_ms": 1.855764, + "rtt_ns": 1406542, + "rtt_ms": 1.406542, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "744", - "timestamp": "2025-11-27T01:22:00.921320788Z" + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.528921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1564115, - "rtt_ms": 1.564115, + "rtt_ns": 1441042, + "rtt_ms": 1.441042, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.921345168Z" + "vertex_to": "780", + "timestamp": "2025-11-27T04:02:17.528968-08:00" }, { "operation": "add_edge", - "rtt_ns": 1972964, - "rtt_ms": 1.972964, + "rtt_ns": 1480916, + "rtt_ms": 1.480916, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.921366288Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:02:17.528988-08:00" }, { "operation": "add_edge", - "rtt_ns": 1969804, - "rtt_ms": 1.969804, + "rtt_ns": 1146375, + "rtt_ms": 1.146375, "checkpoint": 0, "vertex_from": "640", "vertex_to": "672", - "timestamp": "2025-11-27T01:22:00.921408148Z" + "timestamp": "2025-11-27T04:02:17.529053-08:00" }, { "operation": "add_edge", - "rtt_ns": 912427, - "rtt_ms": 0.912427, + "rtt_ns": 1456542, + "rtt_ms": 1.456542, "checkpoint": 0, - "vertex_from": "641", - "vertex_to": "712", - "timestamp": "2025-11-27T01:22:00.921412458Z" + "vertex_from": "640", + "vertex_to": "821", + "timestamp": "2025-11-27T04:02:17.529109-08:00" }, { "operation": "add_edge", - "rtt_ns": 1156026, - "rtt_ms": 1.156026, + "rtt_ns": 1960208, + "rtt_ms": 1.960208, "checkpoint": 0, "vertex_from": "640", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.921504577Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:02:17.52948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1047787, - "rtt_ms": 1.047787, + "rtt_ns": 1076875, + "rtt_ms": 1.076875, "checkpoint": 0, "vertex_from": "641", - "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.922198805Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:02:17.530066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1113086, - "rtt_ms": 1.113086, + "rtt_ns": 1210042, + "rtt_ms": 1.210042, "checkpoint": 0, "vertex_from": "641", "vertex_to": "835", - "timestamp": "2025-11-27T01:22:00.922229205Z" + "timestamp": "2025-11-27T04:02:17.530131-08:00" }, { "operation": "add_edge", - "rtt_ns": 1485745, - "rtt_ms": 1.485745, + "rtt_ns": 1602625, + "rtt_ms": 1.602625, "checkpoint": 0, - "vertex_from": "641", - "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.922708643Z" + "vertex_from": "640", + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.530185-08:00" }, { "operation": "add_edge", - "rtt_ns": 1411555, - "rtt_ms": 1.411555, + "rtt_ns": 2247792, + "rtt_ms": 2.247792, "checkpoint": 0, - "vertex_from": "641", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.922722713Z" + "vertex_from": "640", + "vertex_to": "706", + "timestamp": "2025-11-27T04:02:17.53019-08:00" }, { "operation": "add_edge", - "rtt_ns": 1370605, - "rtt_ms": 1.370605, + "rtt_ns": 1378875, + "rtt_ms": 1.378875, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.922784633Z" + "vertex_from": "641", + "vertex_to": "712", + "timestamp": "2025-11-27T04:02:17.530235-08:00" }, { "operation": "add_edge", - "rtt_ns": 1466425, - "rtt_ms": 1.466425, + "rtt_ns": 2432375, + "rtt_ms": 2.432375, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.922875693Z" + "vertex_from": "640", + "vertex_to": "744", + "timestamp": "2025-11-27T04:02:17.530357-08:00" }, { "operation": "add_edge", - "rtt_ns": 1575725, - "rtt_ms": 1.575725, + "rtt_ns": 1264084, + "rtt_ms": 1.264084, "checkpoint": 0, "vertex_from": "641", "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.922897543Z" + "timestamp": "2025-11-27T04:02:17.530374-08:00" }, { "operation": "add_edge", - "rtt_ns": 1398046, - "rtt_ms": 1.398046, + "rtt_ns": 1769333, + "rtt_ms": 1.769333, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "653", - "timestamp": "2025-11-27T01:22:00.922903613Z" + "vertex_from": "641", + "vertex_to": "904", + "timestamp": "2025-11-27T04:02:17.530738-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539145, - "rtt_ms": 1.539145, + "rtt_ns": 1865041, + "rtt_ms": 1.865041, "checkpoint": 0, "vertex_from": "641", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.922908143Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.530919-08:00" }, { "operation": "add_vertex", - "rtt_ns": 1594754, - "rtt_ms": 1.594754, + "rtt_ns": 2245084, + "rtt_ms": 2.245084, "checkpoint": 0, "vertex_from": "926", - "timestamp": "2025-11-27T01:22:00.922942442Z" + "timestamp": "2025-11-27T04:02:17.531728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1410605, - "rtt_ms": 1.410605, + "rtt_ns": 1613333, + "rtt_ms": 1.613333, "checkpoint": 0, "vertex_from": "642", - "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.92364278Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.531849-08:00" }, { "operation": "add_edge", - "rtt_ns": 957147, - "rtt_ms": 0.957147, + "rtt_ns": 1804666, + "rtt_ms": 1.804666, "checkpoint": 0, "vertex_from": "642", - "vertex_to": "728", - "timestamp": "2025-11-27T01:22:00.92366869Z" + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.531937-08:00" }, { "operation": "add_edge", - "rtt_ns": 1055207, - "rtt_ms": 1.055207, + "rtt_ns": 1252166, + "rtt_ms": 1.252166, "checkpoint": 0, "vertex_from": "643", "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.92377948Z" + "timestamp": "2025-11-27T04:02:17.531993-08:00" }, { "operation": "add_edge", - "rtt_ns": 1709994, - "rtt_ms": 1.709994, + "rtt_ns": 1167542, + "rtt_ms": 1.167542, "checkpoint": 0, - "vertex_from": "642", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.923912879Z" + "vertex_from": "644", + "vertex_to": "658", + "timestamp": "2025-11-27T04:02:17.532088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189196, - "rtt_ms": 1.189196, + "rtt_ns": 2069333, + "rtt_ms": 2.069333, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "802", - "timestamp": "2025-11-27T01:22:00.924088709Z" + "vertex_from": "642", + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.532256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1610164, - "rtt_ms": 1.610164, + "rtt_ns": 2147500, + "rtt_ms": 2.1475, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.924486907Z" + "vertex_from": "642", + "vertex_to": "653", + "timestamp": "2025-11-27T04:02:17.532338-08:00" }, { "operation": "add_edge", - "rtt_ns": 1608534, - "rtt_ms": 1.608534, + "rtt_ns": 2054916, + "rtt_ms": 2.054916, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "788", - "timestamp": "2025-11-27T01:22:00.924514177Z" + "vertex_from": "642", + "vertex_to": "704", + "timestamp": "2025-11-27T04:02:17.532414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1778924, - "rtt_ms": 1.778924, + "rtt_ns": 2406083, + "rtt_ms": 2.406083, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "658", - "timestamp": "2025-11-27T01:22:00.924564987Z" + "vertex_from": "641", + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.532474-08:00" }, { "operation": "add_edge", - "rtt_ns": 1685384, - "rtt_ms": 1.685384, + "rtt_ns": 2151292, + "rtt_ms": 2.151292, "checkpoint": 0, - "vertex_from": "644", - "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.924594907Z" + "vertex_from": "642", + "vertex_to": "728", + "timestamp": "2025-11-27T04:02:17.532526-08:00" }, { "operation": "add_edge", - "rtt_ns": 1708985, - "rtt_ms": 1.708985, + "rtt_ns": 1330958, + "rtt_ms": 1.330958, "checkpoint": 0, "vertex_from": "641", "vertex_to": "926", - "timestamp": "2025-11-27T01:22:00.924652077Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1014917, - "rtt_ms": 1.014917, - "checkpoint": 0, - "vertex_from": "645", - "vertex_to": "677", - "timestamp": "2025-11-27T01:22:00.925503044Z" + "timestamp": "2025-11-27T04:02:17.53306-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738094, - "rtt_ms": 1.738094, + "rtt_ns": 1148625, + "rtt_ms": 1.148625, "checkpoint": 0, - "vertex_from": "645", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.925519204Z" + "vertex_from": "644", + "vertex_to": "788", + "timestamp": "2025-11-27T04:02:17.533142-08:00" }, { "operation": "add_edge", - "rtt_ns": 1011387, - "rtt_ms": 1.011387, + "rtt_ns": 1647292, + "rtt_ms": 1.647292, "checkpoint": 0, - "vertex_from": "646", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.925527824Z" + "vertex_from": "644", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.533498-08:00" }, { "operation": "add_edge", - "rtt_ns": 1919444, - "rtt_ms": 1.919444, + "rtt_ns": 1423500, + "rtt_ms": 1.4235, "checkpoint": 0, "vertex_from": "644", - "vertex_to": "868", - "timestamp": "2025-11-27T01:22:00.925564484Z" + "vertex_to": "864", + "timestamp": "2025-11-27T04:02:17.533514-08:00" }, { "operation": "add_edge", - "rtt_ns": 1952324, - "rtt_ms": 1.952324, + "rtt_ns": 1590291, + "rtt_ms": 1.590291, "checkpoint": 0, "vertex_from": "644", - "vertex_to": "651", - "timestamp": "2025-11-27T01:22:00.925624244Z" + "vertex_to": "802", + "timestamp": "2025-11-27T04:02:17.533528-08:00" }, { "operation": "add_edge", - "rtt_ns": 1062737, - "rtt_ms": 1.062737, + "rtt_ns": 1257542, + "rtt_ms": 1.257542, "checkpoint": 0, - "vertex_from": "646", - "vertex_to": "656", - "timestamp": "2025-11-27T01:22:00.925659634Z" + "vertex_from": "644", + "vertex_to": "651", + "timestamp": "2025-11-27T04:02:17.533597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1016677, - "rtt_ms": 1.016677, + "rtt_ns": 1396666, + "rtt_ms": 1.396666, "checkpoint": 0, - "vertex_from": "647", - "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.925670694Z" + "vertex_from": "644", + "vertex_to": "868", + "timestamp": "2025-11-27T04:02:17.533654-08:00" }, { "operation": "add_edge", - "rtt_ns": 1137317, - "rtt_ms": 1.137317, + "rtt_ns": 1429791, + "rtt_ms": 1.429791, "checkpoint": 0, - "vertex_from": "646", - "vertex_to": "720", - "timestamp": "2025-11-27T01:22:00.925703874Z" + "vertex_from": "645", + "vertex_to": "864", + "timestamp": "2025-11-27T04:02:17.533957-08:00" }, { "operation": "add_edge", - "rtt_ns": 1792275, - "rtt_ms": 1.792275, + "rtt_ns": 1632417, + "rtt_ms": 1.632417, "checkpoint": 0, "vertex_from": "645", "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.925707584Z" + "timestamp": "2025-11-27T04:02:17.534107-08:00" }, { "operation": "add_edge", - "rtt_ns": 1622335, - "rtt_ms": 1.622335, + "rtt_ns": 2002416, + "rtt_ms": 2.002416, "checkpoint": 0, - "vertex_from": "645", - "vertex_to": "864", - "timestamp": "2025-11-27T01:22:00.925712234Z" + "vertex_from": "646", + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.535146-08:00" }, { "operation": "add_edge", - "rtt_ns": 1040837, - "rtt_ms": 1.040837, + "rtt_ns": 1551292, + "rtt_ms": 1.551292, "checkpoint": 0, "vertex_from": "648", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.926545851Z" + "vertex_to": "778", + "timestamp": "2025-11-27T04:02:17.535207-08:00" }, { "operation": "add_edge", - "rtt_ns": 1084747, - "rtt_ms": 1.084747, + "rtt_ns": 2162667, + "rtt_ms": 2.162667, "checkpoint": 0, - "vertex_from": "648", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.926614391Z" + "vertex_from": "645", + "vertex_to": "677", + "timestamp": "2025-11-27T04:02:17.535225-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183866, - "rtt_ms": 1.183866, + "rtt_ns": 2081584, + "rtt_ms": 2.081584, "checkpoint": 0, - "vertex_from": "648", - "vertex_to": "932", - "timestamp": "2025-11-27T01:22:00.92680941Z" + "vertex_from": "647", + "vertex_to": "688", + "timestamp": "2025-11-27T04:02:17.535611-08:00" }, { "operation": "add_edge", - "rtt_ns": 1223516, - "rtt_ms": 1.223516, + "rtt_ns": 2179500, + "rtt_ms": 2.1795, "checkpoint": 0, - "vertex_from": "650", - "vertex_to": "897", - "timestamp": "2025-11-27T01:22:00.92693858Z" + "vertex_from": "648", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.535778-08:00" }, { "operation": "add_edge", - "rtt_ns": 1404616, - "rtt_ms": 1.404616, + "rtt_ns": 3531417, + "rtt_ms": 3.531417, "checkpoint": 0, - "vertex_from": "648", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.92697062Z" + "vertex_from": "645", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.535948-08:00" }, { "operation": "add_edge", - "rtt_ns": 1477735, - "rtt_ms": 1.477735, + "rtt_ns": 2719208, + "rtt_ms": 2.719208, "checkpoint": 0, - "vertex_from": "648", - "vertex_to": "778", - "timestamp": "2025-11-27T01:22:00.926998929Z" + "vertex_from": "646", + "vertex_to": "656", + "timestamp": "2025-11-27T04:02:17.536238-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 1393205, - "rtt_ms": 1.393205, + "operation": "add_edge", + "rtt_ns": 2753417, + "rtt_ms": 2.753417, "checkpoint": 0, - "vertex_from": "757", - "timestamp": "2025-11-27T01:22:00.927058589Z" + "vertex_from": "646", + "vertex_to": "720", + "timestamp": "2025-11-27T04:02:17.536254-08:00" }, { "operation": "add_edge", - "rtt_ns": 1392555, - "rtt_ms": 1.392555, + "rtt_ns": 1061750, + "rtt_ms": 1.06175, "checkpoint": 0, "vertex_from": "649", "vertex_to": "791", - "timestamp": "2025-11-27T01:22:00.927101829Z" + "timestamp": "2025-11-27T04:02:17.536841-08:00" }, { "operation": "add_edge", - "rtt_ns": 1448735, - "rtt_ms": 1.448735, + "rtt_ns": 1637666, + "rtt_ms": 1.637666, "checkpoint": 0, "vertex_from": "648", "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.927122209Z" + "timestamp": "2025-11-27T04:02:17.536863-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1416795, - "rtt_ms": 1.416795, + "operation": "add_vertex", + "rtt_ns": 1851417, + "rtt_ms": 1.851417, "checkpoint": 0, - "vertex_from": "649", - "vertex_to": "664", - "timestamp": "2025-11-27T01:22:00.927122409Z" + "vertex_from": "757", + "timestamp": "2025-11-27T04:02:17.53706-08:00" }, { "operation": "add_edge", - "rtt_ns": 752658, - "rtt_ms": 0.752658, + "rtt_ns": 2148250, + "rtt_ms": 2.14825, "checkpoint": 0, - "vertex_from": "653", - "vertex_to": "724", - "timestamp": "2025-11-27T01:22:00.927563858Z" + "vertex_from": "648", + "vertex_to": "932", + "timestamp": "2025-11-27T04:02:17.537295-08:00" }, { "operation": "add_edge", - "rtt_ns": 761917, - "rtt_ms": 0.761917, + "rtt_ns": 1793208, + "rtt_ms": 1.793208, "checkpoint": 0, - "vertex_from": "655", - "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.927702587Z" + "vertex_from": "649", + "vertex_to": "664", + "timestamp": "2025-11-27T04:02:17.537405-08:00" }, { "operation": "add_edge", - "rtt_ns": 793018, - "rtt_ms": 0.793018, + "rtt_ns": 1673209, + "rtt_ms": 1.673209, "checkpoint": 0, - "vertex_from": "656", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.927793007Z" + "vertex_from": "650", + "vertex_to": "897", + "timestamp": "2025-11-27T04:02:17.537624-08:00" }, { "operation": "add_edge", - "rtt_ns": 859597, - "rtt_ms": 0.859597, + "rtt_ns": 3738167, + "rtt_ms": 3.738167, "checkpoint": 0, - "vertex_from": "656", + "vertex_from": "648", "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.927831477Z" + "timestamp": "2025-11-27T04:02:17.537697-08:00" }, { "operation": "add_edge", - "rtt_ns": 1397366, - "rtt_ms": 1.397366, + "rtt_ns": 1725500, + "rtt_ms": 1.7255, "checkpoint": 0, - "vertex_from": "656", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.928500245Z" + "vertex_from": "652", + "vertex_to": "834", + "timestamp": "2025-11-27T04:02:17.537965-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388876, - "rtt_ms": 1.388876, + "rtt_ns": 1430292, + "rtt_ms": 1.430292, "checkpoint": 0, - "vertex_from": "656", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.928513545Z" + "vertex_from": "653", + "vertex_to": "724", + "timestamp": "2025-11-27T04:02:17.538274-08:00" }, { "operation": "add_edge", - "rtt_ns": 1928344, - "rtt_ms": 1.928344, + "rtt_ns": 2082416, + "rtt_ms": 2.082416, "checkpoint": 0, "vertex_from": "652", "vertex_to": "704", - "timestamp": "2025-11-27T01:22:00.928545175Z" + "timestamp": "2025-11-27T04:02:17.538341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1563375, - "rtt_ms": 1.563375, + "rtt_ns": 1413125, + "rtt_ms": 1.413125, "checkpoint": 0, "vertex_from": "648", "vertex_to": "757", - "timestamp": "2025-11-27T01:22:00.928622554Z" + "timestamp": "2025-11-27T04:02:17.538473-08:00" }, { "operation": "add_edge", - "rtt_ns": 1110766, - "rtt_ms": 1.110766, + "rtt_ns": 1609000, + "rtt_ms": 1.609, "checkpoint": 0, - "vertex_from": "658", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.928676034Z" + "vertex_from": "655", + "vertex_to": "914", + "timestamp": "2025-11-27T04:02:17.538473-08:00" }, { "operation": "add_edge", - "rtt_ns": 2189543, - "rtt_ms": 2.189543, + "rtt_ns": 4743958, + "rtt_ms": 4.743958, "checkpoint": 0, - "vertex_from": "652", - "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.928736664Z" + "vertex_from": "648", + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.538852-08:00" }, { "operation": "add_edge", - "rtt_ns": 1613525, - "rtt_ms": 1.613525, + "rtt_ns": 1375250, + "rtt_ms": 1.37525, + "checkpoint": 0, + "vertex_from": "656", + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.539341-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1685083, + "rtt_ms": 1.685083, "checkpoint": 0, "vertex_from": "656", "vertex_to": "872", - "timestamp": "2025-11-27T01:22:00.928737584Z" + "timestamp": "2025-11-27T04:02:17.539383-08:00" }, { "operation": "add_edge", - "rtt_ns": 1925004, - "rtt_ms": 1.925004, + "rtt_ns": 2256541, + "rtt_ms": 2.256541, "checkpoint": 0, - "vertex_from": "660", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.929629881Z" + "vertex_from": "656", + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.539553-08:00" }, { "operation": "add_edge", - "rtt_ns": 1871674, - "rtt_ms": 1.871674, + "rtt_ns": 2220917, + "rtt_ms": 2.220917, "checkpoint": 0, - "vertex_from": "660", - "vertex_to": "771", - "timestamp": "2025-11-27T01:22:00.929665841Z" + "vertex_from": "656", + "vertex_to": "800", + "timestamp": "2025-11-27T04:02:17.539629-08:00" }, { "operation": "add_edge", - "rtt_ns": 1178356, - "rtt_ms": 1.178356, + "rtt_ns": 1389708, + "rtt_ms": 1.389708, "checkpoint": 0, "vertex_from": "660", - "vertex_to": "806", - "timestamp": "2025-11-27T01:22:00.929680441Z" + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.539733-08:00" }, { "operation": "add_edge", - "rtt_ns": 1433335, - "rtt_ms": 1.433335, + "rtt_ns": 2293708, + "rtt_ms": 2.293708, "checkpoint": 0, - "vertex_from": "662", - "vertex_to": "707", - "timestamp": "2025-11-27T01:22:00.92995156Z" + "vertex_from": "656", + "vertex_to": "836", + "timestamp": "2025-11-27T04:02:17.53992-08:00" }, { "operation": "add_edge", - "rtt_ns": 1510545, - "rtt_ms": 1.510545, + "rtt_ns": 1621458, + "rtt_ms": 1.621458, "checkpoint": 0, - "vertex_from": "664", - "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.930189119Z" + "vertex_from": "660", + "vertex_to": "771", + "timestamp": "2025-11-27T04:02:17.540095-08:00" }, { "operation": "add_edge", - "rtt_ns": 2358432, - "rtt_ms": 2.358432, + "rtt_ns": 1971167, + "rtt_ms": 1.971167, "checkpoint": 0, - "vertex_from": "660", - "vertex_to": "850", - "timestamp": "2025-11-27T01:22:00.930193499Z" + "vertex_from": "658", + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.540247-08:00" }, { "operation": "add_edge", - "rtt_ns": 1503725, - "rtt_ms": 1.503725, + "rtt_ns": 1914041, + "rtt_ms": 1.914041, "checkpoint": 0, - "vertex_from": "665", - "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.930244109Z" + "vertex_from": "660", + "vertex_to": "850", + "timestamp": "2025-11-27T04:02:17.540388-08:00" }, { "operation": "add_edge", - "rtt_ns": 1624315, - "rtt_ms": 1.624315, + "rtt_ns": 1080000, + "rtt_ms": 1.08, "checkpoint": 0, "vertex_from": "665", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.930363709Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:02:17.540814-08:00" }, { "operation": "add_edge", - "rtt_ns": 1757265, - "rtt_ms": 1.757265, + "rtt_ns": 1395291, + "rtt_ms": 1.395291, "checkpoint": 0, "vertex_from": "664", "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.930382059Z" + "timestamp": "2025-11-27T04:02:17.54095-08:00" }, { "operation": "add_edge", - "rtt_ns": 792428, - "rtt_ms": 0.792428, + "rtt_ns": 1472625, + "rtt_ms": 1.472625, "checkpoint": 0, - "vertex_from": "668", - "vertex_to": "824", - "timestamp": "2025-11-27T01:22:00.930424469Z" + "vertex_from": "664", + "vertex_to": "808", + "timestamp": "2025-11-27T04:02:17.541102-08:00" }, { "operation": "add_edge", - "rtt_ns": 1921193, - "rtt_ms": 1.921193, + "rtt_ns": 1822709, + "rtt_ms": 1.822709, "checkpoint": 0, - "vertex_from": "664", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.930468688Z" + "vertex_from": "662", + "vertex_to": "707", + "timestamp": "2025-11-27T04:02:17.541165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1356216, - "rtt_ms": 1.356216, + "rtt_ns": 1203917, + "rtt_ms": 1.203917, "checkpoint": 0, "vertex_from": "672", "vertex_to": "688", - "timestamp": "2025-11-27T01:22:00.931039397Z" + "timestamp": "2025-11-27T04:02:17.541593-08:00" }, { "operation": "add_edge", - "rtt_ns": 1591925, - "rtt_ms": 1.591925, + "rtt_ns": 1394958, + "rtt_ms": 1.394958, "checkpoint": 0, "vertex_from": "672", "vertex_to": "944", - "timestamp": "2025-11-27T01:22:00.931258926Z" + "timestamp": "2025-11-27T04:02:17.541644-08:00" }, { "operation": "add_edge", - "rtt_ns": 1358346, - "rtt_ms": 1.358346, + "rtt_ns": 809334, + "rtt_ms": 0.809334, "checkpoint": 0, "vertex_from": "672", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.931312096Z" + "vertex_to": "811", + "timestamp": "2025-11-27T04:02:17.54176-08:00" }, { "operation": "add_edge", - "rtt_ns": 1334516, - "rtt_ms": 1.334516, + "rtt_ns": 2508125, + "rtt_ms": 2.508125, "checkpoint": 0, - "vertex_from": "672", - "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.931529315Z" + "vertex_from": "664", + "vertex_to": "800", + "timestamp": "2025-11-27T04:02:17.541892-08:00" }, { "operation": "add_edge", - "rtt_ns": 1492686, - "rtt_ms": 1.492686, + "rtt_ns": 1218125, + "rtt_ms": 1.218125, "checkpoint": 0, "vertex_from": "672", - "vertex_to": "811", - "timestamp": "2025-11-27T01:22:00.931683235Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.542033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1388936, - "rtt_ms": 1.388936, + "rtt_ns": 1101209, + "rtt_ms": 1.101209, "checkpoint": 0, - "vertex_from": "674", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.931858834Z" + "vertex_from": "672", + "vertex_to": "774", + "timestamp": "2025-11-27T04:02:17.542204-08:00" }, { "operation": "add_edge", - "rtt_ns": 1441585, - "rtt_ms": 1.441585, + "rtt_ns": 3371958, + "rtt_ms": 3.371958, "checkpoint": 0, - "vertex_from": "673", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.931868724Z" + "vertex_from": "660", + "vertex_to": "806", + "timestamp": "2025-11-27T04:02:17.542227-08:00" }, { "operation": "add_edge", - "rtt_ns": 1627635, - "rtt_ms": 1.627635, + "rtt_ns": 1271292, + "rtt_ms": 1.271292, "checkpoint": 0, "vertex_from": "672", "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.931873094Z" + "timestamp": "2025-11-27T04:02:17.542437-08:00" }, { "operation": "add_edge", - "rtt_ns": 790917, - "rtt_ms": 0.790917, + "rtt_ns": 1061375, + "rtt_ms": 1.061375, "checkpoint": 0, - "vertex_from": "674", - "vertex_to": "936", - "timestamp": "2025-11-27T01:22:00.932051833Z" + "vertex_from": "672", + "vertex_to": "786", + "timestamp": "2025-11-27T04:02:17.542655-08:00" }, { "operation": "add_edge", - "rtt_ns": 1045826, - "rtt_ms": 1.045826, + "rtt_ns": 2855667, + "rtt_ms": 2.855667, "checkpoint": 0, - "vertex_from": "674", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.932087063Z" + "vertex_from": "665", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.542776-08:00" }, { "operation": "add_edge", - "rtt_ns": 1881964, - "rtt_ms": 1.881964, + "rtt_ns": 2996458, + "rtt_ms": 2.996458, "checkpoint": 0, - "vertex_from": "672", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.932247333Z" + "vertex_from": "668", + "vertex_to": "824", + "timestamp": "2025-11-27T04:02:17.543093-08:00" }, { "operation": "add_edge", - "rtt_ns": 2359232, - "rtt_ms": 2.359232, + "rtt_ns": 1971167, + "rtt_ms": 1.971167, "checkpoint": 0, "vertex_from": "672", "vertex_to": "737", - "timestamp": "2025-11-27T01:22:00.932743231Z" + "timestamp": "2025-11-27T04:02:17.543617-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1739041, + "rtt_ms": 1.739041, + "checkpoint": 0, + "vertex_from": "674", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.543632-08:00" }, { "operation": "add_edge", - "rtt_ns": 1271406, - "rtt_ms": 1.271406, + "rtt_ns": 1279208, + "rtt_ms": 1.279208, "checkpoint": 0, "vertex_from": "677", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.932801761Z" + "timestamp": "2025-11-27T04:02:17.543719-08:00" }, { "operation": "add_edge", - "rtt_ns": 1539525, - "rtt_ms": 1.539525, + "rtt_ns": 1753250, + "rtt_ms": 1.75325, "checkpoint": 0, - "vertex_from": "676", - "vertex_to": "809", - "timestamp": "2025-11-27T01:22:00.932853311Z" + "vertex_from": "674", + "vertex_to": "848", + "timestamp": "2025-11-27T04:02:17.543787-08:00" }, { "operation": "add_edge", - "rtt_ns": 1579795, - "rtt_ms": 1.579795, + "rtt_ns": 2024708, + "rtt_ms": 2.024708, "checkpoint": 0, - "vertex_from": "679", - "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.93326721Z" + "vertex_from": "673", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.543788-08:00" }, { "operation": "add_edge", - "rtt_ns": 1514185, - "rtt_ms": 1.514185, + "rtt_ns": 1189917, + "rtt_ms": 1.189917, "checkpoint": 0, "vertex_from": "680", - "vertex_to": "920", - "timestamp": "2025-11-27T01:22:00.933389009Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.543967-08:00" }, { "operation": "add_edge", - "rtt_ns": 1584985, - "rtt_ms": 1.584985, + "rtt_ns": 976042, + "rtt_ms": 0.976042, "checkpoint": 0, "vertex_from": "680", "vertex_to": "706", - "timestamp": "2025-11-27T01:22:00.933456519Z" + "timestamp": "2025-11-27T04:02:17.54407-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618735, - "rtt_ms": 1.618735, + "rtt_ns": 1926458, + "rtt_ms": 1.926458, "checkpoint": 0, - "vertex_from": "680", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.933479349Z" + "vertex_from": "679", + "vertex_to": "904", + "timestamp": "2025-11-27T04:02:17.544583-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2520250, + "rtt_ms": 2.52025, + "checkpoint": 0, + "vertex_from": "674", + "vertex_to": "936", + "timestamp": "2025-11-27T04:02:17.544725-08:00" }, { "operation": "add_edge", - "rtt_ns": 749818, - "rtt_ms": 0.749818, + "rtt_ns": 1774333, + "rtt_ms": 1.774333, "checkpoint": 0, "vertex_from": "689", "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.933495139Z" + "timestamp": "2025-11-27T04:02:17.545563-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464596, - "rtt_ms": 1.464596, + "rtt_ns": 1611292, + "rtt_ms": 1.611292, "checkpoint": 0, - "vertex_from": "684", + "vertex_from": "693", "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.933519139Z" + "timestamp": "2025-11-27T04:02:17.54558-08:00" }, { "operation": "add_edge", - "rtt_ns": 1293736, - "rtt_ms": 1.293736, + "rtt_ns": 1875583, + "rtt_ms": 1.875583, "checkpoint": 0, - "vertex_from": "688", - "vertex_to": "978", - "timestamp": "2025-11-27T01:22:00.933542979Z" + "vertex_from": "685", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.545596-08:00" }, { "operation": "add_edge", - "rtt_ns": 723078, - "rtt_ms": 0.723078, + "rtt_ns": 3384291, + "rtt_ms": 3.384291, "checkpoint": 0, - "vertex_from": "696", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.933577939Z" + "vertex_from": "676", + "vertex_to": "809", + "timestamp": "2025-11-27T04:02:17.545612-08:00" }, { "operation": "add_edge", - "rtt_ns": 781048, - "rtt_ms": 0.781048, + "rtt_ns": 2517417, + "rtt_ms": 2.517417, "checkpoint": 0, - "vertex_from": "693", + "vertex_from": "684", "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.933585189Z" + "timestamp": "2025-11-27T04:02:17.546151-08:00" }, { "operation": "add_edge", - "rtt_ns": 1515215, - "rtt_ms": 1.515215, + "rtt_ns": 2451208, + "rtt_ms": 2.451208, "checkpoint": 0, - "vertex_from": "685", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.933603938Z" + "vertex_from": "688", + "vertex_to": "978", + "timestamp": "2025-11-27T04:02:17.546239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1098376, - "rtt_ms": 1.098376, + "rtt_ns": 2631625, + "rtt_ms": 2.631625, "checkpoint": 0, - "vertex_from": "698", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.934366966Z" + "vertex_from": "680", + "vertex_to": "920", + "timestamp": "2025-11-27T04:02:17.546251-08:00" }, { "operation": "add_edge", - "rtt_ns": 1080047, - "rtt_ms": 1.080047, + "rtt_ns": 1871167, + "rtt_ms": 1.871167, "checkpoint": 0, "vertex_from": "704", "vertex_to": "905", - "timestamp": "2025-11-27T01:22:00.934470346Z" + "timestamp": "2025-11-27T04:02:17.546597-08:00" }, { "operation": "add_edge", - "rtt_ns": 1718775, - "rtt_ms": 1.718775, + "rtt_ns": 1082500, + "rtt_ms": 1.0825, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.935176144Z" + "vertex_to": "774", + "timestamp": "2025-11-27T04:02:17.546695-08:00" }, { "operation": "add_edge", - "rtt_ns": 1693884, - "rtt_ms": 1.693884, + "rtt_ns": 2707708, + "rtt_ms": 2.707708, "checkpoint": 0, - "vertex_from": "704", - "vertex_to": "721", - "timestamp": "2025-11-27T01:22:00.935274753Z" + "vertex_from": "696", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.546779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1802044, - "rtt_ms": 1.802044, + "rtt_ns": 1254709, + "rtt_ms": 1.254709, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.935284683Z" + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.546819-08:00" }, { "operation": "add_edge", - "rtt_ns": 1730575, - "rtt_ms": 1.730575, + "rtt_ns": 1356750, + "rtt_ms": 1.35675, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.935335843Z" + "vertex_to": "946", + "timestamp": "2025-11-27T04:02:17.546954-08:00" }, { "operation": "add_edge", - "rtt_ns": 1795674, - "rtt_ms": 1.795674, + "rtt_ns": 1462875, + "rtt_ms": 1.462875, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "884", - "timestamp": "2025-11-27T01:22:00.935339903Z" + "vertex_to": "908", + "timestamp": "2025-11-27T04:02:17.547044-08:00" }, { "operation": "add_edge", - "rtt_ns": 1822994, - "rtt_ms": 1.822994, + "rtt_ns": 2473042, + "rtt_ms": 2.473042, "checkpoint": 0, - "vertex_from": "704", - "vertex_to": "774", - "timestamp": "2025-11-27T01:22:00.935343033Z" + "vertex_from": "698", + "vertex_to": "836", + "timestamp": "2025-11-27T04:02:17.54706-08:00" }, { "operation": "add_edge", - "rtt_ns": 1770704, - "rtt_ms": 1.770704, + "rtt_ns": 1640000, + "rtt_ms": 1.64, "checkpoint": 0, "vertex_from": "704", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.935357013Z" + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.548239-08:00" }, { "operation": "add_edge", - "rtt_ns": 1863434, - "rtt_ms": 1.863434, + "rtt_ns": 1194125, + "rtt_ms": 1.194125, "checkpoint": 0, - "vertex_from": "704", - "vertex_to": "946", - "timestamp": "2025-11-27T01:22:00.935359833Z" + "vertex_from": "708", + "vertex_to": "818", + "timestamp": "2025-11-27T04:02:17.548255-08:00" }, { "operation": "add_edge", - "rtt_ns": 1535315, - "rtt_ms": 1.535315, + "rtt_ns": 1452084, + "rtt_ms": 1.452084, "checkpoint": 0, - "vertex_from": "704", + "vertex_from": "705", + "vertex_to": "758", + "timestamp": "2025-11-27T04:02:17.548273-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1331500, + "rtt_ms": 1.3315, + "checkpoint": 0, + "vertex_from": "706", "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.936007861Z" + "timestamp": "2025-11-27T04:02:17.548286-08:00" }, { "operation": "add_edge", - "rtt_ns": 1030096, - "rtt_ms": 1.030096, + "rtt_ns": 1668208, + "rtt_ms": 1.668208, "checkpoint": 0, - "vertex_from": "705", - "vertex_to": "758", - "timestamp": "2025-11-27T01:22:00.93620807Z" + "vertex_from": "704", + "vertex_to": "836", + "timestamp": "2025-11-27T04:02:17.548364-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562435, - "rtt_ms": 1.562435, + "rtt_ns": 2258708, + "rtt_ms": 2.258708, "checkpoint": 0, - "vertex_from": "706", - "vertex_to": "848", - "timestamp": "2025-11-27T01:22:00.936848158Z" + "vertex_from": "704", + "vertex_to": "884", + "timestamp": "2025-11-27T04:02:17.548411-08:00" }, { "operation": "add_edge", - "rtt_ns": 1578725, - "rtt_ms": 1.578725, + "rtt_ns": 2254958, + "rtt_ms": 2.254958, "checkpoint": 0, - "vertex_from": "706", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.936854988Z" + "vertex_from": "704", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.548508-08:00" }, { "operation": "add_edge", - "rtt_ns": 1545885, - "rtt_ms": 1.545885, + "rtt_ns": 2279084, + "rtt_ms": 2.279084, "checkpoint": 0, - "vertex_from": "708", - "vertex_to": "818", - "timestamp": "2025-11-27T01:22:00.936883628Z" + "vertex_from": "704", + "vertex_to": "721", + "timestamp": "2025-11-27T04:02:17.548521-08:00" }, { "operation": "add_edge", - "rtt_ns": 1547895, - "rtt_ms": 1.547895, + "rtt_ns": 1504708, + "rtt_ms": 1.504708, "checkpoint": 0, - "vertex_from": "710", - "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.936889008Z" + "vertex_from": "706", + "vertex_to": "848", + "timestamp": "2025-11-27T04:02:17.54855-08:00" }, { "operation": "add_edge", - "rtt_ns": 1528225, - "rtt_ms": 1.528225, + "rtt_ns": 1871458, + "rtt_ms": 1.871458, "checkpoint": 0, - "vertex_from": "715", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.936890698Z" + "vertex_from": "704", + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.548651-08:00" }, { "operation": "add_edge", - "rtt_ns": 1531545, - "rtt_ms": 1.531545, + "rtt_ns": 1242500, + "rtt_ms": 1.2425, "checkpoint": 0, - "vertex_from": "712", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.936891468Z" + "vertex_from": "725", + "vertex_to": "770", + "timestamp": "2025-11-27T04:02:17.549794-08:00" }, { "operation": "add_edge", - "rtt_ns": 1558975, - "rtt_ms": 1.558975, + "rtt_ns": 1364792, + "rtt_ms": 1.364792, "checkpoint": 0, - "vertex_from": "712", - "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.936903848Z" + "vertex_from": "723", + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.549887-08:00" }, { "operation": "add_edge", - "rtt_ns": 2564352, - "rtt_ms": 2.564352, + "rtt_ns": 1410250, + "rtt_ms": 1.41025, "checkpoint": 0, - "vertex_from": "704", - "vertex_to": "836", - "timestamp": "2025-11-27T01:22:00.936933988Z" + "vertex_from": "720", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.549921-08:00" }, { "operation": "add_edge", - "rtt_ns": 1231186, - "rtt_ms": 1.231186, + "rtt_ns": 1575792, + "rtt_ms": 1.575792, "checkpoint": 0, "vertex_from": "716", "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.937240957Z" + "timestamp": "2025-11-27T04:02:17.54994-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1685334, + "rtt_ms": 1.685334, + "checkpoint": 0, + "vertex_from": "712", + "vertex_to": "834", + "timestamp": "2025-11-27T04:02:17.549945-08:00" }, { "operation": "add_edge", - "rtt_ns": 1793784, - "rtt_ms": 1.793784, + "rtt_ns": 1686750, + "rtt_ms": 1.68675, "checkpoint": 0, "vertex_from": "718", "vertex_to": "904", - "timestamp": "2025-11-27T01:22:00.938003784Z" + "timestamp": "2025-11-27T04:02:17.550099-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604324, - "rtt_ms": 1.604324, + "rtt_ns": 1879792, + "rtt_ms": 1.879792, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.938497192Z" + "vertex_from": "710", + "vertex_to": "960", + "timestamp": "2025-11-27T04:02:17.55012-08:00" }, { "operation": "add_edge", - "rtt_ns": 1673504, - "rtt_ms": 1.673504, + "rtt_ns": 2109333, + "rtt_ms": 2.109333, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.938609852Z" + "vertex_from": "715", + "vertex_to": "768", + "timestamp": "2025-11-27T04:02:17.550396-08:00" }, { "operation": "add_edge", - "rtt_ns": 1782704, - "rtt_ms": 1.782704, + "rtt_ns": 2150208, + "rtt_ms": 2.150208, "checkpoint": 0, - "vertex_from": "720", - "vertex_to": "768", - "timestamp": "2025-11-27T01:22:00.938632632Z" + "vertex_from": "712", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.550426-08:00" }, { "operation": "add_edge", - "rtt_ns": 1752594, - "rtt_ms": 1.752594, + "rtt_ns": 1526084, + "rtt_ms": 1.526084, "checkpoint": 0, "vertex_from": "748", "vertex_to": "801", - "timestamp": "2025-11-27T01:22:00.938644952Z" + "timestamp": "2025-11-27T04:02:17.551321-08:00" }, { "operation": "add_edge", - "rtt_ns": 1758924, - "rtt_ms": 1.758924, + "rtt_ns": 1262500, + "rtt_ms": 1.2625, "checkpoint": 0, - "vertex_from": "725", - "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.938646392Z" + "vertex_from": "768", + "vertex_to": "992", + "timestamp": "2025-11-27T04:02:17.551363-08:00" }, { "operation": "add_edge", - "rtt_ns": 1797794, - "rtt_ms": 1.797794, + "rtt_ns": 2776958, + "rtt_ms": 2.776958, "checkpoint": 0, "vertex_from": "736", "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.938688722Z" + "timestamp": "2025-11-27T04:02:17.551429-08:00" }, { "operation": "add_edge", - "rtt_ns": 1784514, - "rtt_ms": 1.784514, + "rtt_ns": 1311541, + "rtt_ms": 1.311541, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.938690972Z" + "vertex_to": "850", + "timestamp": "2025-11-27T04:02:17.551432-08:00" }, { "operation": "add_edge", - "rtt_ns": 1464975, - "rtt_ms": 1.464975, + "rtt_ns": 1857708, + "rtt_ms": 1.857708, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "769", - "timestamp": "2025-11-27T01:22:00.938707832Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.551779-08:00" }, { "operation": "add_edge", - "rtt_ns": 1869134, - "rtt_ms": 1.869134, + "rtt_ns": 1847750, + "rtt_ms": 1.84775, "checkpoint": 0, - "vertex_from": "723", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.938726302Z" + "vertex_from": "768", + "vertex_to": "769", + "timestamp": "2025-11-27T04:02:17.551793-08:00" }, { "operation": "add_edge", - "rtt_ns": 877348, - "rtt_ms": 0.877348, + "rtt_ns": 1984542, + "rtt_ms": 1.984542, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "850", - "timestamp": "2025-11-27T01:22:00.9393764Z" + "vertex_to": "801", + "timestamp": "2025-11-27T04:02:17.551872-08:00" }, { "operation": "add_edge", - "rtt_ns": 1512865, - "rtt_ms": 1.512865, + "rtt_ns": 1945500, + "rtt_ms": 1.9455, "checkpoint": 0, "vertex_from": "768", - "vertex_to": "992", - "timestamp": "2025-11-27T01:22:00.939518519Z" + "vertex_to": "816", + "timestamp": "2025-11-27T04:02:17.551886-08:00" }, { "operation": "add_edge", - "rtt_ns": 1435655, - "rtt_ms": 1.435655, + "rtt_ns": 1605959, + "rtt_ms": 1.605959, "checkpoint": 0, "vertex_from": "768", "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.940069527Z" + "timestamp": "2025-11-27T04:02:17.552033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1532925, - "rtt_ms": 1.532925, + "rtt_ns": 1668958, + "rtt_ms": 1.668958, "checkpoint": 0, "vertex_from": "768", "vertex_to": "838", - "timestamp": "2025-11-27T01:22:00.940144287Z" + "timestamp": "2025-11-27T04:02:17.552067-08:00" }, { "operation": "add_edge", - "rtt_ns": 1523025, - "rtt_ms": 1.523025, + "rtt_ns": 1117958, + "rtt_ms": 1.117958, "checkpoint": 0, "vertex_from": "768", "vertex_to": "780", - "timestamp": "2025-11-27T01:22:00.940170267Z" + "timestamp": "2025-11-27T04:02:17.55244-08:00" }, { "operation": "add_edge", - "rtt_ns": 1478985, - "rtt_ms": 1.478985, + "rtt_ns": 1147708, + "rtt_ms": 1.147708, "checkpoint": 0, "vertex_from": "768", "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.940172097Z" + "timestamp": "2025-11-27T04:02:17.552581-08:00" }, { "operation": "add_edge", - "rtt_ns": 1497985, - "rtt_ms": 1.497985, + "rtt_ns": 1536208, + "rtt_ms": 1.536208, "checkpoint": 0, "vertex_from": "768", "vertex_to": "770", - "timestamp": "2025-11-27T01:22:00.940187907Z" + "timestamp": "2025-11-27T04:02:17.552968-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1577005, - "rtt_ms": 1.577005, + "operation": "add_vertex", + "rtt_ns": 1376375, + "rtt_ms": 1.376375, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.940225617Z" + "vertex_from": "886", + "timestamp": "2025-11-27T04:02:17.55341-08:00" }, { "operation": "add_edge", - "rtt_ns": 1520675, - "rtt_ms": 1.520675, + "rtt_ns": 1643250, + "rtt_ms": 1.64325, "checkpoint": 0, "vertex_from": "769", - "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.940248557Z" - }, - { - "operation": "add_vertex", - "rtt_ns": 1549785, - "rtt_ms": 1.549785, - "checkpoint": 0, - "vertex_from": "1013", - "timestamp": "2025-11-27T01:22:00.940260407Z" + "vertex_to": "786", + "timestamp": "2025-11-27T04:02:17.553516-08:00" }, { "operation": "add_edge", - "rtt_ns": 1427355, - "rtt_ms": 1.427355, + "rtt_ns": 1740125, + "rtt_ms": 1.740125, "checkpoint": 0, "vertex_from": "769", - "vertex_to": "981", - "timestamp": "2025-11-27T01:22:00.940949644Z" + "vertex_to": "776", + "timestamp": "2025-11-27T04:02:17.553808-08:00" }, { "operation": "add_edge", - "rtt_ns": 1597674, - "rtt_ms": 1.597674, + "rtt_ns": 2539416, + "rtt_ms": 2.539416, "checkpoint": 0, - "vertex_from": "769", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.940975614Z" + "vertex_from": "768", + "vertex_to": "914", + "timestamp": "2025-11-27T04:02:17.553903-08:00" }, { - "operation": "add_vertex", - "rtt_ns": 915247, - "rtt_ms": 0.915247, + "operation": "add_edge", + "rtt_ns": 2335625, + "rtt_ms": 2.335625, "checkpoint": 0, - "vertex_from": "886", - "timestamp": "2025-11-27T01:22:00.940987564Z" + "vertex_from": "769", + "vertex_to": "981", + "timestamp": "2025-11-27T04:02:17.554223-08:00" }, { "operation": "add_edge", - "rtt_ns": 1569885, - "rtt_ms": 1.569885, + "rtt_ns": 1745541, + "rtt_ms": 1.745541, "checkpoint": 0, - "vertex_from": "769", - "vertex_to": "776", - "timestamp": "2025-11-27T01:22:00.941715382Z" + "vertex_from": "770", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.554327-08:00" }, { "operation": "add_edge", - "rtt_ns": 1483175, - "rtt_ms": 1.483175, + "rtt_ns": 2712458, + "rtt_ms": 2.712458, "checkpoint": 0, - "vertex_from": "768", - "vertex_to": "1013", - "timestamp": "2025-11-27T01:22:00.941744142Z" + "vertex_from": "769", + "vertex_to": "834", + "timestamp": "2025-11-27T04:02:17.554506-08:00" }, { - "operation": "add_edge", - "rtt_ns": 1570565, - "rtt_ms": 1.570565, + "operation": "add_vertex", + "rtt_ns": 2968334, + "rtt_ms": 2.968334, "checkpoint": 0, - "vertex_from": "770", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.941760502Z" + "vertex_from": "1013", + "timestamp": "2025-11-27T04:02:17.554749-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628305, - "rtt_ms": 1.628305, + "rtt_ns": 2868250, + "rtt_ms": 2.86825, "checkpoint": 0, "vertex_from": "769", "vertex_to": "806", - "timestamp": "2025-11-27T01:22:00.941800082Z" + "timestamp": "2025-11-27T04:02:17.555313-08:00" }, { "operation": "add_edge", - "rtt_ns": 1628225, - "rtt_ms": 1.628225, + "rtt_ns": 1448417, + "rtt_ms": 1.448417, "checkpoint": 0, - "vertex_from": "770", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.941801342Z" + "vertex_from": "772", + "vertex_to": "834", + "timestamp": "2025-11-27T04:02:17.555955-08:00" }, { "operation": "add_edge", - "rtt_ns": 1562865, - "rtt_ms": 1.562865, + "rtt_ns": 2247000, + "rtt_ms": 2.247, "checkpoint": 0, "vertex_from": "771", "vertex_to": "905", - "timestamp": "2025-11-27T01:22:00.941812672Z" + "timestamp": "2025-11-27T04:02:17.556056-08:00" }, { "operation": "add_edge", - "rtt_ns": 1586805, - "rtt_ms": 1.586805, + "rtt_ns": 3444500, + "rtt_ms": 3.4445, "checkpoint": 0, "vertex_from": "770", - "vertex_to": "840", - "timestamp": "2025-11-27T01:22:00.941813612Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:02:17.556414-08:00" }, { "operation": "add_edge", - "rtt_ns": 1429386, - "rtt_ms": 1.429386, + "rtt_ns": 2204583, + "rtt_ms": 2.204583, "checkpoint": 0, "vertex_from": "772", "vertex_to": "833", - "timestamp": "2025-11-27T01:22:00.94240655Z" + "timestamp": "2025-11-27T04:02:17.556428-08:00" }, { "operation": "add_edge", - "rtt_ns": 826427, - "rtt_ms": 0.826427, + "rtt_ns": 2147583, + "rtt_ms": 2.147583, "checkpoint": 0, "vertex_from": "772", - "vertex_to": "834", - "timestamp": "2025-11-27T01:22:00.942573079Z" + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.556475-08:00" }, { "operation": "add_edge", - "rtt_ns": 938967, - "rtt_ms": 0.938967, + "rtt_ns": 2995000, + "rtt_ms": 2.995, "checkpoint": 0, - "vertex_from": "772", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.942656059Z" + "vertex_from": "770", + "vertex_to": "840", + "timestamp": "2025-11-27T04:02:17.556512-08:00" }, { "operation": "add_edge", - "rtt_ns": 1738815, - "rtt_ms": 1.738815, + "rtt_ns": 3133333, + "rtt_ms": 3.133333, + "checkpoint": 0, + "vertex_from": "769", + "vertex_to": "886", + "timestamp": "2025-11-27T04:02:17.556544-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 2678084, + "rtt_ms": 2.678084, "checkpoint": 0, "vertex_from": "771", "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.942689989Z" + "timestamp": "2025-11-27T04:02:17.556582-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796795, - "rtt_ms": 1.796795, + "rtt_ns": 1384500, + "rtt_ms": 1.3845, "checkpoint": 0, - "vertex_from": "769", - "vertex_to": "886", - "timestamp": "2025-11-27T01:22:00.942784769Z" + "vertex_from": "772", + "vertex_to": "843", + "timestamp": "2025-11-27T04:02:17.556699-08:00" }, { "operation": "add_edge", - "rtt_ns": 1626985, - "rtt_ms": 1.626985, + "rtt_ns": 1334541, + "rtt_ms": 1.334541, "checkpoint": 0, "vertex_from": "772", "vertex_to": "816", - "timestamp": "2025-11-27T01:22:00.943428637Z" + "timestamp": "2025-11-27T04:02:17.55729-08:00" }, { "operation": "add_edge", - "rtt_ns": 1672814, - "rtt_ms": 1.672814, + "rtt_ns": 2557958, + "rtt_ms": 2.557958, "checkpoint": 0, - "vertex_from": "775", - "vertex_to": "992", - "timestamp": "2025-11-27T01:22:00.943488586Z" + "vertex_from": "768", + "vertex_to": "1013", + "timestamp": "2025-11-27T04:02:17.557308-08:00" }, { "operation": "add_edge", - "rtt_ns": 1817784, - "rtt_ms": 1.817784, + "rtt_ns": 1101625, + "rtt_ms": 1.101625, "checkpoint": 0, - "vertex_from": "772", - "vertex_to": "843", - "timestamp": "2025-11-27T01:22:00.943579766Z" + "vertex_from": "776", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.557577-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783564, - "rtt_ms": 1.783564, + "rtt_ns": 1139083, + "rtt_ms": 1.139083, "checkpoint": 0, - "vertex_from": "772", - "vertex_to": "880", - "timestamp": "2025-11-27T01:22:00.943586446Z" + "vertex_from": "779", + "vertex_to": "786", + "timestamp": "2025-11-27T04:02:17.557684-08:00" }, { "operation": "add_edge", - "rtt_ns": 1189406, - "rtt_ms": 1.189406, + "rtt_ns": 1526375, + "rtt_ms": 1.526375, "checkpoint": 0, - "vertex_from": "776", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.943597786Z" + "vertex_from": "775", + "vertex_to": "992", + "timestamp": "2025-11-27T04:02:17.557956-08:00" }, { "operation": "add_edge", - "rtt_ns": 1796204, - "rtt_ms": 1.796204, + "rtt_ns": 1620042, + "rtt_ms": 1.620042, "checkpoint": 0, "vertex_from": "773", "vertex_to": "808", - "timestamp": "2025-11-27T01:22:00.943611256Z" + "timestamp": "2025-11-27T04:02:17.558034-08:00" }, { "operation": "add_edge", - "rtt_ns": 1172996, - "rtt_ms": 1.172996, + "rtt_ns": 1523959, + "rtt_ms": 1.523959, "checkpoint": 0, "vertex_from": "779", "vertex_to": "854", - "timestamp": "2025-11-27T01:22:00.943864755Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1458526, - "rtt_ms": 1.458526, - "checkpoint": 0, - "vertex_from": "777", - "vertex_to": "784", - "timestamp": "2025-11-27T01:22:00.944033455Z" + "timestamp": "2025-11-27T04:02:17.558106-08:00" }, { "operation": "add_edge", - "rtt_ns": 1249046, - "rtt_ms": 1.249046, + "rtt_ns": 2136125, + "rtt_ms": 2.136125, "checkpoint": 0, - "vertex_from": "780", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.944035255Z" + "vertex_from": "772", + "vertex_to": "880", + "timestamp": "2025-11-27T04:02:17.558193-08:00" }, { "operation": "add_edge", - "rtt_ns": 1377056, - "rtt_ms": 1.377056, + "rtt_ns": 1895500, + "rtt_ms": 1.8955, "checkpoint": 0, - "vertex_from": "779", - "vertex_to": "786", - "timestamp": "2025-11-27T01:22:00.944035295Z" + "vertex_from": "777", + "vertex_to": "784", + "timestamp": "2025-11-27T04:02:17.558408-08:00" }, { "operation": "add_edge", - "rtt_ns": 660528, - "rtt_ms": 0.660528, + "rtt_ns": 1699458, + "rtt_ms": 1.699458, "checkpoint": 0, "vertex_from": "782", "vertex_to": "870", - "timestamp": "2025-11-27T01:22:00.944150904Z" + "timestamp": "2025-11-27T04:02:17.559008-08:00" }, { "operation": "add_edge", - "rtt_ns": 1118746, - "rtt_ms": 1.118746, + "rtt_ns": 1774541, + "rtt_ms": 1.774541, "checkpoint": 0, "vertex_from": "780", "vertex_to": "849", - "timestamp": "2025-11-27T01:22:00.944550043Z" + "timestamp": "2025-11-27T04:02:17.559066-08:00" }, { "operation": "add_edge", - "rtt_ns": 1128726, - "rtt_ms": 1.128726, + "rtt_ns": 2858875, + "rtt_ms": 2.858875, "checkpoint": 0, - "vertex_from": "784", - "vertex_to": "852", - "timestamp": "2025-11-27T01:22:00.944741382Z" + "vertex_from": "780", + "vertex_to": "786", + "timestamp": "2025-11-27T04:02:17.559559-08:00" }, { "operation": "add_edge", - "rtt_ns": 1183936, - "rtt_ms": 1.183936, + "rtt_ns": 1848708, + "rtt_ms": 1.848708, "checkpoint": 0, "vertex_from": "784", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.944772802Z" + "vertex_to": "800", + "timestamp": "2025-11-27T04:02:17.559806-08:00" }, { "operation": "add_edge", - "rtt_ns": 1341786, - "rtt_ms": 1.341786, + "rtt_ns": 2397458, + "rtt_ms": 2.397458, "checkpoint": 0, "vertex_from": "784", "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.944922342Z" + "timestamp": "2025-11-27T04:02:17.559976-08:00" }, { "operation": "add_edge", - "rtt_ns": 1396176, - "rtt_ms": 1.396176, + "rtt_ns": 1830834, + "rtt_ms": 1.830834, "checkpoint": 0, - "vertex_from": "784", - "vertex_to": "800", - "timestamp": "2025-11-27T01:22:00.944995752Z" + "vertex_from": "790", + "vertex_to": "928", + "timestamp": "2025-11-27T04:02:17.560025-08:00" }, { "operation": "add_edge", - "rtt_ns": 1147997, - "rtt_ms": 1.147997, + "rtt_ns": 2403167, + "rtt_ms": 2.403167, "checkpoint": 0, - "vertex_from": "785", - "vertex_to": "901", - "timestamp": "2025-11-27T01:22:00.945014792Z" + "vertex_from": "784", + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.560088-08:00" }, { "operation": "add_edge", - "rtt_ns": 1604335, - "rtt_ms": 1.604335, + "rtt_ns": 2074833, + "rtt_ms": 2.074833, "checkpoint": 0, - "vertex_from": "793", - "vertex_to": "962", - "timestamp": "2025-11-27T01:22:00.94564237Z" + "vertex_from": "784", + "vertex_to": "852", + "timestamp": "2025-11-27T04:02:17.56011-08:00" }, { "operation": "add_edge", - "rtt_ns": 1656214, - "rtt_ms": 1.656214, + "rtt_ns": 1719333, + "rtt_ms": 1.719333, "checkpoint": 0, "vertex_from": "792", "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.945692899Z" + "timestamp": "2025-11-27T04:02:17.560129-08:00" }, { "operation": "add_edge", - "rtt_ns": 1659154, - "rtt_ms": 1.659154, + "rtt_ns": 1338542, + "rtt_ms": 1.338542, "checkpoint": 0, - "vertex_from": "790", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.945693929Z" + "vertex_from": "800", + "vertex_to": "923", + "timestamp": "2025-11-27T04:02:17.560405-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834394, - "rtt_ms": 1.834394, + "rtt_ns": 2313000, + "rtt_ms": 2.313, "checkpoint": 0, - "vertex_from": "800", - "vertex_to": "923", - "timestamp": "2025-11-27T01:22:00.945986808Z" + "vertex_from": "785", + "vertex_to": "901", + "timestamp": "2025-11-27T04:02:17.56042-08:00" }, { "operation": "add_edge", - "rtt_ns": 1694964, - "rtt_ms": 1.694964, + "rtt_ns": 1469417, + "rtt_ms": 1.469417, "checkpoint": 0, - "vertex_from": "801", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.946618156Z" + "vertex_from": "793", + "vertex_to": "962", + "timestamp": "2025-11-27T04:02:17.560478-08:00" }, { "operation": "add_edge", - "rtt_ns": 2087963, - "rtt_ms": 2.087963, + "rtt_ns": 1222166, + "rtt_ms": 1.222166, "checkpoint": 0, "vertex_from": "800", "vertex_to": "820", - "timestamp": "2025-11-27T01:22:00.946643196Z" + "timestamp": "2025-11-27T04:02:17.560782-08:00" }, { "operation": "add_edge", - "rtt_ns": 1903074, - "rtt_ms": 1.903074, + "rtt_ns": 1078792, + "rtt_ms": 1.078792, "checkpoint": 0, "vertex_from": "800", - "vertex_to": "804", - "timestamp": "2025-11-27T01:22:00.946677516Z" + "vertex_to": "835", + "timestamp": "2025-11-27T04:02:17.560885-08:00" }, { "operation": "add_edge", - "rtt_ns": 994717, - "rtt_ms": 0.994717, + "rtt_ns": 1567125, + "rtt_ms": 1.567125, "checkpoint": 0, - "vertex_from": "810", - "vertex_to": "911", - "timestamp": "2025-11-27T01:22:00.946689506Z" + "vertex_from": "801", + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.561595-08:00" }, { "operation": "add_edge", - "rtt_ns": 1060497, - "rtt_ms": 1.060497, + "rtt_ns": 2075750, + "rtt_ms": 2.07575, "checkpoint": 0, - "vertex_from": "812", - "vertex_to": "961", - "timestamp": "2025-11-27T01:22:00.946755986Z" + "vertex_from": "800", + "vertex_to": "804", + "timestamp": "2025-11-27T04:02:17.562055-08:00" }, { "operation": "add_edge", - "rtt_ns": 2169624, - "rtt_ms": 2.169624, + "rtt_ns": 1185792, + "rtt_ms": 1.185792, "checkpoint": 0, - "vertex_from": "800", - "vertex_to": "835", - "timestamp": "2025-11-27T01:22:00.946912286Z" + "vertex_from": "817", + "vertex_to": "912", + "timestamp": "2025-11-27T04:02:17.562072-08:00" }, { "operation": "add_edge", - "rtt_ns": 1941773, - "rtt_ms": 1.941773, + "rtt_ns": 2059792, + "rtt_ms": 2.059792, "checkpoint": 0, "vertex_from": "808", - "vertex_to": "832", - "timestamp": "2025-11-27T01:22:00.946938405Z" + "vertex_to": "820", + "timestamp": "2025-11-27T04:02:17.562189-08:00" }, { "operation": "add_edge", - "rtt_ns": 1953433, - "rtt_ms": 1.953433, + "rtt_ns": 2167541, + "rtt_ms": 2.167541, "checkpoint": 0, "vertex_from": "808", - "vertex_to": "993", - "timestamp": "2025-11-27T01:22:00.946971365Z" + "vertex_to": "832", + "timestamp": "2025-11-27T04:02:17.562256-08:00" }, { "operation": "add_edge", - "rtt_ns": 1426505, - "rtt_ms": 1.426505, + "rtt_ns": 1866292, + "rtt_ms": 1.866292, "checkpoint": 0, - "vertex_from": "808", - "vertex_to": "820", - "timestamp": "2025-11-27T01:22:00.947070125Z" + "vertex_from": "810", + "vertex_to": "911", + "timestamp": "2025-11-27T04:02:17.562272-08:00" }, { "operation": "add_edge", - "rtt_ns": 1164627, - "rtt_ms": 1.164627, + "rtt_ns": 1564542, + "rtt_ms": 1.564542, "checkpoint": 0, - "vertex_from": "816", + "vertex_from": "817", "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.947152925Z" + "timestamp": "2025-11-27T04:02:17.562347-08:00" }, { "operation": "add_edge", - "rtt_ns": 1486006, - "rtt_ms": 1.486006, + "rtt_ns": 2444292, + "rtt_ms": 2.444292, "checkpoint": 0, - "vertex_from": "817", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.948106042Z" + "vertex_from": "808", + "vertex_to": "993", + "timestamp": "2025-11-27T04:02:17.562555-08:00" }, { "operation": "add_edge", - "rtt_ns": 1580405, - "rtt_ms": 1.580405, + "rtt_ns": 2151208, + "rtt_ms": 2.151208, "checkpoint": 0, - "vertex_from": "817", - "vertex_to": "912", - "timestamp": "2025-11-27T01:22:00.948226171Z" + "vertex_from": "812", + "vertex_to": "961", + "timestamp": "2025-11-27T04:02:17.562572-08:00" }, { "operation": "add_edge", - "rtt_ns": 1287816, - "rtt_ms": 1.287816, + "rtt_ns": 1048375, + "rtt_ms": 1.048375, "checkpoint": 0, - "vertex_from": "836", - "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.948227241Z" + "vertex_from": "820", + "vertex_to": "972", + "timestamp": "2025-11-27T04:02:17.562645-08:00" }, { "operation": "add_edge", - "rtt_ns": 1272276, - "rtt_ms": 1.272276, + "rtt_ns": 2318041, + "rtt_ms": 2.318041, "checkpoint": 0, - "vertex_from": "838", - "vertex_to": "946", - "timestamp": "2025-11-27T01:22:00.948245011Z" + "vertex_from": "816", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.562797-08:00" }, { "operation": "add_edge", - "rtt_ns": 1521045, - "rtt_ms": 1.521045, + "rtt_ns": 1390208, + "rtt_ms": 1.390208, "checkpoint": 0, - "vertex_from": "832", - "vertex_to": "905", - "timestamp": "2025-11-27T01:22:00.948278541Z" + "vertex_from": "826", + "vertex_to": "896", + "timestamp": "2025-11-27T04:02:17.563447-08:00" }, { "operation": "add_edge", - "rtt_ns": 1618705, - "rtt_ms": 1.618705, + "rtt_ns": 1528208, + "rtt_ms": 1.528208, "checkpoint": 0, - "vertex_from": "820", - "vertex_to": "972", - "timestamp": "2025-11-27T01:22:00.948298421Z" + "vertex_from": "838", + "vertex_to": "946", + "timestamp": "2025-11-27T04:02:17.563801-08:00" }, { "operation": "add_edge", - "rtt_ns": 1463115, - "rtt_ms": 1.463115, + "rtt_ns": 1169833, + "rtt_ms": 1.169833, "checkpoint": 0, - "vertex_from": "834", - "vertex_to": "899", - "timestamp": "2025-11-27T01:22:00.948376781Z" + "vertex_from": "896", + "vertex_to": "928", + "timestamp": "2025-11-27T04:02:17.563816-08:00" }, { "operation": "add_edge", - "rtt_ns": 1703285, - "rtt_ms": 1.703285, + "rtt_ns": 1828375, + "rtt_ms": 1.828375, "checkpoint": 0, - "vertex_from": "826", - "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.948394641Z" + "vertex_from": "832", + "vertex_to": "905", + "timestamp": "2025-11-27T04:02:17.563901-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1724167, + "rtt_ms": 1.724167, + "checkpoint": 0, + "vertex_from": "834", + "vertex_to": "899", + "timestamp": "2025-11-27T04:02:17.563914-08:00" }, { "operation": "add_edge", - "rtt_ns": 1340256, - "rtt_ms": 1.340256, + "rtt_ns": 1600792, + "rtt_ms": 1.600792, "checkpoint": 0, "vertex_from": "856", "vertex_to": "908", - "timestamp": "2025-11-27T01:22:00.948411781Z" + "timestamp": "2025-11-27T04:02:17.563949-08:00" }, { "operation": "add_edge", - "rtt_ns": 881937, - "rtt_ms": 0.881937, + "rtt_ns": 1458542, + "rtt_ms": 1.458542, "checkpoint": 0, "vertex_from": "857", "vertex_to": "896", - "timestamp": "2025-11-27T01:22:00.948989699Z" + "timestamp": "2025-11-27T04:02:17.564032-08:00" }, { "operation": "add_edge", - "rtt_ns": 2171683, - "rtt_ms": 2.171683, + "rtt_ns": 1476375, + "rtt_ms": 1.476375, "checkpoint": 0, "vertex_from": "856", "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.949326998Z" + "timestamp": "2025-11-27T04:02:17.564033-08:00" }, { "operation": "add_edge", - "rtt_ns": 1634525, - "rtt_ms": 1.634525, + "rtt_ns": 2229958, + "rtt_ms": 2.229958, "checkpoint": 0, - "vertex_from": "896", - "vertex_to": "928", - "timestamp": "2025-11-27T01:22:00.949862006Z" + "vertex_from": "836", + "vertex_to": "900", + "timestamp": "2025-11-27T04:02:17.564487-08:00" }, { "operation": "add_edge", - "rtt_ns": 1783225, - "rtt_ms": 1.783225, + "rtt_ns": 1350500, + "rtt_ms": 1.3505, "checkpoint": 0, "vertex_from": "896", "vertex_to": "900", - "timestamp": "2025-11-27T01:22:00.950063766Z" + "timestamp": "2025-11-27T04:02:17.565154-08:00" }, { "operation": "add_edge", - "rtt_ns": 1834445, - "rtt_ms": 1.834445, + "rtt_ns": 2365750, + "rtt_ms": 2.36575, "checkpoint": 0, "vertex_from": "896", "vertex_to": "901", - "timestamp": "2025-11-27T01:22:00.950064346Z" + "timestamp": "2025-11-27T04:02:17.565165-08:00" }, { "operation": "add_edge", - "rtt_ns": 1809144, - "rtt_ms": 1.809144, + "rtt_ns": 1733459, + "rtt_ms": 1.733459, "checkpoint": 0, "vertex_from": "896", - "vertex_to": "956", - "timestamp": "2025-11-27T01:22:00.950109605Z" + "vertex_to": "968", + "timestamp": "2025-11-27T04:02:17.565183-08:00" }, { "operation": "add_edge", - "rtt_ns": 1785534, - "rtt_ms": 1.785534, + "rtt_ns": 1710000, + "rtt_ms": 1.71, "checkpoint": 0, - "vertex_from": "898", - "vertex_to": "914", - "timestamp": "2025-11-27T01:22:00.950181455Z" + "vertex_from": "896", + "vertex_to": "956", + "timestamp": "2025-11-27T04:02:17.565527-08:00" }, { "operation": "add_edge", - "rtt_ns": 1833374, - "rtt_ms": 1.833374, + "rtt_ns": 1529709, + "rtt_ms": 1.529709, "checkpoint": 0, - "vertex_from": "897", - "vertex_to": "968", - "timestamp": "2025-11-27T01:22:00.950211455Z" + "vertex_from": "904", + "vertex_to": "910", + "timestamp": "2025-11-27T04:02:17.565562-08:00" }, { "operation": "add_edge", - "rtt_ns": 2103033, - "rtt_ms": 2.103033, + "rtt_ns": 1653250, + "rtt_ms": 1.65325, "checkpoint": 0, "vertex_from": "902", "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.950515974Z" + "timestamp": "2025-11-27T04:02:17.565603-08:00" + }, + { + "operation": "add_edge", + "rtt_ns": 1813583, + "rtt_ms": 1.813583, + "checkpoint": 0, + "vertex_from": "898", + "vertex_to": "914", + "timestamp": "2025-11-27T04:02:17.565728-08:00" }, { "operation": "add_edge", - "rtt_ns": 1188646, - "rtt_ms": 1.188646, + "rtt_ns": 1760209, + "rtt_ms": 1.760209, "checkpoint": 0, "vertex_from": "908", "vertex_to": "936", - "timestamp": "2025-11-27T01:22:00.950517544Z" + "timestamp": "2025-11-27T04:02:17.565794-08:00" }, { "operation": "add_edge", - "rtt_ns": 2345523, - "rtt_ms": 2.345523, + "rtt_ns": 2163125, + "rtt_ms": 2.163125, "checkpoint": 0, - "vertex_from": "896", + "vertex_from": "897", "vertex_to": "968", - "timestamp": "2025-11-27T01:22:00.950592984Z" + "timestamp": "2025-11-27T04:02:17.566066-08:00" }, { "operation": "add_edge", - "rtt_ns": 823238, - "rtt_ms": 0.823238, + "rtt_ns": 1624416, + "rtt_ms": 1.624416, "checkpoint": 0, "vertex_from": "944", "vertex_to": "960", - "timestamp": "2025-11-27T01:22:00.950686634Z" - }, - { - "operation": "add_edge", - "rtt_ns": 1730034, - "rtt_ms": 1.730034, - "checkpoint": 0, - "vertex_from": "904", - "vertex_to": "910", - "timestamp": "2025-11-27T01:22:00.950721343Z" + "timestamp": "2025-11-27T04:02:17.566112-08:00" } ], "summary": { - "total_operations": 17371, - "total_add_vertices": 962, + "total_operations": 17372, + "total_add_vertices": 963, "total_add_edges": 16384, "total_bfs_queries": 25, - "avg_rtt_ms": 1.572559, - "min_rtt_ms": 0.518069, - "max_rtt_ms": 11.801582, - "total_duration_ns": 13071141334, - "total_duration_ms": 13071.141334 + "avg_rtt_ms": 12.176241, + "min_rtt_ms": 0.701708, + "max_rtt_ms": 18000.594708, + "total_duration_ns": 31383272750, + "total_duration_ms": 31383.27275 } } \ No newline at end of file diff --git a/pkg/bfs/bfs.go b/pkg/bfs/bfs.go index c52716f..93adf7f 100644 --- a/pkg/bfs/bfs.go +++ b/pkg/bfs/bfs.go @@ -1,3 +1,16 @@ package bfs +import ( + "sync" + + "github.com/pjavanrood/tinygraph/internal/types" +) + // Placeholder for BFS implementation + +type BFSInstance struct { + Mx sync.RWMutex + Id types.BFSId + Visited map[types.VertexId]bool + CallbackAddress string +} diff --git a/pkg/mvcc/edge.go b/pkg/mvcc/edge.go index 407bdb5..7fdcdfa 100644 --- a/pkg/mvcc/edge.go +++ b/pkg/mvcc/edge.go @@ -17,7 +17,7 @@ type Edge struct { mu sync.Mutex // ADD: Mutex added to protect write-path updates FromID types.VertexId // Source vertex ID ToID types.VertexId // Destination vertex ID - Prop *EdgeProp // Optional edge properties + Prop EdgeProp // Optional edge properties TS types.Timestamp // Version timestamp Destroyed bool // True if this version marks logical deletion Prev []*Edge // All previous versions (nil or empty for first version) @@ -36,9 +36,9 @@ func NewEdge(from, to types.VertexId, ts types.Timestamp) *Edge { } // UpdateEdge creates a new (updated) version of the same edge. -func (e *Edge) UpdateEdge(ts types.Timestamp, prop *EdgeProp) *Edge { - e.mu.Lock() // ADD: Acquire write lock - defer e.mu.Unlock() // ADD: Release write lock +func (e *Edge) UpdateEdge(ts types.Timestamp, prop EdgeProp) *Edge { + e.mu.Lock() // ADD: Acquire write lock + defer e.mu.Unlock() // ADD: Release write lock temp := e.Prev e.Prev = nil diff --git a/pkg/mvcc/vertex.go b/pkg/mvcc/vertex.go index f095680..30a790b 100644 --- a/pkg/mvcc/vertex.go +++ b/pkg/mvcc/vertex.go @@ -18,12 +18,12 @@ type Vertex struct { ID types.VertexId // Vertex ID Edges map[types.VertexId]*Edge // Outgoing edges keyed by "from->to" TS types.Timestamp // Timestamp of latest modification - Prop *VertexProp // The vertex properties at this timestamp + Prop VertexProp // The vertex properties at this timestamp Prev []*Vertex // All previous versions (nil or empty for first) } // NewVertex creates the first version of a vertex. -func NewVertex(id types.VertexId, prop *VertexProp, ts types.Timestamp) *Vertex { +func NewVertex(id types.VertexId, prop VertexProp, ts types.Timestamp) *Vertex { return &Vertex{ ID: id, Edges: make(map[types.VertexId]*Edge), @@ -33,9 +33,9 @@ func NewVertex(id types.VertexId, prop *VertexProp, ts types.Timestamp) *Vertex } } -func (v *Vertex) UpdateVertex(ts types.Timestamp, prop *VertexProp) *Vertex { - v.mu.Lock() // ADD: Acquire write lock - defer v.mu.Unlock() // ADD: Release write lock +func (v *Vertex) UpdateVertex(ts types.Timestamp, prop VertexProp) *Vertex { + v.mu.Lock() // ADD: Acquire write lock + defer v.mu.Unlock() // ADD: Release write lock temp := v.Prev v.Prev = nil @@ -59,8 +59,8 @@ func (v *Vertex) UpdateVertex(ts types.Timestamp, prop *VertexProp) *Vertex { // AddEdge creates or updates an outgoing edge. func (v *Vertex) AddEdge(to types.VertexId, ts types.Timestamp) error { - v.mu.Lock() // ADD: Acquire write lock - defer v.mu.Unlock() // ADD: Release write lock + v.mu.Lock() // ADD: Acquire write lock + defer v.mu.Unlock() // ADD: Release write lock if cur, ok := v.Edges[to]; ok { v.Edges[to] = cur.UpdateEdge(ts, cur.Prop) @@ -72,8 +72,8 @@ func (v *Vertex) AddEdge(to types.VertexId, ts types.Timestamp) error { // DeleteEdge logically deletes an outgoing edge by creating a deleted version. func (v *Vertex) DeleteEdge(to types.VertexId, ts types.Timestamp) { - v.mu.Lock() // ADD: Acquire write lock - defer v.mu.Unlock() // ADD: Release write lock + v.mu.Lock() // ADD: Acquire write lock + defer v.mu.Unlock() // ADD: Release write lock if cur, ok := v.Edges[to]; ok && cur.AliveAt(ts) { v.Edges[to] = cur.MarkDeleted(ts) diff --git a/pkg/qm/query_manager.go b/pkg/qm/query_manager.go index 7da5149..96e56e8 100644 --- a/pkg/qm/query_manager.go +++ b/pkg/qm/query_manager.go @@ -2,11 +2,12 @@ package qm import ( "fmt" - "math/rand" + "maps" + "math/rand/v2" "net" "net/rpc" + "slices" "strconv" - "strings" "sync" "time" @@ -19,28 +20,26 @@ import ( var log = util.New("QueryManager", util.LogLevelInfo) -// ShardPendingState tracks expected vs received responses for a shard -type ShardPendingState struct { - Expected int // How many responses we expect from this shard - Received int // How many responses we've received from this shard -} - -// BFSState tracks active BFS requests -type BFSState struct { - visited map[types.VertexId]int // vertex -> level - pendingShards map[int]*ShardPendingState // shardID -> pending state - mu sync.Mutex - done chan struct{} // Signals when BFS is complete - doneClosed bool // Tracks if done channel has been closed +type BfsManager struct { + Id types.BFSId + //Vertices []types.VertexId // we expect each shard to return a vertex id only once + Vertices map[types.VertexId]interface{} + DispatchedRequests map[int]int + Done chan interface{} + FirstRecvd bool + Mx sync.Mutex } // QueryManager handles client queries and coordinates shards type QueryManager struct { - config *config.Config - replicaManager replica.ReplicaManager - requestQueue chan net.Conn // Queue of incoming connection requests - activeBFS map[string]*BFSState // requestID -> state - bfsMu sync.Mutex + config *config.Config + replicaManager replica.ReplicaManager + requestQueue chan net.Conn // Queue of incoming connection requests + managers map[types.BFSId]*BfsManager // maps BFSIds to a manager + idGenerator uint + bfsMx sync.RWMutex + vertexToShardMap map[types.VertexId]types.ShardId + shardMapLock sync.RWMutex } // NewQueryManager creates a new query manager instance @@ -50,13 +49,15 @@ func NewQueryManager(cfg *config.Config) *QueryManager { // Create a request queue for incoming connections // Buffer size allows some queuing before blocking - requestQueue := make(chan net.Conn, 100) + requestQueue := make(chan net.Conn, 50) return &QueryManager{ - config: cfg, - replicaManager: replica.NewPushBasedReplicaManager(cfg), - requestQueue: requestQueue, - activeBFS: make(map[string]*BFSState), + config: cfg, + replicaManager: replica.NewPushBasedReplicaManager(cfg), + requestQueue: requestQueue, + managers: make(map[types.BFSId]*BfsManager), + idGenerator: 0, + vertexToShardMap: make(map[types.VertexId]types.ShardId), } } @@ -64,50 +65,64 @@ func (qm *QueryManager) generateTimestamp() types.Timestamp { return types.Timestamp(time.Now().Unix()) } -// generate a vertex ID for a shard: VertexID = "%shardID-%randomHex" -func (qm *QueryManager) generateVertexID(shardConfig *config.ShardConfig) types.VertexId { - // Compact encoding: shardID-randomHex - // Example: "0-a3f2b8c1d4e5f6a7" or "42-1234567890abcdef" - randomPart := fmt.Sprintf("%016x", rand.Int63()) - return types.VertexId(fmt.Sprintf("%d-%s", shardConfig.ID, randomPart)) +// generate a vertex ID for a shard: VertexID = "%randomHex" +func (qm *QueryManager) generateVertexID() types.VertexId { + return types.VertexId(fmt.Sprintf("%016x", rand.Int64())) } -func (qm *QueryManager) getShardIDFromVertexID(vertexID types.VertexId) (int, error) { - // Parse the vertex ID format: shardID-randomHex - parts := strings.Split(string(vertexID), "-") - if len(parts) != 2 { - return 0, fmt.Errorf("invalid vertex ID format: %s", vertexID) +func (qm *QueryManager) getShardConfigByID(shardId types.ShardId) (shardConfig *config.ShardConfig, err error) { + shardConfig = nil + err = nil + for _, sc := range qm.config.Shards { + if sc.ID == int(shardId) { + shardConfig = &sc + break + } } - - shardID, err := strconv.Atoi(parts[0]) - if err != nil { - return 0, fmt.Errorf("invalid shard ID in vertex ID: %s", vertexID) + if shardConfig == nil { + err = fmt.Errorf("Shard with ID %d not found", shardId) } + return - return shardID, nil +} + +func (qm *QueryManager) getShardIDFromVertexID(vertexID types.VertexId) (int, error) { + qm.shardMapLock.RLock() + id, exists := qm.vertexToShardMap[vertexID] + qm.shardMapLock.RUnlock() + if !exists { + return 0, fmt.Errorf("Vertex with ID %s not found in map", vertexID) + } + return int(id), nil } func (qm *QueryManager) addVertexToShard(shardConfig *config.ShardConfig, req *rpcTypes.AddVertexToShardRequest) error { log.Printf("Adding vertex to shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call to add the vertex var resp rpcTypes.AddVertexToShardResponse - err = client.Call("Shard.AddVertex", req, &resp) + err := client.Call("Shard.AddVertex", req, &resp) if err != nil { return fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -116,6 +131,10 @@ func (qm *QueryManager) addVertexToShard(shardConfig *config.ShardConfig, req *r return fmt.Errorf("shard %d failed to add vertex", shardConfig.ID) } + qm.shardMapLock.Lock() + qm.vertexToShardMap[req.VertexID] = types.ShardId(shardConfig.ID) + qm.shardMapLock.Unlock() + return nil } @@ -123,23 +142,29 @@ func (qm *QueryManager) addEdgeToShard(shardConfig *config.ShardConfig, req *rpc log.Printf("Adding edge to shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call to add the edge var resp rpcTypes.AddEdgeToShardResponse - err = client.Call("Shard.AddEdge", req, &resp) + err := client.Call("Shard.AddEdge", req, &resp) if err != nil { return fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -155,23 +180,29 @@ func (qm *QueryManager) deleteEdgeToShard(shardConfig *config.ShardConfig, req * log.Printf("Deleting edge to shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call to delete the edge var resp rpcTypes.DeleteEdgeToShardResponse - err = client.Call("Shard.DeleteEdge", req, &resp) + err := client.Call("Shard.DeleteEdge", req, &resp) if err != nil { return fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -187,22 +218,28 @@ func (qm *QueryManager) getVertexAtToShard(shardConfig *config.ShardConfig, req log.Printf("GetVertexAt to shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call - err = client.Call("Shard.GetVertexAt", req, resp) + err := client.Call("Shard.GetVertexAt", req, resp) if err != nil { return fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -214,22 +251,28 @@ func (qm *QueryManager) getEdgeAtToShard(shardConfig *config.ShardConfig, req *r log.Printf("GetEdgeAt to shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call - err = client.Call("Shard.GetEdgeAt", req, resp) + err := client.Call("Shard.GetEdgeAt", req, resp) if err != nil { return fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -241,23 +284,29 @@ func (qm *QueryManager) getNeighborsToShard(shardConfig *config.ShardConfig, req log.Printf("Getting neighbors to shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return nil, fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return nil, fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return nil, fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return nil, fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return nil, fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return nil, fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call to get the neighbors var resp rpcTypes.GetNeighborsToShardResponse - err = client.Call("Shard.GetNeighbors", req, &resp) + err := client.Call("Shard.GetNeighbors", req, &resp) if err != nil { return nil, fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -269,23 +318,29 @@ func (qm *QueryManager) fetchAllFromShard(shardConfig *config.ShardConfig, req * log.Printf("Fetching all vertices from shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return nil, fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return nil, fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return nil, fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return nil, fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return nil, fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return nil, fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call to fetch all vertices var resp rpcTypes.FetchAllToShardResponse - err = client.Call("Shard.FetchAll", req, &resp) + err := client.Call("Shard.FetchAll", req, &resp) if err != nil { return nil, fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -297,23 +352,29 @@ func (qm *QueryManager) deleteAllFromShard(shardConfig *config.ShardConfig, req log.Printf("Deleting all vertices and edges from shard %d", shardConfig.ID) // Connect to the shard - leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) - if err != nil { - return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) - } - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) - } - client, err := rpc.Dial("tcp", addr) - if err != nil { - return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(shardConfig.ID) + if err != nil { + continue + return fmt.Errorf("failed to get leader ID for shard %d: %w", shardConfig.ID, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() // Make the RPC call to delete all var resp rpcTypes.DeleteAllToShardResponse - err = client.Call("Shard.DeleteAll", req, &resp) + err := client.Call("Shard.DeleteAll", req, &resp) if err != nil { return fmt.Errorf("RPC call to shard %d failed: %w", shardConfig.ID, err) } @@ -325,13 +386,32 @@ func (qm *QueryManager) deleteAllFromShard(shardConfig *config.ShardConfig, req return nil } +func (qm *QueryManager) GetLeaderId(req *rpcTypes.GetLeaderIdRequest, resp *rpcTypes.GetLeaderIdResponse) error { + id, err := qm.replicaManager.GetLeaderID(req.ShardId) + resp.LeaderId = id + return err +} + +func (qm *QueryManager) GetShardIds(req *rpcTypes.GetShardIdsRequest, resp *rpcTypes.GetShardIdsResponse) error { + log.Printf("Received GetShardIds Request (len %d)", len(req.Ids)) + resp.Ids = make([]rpcTypes.ShardIdExistsTuple, len(req.Ids)) + for i, vid := range req.Ids { + id, err := qm.getShardIDFromVertexID(vid) + resp.Ids[i].Id = types.ShardId(id) + resp.Ids[i].Exists = err == nil + } + + return nil +} + // AddVertex is the RPC handler for adding a vertex func (qm *QueryManager) AddVertex(req *rpcTypes.AddVertexRequest, resp *rpcTypes.AddVertexResponse) error { log.Printf("Received AddVertex request") // Select a shard and generate a vertex ID shardConfig := RandomPartitioner(qm.config) - vertexID := qm.generateVertexID(shardConfig) + //vertexID := qm.generateVertexID(shardConfig) + vertexID := qm.generateVertexID() timestamp := qm.generateTimestamp() // Add the vertex to the shard @@ -349,7 +429,7 @@ func (qm *QueryManager) AddVertex(req *rpcTypes.AddVertexRequest, resp *rpcTypes resp.Success = true resp.VertexID = vertexID resp.Timestamp = timestamp - log.Printf("Successfully added vertex with ID: %s", vertexID) + log.Printf("Successfully added vertex with ID: %s to shard %d", vertexID, shardConfig.ID) return nil } @@ -489,12 +569,132 @@ func (qm *QueryManager) DeleteEdge(req *rpcTypes.DeleteEdgeRequest, resp *rpcTyp return nil } -// naiveBFS performs a simple sequential BFS traversal -func (qm *QueryManager) naiveBFS(startVertexID types.VertexId, radius int, timestamp types.Timestamp) (map[types.VertexId]int, error) { +func (qm *QueryManager) BFSResponse(req *rpcTypes.BFSFromShardRequest, resp *rpcTypes.BFSFromShardResponse) error { + + log.Printf("Received response for request %d from shard %d", req.Id, req.Shard) + + // lookup the manager (if it doesn't exist, ignore it) + qm.bfsMx.RLock() + if _, exists := qm.managers[req.Id]; !exists { + qm.bfsMx.RUnlock() + return nil + } + qm.managers[req.Id].Mx.Lock() + defer qm.managers[req.Id].Mx.Unlock() + qm.bfsMx.RUnlock() + + if req.FirstResp { + qm.managers[req.Id].FirstRecvd = true + } + + qm.managers[req.Id].DispatchedRequests[int(req.Shard)]-- + for _, shard := range req.DispatchedRequests { + qm.managers[req.Id].DispatchedRequests[int(shard)]++ + } + //for _, vertexId := range req.Vertices { + for _, vertexId := range req.Vertices { + //qm.managers[req.Id].Vertices = append(qm.managers[req.Id].Vertices, vertexId) + qm.managers[req.Id].Vertices[types.VertexId(vertexId)] = nil + } + + allZero := true + for _, reqs := range qm.managers[req.Id].DispatchedRequests { + if reqs != 0 { + allZero = false + break + } + } + + if allZero && qm.managers[req.Id].FirstRecvd { + go func() { qm.managers[req.Id].Done <- nil }() + } + + return nil +} + +func (qm *QueryManager) ShardedBFS(req *rpcTypes.BFSRequest, resp *rpcTypes.BFSResponse) error { + log.Printf("Received ShardedBFS request") + + var client *rpc.Client = nil + shardID, err := qm.getShardIDFromVertexID(req.StartVertexID) + if err != nil { + log.Printf("Failed to get shard ID from edge ID: %v", err) + return err + } + shardConfig, err := qm.config.GetShardByID(shardID) + if err != nil { + log.Printf("Failed to get shard by ID: %v", err) + return err + } + for client == nil { + // Connect to the shard + replicas := shardConfig.Replicas + addr := replicas[rand.IntN(len(shardConfig.Replicas))].GetRPCAddress() + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + } + } + defer client.Close() + + // create a new manager, dispatch it, and wait for results + qm.bfsMx.Lock() + newId := types.BFSId(qm.idGenerator) + qm.idGenerator++ + + qm.managers[newId] = &BfsManager{ + Id: newId, + //Vertices: make([]types.VertexId, 0), + Vertices: make(map[types.VertexId]interface{}), + DispatchedRequests: make(map[int]int), + Done: make(chan interface{}), + FirstRecvd: false, + } + // our first request + qm.managers[newId].DispatchedRequests[shardID] = 1 + qm.bfsMx.Unlock() + + tempList := make([]rpcTypes.BFSVertexLevelPair, 1) + tempList[0] = rpcTypes.BFSVertexLevelPair{V: req.StartVertexID, N: req.Radius} + bfsReq := &rpcTypes.BFSToShardRequest{ + Vertices: tempList, + Timestamp: req.Timestamp, + Id: newId, + CallbackAddr: net.JoinHostPort(qm.config.QueryManager.Host, strconv.Itoa(qm.config.QueryManager.Port)), + FirstReq: true, + } + var bfsResp rpcTypes.BFSToShardResponse + + err = client.Call("Shard.BFS", bfsReq, &bfsResp) + if err != nil { + return fmt.Errorf("RPC call failed: %w", err) + } + + // wait for all to finish before responding + <-qm.managers[newId].Done + + resp.Vertices = slices.Collect(maps.Keys(qm.managers[newId].Vertices)) + + // no more use once we get our results + delete(qm.managers, newId) + + return nil +} + +// BFS is the RPC handler for performing a BFS +func (qm *QueryManager) BFS(req *rpcTypes.BFSRequest, resp *rpcTypes.BFSResponse) error { + if qm.config.QueryManager.BFSType == "optimized" { + return qm.ShardedBFS(req, resp) + } + log.Printf("Received BFS request") + + timestamp := req.Timestamp + radius := req.Radius + q := make([]types.VertexId, 0) - q = append(q, startVertexID) + q = append(q, req.StartVertexID) visited := make(map[types.VertexId]int) - visited[startVertexID] = 0 + visited[req.StartVertexID] = 0 for len(q) > 0 { current := q[0] @@ -502,12 +702,14 @@ func (qm *QueryManager) naiveBFS(startVertexID types.VertexId, radius int, times shardID, err := qm.getShardIDFromVertexID(current) if err != nil { - return nil, fmt.Errorf("failed to get shard ID from vertex ID: %w", err) + log.Printf("Failed to get shard ID from vertex ID: %v", err) + return err } shardConfig, err := qm.config.GetShardByID(shardID) if err != nil { - return nil, fmt.Errorf("failed to get shard by ID: %w", err) + log.Printf("Failed to get shard by ID: %v", err) + return err } if visited[current] == radius { @@ -521,7 +723,8 @@ func (qm *QueryManager) naiveBFS(startVertexID types.VertexId, radius int, times }, ) if err != nil { - return nil, fmt.Errorf("failed to get neighbors to shard: %w", err) + log.Printf("Failed to get neighbors to shard: %v", err) + return err } for _, neighbor := range neighbors { @@ -532,228 +735,164 @@ func (qm *QueryManager) naiveBFS(startVertexID types.VertexId, radius int, times } } - return visited, nil -} - -// ReceiveBFSResult is the RPC handler for receiving BFS results from shards -func (qm *QueryManager) ReceiveBFSResult(req *rpcTypes.ShardToQMBFSResponse, resp *rpcTypes.ShardToQMBFSResponse) error { - log.Debug("ReceiveBFSResult: RequestID=%s, ShardID=%d, Vertices=%d, ExpectedResponses=%d", req.RequestID, req.ShardID, len(req.Vertices), len(req.ExpectedResponses)) - - qm.bfsMu.Lock() - state, exists := qm.activeBFS[req.RequestID] - qm.bfsMu.Unlock() - - if !exists { - // Request not found, might have timed out or been cleaned up - log.Printf("ReceiveBFSResult: RequestID %s not found (may have timed out)", req.RequestID) - return nil - } - - state.mu.Lock() - defer state.mu.Unlock() - - // Add vertices to result - verticesAdded := 0 - for _, vertexLevel := range req.Vertices { - // Keep minimum level if vertex seen multiple times - if existingLevel, exists := state.visited[vertexLevel.VertexID]; !exists || vertexLevel.Level < existingLevel { - state.visited[vertexLevel.VertexID] = vertexLevel.Level - verticesAdded++ - } - } - log.Printf("Added %d new vertices from shard %d (total visited: %d)", verticesAdded, req.ShardID, len(state.visited)) - - // Increment received count for this shard - if pendingState, exists := state.pendingShards[req.ShardID]; exists { - pendingState.Received++ - log.Printf("Shard %d: Expected=%d, Received=%d (incremented)", req.ShardID, pendingState.Expected, pendingState.Received) - } else { - // This shouldn't happen, but handle gracefully - log.Printf("WARNING: Shard %d not in pendingShards, creating entry", req.ShardID) - state.pendingShards[req.ShardID] = &ShardPendingState{ - Expected: 0, - Received: 1, - } - } - - // Add expected responses from other shards (increment expected counts) - for _, expectedResp := range req.ExpectedResponses { - if pendingState, exists := state.pendingShards[expectedResp.ShardID]; exists { - pendingState.Expected += expectedResp.Count - log.Printf("Shard %d: Expected increased by %d (now Expected=%d, Received=%d)", expectedResp.ShardID, expectedResp.Count, pendingState.Expected, pendingState.Received) - } else { - state.pendingShards[expectedResp.ShardID] = &ShardPendingState{ - Expected: expectedResp.Count, - Received: 0, - } - log.Printf("[QM] Shard %d: New entry created (Expected=%d, Received=0)", expectedResp.ShardID, expectedResp.Count) - } - } - - // Check if we're done (all shards have received >= expected) - allDone := true - pendingStatus := make([]string, 0) - for shardID, pendingState := range state.pendingShards { - status := fmt.Sprintf("shard%d: E=%d R=%d", shardID, pendingState.Expected, pendingState.Received) - pendingStatus = append(pendingStatus, status) - if pendingState.Received != pendingState.Expected { - allDone = false - } - } - log.Printf("[QM] Pending status: %v, allDone=%v", pendingStatus, allDone) - - if allDone && !state.doneClosed { - log.Printf("[QM] BFS request %s COMPLETE! Closing done channel", req.RequestID) - close(state.done) - state.doneClosed = true + resp.Vertices = make([]types.VertexId, len(visited)) + i := 0 + for vertex := range visited { + resp.Vertices[i] = vertex + i++ } return nil } -// distributedBFS performs BFS using direct shard-to-shard communication -func (qm *QueryManager) distributedBFS(startVertexID types.VertexId, radius int, timestamp types.Timestamp) (map[types.VertexId]int, error) { - // Generate unique request ID - requestID := fmt.Sprintf("bfs-%d-%d", time.Now().UnixNano(), rand.Int63()) - qmAddress := fmt.Sprintf("%s:%d", qm.config.QueryManager.Host, qm.config.QueryManager.Port) - - // Initialize state - state := &BFSState{ - visited: make(map[types.VertexId]int), - pendingShards: make(map[int]*ShardPendingState), - done: make(chan struct{}), - } - - qm.bfsMu.Lock() - qm.activeBFS[requestID] = state - qm.bfsMu.Unlock() - - // Clean up state when done +func (qm *QueryManager) MoveVertices(req *rpcTypes.MoveVerticesRequest, resp *rpcTypes.MoveVerticesResponse) error { + log.Printf("Received MoveVertices request (count: %d)", len(req.Vertices)) + success := true defer func() { - qm.bfsMu.Lock() - delete(qm.activeBFS, requestID) - qm.bfsMu.Unlock() + resp.Success = success }() - // Get starting shard - shardID, err := qm.getShardIDFromVertexID(startVertexID) - if err != nil { - return nil, fmt.Errorf("failed to get shard ID: %w", err) - } - - shardConfig, err := qm.config.GetShardByID(shardID) - if err != nil { - return nil, fmt.Errorf("failed to get shard config: %w", err) - } - - // Initialize pending state for starting shard: expect 1 response, received 0 - state.mu.Lock() - state.pendingShards[shardID] = &ShardPendingState{ - Expected: 1, - Received: 0, + // check if the vertices are already on the correct shard + if req.Vertices == nil || len(req.Vertices) == 0 { + return nil } - state.mu.Unlock() - log.Printf("[QM] Starting BFS: RequestID=%s, StartVertex=%s, ShardID=%d, Radius=%d", requestID, startVertexID, shardID, radius) - - // Send BFS request to starting shard - leaderID, err := qm.replicaManager.GetLeaderID(shardID) - if err != nil { - return nil, fmt.Errorf("failed to get leader ID: %w", err) - } + qm.shardMapLock.RLock() + shardId, exists := qm.vertexToShardMap[req.Vertices[0]] + qm.shardMapLock.RUnlock() - addr, err := shardConfig.GetReplicaAddress(leaderID) - if err != nil { - return nil, fmt.Errorf("failed to get replica address: %w", err) + if !exists { + success = false + return fmt.Errorf("QM does not know Vertex %s's home", req.Vertices[0]) + } else if shardId == req.Shard { + log.Printf("Move operation becomes no-op since vertices are already on correct shard") + return nil } - log.Printf("[QM] Connecting to shard %d at %s", shardID, addr) - client, err := rpc.Dial("tcp", addr) - if err != nil { - return nil, fmt.Errorf("failed to connect to shard: %w", err) + // Connect to the shard + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(int(shardId)) + if err != nil { + continue + return fmt.Errorf("failed to get leader ID for shard %d: %w", shardId, err) + } + shardConfig, err := qm.getShardConfigByID(shardId) + if err != nil { + continue + return fmt.Errorf("failed to find shard with id %d: %w", shardId, err) + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + return fmt.Errorf("failed to get replica address for shard %d: %w", shardConfig.ID, err) + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + return fmt.Errorf("failed to connect to shard %d at %s: %w", shardConfig.ID, addr, err) + } } defer client.Close() - // Send distributed BFS request - distReq := rpcTypes.QMToShardBFSRequest{ - StartVertices: []rpcTypes.StartVertex{ - {VertexID: startVertexID, Level: 0}, - }, - Radius: radius, - Timestamp: timestamp, - RequestID: requestID, - RequesterAddr: qmAddress, + // Make the RPC call to fetch all vertices + copyReq := &rpcTypes.CopyVerticesRequest{ + Vertices: req.Vertices, + Shard: req.Shard, } - - log.Printf("[QM] Sending BFS request to shard %d", shardID) - var distResp rpcTypes.ShardToQMBFSResponse - err = client.Call("Shard.DistributedBFS", distReq, &distResp) - if err != nil { - return nil, fmt.Errorf("failed to initiate BFS on shard: %w", err) + var copyResp rpcTypes.CopyVerticesResponse + for { + err := client.Call("Shard.CopyVertices", copyReq, ©Resp) + if err != nil { + success = false + log.Printf("RPC call to shard %d failed: %w", shardId, err) + continue + return fmt.Errorf("RPC call to shard %d failed: %w", shardId, err) + } + if !copyResp.Success { + success = false + log.Printf("Failed to copy vertices to shard %d", req.Shard) + continue + return fmt.Errorf("Failed to copy vertices to shard %d", req.Shard) + } + break } - log.Printf("[QM] Received synchronous response from shard %d: %d vertices, %d expected responses", distResp.ShardID, len(distResp.Vertices), len(distResp.ExpectedResponses)) - - // Process initial synchronous response (treat it like an async response) - // Use ReceiveBFSResult logic to ensure consistency - qm.ReceiveBFSResult(&distResp, &rpcTypes.ShardToQMBFSResponse{}) - - // Wait for all shards to complete (with timeout) - timeout := time.After(30 * time.Second) - select { - case <-state.done: - log.Printf("[QM] BFS request %s completed successfully", requestID) - // All shards completed - case <-timeout: - state.mu.Lock() - pendingStatus := make([]string, 0) - for shardID, pendingState := range state.pendingShards { - status := fmt.Sprintf("shard%d: E=%d R=%d", shardID, pendingState.Expected, pendingState.Received) - pendingStatus = append(pendingStatus, status) + removeReq := &rpcTypes.RemoveVerticesRequest{ + Vertices: req.Vertices, + } + var removeResp rpcTypes.RemoveVerticesResponse + for { + err := client.Call("Shard.RemoveVertices", removeReq, &removeResp) + if err != nil { + success = false + continue + return fmt.Errorf("RPC call to shard %d failed: %w", shardId, err) + } + if !removeResp.Success { + success = false + continue + return fmt.Errorf("Failed to remove vertices from shard %d", req.Shard) } - state.mu.Unlock() - log.Printf("[QM] BFS request %s timed out. Pending status: %v", requestID, pendingStatus) - // Return partial results + + break } - state.mu.Lock() - result := make(map[types.VertexId]int) - for k, v := range state.visited { - result[k] = v + qm.shardMapLock.Lock() + for _, vert := range req.Vertices { + qm.vertexToShardMap[vert] = req.Shard } - finalCount := len(result) - state.mu.Unlock() + qm.shardMapLock.Unlock() - log.Printf("[QM] BFS request %s finished with %d vertices", requestID, finalCount) - return result, nil -} + // call to notify other shards + qm.notifyMovedVertices(int(shardId), &rpcTypes.NotifyMovedVerticesRequest{Vertices: req.Vertices, Shard: req.Shard}, &rpcTypes.NotifyMovedVerticesResponse{}) -// BFS is the RPC handler for performing a BFS -func (qm *QueryManager) BFS(req *rpcTypes.BFSRequest, resp *rpcTypes.BFSResponse) error { - log.Printf("Received BFS request (type: %s)", qm.config.QueryManager.BFSType) + success = true - var visited map[types.VertexId]int - var err error + return nil +} - if qm.config.QueryManager.BFSType == "optimized" { - visited, err = qm.distributedBFS(req.StartVertexID, req.Radius, req.Timestamp) - } else { - visited, err = qm.naiveBFS(req.StartVertexID, req.Radius, req.Timestamp) - } +func (qm *QueryManager) notifyMovedVertices(srcShard int, req *rpcTypes.NotifyMovedVerticesRequest, resp *rpcTypes.NotifyMovedVerticesResponse) { + destShard := req.Shard + for _, shardConfig := range qm.config.Shards { + if shardConfig.ID == srcShard || shardConfig.ID == int(destShard) { + continue + } - if err != nil { - log.Printf("BFS failed: %v", err) - return err - } + // Connect to the shard + var client *rpc.Client = nil + for client == nil { + leaderID, err := qm.replicaManager.GetLeaderID(int(shardConfig.ID)) + if err != nil { + continue + } + addr, err := shardConfig.GetReplicaAddress(leaderID) + if err != nil { + continue + } + client, err = rpc.Dial("tcp", addr) + if err != nil { + continue + } + } + // Make the RPC call to fetch all vertices + notifyReq := &rpcTypes.NotifyMovedVerticesRequest{ + Vertices: req.Vertices, + Shard: req.Shard, + } + var notifyResp rpcTypes.NotifyMovedVerticesResponse + for { + err := client.Call("Shard.NotifyMovedVertices", notifyReq, ¬ifyResp) + if err != nil { + log.Printf("RPC call to shard %d failed: %w", shardConfig.ID, err) + continue + } + break + } + log.Printf("Notified shard %d", shardConfig.ID) - resp.Vertices = make([]types.VertexId, len(visited)) - i := 0 - for vertex := range visited { - resp.Vertices[i] = vertex - i++ + client.Close() } - - return nil } // FetchAll is the RPC handler for fetching all vertices from all shards diff --git a/pkg/rpc/types.go b/pkg/rpc/types.go index 3c420ee..b607488 100644 --- a/pkg/rpc/types.go +++ b/pkg/rpc/types.go @@ -1,6 +1,9 @@ package rpc -import "github.com/pjavanrood/tinygraph/internal/types" +import ( + "github.com/pjavanrood/tinygraph/internal/types" + "github.com/pjavanrood/tinygraph/pkg/mvcc" +) // ------------------------------------------------------------ // Service interfaces @@ -178,51 +181,6 @@ type BFSResponse struct { Vertices []types.VertexId // The IDs of the vertices in the BFS } -// Distributed BFS types -// StartVertex represents a vertex with its BFS level from the original root -type StartVertex struct { - VertexID types.VertexId // The vertex ID - Level int // The BFS level of the vertex from the original root -} - -// VertexLevel represents a vertex with its BFS level -type VertexLevel struct { - VertexID types.VertexId // The vertex ID - Level int // The BFS level of the vertex -} - -// QMToShardBFSRequest - QM sends to shard to initiate BFS -type QMToShardBFSRequest struct { - StartVertices []StartVertex // The start vertices with their levels (can be multiple for batching) - Radius int // The radius of the BFS - Timestamp types.Timestamp // The timestamp of the BFS - RequestID string // Unique request ID for coordination - RequesterAddr string // QM address to send results to -} - -// ShardToQMBFSResponse - Shard sends to QM with results and expected responses from other shards -type ShardToQMBFSResponse struct { - RequestID string // The request ID - ShardID int // The shard ID that processed this - Vertices []VertexLevel // Slice of vertex ID to level pairs - ExpectedResponses []ExpectedResponse // For each shard, how many responses QM should expect -} - -// ExpectedResponse tells QM how many responses to expect from a shard -type ExpectedResponse struct { - ShardID int // The shard ID - Count int // The number of responses to expect from this shard -} - -// ShardToShardBFSRequest - Shard sends to another shard (async, no response needed) -type ShardToShardBFSRequest struct { - StartVertices []StartVertex // The start vertices with their levels - Radius int // The radius of the BFS - Timestamp types.Timestamp // The timestamp of the BFS - RequestID string // Unique request ID for coordination - RequesterAddr string // QM address to send results to -} - // ------------------------------------------------------------ // FetchAll request and response @@ -278,3 +236,100 @@ type DeleteAllToShardRequest struct { type DeleteAllToShardResponse struct { Success bool // Whether the operation succeeded } + +// ------------------------------------------------------------ + +type BFSVertexLevelPair struct { + V types.VertexId + N int +} + +type BFSToShardRequest struct { + Vertices []BFSVertexLevelPair + Timestamp types.Timestamp // The timestamp of the operation + Id types.BFSId + CallbackAddr string + FirstReq bool +} + +type BFSToShardResponse struct { + Success bool // Whether the operation has been dispatched +} + +// sends the BFS visited information to the QM +type BFSFromShardRequest struct { + Id types.BFSId // the request ID + Shard types.ShardId // the shard id + Vertices []types.VertexId // can be empty + DispatchedRequests []types.ShardId // this is the additional requests dispatched by this shard + FirstResp bool // whether this is the response for the initial RPC call for the BFS +} + +type BFSFromShardResponse struct { +} + +// ------------------------------------------------------------ + +type GetLeaderIdRequest struct { + ShardId int +} + +type GetLeaderIdResponse struct { + LeaderId int +} + +// ------------------------------------------------------------ + +type GetShardIdsRequest struct { + Ids []types.VertexId +} + +type ShardIdExistsTuple struct { + Id types.ShardId + Exists bool +} + +type GetShardIdsResponse struct { + Ids []ShardIdExistsTuple +} + +// ------------------------------------------------------------ + +type MoveVerticesRequest struct { + Vertices []types.VertexId + Shard types.ShardId +} + +type MoveVerticesResponse struct { + Success bool +} + +type NotifyMovedVerticesRequest MoveVerticesRequest +type NotifyMovedVerticesResponse struct{} + +type CopyVerticesRequest MoveVerticesRequest +type CopyVerticesResponse MoveVerticesResponse + +type VertexNetworkRepresentation struct { + Vertex mvcc.Vertex + VertexPrevs []mvcc.Vertex + VertexToInternal map[types.VertexId]uint + InternalToEdge map[uint]mvcc.Edge + InternalToEdgePrevs map[uint]([]mvcc.Edge) +} + +type CopyVerticesShardRequest struct { + Vertices []VertexNetworkRepresentation +} + +type CopyVerticesShardResponse struct { + Success bool +} + +type RemoveVerticesRequest struct { + Vertices []types.VertexId +} + +type RemoveVerticesResponse struct { + Success bool +} diff --git a/pkg/shard/shard.go b/pkg/shard/shard.go index 97c195d..b16aa63 100644 --- a/pkg/shard/shard.go +++ b/pkg/shard/shard.go @@ -15,7 +15,6 @@ import ( "github.com/hashicorp/raft" "github.com/pjavanrood/tinygraph/internal/config" - "github.com/pjavanrood/tinygraph/internal/types" "github.com/pjavanrood/tinygraph/internal/util" mvccTypes "github.com/pjavanrood/tinygraph/pkg/mvcc" "github.com/pjavanrood/tinygraph/pkg/replica" @@ -32,112 +31,12 @@ const ( AddEdge DeleteEdge DeleteAll + CopyVertices + DestCopyVertices + RemoveVertices + NotifyMovedVertices ) -// BFSRequestState tracks active BFS requests for deduplication -type BFSRequestState struct { - visited map[string]int // vertexID -> level - pendingShards map[int]int // shardID -> number of pending responses - mu sync.Mutex -} - -// connectionPool manages a pool of RPC connections for a specific shard -type connectionPool struct { - connections chan *rpc.Client - address string - mu sync.Mutex - maxSize int - closed bool -} - -// newConnectionPool creates a new connection pool for a shard -func newConnectionPool(address string, maxSize int) *connectionPool { - return &connectionPool{ - connections: make(chan *rpc.Client, maxSize), - address: address, - maxSize: maxSize, - } -} - -// getConnection gets a connection from the pool or creates a new one -func (cp *connectionPool) getConnection() (*rpc.Client, error) { - cp.mu.Lock() - closed := cp.closed - cp.mu.Unlock() - - if closed { - // Pool is closed, create new connection directly - return rpc.Dial("tcp", cp.address) - } - - select { - case client := <-cp.connections: - // Check if connection is still valid - if client != nil { - return client, nil - } - default: - // No connection available, create new one - } - - // Create new connection - client, err := rpc.Dial("tcp", cp.address) - if err != nil { - return nil, err - } - return client, nil -} - -// returnConnection returns a connection to the pool or closes it if pool is full -func (cp *connectionPool) returnConnection(client *rpc.Client) { - if client == nil { - return - } - - cp.mu.Lock() - closed := cp.closed - cp.mu.Unlock() - - if closed { - // Pool is closed, close the connection - client.Close() - return - } - - select { - case cp.connections <- client: - // Successfully returned to pool - default: - // Pool is full, close the connection - client.Close() - } -} - -// closeAll closes all connections in the pool -func (cp *connectionPool) closeAll() { - cp.mu.Lock() - defer cp.mu.Unlock() - - if cp.closed { - return // Already closed - } - - cp.closed = true - - // Drain and close all connections - for { - select { - case client := <-cp.connections: - if client != nil { - client.Close() - } - default: - // No more connections in pool - return - } - } -} - // Shard wraps a ShardFSM with Raft consensus functionality // It implements the raft.FSM interface and handles all RPC calls type Shard struct { @@ -148,12 +47,6 @@ type Shard struct { config *config.Config shardID int replicaManager replica.ReplicaManager - // Track active BFS requests by requestID for deduplication - activeBFSRequests map[string]*BFSRequestState - bfsMu sync.Mutex - // Connection pools per shard (keyed by shardID) - connectionPools map[int]*connectionPool - poolMu sync.RWMutex } // ShardLogOp represents an operation to be logged and replicated via Raft @@ -236,6 +129,54 @@ func (s *Shard) Apply(logEntry *raft.Log) interface{} { return ShardApplyResponse{Response: nil, Error: err} } return ShardApplyResponse{Response: resp, Error: nil} + case CopyVertices: + var req rpcTypes.CopyVerticesRequest + err = gob.NewDecoder(bytes.NewReader(logOp.Req)).Decode(&req) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + var resp rpcTypes.CopyVerticesResponse + err = s.shardFSM.copyVertices(req, &resp) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + return ShardApplyResponse{Response: resp, Error: nil} + case DestCopyVertices: + var req rpcTypes.CopyVerticesShardRequest + err = gob.NewDecoder(bytes.NewReader(logOp.Req)).Decode(&req) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + var resp rpcTypes.CopyVerticesShardResponse + err = s.shardFSM.destCopyVertices(req, &resp) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + return ShardApplyResponse{Response: resp, Error: nil} + case RemoveVertices: + var req rpcTypes.RemoveVerticesRequest + err = gob.NewDecoder(bytes.NewReader(logOp.Req)).Decode(&req) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + var resp rpcTypes.RemoveVerticesResponse + err = s.shardFSM.removeVertices(req, &resp) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + return ShardApplyResponse{Response: resp, Error: nil} + case NotifyMovedVertices: + var req rpcTypes.NotifyMovedVerticesRequest + err = gob.NewDecoder(bytes.NewReader(logOp.Req)).Decode(&req) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + var resp rpcTypes.NotifyMovedVerticesResponse + err = s.shardFSM.notifyMovedVertices(req, &resp) + if err != nil { + return ShardApplyResponse{Response: nil, Error: err} + } + return ShardApplyResponse{Response: resp, Error: nil} default: return ShardApplyResponse{Response: nil, Error: fmt.Errorf("unknown operation: %d", logOp.Op)} } @@ -452,20 +393,6 @@ func (s *Shard) GetNeighbors(req rpcTypes.GetNeighborsToShardRequest, resp *rpcT return s.shardFSM.getNeighbors(req, resp) } -// BatchGetNeighbors is the RPC handler for getting neighbors of multiple vertices with linearizable read semantics -func (s *Shard) BatchGetNeighbors(req rpcTypes.BatchGetNeighborsToShardRequest, resp *rpcTypes.BatchGetNeighborsToShardResponse) error { - // Use VerifyLeader to ensure we have up-to-date state and are still the leader - // This provides linearizable read semantics without going through the Raft log - if err := s.raft.VerifyLeader().Error(); err != nil { - return fmt.Errorf("not leader or unable to verify leadership: %w", err) - } - - s.mu.Lock() - defer s.mu.Unlock() - - return s.shardFSM.batchGetNeighbors(req, resp) -} - // getShardIDFromVertexID extracts shard ID from vertex ID format: "shardID-randomHex" func (s *Shard) getShardIDFromVertexID(vertexID string) (int, error) { parts := strings.Split(vertexID, "-") @@ -479,409 +406,176 @@ func (s *Shard) getShardIDFromVertexID(vertexID string) (int, error) { return shardID, nil } -// getOrCreateConnectionPool gets or creates a connection pool for a shard -// It checks the current leader and invalidates the pool if the leader has changed -func (s *Shard) getOrCreateConnectionPool(targetShardID int) (*connectionPool, error) { - // Get target shard config - targetShardConfig, err := s.config.GetShardByID(targetShardID) - if err != nil { - return nil, fmt.Errorf("failed to get shard config for shard %d: %w", targetShardID, err) - } - - // Use replica manager to get the current leader ID - currentLeaderID, err := s.replicaManager.GetLeaderID(targetShardID) - if err != nil { - return nil, fmt.Errorf("failed to get leader ID for shard %d: %w", targetShardID, err) - } - - currentAddr, err := targetShardConfig.GetReplicaAddress(currentLeaderID) - if err != nil { - return nil, fmt.Errorf("failed to get replica address for shard %d: %w", targetShardID, err) - } +func (s *Shard) BFS(req rpcTypes.BFSToShardRequest, resp *rpcTypes.BFSToShardResponse) error { + // read requests do not need to go through the leader + /* + if err := s.raft.VerifyLeader().Error; err != nil { + return fmt.Errorf("not leader or unable to verify leadership: %w", err) + } + */ - // Acquire write lock to check and create pool atomically - s.poolMu.Lock() - defer s.poolMu.Unlock() + s.mu.Lock() + defer s.mu.Unlock() - // Check if we have an existing pool - if pool, exists := s.connectionPools[targetShardID]; exists { - // Check if the pool's address matches the current leader address - pool.mu.Lock() - poolAddr := pool.address - poolClosed := pool.closed - pool.mu.Unlock() + return s.shardFSM.BFS(req, resp) +} - if !poolClosed && poolAddr == currentAddr { - // Pool is still valid, reuse it - return pool, nil - } - // Leader has changed or pool is closed, invalidate it - pool.closeAll() - delete(s.connectionPools, targetShardID) +// FetchAll is the RPC handler for fetching all vertex IDs in the shard with linearizable read semantics +func (s *Shard) FetchAll(req rpcTypes.FetchAllToShardRequest, resp *rpcTypes.FetchAllToShardResponse) error { + // Use VerifyLeader to ensure we have up-to-date state and are still the leader + // This provides linearizable read semantics without going through the Raft log + if err := s.raft.VerifyLeader().Error(); err != nil { + return fmt.Errorf("not leader or unable to verify leadership: %w", err) } - // Create new connection pool (max 10 connections per shard) - pool := newConnectionPool(currentAddr, 10) - s.connectionPools[targetShardID] = pool + s.mu.Lock() + defer s.mu.Unlock() - return pool, nil + return s.shardFSM.fetchAll(req, resp) } -// invalidateConnectionPool removes the connection pool for a shard (e.g., when leader changes) -func (s *Shard) invalidateConnectionPool(targetShardID int) { - s.poolMu.Lock() - defer s.poolMu.Unlock() - - if pool, exists := s.connectionPools[targetShardID]; exists { - pool.closeAll() - delete(s.connectionPools, targetShardID) +// DeleteAll is the RPC handler for deleting all vertices and edges through Raft consensus +func (s *Shard) DeleteAll(req rpcTypes.DeleteAllToShardRequest, resp *rpcTypes.DeleteAllToShardResponse) error { + if s.raft.State() != raft.Leader { + return fmt.Errorf("not leader") } -} -// callShardBFS calls the BFS handler on another shard using connection pooling (async, no response needed) -func (s *Shard) callShardBFS(targetShardID int, req *rpcTypes.ShardToShardBFSRequest) error { - // Get or create connection pool for this shard (checks current leader) - pool, err := s.getOrCreateConnectionPool(targetShardID) - if err != nil { + // Encode the request + var reqBuf bytes.Buffer + if err := gob.NewEncoder(&reqBuf).Encode(req); err != nil { return err } - // Get connection from pool - client, err := pool.getConnection() - if err != nil { - return fmt.Errorf("failed to get connection to shard %d: %w", targetShardID, err) - } - - // Make async call - return connection to pool after use (or close if error) - go func() { - var callErr error - defer func() { - if callErr != nil { - // On error, close the connection (it might be broken) - client.Close() - // Check if error indicates leader change - errStr := callErr.Error() - if strings.Contains(errStr, "not leader") || strings.Contains(errStr, "leader") { - // Leader has changed, invalidate the pool - s.invalidateConnectionPool(targetShardID) - } - } else { - // On success, return to pool - pool.returnConnection(client) - } - }() + // Create the log operation + logOp := ShardLogOp{ + Op: DeleteAll, + Req: reqBuf.Bytes(), + } - // Make RPC call (async, we don't wait for response) - var dummyResp rpcTypes.ShardToQMBFSResponse - callErr = client.Call("Shard.DistributedBFSFromShard", req, &dummyResp) - if callErr != nil { - log.Printf("Failed to call shard %d for BFS: %v", targetShardID, callErr) - } - }() + // Encode the log operation + var buf bytes.Buffer + if err := gob.NewEncoder(&buf).Encode(logOp); err != nil { + return err + } + f := s.raft.Apply(buf.Bytes(), time.Second*TIMEOUT_SECONDS) + if f.Error() != nil { + return f.Error() + } + shardApplyResponse := f.Response().(ShardApplyResponse) + if shardApplyResponse.Error != nil { + return shardApplyResponse.Error + } + *resp = shardApplyResponse.Response.(rpcTypes.DeleteAllToShardResponse) return nil } -// performBFS performs the actual BFS logic (shared between QM and shard requests) -// Returns: vertices found, map of shardID -> list of vertices to send to that shard, map of shardID -> expected response count -func (s *Shard) performBFS(reqStartVertices []rpcTypes.StartVertex, radius int, timestamp types.Timestamp, requestID string) ([]rpcTypes.VertexLevel, map[int][]rpcTypes.StartVertex, map[int]int) { - log.Printf("[Shard %d] performBFS: RequestID=%s, StartVertices=%d, Radius=%d", s.shardID, requestID, len(reqStartVertices), radius) - - // Get or create request state for deduplication - s.bfsMu.Lock() - requestState, exists := s.activeBFSRequests[requestID] - if !exists { - requestState = &BFSRequestState{ - visited: make(map[string]int), - pendingShards: make(map[int]int), - } - s.activeBFSRequests[requestID] = requestState - log.Printf("[Shard %d] Created new BFS request state for RequestID=%s", s.shardID, requestID) - } else { - log.Printf("[Shard %d] Reusing existing BFS request state for RequestID=%s (visited: %d)", s.shardID, requestID, len(requestState.visited)) - } - s.bfsMu.Unlock() - - // Perform local BFS - requestState.mu.Lock() - defer requestState.mu.Unlock() - - // Local BFS queue: (vertexID, level) - type bfsItem struct { - vertexID types.VertexId - level int - } - localQueue := make([]bfsItem, 0, len(reqStartVertices)) - // Process each start vertex with its level - for _, startVertex := range reqStartVertices { - // Check if already visited in this request - if _, visited := requestState.visited[string(startVertex.VertexID)]; visited { - // Already visited, skip - continue - } - // Use the level from the start vertex - absoluteLevel := startVertex.Level - if absoluteLevel <= radius { - localQueue = append(localQueue, bfsItem{vertexID: startVertex.VertexID, level: absoluteLevel}) - } +func (s *Shard) CopyVertices(req rpcTypes.CopyVerticesRequest, resp *rpcTypes.CopyVerticesResponse) error { + if s.raft.State() != raft.Leader { + return fmt.Errorf("not leader") } - // Group cross-shard requests by target shard only - // Map structure: shardID -> []struct{vertexID, level} - type vertexLevelPair struct { - vertexID types.VertexId - level int + // Encode the request + var reqBuf bytes.Buffer + if err := gob.NewEncoder(&reqBuf).Encode(req); err != nil { + return err } - crossShardRequests := make(map[int][]vertexLevelPair) - vertices := make([]rpcTypes.VertexLevel, 0) - // Perform local BFS - for len(localQueue) > 0 { - current := localQueue[0] - localQueue = localQueue[1:] - - // Skip if already visited - if existingLevel, visited := requestState.visited[string(current.vertexID)]; visited { - if existingLevel <= current.level { - continue // Already visited at same or lower level - } - } - - // Mark as visited - requestState.visited[string(current.vertexID)] = current.level - vertices = append(vertices, rpcTypes.VertexLevel{ - VertexID: current.vertexID, - Level: current.level, - }) - - // Check if we've reached max radius - if current.level >= radius { - continue - } - - // Get neighbors - s.mu.Lock() - neighbors, err := s.shardFSM.getNeighborsForBFS(current.vertexID, timestamp) - s.mu.Unlock() - if err != nil { - // Vertex might not exist, continue - continue - } - - // Process neighbors - for _, neighbor := range neighbors { - // Check if already visited - if _, visited := requestState.visited[string(neighbor)]; visited { - continue - } - - // Determine neighbor's shard - neighborShardID, err := s.getShardIDFromVertexID(string(neighbor)) - if err != nil { - log.Printf("Failed to get shard ID for vertex %s: %v", neighbor, err) - continue - } - - if neighborShardID == s.shardID { - // Local neighbor, continue BFS - nextLevel := current.level + 1 - if nextLevel <= radius { - localQueue = append(localQueue, bfsItem{vertexID: neighbor, level: nextLevel}) - } - } else { - // Cross-shard edge, add to cross-shard requests with correct level - nextLevel := current.level + 1 - if nextLevel <= radius { - crossShardRequests[neighborShardID] = append(crossShardRequests[neighborShardID], vertexLevelPair{ - vertexID: neighbor, - level: nextLevel, - }) - } - } - } + // Create the log operation + logOp := ShardLogOp{ + Op: CopyVertices, + Req: reqBuf.Bytes(), } - // Group vertices by target shard for cross-shard requests - shardVertices := make(map[int][]rpcTypes.StartVertex) - expectedResponses := make(map[int]int) - for targetShardID, vertexLevelPairs := range crossShardRequests { - // Convert to StartVertex format - startVertices := make([]rpcTypes.StartVertex, 0, len(vertexLevelPairs)) - for _, pair := range vertexLevelPairs { - startVertices = append(startVertices, rpcTypes.StartVertex{ - VertexID: pair.vertexID, - Level: pair.level, - }) - } - shardVertices[targetShardID] = startVertices - expectedResponses[targetShardID] = 1 // One request per shard - log.Printf("[Shard %d] Will send %d vertices to shard %d", s.shardID, len(startVertices), targetShardID) + // Encode the log operation + var buf bytes.Buffer + if err := gob.NewEncoder(&buf).Encode(logOp); err != nil { + return err } - log.Printf("[Shard %d] performBFS complete: Found %d local vertices, sending to %d shards", s.shardID, len(vertices), len(shardVertices)) - return vertices, shardVertices, expectedResponses + f := s.raft.Apply(buf.Bytes(), time.Second*TIMEOUT_SECONDS) + if f.Error() != nil { + return f.Error() + } + shardApplyResponse := f.Response().(ShardApplyResponse) + if shardApplyResponse.Error != nil { + return shardApplyResponse.Error + } + *resp = shardApplyResponse.Response.(rpcTypes.CopyVerticesResponse) + return nil } -// DistributedBFS is the RPC handler for distributed BFS traversal from QM -func (s *Shard) DistributedBFS(req rpcTypes.QMToShardBFSRequest, resp *rpcTypes.ShardToQMBFSResponse) error { - log.Printf("[Shard %d] DistributedBFS called from QM: RequestID=%s, StartVertices=%d, Radius=%d", s.shardID, req.RequestID, len(req.StartVertices), req.Radius) +func (s *Shard) DestCopyVertices(req rpcTypes.CopyVerticesShardRequest, resp *rpcTypes.CopyVerticesShardResponse) error { + if s.raft.State() != raft.Leader { + return fmt.Errorf("not leader") + } - // Use VerifyLeader to ensure we have up-to-date state - if err := s.raft.VerifyLeader().Error(); err != nil { - return fmt.Errorf("not leader or unable to verify leadership: %w", err) + // Encode the request + var reqBuf bytes.Buffer + if err := gob.NewEncoder(&reqBuf).Encode(req); err != nil { + return err } - // Initialize response - resp.RequestID = req.RequestID - resp.ShardID = s.shardID - resp.Vertices = make([]rpcTypes.VertexLevel, 0) - resp.ExpectedResponses = make([]rpcTypes.ExpectedResponse, 0) - - // Perform BFS - vertices, shardVertices, expectedResponses := s.performBFS(req.StartVertices, req.Radius, req.Timestamp, req.RequestID) - - log.Printf("[Shard %d] BFS complete: Found %d vertices, sending to %d shards", s.shardID, len(vertices), len(shardVertices)) - - // Set vertices in response - resp.Vertices = vertices - - // Convert expected responses to response format - for shardID, count := range expectedResponses { - resp.ExpectedResponses = append(resp.ExpectedResponses, rpcTypes.ExpectedResponse{ - ShardID: shardID, - Count: count, - }) - log.Printf("[Shard %d] Expecting %d response(s) from shard %d", s.shardID, count, shardID) - } - - // Send cross-shard requests asynchronously - for targetShardID, startVertices := range shardVertices { - if len(startVertices) > 0 { - go func(shardID int, vertices []rpcTypes.StartVertex) { - log.Printf("[Shard %d] Sending BFS request to shard %d with %d vertices", s.shardID, shardID, len(vertices)) - // Create request for target shard - targetReq := rpcTypes.ShardToShardBFSRequest{ - StartVertices: vertices, - Radius: req.Radius, - Timestamp: req.Timestamp, - RequestID: req.RequestID, - RequesterAddr: req.RequesterAddr, - } - - // Call target shard (async, no response needed) - err := s.callShardBFS(shardID, &targetReq) - if err != nil { - log.Printf("[Shard %d] Failed to call shard %d for BFS: %v", s.shardID, shardID, err) - } - }(targetShardID, startVertices) - } + // Create the log operation + logOp := ShardLogOp{ + Op: DestCopyVertices, + Req: reqBuf.Bytes(), } - // NOTE: We return the response synchronously to QM, so we don't send async response here - // The synchronous response is sufficient for QM-initiated requests - log.Printf("[Shard %d] Returning synchronous response to QM: %d vertices, %d expected responses", s.shardID, len(resp.Vertices), len(resp.ExpectedResponses)) + // Encode the log operation + var buf bytes.Buffer + if err := gob.NewEncoder(&buf).Encode(logOp); err != nil { + return err + } + f := s.raft.Apply(buf.Bytes(), time.Second*TIMEOUT_SECONDS) + if f.Error() != nil { + return f.Error() + } + shardApplyResponse := f.Response().(ShardApplyResponse) + if shardApplyResponse.Error != nil { + return shardApplyResponse.Error + } + *resp = shardApplyResponse.Response.(rpcTypes.CopyVerticesShardResponse) return nil } -// DistributedBFSFromShard is the RPC handler for distributed BFS traversal from another shard -func (s *Shard) DistributedBFSFromShard(req rpcTypes.ShardToShardBFSRequest, resp *rpcTypes.ShardToQMBFSResponse) error { - log.Printf("[Shard %d] DistributedBFSFromShard called: RequestID=%s, StartVertices=%d, Radius=%d", s.shardID, req.RequestID, len(req.StartVertices), req.Radius) - - // Use VerifyLeader to ensure we have up-to-date state - if err := s.raft.VerifyLeader().Error(); err != nil { - return fmt.Errorf("not leader or unable to verify leadership: %w", err) +func (s *Shard) NotifyMovedVertices(req rpcTypes.NotifyMovedVerticesRequest, resp *rpcTypes.NotifyMovedVerticesResponse) error { + if s.raft.State() != raft.Leader { + return fmt.Errorf("not leader") } - // Perform BFS - vertices, shardVertices, expectedResponses := s.performBFS(req.StartVertices, req.Radius, req.Timestamp, req.RequestID) - - log.Printf("[Shard %d] BFS complete: Found %d vertices, sending to %d shards", s.shardID, len(vertices), len(shardVertices)) - - // Initialize response - resp.RequestID = req.RequestID - resp.ShardID = s.shardID - resp.Vertices = vertices - resp.ExpectedResponses = make([]rpcTypes.ExpectedResponse, 0) - - // Convert expected responses to response format - for shardID, count := range expectedResponses { - resp.ExpectedResponses = append(resp.ExpectedResponses, rpcTypes.ExpectedResponse{ - ShardID: shardID, - Count: count, - }) - log.Printf("[Shard %d] Expecting %d response(s) from shard %d", s.shardID, count, shardID) - } - - // Send cross-shard requests asynchronously - for targetShardID, startVertices := range shardVertices { - if len(startVertices) > 0 { - go func(shardID int, vertices []rpcTypes.StartVertex) { - log.Printf("[Shard %d] Sending BFS request to shard %d with %d vertices", s.shardID, shardID, len(vertices)) - // Create request for target shard - targetReq := rpcTypes.ShardToShardBFSRequest{ - StartVertices: vertices, - Radius: req.Radius, - Timestamp: req.Timestamp, - RequestID: req.RequestID, - RequesterAddr: req.RequesterAddr, - } - - // Call target shard (async, no response needed) - err := s.callShardBFS(shardID, &targetReq) - if err != nil { - log.Printf("[Shard %d] Failed to call shard %d for BFS: %v", s.shardID, shardID, err) - } - }(targetShardID, startVertices) - } + // Encode the request + var reqBuf bytes.Buffer + if err := gob.NewEncoder(&reqBuf).Encode(req); err != nil { + return err } - // Send results back to QM asynchronously (this is called from another shard, so we must send async) - go func() { - qmResp := rpcTypes.ShardToQMBFSResponse{ - RequestID: req.RequestID, - ShardID: s.shardID, - Vertices: resp.Vertices, - ExpectedResponses: resp.ExpectedResponses, - } - - log.Printf("[Shard %d] Sending async response to QM at %s: %d vertices, %d expected responses", s.shardID, req.RequesterAddr, len(qmResp.Vertices), len(qmResp.ExpectedResponses)) - - client, err := rpc.Dial("tcp", req.RequesterAddr) - if err != nil { - log.Printf("[Shard %d] Failed to connect to QM at %s: %v", s.shardID, req.RequesterAddr, err) - return - } - defer client.Close() - - var dummyResp rpcTypes.ShardToQMBFSResponse - err = client.Call("QueryManager.ReceiveBFSResult", &qmResp, &dummyResp) - if err != nil { - log.Printf("[Shard %d] Failed to send BFS results to QM: %v", s.shardID, err) - } else { - log.Printf("[Shard %d] Successfully sent BFS results to QM", s.shardID) - } - }() - - return nil -} - -// FetchAll is the RPC handler for fetching all vertex IDs in the shard with linearizable read semantics -func (s *Shard) FetchAll(req rpcTypes.FetchAllToShardRequest, resp *rpcTypes.FetchAllToShardResponse) error { - // Use VerifyLeader to ensure we have up-to-date state and are still the leader - // This provides linearizable read semantics without going through the Raft log - if err := s.raft.VerifyLeader().Error(); err != nil { - return fmt.Errorf("not leader or unable to verify leadership: %w", err) + // Create the log operation + logOp := ShardLogOp{ + Op: NotifyMovedVertices, + Req: reqBuf.Bytes(), } - s.mu.Lock() - defer s.mu.Unlock() + // Encode the log operation + var buf bytes.Buffer + if err := gob.NewEncoder(&buf).Encode(logOp); err != nil { + return err + } - return s.shardFSM.fetchAll(req, resp) + f := s.raft.Apply(buf.Bytes(), time.Second*TIMEOUT_SECONDS) + if f.Error() != nil { + return f.Error() + } + shardApplyResponse := f.Response().(ShardApplyResponse) + if shardApplyResponse.Error != nil { + return shardApplyResponse.Error + } + *resp = shardApplyResponse.Response.(rpcTypes.NotifyMovedVerticesResponse) + return nil } -// DeleteAll is the RPC handler for deleting all vertices and edges through Raft consensus -func (s *Shard) DeleteAll(req rpcTypes.DeleteAllToShardRequest, resp *rpcTypes.DeleteAllToShardResponse) error { +func (s *Shard) RemoveVertices(req rpcTypes.RemoveVerticesRequest, resp *rpcTypes.RemoveVerticesResponse) error { if s.raft.State() != raft.Leader { return fmt.Errorf("not leader") } @@ -894,7 +588,7 @@ func (s *Shard) DeleteAll(req rpcTypes.DeleteAllToShardRequest, resp *rpcTypes.D // Create the log operation logOp := ShardLogOp{ - Op: DeleteAll, + Op: RemoveVertices, Req: reqBuf.Bytes(), } @@ -912,7 +606,7 @@ func (s *Shard) DeleteAll(req rpcTypes.DeleteAllToShardRequest, resp *rpcTypes.D if shardApplyResponse.Error != nil { return shardApplyResponse.Error } - *resp = shardApplyResponse.Response.(rpcTypes.DeleteAllToShardResponse) + *resp = shardApplyResponse.Response.(rpcTypes.RemoveVerticesResponse) return nil } @@ -944,16 +638,14 @@ func NewShard(cfg *config.Config, shardID int, replicaID int) (*Shard, error) { // Create a request queue for incoming connections // Buffer size allows some queuing before blocking - requestQueue := make(chan net.Conn, 100) + requestQueue := make(chan net.Conn, 50) s := &Shard{ - shardFSM: shardFSM, - requestQueue: requestQueue, - config: cfg, - shardID: shardID, - replicaManager: replica.NewPushBasedReplicaManager(cfg), - activeBFSRequests: make(map[string]*BFSRequestState), - connectionPools: make(map[int]*connectionPool), + shardFSM: shardFSM, + requestQueue: requestQueue, + config: cfg, + shardID: shardID, + replicaManager: replica.NewPushBasedReplicaManager(cfg), } // Setup Raft configuration diff --git a/pkg/shard/shard_fsm.go b/pkg/shard/shard_fsm.go index fae9850..ffed46e 100644 --- a/pkg/shard/shard_fsm.go +++ b/pkg/shard/shard_fsm.go @@ -1,12 +1,20 @@ package shard import ( + "container/list" "fmt" "maps" + "math/rand/v2" + "net/rpc" "slices" + "sync" + "time" "github.com/pjavanrood/tinygraph/internal/config" + "github.com/pjavanrood/tinygraph/internal/types" internalTypes "github.com/pjavanrood/tinygraph/internal/types" + "github.com/pjavanrood/tinygraph/pkg/bfs" + "github.com/pjavanrood/tinygraph/pkg/mvcc" mvccTypes "github.com/pjavanrood/tinygraph/pkg/mvcc" rpcTypes "github.com/pjavanrood/tinygraph/pkg/rpc" ) @@ -24,9 +32,44 @@ const TIMEOUT_SECONDS = 5 // It stores a subset of vertices and their edges using MVCC // This is the internal state that gets replicated through Raft type ShardFSM struct { - vertices map[VertexId]*mvccTypes.Vertex - Id ShardId - config *config.Config + verticesMx sync.RWMutex + vertices map[VertexId]*mvccTypes.Vertex + Id ShardId + config *config.Config + bfsInstances map[types.BFSId]*bfs.BFSInstance + bfsMu sync.RWMutex + // Connection pools per shard (keyed by ShardID) + connections map[string]*rpc.Client + connectionsMu sync.Mutex + vertexToShardMap map[VertexId]ShardId +} + +func (s *ShardFSM) Call(hostname string, callLambda func(*rpc.Client) (error, bool)) { + for { + s.connectionsMu.Lock() + if s.connections[hostname] == nil { + client, err := rpc.Dial("tcp", hostname) + for err != nil { + log.Printf("Retrying dial to shard leader") + s.connectionsMu.Unlock() + time.Sleep(50 * time.Millisecond) + s.connectionsMu.Lock() + client, err = rpc.Dial("tcp", hostname) + } + s.connections[hostname] = client + } + s.connectionsMu.Unlock() + + //err := s.connections[hostname].Call(rpcCall, req, resp) + err, shouldExit := callLambda(s.connections[hostname]) + if err == nil { + return + } + if shouldExit { + return + } + log.Printf("Error: %w", err) + } } // addVertex adds a new vertex to the shard @@ -36,6 +79,8 @@ func (s *ShardFSM) addVertex(req rpcTypes.AddVertexToShardRequest, resp *rpcType defer func() { resp.Success = success }() + s.verticesMx.Lock() + defer s.verticesMx.Unlock() // check if vertex with given ID already exists, and is not deleted if _, ok := s.vertices[VertexId(req.VertexID)]; ok { @@ -46,9 +91,11 @@ func (s *ShardFSM) addVertex(req rpcTypes.AddVertexToShardRequest, resp *rpcType prop := mvccTypes.VertexProp(req.Properties) // we add this new vertex to our map - vertex := mvccTypes.NewVertex(req.VertexID, &prop, req.Timestamp) + vertex := mvccTypes.NewVertex(req.VertexID, prop, req.Timestamp) s.vertices[VertexId(req.VertexID)] = vertex + s.vertexToShardMap[VertexId(req.VertexID)] = s.Id + return nil } @@ -59,6 +106,8 @@ func (s *ShardFSM) getVertexAt(req rpcTypes.GetVertexAtShardRequest, resp *rpcTy defer func() { resp.Exists = exists }() + s.verticesMx.RLock() + defer s.verticesMx.RUnlock() // check if vertex with given ID already exists, and is not deleted vertex, vertexExists := s.vertices[VertexId(req.Vertex)] @@ -73,7 +122,7 @@ func (s *ShardFSM) getVertexAt(req rpcTypes.GetVertexAtShardRequest, resp *rpcTy return nil } - resp.Properties = internalTypes.Properties(*timestampedVertex.Prop) + resp.Properties = internalTypes.Properties(timestampedVertex.Prop) resp.Timestamp = timestampedVertex.TS return nil @@ -86,6 +135,8 @@ func (s *ShardFSM) getEdgeAt(req rpcTypes.GetEdgeAtShardRequest, resp *rpcTypes. defer func() { resp.Exists = exists }() + s.verticesMx.RLock() + defer s.verticesMx.RUnlock() // check if vertex with given ID already exists, and is not deleted vertex, vertexExists := s.vertices[VertexId(req.FromVertex)] @@ -102,7 +153,7 @@ func (s *ShardFSM) getEdgeAt(req rpcTypes.GetEdgeAtShardRequest, resp *rpcTypes. } timestampedEdge := edge.GetAt(req.Timestamp) - resp.Properties = internalTypes.Properties(*timestampedEdge.Prop) + resp.Properties = internalTypes.Properties(timestampedEdge.Prop) resp.Timestamp = timestampedEdge.TS return nil } @@ -118,6 +169,8 @@ func (s *ShardFSM) addEdge(req rpcTypes.AddEdgeToShardRequest, resp *rpcTypes.Ad defer func() { resp.Success = success }() + s.verticesMx.Lock() + defer s.verticesMx.Unlock() // check if source Vertex exists fromVertex, ok := s.vertices[VertexId(req.FromVertexID)] @@ -143,6 +196,8 @@ func (s *ShardFSM) deleteEdge(req rpcTypes.DeleteEdgeToShardRequest, resp *rpcTy defer func() { resp.Success = success }() + s.verticesMx.Lock() + defer s.verticesMx.Unlock() // check if source Vertex exists fromVertex, ok := s.vertices[VertexId(req.FromVertexID)] @@ -159,6 +214,9 @@ func (s *ShardFSM) deleteEdge(req rpcTypes.DeleteEdgeToShardRequest, resp *rpcTy // getNeighbors retrieves all neighbors of a vertex at a given timestamp // This is an internal method called by Shard func (s *ShardFSM) getNeighbors(req rpcTypes.GetNeighborsToShardRequest, resp *rpcTypes.GetNeighborsToShardResponse) error { + s.verticesMx.RLock() + defer s.verticesMx.RUnlock() + vertex, ok := s.vertices[VertexId(req.VertexID)] if !ok { return fmt.Errorf("Vertex with ID \"%s\" does not exist", req.VertexID) @@ -173,43 +231,209 @@ func (s *ShardFSM) getNeighbors(req rpcTypes.GetNeighborsToShardRequest, resp *r return nil } -// getNeighborsForBFS retrieves all neighbors of a vertex at a given timestamp for BFS -// Returns empty slice if vertex doesn't exist (doesn't error) -func (s *ShardFSM) getNeighborsForBFS(vertexID internalTypes.VertexId, timestamp internalTypes.Timestamp) ([]internalTypes.VertexId, error) { - vertex, ok := s.vertices[VertexId(vertexID)] - if !ok { - return []internalTypes.VertexId{}, nil // Return empty, don't error +// actual background BFS call +func (s *ShardFSM) bfs(req rpcTypes.BFSToShardRequest) { + s.verticesMx.RLock() + + s.bfsMu.RLock() + instance := s.bfsInstances[req.Id] + s.bfsMu.RUnlock() + + q := list.New() + for _, vertexLevelPair := range req.Vertices { + q.PushBack(&vertexLevelPair) } - neighbors := vertex.GetAllEdges(timestamp) - result := make([]internalTypes.VertexId, len(neighbors)) - for i, edge := range neighbors { - result[i] = edge.ToID + localVisited := make([]internalTypes.VertexId, 0) + frontierVertices := make(map[internalTypes.ShardId]([]rpcTypes.BFSVertexLevelPair)) + unknownVertices := make([]rpcTypes.BFSVertexLevelPair, 0) + + for q.Len() > 0 { + curr := q.Front().Value.(*rpcTypes.BFSVertexLevelPair) + q.Remove(q.Front()) + + instance.Mx.RLock() + if _, exists := instance.Visited[curr.V]; exists { + instance.Mx.RUnlock() + continue + } + instance.Mx.RUnlock() + + if vert, exists := s.vertices[VertexId(curr.V)]; exists { + stamped := vert.GetAt(req.Timestamp) + if stamped != nil { + instance.Mx.Lock() + instance.Visited[curr.V] = true + instance.Mx.Unlock() + localVisited = append(localVisited, curr.V) + if curr.N == 0 { + continue + } + for _, edge := range vert.GetAllEdges(req.Timestamp) { + // early out if already visited + instance.Mx.RLock() + if _, exists := instance.Visited[internalTypes.VertexId(edge.ToID)]; exists { + instance.Mx.RUnlock() + continue + } + instance.Mx.RUnlock() + + if _, has := s.vertices[VertexId(edge.ToID)]; has { + // edge to local vertex + q.PushBack(&rpcTypes.BFSVertexLevelPair{ + V: edge.ToID, + N: curr.N - 1, + }) + } else { + // edge to remote vertex + + // figure out WHERE the vertex is + if shardId, has := s.vertexToShardMap[VertexId(edge.ToID)]; has { + // add the vertex and level to the list + if _, exists := frontierVertices[internalTypes.ShardId(shardId)]; !exists { + frontierVertices[internalTypes.ShardId(shardId)] = make([]rpcTypes.BFSVertexLevelPair, 0) + } + + frontierVertices[internalTypes.ShardId(shardId)] = append(frontierVertices[internalTypes.ShardId(shardId)], rpcTypes.BFSVertexLevelPair{V: edge.ToID, N: curr.N - 1}) + } else { + unknownVertices = append(unknownVertices, rpcTypes.BFSVertexLevelPair{V: edge.ToID, N: curr.N - 1}) + } + + instance.Mx.Lock() + instance.Visited[internalTypes.VertexId(edge.ToID)] = true + instance.Mx.Unlock() + } + } + } + } } + s.verticesMx.RUnlock() + + // lookup unknown vertices and add them to the frontierVertices + if len(unknownVertices) > 0 { + lookupReq := &rpcTypes.GetShardIdsRequest{ + Ids: make([]types.VertexId, len(unknownVertices)), + } + for i, vertPair := range unknownVertices { + lookupReq.Ids[i] = vertPair.V + } + var lookupResp rpcTypes.GetShardIdsResponse + lookupLambda := func(client *rpc.Client) (error, bool) { + return client.Call("QueryManager.GetShardIds", lookupReq, &lookupResp), false + } + hostname := fmt.Sprintf("%s:%d", s.config.QueryManager.Host, s.config.QueryManager.Port) + s.Call(hostname, lookupLambda) + + s.verticesMx.Lock() + for i, shardId := range lookupResp.Ids { + if !shardId.Exists { + log.Error("Vertex %s could not be found on the QM", unknownVertices[i].V) + s.verticesMx.Unlock() + return + } + + if _, exists := frontierVertices[shardId.Id]; !exists { + frontierVertices[shardId.Id] = make([]rpcTypes.BFSVertexLevelPair, 0) + } + frontierVertices[shardId.Id] = append(frontierVertices[shardId.Id], unknownVertices[i]) + + s.vertexToShardMap[VertexId(unknownVertices[i].V)] = ShardId(shardId.Id) + } + s.verticesMx.Unlock() + } + + // dispatch shard requests + for shardId, frontierVerts := range frontierVertices { + go func() { + log.Printf("Dispatching for shard %d", shardId) + + shardConfig, err := s.config.GetShardByID(int(shardId)) + if err != nil { + log.Printf("Failed to get shard by ID: %v", err) + return + } + + // connect to the shard + replicas := shardConfig.Replicas + leaderHostname := replicas[rand.IntN(len(shardConfig.Replicas))].GetRPCAddress() + + if leaderHostname == "" { + log.Printf("Failed getting leader hostname") + return + } + + bfsReq := &rpcTypes.BFSToShardRequest{ + Vertices: frontierVerts, + Timestamp: req.Timestamp, + Id: req.Id, + CallbackAddr: req.CallbackAddr, + FirstReq: false, + } + var bfsResp rpcTypes.BFSToShardResponse + bfsLambda := func(client *rpc.Client) (error, bool) { + return client.Call("Shard.BFS", bfsReq, &bfsResp), false + } + s.Call(leaderHostname, bfsLambda) + if !bfsResp.Success { + log.Println("Success is false") + return + } + }() + } + + // send the results to the callback addr - return result, nil + toClientReq := &rpcTypes.BFSFromShardRequest{ + Id: req.Id, + Shard: types.ShardId(s.Id), + Vertices: localVisited, + DispatchedRequests: slices.Collect(maps.Keys(frontierVertices)), + FirstResp: req.FirstReq, + } + var toClientResp rpcTypes.BFSFromShardResponse + responseLambda := func(client *rpc.Client) (error, bool) { + return client.Call("QueryManager.BFSResponse", toClientReq, &toClientResp), false + } + s.Call(req.CallbackAddr, responseLambda) } -// batchGetNeighbors retrieves neighbors for multiple vertices at a given timestamp -// This is an internal method called by Shard -func (s *ShardFSM) batchGetNeighbors(req rpcTypes.BatchGetNeighborsToShardRequest, resp *rpcTypes.BatchGetNeighborsToShardResponse) error { - resp.Results = make(map[internalTypes.VertexId][]internalTypes.VertexId) +func (s *ShardFSM) BFS(req rpcTypes.BFSToShardRequest, resp *rpcTypes.BFSToShardResponse) error { + success := true + defer func() { + resp.Success = success + }() + s.verticesMx.RLock() + defer s.verticesMx.RUnlock() - for _, vertexID := range req.VertexIDs { - vertex, ok := s.vertices[VertexId(vertexID)] + // search for the vertices at the timestamp first + for _, vertexLevelPair := range req.Vertices { + vertex, ok := s.vertices[VertexId(vertexLevelPair.V)] if !ok { - // Skip missing vertices, return empty neighbors - resp.Results[vertexID] = []internalTypes.VertexId{} - continue + success = false + if shard, exists := s.vertexToShardMap[VertexId(vertexLevelPair.V)]; exists { + log.Printf("Exists on shard %d (request went to shard %d)", shard, s.Id) + } + return fmt.Errorf("Vertex with ID \"%s\" has never existed", vertex) + } + + if vertex.GetAt(req.Timestamp) == nil { + success = false + return fmt.Errorf("Vertex with ID \"%s\" does not exist at timestamp %f", vertex, req.Timestamp) } + } - neighbors := vertex.GetAllEdges(req.Timestamp) - neighborIDs := make([]internalTypes.VertexId, len(neighbors)) - for i, edge := range neighbors { - neighborIDs[i] = edge.ToID + s.bfsMu.Lock() + // find or create bfsInstances entry + if _, exists := s.bfsInstances[req.Id]; !exists { + s.bfsInstances[req.Id] = &bfs.BFSInstance{ + Id: req.Id, + Visited: make(map[internalTypes.VertexId]bool), + CallbackAddress: req.CallbackAddr, } - resp.Results[vertexID] = neighborIDs } + s.bfsMu.Unlock() + + go s.bfs(req) return nil } @@ -217,6 +441,8 @@ func (s *ShardFSM) batchGetNeighbors(req rpcTypes.BatchGetNeighborsToShardReques // fetchAll retrieves all vertex IDs and properties in the shard // This is an internal method called by Shard func (s *ShardFSM) fetchAll(req rpcTypes.FetchAllToShardRequest, resp *rpcTypes.FetchAllToShardResponse) error { + s.verticesMx.RLock() + defer s.verticesMx.RUnlock() resp.Vertices = make([]rpcTypes.VertexInfo, 0, len(s.vertices)) for vertexID, vertex := range s.vertices { vertexInfo := rpcTypes.VertexInfo{ @@ -226,7 +452,7 @@ func (s *ShardFSM) fetchAll(req rpcTypes.FetchAllToShardRequest, resp *rpcTypes. } // Convert VertexProp to Properties if not nil if vertex.Prop != nil { - vertexInfo.Properties = internalTypes.Properties(*vertex.Prop) + vertexInfo.Properties = internalTypes.Properties(vertex.Prop) } resp.Vertices = append(resp.Vertices, vertexInfo) } @@ -237,16 +463,234 @@ func (s *ShardFSM) fetchAll(req rpcTypes.FetchAllToShardRequest, resp *rpcTypes. // This is an internal method called by Shard through Raft consensus func (s *ShardFSM) deleteAll(req rpcTypes.DeleteAllToShardRequest, resp *rpcTypes.DeleteAllToShardResponse) error { // Clear all vertices (which also clears all edges since edges are stored in vertices) + s.verticesMx.Lock() + defer s.verticesMx.Unlock() s.vertices = make(map[VertexId]*mvccTypes.Vertex, 0) resp.Success = true return nil } +func (s *ShardFSM) notifyMovedVertices(req rpcTypes.NotifyMovedVerticesRequest, resp *rpcTypes.NotifyMovedVerticesResponse) error { + s.verticesMx.Lock() + defer s.verticesMx.Unlock() + + for _, vx := range req.Vertices { + s.vertexToShardMap[VertexId(vx)] = ShardId(req.Shard) + } + + return nil +} + +func (s *ShardFSM) copyVertices(req rpcTypes.CopyVerticesRequest, resp *rpcTypes.CopyVerticesResponse) error { + success := true + defer func() { + resp.Success = success + }() + + // ensure all request vertices are present + s.verticesMx.RLock() + for _, vert := range req.Vertices { + if _, has := s.vertices[VertexId(vert)]; !has { + s.verticesMx.RUnlock() + success = false + log.Printf("Vertex not in shard") + return fmt.Errorf("Vertex %s not in shard %d", vert, s.Id) + } + } + + // encode each vertex + destReq := &rpcTypes.CopyVerticesShardRequest{ + Vertices: make([]rpcTypes.VertexNetworkRepresentation, len(req.Vertices)), + } + var destResp rpcTypes.CopyVerticesShardResponse + for i, v := range req.Vertices { + original := s.vertices[VertexId(v)] + + destVert := &destReq.Vertices[i].Vertex + destVert.ID = v + destVert.Edges = nil + destVert.TS = original.TS + destVert.Prop = original.Prop + destVert.Prev = nil + + destReq.Vertices[i].VertexPrevs = make([]mvcc.Vertex, len(original.Prev)) + for j, prev := range original.Prev { + dpVert := &destReq.Vertices[i].VertexPrevs[j] + dpVert.ID = prev.ID + dpVert.Edges = nil + dpVert.TS = prev.TS + dpVert.Prop = prev.Prop + dpVert.Prev = nil + } + + destReq.Vertices[i].VertexToInternal = make(map[internalTypes.VertexId]uint) + destReq.Vertices[i].InternalToEdge = make(map[uint]mvcc.Edge) + destReq.Vertices[i].InternalToEdgePrevs = make(map[uint]([]mvcc.Edge)) + for j, toId := range slices.Collect(maps.Keys(original.Edges)) { + destReq.Vertices[i].VertexToInternal[toId] = uint(j) + + edge := mvcc.Edge{ + FromID: v, + ToID: toId, + Prop: original.Edges[toId].Prop, + TS: original.Edges[toId].TS, + Destroyed: original.Edges[toId].Destroyed, + Prev: nil, + } + destReq.Vertices[i].InternalToEdge[uint(j)] = edge + + // copy the prev values now... + destReq.Vertices[i].InternalToEdgePrevs[uint(j)] = make([]mvcc.Edge, len(original.Edges[toId].Prev)) + for k, prev := range original.Edges[toId].Prev { + dpEdge := mvcc.Edge{ + FromID: prev.FromID, + ToID: prev.ToID, + Prop: prev.Prop, + TS: prev.TS, + Destroyed: prev.Destroyed, + Prev: nil, + } + destReq.Vertices[i].InternalToEdgePrevs[uint(j)][k] = dpEdge + } + } + } + s.verticesMx.RUnlock() + + // finished encoding the vertex and its data, send it off + shardConfig, err := s.config.GetShardByID(int(req.Shard)) + if err != nil { + log.Printf("Failed to get shard by ID: %v", err) + success = false + return fmt.Errorf("Could not find shard with id %d: %w", req.Shard, err) + } + // finished encoding the vertex and its data, send it off + leaderReq := &rpcTypes.GetLeaderIdRequest{ + ShardId: int(req.Shard), + } + var leaderResp rpcTypes.GetLeaderIdResponse + getLeaderIdLambda := func(client *rpc.Client) (error, bool) { + return client.Call("QueryManager.GetLeaderId", leaderReq, &leaderResp), false + } + s.Call(fmt.Sprintf("%s:%d", s.config.QueryManager.Host, s.config.QueryManager.Port), getLeaderIdLambda) + replica, err := shardConfig.GetReplicaByID(leaderResp.LeaderId) + if err != nil { + log.Printf("Failed to fetch leader replica") + success = false + return fmt.Errorf("Failed to fetch leader replica") + } + leaderHostname := replica.GetRPCAddress() + + if leaderHostname == "" { + success = false + log.Printf("couldn't get hostname") + return fmt.Errorf("Failed to get leader hostname") + } + + copyLambda := func(client *rpc.Client) (error, bool) { + return client.Call("Shard.DestCopyVertices", destReq, &destResp), false + } + s.Call(leaderHostname, copyLambda) + if !destResp.Success { + success = false + log.Printf("dest copy failed") + return fmt.Errorf("Success is false") + } + + // update our view of the vertices + s.verticesMx.Lock() + for _, v := range req.Vertices { + s.vertexToShardMap[VertexId(v)] = ShardId(req.Shard) + } + s.verticesMx.Unlock() + + return nil +} + +func (s *ShardFSM) destCopyVertices(req rpcTypes.CopyVerticesShardRequest, resp *rpcTypes.CopyVerticesShardResponse) error { + success := true + defer func() { + resp.Success = success + }() + + // parse the resulting vertices and add them locally + s.verticesMx.Lock() + defer s.verticesMx.Unlock() + + for _, nVertex := range req.Vertices { + newVert := mvcc.NewVertex(nVertex.Vertex.ID, nVertex.Vertex.Prop, nVertex.Vertex.TS) + // add prevs + newVert.Prev = make([]*mvcc.Vertex, len(nVertex.VertexPrevs)) + for i, prev := range nVertex.VertexPrevs { + newVert.Prev[i] = &mvcc.Vertex{ + ID: prev.ID, + Edges: newVert.Edges, + TS: prev.TS, + Prop: prev.Prop, + Prev: nil, + } + } + + // add edges + for vid, i := range nVertex.VertexToInternal { + newVert.Edges[vid] = mvcc.NewEdge(newVert.ID, vid, nVertex.InternalToEdge[i].TS) + newVert.Edges[vid].Prop = nVertex.InternalToEdge[i].Prop + newVert.Edges[vid].Destroyed = nVertex.InternalToEdge[i].Destroyed + newVert.Edges[vid].Prev = make([]*mvcc.Edge, len(nVertex.InternalToEdgePrevs[i])) + + // add prev edges + for j, prevEdge := range nVertex.InternalToEdgePrevs[i] { + newVert.Edges[vid].Prev[j] = &mvcc.Edge{ + FromID: prevEdge.FromID, + ToID: prevEdge.ToID, + Prop: prevEdge.Prop, + TS: prevEdge.TS, + Destroyed: prevEdge.Destroyed, + Prev: nil, + } + } + } + + s.vertices[VertexId(newVert.ID)] = newVert + } + for _, vert := range req.Vertices { + s.vertexToShardMap[VertexId(vert.Vertex.ID)] = s.Id + } + + return nil +} + +func (s *ShardFSM) removeVertices(req rpcTypes.RemoveVerticesRequest, resp *rpcTypes.RemoveVerticesResponse) error { + success := true + defer func() { + resp.Success = success + }() + s.verticesMx.Lock() + defer s.verticesMx.Unlock() + + // ensure all request vertices are present + for _, vert := range req.Vertices { + if _, has := s.vertices[VertexId(vert)]; !has { + success = false + return fmt.Errorf("Vertex %s not in shard %d", vert, s.Id) + } + } + + // delete the locally referenced vertices + for _, vert := range req.Vertices { + delete(s.vertices, VertexId(vert)) + } + + return nil +} + // newShardFSM creates a new ShardFSM instance func newShardFSM(cfg *config.Config, id int) *ShardFSM { return &ShardFSM{ - vertices: make(map[VertexId]*mvccTypes.Vertex, 0), - Id: ShardId(id), - config: cfg, + vertices: make(map[VertexId]*mvccTypes.Vertex, 0), + Id: ShardId(id), + config: cfg, + bfsInstances: make(map[types.BFSId]*bfs.BFSInstance), + connections: make(map[string]*rpc.Client), + vertexToShardMap: make(map[VertexId]ShardId), } } diff --git a/start-cluster b/start-cluster deleted file mode 100755 index 67687ee..0000000 Binary files a/start-cluster and /dev/null differ diff --git a/test/bfs_test.go b/test/bfs_test.go index 33a687e..21047a8 100644 --- a/test/bfs_test.go +++ b/test/bfs_test.go @@ -2,11 +2,16 @@ package test import ( "fmt" + "log" + "os" + "os/exec" + "syscall" "testing" "time" "github.com/pjavanrood/tinygraph/internal/config" "github.com/pjavanrood/tinygraph/internal/types" + "github.com/pjavanrood/tinygraph/test/utils" ) // LocalGraph represents a simple adjacency list for local BFS computation @@ -63,7 +68,7 @@ func (g *LocalGraph) ComputeBFS(start types.VertexId, radius int) []types.Vertex // Helper to compare BFS results func compareBFSResults(t *testing.T, testName string, expected, actual []types.VertexId) bool { - if !sameElements(expected, actual) { + if !utils.SameElements(expected, actual) { t.Errorf("%s: Expected %v, got %v", testName, expected, actual) return false } @@ -72,12 +77,12 @@ func compareBFSResults(t *testing.T, testName string, expected, actual []types.V // TestBFSLinearChain tests BFS on a linear chain graph func TestBFSLinearChain(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create linear chain: v1 -> v2 -> v3 -> v4 -> v5 @@ -137,12 +142,12 @@ func TestBFSLinearChain(t *testing.T) { // TestBFSStarTopology tests BFS on a star-shaped graph func TestBFSStarTopology(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create star topology: center -> leaf1, leaf2, leaf3, leaf4 @@ -198,12 +203,12 @@ func TestBFSStarTopology(t *testing.T) { // TestBFSCycle tests BFS on a cyclic graph func TestBFSCycle(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create cycle: v1 -> v2 -> v3 -> v4 -> v1 @@ -248,12 +253,12 @@ func TestBFSCycle(t *testing.T) { // TestBFSDisconnectedGraph tests BFS on disconnected components func TestBFSDisconnectedGraph(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create two disconnected components: @@ -320,12 +325,12 @@ func TestBFSDisconnectedGraph(t *testing.T) { // TestBFSComplexGraph tests BFS on a more complex graph with multiple paths func TestBFSComplexGraph(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create a diamond-shaped graph with multiple paths: @@ -388,12 +393,12 @@ func TestBFSComplexGraph(t *testing.T) { // TestBFSSingleVertex tests BFS on a graph with just one vertex func TestBFSSingleVertex(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create single vertex with no edges @@ -420,12 +425,12 @@ func TestBFSSingleVertex(t *testing.T) { // TestBFSBinaryTree tests BFS on a binary tree structure func TestBFSBinaryTree(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create binary tree: @@ -493,12 +498,12 @@ func TestBFSBinaryTree(t *testing.T) { // TestBFSMultipleStartingPoints tests BFS from different starting vertices in the same graph func TestBFSMultipleStartingPoints(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create graph: v1 -> v2 -> v3 -> v4 @@ -550,12 +555,12 @@ func TestBFSMultipleStartingPoints(t *testing.T) { // TestBFSLargeRadius tests BFS with radius larger than graph diameter func TestBFSLargeRadius(t *testing.T) { - cfg, err := config.LoadConfig("../3_shard_3_replica_config.yaml") + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() // Create simple chain: v1 -> v2 -> v3 @@ -597,3 +602,82 @@ func TestBFSLargeRadius(t *testing.T) { t.Log("Large radius BFS test passed") } + +// TestMain sets up and tears down the test environment +func TestMain(m *testing.M) { + log.Println("Setting up end-to-end test environment...") + + // Load config + cfg, err := config.LoadConfig("../configs/3_shard_3_replica_config.yaml") + if err != nil { + log.Fatalf("Failed to load config: %v", err) + } + + // Start shard replica processes + var shardCmds []*exec.Cmd + for _, shard := range cfg.Shards { + for _, replica := range shard.Replicas { + log.Printf("Starting shard %d replica %d...", shard.ID, replica.ID) + cmd := exec.Command("go", "run", "../cmd/shard/main.go", + "-config", "../configs/3_shard_3_replica_config.yaml", + "-shard-id", fmt.Sprintf("%d", shard.ID), + "-replica-id", fmt.Sprintf("%d", replica.ID)) + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + // Set process group so we can kill the entire group including child processes + cmd.SysProcAttr = &syscall.SysProcAttr{ + Setpgid: true, + } + err := cmd.Start() + if err != nil { + log.Fatalf("Failed to start shard %d replica %d: %v", shard.ID, replica.ID, err) + } + shardCmds = append(shardCmds, cmd) + } + } + + // Start query manager + log.Println("Starting query manager...") + qmCmd := exec.Command("go", "run", "../cmd/qm/main.go", "-config", "../configs/3_shard_3_replica_config.yaml") + qmCmd.Stdout = os.Stdout + qmCmd.Stderr = os.Stderr + // Set process group so we can kill the entire group including child processes + qmCmd.SysProcAttr = &syscall.SysProcAttr{ + Setpgid: true, + } + err = qmCmd.Start() + if err != nil { + log.Fatalf("Failed to start query manager: %v", err) + } + + // Wait for services to be ready + log.Println("Waiting for services to start...") + time.Sleep(5 * time.Second) + + // Run tests + exitCode := m.Run() + + // Cleanup + log.Println("Cleaning up test environment...") + // Kill the entire process group (negative PID) to ensure child processes are terminated + if qmCmd.Process != nil { + pgid, err := syscall.Getpgid(qmCmd.Process.Pid) + if err == nil { + // Kill entire process group + syscall.Kill(-pgid, syscall.SIGINT) + } + qmCmd.Wait() + } + for _, cmd := range shardCmds { + if cmd.Process != nil { + pgid, err := syscall.Getpgid(cmd.Process.Pid) + if err == nil { + // Kill entire process group + syscall.Kill(-pgid, syscall.SIGINT) + } + cmd.Wait() + } + } + + os.Exit(exitCode) +} diff --git a/test/e2e_test.go b/test/e2e_test.go index 9e85bac..aef7b18 100644 --- a/test/e2e_test.go +++ b/test/e2e_test.go @@ -3,236 +3,28 @@ package test import ( "fmt" "log" - "net/rpc" "os" "os/exec" - "sort" "syscall" "testing" "time" "github.com/pjavanrood/tinygraph/internal/config" "github.com/pjavanrood/tinygraph/internal/types" - rpcTypes "github.com/pjavanrood/tinygraph/pkg/rpc" + "github.com/pjavanrood/tinygraph/test/utils" ) -// TestClient wraps the RPC client with helper methods -type TestClient struct { - conn *rpc.Client - t *testing.T - timestampLog []types.Timestamp - knownVerts []types.VertexId -} - -// NewTestClient creates a new test client -func NewTestClient(t *testing.T, cfg *config.Config) *TestClient { - // Retry connection a few times as services may be starting up - var conn *rpc.Client - var err error - for i := 0; i < 10; i++ { - conn, err = rpc.Dial("tcp", fmt.Sprintf("%s:%d", cfg.QueryManager.Host, cfg.QueryManager.Port)) - if err == nil { - break - } - time.Sleep(500 * time.Millisecond) - } - if err != nil { - t.Fatalf("Failed to connect to query manager after retries: %v", err) - } - return &TestClient{ - conn: conn, - t: t, - // defaults to 0, which is what we want for our initial timestamp - timestampLog: make([]types.Timestamp, 1), - } -} - -// Close closes the client connection -func (c *TestClient) Close() { - c.conn.Close() -} - -// Dumps the shared state at every timestamp logged -func (c *TestClient) dumpTimestampedState(t *testing.T) { - t.Logf("========== BEGIN DUMP ==========") - // for each shared state, dump what the server stores at that timestamp, beginning at 0 - for _, timestamp := range c.timestampLog { - t.Logf("~~~~State at timestamp %f~~~~", timestamp) - for shard, vertexSlice := range c.FetchAll() { - // get the values at the prescribed timestamp - t.Logf("On shard %d:", shard) - for _, vinfo := range vertexSlice { - t.Logf("|-Vertex %s at %f:", vinfo.VertexID, timestamp) - exists, props, ts := c.GetVertexAt(vinfo.VertexID, timestamp) - if exists { - t.Logf(" |-Exists (latest update %f)!", ts) - for k, v := range props { - t.Logf(" |-%v: %v", k, v) - } - } else { - t.Logf(" |-Does not exist") - } - - t.Logf(" |-Edges: %d", len(vinfo.EdgesTo)) - for _, vid := range vinfo.EdgesTo { - t.Logf(" |-Child Vertex %s at %f:", vid, timestamp) - exists, props, ts := c.GetEdgeAt(vinfo.VertexID, vid, timestamp) - if exists { - t.Logf(" |-Exists (latest update %f)!", ts) - for k, v := range props { - t.Logf(" |-%v: %v", k, v) - } - } else { - t.Logf(" |-Does not exist") - } - } - } - } - } - - t.Logf("========== END DUMP ==========") -} - -// AddVertex adds a vertex and returns the vertex ID and timestamp -func (c *TestClient) AddVertex(properties map[string]string) (types.VertexId, types.Timestamp) { - var resp rpcTypes.AddVertexResponse - err := c.conn.Call("QueryManager.AddVertex", &rpcTypes.AddVertexRequest{ - Properties: properties, - }, &resp) - if err != nil { - c.t.Fatalf("AddVertex failed: %v", err) - } - if !resp.Success { - c.t.Fatalf("AddVertex returned success=false") - } - c.timestampLog = append(c.timestampLog, resp.Timestamp) - return resp.VertexID, resp.Timestamp -} - -func (c *TestClient) GetVertexAt(vertexId types.VertexId, timestamp types.Timestamp) (bool, types.Properties, types.Timestamp) { - var resp rpcTypes.GetVertexResponse - err := c.conn.Call("QueryManager.GetVertexAt", &rpcTypes.GetVertexAtRequest{ - Vertex: vertexId, - Timestamp: timestamp, - }, &resp) - if err != nil { - c.t.Fatalf("GetVertex failed: %v", err) - } - return resp.Exists, resp.Properties, resp.Timestamp -} -func (c *TestClient) GetVertex(vertexId types.VertexId) (bool, types.Properties, types.Timestamp) { - return c.GetVertexAt(vertexId, types.Timestamp(time.Now().Unix())) -} - -func (c *TestClient) GetEdgeAt(vertexFrom types.VertexId, vertexTo types.VertexId, timestamp types.Timestamp) (bool, types.Properties, types.Timestamp) { - var resp rpcTypes.GetEdgeResponse - err := c.conn.Call("QueryManager.GetVertexAt", &rpcTypes.GetEdgeAtRequest{ - FromVertex: vertexFrom, - ToVertex: vertexTo, - Timestamp: timestamp, - }, &resp) - if err != nil { - c.t.Fatalf("GetEdge failed: %v", err) - } - return resp.Exists, resp.Properties, resp.Timestamp -} -func (c *TestClient) GetEdge(vertexFrom, vertexTo types.VertexId) (bool, types.Properties, types.Timestamp) { - return c.GetEdgeAt(vertexFrom, vertexTo, types.Timestamp(time.Now().Unix())) -} - -// FetchAll calls the FetchAll debug command to get all vertices -func (c *TestClient) FetchAll() map[int][]rpcTypes.VertexInfo { - var resp rpcTypes.FetchAllResponse - err := c.conn.Call("QueryManager.FetchAll", &rpcTypes.FetchAllRequest{}, &resp) - if err != nil { - c.t.Fatalf("FetchAll failed: %v", err) - } - return resp.ShardVertices -} - -// AddEdge adds an edge and returns the timestamp -func (c *TestClient) AddEdge(fromVertexID, toVertexID types.VertexId, properties map[string]string) types.Timestamp { - var resp rpcTypes.AddEdgeResponse - err := c.conn.Call("QueryManager.AddEdge", &rpcTypes.AddEdgeRequest{ - FromVertexID: fromVertexID, - ToVertexID: toVertexID, - Properties: properties, - }, &resp) - if err != nil { - c.t.Fatalf("AddEdge failed: %v", err) - } - if !resp.Success { - c.t.Fatalf("AddEdge returned success=false") - } - c.timestampLog = append(c.timestampLog, resp.Timestamp) - return resp.Timestamp -} - -// DeleteEdge deletes an edge and returns the timestamp -func (c *TestClient) DeleteEdge(fromVertexID, toVertexID types.VertexId) types.Timestamp { - var resp rpcTypes.DeleteEdgeResponse - err := c.conn.Call("QueryManager.DeleteEdge", &rpcTypes.DeleteEdgeRequest{ - FromVertexID: fromVertexID, - ToVertexID: toVertexID, - }, &resp) - if err != nil { - c.t.Fatalf("DeleteEdge failed: %v", err) - } - if !resp.Success { - c.t.Fatalf("DeleteEdge returned success=false") - } - c.timestampLog = append(c.timestampLog, resp.Timestamp) - return resp.Timestamp -} - -// BFS performs a BFS query at a given timestamp -func (c *TestClient) BFS(startVertexID types.VertexId, radius int, timestamp types.Timestamp) []types.VertexId { - var resp rpcTypes.BFSResponse - err := c.conn.Call("QueryManager.BFS", &rpcTypes.BFSRequest{ - StartVertexID: startVertexID, - Radius: radius, - Timestamp: timestamp, - }, &resp) - if err != nil { - c.t.Fatalf("BFS failed: %v", err) - } - return resp.Vertices -} - -// Helper function to check if two slices contain the same elements (ignoring order) -func sameElements(a, b []types.VertexId) bool { - if len(a) != len(b) { - return false - } - sortedA := make([]types.VertexId, len(a)) - sortedB := make([]types.VertexId, len(b)) - copy(sortedA, a) - copy(sortedB, b) - sort.Slice(sortedA, func(i, j int) bool { - return sortedA[i] < sortedA[j] - }) - sort.Slice(sortedB, func(i, j int) bool { - return sortedB[i] < sortedB[j] - }) - for i := range sortedA { - if sortedA[i] != sortedB[i] { - return false - } - } - return true -} - // TestBasicOperations tests basic add vertex, add edge, and BFS operations func TestBasicOperations(t *testing.T) { - cfg, err := config.LoadConfig("../config.yaml") + cfg, err := config.LoadConfig("../configs/config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() defer func() { - client.dumpTimestampedState(t) + client.DumpTimestampedState(t) }() // Add vertices @@ -255,19 +47,19 @@ func TestBasicOperations(t *testing.T) { // Query BFS from v1 with radius 0 (should only return v1) currentTime := types.Timestamp(time.Now().Unix()) result := client.BFS(v1, 0, currentTime) - if !sameElements(result, []types.VertexId{v1}) { + if !utils.SameElements(result, []types.VertexId{v1}) { t.Errorf("BFS(v1, radius=0) expected [%s], got %v", v1, result) } // Query BFS from v1 with radius 1 (should return v1 and v2) result = client.BFS(v1, 1, currentTime) - if !sameElements(result, []types.VertexId{v1, v2}) { + if !utils.SameElements(result, []types.VertexId{v1, v2}) { t.Errorf("BFS(v1, radius=1) expected [%s, %s], got %v", v1, v2, result) } // Query BFS from v1 with radius 2 (should return v1, v2, v3) result = client.BFS(v1, 2, currentTime) - if !sameElements(result, []types.VertexId{v1, v2, v3}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v3}) { t.Errorf("BFS(v1, radius=2) expected [%s, %s, %s], got %v", v1, v2, v3, result) } @@ -276,15 +68,15 @@ func TestBasicOperations(t *testing.T) { // TestMVCCSimpleGraph tests MVCC correctness with a simple graph evolution func TestMVCCSimpleGraph(t *testing.T) { - cfg, err := config.LoadConfig("../config.yaml") + cfg, err := config.LoadConfig("../configs/config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() defer func() { - client.dumpTimestampedState(t) + client.DumpTimestampedState(t) }() // Create initial graph: v1 -> v2 @@ -300,7 +92,7 @@ func TestMVCCSimpleGraph(t *testing.T) { time.Sleep(1 * time.Second) queryTs1 := types.Timestamp(time.Now().Unix()) result := client.BFS(v1, 1, queryTs1) - if !sameElements(result, []types.VertexId{v1, v2}) { + if !utils.SameElements(result, []types.VertexId{v1, v2}) { t.Errorf("At timestamp %.0f, BFS(v1, 1) expected [%s, %s], got %v", queryTs1, v1, v2, result) } @@ -316,13 +108,13 @@ func TestMVCCSimpleGraph(t *testing.T) { time.Sleep(1 * time.Second) queryTs2 := types.Timestamp(time.Now().Unix()) result = client.BFS(v1, 2, queryTs2) - if !sameElements(result, []types.VertexId{v1, v2, v3}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v3}) { t.Errorf("At timestamp %.0f, BFS(v1, 2) expected [%s, %s, %s], got %v", queryTs2, v1, v2, v3, result) } // Query at old timestamp (queryTs1): should still see only v1 -> v2 (no v3) result = client.BFS(v1, 2, queryTs1) - if !sameElements(result, []types.VertexId{v1, v2}) { + if !utils.SameElements(result, []types.VertexId{v1, v2}) { t.Errorf("At old timestamp %.0f, BFS(v1, 2) expected [%s, %s], got %v", queryTs1, v1, v2, result) } @@ -331,15 +123,15 @@ func TestMVCCSimpleGraph(t *testing.T) { // TestMVCCEdgeDeletion tests MVCC correctness with edge deletion func TestMVCCEdgeDeletion(t *testing.T) { - cfg, err := config.LoadConfig("../config.yaml") + cfg, err := config.LoadConfig("../configs/config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() defer func() { - client.dumpTimestampedState(t) + client.DumpTimestampedState(t) }() // Create graph: v1 -> v2 -> v3 @@ -358,7 +150,7 @@ func TestMVCCEdgeDeletion(t *testing.T) { time.Sleep(1 * time.Second) beforeDeletionTs := types.Timestamp(time.Now().Unix()) result := client.BFS(v1, 2, beforeDeletionTs) - if !sameElements(result, []types.VertexId{v1, v2, v3}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v3}) { t.Errorf("Before deletion, BFS(v1, 2) expected [%s, %s, %s], got %v", v1, v2, v3, result) } @@ -371,13 +163,13 @@ func TestMVCCEdgeDeletion(t *testing.T) { time.Sleep(1 * time.Second) afterDeletionTs := types.Timestamp(time.Now().Unix()) result = client.BFS(v1, 2, afterDeletionTs) - if !sameElements(result, []types.VertexId{v1}) { + if !utils.SameElements(result, []types.VertexId{v1}) { t.Errorf("After deletion, BFS(v1, 2) expected [%s], got %v", v1, result) } // Query at timestamp before deletion: should still see all three vertices result = client.BFS(v1, 2, beforeDeletionTs) - if !sameElements(result, []types.VertexId{v1, v2, v3}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v3}) { t.Errorf("At old timestamp %.0f (before deletion), BFS(v1, 2) expected [%s, %s, %s], got %v", beforeDeletionTs, v1, v2, v3, result) } @@ -387,15 +179,15 @@ func TestMVCCEdgeDeletion(t *testing.T) { // TestMVCCComplexEvolution tests MVCC with multiple additions and deletions func TestMVCCComplexEvolution(t *testing.T) { - cfg, err := config.LoadConfig("../config.yaml") + cfg, err := config.LoadConfig("../configs/config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() defer func() { - client.dumpTimestampedState(t) + client.DumpTimestampedState(t) }() // Create initial vertices @@ -412,7 +204,7 @@ func TestMVCCComplexEvolution(t *testing.T) { time.Sleep(1 * time.Second) ts_state1 := types.Timestamp(time.Now().Unix()) result := client.BFS(v1, 2, ts_state1) - if !sameElements(result, []types.VertexId{v1, v2, v3}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v3}) { t.Errorf("State 1: BFS(v1, 2) expected [%s, %s, %s], got %v", v1, v2, v3, result) } t.Logf("State 1 (ts=%.0f): v1->v2->v3 verified", ts_state1) @@ -424,7 +216,7 @@ func TestMVCCComplexEvolution(t *testing.T) { time.Sleep(1 * time.Second) ts_state2 := types.Timestamp(time.Now().Unix()) result = client.BFS(v1, 1, ts_state2) - if !sameElements(result, []types.VertexId{v1, v2, v4}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v4}) { t.Errorf("State 2: BFS(v1, 1) expected [%s, %s, %s], got %v", v1, v2, v4, result) } t.Logf("State 2 (ts=%.0f): Added v1->v4 branch verified", ts_state2) @@ -436,7 +228,7 @@ func TestMVCCComplexEvolution(t *testing.T) { time.Sleep(1 * time.Second) ts_state3 := types.Timestamp(time.Now().Unix()) result = client.BFS(v1, 2, ts_state3) - if !sameElements(result, []types.VertexId{v1, v4}) { + if !utils.SameElements(result, []types.VertexId{v1, v4}) { t.Errorf("State 3: BFS(v1, 2) expected [%s, %s], got %v", v1, v4, result) } t.Logf("State 3 (ts=%.0f): Deleted v1->v2, only v1->v4 remains", ts_state3) @@ -449,19 +241,19 @@ func TestMVCCComplexEvolution(t *testing.T) { ts_state4 := types.Timestamp(time.Now().Unix()) // BFS from v1 should still only reach v4 result = client.BFS(v1, 2, ts_state4) - if !sameElements(result, []types.VertexId{v1, v4}) { + if !utils.SameElements(result, []types.VertexId{v1, v4}) { t.Errorf("State 4: BFS(v1, 2) expected [%s, %s], got %v", v1, v4, result) } t.Logf("State 4 (ts=%.0f): Added v3->v4, BFS from v1 still reaches [v1, v4]", ts_state4) // Verify historical queries work correctly result = client.BFS(v1, 2, ts_state1) - if !sameElements(result, []types.VertexId{v1, v2, v3}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v3}) { t.Errorf("Historical query at ts_state1: expected [%s, %s, %s], got %v", v1, v2, v3, result) } result = client.BFS(v1, 1, ts_state2) - if !sameElements(result, []types.VertexId{v1, v2, v4}) { + if !utils.SameElements(result, []types.VertexId{v1, v2, v4}) { t.Errorf("Historical query at ts_state2: expected [%s, %s, %s], got %v", v1, v2, v4, result) } @@ -470,15 +262,15 @@ func TestMVCCComplexEvolution(t *testing.T) { // TestMVCCMultipleEdgeUpdates tests adding the same edge multiple times func TestMVCCMultipleEdgeUpdates(t *testing.T) { - cfg, err := config.LoadConfig("../config.yaml") + cfg, err := config.LoadConfig("../configs/config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() defer func() { - client.dumpTimestampedState(t) + client.DumpTimestampedState(t) }() // Create vertices @@ -506,17 +298,17 @@ func TestMVCCMultipleEdgeUpdates(t *testing.T) { // All queries should see the edge exists (MVCC should maintain all versions) result1 := client.BFS(v1, 1, query_ts1) - if !sameElements(result1, []types.VertexId{v1, v2}) { + if !utils.SameElements(result1, []types.VertexId{v1, v2}) { t.Errorf("At ts1, BFS(v1, 1) expected [%s, %s], got %v", v1, v2, result1) } result2 := client.BFS(v1, 1, query_ts2) - if !sameElements(result2, []types.VertexId{v1, v2}) { + if !utils.SameElements(result2, []types.VertexId{v1, v2}) { t.Errorf("At ts2, BFS(v1, 1) expected [%s, %s], got %v", v1, v2, result2) } result3 := client.BFS(v1, 1, query_ts3) - if !sameElements(result3, []types.VertexId{v1, v2}) { + if !utils.SameElements(result3, []types.VertexId{v1, v2}) { t.Errorf("At ts3, BFS(v1, 1) expected [%s, %s], got %v", v1, v2, result3) } @@ -525,15 +317,15 @@ func TestMVCCMultipleEdgeUpdates(t *testing.T) { // TestMVCCDeleteAndReadd tests deleting and re-adding edges func TestMVCCDeleteAndReadd(t *testing.T) { - cfg, err := config.LoadConfig("../config.yaml") + cfg, err := config.LoadConfig("../configs/config.yaml") if err != nil { t.Fatalf("Failed to load config: %v", err) } - client := NewTestClient(t, cfg) + client := utils.NewTestClient(t, cfg) defer client.Close() defer func() { - client.dumpTimestampedState(t) + client.DumpTimestampedState(t) }() // Create vertices @@ -563,23 +355,23 @@ func TestMVCCDeleteAndReadd(t *testing.T) { // Query at each timestamp result_add := client.BFS(v1, 1, ts_after_add) - if !sameElements(result_add, []types.VertexId{v1, v2}) { + if !utils.SameElements(result_add, []types.VertexId{v1, v2}) { t.Errorf("After initial add, BFS(v1, 1) expected [%s, %s], got %v", v1, v2, result_add) } result_delete := client.BFS(v1, 1, ts_after_delete) - if !sameElements(result_delete, []types.VertexId{v1}) { + if !utils.SameElements(result_delete, []types.VertexId{v1}) { t.Errorf("After delete, BFS(v1, 1) expected [%s], got %v", v1, result_delete) } result_readd := client.BFS(v1, 1, ts_after_readd) - if !sameElements(result_readd, []types.VertexId{v1, v2}) { + if !utils.SameElements(result_readd, []types.VertexId{v1, v2}) { t.Errorf("After re-add, BFS(v1, 1) expected [%s, %s], got %v", v1, v2, result_readd) } // Historical query should still work result_historical := client.BFS(v1, 1, ts_after_add) - if !sameElements(result_historical, []types.VertexId{v1, v2}) { + if !utils.SameElements(result_historical, []types.VertexId{v1, v2}) { t.Errorf("Historical query at first add timestamp, BFS(v1, 1) expected [%s, %s], got %v", v1, v2, result_historical) } @@ -587,24 +379,12 @@ func TestMVCCDeleteAndReadd(t *testing.T) { t.Log("MVCC delete and re-add test passed") } -// Helper function to start a background process -func startProcess(t *testing.T, name string, args ...string) *exec.Cmd { - cmd := exec.Command(name, args...) - cmd.Stdout = os.Stdout - cmd.Stderr = os.Stderr - err := cmd.Start() - if err != nil { - t.Fatalf("Failed to start %s: %v", name, err) - } - return cmd -} - // TestMain sets up and tears down the test environment func TestMain(m *testing.M) { log.Println("Setting up end-to-end test environment...") // Load config - cfg, err := config.LoadConfig("../config.yaml") + cfg, err := config.LoadConfig("../configs/config.yaml") if err != nil { log.Fatalf("Failed to load config: %v", err) } @@ -615,7 +395,7 @@ func TestMain(m *testing.M) { for _, replica := range shard.Replicas { log.Printf("Starting shard %d replica %d...", shard.ID, replica.ID) cmd := exec.Command("go", "run", "../cmd/shard/main.go", - "-config", "../config.yaml", + "-config", "../configs/config.yaml", "-shard-id", fmt.Sprintf("%d", shard.ID), "-replica-id", fmt.Sprintf("%d", replica.ID)) cmd.Stdout = os.Stdout @@ -634,7 +414,7 @@ func TestMain(m *testing.M) { // Start query manager log.Println("Starting query manager...") - qmCmd := exec.Command("go", "run", "../cmd/qm/main.go", "-config", "../config.yaml") + qmCmd := exec.Command("go", "run", "../cmd/qm/main.go", "-config", "../configs/config.yaml") qmCmd.Stdout = os.Stdout qmCmd.Stderr = os.Stderr // Set process group so we can kill the entire group including child processes diff --git a/test/utils/common.go b/test/utils/common.go new file mode 100644 index 0000000..a75a746 --- /dev/null +++ b/test/utils/common.go @@ -0,0 +1,233 @@ +package utils + +import ( + "fmt" + "net/rpc" + "os" + "os/exec" + "sort" + "testing" + "time" + + "github.com/pjavanrood/tinygraph/internal/config" + "github.com/pjavanrood/tinygraph/internal/types" + rpcTypes "github.com/pjavanrood/tinygraph/pkg/rpc" +) + +// Helper function to check if two slices contain the same elements (ignoring order) +func SameElements(a, b []types.VertexId) bool { + if len(a) != len(b) { + return false + } + sortedA := make([]types.VertexId, len(a)) + sortedB := make([]types.VertexId, len(b)) + copy(sortedA, a) + copy(sortedB, b) + sort.Slice(sortedA, func(i, j int) bool { + return sortedA[i] < sortedA[j] + }) + sort.Slice(sortedB, func(i, j int) bool { + return sortedB[i] < sortedB[j] + }) + for i := range sortedA { + if sortedA[i] != sortedB[i] { + return false + } + } + return true +} + +// TestClient wraps the RPC client with helper methods +type TestClient struct { + conn *rpc.Client + t *testing.T + timestampLog []types.Timestamp + knownVerts []types.VertexId +} + +// NewTestClient creates a new test client +func NewTestClient(t *testing.T, cfg *config.Config) *TestClient { + // Retry connection a few times as services may be starting up + var conn *rpc.Client + var err error + for i := 0; i < 10; i++ { + conn, err = rpc.Dial("tcp", fmt.Sprintf("%s:%d", cfg.QueryManager.Host, cfg.QueryManager.Port)) + if err == nil { + break + } + time.Sleep(500 * time.Millisecond) + } + if err != nil { + t.Fatalf("Failed to connect to query manager after retries: %v", err) + } + return &TestClient{ + conn: conn, + t: t, + // defaults to 0, which is what we want for our initial timestamp + timestampLog: make([]types.Timestamp, 1), + } +} + +// Close closes the client connection +func (c *TestClient) Close() { + c.conn.Close() +} + +// Dumps the shared state at every timestamp logged +func (c *TestClient) DumpTimestampedState(t *testing.T) { + t.Logf("========== BEGIN DUMP ==========") + // for each shared state, dump what the server stores at that timestamp, beginning at 0 + for _, timestamp := range c.timestampLog { + t.Logf("~~~~State at timestamp %f~~~~", timestamp) + for shard, vertexSlice := range c.FetchAll() { + // get the values at the prescribed timestamp + t.Logf("On shard %d:", shard) + for _, vinfo := range vertexSlice { + t.Logf("|-Vertex %s at %f:", vinfo.VertexID, timestamp) + exists, props, ts := c.GetVertexAt(vinfo.VertexID, timestamp) + if exists { + t.Logf(" |-Exists (latest update %f)!", ts) + for k, v := range props { + t.Logf(" |-%v: %v", k, v) + } + } else { + t.Logf(" |-Does not exist") + } + + t.Logf(" |-Edges: %d", len(vinfo.EdgesTo)) + for _, vid := range vinfo.EdgesTo { + t.Logf(" |-Child Vertex %s at %f:", vid, timestamp) + exists, props, ts := c.GetEdgeAt(vinfo.VertexID, vid, timestamp) + if exists { + t.Logf(" |-Exists (latest update %f)!", ts) + for k, v := range props { + t.Logf(" |-%v: %v", k, v) + } + } else { + t.Logf(" |-Does not exist") + } + } + } + } + } + + t.Logf("========== END DUMP ==========") +} + +// AddVertex adds a vertex and returns the vertex ID and timestamp +func (c *TestClient) AddVertex(properties map[string]string) (types.VertexId, types.Timestamp) { + var resp rpcTypes.AddVertexResponse + err := c.conn.Call("QueryManager.AddVertex", &rpcTypes.AddVertexRequest{ + Properties: properties, + }, &resp) + if err != nil { + c.t.Fatalf("AddVertex failed: %v", err) + } + if !resp.Success { + c.t.Fatalf("AddVertex returned success=false") + } + c.timestampLog = append(c.timestampLog, resp.Timestamp) + return resp.VertexID, resp.Timestamp +} + +func (c *TestClient) GetVertexAt(vertexId types.VertexId, timestamp types.Timestamp) (bool, types.Properties, types.Timestamp) { + var resp rpcTypes.GetVertexResponse + err := c.conn.Call("QueryManager.GetVertexAt", &rpcTypes.GetVertexAtRequest{ + Vertex: vertexId, + Timestamp: timestamp, + }, &resp) + if err != nil { + c.t.Fatalf("GetVertex failed: %v", err) + } + return resp.Exists, resp.Properties, resp.Timestamp +} +func (c *TestClient) GetVertex(vertexId types.VertexId) (bool, types.Properties, types.Timestamp) { + return c.GetVertexAt(vertexId, types.Timestamp(time.Now().Unix())) +} + +func (c *TestClient) GetEdgeAt(vertexFrom types.VertexId, vertexTo types.VertexId, timestamp types.Timestamp) (bool, types.Properties, types.Timestamp) { + var resp rpcTypes.GetEdgeResponse + err := c.conn.Call("QueryManager.GetVertexAt", &rpcTypes.GetEdgeAtRequest{ + FromVertex: vertexFrom, + ToVertex: vertexTo, + Timestamp: timestamp, + }, &resp) + if err != nil { + c.t.Fatalf("GetEdge failed: %v", err) + } + return resp.Exists, resp.Properties, resp.Timestamp +} +func (c *TestClient) GetEdge(vertexFrom, vertexTo types.VertexId) (bool, types.Properties, types.Timestamp) { + return c.GetEdgeAt(vertexFrom, vertexTo, types.Timestamp(time.Now().Unix())) +} + +// FetchAll calls the FetchAll debug command to get all vertices +func (c *TestClient) FetchAll() map[int][]rpcTypes.VertexInfo { + var resp rpcTypes.FetchAllResponse + err := c.conn.Call("QueryManager.FetchAll", &rpcTypes.FetchAllRequest{}, &resp) + if err != nil { + c.t.Fatalf("FetchAll failed: %v", err) + } + return resp.ShardVertices +} + +// AddEdge adds an edge and returns the timestamp +func (c *TestClient) AddEdge(fromVertexID, toVertexID types.VertexId, properties map[string]string) types.Timestamp { + var resp rpcTypes.AddEdgeResponse + err := c.conn.Call("QueryManager.AddEdge", &rpcTypes.AddEdgeRequest{ + FromVertexID: fromVertexID, + ToVertexID: toVertexID, + Properties: properties, + }, &resp) + if err != nil { + c.t.Fatalf("AddEdge failed: %v", err) + } + if !resp.Success { + c.t.Fatalf("AddEdge returned success=false") + } + c.timestampLog = append(c.timestampLog, resp.Timestamp) + return resp.Timestamp +} + +// DeleteEdge deletes an edge and returns the timestamp +func (c *TestClient) DeleteEdge(fromVertexID, toVertexID types.VertexId) types.Timestamp { + var resp rpcTypes.DeleteEdgeResponse + err := c.conn.Call("QueryManager.DeleteEdge", &rpcTypes.DeleteEdgeRequest{ + FromVertexID: fromVertexID, + ToVertexID: toVertexID, + }, &resp) + if err != nil { + c.t.Fatalf("DeleteEdge failed: %v", err) + } + if !resp.Success { + c.t.Fatalf("DeleteEdge returned success=false") + } + c.timestampLog = append(c.timestampLog, resp.Timestamp) + return resp.Timestamp +} + +// BFS performs a BFS query at a given timestamp +func (c *TestClient) BFS(startVertexID types.VertexId, radius int, timestamp types.Timestamp) []types.VertexId { + var resp rpcTypes.BFSResponse + err := c.conn.Call("QueryManager.BFS", &rpcTypes.BFSRequest{ + StartVertexID: startVertexID, + Radius: radius, + Timestamp: timestamp, + }, &resp) + if err != nil { + c.t.Fatalf("BFS failed: %v", err) + } + return resp.Vertices +} + +// Helper function to start a background process +func StartProcess(t *testing.T, name string, args ...string) *exec.Cmd { + cmd := exec.Command(name, args...) + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + err := cmd.Start() + if err != nil { + t.Fatalf("Failed to start %s: %v", name, err) + } + return cmd +}